]> git.proxmox.com Git - mirror_edk2.git/blame - SecurityPkg/VariableAuthenticated/RuntimeDxe/VariableRuntimeDxe.inf
MdeModulePkg: Variable drivers robustly handle crashes during Reclaim().
[mirror_edk2.git] / SecurityPkg / VariableAuthenticated / RuntimeDxe / VariableRuntimeDxe.inf
CommitLineData
0c18794e 1## @file\r
2# Component description file for Authenticated Variable module.\r
3#\r
dc204d5a
JY
4# Caution: This module requires additional review when modified.\r
5# This driver will have external input - variable data.\r
6# This external input must be validated carefully to avoid security issue like\r
7# buffer overflow, integer overflow.\r
8#\r
ecc722ad 9# Copyright (c) 2009 - 2012, Intel Corporation. All rights reserved.<BR>\r
0c18794e 10# This program and the accompanying materials\r
11# are licensed and made available under the terms and conditions of the BSD License\r
12# which accompanies this distribution. The full text of the license may be found at\r
13# http://opensource.org/licenses/bsd-license.php\r
14# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
15# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
16#\r
17##\r
18\r
19[Defines]\r
20 INF_VERSION = 0x00010005\r
21 BASE_NAME = VariableRuntimeDxe\r
22 FILE_GUID = 2226F30F-3D5B-402d-9936-A97184EB4516\r
23 MODULE_TYPE = DXE_RUNTIME_DRIVER\r
24 VERSION_STRING = 1.0\r
25 ENTRY_POINT = VariableServiceInitialize\r
26\r
27#\r
28# The following information is for reference only and not required by the build tools.\r
29#\r
30# VALID_ARCHITECTURES = IA32 X64 EBC\r
31#\r
32# VIRTUAL_ADDRESS_MAP_CALLBACK = VariableClassAddressChangeEvent\r
33#\r
34\r
35[Sources]\r
36 Reclaim.c\r
37 Variable.c\r
38 VariableDxe.c\r
39 Variable.h\r
40 AuthService.c\r
41 AuthService.h\r
42\r
43[Packages]\r
44 MdePkg/MdePkg.dec\r
45 MdeModulePkg/MdeModulePkg.dec\r
46 CryptoPkg/CryptoPkg.dec\r
47 SecurityPkg/SecurityPkg.dec\r
48\r
49[LibraryClasses]\r
50 MemoryAllocationLib\r
51 BaseLib\r
52 SynchronizationLib\r
53 UefiLib\r
54 UefiBootServicesTableLib\r
55 BaseMemoryLib\r
56 DebugLib\r
57 UefiRuntimeLib\r
58 DxeServicesTableLib\r
59 UefiDriverEntryPoint\r
60 PcdLib\r
61 BaseCryptLib\r
9a000b46
RN
62 PlatformSecureLib\r
63 HobLib\r
0c18794e 64\r
65[Protocols]\r
66 gEfiFirmwareVolumeBlockProtocolGuid ## SOMETIMES_CONSUMES\r
67 gEfiVariableWriteArchProtocolGuid ## ALWAYS_PRODUCES\r
68 gEfiVariableArchProtocolGuid ## ALWAYS_PRODUCES\r
69 gEfiFaultTolerantWriteProtocolGuid ## SOMETIMES_CONSUMES\r
6ab9f441 70 gEdkiiVariableLockProtocolGuid ## ALWAYS_PRODUCES\r
0c18794e 71\r
72[Guids]\r
2d3fb919 73 gEfiAuthenticatedVariableGuid ## PRODUCES ## Configuration Table Guid\r
0c18794e 74 gEfiGlobalVariableGuid ## PRODUCES ## Variable Guid\r
6ab9f441 75 gEfiEventVirtualAddressChangeGuid ## CONSUMES ## Event\r
85560919 76 gEfiCertTypeRsa2048Sha256Guid\r
0c18794e 77 gEfiImageSecurityDatabaseGuid\r
78 gEfiCertX509Guid\r
79 gEfiCertPkcs7Guid\r
beda2356 80 gEfiCertRsa2048Guid\r
81 gEfiSecureBootEnableDisableGuid\r
ecc722ad 82 gEfiCustomModeEnableGuid\r
4d832aab 83 gEfiSystemNvDataFvGuid ## CONSUMES\r
ed47ae02 84 gEfiCertDbGuid\r
a5f15e30 85 gEfiHardwareErrorVariableGuid ## SOMETIMES_CONSUMES\r
6ab9f441 86 gEfiEndOfDxeEventGroupGuid ## CONSUMES ## Event\r
0c18794e 87\r
88[Pcd]\r
89 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableSize\r
90 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase\r
91 gEfiMdeModulePkgTokenSpaceGuid.PcdFlashNvStorageVariableBase64\r
92 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxVariableSize\r
93 gEfiMdeModulePkgTokenSpaceGuid.PcdMaxHardwareErrorVariableSize\r
94 gEfiMdeModulePkgTokenSpaceGuid.PcdVariableStoreSize\r
95 gEfiMdeModulePkgTokenSpaceGuid.PcdHwErrStorageSize\r
2d3fb919 96\r
0c18794e 97[FeaturePcd]\r
98 gEfiMdeModulePkgTokenSpaceGuid.PcdVariableCollectStatistics ## SOMETIME_CONSUMES (statistic the information of variable.)\r
99\r
100[Depex]\r
101 gEfiFirmwareVolumeBlockProtocolGuid AND gEfiFaultTolerantWriteProtocolGuid\r
102\r
103# [Event]\r
104# ##\r
105# # Event will be signaled for VIRTUAL_ADDRESS_CHANGE event.\r
106# #\r
107# EVENT_TYPE_NOTIFY_SIGNAL ## PRODUCES\r
108#\r
109#\r
2d3fb919 110\r