DxeTpm2MeasureBootLib.inf 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. ## @file
  2. # Provides security service for TPM 2.0 measured boot
  3. #
  4. # Spec Compliance Info:
  5. # "TCG PC Client Platform Firmware Profile Specification for TPM Family 2.0 Level 00 Revision 1.03 v51"
  6. # along with
  7. # "Errata for PC Client Specific Platform Firmware Profile Specification Version 1.0 Revision 1.03"
  8. #
  9. # This library instance hooks LoadImage() API to measure every image that
  10. # is not measured in PEI phase. And, it will also measure GPT partition.
  11. #
  12. # Caution: This module requires additional review when modified.
  13. # This library will have external input - PE/COFF image and GPT partition.
  14. # This external input must be validated carefully to avoid security issues such
  15. # as buffer overflow or integer overflow.
  16. #
  17. # Copyright (c) 2013 - 2018, Intel Corporation. All rights reserved.<BR>
  18. # SPDX-License-Identifier: BSD-2-Clause-Patent
  19. #
  20. ##
  21. [Defines]
  22. INF_VERSION = 0x00010005
  23. BASE_NAME = DxeTpm2MeasureBootLib
  24. MODULE_UNI_FILE = DxeTpm2MeasureBootLib.uni
  25. FILE_GUID = 778CE4F4-36BD-4ae7-B8F0-10B420B0D174
  26. MODULE_TYPE = DXE_DRIVER
  27. VERSION_STRING = 1.0
  28. LIBRARY_CLASS = NULL|DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SAL_DRIVER UEFI_APPLICATION UEFI_DRIVER
  29. CONSTRUCTOR = DxeTpm2MeasureBootLibConstructor
  30. #
  31. # The following information is for reference only and not required by the build tools.
  32. #
  33. # VALID_ARCHITECTURES = IA32 X64 EBC
  34. #
  35. [Sources]
  36. DxeTpm2MeasureBootLib.c
  37. [Packages]
  38. MdePkg/MdePkg.dec
  39. MdeModulePkg/MdeModulePkg.dec
  40. SecurityPkg/SecurityPkg.dec
  41. CryptoPkg/CryptoPkg.dec
  42. [LibraryClasses]
  43. BaseMemoryLib
  44. DebugLib
  45. MemoryAllocationLib
  46. DevicePathLib
  47. UefiBootServicesTableLib
  48. BaseCryptLib
  49. PeCoffLib
  50. BaseLib
  51. SecurityManagementLib
  52. HobLib
  53. [Guids]
  54. gMeasuredFvHobGuid ## SOMETIMES_CONSUMES ## HOB
  55. [Protocols]
  56. gEfiTcg2ProtocolGuid ## SOMETIMES_CONSUMES
  57. gEfiFirmwareVolumeBlockProtocolGuid ## SOMETIMES_CONSUMES
  58. gEfiBlockIoProtocolGuid ## SOMETIMES_CONSUMES
  59. gEfiDiskIoProtocolGuid ## SOMETIMES_CONSUMES