elf.h 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829
  1. /* $OpenBSD: exec_elf.h,v 1.83 2019/01/22 23:23:18 jsg Exp $ */
  2. /*
  3. * Copyright (c) 1995, 1996 Erik Theisen. All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. * 1. Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. * 2. Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in the
  12. * documentation and/or other materials provided with the distribution.
  13. * 3. The name of the author may not be used to endorse or promote products
  14. * derived from this software without specific prior written permission
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  17. * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  18. * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  19. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  20. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  21. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  22. * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  23. * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  24. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  25. * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26. */
  27. /*
  28. * This is the ELF ABI header file
  29. * formerly known as "elf_abi.h".
  30. */
  31. #pragma once
  32. #ifndef KERNEL
  33. # include <stdint.h>
  34. # include <sys/types.h>
  35. #else
  36. # include <AK/Types.h>
  37. #endif
  38. #define ElfW(type) Elf64_##type
  39. typedef uint8_t Elf_Byte;
  40. typedef uint32_t Elf32_Addr; /* Unsigned program address */
  41. typedef uint32_t Elf32_Off; /* Unsigned file offset */
  42. typedef int32_t Elf32_Sword; /* Signed large integer */
  43. typedef uint32_t Elf32_Word; /* Unsigned large integer */
  44. typedef uint16_t Elf32_Half; /* Unsigned medium integer */
  45. typedef uint64_t Elf32_Lword;
  46. typedef uint64_t Elf64_Addr;
  47. typedef uint64_t Elf64_Off;
  48. typedef int32_t Elf64_Shalf;
  49. #ifdef __alpha__
  50. typedef int64_t Elf64_Sword;
  51. typedef uint64_t Elf64_Word;
  52. #else
  53. typedef int32_t Elf64_Sword;
  54. typedef uint32_t Elf64_Word;
  55. #endif
  56. typedef int64_t Elf64_Sxword;
  57. typedef uint64_t Elf64_Xword;
  58. typedef uint64_t Elf64_Lword;
  59. typedef uint32_t Elf64_Half;
  60. typedef uint16_t Elf64_Quarter;
  61. /*
  62. * e_ident[] identification indices
  63. * See http://www.sco.com/developers/gabi/latest/ch4.eheader.html
  64. */
  65. #define EI_MAG0 0 /* file ID */
  66. #define EI_MAG1 1 /* file ID */
  67. #define EI_MAG2 2 /* file ID */
  68. #define EI_MAG3 3 /* file ID */
  69. #define EI_CLASS 4 /* file class */
  70. #define EI_DATA 5 /* data encoding */
  71. #define EI_VERSION 6 /* ELF header version */
  72. #define EI_OSABI 7 /* OS/ABI ID */
  73. #define EI_ABIVERSION 8 /* ABI version */
  74. #define EI_PAD 9 /* start of pad bytes */
  75. #define EI_NIDENT 16 /* Gfx::Size of e_ident[] */
  76. /* e_ident[] magic number */
  77. #define ELFMAG0 0x7f /* e_ident[EI_MAG0] */
  78. #define ELFMAG1 'E' /* e_ident[EI_MAG1] */
  79. #define ELFMAG2 'L' /* e_ident[EI_MAG2] */
  80. #define ELFMAG3 'F' /* e_ident[EI_MAG3] */
  81. #define ELFMAG "\177ELF" /* magic */
  82. #define SELFMAG 4 /* size of magic */
  83. /* e_ident[] file class */
  84. #define ELFCLASSNONE 0 /* invalid */
  85. #define ELFCLASS32 1 /* 32-bit objs */
  86. #define ELFCLASS64 2 /* 64-bit objs */
  87. #define ELFCLASSNUM 3 /* number of classes */
  88. /* e_ident[] data encoding */
  89. #define ELFDATANONE 0 /* invalid */
  90. #define ELFDATA2LSB 1 /* Little-Endian */
  91. #define ELFDATA2MSB 2 /* Big-Endian */
  92. #define ELFDATANUM 3 /* number of data encode defines */
  93. /* e_ident[] Operating System/ABI */
  94. #define ELFOSABI_SYSV 0 /* UNIX System V ABI */
  95. #define ELFOSABI_HPUX 1 /* HP-UX operating system */
  96. #define ELFOSABI_NETBSD 2 /* NetBSD */
  97. #define ELFOSABI_LINUX 3 /* GNU/Linux */
  98. #define ELFOSABI_GNU ELFOSABI_LINUX
  99. #define ELFOSABI_HURD 4 /* GNU/Hurd */
  100. #define ELFOSABI_86OPEN 5 /* 86Open common IA32 ABI */
  101. #define ELFOSABI_SOLARIS 6 /* Solaris */
  102. #define ELFOSABI_MONTEREY 7 /* Monterey */
  103. #define ELFOSABI_AIX ELFOSABI_MONTEREY
  104. #define ELFOSABI_IRIX 8 /* IRIX */
  105. #define ELFOSABI_FREEBSD 9 /* FreeBSD */
  106. #define ELFOSABI_TRU64 10 /* TRU64 UNIX */
  107. #define ELFOSABI_MODESTO 11 /* Novell Modesto */
  108. #define ELFOSABI_OPENBSD 12 /* OpenBSD */
  109. #define ELFOSABI_ARM 97 /* ARM */
  110. #define ELFOSABI_STANDALONE 255 /* Standalone (embedded) application */
  111. /* e_ident */
  112. #define IS_ELF(ehdr) ((ehdr).e_ident[EI_MAG0] == ELFMAG0 && (ehdr).e_ident[EI_MAG1] == ELFMAG1 && (ehdr).e_ident[EI_MAG2] == ELFMAG2 && (ehdr).e_ident[EI_MAG3] == ELFMAG3)
  113. /* ELF Header */
  114. typedef struct elfhdr {
  115. unsigned char e_ident[EI_NIDENT]; /* ELF Identification */
  116. Elf32_Half e_type; /* object file type */
  117. Elf32_Half e_machine; /* machine */
  118. Elf32_Word e_version; /* object file version */
  119. Elf32_Addr e_entry; /* virtual entry point */
  120. Elf32_Off e_phoff; /* program header table offset */
  121. Elf32_Off e_shoff; /* section header table offset */
  122. Elf32_Word e_flags; /* processor-specific flags */
  123. Elf32_Half e_ehsize; /* ELF header size */
  124. Elf32_Half e_phentsize; /* program header entry size */
  125. Elf32_Half e_phnum; /* number of program header entries */
  126. Elf32_Half e_shentsize; /* section header entry size */
  127. Elf32_Half e_shnum; /* number of section header entries */
  128. Elf32_Half e_shstrndx; /* section header table's "section
  129. header string table" entry offset */
  130. } Elf32_Ehdr;
  131. typedef struct {
  132. unsigned char e_ident[EI_NIDENT]; /* Id bytes */
  133. Elf64_Quarter e_type; /* file type */
  134. Elf64_Quarter e_machine; /* machine type */
  135. Elf64_Half e_version; /* version number */
  136. Elf64_Addr e_entry; /* entry point */
  137. Elf64_Off e_phoff; /* Program hdr offset */
  138. Elf64_Off e_shoff; /* Section hdr offset */
  139. Elf64_Half e_flags; /* Processor flags */
  140. Elf64_Quarter e_ehsize; /* sizeof ehdr */
  141. Elf64_Quarter e_phentsize; /* Program header entry size */
  142. Elf64_Quarter e_phnum; /* Number of program headers */
  143. Elf64_Quarter e_shentsize; /* Section header entry size */
  144. Elf64_Quarter e_shnum; /* Number of section headers */
  145. Elf64_Quarter e_shstrndx; /* String table index */
  146. } Elf64_Ehdr;
  147. /* e_type */
  148. #define ET_NONE 0 /* No file type */
  149. #define ET_REL 1 /* relocatable file */
  150. #define ET_EXEC 2 /* executable file */
  151. #define ET_DYN 3 /* shared object file */
  152. #define ET_CORE 4 /* core file */
  153. #define ET_NUM 5 /* number of types */
  154. #define ET_LOPROC 0xff00 /* reserved range for processor */
  155. #define ET_HIPROC 0xffff /* specific e_type */
  156. /* e_machine */
  157. #define EM_NONE 0 /* No Machine */
  158. #define EM_M32 1 /* AT&T WE 32100 */
  159. #define EM_SPARC 2 /* SPARC */
  160. #define EM_386 3 /* Intel 80386 */
  161. #define EM_68K 4 /* Motorola 68000 */
  162. #define EM_88K 5 /* Motorola 88000 */
  163. #define EM_486 6 /* Intel 80486 - unused? */
  164. #define EM_860 7 /* Intel 80860 */
  165. #define EM_MIPS 8 /* MIPS R3000 Big-Endian only */
  166. /*
  167. * Don't know if EM_MIPS_RS4_BE,
  168. * EM_SPARC64, EM_PARISC,
  169. * or EM_PPC are ABI compliant
  170. */
  171. #define EM_MIPS_RS4_BE 10 /* MIPS R4000 Big-Endian */
  172. #define EM_SPARC64 11 /* SPARC v9 64-bit unofficial */
  173. #define EM_PARISC 15 /* HPPA */
  174. #define EM_SPARC32PLUS 18 /* Enhanced instruction set SPARC */
  175. #define EM_PPC 20 /* PowerPC */
  176. #define EM_PPC64 21 /* PowerPC 64 */
  177. #define EM_S390 22 /* IBM S390 */
  178. #define EM_ARM 40 /* Advanced RISC Machines ARM */
  179. #define EM_ALPHA 41 /* DEC ALPHA */
  180. #define EM_SH 42 /* Hitachi/Renesas Super-H */
  181. #define EM_SPARCV9 43 /* SPARC version 9 */
  182. #define EM_IA_64 50 /* Intel IA-64 Processor */
  183. #define EM_AMD64 62 /* AMD64 architecture */
  184. #define EM_X86_64 EM_AMD64
  185. #define EM_VAX 75 /* DEC VAX */
  186. #define EM_AARCH64 183 /* ARM 64-bit architecture (AArch64) */
  187. /* Non-standard */
  188. #define EM_ALPHA_EXP 0x9026 /* DEC ALPHA */
  189. #define EM__LAST__ (EM_ALPHA_EXP + 1)
  190. #define EM_NUM 22 /* number of machine types */
  191. /* Version */
  192. #define EV_NONE 0 /* Invalid */
  193. #define EV_CURRENT 1 /* Current */
  194. #define EV_NUM 2 /* number of versions */
  195. /* Magic for e_phnum: get real value from sh_info of first section header */
  196. #define PN_XNUM 0xffff
  197. /* Section Header */
  198. typedef struct {
  199. Elf32_Word sh_name; /* name - index into section header
  200. string table section */
  201. Elf32_Word sh_type; /* type */
  202. Elf32_Word sh_flags; /* flags */
  203. Elf32_Addr sh_addr; /* address */
  204. Elf32_Off sh_offset; /* file offset */
  205. Elf32_Word sh_size; /* section size */
  206. Elf32_Word sh_link; /* section header table index link */
  207. Elf32_Word sh_info; /* extra information */
  208. Elf32_Word sh_addralign; /* address alignment */
  209. Elf32_Word sh_entsize; /* section entry size */
  210. } Elf32_Shdr;
  211. typedef struct {
  212. Elf64_Half sh_name; /* section name */
  213. Elf64_Half sh_type; /* section type */
  214. Elf64_Xword sh_flags; /* section flags */
  215. Elf64_Addr sh_addr; /* virtual address */
  216. Elf64_Off sh_offset; /* file offset */
  217. Elf64_Xword sh_size; /* section size */
  218. Elf64_Half sh_link; /* link to another */
  219. Elf64_Half sh_info; /* misc info */
  220. Elf64_Xword sh_addralign; /* memory alignment */
  221. Elf64_Xword sh_entsize; /* table entry size */
  222. } Elf64_Shdr;
  223. /* Special Section Indices */
  224. #define SHN_UNDEF 0 /* undefined */
  225. #define SHN_LORESERVE 0xff00 /* lower bounds of reserved indices */
  226. #define SHN_LOPROC 0xff00 /* reserved range for processor */
  227. #define SHN_HIPROC 0xff1f /* specific section indices */
  228. #define SHN_ABS 0xfff1 /* absolute value */
  229. #define SHN_COMMON 0xfff2 /* common symbol */
  230. #define SHN_XINDEX 0xffff /* Escape -- index stored elsewhere. */
  231. #define SHN_HIRESERVE 0xffff /* upper bounds of reserved indices */
  232. /* sh_type */
  233. #define SHT_NULL 0 /* inactive */
  234. #define SHT_PROGBITS 1 /* program defined information */
  235. #define SHT_SYMTAB 2 /* symbol table section */
  236. #define SHT_STRTAB 3 /* string table section */
  237. #define SHT_RELA 4 /* relocation section with addends*/
  238. #define SHT_HASH 5 /* symbol hash table section */
  239. #define SHT_DYNAMIC 6 /* dynamic section */
  240. #define SHT_NOTE 7 /* note section */
  241. #define SHT_NOBITS 8 /* no space section */
  242. #define SHT_REL 9 /* relation section without addends */
  243. #define SHT_SHLIB 10 /* reserved - purpose unknown */
  244. #define SHT_DYNSYM 11 /* dynamic symbol table section */
  245. #define SHT_NUM 12 /* number of section types */
  246. #define SHT_INIT_ARRAY 14 /* pointers to init functions */
  247. #define SHT_FINI_ARRAY 15 /* pointers to termination functions */
  248. #define SHT_PREINIT_ARRAY 16 /* ptrs to funcs called before init */
  249. #define SHT_GROUP 17 /* defines a section group */
  250. #define SHT_SYMTAB_SHNDX 18 /* Section indices (see SHN_XINDEX). */
  251. #define SHT_RELR 19 /* relative-only relocation section */
  252. #define SHT_LOOS 0x60000000 /* reserved range for OS specific */
  253. #define SHT_SUNW_dof 0x6ffffff4 /* used by dtrace */
  254. #define SHT_GNU_LIBLIST 0x6ffffff7 /* libraries to be prelinked */
  255. #define SHT_SUNW_move 0x6ffffffa /* inf for partially init'ed symbols */
  256. #define SHT_SUNW_syminfo 0x6ffffffc /* ad symbol information */
  257. #define SHT_SUNW_verdef 0x6ffffffd /* symbol versioning inf */
  258. #define SHT_SUNW_verneed 0x6ffffffe /* symbol versioning req */
  259. #define SHT_SUNW_versym 0x6fffffff /* symbol versioning table */
  260. #define SHT_HIOS 0x6fffffff /* section header types */
  261. #define SHT_LOPROC 0x70000000 /* reserved range for processor */
  262. #define SHT_HIPROC 0x7fffffff /* specific section header types */
  263. #define SHT_LOUSER 0x80000000 /* reserved range for application */
  264. #define SHT_HIUSER 0xffffffff /* specific indices */
  265. #define SHT_GNU_HASH 0x6ffffff6 /* GNU-style hash table section */
  266. /* Section names */
  267. #define ELF_BSS ".bss" /* uninitialized data */
  268. #define ELF_DATA ".data" /* initialized data */
  269. #define ELF_CTF ".SUNW_ctf" /* CTF data */
  270. #define ELF_DEBUG ".debug" /* debug */
  271. #define ELF_DYNAMIC ".dynamic" /* dynamic linking information */
  272. #define ELF_DYNSTR ".dynstr" /* dynamic string table */
  273. #define ELF_DYNSYM ".dynsym" /* dynamic symbol table */
  274. #define ELF_FINI ".fini" /* termination code */
  275. #define ELF_GOT ".got" /* global offset table */
  276. #define ELF_HASH ".hash" /* symbol hash table */
  277. #define ELF_INIT ".init" /* initialization code */
  278. #define ELF_REL_DATA ".rel.data" /* relocation data */
  279. #define ELF_REL_FINI ".rel.fini" /* relocation termination code */
  280. #define ELF_REL_INIT ".rel.init" /* relocation initialization code */
  281. #define ELF_REL_DYN ".rel.dyn" /* relocation dynamic link info */
  282. #define ELF_REL_RODATA ".rel.rodata" /* relocation read-only data */
  283. #define ELF_REL_TEXT ".rel.text" /* relocation code */
  284. #define ELF_RODATA ".rodata" /* read-only data */
  285. #define ELF_SHSTRTAB ".shstrtab" /* section header string table */
  286. #define ELF_STRTAB ".strtab" /* string table */
  287. #define ELF_SYMTAB ".symtab" /* symbol table */
  288. #define ELF_TEXT ".text" /* code */
  289. #define ELF_OPENBSDRANDOMDATA ".openbsd.randomdata" /* constant randomdata */
  290. /* Section Attribute Flags - sh_flags */
  291. #define SHF_WRITE 0x1 /* Writable */
  292. #define SHF_ALLOC 0x2 /* occupies memory */
  293. #define SHF_EXECINSTR 0x4 /* executable */
  294. #define SHF_MERGE 0x10 /* may be merged */
  295. #define SHF_STRINGS 0x20 /* contains strings */
  296. #define SHF_INFO_LINK 0x40 /* sh_info holds section index */
  297. #define SHF_LINK_ORDER 0x80 /* ordering requirements */
  298. #define SHF_OS_NONCONFORMING 0x100 /* OS-specific processing required */
  299. #define SHF_GROUP 0x200 /* member of section group */
  300. #define SHF_TLS 0x400 /* thread local storage */
  301. #define SHF_COMPRESSED 0x800 /* contains compressed data */
  302. #define SHF_MASKOS 0x0ff00000 /* OS-specific semantics */
  303. #define SHF_MASKPROC 0xf0000000 /* reserved bits for processor */
  304. /* specific section attributes */
  305. /* Symbol Table Entry */
  306. typedef struct elf32_sym {
  307. Elf32_Word st_name; /* name - index into string table */
  308. Elf32_Addr st_value; /* symbol value */
  309. Elf32_Word st_size; /* symbol size */
  310. unsigned char st_info; /* type and binding */
  311. unsigned char st_other; /* 0 - no defined meaning */
  312. Elf32_Half st_shndx; /* section header index */
  313. } Elf32_Sym;
  314. typedef struct {
  315. Elf64_Half st_name; /* Symbol name index in str table */
  316. Elf_Byte st_info; /* type / binding attrs */
  317. Elf_Byte st_other; /* unused */
  318. Elf64_Quarter st_shndx; /* section index of symbol */
  319. Elf64_Xword st_value; /* value of symbol */
  320. Elf64_Xword st_size; /* size of symbol */
  321. } Elf64_Sym;
  322. /* Symbol table index */
  323. #define STN_UNDEF 0 /* undefined */
  324. /* Extract symbol info - st_info */
  325. #define ELF32_ST_BIND(x) ((x) >> 4)
  326. #define ELF32_ST_TYPE(x) (((unsigned int)x) & 0xf)
  327. #define ELF32_ST_INFO(b, t) (((b) << 4) + ((t)&0xf))
  328. #define ELF64_ST_BIND(x) ((x) >> 4)
  329. #define ELF64_ST_TYPE(x) (((unsigned int)x) & 0xf)
  330. #define ELF64_ST_INFO(b, t) (((b) << 4) + ((t)&0xf))
  331. /* Symbol Binding - ELF32_ST_BIND - st_info */
  332. #define STB_LOCAL 0 /* Local symbol */
  333. #define STB_GLOBAL 1 /* Global symbol */
  334. #define STB_WEAK 2 /* like global - lower precedence */
  335. #define STB_NUM 3 /* number of symbol bindings */
  336. #define STB_LOPROC 13 /* reserved range for processor */
  337. #define STB_HIPROC 15 /* specific symbol bindings */
  338. /* Symbol type - ELF32_ST_TYPE - st_info */
  339. #define STT_NOTYPE 0 /* not specified */
  340. #define STT_OBJECT 1 /* data object */
  341. #define STT_FUNC 2 /* function */
  342. #define STT_SECTION 3 /* section */
  343. #define STT_FILE 4 /* file */
  344. #define STT_TLS 6 /* thread local storage */
  345. #define STT_GNU_IFUNC 10
  346. #define STT_LOPROC 13 /* reserved range for processor */
  347. #define STT_HIPROC 15 /* specific symbol types */
  348. /* Extract symbol visibility - st_other */
  349. #define ELF_ST_VISIBILITY(v) ((v)&0x3)
  350. #define ELF32_ST_VISIBILITY ELF_ST_VISIBILITY
  351. #define ELF64_ST_VISIBILITY ELF_ST_VISIBILITY
  352. #define STV_DEFAULT 0 /* Visibility set by binding type */
  353. #define STV_INTERNAL 1 /* OS specific version of STV_HIDDEN */
  354. #define STV_HIDDEN 2 /* can only be seen inside own .so */
  355. #define STV_PROTECTED 3 /* HIDDEN inside, DEFAULT outside */
  356. /* Relocation entry with implicit addend */
  357. typedef struct {
  358. Elf32_Addr r_offset; /* offset of relocation */
  359. Elf32_Word r_info; /* symbol table index and type */
  360. } Elf32_Rel;
  361. /* Relocation entry with explicit addend */
  362. typedef struct {
  363. Elf32_Addr r_offset; /* offset of relocation */
  364. Elf32_Word r_info; /* symbol table index and type */
  365. Elf32_Sword r_addend;
  366. } Elf32_Rela;
  367. /* Extract relocation info - r_info */
  368. #define ELF32_R_SYM(i) ((i) >> 8)
  369. #define ELF32_R_TYPE(i) ((unsigned char)(i))
  370. #define ELF32_R_INFO(s, t) (((s) << 8) + (unsigned char)(t))
  371. typedef struct {
  372. Elf64_Xword r_offset; /* where to do it */
  373. Elf64_Xword r_info; /* index & type of relocation */
  374. } Elf64_Rel;
  375. typedef struct {
  376. Elf64_Xword r_offset; /* where to do it */
  377. Elf64_Xword r_info; /* index & type of relocation */
  378. Elf64_Sxword r_addend; /* adjustment value */
  379. } Elf64_Rela;
  380. #define ELF64_R_SYM(info) ((info) >> 32)
  381. #define ELF64_R_TYPE(info) ((info)&0xFFFFFFFF)
  382. #define ELF64_R_INFO(s, t) (((s) << 32) + (uint32_t)(t))
  383. #if defined(__mips64__) && defined(__MIPSEL__)
  384. /*
  385. * The 64-bit MIPS ELF ABI uses a slightly different relocation format
  386. * than the regular ELF ABI: the r_info field is split into several
  387. * pieces (see gnu/usr.bin/binutils-2.17/include/elf/mips.h for details).
  388. */
  389. # undef ELF64_R_SYM
  390. # undef ELF64_R_TYPE
  391. # undef ELF64_R_INFO
  392. # define ELF64_R_TYPE(info) ((uint64_t)swap32((info) >> 32))
  393. # define ELF64_R_SYM(info) ((info)&0xFFFFFFFF)
  394. # define ELF64_R_INFO(s, t) (((uint64_t)swap32(t) << 32) + (uint32_t)(s))
  395. #endif /* __mips64__ && __MIPSEL__ */
  396. typedef Elf32_Word Elf32_Relr;
  397. typedef Elf64_Xword Elf64_Relr;
  398. /* Program Header */
  399. typedef struct {
  400. Elf32_Word p_type; /* segment type */
  401. Elf32_Off p_offset; /* segment offset */
  402. Elf32_Addr p_vaddr; /* virtual address of segment */
  403. Elf32_Addr p_paddr; /* physical address - ignored? */
  404. Elf32_Word p_filesz; /* number of bytes in file for seg. */
  405. Elf32_Word p_memsz; /* number of bytes in mem. for seg. */
  406. Elf32_Word p_flags; /* flags */
  407. Elf32_Word p_align; /* memory alignment */
  408. } Elf32_Phdr;
  409. typedef struct {
  410. Elf64_Half p_type; /* entry type */
  411. Elf64_Half p_flags; /* flags */
  412. Elf64_Off p_offset; /* offset */
  413. Elf64_Addr p_vaddr; /* virtual address */
  414. Elf64_Addr p_paddr; /* physical address */
  415. Elf64_Xword p_filesz; /* file size */
  416. Elf64_Xword p_memsz; /* memory size */
  417. Elf64_Xword p_align; /* memory & file alignment */
  418. } Elf64_Phdr;
  419. /* Segment types - p_type */
  420. #define PT_NULL 0 /* unused */
  421. #define PT_LOAD 1 /* loadable segment */
  422. #define PT_DYNAMIC 2 /* dynamic linking section */
  423. #define PT_INTERP 3 /* the RTLD */
  424. #define PT_NOTE 4 /* auxiliary information */
  425. #define PT_SHLIB 5 /* reserved - purpose undefined */
  426. #define PT_PHDR 6 /* program header */
  427. #define PT_TLS 7 /* thread local storage */
  428. #define PT_LOOS 0x60000000 /* reserved range for OS */
  429. #define PT_HIOS 0x6fffffff /* specific segment types */
  430. #define PT_LOPROC 0x70000000 /* reserved range for processor */
  431. #define PT_HIPROC 0x7fffffff /* specific segment types */
  432. #define PT_GNU_EH_FRAME 0x6474e550 /* Exception handling info */
  433. #define PT_GNU_RELRO 0x6474e552 /* Read-only after relocation */
  434. #define PT_GNU_STACK 0x6474e551 /* Stack permissions & size info */
  435. #define PT_OPENBSD_RANDOMIZE 0x65a3dbe6 /* fill with random data */
  436. #define PT_OPENBSD_WXNEEDED 0x65a3dbe7 /* program performs W^X violations */
  437. #define PT_OPENBSD_BOOTDATA 0x65a41be6 /* section for boot arguments */
  438. /* Segment flags - p_flags */
  439. #define PF_X 0x1 /* Executable */
  440. #define PF_W 0x2 /* Writable */
  441. #define PF_R 0x4 /* Readable */
  442. #define PF_MASKPROC 0xf0000000 /* reserved bits for processor */
  443. /* specific segment flags */
  444. /* Dynamic structure */
  445. typedef struct {
  446. Elf32_Sword d_tag; /* controls meaning of d_val */
  447. union {
  448. Elf32_Word d_val; /* Multiple meanings - see d_tag */
  449. Elf32_Addr d_ptr; /* program virtual address */
  450. } d_un;
  451. } Elf32_Dyn;
  452. typedef struct {
  453. Elf64_Xword d_tag; /* controls meaning of d_val */
  454. union {
  455. Elf64_Addr d_ptr;
  456. Elf64_Xword d_val;
  457. } d_un;
  458. } Elf64_Dyn;
  459. /* Dynamic Array Tags - d_tag */
  460. #define DT_NULL 0 /* marks end of _DYNAMIC array */
  461. #define DT_NEEDED 1 /* string table offset of needed lib */
  462. #define DT_PLTRELSZ 2 /* size of relocation entries in PLT */
  463. #define DT_PLTGOT 3 /* address PLT/GOT */
  464. #define DT_HASH 4 /* address of symbol hash table */
  465. #define DT_STRTAB 5 /* address of string table */
  466. #define DT_SYMTAB 6 /* address of symbol table */
  467. #define DT_RELA 7 /* address of relocation table */
  468. #define DT_RELASZ 8 /* size of relocation table */
  469. #define DT_RELAENT 9 /* size of relocation entry */
  470. #define DT_STRSZ 10 /* size of string table */
  471. #define DT_SYMENT 11 /* size of symbol table entry */
  472. #define DT_INIT 12 /* address of initialization func. */
  473. #define DT_FINI 13 /* address of termination function */
  474. #define DT_SONAME 14 /* string table offset of shared obj */
  475. #define DT_RPATH 15 /* string table offset of library \
  476. search path */
  477. #define DT_SYMBOLIC 16 /* start sym search in shared obj. */
  478. #define DT_REL 17 /* address of rel. tbl. w addends */
  479. #define DT_RELSZ 18 /* size of DT_REL relocation table */
  480. #define DT_RELENT 19 /* size of DT_REL relocation entry */
  481. #define DT_PLTREL 20 /* PLT referenced relocation entry */
  482. #define DT_DEBUG 21 /* bugger */
  483. #define DT_TEXTREL 22 /* Allow rel. mod. to unwritable seg */
  484. #define DT_JMPREL 23 /* add. of PLT's relocation entries */
  485. #define DT_BIND_NOW 24 /* Bind now regardless of env setting */
  486. #define DT_INIT_ARRAY 25 /* address of array of init func */
  487. #define DT_FINI_ARRAY 26 /* address of array of term func */
  488. #define DT_INIT_ARRAYSZ 27 /* size of array of init func */
  489. #define DT_FINI_ARRAYSZ 28 /* size of array of term func */
  490. #define DT_RUNPATH 29 /* strtab offset of lib search path */
  491. #define DT_FLAGS 30 /* Set of DF_* flags */
  492. #define DT_ENCODING 31 /* further DT_* follow encoding rules */
  493. #define DT_PREINIT_ARRAY 32 /* address of array of preinit func */
  494. #define DT_PREINIT_ARRAYSZ 33 /* size of array of preinit func */
  495. #define DT_RELRSZ 35 /* size of DT_RELR relocation table */
  496. #define DT_RELR 36 /* addr of DT_RELR relocation table */
  497. #define DT_RELRENT 37 /* size of DT_RELR relocation entry */
  498. #define DT_LOOS 0x6000000d /* reserved range for OS */
  499. #define DT_HIOS 0x6ffff000 /* specific dynamic array tags */
  500. #define DT_LOPROC 0x70000000 /* reserved range for processor */
  501. #define DT_HIPROC 0x7fffffff /* specific dynamic array tags */
  502. /* some other useful tags */
  503. #define DT_GNU_HASH 0x6ffffef5 /* address of GNU hash table */
  504. #define DT_VERSYM 0x6ffffff0 /* address of table provided by .gnu.version */
  505. #define DT_RELACOUNT 0x6ffffff9 /* if present, number of RELATIVE */
  506. #define DT_RELCOUNT 0x6ffffffa /* relocs, which must come first */
  507. #define DT_FLAGS_1 0x6ffffffb
  508. #define DT_VERDEF 0x6ffffffc /* address of version definition table */
  509. #define DT_VERDEFNUM 0x6ffffffd /* number of version definitions */
  510. #define DT_VERNEEDED 0x6ffffffe /* address of the dependency table */
  511. #define DT_VERNEEDEDNUM 0x6fffffff /* number of entries in VERNEEDED */
  512. /* Dynamic Flags - DT_FLAGS .dynamic entry */
  513. #define DF_ORIGIN 0x00000001
  514. #define DF_SYMBOLIC 0x00000002
  515. #define DF_TEXTREL 0x00000004
  516. #define DF_BIND_NOW 0x00000008
  517. #define DF_STATIC_TLS 0x00000010
  518. /* Dynamic Flags - DT_FLAGS_1 .dynamic entry */
  519. #define DF_1_NOW 0x00000001
  520. #define DF_1_GLOBAL 0x00000002
  521. #define DF_1_GROUP 0x00000004
  522. #define DF_1_NODELETE 0x00000008
  523. #define DF_1_LOADFLTR 0x00000010
  524. #define DF_1_INITFIRST 0x00000020
  525. #define DF_1_NOOPEN 0x00000040
  526. #define DF_1_ORIGIN 0x00000080
  527. #define DF_1_DIRECT 0x00000100
  528. #define DF_1_TRANS 0x00000200
  529. #define DF_1_INTERPOSE 0x00000400
  530. #define DF_1_NODEFLIB 0x00000800
  531. #define DF_1_NODUMP 0x00001000
  532. #define DF_1_CONLFAT 0x00002000
  533. /*
  534. * Note header
  535. */
  536. typedef struct {
  537. Elf32_Word n_namesz;
  538. Elf32_Word n_descsz;
  539. Elf32_Word n_type;
  540. } Elf32_Nhdr;
  541. typedef struct {
  542. Elf64_Half n_namesz;
  543. Elf64_Half n_descsz;
  544. Elf64_Half n_type;
  545. } Elf64_Nhdr;
  546. /*
  547. * Note Definitions
  548. */
  549. typedef struct {
  550. Elf32_Word namesz;
  551. Elf32_Word descsz;
  552. Elf32_Word type;
  553. } Elf32_Note;
  554. typedef struct {
  555. Elf64_Half namesz;
  556. Elf64_Half descsz;
  557. Elf64_Half type;
  558. } Elf64_Note;
  559. /* Values for n_type. */
  560. #define NT_PRSTATUS 1 /* Process status. */
  561. #define NT_FPREGSET 2 /* Floating point registers. */
  562. #define NT_PRPSINFO 3 /* Process state info. */
  563. /*
  564. * OpenBSD-specific core file information.
  565. *
  566. * OpenBSD ELF core files use notes to provide information about
  567. * the process's state. The note name is "OpenBSD" for information
  568. * that is global to the process, and "OpenBSD@nn", where "nn" is the
  569. * thread ID of the thread that the information belongs to (such as
  570. * register state).
  571. *
  572. * We use the following note identifiers:
  573. *
  574. * NT_OPENBSD_PROCINFO
  575. * Note is a "elfcore_procinfo" structure.
  576. * NT_OPENBSD_AUXV
  577. * Note is a a bunch of Auxiliary Vectors, terminated by
  578. * an AT_NULL entry.
  579. * NT_OPENBSD_REGS
  580. * Note is a "reg" structure.
  581. * NT_OPENBSD_FPREGS
  582. * Note is a "fpreg" structure.
  583. *
  584. * Please try to keep the members of the "elfcore_procinfo" structure
  585. * nicely aligned, and if you add elements, add them to the end and
  586. * bump the version.
  587. */
  588. #define NT_OPENBSD_PROCINFO 10
  589. #define NT_OPENBSD_AUXV 11
  590. #define NT_OPENBSD_REGS 20
  591. #define NT_OPENBSD_FPREGS 21
  592. #define NT_OPENBSD_XFPREGS 22
  593. #define NT_OPENBSD_WCOOKIE 23
  594. struct elfcore_procinfo {
  595. /* Version 1 fields start here. */
  596. uint32_t cpi_version; /* netbsd_elfcore_procinfo version */
  597. #define ELFCORE_PROCINFO_VERSION 1
  598. uint32_t cpi_cpisize; /* sizeof(netbsd_elfcore_procinfo) */
  599. uint32_t cpi_signo; /* killing signal */
  600. uint32_t cpi_sigcode; /* signal code */
  601. uint32_t cpi_sigpend; /* pending signals */
  602. uint32_t cpi_sigmask; /* blocked signals */
  603. uint32_t cpi_sigignore; /* ignored signals */
  604. uint32_t cpi_sigcatch; /* signals being caught by user */
  605. int32_t cpi_pid; /* process ID */
  606. int32_t cpi_ppid; /* parent process ID */
  607. int32_t cpi_pgrp; /* process group ID */
  608. int32_t cpi_sid; /* session ID */
  609. uint32_t cpi_ruid; /* real user ID */
  610. uint32_t cpi_euid; /* effective user ID */
  611. uint32_t cpi_svuid; /* saved user ID */
  612. uint32_t cpi_rgid; /* real group ID */
  613. uint32_t cpi_egid; /* effective group ID */
  614. uint32_t cpi_svgid; /* saved group ID */
  615. int8_t cpi_name[32]; /* copy of pr->ps_comm */
  616. };
  617. /*
  618. * FIXME - these _KERNEL items aren't part of the ABI!
  619. */
  620. #if defined(_KERNEL) || defined(_DYN_LOADER)
  621. # define ELF32_NO_ADDR ((uint32_t)~0) /* Indicates addr. not yet filled in */
  622. typedef struct {
  623. Elf32_Sword au_id; /* 32-bit id */
  624. Elf32_Word au_v; /* 32-bit value */
  625. } Aux32Info;
  626. # define ELF64_NO_ADDR ((uint64_t)~0) /* Indicates addr. not yet filled in */
  627. typedef struct {
  628. Elf64_Shalf au_id; /* 32-bit id */
  629. Elf64_Xword au_v; /* 64-bit value */
  630. } Aux64Info;
  631. enum AuxID {
  632. AUX_null = 0,
  633. AUX_ignore = 1,
  634. AUX_execfd = 2,
  635. AUX_phdr = 3, /* &phdr[0] */
  636. AUX_phent = 4, /* sizeof(phdr[0]) */
  637. AUX_phnum = 5, /* # phdr entries */
  638. AUX_pagesz = 6, /* PAGESIZE */
  639. AUX_base = 7, /* ld.so base addr */
  640. AUX_flags = 8, /* processor flags */
  641. AUX_entry = 9, /* a.out entry */
  642. AUX_sun_uid = 2000, /* euid */
  643. AUX_sun_ruid = 2001, /* ruid */
  644. AUX_sun_gid = 2002, /* egid */
  645. AUX_sun_rgid = 2003 /* rgid */
  646. };
  647. struct elf_args {
  648. u_long arg_entry; /* program entry point */
  649. u_long arg_interp; /* Interpreter load address */
  650. u_long arg_phaddr; /* program header address */
  651. u_long arg_phentsize; /* Gfx::Size of program header */
  652. u_long arg_phnum; /* Number of program headers */
  653. };
  654. #endif
  655. #if !defined(ELFSIZE) && defined(ARCH_ELFSIZE)
  656. # define ELFSIZE ARCH_ELFSIZE
  657. #endif
  658. #if defined(ELFSIZE)
  659. # define CONCAT(x, y) __CONCAT(x, y)
  660. # define ELFNAME(x) CONCAT(elf, CONCAT(ELFSIZE, CONCAT(_, x)))
  661. # define ELFDEFNNAME(x) CONCAT(ELF, CONCAT(ELFSIZE, CONCAT(_, x)))
  662. #endif
  663. #if defined(ELFSIZE) && (ELFSIZE == 32)
  664. # define Elf_Ehdr Elf32_Ehdr
  665. # define Elf_Phdr Elf32_Phdr
  666. # define Elf_Shdr Elf32_Shdr
  667. # define Elf_Sym Elf32_Sym
  668. # define Elf_Rel Elf32_Rel
  669. # define Elf_RelA Elf32_Rela
  670. # define Elf_Relr Elf32_Relr
  671. # define Elf_Dyn Elf32_Dyn
  672. # define Elf_Half Elf32_Half
  673. # define Elf_Word Elf32_Word
  674. # define Elf_Sword Elf32_Sword
  675. # define Elf_Addr Elf32_Addr
  676. # define Elf_Off Elf32_Off
  677. # define Elf_Nhdr Elf32_Nhdr
  678. # define Elf_Note Elf32_Note
  679. # define ELF_R_SYM ELF32_R_SYM
  680. # define ELF_R_TYPE ELF32_R_TYPE
  681. # define ELF_R_INFO ELF32_R_INFO
  682. # define ELFCLASS ELFCLASS32
  683. # define ELF_ST_BIND ELF32_ST_BIND
  684. # define ELF_ST_TYPE ELF32_ST_TYPE
  685. # define ELF_ST_INFO ELF32_ST_INFO
  686. # define ELF_NO_ADDR ELF32_NO_ADDR
  687. # define AuxInfo Aux32Info
  688. #elif defined(ELFSIZE) && (ELFSIZE == 64)
  689. # define Elf_Ehdr Elf64_Ehdr
  690. # define Elf_Phdr Elf64_Phdr
  691. # define Elf_Shdr Elf64_Shdr
  692. # define Elf_Sym Elf64_Sym
  693. # define Elf_Rel Elf64_Rel
  694. # define Elf_RelA Elf64_Rela
  695. # define Elf_Relr Elf64_Relr
  696. # define Elf_Dyn Elf64_Dyn
  697. # define Elf_Half Elf64_Half
  698. # define Elf_Word Elf64_Word
  699. # define Elf_Sword Elf64_Sword
  700. # define Elf_Addr Elf64_Addr
  701. # define Elf_Off Elf64_Off
  702. # define Elf_Nhdr Elf64_Nhdr
  703. # define Elf_Note Elf64_Note
  704. # define ELF_R_SYM ELF64_R_SYM
  705. # define ELF_R_TYPE ELF64_R_TYPE
  706. # define ELF_R_INFO ELF64_R_INFO
  707. # define ELFCLASS ELFCLASS64
  708. # define ELF_ST_BIND ELF64_ST_BIND
  709. # define ELF_ST_TYPE ELF64_ST_TYPE
  710. # define ELF_ST_INFO ELF64_ST_INFO
  711. # define ELF_NO_ADDR ELF64_NO_ADDR
  712. # define AuxInfo Aux64Info
  713. #endif
  714. #define ELF_TARG_VER 1 /* The ver for which this code is intended */
  715. /* Relocation types */
  716. #define R_386_NONE 0
  717. #define R_386_32 1 /* Symbol + Addend */
  718. #define R_386_PC32 2 /* Symbol + Addend - Section offset */
  719. #define R_386_GOT32 3 /* Used by build-time linker to create GOT entry */
  720. #define R_386_PLT32 4 /* Used by build-time linker to create PLT entry */
  721. #define R_386_COPY 5 /* https://docs.oracle.com/cd/E23824_01/html/819-0690/chapter4-10454.html#chapter4-84604 */
  722. #define R_386_GLOB_DAT 6 /* Relation b/w GOT entry and symbol */
  723. #define R_386_JMP_SLOT 7 /* Fixed up by dynamic loader */
  724. #define R_386_RELATIVE 8 /* Base address + Addned */
  725. #define R_386_TLS_TPOFF 14 /* Negative offset into the static TLS storage */
  726. #define R_386_TLS_TPOFF32 37
  727. #define R_386_IRELATIVE 42 /* PLT entry resolved indirectly at runtime */
  728. #define R_X86_64_NONE 0
  729. #define R_X86_64_64 1
  730. #define R_X86_64_GLOB_DAT 6
  731. #define R_X86_64_JUMP_SLOT 7
  732. #define R_X86_64_RELATIVE 8
  733. #define R_X86_64_TPOFF64 18
  734. #define R_X86_64_IRELATIVE 37
  735. #define R_AARCH64_ABS64 257
  736. #define R_AARCH64_GLOB_DAT 1025
  737. #define R_AARCH64_JUMP_SLOT 1026
  738. #define R_AARCH64_RELATIVE 1027
  739. #define R_AARCH64_TLS_TPREL64 1030