1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
|
/** @file
UserAuthentication DXE password wrapper.
Copyright (c) 2019, Intel Corporation. All rights reserved.<BR>
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include "UserAuthenticationDxe.h"
/**
Initialize the communicate buffer using DataSize and Function.
@param[out] DataPtr Points to the data in the communicate buffer.
@param[in] DataSize The data size to send to SMM.
@param[in] Function The function number to initialize the communicate header.
@return Communicate buffer.
**/
VOID*
InitCommunicateBuffer (
OUT VOID **DataPtr OPTIONAL,
IN UINTN DataSize,
IN UINTN Function
)
{
EFI_SMM_COMMUNICATE_HEADER *SmmCommunicateHeader;
SMM_PASSWORD_COMMUNICATE_HEADER *SmmPasswordFunctionHeader;
VOID *Buffer;
EDKII_PI_SMM_COMMUNICATION_REGION_TABLE *SmmCommRegionTable;
EFI_MEMORY_DESCRIPTOR *SmmCommMemRegion;
UINTN Index;
UINTN Size;
EFI_STATUS Status;
Buffer = NULL;
Status = EfiGetSystemConfigurationTable (
&gEdkiiPiSmmCommunicationRegionTableGuid,
(VOID **) &SmmCommRegionTable
);
if (EFI_ERROR (Status)) {
return NULL;
}
ASSERT (SmmCommRegionTable != NULL);
SmmCommMemRegion = (EFI_MEMORY_DESCRIPTOR *) (SmmCommRegionTable + 1);
Size = 0;
for (Index = 0; Index < SmmCommRegionTable->NumberOfEntries; Index++) {
if (SmmCommMemRegion->Type == EfiConventionalMemory) {
Size = EFI_PAGES_TO_SIZE ((UINTN) SmmCommMemRegion->NumberOfPages);
if (Size >= (DataSize + OFFSET_OF (EFI_SMM_COMMUNICATE_HEADER, Data) + sizeof (SMM_PASSWORD_COMMUNICATE_HEADER))) {
break;
}
}
SmmCommMemRegion = (EFI_MEMORY_DESCRIPTOR *) ((UINT8 *) SmmCommMemRegion + SmmCommRegionTable->DescriptorSize);
}
ASSERT (Index < SmmCommRegionTable->NumberOfEntries);
Buffer = (VOID*)(UINTN)SmmCommMemRegion->PhysicalStart;
ASSERT (Buffer != NULL);
SmmCommunicateHeader = (EFI_SMM_COMMUNICATE_HEADER *) Buffer;
CopyGuid (&SmmCommunicateHeader->HeaderGuid, &gUserAuthenticationGuid);
SmmCommunicateHeader->MessageLength = DataSize + sizeof (SMM_PASSWORD_COMMUNICATE_HEADER);
SmmPasswordFunctionHeader = (SMM_PASSWORD_COMMUNICATE_HEADER *) SmmCommunicateHeader->Data;
ZeroMem (SmmPasswordFunctionHeader, DataSize + sizeof (SMM_PASSWORD_COMMUNICATE_HEADER));
SmmPasswordFunctionHeader->Function = Function;
if (DataPtr != NULL) {
*DataPtr = SmmPasswordFunctionHeader + 1;
}
return Buffer;
}
/**
Send the data in communicate buffer to SMM.
@param[in] Buffer Points to the data in the communicate buffer.
@param[in] DataSize The data size to send to SMM.
@retval EFI_SUCCESS Success is returned from the function in SMM.
@retval Others Failure is returned from the function in SMM.
**/
EFI_STATUS
SendCommunicateBuffer (
IN VOID *Buffer,
IN UINTN DataSize
)
{
EFI_STATUS Status;
UINTN CommSize;
EFI_SMM_COMMUNICATE_HEADER *SmmCommunicateHeader;
SMM_PASSWORD_COMMUNICATE_HEADER *SmmPasswordFunctionHeader;
CommSize = DataSize + OFFSET_OF (EFI_SMM_COMMUNICATE_HEADER, Data) + sizeof (SMM_PASSWORD_COMMUNICATE_HEADER);
Status = mSmmCommunication->Communicate (mSmmCommunication, Buffer, &CommSize);
ASSERT_EFI_ERROR (Status);
SmmCommunicateHeader = (EFI_SMM_COMMUNICATE_HEADER *) Buffer;
SmmPasswordFunctionHeader = (SMM_PASSWORD_COMMUNICATE_HEADER *)SmmCommunicateHeader->Data;
return SmmPasswordFunctionHeader->ReturnStatus;
}
/**
Validate if the password is correct.
@param[in] Password The user input password.
@param[in] PasswordSize The size of Password in byte.
@retval EFI_SUCCESS The password is correct.
@retval EFI_SECURITY_VIOLATION The password is incorrect.
@retval EFI_INVALID_PARAMETER The password or size is invalid.
@retval EFI_OUT_OF_RESOURCES Insufficient resources to verify the password.
@retval EFI_ACCESS_DENIED Password retry count reach.
**/
EFI_STATUS
VerifyPassword (
IN CHAR16 *Password,
IN UINTN PasswordSize
)
{
EFI_STATUS Status;
VOID *Buffer;
SMM_PASSWORD_COMMUNICATE_VERIFY_PASSWORD *VerifyPassword;
ASSERT (Password != NULL);
if (PasswordSize > sizeof(VerifyPassword->Password) * sizeof(CHAR16)) {
return EFI_INVALID_PARAMETER;
}
Buffer = InitCommunicateBuffer (
(VOID**)&VerifyPassword,
sizeof(*VerifyPassword),
SMM_PASSWORD_FUNCTION_VERIFY_PASSWORD
);
if (Buffer == NULL) {
return EFI_OUT_OF_RESOURCES;
}
Status = UnicodeStrToAsciiStrS (Password, VerifyPassword->Password, sizeof(VerifyPassword->Password));
if (EFI_ERROR(Status)) {
goto EXIT;
}
Status = SendCommunicateBuffer (Buffer, sizeof(*VerifyPassword));
EXIT:
ZeroMem (VerifyPassword, sizeof(*VerifyPassword));
return Status;
}
/**
Set a new password.
@param[in] NewPassword The user input new password.
NULL means clear password.
@param[in] NewPasswordSize The size of NewPassword in byte.
@param[in] OldPassword The user input old password.
NULL means no old password.
@param[in] OldPasswordSize The size of OldPassword in byte.
@retval EFI_SUCCESS The NewPassword is set successfully.
@retval EFI_SECURITY_VIOLATION The OldPassword is incorrect.
@retval EFI_INVALID_PARAMETER The password or size is invalid.
@retval EFI_OUT_OF_RESOURCES Insufficient resources to set the password.
@retval EFI_ACCESS_DENIED Password retry count reach.
@retval EFI_UNSUPPORTED NewPassword is not strong enough.
@retval EFI_ALREADY_STARTED NewPassword is in history.
**/
EFI_STATUS
SetPassword (
IN CHAR16 *NewPassword, OPTIONAL
IN UINTN NewPasswordSize,
IN CHAR16 *OldPassword, OPTIONAL
IN UINTN OldPasswordSize
)
{
EFI_STATUS Status;
VOID *Buffer;
SMM_PASSWORD_COMMUNICATE_SET_PASSWORD *SetPassword;
if (NewPasswordSize > sizeof(SetPassword->NewPassword) * sizeof(CHAR16)) {
return EFI_INVALID_PARAMETER;
}
if (OldPasswordSize > sizeof(SetPassword->OldPassword) * sizeof(CHAR16)) {
return EFI_INVALID_PARAMETER;
}
Buffer = InitCommunicateBuffer (
(VOID**)&SetPassword,
sizeof(*SetPassword),
SMM_PASSWORD_FUNCTION_SET_PASSWORD
);
if (Buffer == NULL) {
return EFI_OUT_OF_RESOURCES;
}
if (NewPassword != NULL) {
Status = UnicodeStrToAsciiStrS (NewPassword, SetPassword->NewPassword, sizeof(SetPassword->NewPassword));
if (EFI_ERROR(Status)) {
goto EXIT;
}
} else {
SetPassword->NewPassword[0] = 0;
}
if (OldPassword != NULL) {
Status = UnicodeStrToAsciiStrS (OldPassword, SetPassword->OldPassword, sizeof(SetPassword->OldPassword));
if (EFI_ERROR(Status)) {
goto EXIT;
}
} else {
SetPassword->OldPassword[0] = 0;
}
Status = SendCommunicateBuffer (Buffer, sizeof(*SetPassword));
EXIT:
ZeroMem (SetPassword, sizeof(*SetPassword));
return Status;
}
/**
Return if the password is set.
@retval TRUE The password is set.
@retval FALSE The password is not set.
**/
BOOLEAN
IsPasswordInstalled (
VOID
)
{
EFI_STATUS Status;
VOID *Buffer;
Buffer = InitCommunicateBuffer (
NULL,
0,
SMM_PASSWORD_FUNCTION_IS_PASSWORD_SET
);
if (Buffer == NULL) {
return FALSE;
}
Status = SendCommunicateBuffer (Buffer, 0);
if (EFI_ERROR (Status)) {
return FALSE;
}
return TRUE;
}
/**
Get password verification policy.
@param[out] VerifyPolicy Verification policy.
@retval EFI_SUCCESS Get verification policy successfully.
@retval EFI_OUT_OF_RESOURCES Insufficient resources to get verification policy.
**/
EFI_STATUS
GetPasswordVerificationPolicy (
OUT SMM_PASSWORD_COMMUNICATE_VERIFY_POLICY *VerifyPolicy
)
{
EFI_STATUS Status;
VOID *Buffer;
SMM_PASSWORD_COMMUNICATE_VERIFY_POLICY *GetVerifyPolicy;
Buffer = InitCommunicateBuffer (
(VOID**)&GetVerifyPolicy,
sizeof(*GetVerifyPolicy),
SMM_PASSWORD_FUNCTION_GET_VERIFY_POLICY
);
if (Buffer == NULL) {
return EFI_OUT_OF_RESOURCES;
}
Status = SendCommunicateBuffer (Buffer, sizeof(*GetVerifyPolicy));
if (!EFI_ERROR (Status)) {
CopyMem (VerifyPolicy, GetVerifyPolicy, sizeof (SMM_PASSWORD_COMMUNICATE_VERIFY_POLICY));
}
return Status;
}
/**
Return if the password was verified.
@retval TRUE The password was verified.
@retval FALSE The password was not verified.
**/
BOOLEAN
WasPasswordVerified (
VOID
)
{
EFI_STATUS Status;
VOID *Buffer;
Buffer = InitCommunicateBuffer (
NULL,
0,
SMM_PASSWORD_FUNCTION_WAS_PASSWORD_VERIFIED
);
if (Buffer == NULL) {
return FALSE;
}
Status = SendCommunicateBuffer (Buffer, 0);
if (EFI_ERROR (Status)) {
return FALSE;
}
return TRUE;
}
|