# SPDX-FileCopyrightText: 2022 Andrius Štikonas # SPDX-FileCopyrightText: 2019 Jeremiah Orians # # SPDX-License-Identifier: GPL-3.0-or-later # DOS MZ header 4D 5A # Signature 00 00 # Number of bytes in the last page. 00 00 # Number of whole/partial pages 00 00 # Number of entries in the relocation table. 00 00 # Header size 00 00 # Minimum allocation 00 00 # Maximum allocation 00 00 # Relocatable segment address for SS 00 00 # Initial value for SP 00 00 # Checksum (I don't think is looked at) 00 00 # Initial value for IP (Seems ignored) 00 00 # Relocatable segment address for CS (Seems ignored) 00 00 # The (absolute) offset to the relocation table. 00 00 # Value used for overlay management. If zero, this is the main executable 00 00 00 00 00 00 00 00 # Reserved in PE 00 00 # OEM identifier 00 00 # OEM info 00 00 00 00 00 00 00 00 00 00 # The required reserved 20 bytes of NULLS 00 00 00 00 00 00 00 00 00 00 40 00 00 00 # Starting address of the PE header # [0x40] # PE header 50 45 00 00 # Signature "PE" 64 86 # Machine 01 00 # number of sections 00 00 00 00 # Timestamp supposedly 00 00 00 00 # PointerToSymbolTable 00 00 00 00 # number of symbols F0 00 # SizeOfOptionalHeader 00 00 # 'Characteristics' # [0x58] # COFF header bits 0B 02 # Magic PE32+ (64 bit) 00 00 # Linker version 00 00 00 00 # size of code 00 00 00 00 # sizeOfInitializedData 00 00 00 00 # SizeOfUninitializedData 00 10 00 00 # AddressOfEntryPoint 00 10 00 00 # BaseOfCode 00 00 00 80 01 00 00 00 # ImageBase 01 00 00 00 # SectionAlignment 01 00 00 00 # FileAlignment 00 00 00 00 # OperatingSystemVersion 00 00 00 00 # ImageVersion 00 00 00 00 # SubsystemVersion 00 00 00 00 # Win32VersionValue 00 20 00 00 # SizeOfImage 70 01 00 00 # SizeOfHeaders 00 00 00 00 # CheckSum (isn't used at all) 0A 00 # Subsystem 00 00 # DllCharacteristics 00 00 00 00 # SizeOfStackReserve 00 00 00 00 # SizeOfStackCommit 00 00 00 00 # SizeOfHeapReserve 00 00 00 00 # SizeOfHeapCommit 00 00 00 00 # LoaderFlags 00 00 00 00 # NumberOfRvaAndSizes # [0xB8] # Data directories (has to be 16 entries always 16bytes per entry) 00 00 00 00 # Export Table 00 00 00 00 # Size of Export Table 00 00 00 00 # Import Table 10 00 00 00 # Size of Import Table 00 00 00 00 # Resource Table 00 00 00 00 # Size of Resource Table 00 00 00 00 # Exception Table 00 00 00 00 # Size of Exception Table 00 00 00 00 # Certificate Table 00 00 00 00 # Size of Certificate Table 00 00 00 00 # Base Relocation Table 00 00 00 00 # Size of Base Relocation Table 00 00 00 00 # Debug Table 00 00 00 00 # Size of Debug Table 00 00 00 00 # Architecture Data Table 00 00 00 00 # Size of Architecture Data Table 00 00 00 00 # Global Pointer 00 00 00 00 # NULL 00 00 00 00 # TLS Table 00 00 00 00 # Size of TLS Table 00 00 00 00 # Load Config Table 00 00 00 00 # Size of Load Config Table 00 00 00 00 # Bound Import Table 00 00 00 00 # Size of Bound Import Table 00 00 00 00 # Import Address Table 00 00 00 00 # Size of Import Address Table 00 00 00 00 # Delay Import Descriptor Table 00 00 00 00 # Size of Delay Import Descriptor Table 00 00 00 00 # CLR Runtime header table 00 00 00 00 # Size of CLR Runtime Header table 00 00 00 00 00 00 00 00 # MUST BE NULL # no idea what it is yet 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 # [0x148] # Start of section headers 00 00 00 00 00 00 00 00 ; Name of the section (empty) but could set to ".text" %PE32_end>PE32_text ; VirtualSize 00 10 00 00 ; VirtualAddress %PE32_end>PE32_text ; SizeOfRawData 70 01 00 00 ; PointerToRawData 00 00 00 00 ; PointerToRelocations 00 00 00 00 ; PointerToLinenumbers 00 00 ; NumberOfRelocations 00 00 ; NumberOfLinenumbers 00 00 00 00 ; 'Characteristics' # [0x170] :PE32_text # efi_main(void *image_handle, struct efi_system_table *system) :_start 4889E5 ; mov_rbp,rsp # save stack pointer 4989CF ; mov_r15,rcx # save image_handle 4C8B72 60 ; mov_r14,[rdx+BYTE] !96 # system->boot # Open Loaded Image protocol 50 ; push_rax # allocate stack for image 4989E0 ; mov_r8,rsp # arg3 = &image 488B15 %LOADED_IMAGE_PROTOCOL_8 ; mov_rdx,[rip+QWORD] %LOADED_IMAGE_PROTOCOL_8 # EFI_LOADED_IMAGE_PROTOCOL_GUID (last 64 bits) 52 ; push_rdx # push last 64 bits onto stack 488B15 %LOADED_IMAGE_PROTOCOL ; mov_rdx,[rip+QWORD] %LOADED_IMAGE_PROTOCOL # EFI_LOADED_IMAGE_PROTOCOL_GUID (first 64 bits) 52 ; push_rdx # push first 64 bits onto stack 4889E2 ; mov_rdx,rsp # arg2 = &guid 6A 01 ; push !1 # arg6 = EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL 6A 00 ; push !0 # arg5 = NULL 4D89F9 ; mov_r9,r15 # arg4 = image_handle 4C89F9 ; mov_rcx,r15 # arg1 = image_handle 4883EC 20 ; sub_rsp, !32 # allocate shadow stack space for UEFI function 41FF96 18010000 ; call_[r14+QWORD] %280 # system->boot->open_protocol(image_handle, &guid, &image, image_handle, 0, EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL) 488B4424 40 ; mov_rax,[rsp+BYTE] !64 # get_image 4889C7 ; mov_rax,rdi # save image # Get root file system 50 ; push_rax # allocate stack for rootfs 4989E0 ; mov_r8,rsp # arg3 = &rootfs 488B15 %SIMPLE_FS_PROTOCOL_8 ; mov_rdx,[rip+QWORD] %SIMPLE_FS_PROTOCOL_8 # EFI_SIMPLE_FILE_SYSTEM_PROTOCOL_GUID (last 64 bits) 52 ; push_rdx # push last 64 bits onto stack 488B15 %SIMPLE_FS_PROTOCOL ; mov_rdx,[rip+QWORD] %SIMPLE_FS_PROTOCOL # EFI_SIMPLE_FILE_SYSTEM_PROTOCOL_GUID (first 64 bits) 52 ; push_rdx # push first 64 bits onto stack 4889E2 ; mov_rdx,rsp # arg2 = &guid 6A 01 ; push !1 # arg6 = EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL 6A 00 ; push !0 # arg5 = NULL 4D89F9 ; mov_r9,r15 # arg4 = image_handle 488B4F 18 ; mov_rcx,[rdi+BYTE] !24 # arg1 = root_device = image->device 4883EC 20 ; sub_rsp, !32 # allocate shadow stack space for UEFI function 41FF96 18010000 ; call_[r14+QWORD] %280 # system->boot->open_protocol(root_device, &guid, &rootfs, image_handle, 0, EFI_OPEN_PROTOCOL_BY_HANDLE_PROTOCOL) 488B4C24 40 ; mov_rcx,[rsp+BYTE] !64 # get rootfs # Get root directory 52 ; push_rdx # allocate stack for rootdir 4889E2 ; mov_rdx,rsp # arg2 = &rootdir 50 ; push_rax # allocate shadow stack space for UEFI function 50 ; push_rax # allocate shadow stack space for UEFI function FF51 08 ; call_[rcx+BYTE] !8 # rootfs->open_volume(rootfs, &rootdir) 58 ; pop_rax # deallocate stack 58 ; pop_rax # deallocate stack 58 ; pop_rax # get rootdir 488905 %rootdir ; mov_[rip+QWORD],rax %rootdir # save rootdir # Push command line arguments onto stack 488B5F 38 ; mov_rbx,[rdi+BYTE] !56 # options = image->load_options 4889DA ; mov_rdx,rbx # save beginning of load_options 48035F 30 ; add_rbx,[rdi+BYTE] !48 # go to the end of load_options 6A 00 ; push !0 # Save end of arguments (NULL) onto stack :loop_options 4839D3 ; cmp_rbx,rdx # Check if we are done 74 !loop_options_done ; je !loop_options_done # We are done 4883EB 02 ; sub_rbx, !2 # --options 8A03 ; mov_al,[rbx] # *options 3C 20 ; cmp_al, !0x20 # if *options != ' ' 75 !loop_options ; jne !loop_options # then continue looping C603 00 ; mov_[rbx], !0 # zero it 4883C3 02 ; add_rbx, !2 # ++options 53 ; push_rbx # push another argument onto stack EB !loop_options ; jmp !loop_options # next argument :loop_options_done 4158 ; pop_r8 # get output file # Open file for writing 52 ; push_rdx # allocate stack for fout 4889E2 ; mov_rdx,rsp # arg2 = &fout 6A 00 ; push !0 # arg5 = 0 6A 07 ; push !7 # to get 0x8000000000000003 we set the rightmost 3 bits 4159 ; pop_r9 # and then do right rotation by 1 49D1C9 ; ror_r9 # arg4 = EFI_FILE_MODE_CREATE| EFI_FILE_MODE_WRITE | EFI_FILE_MODE_READ 488B0D %rootdir ; mov_rcx,[rip+QWORD] %rootdir # arg1 = rootdir 4883EC 20 ; sub_rsp, !32 # allocate shadow stack space for UEFI function FF51 08 ; call_[rcx+BYTE] !8 # rootdir->open() 4883C4 28 ; add_rsp, !40 # deallocate stack 415F ; pop_r15 # get fout 48C7C2 00001000 ; mov_rdx, %0x100000 # Allocate 1MB E8 %allocate_pool ; call %allocate_pool # Get memory pool 4889C3 ; mov_rbx,rax # Save it :core 4158 ; pop_r8 # Get the actual input name 4983F8 00 ; cmp_r8, !0 # Check for null string 74 !done ; je !done # We are done if null string E8 %open_file ; call %open_file # Open file as read only 85C0 ; test_eax,eax # check if successfully opened 75 !core ; jne !core # Else go to another file 4989F5 ; mov_r13,rsi # Protect fin :keep 48C7C2 00001000 ; mov_rdx, %0x100000 # set the size of chars we want E8 %read ; call %read # read them 50 ; push_rax # Protect the number of bytes read 4889C2 ; mov_rdx,rax # number of bytes to write E8 %write ; call %write # write them 58 ; pop_rax # Get bytes read 483D 00001000 ; cmp_rax, %0x100000 # Check if buffer was fully used 74 !keep ; je !keep # Keep looping if it was full 4C89E9 ; mov_rcx,r13 # fin E8 %close_file ; call %close_file # close file EB !core ; jmp !core # Move to next file :done 4C89F9 ; mov_rcx,r15 # Get output file E8 %close_file ; call %close_file # close it 488B0D %rootdir ; mov_rcx,[rip+QWORD] %rootdir # Get rootdir E8 %close_file ; call %rootdir # close it 4889D9 ; mov_rcx,rbx # Get buffer E8 %free_pool ; call %free_pool # release it 31C0 ; xor_eax,eax # Exit code 0 4889EC ; mov_rsp,rbp # restore stack C3 ; ret # return to UEFI # r8: input file name # returns input file handle in rsi, status in rax :open_file # Open file for reading 52 ; push_rdx # allocate stack for fin 4889E2 ; mov_rdx,rsp # arg2 = &fin 6A 01 ; push !1 # arg5 = EFI_FILE_READ_ONLY 6A 01 ; push !1 # prepare to set arg4 to EFI_FILE_MODE_READ 4159 ; pop_r9 # arg4 = EFI_FILE_MODE_READ 488B0D %rootdir ; mov_rcx,[rip+QWORD] %rootdir # arg1 = rootdir 4883EC 20 ; sub_rsp, !32 # allocate shadow stack space for UEFI function FF51 08 ; call_[rcx+BYTE] !8 # rootdir->open() 4883C4 28 ; add_rsp, !40 # deallocate stack 5E ; pop_rsi # get fin C3 ; ret # rcx: file handle :close_file 50 ; push_rax # allocate shadow stack space for UEFI function FF51 10 ; call_[rcx+BYTE] !16 # file_handle->close(file_handle) 58 ; pop_rax # deallocate stack C3 ; ret # rdx: number of bytes to allocate # r14: system->boot # returns pointer in rax :allocate_pool 52 ; push_rdx # allocate stack for pool pointer 4989E0 ; mov_r8,rsp # arg3 = &pool 6A 02 ; push !2 59 ; pop_rcx # arg1 = EFI_LOADER_DATA 4883EC 18 ; sub_rsp, !24 # allocate shadow stack space for UEFI 41FF56 40 ; call_[r14+BYTE] !64 # system->boot->allocate_pool(EFI_LOADER_DATA, 2048, &pool) 4883C4 18 ; add_rsp, !24 # deallocate stack 58 ; pop_rax # get pool C3 ; ret # rcx: memory pool # r14: system->boot :free_pool 50 ; push_rax # allocate shadow stack space for UEFI function 41FF56 48 ; call_[r14+BYTE] !72 # system->boot->free_pool(pool) 58 ; pop_rax # deallocate stack C3 ; ret # rdx: number of bytes to read # rbx: buffer # r13: input file handle # returns number of bytes read in rax :read 4C89E9 ; mov_rcx,r13 # arg1 = fin 52 ; push_rdx # set size 4889E2 ; mov_rdx,rsp # arg2 = &size 4989D8 ; mov_r8,rbx # arg3 = buffer 4883EC 18 ; sub_rsp, !24 # allocate shadow stack space for UEFI FF51 20 ; call_[rcx+BYTE] !32 # fin->read() 4883C4 18 ; add_rsp, !24 # deallocate stack 58 ; pop_rax # save size to rax C3 ; ret # rdx: number of bytes to write # rbx: buffer # r14: output file handle # returns number of bytes written in rax :write 4C89F9 ; mov_rcx,r15 # arg1 = fout 52 ; push_rdx # set size 4889E2 ; mov_rdx,rsp # arg2 = &size 4989D8 ; mov_r8,rbx # arg3 = buffer 4883EC 18 ; sub_rsp, !24 # allocate shadow stack space for UEFI FF51 28 ; call_[rcx+BYTE] !40 # fin->write() 4883C4 18 ; add_rsp, !24 # deallocate stack 58 ; pop_rax # save size to rax C3 ; ret # Protocol GUIDs :LOADED_IMAGE_PROTOCOL A1 31 1B 5B ; %0x5b1b31a1 62 95 ; @0x9562 D2 11 ; @0x11d2 :LOADED_IMAGE_PROTOCOL_8 8E 3F 00 A0 C9 69 72 3B ; !0x8e !0x3f !0 !0xa0 !0xc9 !0x69 !0x72 !0x3b :SIMPLE_FS_PROTOCOL 22 5B 4E 96 ; %0x0964e5b22 59 64 ; @0x6459 D2 11 ; @0x11d2 :SIMPLE_FS_PROTOCOL_8 8E 39 00 A0 C9 69 72 3B ; !0x8e !0x39 !0 !0xa0 !0xc9 !0x69 !0x72 !0x3b :rootdir 00000000 00000000 :PE32_end