guid.c 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. /*++
  2. Copyright (c) 1998 Intel Corporation
  3. Module Name:
  4. misc.c
  5. Abstract:
  6. Misc EFI support functions
  7. Revision History
  8. --*/
  9. #include "lib.h"
  10. //
  11. // Additional Known guids
  12. //
  13. #define SHELL_INTERFACE_PROTOCOL \
  14. { 0x47c7b223, 0xc42a, 0x11d2, {0x8e, 0x57, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x3b} }
  15. #define ENVIRONMENT_VARIABLE_ID \
  16. { 0x47c7b224, 0xc42a, 0x11d2, {0x8e, 0x57, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x3b} }
  17. #define DEVICE_PATH_MAPPING_ID \
  18. { 0x47c7b225, 0xc42a, 0x11d2, {0x8e, 0x57, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x3b} }
  19. #define PROTOCOL_ID_ID \
  20. { 0x47c7b226, 0xc42a, 0x11d2, {0x8e, 0x57, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x3b} }
  21. #define ALIAS_ID \
  22. { 0x47c7b227, 0xc42a, 0x11d2, {0x8e, 0x57, 0x0, 0xa0, 0xc9, 0x69, 0x72, 0x3b} }
  23. static EFI_GUID ShellInterfaceProtocol = SHELL_INTERFACE_PROTOCOL;
  24. static EFI_GUID SEnvId = ENVIRONMENT_VARIABLE_ID;
  25. static EFI_GUID SMapId = DEVICE_PATH_MAPPING_ID;
  26. static EFI_GUID SProtId = PROTOCOL_ID_ID;
  27. static EFI_GUID SAliasId = ALIAS_ID;
  28. static struct {
  29. EFI_GUID *Guid;
  30. WCHAR *GuidName;
  31. } KnownGuids[] = {
  32. { &NullGuid, L"G0" },
  33. { &gEfiGlobalVariableGuid, L"EfiVar" },
  34. { &VariableStoreProtocol, L"VarStore" },
  35. { &gEfiDevicePathProtocolGuid, L"DevPath" },
  36. { &gEfiLoadedImageProtocolGuid, L"LdImg" },
  37. { &gEfiSimpleTextInProtocolGuid, L"TxtIn" },
  38. { &gEfiSimpleTextOutProtocolGuid, L"TxtOut" },
  39. { &gEfiBlockIoProtocolGuid, L"BlkIo" },
  40. { &gEfiBlockIo2ProtocolGuid, L"BlkIo2" },
  41. { &gEfiDiskIoProtocolGuid, L"DskIo" },
  42. { &gEfiDiskIo2ProtocolGuid, L"DskIo2" },
  43. { &gEfiSimpleFileSystemProtocolGuid, L"Fs" },
  44. { &gEfiLoadFileProtocolGuid, L"LdFile" },
  45. { &gEfiDeviceIoProtocolGuid, L"DevIo" },
  46. { &gEfiComponentNameProtocolGuid, L"CName" },
  47. { &gEfiComponentName2ProtocolGuid, L"CName2" },
  48. { &gEfiFileInfoGuid, L"FileInfo" },
  49. { &gEfiFileSystemInfoGuid, L"FsInfo" },
  50. { &gEfiFileSystemVolumeLabelInfoIdGuid, L"FsVolInfo" },
  51. { &gEfiUnicodeCollationProtocolGuid, L"Unicode" },
  52. { &LegacyBootProtocol, L"LegacyBoot" },
  53. { &gEfiSerialIoProtocolGuid, L"SerIo" },
  54. { &VgaClassProtocol, L"VgaClass"},
  55. { &gEfiSimpleNetworkProtocolGuid, L"Net" },
  56. { &gEfiNetworkInterfaceIdentifierProtocolGuid, L"Nii" },
  57. { &gEfiPxeBaseCodeProtocolGuid, L"Pxe" },
  58. { &gEfiPxeBaseCodeCallbackProtocolGuid, L"PxeCb" },
  59. { &TextOutSpliterProtocol, L"TxtOutSplit" },
  60. { &ErrorOutSpliterProtocol, L"ErrOutSplit" },
  61. { &TextInSpliterProtocol, L"TxtInSplit" },
  62. { &gEfiPcAnsiGuid, L"PcAnsi" },
  63. { &gEfiVT100Guid, L"Vt100" },
  64. { &gEfiVT100PlusGuid, L"Vt100Plus" },
  65. { &gEfiVTUTF8Guid, L"VtUtf8" },
  66. { &UnknownDevice, L"UnknownDev" },
  67. { &EfiPartTypeSystemPartitionGuid, L"ESP" },
  68. { &EfiPartTypeLegacyMbrGuid, L"GPT MBR" },
  69. { &ShellInterfaceProtocol, L"ShellInt" },
  70. { &SEnvId, L"SEnv" },
  71. { &SProtId, L"ShellProtId" },
  72. { &SMapId, L"ShellDevPathMap" },
  73. { &SAliasId, L"ShellAlias" },
  74. { NULL, L"" }
  75. };
  76. //
  77. //
  78. //
  79. LIST_ENTRY GuidList;
  80. VOID
  81. InitializeGuid (
  82. VOID
  83. )
  84. {
  85. }
  86. INTN
  87. CompareGuid(
  88. IN EFI_GUID *Guid1,
  89. IN EFI_GUID *Guid2
  90. )
  91. /*++
  92. Routine Description:
  93. Compares to GUIDs
  94. Arguments:
  95. Guid1 - guid to compare
  96. Guid2 - guid to compare
  97. Returns:
  98. = 0 if Guid1 == Guid2
  99. --*/
  100. {
  101. return RtCompareGuid (Guid1, Guid2);
  102. }
  103. VOID
  104. GuidToString (
  105. OUT CHAR16 *Buffer,
  106. IN EFI_GUID *Guid
  107. )
  108. {
  109. UINTN Index;
  110. //
  111. // Else, (for now) use additional internal function for mapping guids
  112. //
  113. for (Index=0; KnownGuids[Index].Guid; Index++) {
  114. if (CompareGuid(Guid, KnownGuids[Index].Guid) == 0) {
  115. UnicodeSPrint (Buffer, 0, KnownGuids[Index].GuidName);
  116. return ;
  117. }
  118. }
  119. //
  120. // Else dump it
  121. //
  122. UnicodeSPrint (Buffer, 0, L"%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x",
  123. Guid->Data1,
  124. Guid->Data2,
  125. Guid->Data3,
  126. Guid->Data4[0],
  127. Guid->Data4[1],
  128. Guid->Data4[2],
  129. Guid->Data4[3],
  130. Guid->Data4[4],
  131. Guid->Data4[5],
  132. Guid->Data4[6],
  133. Guid->Data4[7]
  134. );
  135. }