]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Core/Dxe/FwVol/FwVolRead.c
Refine code to make it more safely.
[mirror_edk2.git] / MdeModulePkg / Core / Dxe / FwVol / FwVolRead.c
1 /** @file
2 Implements functions to read firmware file
3
4 Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>
5 This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 **/
14
15 #include "DxeMain.h"
16 #include "FwVolDriver.h"
17
18 /**
19 Required Alignment Alignment Value in FFS Alignment Value in
20 (bytes) Attributes Field Firmware Volume Interfaces
21 1 0 0
22 16 1 4
23 128 2 7
24 512 3 9
25 1 KB 4 10
26 4 KB 5 12
27 32 KB 6 15
28 64 KB 7 16
29 **/
30 UINT8 mFvAttributes[] = {0, 4, 7, 9, 10, 12, 15, 16};
31
32 /**
33 Convert the FFS File Attributes to FV File Attributes
34
35 @param FfsAttributes The attributes of UINT8 type.
36
37 @return The attributes of EFI_FV_FILE_ATTRIBUTES
38
39 **/
40 EFI_FV_FILE_ATTRIBUTES
41 FfsAttributes2FvFileAttributes (
42 IN EFI_FFS_FILE_ATTRIBUTES FfsAttributes
43 )
44 {
45 UINT8 DataAlignment;
46 EFI_FV_FILE_ATTRIBUTES FileAttribute;
47
48 DataAlignment = (UINT8) ((FfsAttributes & FFS_ATTRIB_DATA_ALIGNMENT) >> 3);
49 ASSERT (DataAlignment < 8);
50
51 FileAttribute = (EFI_FV_FILE_ATTRIBUTES) mFvAttributes[DataAlignment];
52
53 if ((FfsAttributes & FFS_ATTRIB_FIXED) == FFS_ATTRIB_FIXED) {
54 FileAttribute |= EFI_FV_FILE_ATTRIB_FIXED;
55 }
56
57 return FileAttribute;
58 }
59
60 /**
61 Given the input key, search for the next matching file in the volume.
62
63 @param This Indicates the calling context.
64 @param Key Key is a pointer to a caller allocated
65 buffer that contains implementation specific
66 data that is used to track where to begin
67 the search for the next file. The size of
68 the buffer must be at least This->KeySize
69 bytes long. To reinitialize the search and
70 begin from the beginning of the firmware
71 volume, the entire buffer must be cleared to
72 zero. Other than clearing the buffer to
73 initiate a new search, the caller must not
74 modify the data in the buffer between calls
75 to GetNextFile().
76 @param FileType FileType is a pointer to a caller allocated
77 EFI_FV_FILETYPE. The GetNextFile() API can
78 filter it's search for files based on the
79 value of *FileType input. A *FileType input
80 of 0 causes GetNextFile() to search for
81 files of all types. If a file is found, the
82 file's type is returned in *FileType.
83 *FileType is not modified if no file is
84 found.
85 @param NameGuid NameGuid is a pointer to a caller allocated
86 EFI_GUID. If a file is found, the file's
87 name is returned in *NameGuid. *NameGuid is
88 not modified if no file is found.
89 @param Attributes Attributes is a pointer to a caller
90 allocated EFI_FV_FILE_ATTRIBUTES. If a file
91 is found, the file's attributes are returned
92 in *Attributes. *Attributes is not modified
93 if no file is found.
94 @param Size Size is a pointer to a caller allocated
95 UINTN. If a file is found, the file's size
96 is returned in *Size. *Size is not modified
97 if no file is found.
98
99 @retval EFI_SUCCESS Successfully find the file.
100 @retval EFI_DEVICE_ERROR Device error.
101 @retval EFI_ACCESS_DENIED Fv could not read.
102 @retval EFI_NOT_FOUND No matching file found.
103 @retval EFI_INVALID_PARAMETER Invalid parameter
104
105 **/
106 EFI_STATUS
107 EFIAPI
108 FvGetNextFile (
109 IN CONST EFI_FIRMWARE_VOLUME2_PROTOCOL *This,
110 IN OUT VOID *Key,
111 IN OUT EFI_FV_FILETYPE *FileType,
112 OUT EFI_GUID *NameGuid,
113 OUT EFI_FV_FILE_ATTRIBUTES *Attributes,
114 OUT UINTN *Size
115 )
116 {
117 EFI_STATUS Status;
118 FV_DEVICE *FvDevice;
119 EFI_FV_ATTRIBUTES FvAttributes;
120 EFI_FFS_FILE_HEADER *FfsFileHeader;
121 UINTN *KeyValue;
122 LIST_ENTRY *Link;
123 FFS_FILE_LIST_ENTRY *FfsFileEntry;
124
125 FvDevice = FV_DEVICE_FROM_THIS (This);
126
127 Status = FvGetVolumeAttributes (This, &FvAttributes);
128 if (EFI_ERROR (Status)){
129 return Status;
130 }
131
132 //
133 // Check if read operation is enabled
134 //
135 if ((FvAttributes & EFI_FV2_READ_STATUS) == 0) {
136 return EFI_ACCESS_DENIED;
137 }
138
139 if (*FileType > EFI_FV_FILETYPE_SMM_CORE) {
140 //
141 // File type needs to be in 0 - 0x0D
142 //
143 return EFI_NOT_FOUND;
144 }
145
146 KeyValue = (UINTN *)Key;
147 for (;;) {
148 if (*KeyValue == 0) {
149 //
150 // Search for 1st matching file
151 //
152 Link = &FvDevice->FfsFileListHeader;
153 } else {
154 //
155 // Key is pointer to FFsFileEntry, so get next one
156 //
157 Link = (LIST_ENTRY *)(*KeyValue);
158 }
159
160 if (Link->ForwardLink == &FvDevice->FfsFileListHeader) {
161 //
162 // Next is end of list so we did not find data
163 //
164 return EFI_NOT_FOUND;
165 }
166
167 FfsFileEntry = (FFS_FILE_LIST_ENTRY *)Link->ForwardLink;
168 FfsFileHeader = (EFI_FFS_FILE_HEADER *)FfsFileEntry->FfsHeader;
169
170 //
171 // remember the key
172 //
173 *KeyValue = (UINTN)FfsFileEntry;
174
175 if (FfsFileHeader->Type == EFI_FV_FILETYPE_FFS_PAD) {
176 //
177 // we ignore pad files
178 //
179 continue;
180 }
181
182 if (*FileType == EFI_FV_FILETYPE_ALL) {
183 //
184 // Process all file types so we have a match
185 //
186 break;
187 }
188
189 if (*FileType == FfsFileHeader->Type) {
190 //
191 // Found a matching file type
192 //
193 break;
194 }
195
196 }
197
198 //
199 // Return FileType, NameGuid, and Attributes
200 //
201 *FileType = FfsFileHeader->Type;
202 CopyGuid (NameGuid, &FfsFileHeader->Name);
203 *Attributes = FfsAttributes2FvFileAttributes (FfsFileHeader->Attributes);
204 if ((FvDevice->FwVolHeader->Attributes & EFI_FVB2_MEMORY_MAPPED) == EFI_FVB2_MEMORY_MAPPED) {
205 *Attributes |= EFI_FV_FILE_ATTRIB_MEMORY_MAPPED;
206 }
207
208 //
209 // we need to substract the header size
210 //
211 if (IS_FFS_FILE2 (FfsFileHeader)) {
212 *Size = FFS_FILE2_SIZE (FfsFileHeader) - sizeof (EFI_FFS_FILE_HEADER2);
213 } else {
214 *Size = FFS_FILE_SIZE (FfsFileHeader) - sizeof (EFI_FFS_FILE_HEADER);
215 }
216
217 return EFI_SUCCESS;
218 }
219
220
221
222 /**
223 Locates a file in the firmware volume and
224 copies it to the supplied buffer.
225
226 @param This Indicates the calling context.
227 @param NameGuid Pointer to an EFI_GUID, which is the
228 filename.
229 @param Buffer Buffer is a pointer to pointer to a buffer
230 in which the file or section contents or are
231 returned.
232 @param BufferSize BufferSize is a pointer to caller allocated
233 UINTN. On input *BufferSize indicates the
234 size in bytes of the memory region pointed
235 to by Buffer. On output, *BufferSize
236 contains the number of bytes required to
237 read the file.
238 @param FoundType FoundType is a pointer to a caller allocated
239 EFI_FV_FILETYPE that on successful return
240 from Read() contains the type of file read.
241 This output reflects the file type
242 irrespective of the value of the SectionType
243 input.
244 @param FileAttributes FileAttributes is a pointer to a caller
245 allocated EFI_FV_FILE_ATTRIBUTES. On
246 successful return from Read(),
247 *FileAttributes contains the attributes of
248 the file read.
249 @param AuthenticationStatus AuthenticationStatus is a pointer to a
250 caller allocated UINTN in which the
251 authentication status is returned.
252
253 @retval EFI_SUCCESS Successfully read to memory buffer.
254 @retval EFI_WARN_BUFFER_TOO_SMALL Buffer too small.
255 @retval EFI_NOT_FOUND Not found.
256 @retval EFI_DEVICE_ERROR Device error.
257 @retval EFI_ACCESS_DENIED Could not read.
258 @retval EFI_INVALID_PARAMETER Invalid parameter.
259 @retval EFI_OUT_OF_RESOURCES Not enough buffer to be allocated.
260
261 **/
262 EFI_STATUS
263 EFIAPI
264 FvReadFile (
265 IN CONST EFI_FIRMWARE_VOLUME2_PROTOCOL *This,
266 IN CONST EFI_GUID *NameGuid,
267 IN OUT VOID **Buffer,
268 IN OUT UINTN *BufferSize,
269 OUT EFI_FV_FILETYPE *FoundType,
270 OUT EFI_FV_FILE_ATTRIBUTES *FileAttributes,
271 OUT UINT32 *AuthenticationStatus
272 )
273 {
274 EFI_STATUS Status;
275 FV_DEVICE *FvDevice;
276 EFI_GUID SearchNameGuid;
277 EFI_FV_FILETYPE LocalFoundType;
278 EFI_FV_FILE_ATTRIBUTES LocalAttributes;
279 UINTN FileSize;
280 UINT8 *SrcPtr;
281 EFI_FFS_FILE_HEADER *FfsHeader;
282 UINTN InputBufferSize;
283
284 if (NameGuid == NULL) {
285 return EFI_INVALID_PARAMETER;
286 }
287
288 FvDevice = FV_DEVICE_FROM_THIS (This);
289
290
291 //
292 // Keep looking until we find the matching NameGuid.
293 // The Key is really an FfsFileEntry
294 //
295 FvDevice->LastKey = 0;
296 do {
297 LocalFoundType = 0;
298 Status = FvGetNextFile (
299 This,
300 &FvDevice->LastKey,
301 &LocalFoundType,
302 &SearchNameGuid,
303 &LocalAttributes,
304 &FileSize
305 );
306 if (EFI_ERROR (Status)) {
307 return EFI_NOT_FOUND;
308 }
309 } while (!CompareGuid (&SearchNameGuid, NameGuid));
310
311 //
312 // Get a pointer to the header
313 //
314 FfsHeader = FvDevice->LastKey->FfsHeader;
315
316 //
317 // Remember callers buffer size
318 //
319 InputBufferSize = *BufferSize;
320
321 //
322 // Calculate return values
323 //
324 *FoundType = FfsHeader->Type;
325 *FileAttributes = FfsAttributes2FvFileAttributes (FfsHeader->Attributes);
326 if ((FvDevice->FwVolHeader->Attributes & EFI_FVB2_MEMORY_MAPPED) == EFI_FVB2_MEMORY_MAPPED) {
327 *FileAttributes |= EFI_FV_FILE_ATTRIB_MEMORY_MAPPED;
328 }
329 *AuthenticationStatus = 0;
330 *BufferSize = FileSize;
331
332 if (Buffer == NULL) {
333 //
334 // If Buffer is NULL, we only want to get the information collected so far
335 //
336 return EFI_SUCCESS;
337 }
338
339 //
340 // Skip over file header
341 //
342 if (IS_FFS_FILE2 (FfsHeader)) {
343 SrcPtr = ((UINT8 *) FfsHeader) + sizeof (EFI_FFS_FILE_HEADER2);
344 } else {
345 SrcPtr = ((UINT8 *) FfsHeader) + sizeof (EFI_FFS_FILE_HEADER);
346 }
347
348 Status = EFI_SUCCESS;
349 if (*Buffer == NULL) {
350 //
351 // Caller passed in a pointer so allocate buffer for them
352 //
353 *Buffer = AllocatePool (FileSize);
354 if (*Buffer == NULL) {
355 return EFI_OUT_OF_RESOURCES;
356 }
357 } else if (FileSize > InputBufferSize) {
358 //
359 // Callers buffer was not big enough
360 //
361 Status = EFI_WARN_BUFFER_TOO_SMALL;
362 FileSize = InputBufferSize;
363 }
364
365 //
366 // Copy data into callers buffer
367 //
368 CopyMem (*Buffer, SrcPtr, FileSize);
369
370 return Status;
371 }
372
373
374
375 /**
376 Locates a section in a given FFS File and
377 copies it to the supplied buffer (not including section header).
378
379 @param This Indicates the calling context.
380 @param NameGuid Pointer to an EFI_GUID, which is the
381 filename.
382 @param SectionType Indicates the section type to return.
383 @param SectionInstance Indicates which instance of sections with a
384 type of SectionType to return.
385 @param Buffer Buffer is a pointer to pointer to a buffer
386 in which the file or section contents or are
387 returned.
388 @param BufferSize BufferSize is a pointer to caller allocated
389 UINTN.
390 @param AuthenticationStatus AuthenticationStatus is a pointer to a
391 caller allocated UINT32 in which the
392 authentication status is returned.
393
394 @retval EFI_SUCCESS Successfully read the file section into
395 buffer.
396 @retval EFI_WARN_BUFFER_TOO_SMALL Buffer too small.
397 @retval EFI_NOT_FOUND Section not found.
398 @retval EFI_DEVICE_ERROR Device error.
399 @retval EFI_ACCESS_DENIED Could not read.
400 @retval EFI_INVALID_PARAMETER Invalid parameter.
401
402 **/
403 EFI_STATUS
404 EFIAPI
405 FvReadFileSection (
406 IN CONST EFI_FIRMWARE_VOLUME2_PROTOCOL *This,
407 IN CONST EFI_GUID *NameGuid,
408 IN EFI_SECTION_TYPE SectionType,
409 IN UINTN SectionInstance,
410 IN OUT VOID **Buffer,
411 IN OUT UINTN *BufferSize,
412 OUT UINT32 *AuthenticationStatus
413 )
414 {
415 EFI_STATUS Status;
416 FV_DEVICE *FvDevice;
417 EFI_FV_FILETYPE FileType;
418 EFI_FV_FILE_ATTRIBUTES FileAttributes;
419 UINTN FileSize;
420 UINT8 *FileBuffer;
421 FFS_FILE_LIST_ENTRY *FfsEntry;
422
423 if (NameGuid == NULL || Buffer == NULL) {
424 return EFI_INVALID_PARAMETER;
425 }
426
427 FvDevice = FV_DEVICE_FROM_THIS (This);
428
429 //
430 // Read the whole file into buffer
431 //
432 FileBuffer = NULL;
433 Status = FvReadFile (
434 This,
435 NameGuid,
436 (VOID **)&FileBuffer,
437 &FileSize,
438 &FileType,
439 &FileAttributes,
440 AuthenticationStatus
441 );
442 //
443 // Get the last key used by our call to FvReadFile as it is the FfsEntry for this file.
444 //
445 FfsEntry = (FFS_FILE_LIST_ENTRY *) FvDevice->LastKey;
446
447 if (EFI_ERROR (Status)) {
448 return Status;
449 }
450 ASSERT (FileBuffer != NULL);
451
452 //
453 // Check to see that the file actually HAS sections before we go any further.
454 //
455 if (FileType == EFI_FV_FILETYPE_RAW) {
456 Status = EFI_NOT_FOUND;
457 goto Done;
458 }
459
460 //
461 // Use FfsEntry to cache Section Extraction Protocol Information
462 //
463 if (FfsEntry->StreamHandle == 0) {
464 Status = OpenSectionStream (
465 FileSize,
466 FileBuffer,
467 &FfsEntry->StreamHandle
468 );
469 if (EFI_ERROR (Status)) {
470 goto Done;
471 }
472 }
473
474 //
475 // If SectionType == 0 We need the whole section stream
476 //
477 Status = GetSection (
478 FfsEntry->StreamHandle,
479 (SectionType == 0) ? NULL : &SectionType,
480 NULL,
481 (SectionType == 0) ? 0 : SectionInstance,
482 Buffer,
483 BufferSize,
484 AuthenticationStatus,
485 FvDevice->IsFfs3Fv
486 );
487
488 if (!EFI_ERROR (Status)) {
489 //
490 // Inherit the authentication status.
491 //
492 *AuthenticationStatus |= FvDevice->AuthenticationStatus;
493 }
494
495 //
496 // Close of stream defered to close of FfsHeader list to allow SEP to cache data
497 //
498
499 Done:
500 CoreFreePool (FileBuffer);
501
502 return Status;
503 }
504
505