Home | History | Annotate | Download | only in DxeTpm2MeasureBootLib
      1 ## @file

      2 #  Provides security service for TPM 2.0 measured boot

      3 #

      4 #  This library instance hooks LoadImage() API to measure every image that 

      5 #  is not measured in PEI phase. And, it will also measure GPT partition.

      6 #

      7 #  Caution: This module requires additional review when modified.

      8 #  This library will have external input - PE/COFF image and GPT partition.

      9 #  This external input must be validated carefully to avoid security issues such 

     10 #  as buffer overflow or integer overflow.

     11 #

     12 # Copyright (c) 2013 - 2015, Intel Corporation. All rights reserved.<BR>

     13 # This program and the accompanying materials

     14 # are licensed and made available under the terms and conditions of the BSD License

     15 # which accompanies this distribution. The full text of the license may be found at

     16 # http://opensource.org/licenses/bsd-license.php

     17 # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,

     18 # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.

     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 DXE_SMM_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 IPF 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   gZeroGuid                             ## SOMETIMES_CONSUMES ## GUID

     62 
     63 [Protocols]
     64   gEfiTcg2ProtocolGuid                  ## SOMETIMES_CONSUMES

     65   gEfiFirmwareVolumeBlockProtocolGuid   ## SOMETIMES_CONSUMES

     66   gEfiBlockIoProtocolGuid               ## SOMETIMES_CONSUMES

     67   gEfiDiskIoProtocolGuid                ## SOMETIMES_CONSUMES

     68 
     69