]> git.proxmox.com Git - mirror_edk2.git/blob - MdeModulePkg/Universal/Variable/RuntimeDxe/VariableSmm.c
MdeModulePkg/SmmLockBox: Update to consume SpeculationBarrier
[mirror_edk2.git] / MdeModulePkg / Universal / Variable / RuntimeDxe / VariableSmm.c
1 /** @file
2 The sample implementation for SMM variable protocol. And this driver
3 implements an SMI handler to communicate with the DXE runtime driver
4 to provide variable services.
5
6 Caution: This module requires additional review when modified.
7 This driver will have external input - variable data and communicate buffer in SMM mode.
8 This external input must be validated carefully to avoid security issue like
9 buffer overflow, integer overflow.
10
11 SmmVariableHandler() will receive untrusted input and do basic validation.
12
13 Each sub function VariableServiceGetVariable(), VariableServiceGetNextVariableName(),
14 VariableServiceSetVariable(), VariableServiceQueryVariableInfo(), ReclaimForOS(),
15 SmmVariableGetStatistics() should also do validation based on its own knowledge.
16
17 Copyright (c) 2010 - 2016, Intel Corporation. All rights reserved.<BR>
18 This program and the accompanying materials
19 are licensed and made available under the terms and conditions of the BSD License
20 which accompanies this distribution. The full text of the license may be found at
21 http://opensource.org/licenses/bsd-license.php
22
23 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
24 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
25
26 **/
27
28 #include <Protocol/SmmVariable.h>
29 #include <Protocol/SmmFirmwareVolumeBlock.h>
30 #include <Protocol/SmmFaultTolerantWrite.h>
31 #include <Protocol/SmmEndOfDxe.h>
32 #include <Protocol/SmmVarCheck.h>
33
34 #include <Library/SmmServicesTableLib.h>
35 #include <Library/SmmMemLib.h>
36
37 #include <Guid/SmmVariableCommon.h>
38 #include "Variable.h"
39
40 extern VARIABLE_INFO_ENTRY *gVariableInfo;
41 EFI_HANDLE mSmmVariableHandle = NULL;
42 EFI_HANDLE mVariableHandle = NULL;
43 BOOLEAN mAtRuntime = FALSE;
44 UINT8 *mVariableBufferPayload = NULL;
45 UINTN mVariableBufferPayloadSize;
46 extern BOOLEAN mEndOfDxe;
47 extern VAR_CHECK_REQUEST_SOURCE mRequestSource;
48
49 /**
50 SecureBoot Hook for SetVariable.
51
52 @param[in] VariableName Name of Variable to be found.
53 @param[in] VendorGuid Variable vendor GUID.
54
55 **/
56 VOID
57 EFIAPI
58 SecureBootHook (
59 IN CHAR16 *VariableName,
60 IN EFI_GUID *VendorGuid
61 )
62 {
63 return ;
64 }
65
66 /**
67
68 This code sets variable in storage blocks (Volatile or Non-Volatile).
69
70 @param VariableName Name of Variable to be found.
71 @param VendorGuid Variable vendor GUID.
72 @param Attributes Attribute value of the variable found
73 @param DataSize Size of Data found. If size is less than the
74 data, this value contains the required size.
75 @param Data Data pointer.
76
77 @return EFI_INVALID_PARAMETER Invalid parameter.
78 @return EFI_SUCCESS Set successfully.
79 @return EFI_OUT_OF_RESOURCES Resource not enough to set variable.
80 @return EFI_NOT_FOUND Not found.
81 @return EFI_WRITE_PROTECTED Variable is read-only.
82
83 **/
84 EFI_STATUS
85 EFIAPI
86 SmmVariableSetVariable (
87 IN CHAR16 *VariableName,
88 IN EFI_GUID *VendorGuid,
89 IN UINT32 Attributes,
90 IN UINTN DataSize,
91 IN VOID *Data
92 )
93 {
94 EFI_STATUS Status;
95
96 //
97 // Disable write protection when the calling SetVariable() through EFI_SMM_VARIABLE_PROTOCOL.
98 //
99 mRequestSource = VarCheckFromTrusted;
100 Status = VariableServiceSetVariable (
101 VariableName,
102 VendorGuid,
103 Attributes,
104 DataSize,
105 Data
106 );
107 mRequestSource = VarCheckFromUntrusted;
108 return Status;
109 }
110
111 EFI_SMM_VARIABLE_PROTOCOL gSmmVariable = {
112 VariableServiceGetVariable,
113 VariableServiceGetNextVariableName,
114 SmmVariableSetVariable,
115 VariableServiceQueryVariableInfo
116 };
117
118 EDKII_SMM_VAR_CHECK_PROTOCOL mSmmVarCheck = { VarCheckRegisterSetVariableCheckHandler,
119 VarCheckVariablePropertySet,
120 VarCheckVariablePropertyGet };
121
122 /**
123 Return TRUE if ExitBootServices () has been called.
124
125 @retval TRUE If ExitBootServices () has been called.
126 **/
127 BOOLEAN
128 AtRuntime (
129 VOID
130 )
131 {
132 return mAtRuntime;
133 }
134
135 /**
136 Initializes a basic mutual exclusion lock.
137
138 This function initializes a basic mutual exclusion lock to the released state
139 and returns the lock. Each lock provides mutual exclusion access at its task
140 priority level. Since there is no preemption or multiprocessor support in EFI,
141 acquiring the lock only consists of raising to the locks TPL.
142 If Lock is NULL, then ASSERT().
143 If Priority is not a valid TPL value, then ASSERT().
144
145 @param Lock A pointer to the lock data structure to initialize.
146 @param Priority EFI TPL is associated with the lock.
147
148 @return The lock.
149
150 **/
151 EFI_LOCK *
152 InitializeLock (
153 IN OUT EFI_LOCK *Lock,
154 IN EFI_TPL Priority
155 )
156 {
157 return Lock;
158 }
159
160 /**
161 Acquires lock only at boot time. Simply returns at runtime.
162
163 This is a temperary function that will be removed when
164 EfiAcquireLock() in UefiLib can handle the call in UEFI
165 Runtimer driver in RT phase.
166 It calls EfiAcquireLock() at boot time, and simply returns
167 at runtime.
168
169 @param Lock A pointer to the lock to acquire.
170
171 **/
172 VOID
173 AcquireLockOnlyAtBootTime (
174 IN EFI_LOCK *Lock
175 )
176 {
177
178 }
179
180
181 /**
182 Releases lock only at boot time. Simply returns at runtime.
183
184 This is a temperary function which will be removed when
185 EfiReleaseLock() in UefiLib can handle the call in UEFI
186 Runtimer driver in RT phase.
187 It calls EfiReleaseLock() at boot time and simply returns
188 at runtime.
189
190 @param Lock A pointer to the lock to release.
191
192 **/
193 VOID
194 ReleaseLockOnlyAtBootTime (
195 IN EFI_LOCK *Lock
196 )
197 {
198
199 }
200
201 /**
202 Retrieve the SMM Fault Tolerent Write protocol interface.
203
204 @param[out] FtwProtocol The interface of SMM Ftw protocol
205
206 @retval EFI_SUCCESS The SMM FTW protocol instance was found and returned in FtwProtocol.
207 @retval EFI_NOT_FOUND The SMM FTW protocol instance was not found.
208 @retval EFI_INVALID_PARAMETER SarProtocol is NULL.
209
210 **/
211 EFI_STATUS
212 GetFtwProtocol (
213 OUT VOID **FtwProtocol
214 )
215 {
216 EFI_STATUS Status;
217
218 //
219 // Locate Smm Fault Tolerent Write protocol
220 //
221 Status = gSmst->SmmLocateProtocol (
222 &gEfiSmmFaultTolerantWriteProtocolGuid,
223 NULL,
224 FtwProtocol
225 );
226 return Status;
227 }
228
229
230 /**
231 Retrieve the SMM FVB protocol interface by HANDLE.
232
233 @param[in] FvBlockHandle The handle of SMM FVB protocol that provides services for
234 reading, writing, and erasing the target block.
235 @param[out] FvBlock The interface of SMM FVB protocol
236
237 @retval EFI_SUCCESS The interface information for the specified protocol was returned.
238 @retval EFI_UNSUPPORTED The device does not support the SMM FVB protocol.
239 @retval EFI_INVALID_PARAMETER FvBlockHandle is not a valid EFI_HANDLE or FvBlock is NULL.
240
241 **/
242 EFI_STATUS
243 GetFvbByHandle (
244 IN EFI_HANDLE FvBlockHandle,
245 OUT EFI_FIRMWARE_VOLUME_BLOCK_PROTOCOL **FvBlock
246 )
247 {
248 //
249 // To get the SMM FVB protocol interface on the handle
250 //
251 return gSmst->SmmHandleProtocol (
252 FvBlockHandle,
253 &gEfiSmmFirmwareVolumeBlockProtocolGuid,
254 (VOID **) FvBlock
255 );
256 }
257
258
259 /**
260 Function returns an array of handles that support the SMM FVB protocol
261 in a buffer allocated from pool.
262
263 @param[out] NumberHandles The number of handles returned in Buffer.
264 @param[out] Buffer A pointer to the buffer to return the requested
265 array of handles that support SMM FVB protocol.
266
267 @retval EFI_SUCCESS The array of handles was returned in Buffer, and the number of
268 handles in Buffer was returned in NumberHandles.
269 @retval EFI_NOT_FOUND No SMM FVB handle was found.
270 @retval EFI_OUT_OF_RESOURCES There is not enough pool memory to store the matching results.
271 @retval EFI_INVALID_PARAMETER NumberHandles is NULL or Buffer is NULL.
272
273 **/
274 EFI_STATUS
275 GetFvbCountAndBuffer (
276 OUT UINTN *NumberHandles,
277 OUT EFI_HANDLE **Buffer
278 )
279 {
280 EFI_STATUS Status;
281 UINTN BufferSize;
282
283 if ((NumberHandles == NULL) || (Buffer == NULL)) {
284 return EFI_INVALID_PARAMETER;
285 }
286
287 BufferSize = 0;
288 *NumberHandles = 0;
289 *Buffer = NULL;
290 Status = gSmst->SmmLocateHandle (
291 ByProtocol,
292 &gEfiSmmFirmwareVolumeBlockProtocolGuid,
293 NULL,
294 &BufferSize,
295 *Buffer
296 );
297 if (EFI_ERROR(Status) && Status != EFI_BUFFER_TOO_SMALL) {
298 return EFI_NOT_FOUND;
299 }
300
301 *Buffer = AllocatePool (BufferSize);
302 if (*Buffer == NULL) {
303 return EFI_OUT_OF_RESOURCES;
304 }
305
306 Status = gSmst->SmmLocateHandle (
307 ByProtocol,
308 &gEfiSmmFirmwareVolumeBlockProtocolGuid,
309 NULL,
310 &BufferSize,
311 *Buffer
312 );
313
314 *NumberHandles = BufferSize / sizeof(EFI_HANDLE);
315 if (EFI_ERROR(Status)) {
316 *NumberHandles = 0;
317 FreePool (*Buffer);
318 *Buffer = NULL;
319 }
320
321 return Status;
322 }
323
324
325 /**
326 Get the variable statistics information from the information buffer pointed by gVariableInfo.
327
328 Caution: This function may be invoked at SMM runtime.
329 InfoEntry and InfoSize are external input. Care must be taken to make sure not security issue at runtime.
330
331 @param[in, out] InfoEntry A pointer to the buffer of variable information entry.
332 On input, point to the variable information returned last time. if
333 InfoEntry->VendorGuid is zero, return the first information.
334 On output, point to the next variable information.
335 @param[in, out] InfoSize On input, the size of the variable information buffer.
336 On output, the returned variable information size.
337
338 @retval EFI_SUCCESS The variable information is found and returned successfully.
339 @retval EFI_UNSUPPORTED No variable inoformation exists in variable driver. The
340 PcdVariableCollectStatistics should be set TRUE to support it.
341 @retval EFI_BUFFER_TOO_SMALL The buffer is too small to hold the next variable information.
342 @retval EFI_INVALID_PARAMETER Input parameter is invalid.
343
344 **/
345 EFI_STATUS
346 SmmVariableGetStatistics (
347 IN OUT VARIABLE_INFO_ENTRY *InfoEntry,
348 IN OUT UINTN *InfoSize
349 )
350 {
351 VARIABLE_INFO_ENTRY *VariableInfo;
352 UINTN NameSize;
353 UINTN StatisticsInfoSize;
354 CHAR16 *InfoName;
355 UINTN InfoNameMaxSize;
356 EFI_GUID VendorGuid;
357
358 if (InfoEntry == NULL) {
359 return EFI_INVALID_PARAMETER;
360 }
361
362 VariableInfo = gVariableInfo;
363 if (VariableInfo == NULL) {
364 return EFI_UNSUPPORTED;
365 }
366
367 StatisticsInfoSize = sizeof (VARIABLE_INFO_ENTRY);
368 if (*InfoSize < StatisticsInfoSize) {
369 *InfoSize = StatisticsInfoSize;
370 return EFI_BUFFER_TOO_SMALL;
371 }
372 InfoName = (CHAR16 *)(InfoEntry + 1);
373 InfoNameMaxSize = (*InfoSize - sizeof (VARIABLE_INFO_ENTRY));
374
375 CopyGuid (&VendorGuid, &InfoEntry->VendorGuid);
376
377 if (IsZeroGuid (&VendorGuid)) {
378 //
379 // Return the first variable info
380 //
381 NameSize = StrSize (VariableInfo->Name);
382 StatisticsInfoSize = sizeof (VARIABLE_INFO_ENTRY) + NameSize;
383 if (*InfoSize < StatisticsInfoSize) {
384 *InfoSize = StatisticsInfoSize;
385 return EFI_BUFFER_TOO_SMALL;
386 }
387 CopyMem (InfoEntry, VariableInfo, sizeof (VARIABLE_INFO_ENTRY));
388 CopyMem (InfoName, VariableInfo->Name, NameSize);
389 *InfoSize = StatisticsInfoSize;
390 return EFI_SUCCESS;
391 }
392
393 //
394 // Get the next variable info
395 //
396 while (VariableInfo != NULL) {
397 if (CompareGuid (&VariableInfo->VendorGuid, &VendorGuid)) {
398 NameSize = StrSize (VariableInfo->Name);
399 if (NameSize <= InfoNameMaxSize) {
400 if (CompareMem (VariableInfo->Name, InfoName, NameSize) == 0) {
401 //
402 // Find the match one
403 //
404 VariableInfo = VariableInfo->Next;
405 break;
406 }
407 }
408 }
409 VariableInfo = VariableInfo->Next;
410 };
411
412 if (VariableInfo == NULL) {
413 *InfoSize = 0;
414 return EFI_SUCCESS;
415 }
416
417 //
418 // Output the new variable info
419 //
420 NameSize = StrSize (VariableInfo->Name);
421 StatisticsInfoSize = sizeof (VARIABLE_INFO_ENTRY) + NameSize;
422 if (*InfoSize < StatisticsInfoSize) {
423 *InfoSize = StatisticsInfoSize;
424 return EFI_BUFFER_TOO_SMALL;
425 }
426
427 CopyMem (InfoEntry, VariableInfo, sizeof (VARIABLE_INFO_ENTRY));
428 CopyMem (InfoName, VariableInfo->Name, NameSize);
429 *InfoSize = StatisticsInfoSize;
430
431 return EFI_SUCCESS;
432 }
433
434
435 /**
436 Communication service SMI Handler entry.
437
438 This SMI handler provides services for the variable wrapper driver.
439
440 Caution: This function may receive untrusted input.
441 This variable data and communicate buffer are external input, so this function will do basic validation.
442 Each sub function VariableServiceGetVariable(), VariableServiceGetNextVariableName(),
443 VariableServiceSetVariable(), VariableServiceQueryVariableInfo(), ReclaimForOS(),
444 SmmVariableGetStatistics() should also do validation based on its own knowledge.
445
446 @param[in] DispatchHandle The unique handle assigned to this handler by SmiHandlerRegister().
447 @param[in] RegisterContext Points to an optional handler context which was specified when the
448 handler was registered.
449 @param[in, out] CommBuffer A pointer to a collection of data in memory that will
450 be conveyed from a non-SMM environment into an SMM environment.
451 @param[in, out] CommBufferSize The size of the CommBuffer.
452
453 @retval EFI_SUCCESS The interrupt was handled and quiesced. No other handlers
454 should still be called.
455 @retval EFI_WARN_INTERRUPT_SOURCE_QUIESCED The interrupt has been quiesced but other handlers should
456 still be called.
457 @retval EFI_WARN_INTERRUPT_SOURCE_PENDING The interrupt is still pending and other handlers should still
458 be called.
459 @retval EFI_INTERRUPT_PENDING The interrupt could not be quiesced.
460 **/
461 EFI_STATUS
462 EFIAPI
463 SmmVariableHandler (
464 IN EFI_HANDLE DispatchHandle,
465 IN CONST VOID *RegisterContext,
466 IN OUT VOID *CommBuffer,
467 IN OUT UINTN *CommBufferSize
468 )
469 {
470 EFI_STATUS Status;
471 SMM_VARIABLE_COMMUNICATE_HEADER *SmmVariableFunctionHeader;
472 SMM_VARIABLE_COMMUNICATE_ACCESS_VARIABLE *SmmVariableHeader;
473 SMM_VARIABLE_COMMUNICATE_GET_NEXT_VARIABLE_NAME *GetNextVariableName;
474 SMM_VARIABLE_COMMUNICATE_QUERY_VARIABLE_INFO *QueryVariableInfo;
475 SMM_VARIABLE_COMMUNICATE_GET_PAYLOAD_SIZE *GetPayloadSize;
476 VARIABLE_INFO_ENTRY *VariableInfo;
477 SMM_VARIABLE_COMMUNICATE_LOCK_VARIABLE *VariableToLock;
478 SMM_VARIABLE_COMMUNICATE_VAR_CHECK_VARIABLE_PROPERTY *CommVariableProperty;
479 UINTN InfoSize;
480 UINTN NameBufferSize;
481 UINTN CommBufferPayloadSize;
482 UINTN TempCommBufferSize;
483
484 //
485 // If input is invalid, stop processing this SMI
486 //
487 if (CommBuffer == NULL || CommBufferSize == NULL) {
488 return EFI_SUCCESS;
489 }
490
491 TempCommBufferSize = *CommBufferSize;
492
493 if (TempCommBufferSize < SMM_VARIABLE_COMMUNICATE_HEADER_SIZE) {
494 DEBUG ((EFI_D_ERROR, "SmmVariableHandler: SMM communication buffer size invalid!\n"));
495 return EFI_SUCCESS;
496 }
497 CommBufferPayloadSize = TempCommBufferSize - SMM_VARIABLE_COMMUNICATE_HEADER_SIZE;
498 if (CommBufferPayloadSize > mVariableBufferPayloadSize) {
499 DEBUG ((EFI_D_ERROR, "SmmVariableHandler: SMM communication buffer payload size invalid!\n"));
500 return EFI_SUCCESS;
501 }
502
503 if (!SmmIsBufferOutsideSmmValid ((UINTN)CommBuffer, TempCommBufferSize)) {
504 DEBUG ((EFI_D_ERROR, "SmmVariableHandler: SMM communication buffer in SMRAM or overflow!\n"));
505 return EFI_SUCCESS;
506 }
507
508 SmmVariableFunctionHeader = (SMM_VARIABLE_COMMUNICATE_HEADER *)CommBuffer;
509 switch (SmmVariableFunctionHeader->Function) {
510 case SMM_VARIABLE_FUNCTION_GET_VARIABLE:
511 if (CommBufferPayloadSize < OFFSET_OF(SMM_VARIABLE_COMMUNICATE_ACCESS_VARIABLE, Name)) {
512 DEBUG ((EFI_D_ERROR, "GetVariable: SMM communication buffer size invalid!\n"));
513 return EFI_SUCCESS;
514 }
515 //
516 // Copy the input communicate buffer payload to pre-allocated SMM variable buffer payload.
517 //
518 CopyMem (mVariableBufferPayload, SmmVariableFunctionHeader->Data, CommBufferPayloadSize);
519 SmmVariableHeader = (SMM_VARIABLE_COMMUNICATE_ACCESS_VARIABLE *) mVariableBufferPayload;
520 if (((UINTN)(~0) - SmmVariableHeader->DataSize < OFFSET_OF(SMM_VARIABLE_COMMUNICATE_ACCESS_VARIABLE, Name)) ||
521 ((UINTN)(~0) - SmmVariableHeader->NameSize < OFFSET_OF(SMM_VARIABLE_COMMUNICATE_ACCESS_VARIABLE, Name) + SmmVariableHeader->DataSize)) {
522 //
523 // Prevent InfoSize overflow happen
524 //
525 Status = EFI_ACCESS_DENIED;
526 goto EXIT;
527 }
528 InfoSize = OFFSET_OF(SMM_VARIABLE_COMMUNICATE_ACCESS_VARIABLE, Name)
529 + SmmVariableHeader->DataSize + SmmVariableHeader->NameSize;
530
531 //
532 // SMRAM range check already covered before
533 //
534 if (InfoSize > CommBufferPayloadSize) {
535 DEBUG ((EFI_D_ERROR, "GetVariable: Data size exceed communication buffer size limit!\n"));
536 Status = EFI_ACCESS_DENIED;
537 goto EXIT;
538 }
539
540 //
541 // The MemoryLoadFence() call here is to ensure the previous range/content
542 // checks for the CommBuffer have been completed before the subsequent
543 // consumption of the CommBuffer content.
544 //
545 MemoryLoadFence ();
546 if (SmmVariableHeader->NameSize < sizeof (CHAR16) || SmmVariableHeader->Name[SmmVariableHeader->NameSize/sizeof (CHAR16) - 1] != L'\0') {
547 //
548 // Make sure VariableName is A Null-terminated string.
549 //
550 Status = EFI_ACCESS_DENIED;
551 goto EXIT;
552 }
553
554 Status = VariableServiceGetVariable (
555 SmmVariableHeader->Name,
556 &SmmVariableHeader->Guid,
557 &SmmVariableHeader->Attributes,
558 &SmmVariableHeader->DataSize,
559 (UINT8 *)SmmVariableHeader->Name + SmmVariableHeader->NameSize
560 );
561 CopyMem (SmmVariableFunctionHeader->Data, mVariableBufferPayload, CommBufferPayloadSize);
562 break;
563
564 case SMM_VARIABLE_FUNCTION_GET_NEXT_VARIABLE_NAME:
565 if (CommBufferPayloadSize < OFFSET_OF(SMM_VARIABLE_COMMUNICATE_GET_NEXT_VARIABLE_NAME, Name)) {
566 DEBUG ((EFI_D_ERROR, "GetNextVariableName: SMM communication buffer size invalid!\n"));
567 return EFI_SUCCESS;
568 }
569 //
570 // Copy the input communicate buffer payload to pre-allocated SMM variable buffer payload.
571 //
572 CopyMem (mVariableBufferPayload, SmmVariableFunctionHeader->Data, CommBufferPayloadSize);
573 GetNextVariableName = (SMM_VARIABLE_COMMUNICATE_GET_NEXT_VARIABLE_NAME *) mVariableBufferPayload;
574 if ((UINTN)(~0) - GetNextVariableName->NameSize < OFFSET_OF(SMM_VARIABLE_COMMUNICATE_GET_NEXT_VARIABLE_NAME, Name)) {
575 //
576 // Prevent InfoSize overflow happen
577 //
578 Status = EFI_ACCESS_DENIED;
579 goto EXIT;
580 }
581 InfoSize = OFFSET_OF(SMM_VARIABLE_COMMUNICATE_GET_NEXT_VARIABLE_NAME, Name) + GetNextVariableName->NameSize;
582
583 //
584 // SMRAM range check already covered before
585 //
586 if (InfoSize > CommBufferPayloadSize) {
587 DEBUG ((EFI_D_ERROR, "GetNextVariableName: Data size exceed communication buffer size limit!\n"));
588 Status = EFI_ACCESS_DENIED;
589 goto EXIT;
590 }
591
592 NameBufferSize = CommBufferPayloadSize - OFFSET_OF(SMM_VARIABLE_COMMUNICATE_GET_NEXT_VARIABLE_NAME, Name);
593 if (NameBufferSize < sizeof (CHAR16) || GetNextVariableName->Name[NameBufferSize/sizeof (CHAR16) - 1] != L'\0') {
594 //
595 // Make sure input VariableName is A Null-terminated string.
596 //
597 Status = EFI_ACCESS_DENIED;
598 goto EXIT;
599 }
600
601 Status = VariableServiceGetNextVariableName (
602 &GetNextVariableName->NameSize,
603 GetNextVariableName->Name,
604 &GetNextVariableName->Guid
605 );
606 CopyMem (SmmVariableFunctionHeader->Data, mVariableBufferPayload, CommBufferPayloadSize);
607 break;
608
609 case SMM_VARIABLE_FUNCTION_SET_VARIABLE:
610 if (CommBufferPayloadSize < OFFSET_OF(SMM_VARIABLE_COMMUNICATE_ACCESS_VARIABLE, Name)) {
611 DEBUG ((EFI_D_ERROR, "SetVariable: SMM communication buffer size invalid!\n"));
612 return EFI_SUCCESS;
613 }
614 //
615 // Copy the input communicate buffer payload to pre-allocated SMM variable buffer payload.
616 //
617 CopyMem (mVariableBufferPayload, SmmVariableFunctionHeader->Data, CommBufferPayloadSize);
618 SmmVariableHeader = (SMM_VARIABLE_COMMUNICATE_ACCESS_VARIABLE *) mVariableBufferPayload;
619 if (((UINTN)(~0) - SmmVariableHeader->DataSize < OFFSET_OF(SMM_VARIABLE_COMMUNICATE_ACCESS_VARIABLE, Name)) ||
620 ((UINTN)(~0) - SmmVariableHeader->NameSize < OFFSET_OF(SMM_VARIABLE_COMMUNICATE_ACCESS_VARIABLE, Name) + SmmVariableHeader->DataSize)) {
621 //
622 // Prevent InfoSize overflow happen
623 //
624 Status = EFI_ACCESS_DENIED;
625 goto EXIT;
626 }
627 InfoSize = OFFSET_OF(SMM_VARIABLE_COMMUNICATE_ACCESS_VARIABLE, Name)
628 + SmmVariableHeader->DataSize + SmmVariableHeader->NameSize;
629
630 //
631 // SMRAM range check already covered before
632 // Data buffer should not contain SMM range
633 //
634 if (InfoSize > CommBufferPayloadSize) {
635 DEBUG ((EFI_D_ERROR, "SetVariable: Data size exceed communication buffer size limit!\n"));
636 Status = EFI_ACCESS_DENIED;
637 goto EXIT;
638 }
639
640 //
641 // The MemoryLoadFence() call here is to ensure the previous range/content
642 // checks for the CommBuffer have been completed before the subsequent
643 // consumption of the CommBuffer content.
644 //
645 MemoryLoadFence ();
646 if (SmmVariableHeader->NameSize < sizeof (CHAR16) || SmmVariableHeader->Name[SmmVariableHeader->NameSize/sizeof (CHAR16) - 1] != L'\0') {
647 //
648 // Make sure VariableName is A Null-terminated string.
649 //
650 Status = EFI_ACCESS_DENIED;
651 goto EXIT;
652 }
653
654 Status = VariableServiceSetVariable (
655 SmmVariableHeader->Name,
656 &SmmVariableHeader->Guid,
657 SmmVariableHeader->Attributes,
658 SmmVariableHeader->DataSize,
659 (UINT8 *)SmmVariableHeader->Name + SmmVariableHeader->NameSize
660 );
661 break;
662
663 case SMM_VARIABLE_FUNCTION_QUERY_VARIABLE_INFO:
664 if (CommBufferPayloadSize < sizeof (SMM_VARIABLE_COMMUNICATE_QUERY_VARIABLE_INFO)) {
665 DEBUG ((EFI_D_ERROR, "QueryVariableInfo: SMM communication buffer size invalid!\n"));
666 return EFI_SUCCESS;
667 }
668 QueryVariableInfo = (SMM_VARIABLE_COMMUNICATE_QUERY_VARIABLE_INFO *) SmmVariableFunctionHeader->Data;
669
670 Status = VariableServiceQueryVariableInfo (
671 QueryVariableInfo->Attributes,
672 &QueryVariableInfo->MaximumVariableStorageSize,
673 &QueryVariableInfo->RemainingVariableStorageSize,
674 &QueryVariableInfo->MaximumVariableSize
675 );
676 break;
677
678 case SMM_VARIABLE_FUNCTION_GET_PAYLOAD_SIZE:
679 if (CommBufferPayloadSize < sizeof (SMM_VARIABLE_COMMUNICATE_GET_PAYLOAD_SIZE)) {
680 DEBUG ((EFI_D_ERROR, "GetPayloadSize: SMM communication buffer size invalid!\n"));
681 return EFI_SUCCESS;
682 }
683 GetPayloadSize = (SMM_VARIABLE_COMMUNICATE_GET_PAYLOAD_SIZE *) SmmVariableFunctionHeader->Data;
684 GetPayloadSize->VariablePayloadSize = mVariableBufferPayloadSize;
685 Status = EFI_SUCCESS;
686 break;
687
688 case SMM_VARIABLE_FUNCTION_READY_TO_BOOT:
689 if (AtRuntime()) {
690 Status = EFI_UNSUPPORTED;
691 break;
692 }
693 if (!mEndOfDxe) {
694 MorLockInitAtEndOfDxe ();
695 mEndOfDxe = TRUE;
696 VarCheckLibInitializeAtEndOfDxe (NULL);
697 //
698 // The initialization for variable quota.
699 //
700 InitializeVariableQuota ();
701 }
702 ReclaimForOS ();
703 Status = EFI_SUCCESS;
704 break;
705
706 case SMM_VARIABLE_FUNCTION_EXIT_BOOT_SERVICE:
707 mAtRuntime = TRUE;
708 Status = EFI_SUCCESS;
709 break;
710
711 case SMM_VARIABLE_FUNCTION_GET_STATISTICS:
712 VariableInfo = (VARIABLE_INFO_ENTRY *) SmmVariableFunctionHeader->Data;
713 InfoSize = TempCommBufferSize - SMM_VARIABLE_COMMUNICATE_HEADER_SIZE;
714
715 //
716 // Do not need to check SmmVariableFunctionHeader->Data in SMRAM here.
717 // It is covered by previous CommBuffer check
718 //
719
720 //
721 // Do not need to check CommBufferSize buffer as it should point to SMRAM
722 // that was used by SMM core to cache CommSize from SmmCommunication protocol.
723 //
724
725 Status = SmmVariableGetStatistics (VariableInfo, &InfoSize);
726 *CommBufferSize = InfoSize + SMM_VARIABLE_COMMUNICATE_HEADER_SIZE;
727 break;
728
729 case SMM_VARIABLE_FUNCTION_LOCK_VARIABLE:
730 if (mEndOfDxe) {
731 Status = EFI_ACCESS_DENIED;
732 } else {
733 VariableToLock = (SMM_VARIABLE_COMMUNICATE_LOCK_VARIABLE *) SmmVariableFunctionHeader->Data;
734 Status = VariableLockRequestToLock (
735 NULL,
736 VariableToLock->Name,
737 &VariableToLock->Guid
738 );
739 }
740 break;
741 case SMM_VARIABLE_FUNCTION_VAR_CHECK_VARIABLE_PROPERTY_SET:
742 if (mEndOfDxe) {
743 Status = EFI_ACCESS_DENIED;
744 } else {
745 CommVariableProperty = (SMM_VARIABLE_COMMUNICATE_VAR_CHECK_VARIABLE_PROPERTY *) SmmVariableFunctionHeader->Data;
746 Status = VarCheckVariablePropertySet (
747 CommVariableProperty->Name,
748 &CommVariableProperty->Guid,
749 &CommVariableProperty->VariableProperty
750 );
751 }
752 break;
753 case SMM_VARIABLE_FUNCTION_VAR_CHECK_VARIABLE_PROPERTY_GET:
754 if (CommBufferPayloadSize < OFFSET_OF (SMM_VARIABLE_COMMUNICATE_VAR_CHECK_VARIABLE_PROPERTY, Name)) {
755 DEBUG ((EFI_D_ERROR, "VarCheckVariablePropertyGet: SMM communication buffer size invalid!\n"));
756 return EFI_SUCCESS;
757 }
758 //
759 // Copy the input communicate buffer payload to pre-allocated SMM variable buffer payload.
760 //
761 CopyMem (mVariableBufferPayload, SmmVariableFunctionHeader->Data, CommBufferPayloadSize);
762 CommVariableProperty = (SMM_VARIABLE_COMMUNICATE_VAR_CHECK_VARIABLE_PROPERTY *) mVariableBufferPayload;
763 if ((UINTN) (~0) - CommVariableProperty->NameSize < OFFSET_OF (SMM_VARIABLE_COMMUNICATE_VAR_CHECK_VARIABLE_PROPERTY, Name)) {
764 //
765 // Prevent InfoSize overflow happen
766 //
767 Status = EFI_ACCESS_DENIED;
768 goto EXIT;
769 }
770 InfoSize = OFFSET_OF (SMM_VARIABLE_COMMUNICATE_VAR_CHECK_VARIABLE_PROPERTY, Name) + CommVariableProperty->NameSize;
771
772 //
773 // SMRAM range check already covered before
774 //
775 if (InfoSize > CommBufferPayloadSize) {
776 DEBUG ((EFI_D_ERROR, "VarCheckVariablePropertyGet: Data size exceed communication buffer size limit!\n"));
777 Status = EFI_ACCESS_DENIED;
778 goto EXIT;
779 }
780
781 //
782 // The MemoryLoadFence() call here is to ensure the previous range/content
783 // checks for the CommBuffer have been completed before the subsequent
784 // consumption of the CommBuffer content.
785 //
786 MemoryLoadFence ();
787 if (CommVariableProperty->NameSize < sizeof (CHAR16) || CommVariableProperty->Name[CommVariableProperty->NameSize/sizeof (CHAR16) - 1] != L'\0') {
788 //
789 // Make sure VariableName is A Null-terminated string.
790 //
791 Status = EFI_ACCESS_DENIED;
792 goto EXIT;
793 }
794
795 Status = VarCheckVariablePropertyGet (
796 CommVariableProperty->Name,
797 &CommVariableProperty->Guid,
798 &CommVariableProperty->VariableProperty
799 );
800 CopyMem (SmmVariableFunctionHeader->Data, mVariableBufferPayload, CommBufferPayloadSize);
801 break;
802
803 default:
804 Status = EFI_UNSUPPORTED;
805 }
806
807 EXIT:
808
809 SmmVariableFunctionHeader->ReturnStatus = Status;
810
811 return EFI_SUCCESS;
812 }
813
814 /**
815 SMM END_OF_DXE protocol notification event handler.
816
817 @param Protocol Points to the protocol's unique identifier
818 @param Interface Points to the interface instance
819 @param Handle The handle on which the interface was installed
820
821 @retval EFI_SUCCESS SmmEndOfDxeCallback runs successfully
822
823 **/
824 EFI_STATUS
825 EFIAPI
826 SmmEndOfDxeCallback (
827 IN CONST EFI_GUID *Protocol,
828 IN VOID *Interface,
829 IN EFI_HANDLE Handle
830 )
831 {
832 DEBUG ((EFI_D_INFO, "[Variable]SMM_END_OF_DXE is signaled\n"));
833 MorLockInitAtEndOfDxe ();
834 mEndOfDxe = TRUE;
835 VarCheckLibInitializeAtEndOfDxe (NULL);
836 //
837 // The initialization for variable quota.
838 //
839 InitializeVariableQuota ();
840 if (PcdGetBool (PcdReclaimVariableSpaceAtEndOfDxe)) {
841 ReclaimForOS ();
842 }
843
844 return EFI_SUCCESS;
845 }
846
847 /**
848 SMM Fault Tolerant Write protocol notification event handler.
849
850 Non-Volatile variable write may needs FTW protocol to reclaim when
851 writting variable.
852
853 @param Protocol Points to the protocol's unique identifier
854 @param Interface Points to the interface instance
855 @param Handle The handle on which the interface was installed
856
857 @retval EFI_SUCCESS SmmEventCallback runs successfully
858 @retval EFI_NOT_FOUND The Fvb protocol for variable is not found.
859
860 **/
861 EFI_STATUS
862 EFIAPI
863 SmmFtwNotificationEvent (
864 IN CONST EFI_GUID *Protocol,
865 IN VOID *Interface,
866 IN EFI_HANDLE Handle
867 )
868 {
869 EFI_STATUS Status;
870 EFI_SMM_FIRMWARE_VOLUME_BLOCK_PROTOCOL *FvbProtocol;
871 EFI_SMM_FAULT_TOLERANT_WRITE_PROTOCOL *FtwProtocol;
872 EFI_PHYSICAL_ADDRESS NvStorageVariableBase;
873 UINTN FtwMaxBlockSize;
874
875 if (mVariableModuleGlobal->FvbInstance != NULL) {
876 return EFI_SUCCESS;
877 }
878
879 //
880 // Ensure SMM FTW protocol is installed.
881 //
882 Status = GetFtwProtocol ((VOID **)&FtwProtocol);
883 if (EFI_ERROR (Status)) {
884 return Status;
885 }
886
887 Status = FtwProtocol->GetMaxBlockSize (FtwProtocol, &FtwMaxBlockSize);
888 if (!EFI_ERROR (Status)) {
889 ASSERT (PcdGet32 (PcdFlashNvStorageVariableSize) <= FtwMaxBlockSize);
890 }
891
892 //
893 // Find the proper FVB protocol for variable.
894 //
895 NvStorageVariableBase = (EFI_PHYSICAL_ADDRESS) PcdGet64 (PcdFlashNvStorageVariableBase64);
896 if (NvStorageVariableBase == 0) {
897 NvStorageVariableBase = (EFI_PHYSICAL_ADDRESS) PcdGet32 (PcdFlashNvStorageVariableBase);
898 }
899 Status = GetFvbInfoByAddress (NvStorageVariableBase, NULL, &FvbProtocol);
900 if (EFI_ERROR (Status)) {
901 return EFI_NOT_FOUND;
902 }
903
904 mVariableModuleGlobal->FvbInstance = FvbProtocol;
905
906 Status = VariableWriteServiceInitialize ();
907 if (EFI_ERROR (Status)) {
908 DEBUG ((DEBUG_ERROR, "Variable write service initialization failed. Status = %r\n", Status));
909 }
910
911 //
912 // Notify the variable wrapper driver the variable write service is ready
913 //
914 Status = gBS->InstallProtocolInterface (
915 &mSmmVariableHandle,
916 &gSmmVariableWriteGuid,
917 EFI_NATIVE_INTERFACE,
918 NULL
919 );
920 ASSERT_EFI_ERROR (Status);
921
922 return EFI_SUCCESS;
923 }
924
925
926 /**
927 Variable Driver main entry point. The Variable driver places the 4 EFI
928 runtime services in the EFI System Table and installs arch protocols
929 for variable read and write services being available. It also registers
930 a notification function for an EVT_SIGNAL_VIRTUAL_ADDRESS_CHANGE event.
931
932 @param[in] ImageHandle The firmware allocated handle for the EFI image.
933 @param[in] SystemTable A pointer to the EFI System Table.
934
935 @retval EFI_SUCCESS Variable service successfully initialized.
936
937 **/
938 EFI_STATUS
939 EFIAPI
940 VariableServiceInitialize (
941 IN EFI_HANDLE ImageHandle,
942 IN EFI_SYSTEM_TABLE *SystemTable
943 )
944 {
945 EFI_STATUS Status;
946 EFI_HANDLE VariableHandle;
947 VOID *SmmFtwRegistration;
948 VOID *SmmEndOfDxeRegistration;
949
950 //
951 // Variable initialize.
952 //
953 Status = VariableCommonInitialize ();
954 ASSERT_EFI_ERROR (Status);
955
956 //
957 // Install the Smm Variable Protocol on a new handle.
958 //
959 VariableHandle = NULL;
960 Status = gSmst->SmmInstallProtocolInterface (
961 &VariableHandle,
962 &gEfiSmmVariableProtocolGuid,
963 EFI_NATIVE_INTERFACE,
964 &gSmmVariable
965 );
966 ASSERT_EFI_ERROR (Status);
967
968 Status = gSmst->SmmInstallProtocolInterface (
969 &VariableHandle,
970 &gEdkiiSmmVarCheckProtocolGuid,
971 EFI_NATIVE_INTERFACE,
972 &mSmmVarCheck
973 );
974 ASSERT_EFI_ERROR (Status);
975
976 mVariableBufferPayloadSize = GetMaxVariableSize () +
977 OFFSET_OF (SMM_VARIABLE_COMMUNICATE_VAR_CHECK_VARIABLE_PROPERTY, Name) - GetVariableHeaderSize ();
978
979 Status = gSmst->SmmAllocatePool (
980 EfiRuntimeServicesData,
981 mVariableBufferPayloadSize,
982 (VOID **)&mVariableBufferPayload
983 );
984 ASSERT_EFI_ERROR (Status);
985
986 ///
987 /// Register SMM variable SMI handler
988 ///
989 VariableHandle = NULL;
990 Status = gSmst->SmiHandlerRegister (SmmVariableHandler, &gEfiSmmVariableProtocolGuid, &VariableHandle);
991 ASSERT_EFI_ERROR (Status);
992
993 //
994 // Notify the variable wrapper driver the variable service is ready
995 //
996 Status = SystemTable->BootServices->InstallProtocolInterface (
997 &mVariableHandle,
998 &gEfiSmmVariableProtocolGuid,
999 EFI_NATIVE_INTERFACE,
1000 &gSmmVariable
1001 );
1002 ASSERT_EFI_ERROR (Status);
1003
1004 //
1005 // Register EFI_SMM_END_OF_DXE_PROTOCOL_GUID notify function.
1006 //
1007 Status = gSmst->SmmRegisterProtocolNotify (
1008 &gEfiSmmEndOfDxeProtocolGuid,
1009 SmmEndOfDxeCallback,
1010 &SmmEndOfDxeRegistration
1011 );
1012 ASSERT_EFI_ERROR (Status);
1013
1014 //
1015 // Register FtwNotificationEvent () notify function.
1016 //
1017 Status = gSmst->SmmRegisterProtocolNotify (
1018 &gEfiSmmFaultTolerantWriteProtocolGuid,
1019 SmmFtwNotificationEvent,
1020 &SmmFtwRegistration
1021 );
1022 ASSERT_EFI_ERROR (Status);
1023
1024 SmmFtwNotificationEvent (NULL, NULL, NULL);
1025
1026 return EFI_SUCCESS;
1027 }
1028
1029