]> git.proxmox.com Git - mirror_edk2.git/blob - SecurityPkg/Library/DxeTpm2MeasureBootLib/DxeTpm2MeasureBootLib.inf
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / SecurityPkg / Library / DxeTpm2MeasureBootLib / DxeTpm2MeasureBootLib.inf
1 ## @file
2 # Provides security service for TPM 2.0 measured boot and Confidential Computing measure 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
22 [Defines]
23 INF_VERSION = 0x00010005
24 BASE_NAME = DxeTpm2MeasureBootLib
25 MODULE_UNI_FILE = DxeTpm2MeasureBootLib.uni
26 FILE_GUID = 778CE4F4-36BD-4ae7-B8F0-10B420B0D174
27 MODULE_TYPE = DXE_DRIVER
28 VERSION_STRING = 1.0
29 LIBRARY_CLASS = NULL|DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SAL_DRIVER UEFI_APPLICATION UEFI_DRIVER
30 CONSTRUCTOR = DxeTpm2MeasureBootLibConstructor
31
32 #
33 # The following information is for reference only and not required by the build tools.
34 #
35 # VALID_ARCHITECTURES = IA32 X64 EBC
36 #
37
38 [Sources]
39 DxeTpm2MeasureBootLib.c
40
41 [Packages]
42 MdePkg/MdePkg.dec
43 MdeModulePkg/MdeModulePkg.dec
44 SecurityPkg/SecurityPkg.dec
45 CryptoPkg/CryptoPkg.dec
46
47 [LibraryClasses]
48 BaseMemoryLib
49 DebugLib
50 MemoryAllocationLib
51 DevicePathLib
52 UefiBootServicesTableLib
53 BaseCryptLib
54 PeCoffLib
55 BaseLib
56 SecurityManagementLib
57 HobLib
58
59 [Guids]
60 gMeasuredFvHobGuid ## SOMETIMES_CONSUMES ## HOB
61
62 [Protocols]
63 gEfiTcg2ProtocolGuid ## SOMETIMES_CONSUMES
64 gEfiCcMeasurementProtocolGuid ## SOMETIMES_CONSUMES
65 gEfiFirmwareVolumeBlockProtocolGuid ## SOMETIMES_CONSUMES
66 gEfiBlockIoProtocolGuid ## SOMETIMES_CONSUMES
67 gEfiDiskIoProtocolGuid ## SOMETIMES_CONSUMES
68