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
|
/*
* Copyright (c) 2021, Konstantin Aladyshev <aladyshev22@gmail.com>
*
* SPDX-License-Identifier: MIT
*/
#include <Library/UefiBootServicesTableLib.h>
#include <Library/UefiLib.h>
#include <Library/MemoryAllocationLib.h>
#include <Library/UefiRuntimeServicesTableLib.h>
INTN EFIAPI ShellAppMain(IN UINTN Argc, IN CHAR16 **Argv)
{
EFI_GUID VendorGuid;
UINTN VariableNameSize = sizeof (CHAR16);
CHAR16* VariableName = AllocateZeroPool(sizeof(CHAR16));
if (VariableName == NULL) {
Print(L"Error on AllocateZeroPool call\n");
return EFI_OUT_OF_RESOURCES;
}
while (TRUE)
{
UINTN VariableNameSizeOld = VariableNameSize;
EFI_STATUS Status = gRT->GetNextVariableName(&VariableNameSize, VariableName, &VendorGuid);
if (Status == EFI_SUCCESS) {
Print(L"%g: %s\n", VendorGuid, VariableName);
} else if (Status == EFI_BUFFER_TOO_SMALL) {
VariableName = ReallocatePool(VariableNameSizeOld, VariableNameSize, VariableName);
if (VariableName == NULL) {
Print(L"Error on ReallocatePool call\n");
return EFI_OUT_OF_RESOURCES;
}
Status = gRT->GetNextVariableName(&VariableNameSize, VariableName, &VendorGuid);
if (Status == EFI_SUCCESS) {
Print(L"%g: %s\n", VendorGuid, VariableName);
} else {
Print(L"Error on 'gRT->GetNextVariableName' call: %s\n", Status);
return Status;
}
} else if (Status == EFI_NOT_FOUND) {
FreePool(VariableName);
return EFI_SUCCESS;
} else {
Print(L"Error on 'gRT->GetNextVariableName' call: %s\n", Status);
return Status;
}
}
return EFI_SUCCESS;
}
|