]> git.proxmox.com Git - mirror_edk2.git/blob - SecurityPkg/Library/DxeTpm2MeasureBootLib/DxeTpm2MeasureBootLib.inf
SecurityPkg: Removing ipf which is no longer supported from edk2.
[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 00.21"
6 #
7 # This library instance hooks LoadImage() API to measure every image that
8 # is not measured in PEI phase. And, it will also measure GPT partition.
9 #
10 # Caution: This module requires additional review when modified.
11 # This library will have external input - PE/COFF image and GPT partition.
12 # This external input must be validated carefully to avoid security issues such
13 # as buffer overflow or integer overflow.
14 #
15 # Copyright (c) 2013 - 2018, Intel Corporation. All rights reserved.<BR>
16 # This program and the accompanying materials
17 # are licensed and made available under the terms and conditions of the BSD License
18 # which accompanies this distribution. The full text of the license may be found at
19 # http://opensource.org/licenses/bsd-license.php
20 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
21 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
22 #
23 ##
24
25 [Defines]
26 INF_VERSION = 0x00010005
27 BASE_NAME = DxeTpm2MeasureBootLib
28 MODULE_UNI_FILE = DxeTpm2MeasureBootLib.uni
29 FILE_GUID = 778CE4F4-36BD-4ae7-B8F0-10B420B0D174
30 MODULE_TYPE = DXE_DRIVER
31 VERSION_STRING = 1.0
32 LIBRARY_CLASS = NULL|DXE_DRIVER DXE_RUNTIME_DRIVER DXE_SAL_DRIVER UEFI_APPLICATION UEFI_DRIVER
33 CONSTRUCTOR = DxeTpm2MeasureBootLibConstructor
34
35 #
36 # The following information is for reference only and not required by the build tools.
37 #
38 # VALID_ARCHITECTURES = IA32 X64 EBC
39 #
40
41 [Sources]
42 DxeTpm2MeasureBootLib.c
43
44 [Packages]
45 MdePkg/MdePkg.dec
46 MdeModulePkg/MdeModulePkg.dec
47 SecurityPkg/SecurityPkg.dec
48 CryptoPkg/CryptoPkg.dec
49
50 [LibraryClasses]
51 BaseMemoryLib
52 DebugLib
53 MemoryAllocationLib
54 DevicePathLib
55 UefiBootServicesTableLib
56 BaseCryptLib
57 PeCoffLib
58 BaseLib
59 SecurityManagementLib
60 HobLib
61
62 [Guids]
63 gMeasuredFvHobGuid ## SOMETIMES_CONSUMES ## HOB
64
65 [Protocols]
66 gEfiTcg2ProtocolGuid ## SOMETIMES_CONSUMES
67 gEfiFirmwareVolumeBlockProtocolGuid ## SOMETIMES_CONSUMES
68 gEfiBlockIoProtocolGuid ## SOMETIMES_CONSUMES
69 gEfiDiskIoProtocolGuid ## SOMETIMES_CONSUMES
70