2014-08-19 20:07:00 +04:00
|
|
|
/*
|
|
|
|
* crt0-efi-arm.S - PE/COFF header for ARM EFI applications
|
|
|
|
*
|
2024-05-07 15:03:48 +03:00
|
|
|
* Copyright (C) 2014 Linaro Ltd. <ard.biesheuvel@linaro.org>
|
2014-08-19 20:07:00 +04:00
|
|
|
*
|
2015-12-23 16:19:46 +03:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice and this list of conditions, without modification.
|
|
|
|
* 2. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* Alternatively, this software may be distributed under the terms of the
|
|
|
|
* GNU General Public License as published by the Free Software Foundation;
|
|
|
|
* either version 2 of the License, or (at your option) any later version.
|
2014-08-19 20:07:00 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
.section .text.head
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Magic "MZ" signature for PE/COFF
|
|
|
|
*/
|
|
|
|
.globl ImageBase
|
|
|
|
ImageBase:
|
|
|
|
.ascii "MZ"
|
|
|
|
.skip 58 // 'MZ' + pad + offset == 64
|
2023-05-20 15:37:04 +03:00
|
|
|
.4byte pe_header - ImageBase // Offset to the PE header.
|
2014-08-19 20:07:00 +04:00
|
|
|
pe_header:
|
|
|
|
.ascii "PE"
|
2023-05-20 15:37:04 +03:00
|
|
|
.2byte 0
|
2014-08-19 20:07:00 +04:00
|
|
|
coff_header:
|
2023-05-20 15:37:04 +03:00
|
|
|
.2byte 0x1c2 // Mixed ARM/Thumb
|
2023-06-15 14:56:12 +03:00
|
|
|
.2byte 4 // nr_sections
|
2023-05-20 15:37:04 +03:00
|
|
|
.4byte 0 // TimeDateStamp
|
|
|
|
.4byte 0 // PointerToSymbolTable
|
|
|
|
.4byte 0 // NumberOfSymbols
|
|
|
|
.2byte section_table - optional_header // SizeOfOptionalHeader
|
|
|
|
.2byte 0x306 // Characteristics.
|
2014-08-19 20:07:00 +04:00
|
|
|
// IMAGE_FILE_32BIT_MACHINE |
|
|
|
|
// IMAGE_FILE_DEBUG_STRIPPED |
|
|
|
|
// IMAGE_FILE_EXECUTABLE_IMAGE |
|
|
|
|
// IMAGE_FILE_LINE_NUMS_STRIPPED
|
|
|
|
optional_header:
|
2023-05-20 15:37:04 +03:00
|
|
|
.2byte 0x10b // PE32+ format
|
2014-08-19 20:07:00 +04:00
|
|
|
.byte 0x02 // MajorLinkerVersion
|
|
|
|
.byte 0x14 // MinorLinkerVersion
|
2023-06-15 14:56:12 +03:00
|
|
|
.4byte _etext - _start // SizeOfCode
|
|
|
|
.4byte _alldata_size - ImageBase // SizeOfInitializedData
|
2023-05-20 15:37:04 +03:00
|
|
|
.4byte 0 // SizeOfUninitializedData
|
|
|
|
.4byte _start - ImageBase // AddressOfEntryPoint
|
|
|
|
.4byte _start - ImageBase // BaseOfCode
|
2023-06-15 14:56:12 +03:00
|
|
|
.4byte _reloc - ImageBase // BaseOfData
|
2014-08-19 20:07:00 +04:00
|
|
|
|
|
|
|
extra_header_fields:
|
2023-05-20 15:37:04 +03:00
|
|
|
.4byte 0 // ImageBase
|
2023-06-15 14:56:12 +03:00
|
|
|
.4byte 0x1000 // SectionAlignment
|
|
|
|
.4byte 0x1000 // FileAlignment
|
2023-05-20 15:37:04 +03:00
|
|
|
.2byte 0 // MajorOperatingSystemVersion
|
|
|
|
.2byte 0 // MinorOperatingSystemVersion
|
|
|
|
.2byte 0 // MajorImageVersion
|
|
|
|
.2byte 0 // MinorImageVersion
|
|
|
|
.2byte 0 // MajorSubsystemVersion
|
|
|
|
.2byte 0 // MinorSubsystemVersion
|
|
|
|
.4byte 0 // Win32VersionValue
|
|
|
|
|
2023-06-15 14:56:12 +03:00
|
|
|
.4byte _image_end - ImageBase // SizeOfImage
|
2014-08-19 20:07:00 +04:00
|
|
|
|
|
|
|
// Everything before the kernel image is considered part of the header
|
2023-05-20 15:37:04 +03:00
|
|
|
.4byte _start - ImageBase // SizeOfHeaders
|
|
|
|
.4byte 0 // CheckSum
|
|
|
|
.2byte EFI_SUBSYSTEM // Subsystem
|
|
|
|
.2byte 0 // DllCharacteristics
|
|
|
|
.4byte 0 // SizeOfStackReserve
|
|
|
|
.4byte 0 // SizeOfStackCommit
|
|
|
|
.4byte 0 // SizeOfHeapReserve
|
|
|
|
.4byte 0 // SizeOfHeapCommit
|
|
|
|
.4byte 0 // LoaderFlags
|
2023-05-31 21:16:53 +03:00
|
|
|
.4byte 0x10 // NumberOfRvaAndSizes
|
2023-05-20 15:37:04 +03:00
|
|
|
|
|
|
|
.8byte 0 // ExportTable
|
|
|
|
.8byte 0 // ImportTable
|
|
|
|
.8byte 0 // ResourceTable
|
|
|
|
.8byte 0 // ExceptionTable
|
|
|
|
.8byte 0 // CertificationTable
|
2023-06-15 14:56:12 +03:00
|
|
|
.4byte _reloc - ImageBase // BaseRelocationTable (VirtualAddress)
|
|
|
|
.4byte _reloc_vsize - ImageBase // BaseRelocationTable (Size)
|
2023-05-31 21:16:53 +03:00
|
|
|
.8byte 0 // Debug
|
|
|
|
.8byte 0 // Architecture
|
|
|
|
.8byte 0 // Global Ptr
|
|
|
|
.8byte 0 // TLS Table
|
|
|
|
.8byte 0 // Load Config Table
|
|
|
|
.8byte 0 // Bound Import
|
|
|
|
.8byte 0 // IAT
|
|
|
|
.8byte 0 // Delay Import Descriptor
|
|
|
|
.8byte 0 // CLR Runtime Header
|
|
|
|
.8byte 0 // Reserved, must be zero
|
2014-08-19 20:07:00 +04:00
|
|
|
|
|
|
|
// Section table
|
|
|
|
section_table:
|
|
|
|
|
2023-06-15 14:56:12 +03:00
|
|
|
.ascii ".text\0\0\0"
|
|
|
|
.4byte _evtext - _start // VirtualSize
|
|
|
|
.4byte _start - ImageBase // VirtualAddress
|
|
|
|
.4byte _etext - _start // SizeOfRawData
|
|
|
|
.4byte _start - ImageBase // PointerToRawData
|
|
|
|
.4byte 0 // PointerToRelocations (0 for executables)
|
|
|
|
.4byte 0 // PointerToLineNumbers (0 for executables)
|
|
|
|
.2byte 0 // NumberOfRelocations (0 for executables)
|
|
|
|
.2byte 0 // NumberOfLineNumbers (0 for executables)
|
|
|
|
.4byte 0x60000020 // Characteristics (section flags)
|
|
|
|
|
2014-08-19 20:07:00 +04:00
|
|
|
/*
|
|
|
|
* The EFI application loader requires a relocation section
|
|
|
|
* because EFI applications must be relocatable. This is a
|
|
|
|
* dummy section as far as we are concerned.
|
|
|
|
*/
|
2023-06-15 14:56:12 +03:00
|
|
|
.ascii ".reloc\0\0"
|
|
|
|
.4byte _reloc_vsize - ImageBase // VirtualSize
|
|
|
|
.4byte _reloc - ImageBase // VirtualAddress
|
|
|
|
.4byte _reloc_size - ImageBase // SizeOfRawData
|
|
|
|
.4byte _reloc - ImageBase // PointerToRawData
|
2023-05-20 15:37:04 +03:00
|
|
|
.4byte 0 // PointerToRelocations
|
|
|
|
.4byte 0 // PointerToLineNumbers
|
|
|
|
.2byte 0 // NumberOfRelocations
|
|
|
|
.2byte 0 // NumberOfLineNumbers
|
2023-06-15 14:56:12 +03:00
|
|
|
.4byte 0x42000040 // Characteristics (section flags)
|
2014-08-19 20:07:00 +04:00
|
|
|
|
2023-06-15 14:56:12 +03:00
|
|
|
.ascii ".data\0\0\0"
|
|
|
|
.4byte _data_vsize - ImageBase // VirtualSize
|
|
|
|
.4byte _data - ImageBase // VirtualAddress
|
|
|
|
.4byte _data_size - ImageBase // SizeOfRawData
|
|
|
|
.4byte _data - ImageBase // PointerToRawData
|
|
|
|
.4byte 0 // PointerToRelocations
|
|
|
|
.4byte 0 // PointerToLineNumbers
|
|
|
|
.2byte 0 // NumberOfRelocations
|
|
|
|
.2byte 0 // NumberOfLineNumbers
|
|
|
|
.4byte 0xC0000040 // Characteristics (section flags)
|
2014-08-19 20:07:00 +04:00
|
|
|
|
2023-06-15 14:56:12 +03:00
|
|
|
.ascii ".rodata\0"
|
|
|
|
.4byte _rodata_vsize - ImageBase // VirtualSize
|
|
|
|
.4byte _rodata - ImageBase // VirtualAddress
|
|
|
|
.4byte _rodata_size - ImageBase // SizeOfRawData
|
|
|
|
.4byte _rodata - ImageBase // PointerToRawData
|
|
|
|
.4byte 0 // PointerToRelocations
|
|
|
|
.4byte 0 // PointerToLineNumbers
|
|
|
|
.2byte 0 // NumberOfRelocations
|
|
|
|
.2byte 0 // NumberOfLineNumbers
|
|
|
|
.4byte 0x40000040 // Characteristics (section flags)
|
2014-08-19 20:07:00 +04:00
|
|
|
|
2023-06-15 14:56:12 +03:00
|
|
|
.balign 256
|
2023-06-03 00:14:11 +03:00
|
|
|
.globl _start
|
2023-06-07 17:50:04 +03:00
|
|
|
.type _start,%function
|
2014-08-19 20:07:00 +04:00
|
|
|
_start:
|
|
|
|
stmfd sp!, {r0-r2, lr}
|
|
|
|
|
|
|
|
mov r2, r0
|
|
|
|
mov r3, r1
|
|
|
|
adr r1, .L_DYNAMIC
|
|
|
|
ldr r0, [r1]
|
|
|
|
add r1, r0, r1
|
|
|
|
adr r0, ImageBase
|
|
|
|
bl _relocate
|
|
|
|
teq r0, #0
|
|
|
|
bne 0f
|
|
|
|
|
|
|
|
ldmfd sp, {r0-r1}
|
Make ELF constructors and destructors work
This makes setup and teardown functions defined with
__attribute__((__constructor__) and __attribute__((__destructor__)) work
in normal circumstances in EFI binaries.
A couple of notes:
- it implements both the old-style .ctors/.dtors methods and the newer
style .init_array/.fini_array ELF constructor and destructor arrays,
processed in the order:
.init_array[]
.ctors[]
efi_main()
.dtors[]
.fini_array[]
- Destructors will only be called if efi_main() exits using "return";
any call to Exit() will still longjmp() past them.
- InitializeLib() has already been called before constructors run, so
they don't need to call it (and neither does anything else.) For
compatibility, it has been altered so calling it more than once is
safe.
- No attempt is made to handle any constructor or destructor with a
prototype other than "void func(void);", but note that InitializeLib
has been called, so LibImageHandle, ST, BS, and RT are set.
- The init_array/ctor/dtor/fini_array lists aren't the using the GNU
"CONSTRUCTOR" output section command, so they don't start with a size.
- The lists are individually sorted during the link stage via
SORT_BY_NAME() in the linker script.
- The default (empty) init_array/ctor/dtor/fini_array lists are padded
out to 8-byte alignment with ".p2align 3, 0", and each list always has
at least one ".long 0" at the end of it (even if it's completely
empty). As a result, they can have NULLs that need to be skipped.
The sections they're in are mergeable, so the NULLs don't have to be
exclusively at the end.
- The ia64 and mips64el arches have not been tested.
Signed-off-by: Peter Jones <pjones@redhat.com>
2023-03-28 15:28:40 +03:00
|
|
|
bl _entry
|
2014-08-19 20:07:00 +04:00
|
|
|
|
|
|
|
0: add sp, sp, #12
|
|
|
|
ldr pc, [sp], #4
|
|
|
|
|
|
|
|
.L_DYNAMIC:
|
2023-05-23 17:44:14 +03:00
|
|
|
.4byte _DYNAMIC - .
|
2022-08-06 13:16:29 +03:00
|
|
|
|
2023-06-15 14:56:12 +03:00
|
|
|
// hand-craft a dummy .reloc section so EFI knows it's a relocatable executable:
|
|
|
|
|
|
|
|
.data
|
|
|
|
dummy: .4byte 0
|
|
|
|
|
|
|
|
#define IMAGE_REL_ABSOLUTE 0
|
|
|
|
.section .areloc
|
|
|
|
.4byte dummy // Page RVA
|
|
|
|
.4byte 12 // Block Size (2*4+2*2), must be aligned by 32 Bits
|
|
|
|
.2byte (IMAGE_REL_ABSOLUTE<<12) + 0 // reloc for dummy
|
|
|
|
.2byte (IMAGE_REL_ABSOLUTE<<12) + 0 // reloc for dummy
|
|
|
|
|
2022-08-06 13:16:29 +03:00
|
|
|
#if defined(__ELF__) && defined(__linux__)
|
|
|
|
.section .note.GNU-stack,"",%progbits
|
|
|
|
#endif
|