]> git.proxmox.com Git - mirror_edk2.git/blob - SecurityPkg/Library/DxeTpm2MeasureBootLib/DxeTpm2MeasureBootLib.inf
SecurityPkg: Update TCG PFP spec revision.
[mirror_edk2.git] / SecurityPkg / Library / DxeTpm2MeasureBootLib / DxeTpm2MeasureBootLib.inf
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 # This program and the accompanying materials
19 # are licensed and made available under the terms and conditions of the BSD License
20 # which accompanies this distribution. The full text of the license may be found at
21 # http://opensource.org/licenses/bsd-license.php
22 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
23 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
24 #
25 ##
26
27 [Defines]
28 INF_VERSION = 0x00010005
29 BASE_NAME = DxeTpm2MeasureBootLib
30 MODULE_UNI_FILE = DxeTpm2MeasureBootLib.uni
31 FILE_GUID = 778CE4F4-36BD-4ae7-B8F0-10B420B0D174
32 MODULE_TYPE = DXE_DRIVER
33 VERSION_STRING = 1.0
34 LIBRARY_CLASS = NULL|DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SAL_DRIVER UEFI_APPLICATION UEFI_DRIVER
35 CONSTRUCTOR = DxeTpm2MeasureBootLibConstructor
36
37 #
38 # The following information is for reference only and not required by the build tools.
39 #
40 # VALID_ARCHITECTURES = IA32 X64 EBC
41 #
42
43 [Sources]
44 DxeTpm2MeasureBootLib.c
45
46 [Packages]
47 MdePkg/MdePkg.dec
48 MdeModulePkg/MdeModulePkg.dec
49 SecurityPkg/SecurityPkg.dec
50 CryptoPkg/CryptoPkg.dec
51
52 [LibraryClasses]
53 BaseMemoryLib
54 DebugLib
55 MemoryAllocationLib
56 DevicePathLib
57 UefiBootServicesTableLib
58 BaseCryptLib
59 PeCoffLib
60 BaseLib
61 SecurityManagementLib
62 HobLib
63
64 [Guids]
65 gMeasuredFvHobGuid ## SOMETIMES_CONSUMES ## HOB
66
67 [Protocols]
68 gEfiTcg2ProtocolGuid ## SOMETIMES_CONSUMES
69 gEfiFirmwareVolumeBlockProtocolGuid ## SOMETIMES_CONSUMES
70 gEfiBlockIoProtocolGuid ## SOMETIMES_CONSUMES
71 gEfiDiskIoProtocolGuid ## SOMETIMES_CONSUMES
72