mirror of https://github.com/acidanthera/audk.git
Ring3: Refactored out AllocateCoreCopy() BootService.
This commit is contained in:
parent
32e8bcbb62
commit
40b3cd4420
|
@ -90,8 +90,7 @@ EFI_BOOT_SERVICES mBootServices = {
|
|||
(EFI_COPY_MEM)CopyMem, // CopyMem
|
||||
(EFI_SET_MEM)SetMem, // SetMem
|
||||
(EFI_CREATE_EVENT_EX)CoreCreateEventEx, // CreateEventEx
|
||||
(EFI_ALLOCATE_RING3_PAGES)AllocateRing3Pages,
|
||||
(EFI_ALLOCATE_CORE_COPY)AllocateCopyPool
|
||||
(EFI_ALLOCATE_RING3_PAGES)AllocateRing3Pages
|
||||
};
|
||||
|
||||
EFI_DXE_SERVICES mDxeServices = {
|
||||
|
|
|
@ -5,11 +5,11 @@
|
|||
|
||||
**/
|
||||
|
||||
#include <Base.h>
|
||||
#include <Library/BaseLib.h>
|
||||
#include <Library/BaseMemoryLib.h>
|
||||
#include <Uefi.h>
|
||||
|
||||
#include <Library/DebugLib.h>
|
||||
#include <Library/PcdLib.h>
|
||||
#include <Library/MemoryAllocationLib.h>
|
||||
#include <Library/UefiBootServicesTableLib.h>
|
||||
|
||||
VOID
|
||||
EFIAPI
|
||||
|
@ -34,15 +34,6 @@ InternalEnterUserImage (
|
|||
IN UINT16 DataSelector
|
||||
);
|
||||
|
||||
typedef enum {
|
||||
SysCallReadMemory = 0,
|
||||
SysCallAllocateRing3Pages = 1,
|
||||
SysCallAllocateCoreCopy = 2,
|
||||
SysCallLocateProtocol = 3,
|
||||
SysCallOpenProtocol = 4,
|
||||
SysCallMax
|
||||
} SYS_CALL_TYPE;
|
||||
|
||||
UINTN
|
||||
EFIAPI
|
||||
CallBootService (
|
||||
|
@ -57,10 +48,9 @@ CallBootService (
|
|||
VOID * Arg4;
|
||||
VOID * Arg5;
|
||||
UINT32 Arg6;
|
||||
EFI_ALLOCATE_RING3_PAGES Func1;
|
||||
EFI_ALLOCATE_CORE_COPY Func2;
|
||||
EFI_LOCATE_PROTOCOL Func3;
|
||||
EFI_OPEN_PROTOCOL Func4;
|
||||
|
||||
EFI_GUID *CoreProtocol;
|
||||
|
||||
// Stack:
|
||||
// rcx - Rip for SYSCALL
|
||||
// r8 - Argument 1
|
||||
|
@ -69,37 +59,29 @@ CallBootService (
|
|||
// r11 - User data segment selector <- CoreRbp
|
||||
// rsp - User Rsp
|
||||
switch (Type) {
|
||||
case SysCallReadMemory:
|
||||
return *(UINTN *)FunctionAddress;
|
||||
|
||||
case SysCallAllocateRing3Pages:
|
||||
Func1 = (EFI_ALLOCATE_RING3_PAGES)*FunctionAddress;
|
||||
Status = Func1 (
|
||||
*((UINTN *)CoreRbp + 3),
|
||||
&Pointer
|
||||
);
|
||||
Status = gBS->AllocateRing3Pages (*((UINTN *)CoreRbp + 3), &Pointer);
|
||||
DisableSMAP ();
|
||||
*(UINTN *)(*((UINTN *)CoreRbp + 1)) = (UINTN)Pointer;
|
||||
EnableSMAP ();
|
||||
return (UINTN)Status;
|
||||
|
||||
case SysCallAllocateCoreCopy:
|
||||
DisableSMAP ();
|
||||
Func2 = (EFI_ALLOCATE_CORE_COPY)*FunctionAddress;
|
||||
Status = (UINTN)Func2 (
|
||||
*((UINTN *)CoreRbp + 3),
|
||||
(VOID *)*((UINTN *)CoreRbp + 1)
|
||||
);
|
||||
EnableSMAP ();
|
||||
return (UINTN)Status;
|
||||
|
||||
case SysCallLocateProtocol:
|
||||
Func3 = (EFI_LOCATE_PROTOCOL)*FunctionAddress;
|
||||
Status = Func3 (
|
||||
(VOID *)*((UINTN *)CoreRbp + 3),
|
||||
DisableSMAP ();
|
||||
CoreProtocol = AllocateCopyPool (sizeof (EFI_GUID), (VOID *)*((UINTN *)CoreRbp + 3));
|
||||
EnableSMAP ();
|
||||
if (CoreProtocol == NULL) {
|
||||
DEBUG ((DEBUG_ERROR, "Ring0: Failed to allocate core copy of the Protocol variable.\n"));
|
||||
return EFI_OUT_OF_RESOURCES;
|
||||
}
|
||||
|
||||
Status = gBS->LocateProtocol (
|
||||
CoreProtocol,
|
||||
(VOID *)*((UINTN *)CoreRbp + 1),
|
||||
&Pointer
|
||||
);
|
||||
|
||||
FreePool (CoreProtocol);
|
||||
DisableSMAP ();
|
||||
*((UINTN *)UserRsp + 5) = (UINTN)Pointer;
|
||||
EnableSMAP ();
|
||||
|
@ -107,19 +89,26 @@ CallBootService (
|
|||
|
||||
case SysCallOpenProtocol:
|
||||
DisableSMAP ();
|
||||
CoreProtocol = AllocateCopyPool (sizeof (EFI_GUID), (VOID *)*((UINTN *)CoreRbp + 1));
|
||||
Arg4 = (VOID *)*((UINTN *)UserRsp + 6);
|
||||
Arg5 = (VOID *)*((UINTN *)UserRsp + 7);
|
||||
Arg6 = (UINT32)*((UINTN *)UserRsp + 8);
|
||||
EnableSMAP ();
|
||||
Func4 = (EFI_OPEN_PROTOCOL)*FunctionAddress;
|
||||
Status = Func4 (
|
||||
if (CoreProtocol == NULL) {
|
||||
DEBUG ((DEBUG_ERROR, "Ring0: Failed to allocate core copy of the Protocol variable.\n"));
|
||||
return EFI_OUT_OF_RESOURCES;
|
||||
}
|
||||
|
||||
Status = gBS->OpenProtocol (
|
||||
(VOID *)*((UINTN *)CoreRbp + 3),
|
||||
(VOID *)*((UINTN *)CoreRbp + 1),
|
||||
CoreProtocol,
|
||||
&Pointer,
|
||||
Arg4,
|
||||
Arg5,
|
||||
Arg6
|
||||
);
|
||||
|
||||
FreePool (CoreProtocol);
|
||||
DisableSMAP ();
|
||||
*((UINTN *)UserRsp + 5) = (UINTN)Pointer;
|
||||
EnableSMAP ();
|
||||
|
|
|
@ -220,13 +220,6 @@ EFI_STATUS
|
|||
IN OUT VOID **Memory
|
||||
);
|
||||
|
||||
typedef
|
||||
VOID *
|
||||
(EFIAPI *EFI_ALLOCATE_CORE_COPY)(
|
||||
IN UINTN AllocationSize,
|
||||
IN CONST VOID *Buffer
|
||||
);
|
||||
|
||||
/**
|
||||
Frees memory pages.
|
||||
|
||||
|
@ -2026,9 +2019,15 @@ typedef struct {
|
|||
EFI_SET_MEM SetMem;
|
||||
EFI_CREATE_EVENT_EX CreateEventEx;
|
||||
EFI_ALLOCATE_RING3_PAGES AllocateRing3Pages;
|
||||
EFI_ALLOCATE_CORE_COPY AllocateCoreCopy;
|
||||
} EFI_BOOT_SERVICES;
|
||||
|
||||
typedef enum {
|
||||
SysCallLocateProtocol = 1,
|
||||
SysCallOpenProtocol = 2,
|
||||
SysCallAllocateRing3Pages = 3,
|
||||
SysCallMax
|
||||
} SYS_CALL_TYPE;
|
||||
|
||||
///
|
||||
/// Contains a set of GUID/pointer pairs comprised of the ConfigurationTable field in the
|
||||
/// EFI System Table.
|
||||
|
|
|
@ -5,15 +5,6 @@
|
|||
|
||||
**/
|
||||
|
||||
typedef enum {
|
||||
SysCallReadMemory = 0,
|
||||
SysCallAllocateRing3Pages = 1,
|
||||
SysCallAllocateCoreCopy = 2,
|
||||
SysCallLocateProtocol = 3,
|
||||
SysCallOpenProtocol = 4,
|
||||
SysCallMax
|
||||
} SYS_CALL_TYPE;
|
||||
|
||||
UINTN
|
||||
EFIAPI
|
||||
SysCall (
|
||||
|
|
|
@ -71,7 +71,6 @@ EFI_BOOT_SERVICES mBootServices = {
|
|||
};
|
||||
|
||||
EFI_BOOT_SERVICES *gBS = &mBootServices;
|
||||
EFI_BOOT_SERVICES *mCoreBS = NULL;
|
||||
|
||||
EFI_DEVICE_PATH_UTILITIES_PROTOCOL *mCoreDevicePathUtilitiesProtocol = NULL;
|
||||
EFI_LOADED_IMAGE_PROTOCOL *mCoreLoadedImageProtocol = NULL;
|
||||
|
@ -92,16 +91,6 @@ UefiBootServicesTableLibConstructor (
|
|||
IN EFI_SYSTEM_TABLE *SystemTable
|
||||
)
|
||||
{
|
||||
//
|
||||
// Cache pointer to the EFI Boot Services Table
|
||||
//
|
||||
mCoreBS = (EFI_BOOT_SERVICES *)SysCall (
|
||||
SysCallReadMemory,
|
||||
(UINTN)SystemTable + OFFSET_OF (EFI_SYSTEM_TABLE, BootServices)
|
||||
);
|
||||
ASSERT (mCoreBS != NULL);
|
||||
DEBUG ((DEBUG_ERROR, "User: BootServices = 0x%lx\n", (UINTN)mCoreBS));
|
||||
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
|
@ -452,26 +441,14 @@ Ring3OpenProtocol (
|
|||
)
|
||||
{
|
||||
EFI_STATUS Status;
|
||||
EFI_GUID *CoreProtocol;
|
||||
|
||||
EFI_LOADED_IMAGE_PROTOCOL *UserProtocol;
|
||||
|
||||
CoreProtocol = (VOID *)SysCall (
|
||||
SysCallAllocateCoreCopy,
|
||||
(UINTN)mCoreBS + OFFSET_OF (EFI_BOOT_SERVICES, AllocateCoreCopy),
|
||||
sizeof (EFI_GUID),
|
||||
Protocol
|
||||
);
|
||||
if (CoreProtocol == NULL) {
|
||||
DEBUG ((DEBUG_ERROR, "Ring3: Failed to allocate core copy of the Protocol variable.\n"));
|
||||
return EFI_OUT_OF_RESOURCES;
|
||||
}
|
||||
|
||||
Status = (EFI_STATUS)SysCall (
|
||||
SysCallOpenProtocol,
|
||||
(UINTN)mCoreBS + OFFSET_OF (EFI_BOOT_SERVICES, OpenProtocol),
|
||||
0,
|
||||
CoreUserHandle,
|
||||
CoreProtocol,
|
||||
Protocol,
|
||||
Interface,
|
||||
CoreImageHandle,
|
||||
CoreControllerHandle,
|
||||
|
@ -482,14 +459,12 @@ Ring3OpenProtocol (
|
|||
return Status;
|
||||
}
|
||||
|
||||
// TODO: FreePool (CoreProtocol);
|
||||
|
||||
if (CompareGuid (Protocol, &gEfiLoadedImageProtocolGuid)) {
|
||||
mCoreLoadedImageProtocol = (EFI_LOADED_IMAGE_PROTOCOL *)*Interface;
|
||||
|
||||
Status = (EFI_STATUS)SysCall (
|
||||
SysCallAllocateRing3Pages,
|
||||
(UINTN)mCoreBS + OFFSET_OF (EFI_BOOT_SERVICES, AllocateRing3Pages),
|
||||
0,
|
||||
EFI_SIZE_TO_PAGES (sizeof (EFI_LOADED_IMAGE_PROTOCOL)),
|
||||
(VOID **)&UserProtocol
|
||||
);
|
||||
|
@ -579,25 +554,13 @@ Ring3LocateProtocol (
|
|||
)
|
||||
{
|
||||
EFI_STATUS Status;
|
||||
EFI_GUID *CoreProtocol;
|
||||
|
||||
EFI_DEVICE_PATH_UTILITIES_PROTOCOL *UserProtocol;
|
||||
|
||||
CoreProtocol = (VOID *)SysCall (
|
||||
SysCallAllocateCoreCopy,
|
||||
(UINTN)mCoreBS + OFFSET_OF (EFI_BOOT_SERVICES, AllocateCoreCopy),
|
||||
sizeof (EFI_GUID),
|
||||
Protocol
|
||||
);
|
||||
if (CoreProtocol == NULL) {
|
||||
DEBUG ((DEBUG_ERROR, "Ring3: Failed to allocate core copy of the Protocol variable.\n"));
|
||||
return EFI_OUT_OF_RESOURCES;
|
||||
}
|
||||
|
||||
Status = (EFI_STATUS)SysCall (
|
||||
SysCallLocateProtocol,
|
||||
(UINTN)mCoreBS + OFFSET_OF (EFI_BOOT_SERVICES, LocateProtocol),
|
||||
CoreProtocol,
|
||||
0,
|
||||
Protocol,
|
||||
CoreRegistration,
|
||||
Interface
|
||||
);
|
||||
|
@ -606,14 +569,12 @@ Ring3LocateProtocol (
|
|||
return Status;
|
||||
}
|
||||
|
||||
// TODO: FreePool (CoreProtocol);
|
||||
|
||||
if (CompareGuid (Protocol, &gEfiDevicePathUtilitiesProtocolGuid)) {
|
||||
mCoreDevicePathUtilitiesProtocol = (EFI_DEVICE_PATH_UTILITIES_PROTOCOL *)*Interface;
|
||||
|
||||
Status = (EFI_STATUS)SysCall (
|
||||
SysCallAllocateRing3Pages,
|
||||
(UINTN)mCoreBS + OFFSET_OF (EFI_BOOT_SERVICES, AllocateRing3Pages),
|
||||
0,
|
||||
EFI_SIZE_TO_PAGES (sizeof (EFI_DEVICE_PATH_UTILITIES_PROTOCOL)),
|
||||
(VOID **)&UserProtocol
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue