]> git.proxmox.com Git - mirror_edk2.git/blame - SecurityPkg/VariableAuthenticated/RuntimeDxe/VariableSmmRuntimeDxe.inf
SecurityPkg: INF/DEC file updates to EDK II packages
[mirror_edk2.git] / SecurityPkg / VariableAuthenticated / RuntimeDxe / VariableSmmRuntimeDxe.inf
CommitLineData
0c18794e 1## @file\r
60c944c7 2# Runtime DXE part corresponding to SMM authenticated variable module\r
0c18794e 3#\r
60c944c7
DG
4# This module installs variable arch protocol and variable write arch protocol to provide \r
5# variable service. This module need work together with SMM authenticated variable module. \r
0c18794e 6#\r
dc204d5a
JY
7# Caution: This module requires additional review when modified.\r
8# This driver will have external input - variable data.\r
60c944c7
DG
9# This external input must be validated carefully to avoid security issues such as \r
10# buffer overflow or integer overflow.\r
dc204d5a 11#\r
201edad3 12# Copyright (c) 2010 - 2014, Intel Corporation. All rights reserved.<BR>\r
0c18794e 13# This program and the accompanying materials\r
14# are licensed and made available under the terms and conditions of the BSD License\r
15# which accompanies this distribution. The full text of the license may be found at\r
16# http://opensource.org/licenses/bsd-license.php\r
17# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
18# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
19#\r
20##\r
21\r
22[Defines]\r
23 INF_VERSION = 0x00010005\r
201edad3 24 BASE_NAME = VariableAuthSmmRuntimeDxe\r
60c944c7 25 MODULE_UNI_FILE = VariableAuthSmmRuntimeDxe.uni\r
0c18794e 26 FILE_GUID = 067E2381-7234-4798-B49C-D5FECBFF6D07\r
27 MODULE_TYPE = DXE_RUNTIME_DRIVER\r
28 VERSION_STRING = 1.0\r
29 ENTRY_POINT = VariableSmmRuntimeInitialize\r
30\r
31#\r
32# The following information is for reference only and not required by the build tools.\r
33#\r
34# VALID_ARCHITECTURES = IA32 X64\r
35#\r
36# VIRTUAL_ADDRESS_MAP_CALLBACK = VariableAddressChangeEvent\r
37#\r
38\r
39[Sources]\r
40 VariableSmmRuntimeDxe.c\r
c1d93242 41 Measurement.c\r
0c18794e 42\r
43[Packages]\r
44 MdePkg/MdePkg.dec\r
45 MdeModulePkg/MdeModulePkg.dec\r
46 SecurityPkg/SecurityPkg.dec\r
47\r
48[LibraryClasses]\r
49 MemoryAllocationLib\r
50 BaseLib \r
51 UefiBootServicesTableLib\r
52 DebugLib\r
53 UefiRuntimeLib\r
54 DxeServicesTableLib\r
55 UefiDriverEntryPoint\r
56 PcdLib \r
c1d93242 57 TpmMeasurementLib\r
0c18794e 58\r
59[Protocols]\r
60c944c7
DG
60 gEfiVariableWriteArchProtocolGuid ## PRODUCES\r
61 gEfiVariableArchProtocolGuid ## PRODUCES\r
62 gEfiSmmCommunicationProtocolGuid ## CONSUMES\r
63 gEdkiiVariableLockProtocolGuid ## PRODUCES\r
64\r
65 ## CONSUMES\r
66 ## NOTIFY\r
67 ## UNDEFINED # Used to do smm communication\r
0c18794e 68 gEfiSmmVariableProtocolGuid\r
69\r
70[Guids]\r
60c944c7
DG
71 gEfiEventVirtualAddressChangeGuid ## CONSUMES ## Event\r
72 gEfiEventExitBootServicesGuid ## CONSUMES ## Event\r
73 \r
74 ## CONSUMES ## UNDEFINED # Locate protocol\r
75 ## CONSUMES ## UNDEFINED # Protocol notify\r
0c18794e 76 gSmmVariableWriteGuid\r
60c944c7
DG
77 \r
78\r
79 ## SOMETIMES_CONSUMES ## Variable:L"PK"\r
80 ## SOMETIMES_CONSUMES ## Variable:L"KEK"\r
81 ## SOMETIMES_CONSUMES ## Variable:L"SecureBoot"\r
82 gEfiGlobalVariableGuid\r
83 \r
84 ## SOMETIMES_CONSUMES ## Variable:L"DB"\r
85 ## SOMETIMES_CONSUMES ## Variable:L"DBX"\r
c1d93242 86 gEfiImageSecurityDatabaseGuid\r
0c18794e 87\r
88[Pcd]\r
60c944c7
DG
89 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVariableSize ## CONSUMES\r
90 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxHardwareErrorVariableSize ## CONSUMES\r
91 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase ## CONSUMES\r
92\r
0c18794e 93[Depex]\r
94 gEfiSmmCommunicationProtocolGuid\r
60c944c7
DG
95\r
96[UserExtensions.TianoCore."ExtraFiles"]\r
97 VariableSmmRuntimeDxeExtra.uni\r