]> git.proxmox.com Git - mirror_edk2.git/blob - SecurityPkg/Tcg/TcgConfigDxe/TcgConfigImpl.h
OvmfPkg/Csm/LegacyBiosDxe: Update to make it build for OVMF
[mirror_edk2.git] / SecurityPkg / Tcg / TcgConfigDxe / TcgConfigImpl.h
1 /** @file
2 The header file of HII Config Access protocol implementation of TCG
3 configuration module.
4
5 Copyright (c) 2011 - 2018, Intel Corporation. All rights reserved.<BR>
6 SPDX-License-Identifier: BSD-2-Clause-Patent
7
8 **/
9
10 #ifndef __TCG_CONFIG_IMPL_H__
11 #define __TCG_CONFIG_IMPL_H__
12
13 #include <Uefi.h>
14
15 #include <Protocol/HiiConfigAccess.h>
16 #include <Protocol/HiiConfigRouting.h>
17 #include <Protocol/TcgService.h>
18
19 #include <Library/BaseLib.h>
20 #include <Library/BaseMemoryLib.h>
21 #include <Library/DebugLib.h>
22 #include <Library/MemoryAllocationLib.h>
23 #include <Library/UefiBootServicesTableLib.h>
24 #include <Library/UefiRuntimeServicesTableLib.h>
25 #include <Library/UefiHiiServicesLib.h>
26 #include <Library/UefiLib.h>
27 #include <Library/HiiLib.h>
28 #include <Library/DevicePathLib.h>
29 #include <Library/PcdLib.h>
30 #include <Library/PrintLib.h>
31 #include <Library/Tpm12DeviceLib.h>
32
33 #include <Guid/MdeModuleHii.h>
34
35 #include "TcgConfigNvData.h"
36
37 //
38 // Tool generated IFR binary data and String package data
39 //
40 extern UINT8 TcgConfigBin[];
41 extern UINT8 TcgConfigDxeStrings[];
42
43 ///
44 /// HII specific Vendor Device Path definition.
45 ///
46 typedef struct {
47 VENDOR_DEVICE_PATH VendorDevicePath;
48 EFI_DEVICE_PATH_PROTOCOL End;
49 } HII_VENDOR_DEVICE_PATH;
50
51 typedef struct {
52 UINTN Signature;
53
54 EFI_HII_CONFIG_ACCESS_PROTOCOL ConfigAccess;
55 EFI_HII_HANDLE HiiHandle;
56 EFI_HANDLE DriverHandle;
57
58 TCG_CONFIGURATION *Configuration;
59 EFI_TCG_PROTOCOL *TcgProtocol;
60 } TCG_CONFIG_PRIVATE_DATA;
61
62 extern TCG_CONFIG_PRIVATE_DATA mTcgConfigPrivateDateTemplate;
63
64 #define TCG_CONFIG_PRIVATE_DATA_SIGNATURE SIGNATURE_32 ('T', 'C', 'G', 'D')
65 #define TCG_CONFIG_PRIVATE_DATA_FROM_THIS(a) CR (a, TCG_CONFIG_PRIVATE_DATA, ConfigAccess, TCG_CONFIG_PRIVATE_DATA_SIGNATURE)
66
67
68 /**
69 This function publish the TCG configuration Form for TPM device.
70
71 @param[in, out] PrivateData Points to TCG configuration private data.
72
73 @retval EFI_SUCCESS HII Form is installed for this network device.
74 @retval EFI_OUT_OF_RESOURCES Not enough resource for HII Form installation.
75 @retval Others Other errors as indicated.
76
77 **/
78 EFI_STATUS
79 InstallTcgConfigForm (
80 IN OUT TCG_CONFIG_PRIVATE_DATA *PrivateData
81 );
82
83 /**
84 This function removes TCG configuration Form.
85
86 @param[in, out] PrivateData Points to TCG configuration private data.
87
88 **/
89 VOID
90 UninstallTcgConfigForm (
91 IN OUT TCG_CONFIG_PRIVATE_DATA *PrivateData
92 );
93
94 /**
95 This function allows a caller to extract the current configuration for one
96 or more named elements from the target driver.
97
98 @param[in] This Points to the EFI_HII_CONFIG_ACCESS_PROTOCOL.
99 @param[in] Request A null-terminated Unicode string in
100 <ConfigRequest> format.
101 @param[out] Progress On return, points to a character in the Request
102 string. Points to the string's null terminator if
103 request was successful. Points to the most recent
104 '&' before the first failing name/value pair (or
105 the beginning of the string if the failure is in
106 the first name/value pair) if the request was not
107 successful.
108 @param[out] Results A null-terminated Unicode string in
109 <ConfigAltResp> format which has all values filled
110 in for the names in the Request string. String to
111 be allocated by the called function.
112
113 @retval EFI_SUCCESS The Results is filled with the requested values.
114 @retval EFI_OUT_OF_RESOURCES Not enough memory to store the results.
115 @retval EFI_INVALID_PARAMETER Request is illegal syntax, or unknown name.
116 @retval EFI_NOT_FOUND Routing data doesn't match any storage in this
117 driver.
118
119 **/
120 EFI_STATUS
121 EFIAPI
122 TcgExtractConfig (
123 IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This,
124 IN CONST EFI_STRING Request,
125 OUT EFI_STRING *Progress,
126 OUT EFI_STRING *Results
127 );
128
129 /**
130 This function processes the results of changes in configuration.
131
132 @param[in] This Points to the EFI_HII_CONFIG_ACCESS_PROTOCOL.
133 @param[in] Configuration A null-terminated Unicode string in <ConfigResp>
134 format.
135 @param[out] Progress A pointer to a string filled in with the offset of
136 the most recent '&' before the first failing
137 name/value pair (or the beginning of the string if
138 the failure is in the first name/value pair) or
139 the terminating NULL if all was successful.
140
141 @retval EFI_SUCCESS The Results is processed successfully.
142 @retval EFI_INVALID_PARAMETER Configuration is NULL.
143 @retval EFI_NOT_FOUND Routing data doesn't match any storage in this
144 driver.
145
146 **/
147 EFI_STATUS
148 EFIAPI
149 TcgRouteConfig (
150 IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This,
151 IN CONST EFI_STRING Configuration,
152 OUT EFI_STRING *Progress
153 );
154
155 /**
156 This function processes the results of changes in configuration.
157
158 @param[in] This Points to the EFI_HII_CONFIG_ACCESS_PROTOCOL.
159 @param[in] Action Specifies the type of action taken by the browser.
160 @param[in] QuestionId A unique value which is sent to the original
161 exporting driver so that it can identify the type
162 of data to expect.
163 @param[in] Type The type of value for the question.
164 @param[in] Value A pointer to the data being sent to the original
165 exporting driver.
166 @param[out] ActionRequest On return, points to the action requested by the
167 callback function.
168
169 @retval EFI_SUCCESS The callback successfully handled the action.
170 @retval EFI_OUT_OF_RESOURCES Not enough storage is available to hold the
171 variable and its data.
172 @retval EFI_DEVICE_ERROR The variable could not be saved.
173 @retval EFI_UNSUPPORTED The specified Action is not supported by the
174 callback.
175
176 **/
177 EFI_STATUS
178 EFIAPI
179 TcgCallback (
180 IN CONST EFI_HII_CONFIG_ACCESS_PROTOCOL *This,
181 IN EFI_BROWSER_ACTION Action,
182 IN EFI_QUESTION_ID QuestionId,
183 IN UINT8 Type,
184 IN EFI_IFR_TYPE_VALUE *Value,
185 OUT EFI_BROWSER_ACTION_REQUEST *ActionRequest
186 );
187
188 #endif