Sync basetools' source and binary files with r1707 of the basetools project.
[edk2.git] / BaseTools / Source / C / VolInfo / VolInfo.c
blobb7237b08e82f21a43ea35e7376bf7a55c797f91c
1 /** @file
3 Copyright (c) 1999 - 2008, Intel Corporation
4 All rights reserved. This program and the accompanying materials
5 are licensed and made available under the terms and conditions of the BSD License
6 which accompanies this distribution. The full text of the license may be found at
7 http://opensource.org/licenses/bsd-license.php
9 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
10 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12 Module Name:
14 VolInfo.c
16 Abstract:
18 The tool dumps the contents of a firmware volume
20 **/
22 #include <stdio.h>
23 #include <stdlib.h>
24 #include <string.h>
25 #include <ctype.h>
26 #include <assert.h>
28 #include <FvLib.h>
29 #include <Common/UefiBaseTypes.h>
30 #include <Common/UefiCapsule.h>
31 #include <Common/PiFirmwareFile.h>
32 #include <Common/PiFirmwareVolume.h>
33 #include <Guid/PiFirmwareFileSystem.h>
34 #include <IndustryStandard/PeImage.h>
35 #include <Protocol/GuidedSectionExtraction.h>
37 #include "Compress.h"
38 #include "Decompress.h"
39 #include "VolInfo.h"
40 #include "CommonLib.h"
41 #include "EfiUtilityMsgs.h"
42 #include "FirmwareVolumeBufferLib.h"
43 #include "OsPath.h"
44 #include "ParseGuidedSectionTools.h"
45 #include "StringFuncs.h"
48 // Utility global variables
51 EFI_GUID gEfiCrc32GuidedSectionExtractionProtocolGuid = EFI_CRC32_GUIDED_SECTION_EXTRACTION_PROTOCOL_GUID;
53 #define UTILITY_MAJOR_VERSION 0
54 #define UTILITY_MINOR_VERSION 82
56 #define UTILITY_NAME "VolInfo"
58 #define EFI_SECTION_ERROR EFIERR (100)
60 #define MAX_BASENAME_LEN 60 // not good to hardcode, but let's be reasonable
63 // Structure to keep a list of guid-to-basenames
65 typedef struct _GUID_TO_BASENAME {
66 struct _GUID_TO_BASENAME *Next;
67 INT8 Guid[PRINTED_GUID_BUFFER_SIZE];
68 INT8 BaseName[MAX_BASENAME_LEN];
69 } GUID_TO_BASENAME;
71 static GUID_TO_BASENAME *mGuidBaseNameList = NULL;
74 // Store GUIDed Section guid->tool mapping
76 EFI_HANDLE mParsedGuidedSectionTools = NULL;
78 CHAR8* mUtilityFilename = NULL;
80 EFI_STATUS
81 ParseGuidBaseNameFile (
82 CHAR8 *FileName
85 EFI_STATUS
86 FreeGuidBaseNameList (
87 VOID
90 EFI_STATUS
91 PrintGuidName (
92 IN UINT8 *GuidStr
95 EFI_STATUS
96 ParseSection (
97 IN UINT8 *SectionBuffer,
98 IN UINT32 BufferLength
101 EFI_STATUS
102 DumpDepexSection (
103 IN UINT8 *Ptr,
104 IN UINT32 SectionLength
107 STATIC
108 EFI_STATUS
109 ReadHeader (
110 IN FILE *InputFile,
111 OUT UINT32 *FvSize,
112 OUT BOOLEAN *ErasePolarity
115 STATIC
116 EFI_STATUS
117 PrintFileInfo (
118 EFI_FIRMWARE_VOLUME_HEADER *FvImage,
119 EFI_FFS_FILE_HEADER *FileHeader,
120 BOOLEAN ErasePolarity
123 static
124 EFI_STATUS
125 PrintFvInfo (
126 IN VOID *Fv
129 static
130 VOID
131 LoadGuidedSectionToolsTxt (
132 IN CHAR8* FirmwareVolumeFilename
135 void
136 Usage (
137 VOID
141 main (
142 int argc,
143 char *argv[]
145 /*++
147 Routine Description:
149 GC_TODO: Add function description
151 Arguments:
153 argc - GC_TODO: add argument description
154 ] - GC_TODO: add argument description
156 Returns:
158 GC_TODO: add return values
160 --*/
162 FILE *InputFile;
163 int BytesRead;
164 EFI_FIRMWARE_VOLUME_HEADER *FvImage;
165 UINT32 FvSize;
166 EFI_STATUS Status;
167 int Offset;
168 BOOLEAN ErasePolarity;
170 SetUtilityName (UTILITY_NAME);
172 // Print utility header
174 printf ("%s Tiano Firmware Volume FFS image info. Version %d.%d, %s\n",
175 UTILITY_NAME,
176 UTILITY_MAJOR_VERSION,
177 UTILITY_MINOR_VERSION,
178 __DATE__
182 // Save, and then skip filename arg
184 mUtilityFilename = argv[0];
185 argc--;
186 argv++;
188 Offset = 0;
191 // If they specified -x xref guid/basename cross-reference files, process it.
192 // This will print the basename beside each file guid. To use it, specify
193 // -x xref_filename to processdsc, then use xref_filename as a parameter
194 // here.
196 while (argc > 2) {
197 if ((strcmp(argv[0], "-x") == 0) || (strcmp(argv[0], "--xref") == 0)) {
198 ParseGuidBaseNameFile (argv[1]);
199 printf("ParseGuidBaseNameFile: %s\n", argv[1]);
200 argc -= 2;
201 argv += 2;
202 } else if (strcmp(argv[0], "--offset") == 0) {
204 // Hex or decimal?
206 if ((argv[1][0] == '0') && (tolower (argv[1][1]) == 'x')) {
207 if (sscanf (argv[1], "%x", &Offset) != 1) {
208 Error (NULL, 0, 1003, "Invalid option value", "Offset = %s", argv[1]);
209 return GetUtilityStatus ();
211 } else {
212 if (sscanf (argv[1], "%d", &Offset) != 1) {
213 Error (NULL, 0, 1003, "Invalid option value", "Offset = %s", argv[1]);
214 return GetUtilityStatus ();
217 // See if they said something like "64K"
219 if (tolower (argv[1][strlen (argv[1]) - 1]) == 'k') {
220 Offset *= 1024;
224 argc -= 2;
225 argv += 2;
226 } else {
227 Usage ();
228 return -1;
232 // Check for proper number of arguments
234 if (argc != 1) {
235 Usage ();
236 return -1;
239 // Look for help options
241 if ((strcmp(argv[0], "-h") == 0) || (strcmp(argv[0], "--help") == 0) ||
242 (strcmp(argv[0], "-?") == 0) || (strcmp(argv[0], "/?") == 0)) {
243 Usage();
244 return STATUS_ERROR;
248 // Open the file containing the FV
250 InputFile = fopen (argv[0], "rb");
251 if (InputFile == NULL) {
252 Error (NULL, 0, 0001, "Error opening the input file", argv[0]);
253 return GetUtilityStatus ();
256 // Skip over pad bytes if specified. This is used if they prepend 0xff
257 // data to the FV image binary.
259 if (Offset != 0) {
260 fseek (InputFile, Offset, SEEK_SET);
263 // Determine size of FV
265 Status = ReadHeader (InputFile, &FvSize, &ErasePolarity);
266 if (EFI_ERROR (Status)) {
267 Error (NULL, 0, 0003, "error parsing FV image", "%s Header is invalid", argv[0]);
268 fclose (InputFile);
269 return GetUtilityStatus ();
272 // Allocate a buffer for the FV image
274 FvImage = malloc (FvSize);
275 if (FvImage == NULL) {
276 Error (NULL, 0, 4001, "Resource: Memory can't be allocated", NULL);
277 fclose (InputFile);
278 return GetUtilityStatus ();
281 // Seek to the start of the image, then read the entire FV to the buffer
283 fseek (InputFile, Offset, SEEK_SET);
284 BytesRead = fread (FvImage, 1, FvSize, InputFile);
285 fclose (InputFile);
286 if ((unsigned int) BytesRead != FvSize) {
287 Error (NULL, 0, 0004, "error reading FvImage from", argv[0]);
288 free (FvImage);
289 return GetUtilityStatus ();
292 LoadGuidedSectionToolsTxt (argv[0]);
294 PrintFvInfo (FvImage);
297 // Clean up
299 free (FvImage);
300 FreeGuidBaseNameList ();
301 return GetUtilityStatus ();
305 static
306 EFI_STATUS
307 PrintFvInfo (
308 IN VOID *Fv
310 /*++
312 Routine Description:
314 GC_TODO: Add function description
316 Arguments:
318 Fv - Firmware Volume to print information about
320 Returns:
322 EFI_STATUS
324 --*/
326 EFI_STATUS Status;
327 UINTN NumberOfFiles;
328 BOOLEAN ErasePolarity;
329 UINTN FvSize;
330 EFI_FFS_FILE_HEADER *CurrentFile;
331 UINTN Key;
333 Status = FvBufGetSize (Fv, &FvSize);
335 NumberOfFiles = 0;
336 ErasePolarity =
337 (((EFI_FIRMWARE_VOLUME_HEADER*)Fv)->Attributes & EFI_FVB2_ERASE_POLARITY) ?
338 TRUE : FALSE;
341 // Get the first file
343 Key = 0;
344 Status = FvBufFindNextFile (Fv, &Key, (VOID **) &CurrentFile);
345 if (EFI_ERROR (Status)) {
346 Error (NULL, 0, 0003, "error parsing FV image", "cannot find the first file in the FV image");
347 return GetUtilityStatus ();
350 // Display information about files found
352 while (CurrentFile != NULL) {
354 // Increment the number of files counter
356 NumberOfFiles++;
359 // Display info about this file
361 Status = PrintFileInfo (Fv, CurrentFile, ErasePolarity);
362 if (EFI_ERROR (Status)) {
363 Error (NULL, 0, 0003, "error parsing FV image", "failed to parse a file in the FV");
364 return GetUtilityStatus ();
367 // Get the next file
369 Status = FvBufFindNextFile (Fv, &Key, (VOID **) &CurrentFile);
370 if (Status == EFI_NOT_FOUND) {
371 CurrentFile = NULL;
372 } else if (EFI_ERROR (Status)) {
373 Error (NULL, 0, 0003, "error parsing FV image", "cannot find the next file in the FV image");
374 return GetUtilityStatus ();
378 printf ("There are a total of %d files in this FV\n", (int) NumberOfFiles);
380 return EFI_SUCCESS;
383 UINT32
384 GetOccupiedSize (
385 IN UINT32 ActualSize,
386 IN UINT32 Alignment
388 /*++
390 Routine Description:
392 This function returns the next larger size that meets the alignment
393 requirement specified.
395 Arguments:
397 ActualSize The size.
398 Alignment The desired alignment.
400 Returns:
402 EFI_SUCCESS Function completed successfully.
403 EFI_ABORTED The function encountered an error.
405 --*/
407 UINT32 OccupiedSize;
409 OccupiedSize = ActualSize;
410 while ((OccupiedSize & (Alignment - 1)) != 0) {
411 OccupiedSize++;
414 return OccupiedSize;
417 static
418 CHAR8 *
419 SectionNameToStr (
420 IN EFI_SECTION_TYPE Type
422 /*++
424 Routine Description:
426 Converts EFI Section names to Strings
428 Arguments:
430 Type - The EFI Section type
432 Returns:
434 CHAR8* - Pointer to the String containing the section name.
436 --*/
438 CHAR8 *SectionStr;
439 CHAR8 *SectionTypeStringTable[] = {
440 "EFI_SECTION_ALL",
442 // 0X00
444 "EFI_SECTION_COMPRESSION",
446 // 0x01
448 "EFI_SECTION_GUID_DEFINED",
450 // 0x02
452 "Unknown section type - Reserved 0x03",
454 // 0x03
456 "Unknown section type - Reserved 0x04",
458 // 0x04
460 "Unknown section type - Reserved 0x05",
462 // 0x05
464 "Unknown section type - Reserved 0x06",
466 // 0x06
468 "Unknown section type - Reserved 0x07",
470 // 0x07
472 "Unknown section type - Reserved 0x08",
474 // 0x08
476 "Unknown section type - Reserved 0x09",
478 // 0x09
480 "Unknown section type - Reserved 0x0A",
482 // 0x0A
484 "Unknown section type - Reserved 0x0B",
486 // 0x0B
488 "Unknown section type - Reserved 0x0C",
490 // 0x0C
492 "Unknown section type - Reserved 0x0D",
494 // 0x0D
496 "Unknown section type - Reserved 0x0E",
498 // 0x0E
500 "Unknown section type - Reserved 0x0F",
502 // 0x0F
504 "EFI_SECTION_PE32",
506 // 0x10
508 "EFI_SECTION_PIC",
510 // 0x11
512 "EFI_SECTION_TE",
514 // 0x12
516 "EFI_SECTION_DXE_DEPEX",
518 // 0x13
520 "EFI_SECTION_VERSION",
522 // 0x14
524 "EFI_SECTION_USER_INTERFACE",
526 // 0x15
528 "EFI_SECTION_COMPATIBILITY16",
530 // 0x16
532 "EFI_SECTION_FIRMWARE_VOLUME_IMAGE ",
534 // 0x17
536 "EFI_SECTION_FREEFORM_SUBTYPE_GUID ",
538 // 0x18
540 "EFI_SECTION_RAW",
542 // 0x19
544 "Unknown section type - 0x1A",
546 // 0x1A
548 "EFI_SECTION_PEI_DEPEX",
550 // 0x1B
552 "Unknown section type - Reserved - beyond last defined section"
554 // 0x1C+
558 if (Type > EFI_SECTION_LAST_SECTION_TYPE) {
559 Type = EFI_SECTION_LAST_SECTION_TYPE + 1;
562 SectionStr = malloc (100);
563 if (SectionStr == NULL) {
564 printf ("Error: Out of memory resources.\n");
565 return SectionStr;
567 strcpy (SectionStr, SectionTypeStringTable[Type]);
568 return SectionStr;
571 STATIC
572 EFI_STATUS
573 ReadHeader (
574 IN FILE *InputFile,
575 OUT UINT32 *FvSize,
576 OUT BOOLEAN *ErasePolarity
578 /*++
580 Routine Description:
582 This function determines the size of the FV and the erase polarity. The
583 erase polarity is the FALSE value for file state.
585 Arguments:
587 InputFile The file that contains the FV image.
588 FvSize The size of the FV.
589 ErasePolarity The FV erase polarity.
591 Returns:
593 EFI_SUCCESS Function completed successfully.
594 EFI_INVALID_PARAMETER A required parameter was NULL or is out of range.
595 EFI_ABORTED The function encountered an error.
597 --*/
599 EFI_FIRMWARE_VOLUME_HEADER VolumeHeader;
600 EFI_FV_BLOCK_MAP_ENTRY BlockMap;
601 UINTN Signature[2];
602 UINTN BytesRead;
603 UINT32 Size;
605 BytesRead = 0;
606 Size = 0;
608 // Check input parameters
610 if (InputFile == NULL || FvSize == NULL || ErasePolarity == NULL) {
611 Error (__FILE__, __LINE__, 0, "application error", "invalid parameter to function");
612 return EFI_INVALID_PARAMETER;
615 // Read the header
617 fread (&VolumeHeader, sizeof (EFI_FIRMWARE_VOLUME_HEADER) - sizeof (EFI_FV_BLOCK_MAP_ENTRY), 1, InputFile);
618 BytesRead = sizeof (EFI_FIRMWARE_VOLUME_HEADER) - sizeof (EFI_FV_BLOCK_MAP_ENTRY);
619 Signature[0] = VolumeHeader.Signature;
620 Signature[1] = 0;
623 // Print FV header information
625 printf ("Signature: %s (%X)\n", (char *) Signature, (unsigned) VolumeHeader.Signature);
626 printf ("Attributes: %X\n", (unsigned) VolumeHeader.Attributes);
628 if (VolumeHeader.Attributes & EFI_FVB2_READ_DISABLED_CAP) {
629 printf (" EFI_FVB2_READ_DISABLED_CAP\n");
632 if (VolumeHeader.Attributes & EFI_FVB2_READ_ENABLED_CAP) {
633 printf (" EFI_FVB2_READ_ENABLED_CAP\n");
636 if (VolumeHeader.Attributes & EFI_FVB2_READ_STATUS) {
637 printf (" EFI_FVB2_READ_STATUS\n");
640 if (VolumeHeader.Attributes & EFI_FVB2_WRITE_DISABLED_CAP) {
641 printf (" EFI_FVB2_WRITE_DISABLED_CAP\n");
644 if (VolumeHeader.Attributes & EFI_FVB2_WRITE_ENABLED_CAP) {
645 printf (" EFI_FVB2_WRITE_ENABLED_CAP\n");
648 if (VolumeHeader.Attributes & EFI_FVB2_WRITE_STATUS) {
649 printf (" EFI_FVB2_WRITE_STATUS\n");
652 if (VolumeHeader.Attributes & EFI_FVB2_LOCK_CAP) {
653 printf (" EFI_FVB2_LOCK_CAP\n");
656 if (VolumeHeader.Attributes & EFI_FVB2_LOCK_STATUS) {
657 printf (" EFI_FVB2_LOCK_STATUS\n");
660 if (VolumeHeader.Attributes & EFI_FVB2_STICKY_WRITE) {
661 printf (" EFI_FVB2_STICKY_WRITE\n");
664 if (VolumeHeader.Attributes & EFI_FVB2_MEMORY_MAPPED) {
665 printf (" EFI_FVB2_MEMORY_MAPPED\n");
668 if (VolumeHeader.Attributes & EFI_FVB2_ERASE_POLARITY) {
669 printf (" EFI_FVB2_ERASE_POLARITY\n");
670 *ErasePolarity = TRUE;
673 #if (PI_SPECIFICATION_VERSION < 0x00010000)
674 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT) {
675 printf (" EFI_FVB2_ALIGNMENT\n");
678 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_2) {
679 printf (" EFI_FVB2_ALIGNMENT_2\n");
682 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_4) {
683 printf (" EFI_FVB2_ALIGNMENT_4\n");
686 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_8) {
687 printf (" EFI_FVB2_ALIGNMENT_8\n");
690 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_16) {
691 printf (" EFI_FVB2_ALIGNMENT_16\n");
694 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_32) {
695 printf (" EFI_FVB2_ALIGNMENT_32\n");
698 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_64) {
699 printf (" EFI_FVB2_ALIGNMENT_64\n");
702 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_128) {
703 printf (" EFI_FVB2_ALIGNMENT_128\n");
706 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_256) {
707 printf (" EFI_FVB2_ALIGNMENT_256\n");
710 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_512) {
711 printf (" EFI_FVB2_ALIGNMENT_512\n");
714 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_1K) {
715 printf (" EFI_FVB2_ALIGNMENT_1K\n");
718 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_2K) {
719 printf (" EFI_FVB2_ALIGNMENT_2K\n");
722 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_4K) {
723 printf (" EFI_FVB2_ALIGNMENT_4K\n");
726 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_8K) {
727 printf (" EFI_FVB2_ALIGNMENT_8K\n");
730 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_16K) {
731 printf (" EFI_FVB2_ALIGNMENT_16K\n");
734 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_32K) {
735 printf (" EFI_FVB2_ALIGNMENT_32K\n");
738 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_64K) {
739 printf (" EFI_FVB2_ALIGNMENT_64K\n");
742 #else
744 if (VolumeHeader.Attributes & EFI_FVB2_READ_LOCK_CAP) {
745 printf (" EFI_FVB2_READ_LOCK_CAP\n");
748 if (VolumeHeader.Attributes & EFI_FVB2_READ_LOCK_STATUS) {
749 printf (" EFI_FVB2_READ_LOCK_STATUS\n");
752 if (VolumeHeader.Attributes & EFI_FVB2_WRITE_LOCK_CAP) {
753 printf (" EFI_FVB2_WRITE_LOCK_CAP\n");
756 if (VolumeHeader.Attributes & EFI_FVB2_WRITE_LOCK_STATUS) {
757 printf (" EFI_FVB2_WRITE_LOCK_STATUS\n");
760 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_1) {
761 printf (" EFI_FVB2_ALIGNMENT_1\n");
764 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_2) {
765 printf (" EFI_FVB2_ALIGNMENT_2\n");
768 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_4) {
769 printf (" EFI_FVB2_ALIGNMENT_4\n");
772 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_8) {
773 printf (" EFI_FVB2_ALIGNMENT_8\n");
776 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_16) {
777 printf (" EFI_FVB2_ALIGNMENT_16\n");
780 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_32) {
781 printf (" EFI_FVB2_ALIGNMENT_32\n");
784 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_64) {
785 printf (" EFI_FVB2_ALIGNMENT_64\n");
788 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_128) {
789 printf (" EFI_FVB2_ALIGNMENT_128\n");
792 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_256) {
793 printf (" EFI_FVB2_ALIGNMENT_256\n");
796 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_512) {
797 printf (" EFI_FVB2_ALIGNMENT_512\n");
800 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_1K) {
801 printf (" EFI_FVB2_ALIGNMENT_1K\n");
804 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_2K) {
805 printf (" EFI_FVB2_ALIGNMENT_2K\n");
808 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_4K) {
809 printf (" EFI_FVB2_ALIGNMENT_4K\n");
812 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_8K) {
813 printf (" EFI_FVB2_ALIGNMENT_8K\n");
816 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_16K) {
817 printf (" EFI_FVB2_ALIGNMENT_16K\n");
820 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_32K) {
821 printf (" EFI_FVB2_ALIGNMENT_32K\n");
824 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_64K) {
825 printf (" EFI_FVB2_ALIGNMENT_64K\n");
828 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_128K) {
829 printf (" EFI_FVB2_ALIGNMENT_128K\n");
832 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_256K) {
833 printf (" EFI_FVB2_ALIGNMENT_256K\n");
836 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMNET_512K) {
837 printf (" EFI_FVB2_ALIGNMNET_512K\n");
840 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_1M) {
841 printf (" EFI_FVB2_ALIGNMENT_1M\n");
844 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_2M) {
845 printf (" EFI_FVB2_ALIGNMENT_2M\n");
848 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_4M) {
849 printf (" EFI_FVB2_ALIGNMENT_4M\n");
852 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_8M) {
853 printf (" EFI_FVB2_ALIGNMENT_8M\n");
856 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_16M) {
857 printf (" EFI_FVB2_ALIGNMENT_16M\n");
860 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_32M) {
861 printf (" EFI_FVB2_ALIGNMENT_32M\n");
864 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_64M) {
865 printf (" EFI_FVB2_ALIGNMENT_64M\n");
868 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_128M) {
869 printf (" EFI_FVB2_ALIGNMENT_128M\n");
872 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_64M) {
873 printf (" EFI_FVB2_ALIGNMENT_64M\n");
876 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_128M) {
877 printf (" EFI_FVB2_ALIGNMENT_128M\n");
880 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_256M) {
881 printf (" EFI_FVB2_ALIGNMENT_256M\n");
884 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_512M) {
885 printf (" EFI_FVB2_ALIGNMENT_512M\n");
888 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_1G) {
889 printf (" EFI_FVB2_ALIGNMENT_1G\n");
892 if (VolumeHeader.Attributes & EFI_FVB2_ALIGNMENT_2G) {
893 printf (" EFI_FVB2_ALIGNMENT_2G\n");
896 #endif
897 printf ("Header Length: 0x%08X\n", VolumeHeader.HeaderLength);
898 printf ("File System ID: ");
899 PrintGuid (&VolumeHeader.FileSystemGuid);
901 // printf ("\n");
903 printf ("Revision: 0x%04X\n", VolumeHeader.Revision);
905 do {
906 fread (&BlockMap, sizeof (EFI_FV_BLOCK_MAP_ENTRY), 1, InputFile);
907 BytesRead += sizeof (EFI_FV_BLOCK_MAP_ENTRY);
909 if (BlockMap.NumBlocks != 0) {
910 printf ("Number of Blocks: 0x%08X\n", (unsigned) BlockMap.NumBlocks);
911 printf ("Block Length: 0x%08X\n", (unsigned) BlockMap.Length);
912 Size += BlockMap.NumBlocks * BlockMap.Length;
915 } while (!(BlockMap.NumBlocks == 0 && BlockMap.Length == 0));
917 if (BytesRead != VolumeHeader.HeaderLength) {
918 printf ("ERROR: Header length not consistent with Block Maps!\n");
919 return EFI_ABORTED;
922 if (VolumeHeader.FvLength != Size) {
923 printf ("ERROR: Volume Size not consistant with Block Maps!\n");
924 return EFI_ABORTED;
927 printf ("Total Volume Size: 0x%08X\n", (unsigned) Size);
929 *FvSize = Size;
932 // rewind (InputFile);
934 return EFI_SUCCESS;
937 STATIC
938 EFI_STATUS
939 PrintFileInfo (
940 EFI_FIRMWARE_VOLUME_HEADER *FvImage,
941 EFI_FFS_FILE_HEADER *FileHeader,
942 BOOLEAN ErasePolarity
944 /*++
946 Routine Description:
948 GC_TODO: Add function description
950 Arguments:
952 FvImage - GC_TODO: add argument description
953 FileHeader - GC_TODO: add argument description
954 ErasePolarity - GC_TODO: add argument description
956 Returns:
958 EFI_SUCCESS - GC_TODO: Add description for return value
959 EFI_ABORTED - GC_TODO: Add description for return value
961 --*/
963 UINT32 FileLength;
964 UINT8 FileState;
965 UINT8 Checksum;
966 EFI_FFS_FILE_HEADER BlankHeader;
967 EFI_STATUS Status;
968 UINT8 GuidBuffer[PRINTED_GUID_BUFFER_SIZE];
969 #if (PI_SPECIFICATION_VERSION < 0x00010000)
970 UINT16 *Tail;
971 #endif
973 // Check if we have free space
975 if (ErasePolarity) {
976 memset (&BlankHeader, -1, sizeof (EFI_FFS_FILE_HEADER));
977 } else {
978 memset (&BlankHeader, 0, sizeof (EFI_FFS_FILE_HEADER));
981 if (memcmp (&BlankHeader, FileHeader, sizeof (EFI_FFS_FILE_HEADER)) == 0) {
982 return EFI_SUCCESS;
985 // Print file information.
987 printf ("============================================================\n");
989 printf ("File Name: ");
990 PrintGuidToBuffer (&FileHeader->Name, GuidBuffer, sizeof (GuidBuffer), TRUE);
991 printf ("%s ", GuidBuffer);
992 PrintGuidName (GuidBuffer);
993 printf ("\n");
996 // PrintGuid (&FileHeader->Name);
997 // printf ("\n");
999 FileLength = GetLength (FileHeader->Size);
1000 printf ("File Offset: 0x%08X\n", (unsigned) ((UINTN) FileHeader - (UINTN) FvImage));
1001 printf ("File Length: 0x%08X\n", (unsigned) FileLength);
1002 printf ("File Attributes: 0x%02X\n", FileHeader->Attributes);
1003 printf ("File State: 0x%02X\n", FileHeader->State);
1006 // Print file state
1008 FileState = GetFileState (ErasePolarity, FileHeader);
1010 switch (FileState) {
1012 case EFI_FILE_HEADER_CONSTRUCTION:
1013 printf (" EFI_FILE_HEADER_CONSTRUCTION\n");
1014 return EFI_SUCCESS;
1016 case EFI_FILE_HEADER_INVALID:
1017 printf (" EFI_FILE_HEADER_INVALID\n");
1018 return EFI_SUCCESS;
1020 case EFI_FILE_HEADER_VALID:
1021 printf (" EFI_FILE_HEADER_VALID\n");
1022 Checksum = CalculateSum8 ((UINT8 *) FileHeader, sizeof (EFI_FFS_FILE_HEADER));
1023 Checksum = (UINT8) (Checksum - FileHeader->IntegrityCheck.Checksum.File);
1024 Checksum = (UINT8) (Checksum - FileHeader->State);
1025 if (Checksum != 0) {
1026 printf ("ERROR: Header checksum invalid.\n");
1027 return EFI_ABORTED;
1030 return EFI_SUCCESS;
1032 case EFI_FILE_DELETED:
1033 printf (" EFI_FILE_DELETED\n");
1035 case EFI_FILE_MARKED_FOR_UPDATE:
1036 printf (" EFI_FILE_MARKED_FOR_UPDATE\n");
1038 case EFI_FILE_DATA_VALID:
1039 printf (" EFI_FILE_DATA_VALID\n");
1042 // Calculate header checksum
1044 Checksum = CalculateSum8 ((UINT8 *) FileHeader, sizeof (EFI_FFS_FILE_HEADER));
1045 Checksum = (UINT8) (Checksum - FileHeader->IntegrityCheck.Checksum.File);
1046 Checksum = (UINT8) (Checksum - FileHeader->State);
1047 if (Checksum != 0) {
1048 Error (NULL, 0, 0003, "error parsing FFS file", "FFS file with Guid %s has invalid header checksum", GuidBuffer);
1049 return EFI_ABORTED;
1052 FileLength = GetLength (FileHeader->Size);
1054 if (FileHeader->Attributes & FFS_ATTRIB_CHECKSUM) {
1056 // Calculate file checksum
1058 Checksum = CalculateSum8 ((UINT8 *) FileHeader, FileLength);
1059 Checksum = (UINT8) (Checksum - FileHeader->State);
1060 if (Checksum != 0) {
1061 Error (NULL, 0, 0003, "error parsing FFS file", "FFS file with Guid %s has invalid file checksum", GuidBuffer);
1062 return EFI_ABORTED;
1064 } else {
1065 if (FileHeader->IntegrityCheck.Checksum.File != FFS_FIXED_CHECKSUM) {
1066 Error (NULL, 0, 0003, "error parsing FFS file", "FFS file with Guid %s has invalid header checksum -- not set to fixed value of 0x5A", GuidBuffer);
1067 return EFI_ABORTED;
1070 #if (PI_SPECIFICATION_VERSION < 0x00010000)
1072 // Verify tail if present
1074 if (FileHeader->Attributes & FFS_ATTRIB_TAIL_PRESENT) {
1076 // Verify tail is complement of integrity check field in the header.
1078 Tail = (UINT16 *) ((UINTN) FileHeader + GetLength (FileHeader->Size) - sizeof (EFI_FFS_INTEGRITY_CHECK));
1079 if (FileHeader->IntegrityCheck.TailReference != (UINT16)~(*Tail)) {
1080 Error (NULL, 0, 0003, "error parsing FFS file", \
1081 "FFS file with Guid %s failed in the integrity check, tail is not the complement of the header field", GuidBuffer);
1082 return EFI_ABORTED;
1085 #endif
1086 break;
1088 default:
1089 Error (NULL, 0, 0003, "error parsing FFS file", "FFS file with Guid %s has the invalid/unrecognized file state bits", GuidBuffer);
1090 return EFI_ABORTED;
1093 printf ("File Type: 0x%02X ", FileHeader->Type);
1095 switch (FileHeader->Type) {
1097 case EFI_FV_FILETYPE_RAW:
1098 printf ("EFI_FV_FILETYPE_RAW\n");
1099 break;
1101 case EFI_FV_FILETYPE_FREEFORM:
1102 printf ("EFI_FV_FILETYPE_FREEFORM\n");
1103 break;
1105 case EFI_FV_FILETYPE_SECURITY_CORE:
1106 printf ("EFI_FV_FILETYPE_SECURITY_CORE\n");
1107 break;
1109 case EFI_FV_FILETYPE_PEI_CORE:
1110 printf ("EFI_FV_FILETYPE_PEI_CORE\n");
1111 break;
1113 case EFI_FV_FILETYPE_DXE_CORE:
1114 printf ("EFI_FV_FILETYPE_DXE_CORE\n");
1115 break;
1117 case EFI_FV_FILETYPE_PEIM:
1118 printf ("EFI_FV_FILETYPE_PEIM\n");
1119 break;
1121 case EFI_FV_FILETYPE_DRIVER:
1122 printf ("EFI_FV_FILETYPE_DRIVER\n");
1123 break;
1125 case EFI_FV_FILETYPE_COMBINED_PEIM_DRIVER:
1126 printf ("EFI_FV_FILETYPE_COMBINED_PEIM_DRIVER\n");
1127 break;
1129 case EFI_FV_FILETYPE_APPLICATION:
1130 printf ("EFI_FV_FILETYPE_APPLICATION\n");
1131 break;
1133 case EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE:
1134 printf ("EFI_FV_FILETYPE_FIRMWARE_VOLUME_IMAGE\n");
1135 break;
1137 case EFI_FV_FILETYPE_FFS_PAD:
1138 printf ("EFI_FV_FILETYPE_FFS_PAD\n");
1139 break;
1141 default:
1142 printf ("\nERROR: Unrecognized file type %X.\n", FileHeader->Type);
1143 return EFI_ABORTED;
1144 break;
1147 switch (FileHeader->Type) {
1149 case EFI_FV_FILETYPE_ALL:
1150 case EFI_FV_FILETYPE_RAW:
1151 case EFI_FV_FILETYPE_FFS_PAD:
1152 break;
1154 default:
1156 // All other files have sections
1158 Status = ParseSection (
1159 (UINT8 *) ((UINTN) FileHeader + sizeof (EFI_FFS_FILE_HEADER)),
1160 GetLength (FileHeader->Size) - sizeof (EFI_FFS_FILE_HEADER)
1162 if (EFI_ERROR (Status)) {
1164 // printf ("ERROR: Parsing the FFS file.\n");
1166 return EFI_ABORTED;
1168 break;
1171 return EFI_SUCCESS;
1174 EFI_STATUS
1175 ParseSection (
1176 IN UINT8 *SectionBuffer,
1177 IN UINT32 BufferLength
1179 /*++
1181 Routine Description:
1183 Parses EFI Sections
1185 Arguments:
1187 SectionBuffer - Buffer containing the section to parse.
1188 BufferLength - Length of SectionBuffer
1190 Returns:
1192 EFI_SECTION_ERROR - Problem with section parsing.
1193 (a) compression errors
1194 (b) unrecognized section
1195 EFI_UNSUPPORTED - Do not know how to parse the section.
1196 EFI_SUCCESS - Section successfully parsed.
1197 EFI_OUT_OF_RESOURCES - Memory allocation failed.
1199 --*/
1201 EFI_SECTION_TYPE Type;
1202 UINT8 *Ptr;
1203 UINT32 SectionLength;
1204 CHAR8 *SectionName;
1205 EFI_STATUS Status;
1206 UINT32 ParsedLength;
1207 UINT8 *CompressedBuffer;
1208 UINT32 CompressedLength;
1209 UINT8 *UncompressedBuffer;
1210 UINT32 UncompressedLength;
1211 UINT8 *ToolOutputBuffer;
1212 UINT32 ToolOutputLength;
1213 UINT8 CompressionType;
1214 UINT32 DstSize;
1215 UINT32 ScratchSize;
1216 UINT8 *ScratchBuffer;
1217 DECOMPRESS_FUNCTION DecompressFunction;
1218 GETINFO_FUNCTION GetInfoFunction;
1219 // CHAR16 *name;
1220 CHAR8 *ExtractionTool;
1221 CHAR8 *ToolInputFile;
1222 CHAR8 *ToolOutputFile;
1223 CHAR8 *SystemCommandFormatString;
1224 CHAR8 *SystemCommand;
1226 ParsedLength = 0;
1227 while (ParsedLength < BufferLength) {
1228 Ptr = SectionBuffer + ParsedLength;
1230 SectionLength = GetLength (((EFI_COMMON_SECTION_HEADER *) Ptr)->Size);
1231 Type = ((EFI_COMMON_SECTION_HEADER *) Ptr)->Type;
1234 // This is sort of an odd check, but is necessary because FFS files are
1235 // padded to a QWORD boundary, meaning there is potentially a whole section
1236 // header worth of 0xFF bytes.
1238 if (SectionLength == 0xffffff && Type == 0xff) {
1239 ParsedLength += 4;
1240 continue;
1243 SectionName = SectionNameToStr (Type);
1244 printf ("------------------------------------------------------------\n");
1245 printf (" Type: %s\n Size: 0x%08X\n", SectionName, (unsigned) SectionLength);
1246 free (SectionName);
1248 switch (Type) {
1249 case EFI_SECTION_RAW:
1250 case EFI_SECTION_PE32:
1251 case EFI_SECTION_PIC:
1252 case EFI_SECTION_TE:
1253 // default is no more information
1254 break;
1256 case EFI_SECTION_USER_INTERFACE:
1257 // name = &((EFI_USER_INTERFACE_SECTION *) Ptr)->FileNameString;
1258 // printf (" String: %s\n", &name);
1259 break;
1261 case EFI_SECTION_FIRMWARE_VOLUME_IMAGE:
1262 Status = PrintFvInfo (((EFI_FIRMWARE_VOLUME_IMAGE_SECTION*)Ptr) + 1);
1263 if (EFI_ERROR (Status)) {
1264 Error (NULL, 0, 0003, "printing of FV section contents failed", NULL);
1265 return EFI_SECTION_ERROR;
1267 break;
1269 case EFI_SECTION_COMPATIBILITY16:
1270 case EFI_SECTION_FREEFORM_SUBTYPE_GUID:
1272 // Section does not contain any further header information.
1274 break;
1276 case EFI_SECTION_DXE_DEPEX:
1277 case EFI_SECTION_PEI_DEPEX:
1278 DumpDepexSection (Ptr, SectionLength);
1279 break;
1281 case EFI_SECTION_VERSION:
1282 printf (" Build Number: 0x%02X\n", ((EFI_VERSION_SECTION *) Ptr)->BuildNumber);
1283 printf (" Version Strg: %s\n", (char*) ((EFI_VERSION_SECTION *) Ptr)->VersionString);
1284 break;
1286 case EFI_SECTION_COMPRESSION:
1287 UncompressedBuffer = NULL;
1288 CompressedLength = SectionLength - sizeof (EFI_COMPRESSION_SECTION);
1289 UncompressedLength = ((EFI_COMPRESSION_SECTION *) Ptr)->UncompressedLength;
1290 CompressionType = ((EFI_COMPRESSION_SECTION *) Ptr)->CompressionType;
1291 printf (" Uncompressed Length: 0x%08X\n", (unsigned) UncompressedLength);
1293 if (CompressionType == EFI_NOT_COMPRESSED) {
1294 printf (" Compression Type: EFI_NOT_COMPRESSED\n");
1295 if (CompressedLength != UncompressedLength) {
1296 Error (
1297 NULL,
1300 "file is not compressed, but the compressed length does not match the uncompressed length",
1301 NULL
1303 return EFI_SECTION_ERROR;
1306 UncompressedBuffer = Ptr + sizeof (EFI_COMPRESSION_SECTION);
1307 } else if (CompressionType == EFI_STANDARD_COMPRESSION) {
1308 GetInfoFunction = EfiGetInfo;
1309 DecompressFunction = EfiDecompress;
1310 printf (" Compression Type: EFI_STANDARD_COMPRESSION\n");
1312 CompressedBuffer = Ptr + sizeof (EFI_COMPRESSION_SECTION);
1314 Status = GetInfoFunction (CompressedBuffer, CompressedLength, &DstSize, &ScratchSize);
1315 if (EFI_ERROR (Status)) {
1316 Error (NULL, 0, 0003, "error getting compression info from compression section", NULL);
1317 return EFI_SECTION_ERROR;
1320 if (DstSize != UncompressedLength) {
1321 Error (NULL, 0, 0003, "compression error in the compression section", NULL);
1322 return EFI_SECTION_ERROR;
1325 ScratchBuffer = malloc (ScratchSize);
1326 UncompressedBuffer = malloc (UncompressedLength);
1327 if ((ScratchBuffer == NULL) || (UncompressedBuffer == NULL)) {
1328 return EFI_OUT_OF_RESOURCES;
1330 Status = DecompressFunction (
1331 CompressedBuffer,
1332 CompressedLength,
1333 UncompressedBuffer,
1334 UncompressedLength,
1335 ScratchBuffer,
1336 ScratchSize
1338 free (ScratchBuffer);
1339 if (EFI_ERROR (Status)) {
1340 Error (NULL, 0, 0003, "decompress failed", NULL);
1341 free (UncompressedBuffer);
1342 return EFI_SECTION_ERROR;
1344 } else {
1345 Error (NULL, 0, 0003, "unrecognized compression type", "type 0x%X", CompressionType);
1346 return EFI_SECTION_ERROR;
1349 Status = ParseSection (UncompressedBuffer, UncompressedLength);
1351 if (CompressionType == EFI_STANDARD_COMPRESSION) {
1353 // We need to deallocate Buffer
1355 free (UncompressedBuffer);
1358 if (EFI_ERROR (Status)) {
1359 Error (NULL, 0, 0003, "failed to parse section", NULL);
1360 return EFI_SECTION_ERROR;
1362 break;
1364 case EFI_SECTION_GUID_DEFINED:
1365 printf (" SectionDefinitionGuid: ");
1366 PrintGuid (&((EFI_GUID_DEFINED_SECTION *) Ptr)->SectionDefinitionGuid);
1367 printf ("\n");
1368 printf (" DataOffset: 0x%04X\n", (unsigned) ((EFI_GUID_DEFINED_SECTION *) Ptr)->DataOffset);
1369 printf (" Attributes: 0x%04X\n", (unsigned) ((EFI_GUID_DEFINED_SECTION *) Ptr)->Attributes);
1371 ExtractionTool =
1372 LookupGuidedSectionToolPath (
1373 mParsedGuidedSectionTools,
1374 &((EFI_GUID_DEFINED_SECTION *) Ptr)->SectionDefinitionGuid
1377 if (ExtractionTool != NULL) {
1379 ToolInputFile = CloneString (tmpnam (NULL));
1380 ToolOutputFile = CloneString (tmpnam (NULL));
1383 // Construction 'system' command string
1385 SystemCommandFormatString = "%s -d -o %s %s";
1386 SystemCommand = malloc (
1387 strlen (SystemCommandFormatString) +
1388 strlen (ExtractionTool) +
1389 strlen (ToolInputFile) +
1390 strlen (ToolOutputFile) +
1393 sprintf (
1394 SystemCommand,
1395 SystemCommandFormatString,
1396 ExtractionTool,
1397 ToolOutputFile,
1398 ToolInputFile
1400 free (ExtractionTool);
1402 Status =
1403 PutFileImage (
1404 ToolInputFile,
1405 (CHAR8*) SectionBuffer + ((EFI_GUID_DEFINED_SECTION *) Ptr)->DataOffset,
1406 BufferLength - ((EFI_GUID_DEFINED_SECTION *) Ptr)->DataOffset
1409 system (SystemCommand);
1410 remove (ToolInputFile);
1411 free (ToolInputFile);
1413 Status =
1414 GetFileImage (
1415 ToolOutputFile,
1416 (CHAR8 **)&ToolOutputBuffer,
1417 &ToolOutputLength
1419 remove (ToolOutputFile);
1420 free (ToolOutputFile);
1421 if (EFI_ERROR (Status)) {
1422 Error (NULL, 0, 0004, "unable to read decoded GUIDED section", NULL);
1423 return EFI_SECTION_ERROR;
1426 Status = ParseSection (
1427 ToolOutputBuffer,
1428 ToolOutputLength
1430 if (EFI_ERROR (Status)) {
1431 Error (NULL, 0, 0003, "parse of decoded GUIDED section failed", NULL);
1432 return EFI_SECTION_ERROR;
1436 // Check for CRC32 sections which we can handle internally if needed.
1438 } else if (!CompareGuid (
1439 &((EFI_GUID_DEFINED_SECTION *) Ptr)->SectionDefinitionGuid,
1440 &gEfiCrc32GuidedSectionExtractionProtocolGuid
1444 // CRC32 guided section
1446 Status = ParseSection (
1447 SectionBuffer + ((EFI_GUID_DEFINED_SECTION *) Ptr)->DataOffset,
1448 BufferLength - ((EFI_GUID_DEFINED_SECTION *) Ptr)->DataOffset
1450 if (EFI_ERROR (Status)) {
1451 Error (NULL, 0, 0003, "parse of CRC32 GUIDED section failed", NULL);
1452 return EFI_SECTION_ERROR;
1454 } else {
1456 // We don't know how to parse it now.
1458 Error (NULL, 0, 0003, "Error parsing section", \
1459 "EFI_SECTION_GUID_DEFINED cannot be parsed at this time. Tool to decode this section should have been defined in GuidedSectionTools.txt (built in the FV directory).");
1460 return EFI_UNSUPPORTED;
1462 break;
1464 default:
1466 // Unknown section, return error
1468 Error (NULL, 0, 0003, "unrecognized section type found", "section type = 0x%X", Type);
1469 return EFI_SECTION_ERROR;
1472 ParsedLength += SectionLength;
1474 // We make then next section begin on a 4-byte boundary
1476 ParsedLength = GetOccupiedSize (ParsedLength, 4);
1479 if (ParsedLength < BufferLength) {
1480 Error (NULL, 0, 0003, "sections do not completely fill the sectioned buffer being parsed", NULL);
1481 return EFI_SECTION_ERROR;
1484 return EFI_SUCCESS;
1487 EFI_STATUS
1488 DumpDepexSection (
1489 IN UINT8 *Ptr,
1490 IN UINT32 SectionLength
1492 /*++
1494 Routine Description:
1496 GC_TODO: Add function description
1498 Arguments:
1500 Ptr - GC_TODO: add argument description
1501 SectionLength - GC_TODO: add argument description
1503 Returns:
1505 EFI_SUCCESS - GC_TODO: Add description for return value
1507 --*/
1509 UINT8 GuidBuffer[PRINTED_GUID_BUFFER_SIZE];
1512 // Need at least a section header + data
1514 if (SectionLength <= sizeof (EFI_COMMON_SECTION_HEADER)) {
1515 return EFI_SUCCESS;
1518 Ptr += sizeof (EFI_COMMON_SECTION_HEADER);
1519 SectionLength -= sizeof (EFI_COMMON_SECTION_HEADER);
1520 while (SectionLength > 0) {
1521 printf (" ");
1522 switch (*Ptr) {
1523 case EFI_DEP_BEFORE:
1524 printf ("BEFORE\n");
1525 Ptr++;
1526 SectionLength--;
1527 break;
1529 case EFI_DEP_AFTER:
1530 printf ("AFTER\n");
1531 Ptr++;
1532 SectionLength--;
1533 break;
1535 case EFI_DEP_PUSH:
1536 printf ("PUSH\n ");
1537 PrintGuidToBuffer ((EFI_GUID *) (Ptr + 1), GuidBuffer, sizeof (GuidBuffer), TRUE);
1538 printf ("%s ", GuidBuffer);
1539 PrintGuidName (GuidBuffer);
1540 printf ("\n");
1542 // PrintGuid ((EFI_GUID *)(Ptr + 1));
1544 Ptr += 17;
1545 SectionLength -= 17;
1546 break;
1548 case EFI_DEP_AND:
1549 printf ("AND\n");
1550 Ptr++;
1551 SectionLength--;
1552 break;
1554 case EFI_DEP_OR:
1555 printf ("OR\n");
1556 Ptr++;
1557 SectionLength--;
1558 break;
1560 case EFI_DEP_NOT:
1561 printf ("NOT\n");
1562 Ptr++;
1563 SectionLength--;
1564 break;
1566 case EFI_DEP_TRUE:
1567 printf ("TRUE\n");
1568 Ptr++;
1569 SectionLength--;
1570 break;
1572 case EFI_DEP_FALSE:
1573 printf ("FALSE\n");
1574 Ptr++;
1575 SectionLength--;
1576 break;
1578 case EFI_DEP_END:
1579 printf ("END DEPEX\n");
1580 Ptr++;
1581 SectionLength--;
1582 break;
1584 case EFI_DEP_SOR:
1585 printf ("SOR\n");
1586 Ptr++;
1587 SectionLength--;
1588 break;
1590 default:
1591 printf ("Unrecognized byte in depex: 0x%X\n", *Ptr);
1592 return EFI_SUCCESS;
1596 return EFI_SUCCESS;
1599 EFI_STATUS
1600 PrintGuidName (
1601 IN UINT8 *GuidStr
1603 /*++
1605 Routine Description:
1607 GC_TODO: Add function description
1609 Arguments:
1611 GuidStr - GC_TODO: add argument description
1613 Returns:
1615 EFI_SUCCESS - GC_TODO: Add description for return value
1616 EFI_INVALID_PARAMETER - GC_TODO: Add description for return value
1618 --*/
1620 GUID_TO_BASENAME *GPtr;
1622 // If we have a list of guid-to-basenames, then go through the list to
1623 // look for a guid string match. If found, print the basename to stdout,
1624 // otherwise return a failure.
1626 GPtr = mGuidBaseNameList;
1627 while (GPtr != NULL) {
1628 if (_stricmp ((CHAR8*) GuidStr, (CHAR8*) GPtr->Guid) == 0) {
1629 printf ("%s", GPtr->BaseName);
1630 return EFI_SUCCESS;
1633 GPtr = GPtr->Next;
1636 return EFI_INVALID_PARAMETER;
1639 EFI_STATUS
1640 ParseGuidBaseNameFile (
1641 CHAR8 *FileName
1643 /*++
1645 Routine Description:
1647 GC_TODO: Add function description
1649 Arguments:
1651 FileName - GC_TODO: add argument description
1653 Returns:
1655 EFI_DEVICE_ERROR - GC_TODO: Add description for return value
1656 EFI_OUT_OF_RESOURCES - GC_TODO: Add description for return value
1657 EFI_SUCCESS - GC_TODO: Add description for return value
1659 --*/
1661 FILE *Fptr;
1662 CHAR8 Line[MAX_LINE_LEN];
1663 GUID_TO_BASENAME *GPtr;
1665 if ((Fptr = fopen (FileName, "r")) == NULL) {
1666 printf ("ERROR: Failed to open input cross-reference file '%s'\n", FileName);
1667 return EFI_DEVICE_ERROR;
1670 while (fgets (Line, sizeof (Line), Fptr) != NULL) {
1672 // Allocate space for another guid/basename element
1674 GPtr = malloc (sizeof (GUID_TO_BASENAME));
1675 if (GPtr == NULL) {
1676 return EFI_OUT_OF_RESOURCES;
1679 memset ((char *) GPtr, 0, sizeof (GUID_TO_BASENAME));
1680 if (sscanf (Line, "%s %s", GPtr->Guid, GPtr->BaseName) == 2) {
1681 GPtr->Next = mGuidBaseNameList;
1682 mGuidBaseNameList = GPtr;
1683 } else {
1685 // Some sort of error. Just continue.
1687 free (GPtr);
1691 fclose (Fptr);
1692 return EFI_SUCCESS;
1695 EFI_STATUS
1696 FreeGuidBaseNameList (
1697 VOID
1699 /*++
1701 Routine Description:
1703 GC_TODO: Add function description
1705 Arguments:
1707 None
1709 Returns:
1711 EFI_SUCCESS - GC_TODO: Add description for return value
1713 --*/
1715 GUID_TO_BASENAME *Next;
1717 while (mGuidBaseNameList != NULL) {
1718 Next = mGuidBaseNameList->Next;
1719 free (mGuidBaseNameList);
1720 mGuidBaseNameList = Next;
1723 return EFI_SUCCESS;
1727 static
1728 VOID
1729 LoadGuidedSectionToolsTxt (
1730 IN CHAR8* FirmwareVolumeFilename
1733 CHAR8* PeerFilename;
1734 CHAR8* Places[] = {
1735 NULL,
1736 //NULL,
1738 UINTN Index;
1740 Places[0] = FirmwareVolumeFilename;
1741 //Places[1] = mUtilityFilename;
1743 mParsedGuidedSectionTools = NULL;
1745 for (Index = 0; Index < (sizeof(Places)/sizeof(Places[0])); Index++) {
1746 PeerFilename = OsPathPeerFilePath (Places[Index], "GuidedSectionTools.txt");
1747 //printf("Loading %s...\n", PeerFilename);
1748 if (OsPathExists (PeerFilename)) {
1749 mParsedGuidedSectionTools = ParseGuidedSectionToolsFile (PeerFilename);
1751 free (PeerFilename);
1752 if (mParsedGuidedSectionTools != NULL) {
1753 return;
1759 void
1760 Usage (
1761 VOID
1763 /*++
1765 Routine Description:
1767 GC_TODO: Add function description
1769 Arguments:
1771 None
1773 Returns:
1775 GC_TODO: add return values
1777 --*/
1780 // Summary usage
1782 fprintf (stdout, "Usage: %s [options] <input_file>\n\n", UTILITY_NAME);
1785 // Copyright declaration
1787 fprintf (stdout, "Copyright (c) 2007, Intel Corporation. All rights reserved.\n\n");
1790 // Details Option
1792 fprintf (stdout, "Options:\n");
1793 fprintf (stdout, " -x xref, --xref xref\n\
1794 Parse basename to file-guid cross reference file(s).\n");
1795 fprintf (stdout, " --offset offset\n\
1796 Offset of file to start processing FV at.\n");
1797 fprintf (stdout, " -h, --help\n\
1798 Show this help message and exit.\n");