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, (UINTN*)&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 | (UINTN*)&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 | (UINTN*)&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 | (UINTN*)&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 = (UINTN)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 | if (FileName == NULL) {
|
---|
503 | return EFI_INVALID_PARAMETER;
|
---|
504 | }
|
---|
505 |
|
---|
506 | if (FileName[0] == L'\\') {
|
---|
507 | FileName++;
|
---|
508 | }
|
---|
509 |
|
---|
510 | //
|
---|
511 | // Check for opening root
|
---|
512 | //
|
---|
513 | if (StrCmp (FileName, L".") == 0 || StrCmp (FileName, L"") == 0) {
|
---|
514 | NewFile = AllocateZeroPool (sizeof (FV_FILESYSTEM_FILE));
|
---|
515 | if (NewFile == NULL) {
|
---|
516 | return EFI_OUT_OF_RESOURCES;
|
---|
517 | }
|
---|
518 | NewFile->Signature = FVFS_FILE_SIGNATURE;
|
---|
519 | NewFile->Instance = Instance;
|
---|
520 | NewFile->FvFileInfo = File->FvFileInfo;
|
---|
521 | CopyMem (&NewFile->FileProtocol, &mFileSystemTemplate, sizeof (mFileSystemTemplate));
|
---|
522 | InitializeListHead (&NewFile->Link);
|
---|
523 | InsertHeadList (&Instance->FileHead, &NewFile->Link);
|
---|
524 |
|
---|
525 | NewFile->DirReadNext = FVFS_GET_FIRST_FILE_INFO (Instance);
|
---|
526 |
|
---|
527 | *NewHandle = &NewFile->FileProtocol;
|
---|
528 | return EFI_SUCCESS;
|
---|
529 | }
|
---|
530 |
|
---|
531 | //
|
---|
532 | // Do a linear search for a file in the FV with a matching filename
|
---|
533 | //
|
---|
534 | for (FvFileInfoLink = GetFirstNode (&Instance->FileInfoHead);
|
---|
535 | !IsNull (&Instance->FileInfoHead, FvFileInfoLink);
|
---|
536 | FvFileInfoLink = GetNextNode (&Instance->FileInfoHead, FvFileInfoLink)) {
|
---|
537 | FvFileInfo = FVFS_FILE_INFO_FROM_LINK (FvFileInfoLink);
|
---|
538 | if (mUnicodeCollation->StriColl (mUnicodeCollation, &FvFileInfo->FileInfo.FileName[0], FileName) == 0) {
|
---|
539 | NewFile = AllocateZeroPool (sizeof (FV_FILESYSTEM_FILE));
|
---|
540 | if (NewFile == NULL) {
|
---|
541 | return EFI_OUT_OF_RESOURCES;
|
---|
542 | }
|
---|
543 |
|
---|
544 | NewFile->Signature = FVFS_FILE_SIGNATURE;
|
---|
545 | NewFile->Instance = Instance;
|
---|
546 | NewFile->FvFileInfo = FvFileInfo;
|
---|
547 | CopyMem (&NewFile->FileProtocol, &mFileSystemTemplate, sizeof (mFileSystemTemplate));
|
---|
548 | InitializeListHead (&NewFile->Link);
|
---|
549 | InsertHeadList (&Instance->FileHead, &NewFile->Link);
|
---|
550 |
|
---|
551 | *NewHandle = &NewFile->FileProtocol;
|
---|
552 | return EFI_SUCCESS;
|
---|
553 | }
|
---|
554 | }
|
---|
555 |
|
---|
556 | return EFI_NOT_FOUND;
|
---|
557 | }
|
---|
558 |
|
---|
559 | /**
|
---|
560 | Closes a specified file handle.
|
---|
561 |
|
---|
562 | @param This A pointer to the EFI_FILE_PROTOCOL instance that is the file
|
---|
563 | handle to close.
|
---|
564 |
|
---|
565 | @retval EFI_SUCCESS The file was closed.
|
---|
566 |
|
---|
567 | **/
|
---|
568 | EFI_STATUS
|
---|
569 | EFIAPI
|
---|
570 | FvSimpleFileSystemClose (
|
---|
571 | IN EFI_FILE_PROTOCOL *This
|
---|
572 | )
|
---|
573 | {
|
---|
574 | FV_FILESYSTEM_INSTANCE *Instance;
|
---|
575 | FV_FILESYSTEM_FILE *File;
|
---|
576 |
|
---|
577 | File = FVFS_FILE_FROM_FILE_THIS (This);
|
---|
578 | Instance = File->Instance;
|
---|
579 |
|
---|
580 | if (File != Instance->Root) {
|
---|
581 | RemoveEntryList (&File->Link);
|
---|
582 | FreePool (File);
|
---|
583 | }
|
---|
584 | return EFI_SUCCESS;
|
---|
585 | }
|
---|
586 |
|
---|
587 | /**
|
---|
588 | Reads data from a file.
|
---|
589 |
|
---|
590 | @param This A pointer to the EFI_FILE_PROTOCOL instance that is the file
|
---|
591 | handle to read data from.
|
---|
592 | @param BufferSize On input, the size of the Buffer. On output, the amount of data
|
---|
593 | returned in Buffer. In both cases, the size is measured in bytes.
|
---|
594 | @param Buffer The buffer into which the data is read.
|
---|
595 |
|
---|
596 | @retval EFI_SUCCESS Data was read.
|
---|
597 | @retval EFI_NO_MEDIA The device has no medium.
|
---|
598 | @retval EFI_DEVICE_ERROR The device reported an error.
|
---|
599 | @retval EFI_DEVICE_ERROR An attempt was made to read from a deleted file.
|
---|
600 | @retval EFI_DEVICE_ERROR On entry, the current file position is beyond the end of the file.
|
---|
601 | @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
|
---|
602 | @retval EFI_BUFFER_TOO_SMALL The BufferSize is too small to read the current directory
|
---|
603 | entry. BufferSize has been updated with the size
|
---|
604 | needed to complete the request.
|
---|
605 |
|
---|
606 | **/
|
---|
607 | EFI_STATUS
|
---|
608 | EFIAPI
|
---|
609 | FvSimpleFileSystemRead (
|
---|
610 | IN EFI_FILE_PROTOCOL *This,
|
---|
611 | IN OUT UINTN *BufferSize,
|
---|
612 | OUT VOID *Buffer
|
---|
613 | )
|
---|
614 | {
|
---|
615 | FV_FILESYSTEM_INSTANCE *Instance;
|
---|
616 | FV_FILESYSTEM_FILE *File;
|
---|
617 | EFI_STATUS Status;
|
---|
618 | LIST_ENTRY *FvFileInfoLink;
|
---|
619 | VOID *FileBuffer;
|
---|
620 | UINTN FileSize;
|
---|
621 |
|
---|
622 | File = FVFS_FILE_FROM_FILE_THIS (This);
|
---|
623 | Instance = File->Instance;
|
---|
624 |
|
---|
625 | if (File->FvFileInfo == Instance->Root->FvFileInfo) {
|
---|
626 | if (File->DirReadNext) {
|
---|
627 | //
|
---|
628 | // Directory read: populate Buffer with an EFI_FILE_INFO
|
---|
629 | //
|
---|
630 | Status = FvFsGetFileInfo (File->DirReadNext, BufferSize, Buffer);
|
---|
631 | if (!EFI_ERROR (Status)) {
|
---|
632 | //
|
---|
633 | // Successfully read a directory entry, now update the pointer to the
|
---|
634 | // next file, which will be read on the next call to this function
|
---|
635 | //
|
---|
636 | FvFileInfoLink = GetNextNode (&Instance->FileInfoHead, &File->DirReadNext->Link);
|
---|
637 | if (IsNull (&Instance->FileInfoHead, FvFileInfoLink)) {
|
---|
638 | //
|
---|
639 | // No more files left
|
---|
640 | //
|
---|
641 | File->DirReadNext = NULL;
|
---|
642 | } else {
|
---|
643 | File->DirReadNext = FVFS_FILE_INFO_FROM_LINK (FvFileInfoLink);
|
---|
644 | }
|
---|
645 | }
|
---|
646 | return Status;
|
---|
647 | } else {
|
---|
648 | //
|
---|
649 | // Directory read. All entries have been read, so return a zero-size
|
---|
650 | // buffer.
|
---|
651 | //
|
---|
652 | *BufferSize = 0;
|
---|
653 | return EFI_SUCCESS;
|
---|
654 | }
|
---|
655 | } else {
|
---|
656 | FileSize = (UINTN)File->FvFileInfo->FileInfo.FileSize;
|
---|
657 |
|
---|
658 | FileBuffer = AllocateZeroPool (FileSize);
|
---|
659 | if (FileBuffer == NULL) {
|
---|
660 | return EFI_DEVICE_ERROR;
|
---|
661 | }
|
---|
662 |
|
---|
663 | Status = FvFsReadFile (File->Instance->FvProtocol, File->FvFileInfo, &FileSize, &FileBuffer);
|
---|
664 | if (EFI_ERROR (Status)) {
|
---|
665 | return EFI_DEVICE_ERROR;
|
---|
666 | }
|
---|
667 |
|
---|
668 | if (*BufferSize + File->Position > FileSize) {
|
---|
669 | *BufferSize = (UINTN)(FileSize - File->Position);
|
---|
670 | }
|
---|
671 |
|
---|
672 | CopyMem (Buffer, (UINT8*)FileBuffer + File->Position, *BufferSize);
|
---|
673 | File->Position += *BufferSize;
|
---|
674 |
|
---|
675 | return EFI_SUCCESS;
|
---|
676 | }
|
---|
677 | }
|
---|
678 |
|
---|
679 | /**
|
---|
680 | Writes data to a file.
|
---|
681 |
|
---|
682 | @param This A pointer to the EFI_FILE_PROTOCOL instance that is the file
|
---|
683 | handle to write data to.
|
---|
684 | @param BufferSize On input, the size of the Buffer. On output, the amount of data
|
---|
685 | actually written. In both cases, the size is measured in bytes.
|
---|
686 | @param Buffer The buffer of data to write.
|
---|
687 |
|
---|
688 | @retval EFI_SUCCESS Data was written.
|
---|
689 | @retval EFI_UNSUPPORTED Writes to open directory files are not supported.
|
---|
690 | @retval EFI_NO_MEDIA The device has no medium.
|
---|
691 | @retval EFI_DEVICE_ERROR The device reported an error.
|
---|
692 | @retval EFI_DEVICE_ERROR An attempt was made to write to a deleted file.
|
---|
693 | @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
|
---|
694 | @retval EFI_WRITE_PROTECTED The file or medium is write-protected.
|
---|
695 | @retval EFI_ACCESS_DENIED The file was opened read only.
|
---|
696 | @retval EFI_VOLUME_FULL The volume is full.
|
---|
697 |
|
---|
698 | **/
|
---|
699 | EFI_STATUS
|
---|
700 | EFIAPI
|
---|
701 | FvSimpleFileSystemWrite (
|
---|
702 | IN EFI_FILE_PROTOCOL *This,
|
---|
703 | IN OUT UINTN *BufferSize,
|
---|
704 | IN VOID *Buffer
|
---|
705 | )
|
---|
706 | {
|
---|
707 | FV_FILESYSTEM_INSTANCE *Instance;
|
---|
708 | FV_FILESYSTEM_FILE *File;
|
---|
709 |
|
---|
710 | File = FVFS_FILE_FROM_FILE_THIS (This);
|
---|
711 | Instance = File->Instance;
|
---|
712 |
|
---|
713 | if (File->FvFileInfo == Instance->Root->FvFileInfo) {
|
---|
714 | return EFI_UNSUPPORTED;
|
---|
715 | } else {
|
---|
716 | return EFI_WRITE_PROTECTED;
|
---|
717 | }
|
---|
718 | }
|
---|
719 |
|
---|
720 | /**
|
---|
721 | Returns a file's current position.
|
---|
722 |
|
---|
723 | @param This A pointer to the EFI_FILE_PROTOCOL instance that is the file
|
---|
724 | handle to get the current position on.
|
---|
725 | @param Position The address to return the file's current position value.
|
---|
726 |
|
---|
727 | @retval EFI_SUCCESS The position was returned.
|
---|
728 | @retval EFI_UNSUPPORTED The request is not valid on open directories.
|
---|
729 | @retval EFI_DEVICE_ERROR An attempt was made to get the position from a deleted file.
|
---|
730 |
|
---|
731 | **/
|
---|
732 | EFI_STATUS
|
---|
733 | EFIAPI
|
---|
734 | FvSimpleFileSystemGetPosition (
|
---|
735 | IN EFI_FILE_PROTOCOL *This,
|
---|
736 | OUT UINT64 *Position
|
---|
737 | )
|
---|
738 | {
|
---|
739 | FV_FILESYSTEM_INSTANCE *Instance;
|
---|
740 | FV_FILESYSTEM_FILE *File;
|
---|
741 |
|
---|
742 | File = FVFS_FILE_FROM_FILE_THIS (This);
|
---|
743 | Instance = File->Instance;
|
---|
744 |
|
---|
745 | if (File->FvFileInfo == Instance->Root->FvFileInfo) {
|
---|
746 | return EFI_UNSUPPORTED;
|
---|
747 | } else {
|
---|
748 | *Position = File->Position;
|
---|
749 | return EFI_SUCCESS;
|
---|
750 | }
|
---|
751 | }
|
---|
752 |
|
---|
753 | /**
|
---|
754 | Sets a file's current position.
|
---|
755 |
|
---|
756 | @param This A pointer to the EFI_FILE_PROTOCOL instance that is the
|
---|
757 | file handle to set the requested position on.
|
---|
758 | @param Position The byte position from the start of the file to set.
|
---|
759 |
|
---|
760 | @retval EFI_SUCCESS The position was set.
|
---|
761 | @retval EFI_UNSUPPORTED The seek request for nonzero is not valid on open
|
---|
762 | directories.
|
---|
763 | @retval EFI_DEVICE_ERROR An attempt was made to set the position of a deleted file.
|
---|
764 |
|
---|
765 | **/
|
---|
766 | EFI_STATUS
|
---|
767 | EFIAPI
|
---|
768 | FvSimpleFileSystemSetPosition (
|
---|
769 | IN EFI_FILE_PROTOCOL *This,
|
---|
770 | IN UINT64 Position
|
---|
771 | )
|
---|
772 | {
|
---|
773 | FV_FILESYSTEM_INSTANCE *Instance;
|
---|
774 | FV_FILESYSTEM_FILE *File;
|
---|
775 |
|
---|
776 | File = FVFS_FILE_FROM_FILE_THIS (This);
|
---|
777 | Instance = File->Instance;
|
---|
778 |
|
---|
779 | if (File->FvFileInfo == Instance->Root->FvFileInfo) {
|
---|
780 | if (Position != 0) {
|
---|
781 | return EFI_UNSUPPORTED;
|
---|
782 | }
|
---|
783 | //
|
---|
784 | // Reset directory position to first entry
|
---|
785 | //
|
---|
786 | File->DirReadNext = FVFS_GET_FIRST_FILE_INFO (Instance);
|
---|
787 | } else if (Position == 0xFFFFFFFFFFFFFFFFull) {
|
---|
788 | File->Position = File->FvFileInfo->FileInfo.FileSize;
|
---|
789 | } else {
|
---|
790 | File->Position = Position;
|
---|
791 | }
|
---|
792 |
|
---|
793 | return EFI_SUCCESS;
|
---|
794 | }
|
---|
795 |
|
---|
796 | /**
|
---|
797 | Flushes all modified data associated with a file to a device.
|
---|
798 |
|
---|
799 | @param This A pointer to the EFI_FILE_PROTOCOL instance that is the file
|
---|
800 | handle to flush.
|
---|
801 |
|
---|
802 | @retval EFI_SUCCESS The data was flushed.
|
---|
803 | @retval EFI_NO_MEDIA The device has no medium.
|
---|
804 | @retval EFI_DEVICE_ERROR The device reported an error.
|
---|
805 | @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
|
---|
806 | @retval EFI_WRITE_PROTECTED The file or medium is write-protected.
|
---|
807 | @retval EFI_ACCESS_DENIED The file was opened read-only.
|
---|
808 | @retval EFI_VOLUME_FULL The volume is full.
|
---|
809 |
|
---|
810 | **/
|
---|
811 | EFI_STATUS
|
---|
812 | EFIAPI
|
---|
813 | FvSimpleFileSystemFlush (
|
---|
814 | IN EFI_FILE_PROTOCOL *This
|
---|
815 | )
|
---|
816 | {
|
---|
817 | return EFI_WRITE_PROTECTED;
|
---|
818 | }
|
---|
819 |
|
---|
820 | /**
|
---|
821 | Close and delete the file handle.
|
---|
822 |
|
---|
823 | @param This A pointer to the EFI_FILE_PROTOCOL instance that is the
|
---|
824 | handle to the file to delete.
|
---|
825 |
|
---|
826 | @retval EFI_SUCCESS The file was closed and deleted, and the handle was closed.
|
---|
827 | @retval EFI_WARN_DELETE_FAILURE The handle was closed, but the file was not deleted.
|
---|
828 |
|
---|
829 | **/
|
---|
830 | EFI_STATUS
|
---|
831 | EFIAPI
|
---|
832 | FvSimpleFileSystemDelete (
|
---|
833 | IN EFI_FILE_PROTOCOL *This
|
---|
834 | )
|
---|
835 | {
|
---|
836 | EFI_STATUS Status;
|
---|
837 |
|
---|
838 | Status = FvSimpleFileSystemClose (This);
|
---|
839 | ASSERT_EFI_ERROR (Status);
|
---|
840 |
|
---|
841 | return EFI_WARN_DELETE_FAILURE;
|
---|
842 | }
|
---|
843 |
|
---|
844 | /**
|
---|
845 | Returns information about a file.
|
---|
846 |
|
---|
847 | @param This A pointer to the EFI_FILE_PROTOCOL instance that is the file
|
---|
848 | handle the requested information is for.
|
---|
849 | @param InformationType The type identifier for the information being requested.
|
---|
850 | @param BufferSize On input, the size of Buffer. On output, the amount of data
|
---|
851 | returned in Buffer. In both cases, the size is measured in bytes.
|
---|
852 | @param Buffer A pointer to the data buffer to return. The buffer's type is
|
---|
853 | indicated by InformationType.
|
---|
854 |
|
---|
855 | @retval EFI_SUCCESS The information was returned.
|
---|
856 | @retval EFI_UNSUPPORTED The InformationType is not known.
|
---|
857 | @retval EFI_NO_MEDIA The device has no medium.
|
---|
858 | @retval EFI_DEVICE_ERROR The device reported an error.
|
---|
859 | @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
|
---|
860 | @retval EFI_BUFFER_TOO_SMALL The BufferSize is too small to read the current directory entry.
|
---|
861 | BufferSize has been updated with the size needed to complete
|
---|
862 | the request.
|
---|
863 | **/
|
---|
864 | EFI_STATUS
|
---|
865 | EFIAPI
|
---|
866 | FvSimpleFileSystemGetInfo (
|
---|
867 | IN EFI_FILE_PROTOCOL *This,
|
---|
868 | IN EFI_GUID *InformationType,
|
---|
869 | IN OUT UINTN *BufferSize,
|
---|
870 | OUT VOID *Buffer
|
---|
871 | )
|
---|
872 | {
|
---|
873 | FV_FILESYSTEM_FILE *File;
|
---|
874 | EFI_FILE_SYSTEM_INFO *FsInfoOut;
|
---|
875 | EFI_FILE_SYSTEM_VOLUME_LABEL *FsVolumeLabel;
|
---|
876 | FV_FILESYSTEM_INSTANCE *Instance;
|
---|
877 | UINTN Size;
|
---|
878 | EFI_STATUS Status;
|
---|
879 |
|
---|
880 | File = FVFS_FILE_FROM_FILE_THIS (This);
|
---|
881 |
|
---|
882 | if (CompareGuid (InformationType, &gEfiFileSystemInfoGuid)) {
|
---|
883 | //
|
---|
884 | // Return filesystem info
|
---|
885 | //
|
---|
886 | Instance = File->Instance;
|
---|
887 |
|
---|
888 | Size = sizeof (EFI_FILE_SYSTEM_INFO) + StrSize (Instance->VolumeLabel) - sizeof (CHAR16);
|
---|
889 |
|
---|
890 | if (*BufferSize < Size) {
|
---|
891 | *BufferSize = Size;
|
---|
892 | return EFI_BUFFER_TOO_SMALL;
|
---|
893 | }
|
---|
894 |
|
---|
895 | //
|
---|
896 | // Cast output buffer for convenience
|
---|
897 | //
|
---|
898 | FsInfoOut = (EFI_FILE_SYSTEM_INFO *) Buffer;
|
---|
899 |
|
---|
900 | CopyMem (FsInfoOut, &mFsInfoTemplate, sizeof (EFI_FILE_SYSTEM_INFO));
|
---|
901 | Status = StrnCpyS (FsInfoOut->VolumeLabel, (*BufferSize - OFFSET_OF (EFI_FILE_SYSTEM_INFO, VolumeLabel)) / sizeof (CHAR16), Instance->VolumeLabel, StrLen (Instance->VolumeLabel));
|
---|
902 | ASSERT_EFI_ERROR (Status);
|
---|
903 | FsInfoOut->Size = Size;
|
---|
904 | return Status;
|
---|
905 | } else if (CompareGuid (InformationType, &gEfiFileInfoGuid)) {
|
---|
906 | //
|
---|
907 | // Return file info
|
---|
908 | //
|
---|
909 | return FvFsGetFileInfo (File->FvFileInfo, BufferSize, (EFI_FILE_INFO *) Buffer);
|
---|
910 | } else if (CompareGuid (InformationType, &gEfiFileSystemVolumeLabelInfoIdGuid)) {
|
---|
911 | //
|
---|
912 | // Return Volume Label
|
---|
913 | //
|
---|
914 | Instance = File->Instance;
|
---|
915 | Size = sizeof (EFI_FILE_SYSTEM_VOLUME_LABEL) + StrSize (Instance->VolumeLabel) - sizeof (CHAR16);;
|
---|
916 | if (*BufferSize < Size) {
|
---|
917 | *BufferSize = Size;
|
---|
918 | return EFI_BUFFER_TOO_SMALL;
|
---|
919 | }
|
---|
920 |
|
---|
921 | FsVolumeLabel = (EFI_FILE_SYSTEM_VOLUME_LABEL*) Buffer;
|
---|
922 | Status = StrnCpyS (FsVolumeLabel->VolumeLabel, (*BufferSize - OFFSET_OF (EFI_FILE_SYSTEM_VOLUME_LABEL, VolumeLabel)) / sizeof (CHAR16), Instance->VolumeLabel, StrLen (Instance->VolumeLabel));
|
---|
923 | ASSERT_EFI_ERROR (Status);
|
---|
924 | return Status;
|
---|
925 | } else {
|
---|
926 | return EFI_UNSUPPORTED;
|
---|
927 | }
|
---|
928 | }
|
---|
929 |
|
---|
930 | /**
|
---|
931 | Sets information about a file.
|
---|
932 |
|
---|
933 | @param This A pointer to the EFI_FILE_PROTOCOL instance that is the file
|
---|
934 | handle the information is for.
|
---|
935 | @param InformationType The type identifier for the information being set.
|
---|
936 | @param BufferSize The size, in bytes, of Buffer.
|
---|
937 | @param Buffer A pointer to the data buffer to write. The buffer's type is
|
---|
938 | indicated by InformationType.
|
---|
939 |
|
---|
940 | @retval EFI_SUCCESS The information was set.
|
---|
941 | @retval EFI_UNSUPPORTED The InformationType is not known.
|
---|
942 | @retval EFI_NO_MEDIA The device has no medium.
|
---|
943 | @retval EFI_DEVICE_ERROR The device reported an error.
|
---|
944 | @retval EFI_VOLUME_CORRUPTED The file system structures are corrupted.
|
---|
945 | @retval EFI_WRITE_PROTECTED InformationType is EFI_FILE_INFO_ID and the media is
|
---|
946 | read-only.
|
---|
947 | @retval EFI_WRITE_PROTECTED InformationType is EFI_FILE_PROTOCOL_SYSTEM_INFO_ID
|
---|
948 | and the media is read only.
|
---|
949 | @retval EFI_WRITE_PROTECTED InformationType is EFI_FILE_SYSTEM_VOLUME_LABEL_ID
|
---|
950 | and the media is read-only.
|
---|
951 | @retval EFI_ACCESS_DENIED An attempt is made to change the name of a file to a
|
---|
952 | file that is already present.
|
---|
953 | @retval EFI_ACCESS_DENIED An attempt is being made to change the EFI_FILE_DIRECTORY
|
---|
954 | Attribute.
|
---|
955 | @retval EFI_ACCESS_DENIED An attempt is being made to change the size of a directory.
|
---|
956 | @retval EFI_ACCESS_DENIED InformationType is EFI_FILE_INFO_ID and the file was opened
|
---|
957 | read-only and an attempt is being made to modify a field
|
---|
958 | other than Attribute.
|
---|
959 | @retval EFI_VOLUME_FULL The volume is full.
|
---|
960 | @retval EFI_BAD_BUFFER_SIZE BufferSize is smaller than the size of the type indicated
|
---|
961 | by InformationType.
|
---|
962 |
|
---|
963 | **/
|
---|
964 | EFI_STATUS
|
---|
965 | EFIAPI
|
---|
966 | FvSimpleFileSystemSetInfo (
|
---|
967 | IN EFI_FILE_PROTOCOL *This,
|
---|
968 | IN EFI_GUID *InformationType,
|
---|
969 | IN UINTN BufferSize,
|
---|
970 | IN VOID *Buffer
|
---|
971 | )
|
---|
972 | {
|
---|
973 | if (CompareGuid (InformationType, &gEfiFileSystemInfoGuid) ||
|
---|
974 | CompareGuid (InformationType, &gEfiFileInfoGuid) ||
|
---|
975 | CompareGuid (InformationType, &gEfiFileSystemVolumeLabelInfoIdGuid)) {
|
---|
976 | return EFI_WRITE_PROTECTED;
|
---|
977 | }
|
---|
978 |
|
---|
979 | return EFI_UNSUPPORTED;
|
---|
980 | }
|
---|
981 |
|
---|