]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/FvSimpleFileSystemDxe/FvSimpleFileSystem.c
MdeModulePkg/FvSimpleFileSystem: Add a new module to provide access to executable...
[mirror_edk2.git] / MdeModulePkg / Universal / FvSimpleFileSystemDxe / FvSimpleFileSystem.c
1 /** @file
2 This driver uses the EFI_FIRMWARE_VOLUME2_PROTOCOL to expose files in firmware
3 volumes via the the EFI_SIMPLE_FILESYSTEM_PROTOCOL and EFI_FILE_PROTOCOL.
4
5 It will expose a single directory, containing one file for each file in the firmware
6 volume. If a file has a UI section, its contents will be used as a filename.
7 Otherwise, a string representation of the GUID will be used.
8 Files of an executable type (That is PEIM, DRIVER, COMBINED_PEIM_DRIVER and APPLICATION)
9 will have ".efi" added to their filename.
10
11 Its primary intended use is to be able to start EFI applications embedded in FVs
12 from the UEFI shell. It is entirely read-only.
13
14 Copyright (c) 2014, ARM Limited. All rights reserved.
15 Copyright (c) 2014, Intel Corporation. All rights reserved.<BR>
16
17 This program and the accompanying materials
18 are licensed and made available under the terms and conditions of the BSD License
19 which accompanies this distribution. The full text of the license may be found at
20 http://opensource.org/licenses/bsd-license.php
21
22 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
23 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
24
25 **/
26
27 #include "FvSimpleFileSystemInternal.h"
28
29 //
30 // Template for EFI_FILE_SYSTEM_INFO data structure.
31 //
32 EFI_FILE_SYSTEM_INFO mFsInfoTemplate = {
33 0, // Populate at runtime
34 TRUE, // Read-only
35 0, // Don't know volume size
36 0, // No free space
37 0, // Don't know block size
38 L"" // Populate at runtime
39 };
40
41 //
42 // Template for EFI_FILE_PROTOCOL data structure.
43 //
44 EFI_FILE_PROTOCOL mFileSystemTemplate = {
45 EFI_FILE_PROTOCOL_REVISION,
46 FvSimpleFileSystemOpen,
47 FvSimpleFileSystemClose,
48 FvSimpleFileSystemDelete,
49 FvSimpleFileSystemRead,
50 FvSimpleFileSystemWrite,
51 FvSimpleFileSystemGetPosition,
52 FvSimpleFileSystemSetPosition,
53 FvSimpleFileSystemGetInfo,
54 FvSimpleFileSystemSetInfo,
55 FvSimpleFileSystemFlush
56 };
57
58 /**
59 Find and call ReadSection on the first section found of an executable type.
60
61 @param FvProtocol A pointer to the EFI_FIRMWARE_VOLUME2_PROTOCOL instance.
62 @param FvFileInfo A pointer to the FV_FILESYSTEM_FILE_INFO instance that is a struct
63 representing a file's info.
64 @param BufferSize Pointer to a caller-allocated UINTN. It indicates the size of
65 the memory represented by *Buffer.
66 @param Buffer Pointer to a pointer to a data buffer to contain file content.
67
68 @retval EFI_SUCCESS The call completed successfully.
69 @retval EFI_WARN_BUFFER_TOO_SMALL The buffer is too small to contain the requested output.
70 @retval EFI_ACCESS_DENIED The firmware volume is configured to disallow reads.
71 @retval EFI_NOT_FOUND The requested file was not found in the firmware volume.
72 @retval EFI_DEVICE_ERROR A hardware error occurred when attempting toaccess the firmware volume.
73
74 **/
75 EFI_STATUS
76 FvFsFindExecutableSection (
77 IN EFI_FIRMWARE_VOLUME2_PROTOCOL *FvProtocol,
78 IN FV_FILESYSTEM_FILE_INFO *FvFileInfo,
79 IN OUT UINTN *BufferSize,
80 IN OUT VOID **Buffer
81 )
82 {
83 EFI_SECTION_TYPE SectionType;
84 UINT32 AuthenticationStatus;
85 EFI_STATUS Status;
86
87 for (SectionType = EFI_SECTION_PE32; SectionType <= EFI_SECTION_TE; SectionType++) {
88 Status = FvProtocol->ReadSection (
89 FvProtocol,
90 &FvFileInfo->NameGuid,
91 SectionType,
92 0,
93 Buffer,
94 BufferSize,
95 &AuthenticationStatus
96 );
97 if (Status != EFI_NOT_FOUND) {
98 return Status;
99 }
100 }
101
102 return EFI_NOT_FOUND;
103 }
104
105 /**
106 Get the size of the buffer that will be returned by FvFsReadFile.
107
108 @param FvProtocol A pointer to the EFI_FIRMWARE_VOLUME2_PROTOCOL instance.
109 @param FvFileInfo A pointer to the FV_FILESYSTEM_FILE_INFO instance that is a struct
110 representing a file's info.
111
112 @retval EFI_SUCCESS The file size was gotten correctly.
113 @retval Others The file size wasn't gotten correctly.
114
115 **/
116 EFI_STATUS
117 FvFsGetFileSize (
118 IN EFI_FIRMWARE_VOLUME2_PROTOCOL *FvProtocol,
119 IN OUT FV_FILESYSTEM_FILE_INFO *FvFileInfo
120 )
121 {
122 UINT32 AuthenticationStatus;
123 EFI_FV_FILETYPE FoundType;
124 EFI_FV_FILE_ATTRIBUTES Attributes;
125 EFI_STATUS Status;
126 UINT8 IgnoredByte;
127 VOID *IgnoredPtr;
128
129 //
130 // To get the size of a section, we pass 0 for BufferSize. But we can't pass
131 // NULL for Buffer, as that will cause a return of INVALID_PARAMETER, and we
132 // can't pass NULL for *Buffer, as that will cause the callee to allocate
133 // a buffer of the sections size.
134 //
135 IgnoredPtr = &IgnoredByte;
136 FvFileInfo->FileInfo.FileSize = 0;
137
138 if (FV_FILETYPE_IS_EXECUTABLE (FvFileInfo->Type)) {
139 //
140 // Get the size of the first executable section out of the file.
141 //
142 Status = FvFsFindExecutableSection (FvProtocol, FvFileInfo, &FvFileInfo->FileInfo.FileSize, &IgnoredPtr);
143 if (Status == EFI_WARN_BUFFER_TOO_SMALL) {
144 return EFI_SUCCESS;
145 }
146 } else if (FvFileInfo->Type == EFI_FV_FILETYPE_FREEFORM) {
147 //
148 // Try to get the size of a raw section out of the file
149 //
150 Status = FvProtocol->ReadSection (
151 FvProtocol,
152 &FvFileInfo->NameGuid,
153 EFI_SECTION_RAW,
154 0,
155 &IgnoredPtr,
156 &FvFileInfo->FileInfo.FileSize,
157 &AuthenticationStatus
158 );
159 if (Status == EFI_WARN_BUFFER_TOO_SMALL) {
160 return EFI_SUCCESS;
161 }
162 if (EFI_ERROR (Status)) {
163 //
164 // Didn't find a raw section, just return the whole file's size.
165 //
166 return FvProtocol->ReadFile (
167 FvProtocol,
168 &FvFileInfo->NameGuid,
169 NULL,
170 &FvFileInfo->FileInfo.FileSize,
171 &FoundType,
172 &Attributes,
173 &AuthenticationStatus
174 );
175 }
176 } else {
177 //
178 // Get the size of the entire file
179 //
180 return FvProtocol->ReadFile (
181 FvProtocol,
182 &FvFileInfo->NameGuid,
183 NULL,
184 &FvFileInfo->FileInfo.FileSize,
185 &FoundType,
186 &Attributes,
187 &AuthenticationStatus
188 );
189 }
190
191 return Status;
192 }
193
194 /**
195 Helper function to read a file.
196
197 The data returned depends on the type of the underlying FV file:
198 - For executable types, the first section found that contains executable code is returned.
199 - For files of type FREEFORM, the driver attempts to return the first section of type RAW.
200 If none is found, the entire contents of the FV file are returned.
201 - On all other files the entire contents of the FV file is returned, as by
202 EFI_FIRMWARE_VOLUME2_PROTOCOL.ReadFile.
203
204 @param FvProtocol A pointer to the EFI_FIRMWARE_VOLUME2_PROTOCOL instance.
205 @param FvFileInfo A pointer to the FV_FILESYSTEM_FILE_INFO instance that is a struct
206 representing a file's info.
207 @param BufferSize Pointer to a caller-allocated UINTN. It indicates the size of
208 the memory represented by *Buffer.
209 @param Buffer Pointer to a pointer to a data buffer to contain file content.
210
211 @retval EFI_SUCCESS The call completed successfully.
212 @retval EFI_WARN_BUFFER_TOO_SMALL The buffer is too small to contain the requested output.
213 @retval EFI_ACCESS_DENIED The firmware volume is configured to disallow reads.
214 @retval EFI_NOT_FOUND The requested file was not found in the firmware volume.
215 @retval EFI_DEVICE_ERROR A hardware error occurred when attempting toaccess the firmware volume.
216
217 **/
218 EFI_STATUS
219 FvFsReadFile (
220 IN EFI_FIRMWARE_VOLUME2_PROTOCOL *FvProtocol,
221 IN FV_FILESYSTEM_FILE_INFO *FvFileInfo,
222 IN OUT UINTN *BufferSize,
223 IN OUT VOID **Buffer
224 )
225 {
226 UINT32 AuthenticationStatus;
227 EFI_FV_FILETYPE FoundType;
228 EFI_FV_FILE_ATTRIBUTES Attributes;
229 EFI_STATUS Status;
230
231 if (FV_FILETYPE_IS_EXECUTABLE (FvFileInfo->Type)) {
232 //
233 // Read the first executable section out of the file.
234 //
235 Status = FvFsFindExecutableSection (FvProtocol, FvFileInfo, BufferSize, Buffer);
236 } else if (FvFileInfo->Type == EFI_FV_FILETYPE_FREEFORM) {
237 //
238 // Try to read a raw section out of the file
239 //
240 Status = FvProtocol->ReadSection (
241 FvProtocol,
242 &FvFileInfo->NameGuid,
243 EFI_SECTION_RAW,
244 0,
245 Buffer,
246 BufferSize,
247 &AuthenticationStatus
248 );
249 if (EFI_ERROR (Status)) {
250 //
251 // Didn't find a raw section, just return the whole file.
252 //
253 Status = FvProtocol->ReadFile (
254 FvProtocol,
255 &FvFileInfo->NameGuid,
256 Buffer,
257 BufferSize,
258 &FoundType,
259 &Attributes,
260 &AuthenticationStatus
261 );
262 }
263 } else {
264 //
265 // Read the entire file
266 //
267 Status = FvProtocol->ReadFile (
268 FvProtocol,
269 &FvFileInfo->NameGuid,
270 Buffer,
271 BufferSize,
272 &FoundType,
273 &Attributes,
274 &AuthenticationStatus
275 );
276 }
277
278 return Status;
279 }
280
281 /**
282 Helper function for populating an EFI_FILE_INFO for a file.
283
284 Note the CreateTime, LastAccessTime and ModificationTime fields in EFI_FILE_INFO
285 are full zero as FV2 protocol has no corresponding info to fill.
286
287 @param FvFileInfo A pointer to the FV_FILESYSTEM_FILE_INFO instance that is a struct
288 representing a file's info.
289 @param BufferSize Pointer to a caller-allocated UINTN. It indicates the size of
290 the memory represented by FileInfo.
291 @param FileInfo A pointer to EFI_FILE_INFO to contain the returned file info.
292
293 @retval EFI_SUCCESS The call completed successfully.
294 @retval EFI_BUFFER_TOO_SMALL The buffer is too small to contain the requested output.
295
296 **/
297 EFI_STATUS
298 FvFsGetFileInfo (
299 IN FV_FILESYSTEM_FILE_INFO *FvFileInfo,
300 IN OUT UINTN *BufferSize,
301 OUT EFI_FILE_INFO *FileInfo
302 )
303 {
304 UINTN InfoSize;
305
306 InfoSize = FvFileInfo->FileInfo.Size;
307 if (*BufferSize < InfoSize) {
308 *BufferSize = InfoSize;
309 return EFI_BUFFER_TOO_SMALL;
310 }
311
312 //
313 // Initialize FileInfo
314 //
315 CopyMem (FileInfo, &FvFileInfo->FileInfo, InfoSize);
316
317 *BufferSize = InfoSize;
318 return EFI_SUCCESS;
319 }
320
321 /**
322 Removes the last directory or file entry in a path by changing the last
323 L'\' to a CHAR_NULL.
324
325 @param Path The pointer to the path to modify.
326
327 @retval FALSE Nothing was found to remove.
328 @retval TRUE A directory or file was removed.
329
330 **/
331 BOOLEAN
332 EFIAPI
333 RemoveLastItemFromPath (
334 IN OUT CHAR16 *Path
335 )
336 {
337 CHAR16 *Walker;
338 CHAR16 *LastSlash;
339 //
340 // get directory name from path... ('chop' off extra)
341 //
342 for ( Walker = Path, LastSlash = NULL
343 ; Walker != NULL && *Walker != CHAR_NULL
344 ; Walker++
345 ){
346 if (*Walker == L'\\' && *(Walker + 1) != CHAR_NULL) {
347 LastSlash = Walker + 1;
348 }
349 }
350
351 if (LastSlash != NULL) {
352 *LastSlash = CHAR_NULL;
353 return (TRUE);
354 }
355
356 return (FALSE);
357 }
358
359 /**
360 Function to clean up paths.
361
362 - Single periods in the path are removed.
363 - Double periods in the path are removed along with a single parent directory.
364 - Forward slashes L'/' are converted to backward slashes L'\'.
365
366 This will be done inline and the existing buffer may be larger than required
367 upon completion.
368
369 @param Path The pointer to the string containing the path.
370
371 @retval NULL An error occured.
372 @return Path in all other instances.
373
374 **/
375 CHAR16*
376 EFIAPI
377 TrimFilePathToAbsolutePath (
378 IN CHAR16 *Path
379 )
380 {
381 CHAR16 *TempString;
382 UINTN TempSize;
383
384 if (Path == NULL) {
385 return NULL;
386 }
387
388 //
389 // Fix up the '/' vs '\'
390 //
391 for (TempString = Path ; (TempString != NULL) && (*TempString != CHAR_NULL); TempString++) {
392 if (*TempString == L'/') {
393 *TempString = L'\\';
394 }
395 }
396
397 //
398 // Fix up the ..
399 //
400 while ((TempString = StrStr (Path, L"\\..\\")) != NULL) {
401 *TempString = CHAR_NULL;
402 TempString += 4;
403 RemoveLastItemFromPath (Path);
404 TempSize = StrSize (TempString);
405 CopyMem (Path + StrLen (Path), TempString, TempSize);
406 }
407
408 if (((TempString = StrStr (Path, L"\\..")) != NULL) && (*(TempString + 3) == CHAR_NULL)) {
409 *TempString = CHAR_NULL;
410 RemoveLastItemFromPath (Path);
411 }
412
413 //
414 // Fix up the .
415 //
416 while ((TempString = StrStr (Path, L"\\.\\")) != NULL) {
417 *TempString = CHAR_NULL;
418 TempString += 2;
419 TempSize = StrSize (TempString);
420 CopyMem(Path + StrLen (Path), TempString, TempSize);
421 }
422
423 if (((TempString = StrStr (Path, L"\\.")) != NULL) && (*(TempString + 2) == CHAR_NULL)) {
424 *(TempString + 1) = CHAR_NULL;
425 }
426
427 while ((TempString = StrStr (Path, L"\\\\")) != NULL) {
428 *TempString = CHAR_NULL;
429 TempString += 1;
430 TempSize = StrSize(TempString);
431 CopyMem(Path + StrLen(Path), TempString, TempSize);
432 }
433
434 if (((TempString = StrStr(Path, L"\\\\")) != NULL) && (*(TempString + 1) == CHAR_NULL)) {
435 *(TempString) = CHAR_NULL;
436 }
437
438 return Path;
439 }
440
441 /**
442 Opens a new file relative to the source file's location.
443
444 @param This A pointer to the EFI_FILE_PROTOCOL instance that is the file
445 handle to the source location. This would typically be an open
446 handle to a directory.
447 @param NewHandle A pointer to the location to return the opened handle for the new
448 file.
449 @param FileName The Null-terminated string of the name of the file to be opened.
450 The file name may contain the following path modifiers: "\", ".",
451 and "..".
452 @param OpenMode The mode to open the file. The only valid combinations that the
453 file may be opened with are: Read, Read/Write, or Create/Read/Write.
454 @param Attributes Only valid for EFI_FILE_MODE_CREATE, in which case these are the
455 attribute bits for the newly created file.
456
457 @retval EFI_SUCCESS The file was opened.
458 @retval EFI_NOT_FOUND The specified file could not be found on the device.
459 @retval EFI_NO_MEDIA The device has no medium.
460 @retval EFI_MEDIA_CHANGED The device has a different medium in it or the medium is no
461 longer supported.
462 @retval EFI_DEVICE_ERROR The device reported an error.
463 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
464 @retval EFI_WRITE_PROTECTED An attempt was made to create a file, or open a file for write
465 when the media is write-protected.
466 @retval EFI_ACCESS_DENIED The service denied access to the file.
467 @retval EFI_OUT_OF_RESOURCES Not enough resources were available to open the file.
468 @retval EFI_VOLUME_FULL The volume is full.
469
470 **/
471 EFI_STATUS
472 EFIAPI
473 FvSimpleFileSystemOpen (
474 IN EFI_FILE_PROTOCOL *This,
475 OUT EFI_FILE_PROTOCOL **NewHandle,
476 IN CHAR16 *FileName,
477 IN UINT64 OpenMode,
478 IN UINT64 Attributes
479 )
480 {
481 FV_FILESYSTEM_INSTANCE *Instance;
482 FV_FILESYSTEM_FILE *File;
483 FV_FILESYSTEM_FILE *NewFile;
484 FV_FILESYSTEM_FILE_INFO *FvFileInfo;
485 LIST_ENTRY *FvFileInfoLink;
486
487 //
488 // Check for a valid mode
489 //
490 switch (OpenMode) {
491 case EFI_FILE_MODE_READ:
492 break;
493
494 default:
495 return EFI_WRITE_PROTECTED;
496 }
497
498 File = FVFS_FILE_FROM_FILE_THIS (This);
499 Instance = File->Instance;
500
501 FileName = TrimFilePathToAbsolutePath (FileName);
502
503 if (FileName[0] == L'\\') {
504 FileName++;
505 }
506
507 //
508 // Check for opening root
509 //
510 if (StrCmp (FileName, L".") == 0 || StrCmp (FileName, L"") == 0) {
511 NewFile = AllocateZeroPool (sizeof (FV_FILESYSTEM_FILE));
512 if (NewFile == NULL) {
513 return EFI_OUT_OF_RESOURCES;
514 }
515 NewFile->Signature = FVFS_FILE_SIGNATURE;
516 NewFile->Instance = Instance;
517 NewFile->FvFileInfo = File->FvFileInfo;
518 CopyMem (&NewFile->FileProtocol, &mFileSystemTemplate, sizeof (mFileSystemTemplate));
519 InitializeListHead (&NewFile->Link);
520 InsertHeadList (&Instance->FileHead, &NewFile->Link);
521
522 NewFile->DirReadNext = FVFS_GET_FIRST_FILE_INFO (Instance);
523
524 *NewHandle = &NewFile->FileProtocol;
525 return EFI_SUCCESS;
526 }
527
528 //
529 // Do a linear search for a file in the FV with a matching filename
530 //
531 for (FvFileInfoLink = GetFirstNode (&Instance->FileInfoHead);
532 !IsNull (&Instance->FileInfoHead, FvFileInfoLink);
533 FvFileInfoLink = GetNextNode (&Instance->FileInfoHead, FvFileInfoLink)) {
534 FvFileInfo = FVFS_FILE_INFO_FROM_LINK (FvFileInfoLink);
535 if (mUnicodeCollation->StriColl (mUnicodeCollation, &FvFileInfo->FileInfo.FileName[0], FileName) == 0) {
536 NewFile = AllocateZeroPool (sizeof (FV_FILESYSTEM_FILE));
537 if (NewFile == NULL) {
538 return EFI_OUT_OF_RESOURCES;
539 }
540
541 NewFile->Signature = FVFS_FILE_SIGNATURE;
542 NewFile->Instance = Instance;
543 NewFile->FvFileInfo = FvFileInfo;
544 CopyMem (&NewFile->FileProtocol, &mFileSystemTemplate, sizeof (mFileSystemTemplate));
545 InitializeListHead (&NewFile->Link);
546 InsertHeadList (&Instance->FileHead, &NewFile->Link);
547
548 *NewHandle = &NewFile->FileProtocol;
549 return EFI_SUCCESS;
550 }
551 }
552
553 return EFI_NOT_FOUND;
554 }
555
556 /**
557 Closes a specified file handle.
558
559 @param This A pointer to the EFI_FILE_PROTOCOL instance that is the file
560 handle to close.
561
562 @retval EFI_SUCCESS The file was closed.
563
564 **/
565 EFI_STATUS
566 EFIAPI
567 FvSimpleFileSystemClose (
568 IN EFI_FILE_PROTOCOL *This
569 )
570 {
571 FV_FILESYSTEM_INSTANCE *Instance;
572 FV_FILESYSTEM_FILE *File;
573
574 File = FVFS_FILE_FROM_FILE_THIS (This);
575 Instance = File->Instance;
576
577 if (File != Instance->Root) {
578 RemoveEntryList (&File->Link);
579 FreePool (File);
580 }
581 return EFI_SUCCESS;
582 }
583
584 /**
585 Reads data from a file.
586
587 @param This A pointer to the EFI_FILE_PROTOCOL instance that is the file
588 handle to read data from.
589 @param BufferSize On input, the size of the Buffer. On output, the amount of data
590 returned in Buffer. In both cases, the size is measured in bytes.
591 @param Buffer The buffer into which the data is read.
592
593 @retval EFI_SUCCESS Data was read.
594 @retval EFI_NO_MEDIA The device has no medium.
595 @retval EFI_DEVICE_ERROR The device reported an error.
596 @retval EFI_DEVICE_ERROR An attempt was made to read from a deleted file.
597 @retval EFI_DEVICE_ERROR On entry, the current file position is beyond the end of the file.
598 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
599 @retval EFI_BUFFER_TOO_SMALL The BufferSize is too small to read the current directory
600 entry. BufferSize has been updated with the size
601 needed to complete the request.
602
603 **/
604 EFI_STATUS
605 EFIAPI
606 FvSimpleFileSystemRead (
607 IN EFI_FILE_PROTOCOL *This,
608 IN OUT UINTN *BufferSize,
609 OUT VOID *Buffer
610 )
611 {
612 FV_FILESYSTEM_INSTANCE *Instance;
613 FV_FILESYSTEM_FILE *File;
614 EFI_STATUS Status;
615 LIST_ENTRY *FvFileInfoLink;
616 VOID *FileBuffer;
617 UINTN FileSize;
618
619 File = FVFS_FILE_FROM_FILE_THIS (This);
620 Instance = File->Instance;
621
622 if (File->FvFileInfo == Instance->Root->FvFileInfo) {
623 if (File->DirReadNext) {
624 //
625 // Directory read: populate Buffer with an EFI_FILE_INFO
626 //
627 Status = FvFsGetFileInfo (File->DirReadNext, BufferSize, Buffer);
628 if (!EFI_ERROR (Status)) {
629 //
630 // Successfully read a directory entry, now update the pointer to the
631 // next file, which will be read on the next call to this function
632 //
633 FvFileInfoLink = GetNextNode (&Instance->FileInfoHead, &File->DirReadNext->Link);
634 if (IsNull (&Instance->FileInfoHead, FvFileInfoLink)) {
635 //
636 // No more files left
637 //
638 File->DirReadNext = NULL;
639 } else {
640 File->DirReadNext = FVFS_FILE_INFO_FROM_LINK (FvFileInfoLink);
641 }
642 }
643 return Status;
644 } else {
645 //
646 // Directory read. All entries have been read, so return a zero-size
647 // buffer.
648 //
649 *BufferSize = 0;
650 return EFI_SUCCESS;
651 }
652 } else {
653 FileSize = File->FvFileInfo->FileInfo.FileSize;
654
655 FileBuffer = AllocateZeroPool (FileSize);
656 if (FileBuffer == NULL) {
657 return EFI_DEVICE_ERROR;
658 }
659
660 Status = FvFsReadFile (File->Instance->FvProtocol, File->FvFileInfo, &FileSize, &FileBuffer);
661 if (EFI_ERROR (Status)) {
662 return EFI_DEVICE_ERROR;
663 }
664
665 if (*BufferSize + File->Position > FileSize) {
666 *BufferSize = FileSize - File->Position;
667 }
668
669 CopyMem (Buffer, (UINT8*)FileBuffer + File->Position, *BufferSize);
670 File->Position += *BufferSize;
671
672 return EFI_SUCCESS;
673 }
674 }
675
676 /**
677 Writes data to a file.
678
679 @param This A pointer to the EFI_FILE_PROTOCOL instance that is the file
680 handle to write data to.
681 @param BufferSize On input, the size of the Buffer. On output, the amount of data
682 actually written. In both cases, the size is measured in bytes.
683 @param Buffer The buffer of data to write.
684
685 @retval EFI_SUCCESS Data was written.
686 @retval EFI_UNSUPPORTED Writes to open directory files are not supported.
687 @retval EFI_NO_MEDIA The device has no medium.
688 @retval EFI_DEVICE_ERROR The device reported an error.
689 @retval EFI_DEVICE_ERROR An attempt was made to write to a deleted file.
690 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
691 @retval EFI_WRITE_PROTECTED The file or medium is write-protected.
692 @retval EFI_ACCESS_DENIED The file was opened read only.
693 @retval EFI_VOLUME_FULL The volume is full.
694
695 **/
696 EFI_STATUS
697 EFIAPI
698 FvSimpleFileSystemWrite (
699 IN EFI_FILE_PROTOCOL *This,
700 IN OUT UINTN *BufferSize,
701 IN VOID *Buffer
702 )
703 {
704 FV_FILESYSTEM_INSTANCE *Instance;
705 FV_FILESYSTEM_FILE *File;
706
707 File = FVFS_FILE_FROM_FILE_THIS (This);
708 Instance = File->Instance;
709
710 if (File->FvFileInfo == Instance->Root->FvFileInfo) {
711 return EFI_UNSUPPORTED;
712 } else {
713 return EFI_WRITE_PROTECTED;
714 }
715 }
716
717 /**
718 Returns a file's current position.
719
720 @param This A pointer to the EFI_FILE_PROTOCOL instance that is the file
721 handle to get the current position on.
722 @param Position The address to return the file's current position value.
723
724 @retval EFI_SUCCESS The position was returned.
725 @retval EFI_UNSUPPORTED The request is not valid on open directories.
726 @retval EFI_DEVICE_ERROR An attempt was made to get the position from a deleted file.
727
728 **/
729 EFI_STATUS
730 EFIAPI
731 FvSimpleFileSystemGetPosition (
732 IN EFI_FILE_PROTOCOL *This,
733 OUT UINT64 *Position
734 )
735 {
736 FV_FILESYSTEM_INSTANCE *Instance;
737 FV_FILESYSTEM_FILE *File;
738
739 File = FVFS_FILE_FROM_FILE_THIS (This);
740 Instance = File->Instance;
741
742 if (File->FvFileInfo == Instance->Root->FvFileInfo) {
743 return EFI_UNSUPPORTED;
744 } else {
745 *Position = File->Position;
746 return EFI_SUCCESS;
747 }
748 }
749
750 /**
751 Sets a file's current position.
752
753 @param This A pointer to the EFI_FILE_PROTOCOL instance that is the
754 file handle to set the requested position on.
755 @param Position The byte position from the start of the file to set.
756
757 @retval EFI_SUCCESS The position was set.
758 @retval EFI_UNSUPPORTED The seek request for nonzero is not valid on open
759 directories.
760 @retval EFI_DEVICE_ERROR An attempt was made to set the position of a deleted file.
761
762 **/
763 EFI_STATUS
764 EFIAPI
765 FvSimpleFileSystemSetPosition (
766 IN EFI_FILE_PROTOCOL *This,
767 IN UINT64 Position
768 )
769 {
770 FV_FILESYSTEM_INSTANCE *Instance;
771 FV_FILESYSTEM_FILE *File;
772
773 File = FVFS_FILE_FROM_FILE_THIS (This);
774 Instance = File->Instance;
775
776 if (File->FvFileInfo == Instance->Root->FvFileInfo) {
777 if (Position != 0) {
778 return EFI_UNSUPPORTED;
779 }
780 //
781 // Reset directory position to first entry
782 //
783 File->DirReadNext = FVFS_GET_FIRST_FILE_INFO (Instance);
784 } else if (Position == 0xFFFFFFFFFFFFFFFFull) {
785 File->Position = File->FvFileInfo->FileInfo.FileSize;
786 } else {
787 File->Position = Position;
788 }
789
790 return EFI_SUCCESS;
791 }
792
793 /**
794 Flushes all modified data associated with a file to a device.
795
796 @param This A pointer to the EFI_FILE_PROTOCOL instance that is the file
797 handle to flush.
798
799 @retval EFI_SUCCESS The data was flushed.
800 @retval EFI_NO_MEDIA The device has no medium.
801 @retval EFI_DEVICE_ERROR The device reported an error.
802 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
803 @retval EFI_WRITE_PROTECTED The file or medium is write-protected.
804 @retval EFI_ACCESS_DENIED The file was opened read-only.
805 @retval EFI_VOLUME_FULL The volume is full.
806
807 **/
808 EFI_STATUS
809 EFIAPI
810 FvSimpleFileSystemFlush (
811 IN EFI_FILE_PROTOCOL *This
812 )
813 {
814 return EFI_WRITE_PROTECTED;
815 }
816
817 /**
818 Close and delete the file handle.
819
820 @param This A pointer to the EFI_FILE_PROTOCOL instance that is the
821 handle to the file to delete.
822
823 @retval EFI_SUCCESS The file was closed and deleted, and the handle was closed.
824 @retval EFI_WARN_DELETE_FAILURE The handle was closed, but the file was not deleted.
825
826 **/
827 EFI_STATUS
828 EFIAPI
829 FvSimpleFileSystemDelete (
830 IN EFI_FILE_PROTOCOL *This
831 )
832 {
833 EFI_STATUS Status;
834
835 Status = FvSimpleFileSystemClose (This);
836 ASSERT_EFI_ERROR (Status);
837
838 return EFI_WARN_DELETE_FAILURE;
839 }
840
841 /**
842 Returns information about a file.
843
844 @param This A pointer to the EFI_FILE_PROTOCOL instance that is the file
845 handle the requested information is for.
846 @param InformationType The type identifier for the information being requested.
847 @param BufferSize On input, the size of Buffer. On output, the amount of data
848 returned in Buffer. In both cases, the size is measured in bytes.
849 @param Buffer A pointer to the data buffer to return. The buffer's type is
850 indicated by InformationType.
851
852 @retval EFI_SUCCESS The information was returned.
853 @retval EFI_UNSUPPORTED The InformationType is not known.
854 @retval EFI_NO_MEDIA The device has no medium.
855 @retval EFI_DEVICE_ERROR The device reported an error.
856 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
857 @retval EFI_BUFFER_TOO_SMALL The BufferSize is too small to read the current directory entry.
858 BufferSize has been updated with the size needed to complete
859 the request.
860 **/
861 EFI_STATUS
862 EFIAPI
863 FvSimpleFileSystemGetInfo (
864 IN EFI_FILE_PROTOCOL *This,
865 IN EFI_GUID *InformationType,
866 IN OUT UINTN *BufferSize,
867 OUT VOID *Buffer
868 )
869 {
870 FV_FILESYSTEM_FILE *File;
871 EFI_FILE_SYSTEM_INFO *FsInfoOut;
872 EFI_FILE_SYSTEM_VOLUME_LABEL *FsVolumeLabel;
873 FV_FILESYSTEM_INSTANCE *Instance;
874 UINTN Size;
875 EFI_STATUS Status;
876
877 File = FVFS_FILE_FROM_FILE_THIS (This);
878
879 if (CompareGuid (InformationType, &gEfiFileSystemInfoGuid)) {
880 //
881 // Return filesystem info
882 //
883 Instance = File->Instance;
884
885 Size = sizeof (EFI_FILE_SYSTEM_INFO) + StrSize (Instance->VolumeLabel) - sizeof (CHAR16);
886
887 if (*BufferSize < Size) {
888 *BufferSize = Size;
889 return EFI_BUFFER_TOO_SMALL;
890 }
891
892 //
893 // Cast output buffer for convenience
894 //
895 FsInfoOut = (EFI_FILE_SYSTEM_INFO *) Buffer;
896
897 CopyMem (FsInfoOut, &mFsInfoTemplate, sizeof (EFI_FILE_SYSTEM_INFO));
898 Status = StrnCpyS (FsInfoOut->VolumeLabel, (*BufferSize - OFFSET_OF (EFI_FILE_SYSTEM_INFO, VolumeLabel)) / sizeof (CHAR16), Instance->VolumeLabel, StrLen (Instance->VolumeLabel));
899 ASSERT_EFI_ERROR (Status);
900 FsInfoOut->Size = Size;
901 return Status;
902 } else if (CompareGuid (InformationType, &gEfiFileInfoGuid)) {
903 //
904 // Return file info
905 //
906 return FvFsGetFileInfo (File->FvFileInfo, BufferSize, (EFI_FILE_INFO *) Buffer);
907 } else if (CompareGuid (InformationType, &gEfiFileSystemVolumeLabelInfoIdGuid)) {
908 //
909 // Return Volume Label
910 //
911 Instance = File->Instance;
912 Size = sizeof (EFI_FILE_SYSTEM_VOLUME_LABEL) + StrSize (Instance->VolumeLabel) - sizeof (CHAR16);;
913 if (*BufferSize < Size) {
914 *BufferSize = Size;
915 return EFI_BUFFER_TOO_SMALL;
916 }
917
918 FsVolumeLabel = (EFI_FILE_SYSTEM_VOLUME_LABEL*) Buffer;
919 Status = StrnCpyS (FsVolumeLabel->VolumeLabel, (*BufferSize - OFFSET_OF (EFI_FILE_SYSTEM_VOLUME_LABEL, VolumeLabel)) / sizeof (CHAR16), Instance->VolumeLabel, StrLen (Instance->VolumeLabel));
920 ASSERT_EFI_ERROR (Status);
921 return Status;
922 } else {
923 return EFI_UNSUPPORTED;
924 }
925 }
926
927 /**
928 Sets information about a file.
929
930 @param This A pointer to the EFI_FILE_PROTOCOL instance that is the file
931 handle the information is for.
932 @param InformationType The type identifier for the information being set.
933 @param BufferSize The size, in bytes, of Buffer.
934 @param Buffer A pointer to the data buffer to write. The buffer's type is
935 indicated by InformationType.
936
937 @retval EFI_SUCCESS The information was set.
938 @retval EFI_UNSUPPORTED The InformationType is not known.
939 @retval EFI_NO_MEDIA The device has no medium.
940 @retval EFI_DEVICE_ERROR The device reported an error.
941 @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
942 @retval EFI_WRITE_PROTECTED InformationType is EFI_FILE_INFO_ID and the media is
943 read-only.
944 @retval EFI_WRITE_PROTECTED InformationType is EFI_FILE_PROTOCOL_SYSTEM_INFO_ID
945 and the media is read only.
946 @retval EFI_WRITE_PROTECTED InformationType is EFI_FILE_SYSTEM_VOLUME_LABEL_ID
947 and the media is read-only.
948 @retval EFI_ACCESS_DENIED An attempt is made to change the name of a file to a
949 file that is already present.
950 @retval EFI_ACCESS_DENIED An attempt is being made to change the EFI_FILE_DIRECTORY
951 Attribute.
952 @retval EFI_ACCESS_DENIED An attempt is being made to change the size of a directory.
953 @retval EFI_ACCESS_DENIED InformationType is EFI_FILE_INFO_ID and the file was opened
954 read-only and an attempt is being made to modify a field
955 other than Attribute.
956 @retval EFI_VOLUME_FULL The volume is full.
957 @retval EFI_BAD_BUFFER_SIZE BufferSize is smaller than the size of the type indicated
958 by InformationType.
959
960 **/
961 EFI_STATUS
962 EFIAPI
963 FvSimpleFileSystemSetInfo (
964 IN EFI_FILE_PROTOCOL *This,
965 IN EFI_GUID *InformationType,
966 IN UINTN BufferSize,
967 IN VOID *Buffer
968 )
969 {
970 if (CompareGuid (InformationType, &gEfiFileSystemInfoGuid) ||
971 CompareGuid (InformationType, &gEfiFileInfoGuid) ||
972 CompareGuid (InformationType, &gEfiFileSystemVolumeLabelInfoIdGuid)) {
973 return EFI_WRITE_PROTECTED;
974 }
975
976 return EFI_UNSUPPORTED;
977 }
978