refactor(boot): uefi: add macros

This commit is contained in:
d0p1 🏳️‍⚧️ 2025-01-27 14:11:59 +01:00
parent f84f328828
commit a9863cbd52
4 changed files with 136 additions and 53 deletions

View file

@ -14,19 +14,22 @@
;; Function: efimain ;; Function: efimain
;; ;;
;; Parameters: ;; In:
;; [ESP+4] - handle
;; [ESP+8] - <EFI_SYSTEM_TABLE>
;; ;;
;; [esp+4] - handle ;; Out:
;; [esp+8] - <EFI_SYSTEM_TABLE> ;; EAX - efi status
;;
;; Returns:
;;
;; eax - efi status
;; ;;
efimain: efimain:
mov eax, [esp+4] push ebp
mov [hImage], eax mov ebp, esp
EFI_INIT [ebp + 8], [ebp + 12]
mov eax, [esp+8] mov eax, [esp+8]
mov [hImage], eax
mov eax, [esp+12]
mov [pSystemTable], eax mov [pSystemTable], eax
mov ebx, [eax + EFI_SYSTEM_TABLE.RuntimeServices] mov ebx, [eax + EFI_SYSTEM_TABLE.RuntimeServices]
@ -44,7 +47,7 @@ efimain:
call efi_memory_init call efi_memory_init
call efi_log_init call efi_log_init
mov esi, szHelloMsg mov eax, szHelloMsg
call efi_log call efi_log
call efi_fs_init call efi_fs_init

View file

@ -5,19 +5,13 @@
efi_fs_init: efi_fs_init:
; OpenProtocol(EFI_HANDLE Handle, EFI_GUID *proto, VOID **Interface, EFI_HANDLE AgentHandle, UINT32 Attrs) ; OpenProtocol(EFI_HANDLE Handle, EFI_GUID *proto, VOID **Interface, EFI_HANDLE AgentHandle, UINT32 Attrs)
push 0 EFI_CALL [fnOpenProtocol], [hImage], aFSProtoGUID, pLoadedImage, [hImage], 0, 2
push [hImage]
push pLoadedImage
push aFSProtoGUID
push [hImage]
call [fnOpenProtocol]
add esp, 20
or eax, eax or eax, eax
jnz .error jnz .error
ret ret
.error: .error:
mov esi, szErrTmp mov eax, szErrTmp
call efi_log call efi_log
ret ret

View file

@ -4,9 +4,7 @@
;; Function: efi_log_init ;; Function: efi_log_init
efi_log_init: efi_log_init:
mov eax, [pSystemTable] EFI_GET_INTERFACE eax, ConOut
add eax, EFI_SYSTEM_TABLE.ConOut
mov eax, [eax]
mov [pConOut], eax mov [pConOut], eax
mov ecx, [eax + EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL.Reset] mov ecx, [eax + EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL.Reset]
@ -16,23 +14,18 @@ efi_log_init:
mov [fnOutputStr], ecx mov [fnOutputStr], ecx
mov eax, [pRuntimeServices] mov eax, [pRuntimeServices]
mov ecx, [eax + EFI_RUNTIMES_SERVICES.GetTime] mov eax, [eax + EFI_RUNTIMES_SERVICES.GetTime]
mov [fnGetTime], ecx mov [fnGetTime], eax
push 1 EFI_CALL [fnOutputReset], [pConOut], 1
push [pConOut]
call [fnOutputReset]
add esp, 8
ret ret
;; Function: efi_log_time ;; Function: efi_log_time
efi_log_time: efi_log_time:
; GetTime(EFI_TIME *time, EFI_TIME_CAPS *cap) ; GetTime(EFI_TIME *time, EFI_TIME_CAPS *cap)
push 0
push stEfiTime EFI_CALL [fnGetTime], stEfiTime, 0
call [fnGetTime]
add esp, 8
; Hours ; Hours
mov al, [stEfiTime + EFI_TIME.Hour] mov al, [stEfiTime + EFI_TIME.Hour]
@ -79,31 +72,31 @@ efi_log_time:
movzx cx, ah movzx cx, ah
mov [szTime + 16], cx mov [szTime + 16], cx
push szTime EFI_CALL [fnOutputStr], [pConOut], szTime
push [pConOut]
call [fnOutputStr]
add esp, 8
ret ret
;; Function: efi_log ;; Function: efi_log
;; ;;
;; In: ;; In:
;; ESI - string to print ;; EAX - string to print
efi_log: efi_log:
call efi_log_time push ebp
mov ebp, esp
push esi push esi
push [pConOut] mov esi, eax
call [fnOutputStr]
add esp, 8 call efi_log_time
EFI_CALL [fnOutputStr], [pConOut], esi
; print CRLF ; print CRLF
push szEndLine EFI_CALL [fnOutputStr], [pConOut], szEndLine
push [pConOut]
call [fnOutputStr]
add esp, 8
pop esi
leave
ret ret
section '.data' data readable writable section '.data' data readable writable

