blob: ec029534019161856c661714e92f650517512ff1 (
plain)
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
|
//
// This file adds some things that are needed by VisualUefi. It should not be included under [Sources] of EDK2 .inf files.
//
#ifdef VISUALUEFI
#include <Uefi.h>
#include <Protocol/DriverSupportedEfiVersion.h>
#include <Protocol/EfiGuard.h>
#include <Guid/Acpi.h>
#include <Library/DebugLib.h>
//
// The following fields are automatically generated by the EDK2 build system, but VisualUefi expects them in the source code.
//
CONST UINT8 _gDriverUnloadImageCount = 1;
CONST UINT32 _gUefiDriverRevision = 0x210;
CONST UINT32 _gDxeRevision = 0x210;
CHAR8 *gEfiCallerBaseName = "EfiGuardDxe";
//
// EfiGuard Bootkit Driver Protocol
//
EFI_GUID gEfiGuardDriverProtocolGuid = EFI_EFIGUARD_DRIVER_PROTOCOL_GUID;
//
// GUIDs
//
EFI_GUID gEfiDriverSupportedEfiVersionProtocolGuid = EFI_DRIVER_SUPPORTED_EFI_VERSION_PROTOCOL_GUID;
EFI_GUID gEfiAcpi20TableGuid = EFI_ACPI_20_TABLE_GUID;
//
// Placeholder definitions to make linking against BaseSynchronizationLib possible. See https://github.com/ionescu007/VisualUefi/issues/25
// This is not a problem for us because we don't use spinlocks, only interlocked operations.
//
UINTN
EFIAPI
InternalGetSpinLockProperties(
VOID
)
{
ASSERT(FALSE);
return (UINTN)-1;
}
UINT64
EFIAPI
GetPerformanceCounter(
VOID
)
{
ASSERT(FALSE);
return (UINT64)-1;
}
UINT64
EFIAPI
GetPerformanceCounterProperties(
OUT UINT64 *StartValue OPTIONAL,
OUT UINT64 *EndValue OPTIONAL
)
{
ASSERT(FALSE);
return (UINT64)-1;
}
//
// Entry/unload handlers that VisualUefi expects with predefined names
//
extern
EFI_STATUS
EFIAPI
EfiGuardInitialize(
IN EFI_HANDLE ImageHandle,
IN EFI_SYSTEM_TABLE *SystemTable
);
EFI_STATUS
EFIAPI
UefiMain(
IN EFI_HANDLE ImageHandle,
IN EFI_SYSTEM_TABLE *SystemTable
)
{
return EfiGuardInitialize(ImageHandle, SystemTable);
}
extern
EFI_STATUS
EFIAPI
EfiGuardUnload(
IN EFI_HANDLE ImageHandle
);
EFI_STATUS
EFIAPI
UefiUnload(
IN EFI_HANDLE ImageHandle
)
{
return EfiGuardUnload(ImageHandle);
}
#endif // VISUALUEFI
|