You've already forked slimbootloader
mirror of
https://github.com/Dasharo/slimbootloader.git
synced 2026-03-06 15:26:20 -08:00
Convert the line endings stored for all text files in the repository to LF. The majority previously used DOS-style CRLF line endings. Add a .gitattributes file to enforce this and treat certain extensions as never being text files. Update PatchCheck.py to insist on LF line endings rather than CRLF. However, its other checks fail on this commit due to lots of pre-existing complaints that it only notices because the line endings have changed. Silicon/QemuSocPkg/FspBin/Patches/0001-Build-QEMU-FSP-2.0-binaries.patch needs to be treated as binary since it contains a mixture of line endings. This change has implications depending on the client platform you are using the repository from: * Windows The usual configuration for Git on Windows means that text files will be checked out to the work tree with DOS-style CRLF line endings. If that's not the case then you can configure Git to do so for the entire machine with: git config --global core.autocrlf true or for just the repository with: git config core.autocrlf true Line endings will be normalised to LF when they are committed to the repository. If you commit a text file with only LF line endings then it will be converted to CRLF line endings in your work tree. * Linux, MacOS and other Unices The usual configuration for Git on such platforms is to check files out of the repository with LF line endings. This is probably the right thing for you. In the unlikely even that you are using Git on Unix but editing or compiling on Windows for some reason then you may need to tweak your configuration to force the use of CRLF line endings as described above. * General For more information see https://docs.github.com/en/get-started/getting-started-with-git/configuring-git-to-handle-line-endings . Fixes: https://github.com/slimbootloader/slimbootloader/issues/1400 Signed-off-by: Mike Crowe <mac@mcrowe.com>
608 lines
17 KiB
C
608 lines
17 KiB
C
/** @file
|
|
FAT file system access routines for FAT recovery PEIM
|
|
|
|
Copyright (c) 2006 - 2019, Intel Corporation. All rights reserved.<BR>
|
|
|
|
SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
|
|
**/
|
|
|
|
#include "FatLitePeim.h"
|
|
|
|
#define FAT_CASE_NAME_LOWER 0x08
|
|
#define FAT_CASE_EXT_LOWER 0x10
|
|
|
|
/**
|
|
Converts unicode characters to lower case characters.
|
|
|
|
@param Str A pointer to a Null-terminated string.
|
|
|
|
**/
|
|
STATIC
|
|
VOID
|
|
UnicodeStrLwr (
|
|
IN OUT CHAR16 *Str
|
|
)
|
|
{
|
|
while (*Str != 0) {
|
|
if ('A' <= *Str && *Str <= 'Z') {
|
|
*Str = (CHAR16)(*Str + 0x20);
|
|
}
|
|
Str += 1;
|
|
}
|
|
}
|
|
|
|
/**
|
|
Check if there is a valid FAT in the corresponding Block device
|
|
of the volume and if yes, fill in the relevant fields for the
|
|
volume structure. Note there should be a valid Block device number
|
|
already set.
|
|
|
|
@param PrivateData Global memory map for accessing global
|
|
variables.
|
|
@param Volume On input, the BlockDeviceNumber field of the
|
|
Volume should be a valid value. On successful
|
|
output, all fields except the VolumeNumber
|
|
field is initialized.
|
|
|
|
@retval EFI_SUCCESS A FAT is found and the volume structure is
|
|
initialized.
|
|
@retval EFI_NOT_FOUND There is no FAT on the corresponding device.
|
|
@retval EFI_DEVICE_ERROR There is something error while accessing device.
|
|
|
|
**/
|
|
EFI_STATUS
|
|
FatGetBpbInfo (
|
|
IN PEI_FAT_PRIVATE_DATA *PrivateData,
|
|
IN OUT PEI_FAT_VOLUME *Volume
|
|
)
|
|
{
|
|
EFI_STATUS Status;
|
|
PEI_FAT_BOOT_SECTOR Bpb;
|
|
PEI_FAT_BOOT_SECTOR_EX BpbEx;
|
|
UINT32 Sectors;
|
|
UINT32 SectorsPerFat;
|
|
UINT32 RootDirSectors;
|
|
UINT64 FatLba;
|
|
UINT64 RootLba;
|
|
UINT64 FirstClusterLba;
|
|
|
|
//
|
|
// Read in the BPB
|
|
//
|
|
Status = FatReadDisk (
|
|
PrivateData,
|
|
Volume->BlockDeviceNo,
|
|
0,
|
|
sizeof (PEI_FAT_BOOT_SECTOR_EX),
|
|
&BpbEx
|
|
);
|
|
if (EFI_ERROR (Status)) {
|
|
return Status;
|
|
}
|
|
|
|
CopyMem (
|
|
(UINT8 *) (&Bpb),
|
|
(UINT8 *) (&BpbEx),
|
|
sizeof (PEI_FAT_BOOT_SECTOR)
|
|
);
|
|
|
|
Volume->FatType = FatUnknown;
|
|
|
|
Sectors = Bpb.Sectors;
|
|
if (Sectors == 0) {
|
|
Sectors = Bpb.LargeSectors;
|
|
}
|
|
|
|
SectorsPerFat = Bpb.SectorsPerFat;
|
|
if (SectorsPerFat == 0) {
|
|
SectorsPerFat = BpbEx.LargeSectorsPerFat;
|
|
Volume->FatType = Fat32;
|
|
}
|
|
//
|
|
// Filter out those not a FAT
|
|
//
|
|
if (Bpb.Ia32Jump[0] != 0xe9 && Bpb.Ia32Jump[0] != 0xeb && Bpb.Ia32Jump[0] != 0x49) {
|
|
return EFI_NOT_FOUND;
|
|
}
|
|
|
|
if (Bpb.ReservedSectors == 0 || Bpb.NoFats == 0 || Sectors == 0) {
|
|
return EFI_NOT_FOUND;
|
|
}
|
|
|
|
if (Bpb.SectorsPerCluster != 1 &&
|
|
Bpb.SectorsPerCluster != 2 &&
|
|
Bpb.SectorsPerCluster != 4 &&
|
|
Bpb.SectorsPerCluster != 8 &&
|
|
Bpb.SectorsPerCluster != 16 &&
|
|
Bpb.SectorsPerCluster != 32 &&
|
|
Bpb.SectorsPerCluster != 64 &&
|
|
Bpb.SectorsPerCluster != 128
|
|
) {
|
|
return EFI_NOT_FOUND;
|
|
}
|
|
|
|
if (Volume->FatType == Fat32 && (SectorsPerFat == 0 || BpbEx.FsVersion != 0)) {
|
|
return EFI_NOT_FOUND;
|
|
}
|
|
|
|
if (Bpb.Media != 0xf0 &&
|
|
Bpb.Media != 0xf8 &&
|
|
Bpb.Media != 0xf9 &&
|
|
Bpb.Media != 0xfb &&
|
|
Bpb.Media != 0xfc &&
|
|
Bpb.Media != 0xfd &&
|
|
Bpb.Media != 0xfe &&
|
|
Bpb.Media != 0xff &&
|
|
//
|
|
// FujitsuFMR
|
|
//
|
|
Bpb.Media != 0x00 &&
|
|
Bpb.Media != 0x01 &&
|
|
Bpb.Media != 0xfa
|
|
) {
|
|
return EFI_NOT_FOUND;
|
|
}
|
|
|
|
if (Volume->FatType != Fat32 && Bpb.RootEntries == 0) {
|
|
return EFI_NOT_FOUND;
|
|
}
|
|
//
|
|
// If this is fat32, refuse to mount mirror-disabled volumes
|
|
//
|
|
if (Volume->FatType == Fat32 && ((BpbEx.ExtendedFlags & 0x80) != 0)) {
|
|
return EFI_NOT_FOUND;
|
|
}
|
|
//
|
|
// Fill in the volume structure fields
|
|
// (Sectors & SectorsPerFat is computed earlier already)
|
|
//
|
|
Volume->ClusterSize = Bpb.SectorSize * Bpb.SectorsPerCluster;
|
|
Volume->RootEntries = Bpb.RootEntries;
|
|
Volume->SectorSize = Bpb.SectorSize;
|
|
|
|
RootDirSectors = ((Volume->RootEntries * sizeof (FAT_DIRECTORY_ENTRY)) + (Volume->SectorSize - 1)) / Volume->SectorSize;
|
|
|
|
FatLba = Bpb.ReservedSectors;
|
|
RootLba = Bpb.NoFats * SectorsPerFat + FatLba;
|
|
FirstClusterLba = RootLba + RootDirSectors;
|
|
|
|
Volume->VolumeSize = MultU64x32 (Sectors, Volume->SectorSize);
|
|
Volume->FatPos = MultU64x32 (FatLba, Volume->SectorSize);
|
|
Volume->RootDirPos = MultU64x32 (RootLba, Volume->SectorSize);
|
|
Volume->FirstClusterPos = MultU64x32 (FirstClusterLba, Volume->SectorSize);
|
|
Volume->MaxCluster = (UINT32) (Sectors - FirstClusterLba) / Bpb.SectorsPerCluster;
|
|
Volume->RootDirCluster = BpbEx.RootDirFirstCluster;
|
|
|
|
//
|
|
// If this is not a fat32, determine if it's a fat16 or fat12
|
|
//
|
|
if (Volume->FatType != Fat32) {
|
|
|
|
if (Volume->MaxCluster >= 65525) {
|
|
return EFI_NOT_FOUND;
|
|
}
|
|
|
|
Volume->FatType = Volume->MaxCluster < 4085 ? Fat12 : Fat16;
|
|
}
|
|
|
|
return EFI_SUCCESS;
|
|
}
|
|
|
|
|
|
/**
|
|
Gets the next cluster in the cluster chain
|
|
|
|
@param PrivateData Global memory map for accessing global variables
|
|
@param Volume The volume
|
|
@param Cluster The cluster
|
|
@param NextCluster The cluster number of the next cluster
|
|
|
|
@retval EFI_SUCCESS The address is got
|
|
@retval EFI_INVALID_PARAMETER ClusterNo exceeds the MaxCluster of the volume.
|
|
@retval EFI_DEVICE_ERROR Read disk error
|
|
|
|
**/
|
|
EFI_STATUS
|
|
FatGetNextCluster (
|
|
IN PEI_FAT_PRIVATE_DATA *PrivateData,
|
|
IN PEI_FAT_VOLUME *Volume,
|
|
IN UINT32 Cluster,
|
|
OUT UINT32 *NextCluster
|
|
)
|
|
{
|
|
EFI_STATUS Status;
|
|
UINT64 FatEntryPos;
|
|
UINT32 Dummy;
|
|
|
|
*NextCluster = 0;
|
|
|
|
if (Volume->FatType == Fat32) {
|
|
FatEntryPos = Volume->FatPos + MultU64x32 (4, Cluster);
|
|
|
|
Status = FatReadDisk (PrivateData, Volume->BlockDeviceNo, FatEntryPos, 4, NextCluster);
|
|
*NextCluster &= 0x0fffffff;
|
|
|
|
//
|
|
// Pad high bits for our FAT_CLUSTER_... macro definitions to work
|
|
//
|
|
if ((*NextCluster) >= 0x0ffffff7) {
|
|
*NextCluster |= (-1 & ~0xf);
|
|
}
|
|
|
|
} else if (Volume->FatType == Fat16) {
|
|
FatEntryPos = Volume->FatPos + MultU64x32 (2, Cluster);
|
|
|
|
Status = FatReadDisk (PrivateData, Volume->BlockDeviceNo, FatEntryPos, 2, NextCluster);
|
|
|
|
//
|
|
// Pad high bits for our FAT_CLUSTER_... macro definitions to work
|
|
//
|
|
if ((*NextCluster) >= 0xfff7) {
|
|
*NextCluster |= (-1 & ~0xf);
|
|
}
|
|
|
|
} else {
|
|
FatEntryPos = Volume->FatPos + DivU64x32Remainder (MultU64x32 (3, Cluster), 2, &Dummy);
|
|
|
|
Status = FatReadDisk (PrivateData, Volume->BlockDeviceNo, FatEntryPos, 2, NextCluster);
|
|
|
|
if ((Cluster & 0x01) != 0) {
|
|
*NextCluster = (*NextCluster) >> 4;
|
|
} else {
|
|
*NextCluster = (*NextCluster) & 0x0fff;
|
|
}
|
|
//
|
|
// Pad high bits for our FAT_CLUSTER_... macro definitions to work
|
|
//
|
|
if ((*NextCluster) >= 0x0ff7) {
|
|
*NextCluster |= (-1 & ~0xf);
|
|
}
|
|
}
|
|
|
|
if (EFI_ERROR (Status)) {
|
|
return EFI_DEVICE_ERROR;
|
|
}
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
/**
|
|
Set a file's CurrentPos and CurrentCluster, then compute StraightReadAmount.
|
|
|
|
@param PrivateData the global memory map
|
|
@param File the file
|
|
@param Pos the Position which is offset from the file's
|
|
CurrentPos
|
|
|
|
@retval EFI_SUCCESS Success.
|
|
@retval EFI_INVALID_PARAMETER Pos is beyond file's size.
|
|
@retval EFI_DEVICE_ERROR Something error while accessing media.
|
|
|
|
**/
|
|
EFI_STATUS
|
|
FatSetFilePos (
|
|
IN PEI_FAT_PRIVATE_DATA *PrivateData,
|
|
IN PEI_FAT_FILE *File,
|
|
IN UINT32 Pos
|
|
)
|
|
{
|
|
EFI_STATUS Status;
|
|
UINT32 AlignedPos;
|
|
UINT32 Offset;
|
|
UINT32 Cluster;
|
|
UINT32 PrevCluster;
|
|
|
|
if (File->IsFixedRootDir) {
|
|
|
|
if (Pos >= MultU64x32 (File->Volume->RootEntries, 32) - File->CurrentPos) {
|
|
return EFI_INVALID_PARAMETER;
|
|
}
|
|
|
|
File->CurrentPos += Pos;
|
|
File->StraightReadAmount = (UINT32) (MultU64x32 (File->Volume->RootEntries, 32) - File->CurrentPos);
|
|
|
|
} else {
|
|
|
|
DivU64x32Remainder (File->CurrentPos, File->Volume->ClusterSize, &Offset);
|
|
AlignedPos = (UINT32) File->CurrentPos - (UINT32) Offset;
|
|
|
|
while
|
|
(
|
|
!FAT_CLUSTER_FUNCTIONAL (File->CurrentCluster) &&
|
|
AlignedPos + File->Volume->ClusterSize <= File->CurrentPos + Pos
|
|
) {
|
|
AlignedPos += File->Volume->ClusterSize;
|
|
Status = FatGetNextCluster (
|
|
PrivateData,
|
|
File->Volume,
|
|
File->CurrentCluster,
|
|
&File->CurrentCluster
|
|
);
|
|
if (EFI_ERROR (Status)) {
|
|
return EFI_DEVICE_ERROR;
|
|
}
|
|
}
|
|
|
|
if (FAT_CLUSTER_FUNCTIONAL (File->CurrentCluster)) {
|
|
return EFI_INVALID_PARAMETER;
|
|
}
|
|
|
|
File->CurrentPos += Pos;
|
|
//
|
|
// Calculate the amount of consecutive cluster occupied by the file.
|
|
// FatReadFile() will use it to read these blocks once.
|
|
//
|
|
File->StraightReadAmount = 0;
|
|
Cluster = File->CurrentCluster;
|
|
while (!FAT_CLUSTER_FUNCTIONAL (Cluster)) {
|
|
File->StraightReadAmount += File->Volume->ClusterSize;
|
|
PrevCluster = Cluster;
|
|
Status = FatGetNextCluster (PrivateData, File->Volume, Cluster, &Cluster);
|
|
if (EFI_ERROR (Status)) {
|
|
return EFI_DEVICE_ERROR;
|
|
}
|
|
|
|
if (Cluster != PrevCluster + 1) {
|
|
break;
|
|
}
|
|
}
|
|
|
|
DivU64x32Remainder (File->CurrentPos, File->Volume->ClusterSize, &Offset);
|
|
File->StraightReadAmount -= (UINT32) Offset;
|
|
|
|
}
|
|
|
|
return EFI_SUCCESS;
|
|
}
|
|
|
|
|
|
/**
|
|
Reads file data. Updates the file's CurrentPos.
|
|
|
|
@param PrivateData Global memory map for accessing global variables
|
|
@param File The file.
|
|
@param Size The amount of data to read.
|
|
@param Buffer The buffer storing the data.
|
|
|
|
@retval EFI_SUCCESS The data is read.
|
|
@retval EFI_INVALID_PARAMETER File is invalid.
|
|
@retval EFI_DEVICE_ERROR Something error while accessing media.
|
|
|
|
**/
|
|
EFI_STATUS
|
|
FatReadFile (
|
|
IN PEI_FAT_PRIVATE_DATA *PrivateData,
|
|
IN PEI_FAT_FILE *File,
|
|
IN UINTN Size,
|
|
OUT VOID *Buffer
|
|
)
|
|
{
|
|
EFI_STATUS Status;
|
|
CHAR8 *BufferPtr;
|
|
UINT32 Offset;
|
|
UINT64 PhysicalAddr;
|
|
UINTN Amount;
|
|
|
|
BufferPtr = Buffer;
|
|
|
|
if (File->IsFixedRootDir) {
|
|
//
|
|
// This is the fixed root dir in FAT12 and FAT16
|
|
//
|
|
if (File->CurrentPos + Size > File->Volume->RootEntries * sizeof (FAT_DIRECTORY_ENTRY)) {
|
|
return EFI_INVALID_PARAMETER;
|
|
}
|
|
|
|
Status = FatReadDisk (
|
|
PrivateData,
|
|
File->Volume->BlockDeviceNo,
|
|
File->Volume->RootDirPos + File->CurrentPos,
|
|
Size,
|
|
Buffer
|
|
);
|
|
File->CurrentPos += (UINT32) Size;
|
|
return Status;
|
|
|
|
} else {
|
|
|
|
if ((File->Attributes & FAT_ATTR_DIRECTORY) == 0) {
|
|
Size = Size < (File->FileSize - File->CurrentPos) ? Size : (File->FileSize - File->CurrentPos);
|
|
}
|
|
//
|
|
// This is a normal cluster based file
|
|
//
|
|
while (Size != 0) {
|
|
DivU64x32Remainder (File->CurrentPos, File->Volume->ClusterSize, &Offset);
|
|
PhysicalAddr = File->Volume->FirstClusterPos + MultU64x32 (File->Volume->ClusterSize, File->CurrentCluster - 2);
|
|
|
|
Amount = File->StraightReadAmount;
|
|
Amount = Size > Amount ? Amount : Size;
|
|
Status = FatReadDisk (
|
|
PrivateData,
|
|
File->Volume->BlockDeviceNo,
|
|
PhysicalAddr + Offset,
|
|
Amount,
|
|
BufferPtr
|
|
);
|
|
if (EFI_ERROR (Status)) {
|
|
return EFI_DEVICE_ERROR;
|
|
}
|
|
//
|
|
// Advance the file's current pos and current cluster
|
|
//
|
|
FatSetFilePos (PrivateData, File, (UINT32) Amount);
|
|
|
|
BufferPtr += Amount;
|
|
Size -= Amount;
|
|
}
|
|
|
|
return EFI_SUCCESS;
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
This function reads the next item in the parent directory and
|
|
initializes the output parameter SubFile (CurrentPos is initialized to 0).
|
|
The function updates the CurrentPos of the parent dir to after the item read.
|
|
If no more items were found, the function returns EFI_NOT_FOUND.
|
|
|
|
@param PrivateData Global memory map for accessing global variables
|
|
@param ParentDir The parent directory.
|
|
@param Attributes The file attribute (file or dir) to find.
|
|
@param SubFile The File structure containing the sub file that
|
|
is caught.
|
|
|
|
@retval EFI_SUCCESS The next sub file is obtained.
|
|
@retval EFI_INVALID_PARAMETER The ParentDir is not a directory.
|
|
@retval EFI_NOT_FOUND No more sub file exists.
|
|
@retval EFI_DEVICE_ERROR Something error while accessing media.
|
|
|
|
**/
|
|
EFI_STATUS
|
|
FatReadNextDirectoryEntry (
|
|
IN PEI_FAT_PRIVATE_DATA *PrivateData,
|
|
IN PEI_FAT_FILE *ParentDir,
|
|
IN UINT32 Attributes,
|
|
OUT PEI_FAT_FILE *SubFile
|
|
)
|
|
{
|
|
EFI_STATUS Status;
|
|
FAT_DIRECTORY_ENTRY DirEntry;
|
|
FAT_DIRECTORY_LFN *LfnEntry;
|
|
CHAR16 *Pos;
|
|
CHAR16 BaseName[9];
|
|
CHAR16 Ext[4];
|
|
CHAR16 *LfnBufferPointer;
|
|
UINT8 LfnOrdinal;
|
|
UINTN LfnBufferLen;
|
|
|
|
LfnBufferLen = 0;
|
|
ZeroMem ((UINT8 *) SubFile, sizeof (PEI_FAT_FILE));
|
|
|
|
//
|
|
// Pick a valid directory entry
|
|
//
|
|
while (1) {
|
|
//
|
|
// Read one entry
|
|
//
|
|
LfnOrdinal = 0;
|
|
|
|
//
|
|
// If it is LFN entry, read all of the following LFN entries.
|
|
//
|
|
do {
|
|
Status = FatReadFile (PrivateData, ParentDir, 32, &DirEntry);
|
|
if (EFI_ERROR (Status)) {
|
|
return EFI_DEVICE_ERROR;
|
|
}
|
|
|
|
if (DirEntry.Attributes == FAT_ATTR_LFN) {
|
|
LfnEntry = (FAT_DIRECTORY_LFN *)&DirEntry;
|
|
if ((LfnEntry->Ordinal & FAT_LFN_LAST) != 0) {
|
|
LfnOrdinal = LfnEntry->Ordinal & (FAT_LFN_LAST - 1);
|
|
if (LfnOrdinal > MAX_LFN_ENTRIES) {
|
|
LfnOrdinal = 0;
|
|
}
|
|
LfnBufferLen = LfnOrdinal * LFN_CHAR_TOTAL;
|
|
}
|
|
if ((LfnEntry->Ordinal & (FAT_LFN_LAST - 1)) != LfnOrdinal) {
|
|
// Unexpected LFN entry, skip it.
|
|
LfnOrdinal = 0;
|
|
LfnBufferLen = 0;
|
|
} else if (LfnOrdinal > 0) {
|
|
LfnBufferPointer = SubFile->LongFileName + (LfnOrdinal - 1) * LFN_CHAR_TOTAL;
|
|
CopyMem (LfnBufferPointer, LfnEntry->Name1, sizeof (CHAR16) * LFN_CHAR1_LEN);
|
|
LfnBufferPointer += LFN_CHAR1_LEN;
|
|
CopyMem (LfnBufferPointer, LfnEntry->Name2, sizeof (CHAR16) * LFN_CHAR2_LEN);
|
|
LfnBufferPointer += LFN_CHAR2_LEN;
|
|
CopyMem (LfnBufferPointer, LfnEntry->Name3, sizeof (CHAR16) * LFN_CHAR3_LEN);
|
|
LfnBufferPointer += LFN_CHAR3_LEN;
|
|
LfnOrdinal--;
|
|
}
|
|
}
|
|
} while (LfnOrdinal > 0);
|
|
|
|
if (DirEntry.Attributes == FAT_ATTR_LFN) {
|
|
continue;
|
|
}
|
|
|
|
//
|
|
// if this is a terminator dir entry, just return EFI_NOT_FOUND
|
|
//
|
|
if (DirEntry.FileName[0] == EMPTY_ENTRY_MARK) {
|
|
return EFI_NOT_FOUND;
|
|
}
|
|
|
|
//
|
|
// Search Directory only if Attributes has FAT_ATTR_DIRECTORY.
|
|
// Otherwise, search files and directories
|
|
//
|
|
if ((Attributes & FAT_ATTR_DIRECTORY) && !(DirEntry.Attributes & FAT_ATTR_DIRECTORY)) {
|
|
continue;
|
|
}
|
|
|
|
//
|
|
// Skip Volume file
|
|
//
|
|
if (DirEntry.Attributes & FAT_ATTR_VOLUME_ID) {
|
|
continue;
|
|
}
|
|
|
|
//
|
|
// If this not an invalid entry neither an empty entry, this is what we want.
|
|
// otherwise we will start a new loop to continue to find something meaningful
|
|
//
|
|
if ((UINT8) DirEntry.FileName[0] != DELETE_ENTRY_MARK) {
|
|
break;
|
|
}
|
|
}
|
|
//
|
|
// fill in the output parameter
|
|
//
|
|
EngFatToStr (8, DirEntry.FileName, BaseName);
|
|
EngFatToStr (3, DirEntry.FileName + 8, Ext);
|
|
|
|
//
|
|
// Check CaseFlag
|
|
//
|
|
if (DirEntry.CaseFlag & FAT_CASE_NAME_LOWER) {
|
|
UnicodeStrLwr (BaseName);
|
|
}
|
|
if (DirEntry.CaseFlag & FAT_CASE_EXT_LOWER) {
|
|
UnicodeStrLwr (Ext);
|
|
}
|
|
|
|
Pos = (UINT16 *) SubFile->FileName;
|
|
CopyMem ((UINT8 *) Pos, (UINT8 *) BaseName, 2 * (StrLen (BaseName) + 1));
|
|
|
|
if (Ext[0] != 0) {
|
|
Pos += StrLen (BaseName);
|
|
*Pos = '.';
|
|
Pos++;
|
|
CopyMem ((UINT8 *) Pos, (UINT8 *) Ext, 2 * (StrLen (Ext) + 1));
|
|
}
|
|
|
|
SubFile->LongFileName[LfnBufferLen] = 0;
|
|
|
|
SubFile->Attributes = DirEntry.Attributes;
|
|
SubFile->CurrentCluster = DirEntry.FileCluster;
|
|
if (ParentDir->Volume->FatType == Fat32) {
|
|
SubFile->CurrentCluster |= DirEntry.FileClusterHigh << 16;
|
|
}
|
|
|
|
SubFile->CurrentPos = 0;
|
|
SubFile->FileSize = DirEntry.FileSize;
|
|
SubFile->StartingCluster = SubFile->CurrentCluster;
|
|
SubFile->Volume = ParentDir->Volume;
|
|
|
|
//
|
|
// in Pei phase, time parameters do not need to be filled for minimum use.
|
|
//
|
|
return Status;
|
|
}
|