View file

@ -1,5 +1,88 @@
;; File: uefi.inc ;; File: uefi.inc
macro EFI_CALL fn, [arg] {
common
_ARGS = 0
reverse
match anything, arg \{
_ARGS = _ARGS + 4
push dword arg
\}
common
call fn
if _ARGS
add esp, _ARGS
end if
}
macro EFI_GET_INTERFACE reg, interface {
if interface in <ConsoleInHandle,ConIn,ConsOutHandle,ConOut,StandardErrorHandle,StdErr>
mov reg, [pEfiSystemTable]
mov reg, [reg + EFI_SYSTEM_TABLE.#interface]
end if
}
macro EFI_INIT handle, table {
local efi_init_bad
local efi_init_end
clc
; image handle
mov eax, handle
or eax, eax
jz efi_init_bad
mov [hEfiImage], eax
mov eax, table
mov [pEfiSystemTable], eax
mov edx, [eax + EFI_SYSTEM_TABLE.BootServices]
mov [pEfiBootServices], edx
mov edx, [eax + EFI_SYSTEM_TABLE.RuntimeServices]
mov [pEfiRuntimeServices], edx
jmp efi_init_end
efi_init_bad:
stc
efi_init_end:
}
EFI_SUCCESS = 0x0
EFI_ERR = 0x80000000
EFI_LOAD_ERROR = (EFI_ERR or 1)
EFI_INVALID_PARAMETER = (EFI_ERR or 2)
EFI_UNSUPPORTED = (EFI_ERR or 3)
EFI_BAD_BUFFER_SIZE = (EFI_ERR or 4)
EFI_BUFFER_TOO_SMALL = (EFI_ERR or 5)
EFI_NOT_READY = (EFI_ERR or 6)
EFI_DEVICE_ERROR = (EFI_ERR or 7)
EFI_WRITE_PROTECTED = (EFI_ERR or 8)
EFI_OUT_OF_RESOURCEs = (EFI_ERR or 9)
EFI_VOLUME_CORRUPTED = (EFI_ERR or 10)
EFI_VOLUME_FULL = (EFI_ERR or 11)
EFI_NO_MEDIA = (EFI_ERR or 12)
EFI_MEDIA_CHANGED = (EFI_ERR or 13)
EFI_NOT_FOUND = (EFI_ERR or 14)
EFI_ACCESS_DEBIED = (EFI_ERR or 15)
EFI_NO_RESPONSE = (EFI_ERR or 16)
EFI_NO_MAPPING = (EFI_ERR or 17)
EFI_TIMEOUT = (EFI_ERR or 18)
EFI_NOT_STARTED = (EFI_ERR or 19)
EFI_ALREADY_STARTED = (EFI_ERR or 20)
EFI_ABORTED = (EFI_ERR or 21)
EFI_ICMP_ERROR = (EFI_ERR or 22)
EFI_TFTP_ERROR = (EFI_ERR or 23)
EFI_PROTOCOL_ERROR = (EFI_ERR or 24)
EFI_INCOMPATIBLE_VERSION = (EFI_ERR or 25)
EFI_SECURITY_VIOLATION = (EFI_ERR or 26)
EFI_CRC_ERROR = (EFI_ERR or 27)
EFI_END_OF_MEDIA = (EFI_ERR or 28)
EFI_END_OF_FILE = (EFI_ERR or 31)
EFI_INVALID_LANGUAGE = (EFI_ERR or 32)
EFI_COMPROMISED_DATA = (EFI_ERR or 33)
EFI_IP_ADDRESS_CONFLICT = (EFI_ERR or 34)
EFI_HTTP_ERROR = (EFI_ERR or 35)
struc BOOLEAN struc BOOLEAN
{ {
. db ? . db ?
@ -58,14 +141,6 @@ struc UINTPTR
. dd ? . dd ?
} }
struc EFI_GUID
{
.Data1 dd ?
.Data2 dw ?
.Data3 dw ?
.Data4 db 8 dup(?)
}
struc EFI_TIME struc EFI_TIME
{ {
.Year UINT16 .Year UINT16
@ -212,6 +287,17 @@ struc EFI_BOOT_SERVICES
} }
DEFN EFI_BOOT_SERVICES DEFN EFI_BOOT_SERVICES
EFI_LOCATE_SEARCH_ALL_HANDLES = 0x0
EFI_LOCATE_SEARCH_BY_REGISTER_NOTIFY = 0x1
EFI_LOCATE_SEARCH_BY_PROTOCOL = 0x2
EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL = 0x00000001
EFI_OPEN_PROTOCOL_GET_PROTOCOL = 0x00000002
EFI_OPEN_PROTOCOL_TEST_PROTOCOL = 0x00000004
EFI_OPEN_PROTOCOL_BY_CHILD_CONTROLLER = 0x00000008
EFI_OPEN_PROTOCOL_BY_DRIVER = 0x00000010
EFI_OPEN_PROTOCOL_EXCLUSIVE = 0x00000020
;; ======================================================================== ;; ========================================================================
;; EFI_RUNTIMES_SERVICES ;; EFI_RUNTIMES_SERVICES
;; ======================================================================== ;; ========================================================================
@ -364,7 +450,7 @@ EFI_LOAD_FILE2_PROTOCOL equ EFI_LOAD_FILE_PROTOCOL
;; ======================================================================== ;; ========================================================================
;; EFI_SIMPLE_FILE_SYSTEM_PROTOCOL ;; EFI_SIMPLE_FILE_SYSTEM_PROTOCOL
;; ======================================================================== ;; ========================================================================
EFI_SIMPLE_FILE_SYSTEM_PROTOCOL_GUID equ 0x022, 0x5b, 0x4e, 0x96, 0x59, 0x64, 0xd2, 0x11, 0x8e, 0x39, 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x3b EFI_SIMPLE_FILE_SYSTEM_PROTOCOL_GUID equ 0x22, 0x5b, 0x4e, 0x96, 0x59, 0x64, 0xd2, 0x11, 0x8e, 0x39, 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x3b
;EFI_SIMPLE_FILE_SYSTEM_PROTOCOL_GUID equ 0x0964e5b22, 0x6459, 0x11d2, 0x8e, 0x39, 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x3b ;EFI_SIMPLE_FILE_SYSTEM_PROTOCOL_GUID equ 0x0964e5b22, 0x6459, 0x11d2, 0x8e, 0x39, 0x00, 0xa0, 0xc9, 0x69, 0x72, 0x3b
EFI_SIMPLE_FILE_SYSTEM_PROTOCOL_REVISION = 0x00010000 EFI_SIMPLE_FILE_SYSTEM_PROTOCOL_REVISION = 0x00010000
@ -417,3 +503,10 @@ EFI_FILE_RESERVED = 0x0000000000000008
EFI_FILE_DIRECTORY = 0x0000000000000010 EFI_FILE_DIRECTORY = 0x0000000000000010
EFI_FILE_ARCHIVE = 0x0000000000000020 EFI_FILE_ARCHIVE = 0x0000000000000020
EFI_FILE_VALID_ATTR = 0x0000000000000037 EFI_FILE_VALID_ATTR = 0x0000000000000037
section '.data' data readable writeable
hEfiImage dd 0
pEfiSystemTable dd 0
pEfiBootServices dd 0
pEfiRuntimeServices dd 0