blob: 374d5bb0efec692a0dd942bcae606050c482666f [file] [log] [blame]
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 * 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 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in
12 * the documentation and/or other materials provided with the
13 * distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
18 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
19 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
22 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
25 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 */
Elliott Hughes203e13d2016-07-22 14:56:18 -070028
Elliott Hughes6663f552020-01-24 14:36:10 -080029#pragma once
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080030
Josh Gao16016df2016-11-07 18:27:16 -080031#include <sys/cdefs.h>
32
Elliott Hughes0266ae52014-02-10 17:46:57 -080033#include <linux/elf.h>
34#include <linux/elf-em.h>
Elliott Hughes0f19b102022-10-06 23:11:38 +000035#undef EI_PAD
36
37#include <bits/auxvec.h>
38#include <bits/elf_common.h>
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080039
Elliott Hughesa8a23f52017-10-31 17:22:41 -070040/* http://www.sco.com/developers/gabi/latest/ch4.intro.html */
Elliott Hughes89d8a3c2017-12-05 13:00:22 -080041typedef __u64 Elf32_Xword;
Dmitriy Ivanovce16a532015-05-07 22:58:00 -070042typedef __s64 Elf32_Sxword;
43
Nick Kralevich2c5153b2013-01-11 14:43:05 -080044typedef struct {
Elliott Hughes0266ae52014-02-10 17:46:57 -080045 __u32 a_type;
Nick Kralevich2c5153b2013-01-11 14:43:05 -080046 union {
Elliott Hughes0266ae52014-02-10 17:46:57 -080047 __u32 a_val;
Nick Kralevich2c5153b2013-01-11 14:43:05 -080048 } a_un;
49} Elf32_auxv_t;
50
51typedef struct {
Elliott Hughes0266ae52014-02-10 17:46:57 -080052 __u64 a_type;
Nick Kralevich2c5153b2013-01-11 14:43:05 -080053 union {
Elliott Hughes0266ae52014-02-10 17:46:57 -080054 __u64 a_val;
Nick Kralevich2c5153b2013-01-11 14:43:05 -080055 } a_un;
56} Elf64_auxv_t;
57
Elliott Hughesa8a23f52017-10-31 17:22:41 -070058/* http://www.sco.com/developers/gabi/latest/ch4.sheader.html */
59typedef struct {
60 Elf32_Word ch_type;
61 Elf32_Word ch_size;
62 Elf32_Word ch_addralign;
63} Elf32_Chdr;
64typedef struct {
65 Elf64_Word ch_type;
66 Elf64_Word ch_reserved;
67 Elf64_Xword ch_size;
68 Elf64_Xword ch_addralign;
69} Elf64_Chdr;
70
Elliott Hughes89d8a3c2017-12-05 13:00:22 -080071typedef struct {
72 Elf32_Word l_name;
73 Elf32_Word l_time_stamp;
74 Elf32_Word l_checksum;
75 Elf32_Word l_version;
76 Elf32_Word l_flags;
77} Elf32_Lib;
78typedef struct {
79 Elf64_Word l_name;
80 Elf64_Word l_time_stamp;
81 Elf64_Word l_checksum;
82 Elf64_Word l_version;
83 Elf64_Word l_flags;
84} Elf64_Lib;
Elliott Hughes89d8a3c2017-12-05 13:00:22 -080085
86typedef struct {
87 Elf32_Xword m_value;
88 Elf32_Word m_info;
89 Elf32_Word m_poffset;
90 Elf32_Half m_repeat;
91 Elf32_Half m_stride;
92} Elf32_Move;
93typedef struct {
94 Elf64_Xword m_value;
95 Elf64_Xword m_info;
96 Elf64_Xword m_poffset;
97 Elf64_Half m_repeat;
98 Elf64_Half m_stride;
99} Elf64_Move;
100
Elliott Hughesa8a23f52017-10-31 17:22:41 -0700101typedef __u16 Elf32_Section;
102typedef __u16 Elf64_Section;
103
Elliott Hughes89d8a3c2017-12-05 13:00:22 -0800104typedef struct {
105 Elf32_Half si_boundto;
106 Elf32_Half si_flags;
107} Elf32_Syminfo;
108typedef struct {
109 Elf64_Half si_boundto;
110 Elf64_Half si_flags;
111} Elf64_Syminfo;
Elliott Hughes89d8a3c2017-12-05 13:00:22 -0800112
Dmitriy Ivanovc0e7dbb2015-04-09 13:58:53 -0700113typedef Elf32_Half Elf32_Versym;
114typedef Elf64_Half Elf64_Versym;
115
116typedef struct {
117 Elf32_Half vd_version;
118 Elf32_Half vd_flags;
119 Elf32_Half vd_ndx;
120 Elf32_Half vd_cnt;
121 Elf32_Word vd_hash;
122 Elf32_Word vd_aux;
123 Elf32_Word vd_next;
124} Elf32_Verdef;
125
126typedef struct {
127 Elf32_Word vda_name;
128 Elf32_Word vda_next;
129} Elf32_Verdaux;
130
131typedef struct {
132 Elf64_Half vd_version;
133 Elf64_Half vd_flags;
134 Elf64_Half vd_ndx;
135 Elf64_Half vd_cnt;
136 Elf64_Word vd_hash;
137 Elf64_Word vd_aux;
138 Elf64_Word vd_next;
139} Elf64_Verdef;
140
141typedef struct {
142 Elf64_Word vda_name;
143 Elf64_Word vda_next;
144} Elf64_Verdaux;
145
146typedef struct {
147 Elf32_Half vn_version;
148 Elf32_Half vn_cnt;
149 Elf32_Word vn_file;
150 Elf32_Word vn_aux;
151 Elf32_Word vn_next;
152} Elf32_Verneed;
153
154typedef struct {
155 Elf32_Word vna_hash;
156 Elf32_Half vna_flags;
157 Elf32_Half vna_other;
158 Elf32_Word vna_name;
159 Elf32_Word vna_next;
160} Elf32_Vernaux;
161
162typedef struct {
163 Elf64_Half vn_version;
164 Elf64_Half vn_cnt;
165 Elf64_Word vn_file;
166 Elf64_Word vn_aux;
167 Elf64_Word vn_next;
168} Elf64_Verneed;
169
170typedef struct {
171 Elf64_Word vna_hash;
172 Elf64_Half vna_flags;
173 Elf64_Half vna_other;
174 Elf64_Word vna_name;
175 Elf64_Word vna_next;
176} Elf64_Vernaux;
177
Rahul Chaudhryf16b6592018-01-25 15:34:15 -0800178/* Relocation table entry for relative (in section of type SHT_RELR). */
Rahul Chaudhryb7feec72017-12-19 15:25:23 -0800179typedef Elf32_Word Elf32_Relr;
180typedef Elf64_Xword Elf64_Relr;
Rahul Chaudhryb7feec72017-12-19 15:25:23 -0800181
Elliott Hughesa8a23f52017-10-31 17:22:41 -0700182/* http://www.sco.com/developers/gabi/latest/ch5.dynamic.html */
The Android Open Source Project1dc9e472009-03-03 19:28:35 -0800183
Dmitriy Ivanova6bee4d2014-10-13 12:23:55 -0700184#define DF_1_NOW 0x00000001 /* Perform complete relocation processing. */
Dmitriy Ivanov6cdeb522014-09-29 19:14:45 -0700185#define DF_1_GROUP 0x00000004
Dmitriy Ivanov6cdeb522014-09-29 19:14:45 -0700186#define DF_1_INITFIRST 0x00000020
Dmitriy Ivanov6cdeb522014-09-29 19:14:45 -0700187#define DF_1_DIRECT 0x00000100
188#define DF_1_TRANS 0x00000200
Dmitriy Ivanova6bee4d2014-10-13 12:23:55 -0700189#define DF_1_NODUMP 0x00001000 /* Object cannot be dumped with dldump(3) */
Dmitriy Ivanov6cdeb522014-09-29 19:14:45 -0700190#define DF_1_CONFALT 0x00002000
191#define DF_1_ENDFILTEE 0x00004000
192#define DF_1_DISPRELDNE 0x00008000
193#define DF_1_DISPRELPND 0x00010000
194#define DF_1_NODIRECT 0x00020000
Dmitriy Ivanova6bee4d2014-10-13 12:23:55 -0700195#define DF_1_IGNMULDEF 0x00040000 /* Internal use */
196#define DF_1_NOKSYMS 0x00080000 /* Internal use */
197#define DF_1_NOHDR 0x00100000 /* Internal use */
Dmitriy Ivanov6cdeb522014-09-29 19:14:45 -0700198#define DF_1_EDITED 0x00200000
Dmitriy Ivanova6bee4d2014-10-13 12:23:55 -0700199#define DF_1_NORELOC 0x00400000 /* Internal use */
Dmitriy Ivanov6cdeb522014-09-29 19:14:45 -0700200#define DF_1_SYMINTPOSE 0x00800000
201#define DF_1_GLOBAUDIT 0x01000000
202#define DF_1_SINGLETON 0x02000000
203#define DF_1_STUB 0x04000000
Elliott Hughesa8a23f52017-10-31 17:22:41 -0700204
Elliott Hughesa8a23f52017-10-31 17:22:41 -0700205/* http://www.sco.com/developers/gabi/latest/ch4.reloc.html */
206#define ELF32_R_INFO(sym, type) ((((Elf32_Word)sym) << 8) | ((type) & 0xff))
207#define ELF64_R_INFO(sym, type) ((((Elf64_Xword)sym) << 32) | ((type) & 0xffffffff))
Elliott Hughes0266ae52014-02-10 17:46:57 -0800208
Elliott Hughesa8a23f52017-10-31 17:22:41 -0700209/* http://www.sco.com/developers/gabi/latest/ch4.symtab.html */
Elliott Hughesd390df12017-04-30 22:56:10 -0700210#define ELF_ST_INFO(b,t) (((b) << 4) + ((t) & 0xf))
211#define ELF32_ST_INFO(b,t) ELF_ST_INFO(b,t)
212#define ELF64_ST_INFO(b,t) ELF_ST_INFO(b,t)
213
Elliott Hughesa8a23f52017-10-31 17:22:41 -0700214/* http://www.sco.com/developers/gabi/latest/ch4.sheader.html */
Elliott Hughesa8a23f52017-10-31 17:22:41 -0700215#define GRP_MASKOS 0x0ff00000
216#define GRP_MASKPROC 0xf0000000
Greg Hackmann8874d882017-10-31 13:25:03 -0700217
Elliott Hughesa8a23f52017-10-31 17:22:41 -0700218/* http://www.sco.com/developers/gabi/latest/ch4.sheader.html */
Elliott Hughes0f19b102022-10-06 23:11:38 +0000219/*
220 * Standard replacement for SHT_ANDROID_RELR.
221 */
Elliott Hughes6663f552020-01-24 14:36:10 -0800222#define SHT_RELR 19
Elliott Hughesa8a23f52017-10-31 17:22:41 -0700223#undef SHT_NUM
Elliott Hughes6663f552020-01-24 14:36:10 -0800224#define SHT_NUM 20
Dmitriy Ivanov2a815362015-04-09 13:42:33 -0700225
Elliott Hughes6663f552020-01-24 14:36:10 -0800226/*
227 * Experimental support for SHT_RELR sections. For details, see proposal
228 * at https://groups.google.com/forum/#!topic/generic-abi/bX460iggiKg.
Elliott Hughesb070cab2020-01-27 16:00:19 -0800229 *
Elliott Hughes6663f552020-01-24 14:36:10 -0800230 * This was eventually replaced by SHT_RELR and DT_RELR (which are identical
231 * other than their different constants), but those constants are only
Elliott Hughesb070cab2020-01-27 16:00:19 -0800232 * supported by the OS in API levels >= 30.
Elliott Hughes6663f552020-01-24 14:36:10 -0800233 */
234#define SHT_ANDROID_RELR 0x6fffff00
235#define DT_ANDROID_RELR 0x6fffe000
236#define DT_ANDROID_RELRSZ 0x6fffe001
237#define DT_ANDROID_RELRENT 0x6fffe003
238#define DT_ANDROID_RELRCOUNT 0x6fffe005
Elliott Hughesb070cab2020-01-27 16:00:19 -0800239
240/*
241 * Android compressed REL/RELA sections. These were generated by the relocation
242 * packer in old versions of Android, and can be generated directly by lld
243 * with https://reviews.llvm.org/D39152.
244 *
245 * This was replaced by SHT_ANDROID_RELR in API level 28 (but is supported
246 * in all API levels >= 23).
247 */
248#define SHT_ANDROID_REL 0x60000001
249#define SHT_ANDROID_RELA 0x60000002
250#define DT_ANDROID_REL 0x6000000f // DT_LOOS + 2
251#define DT_ANDROID_RELSZ 0x60000010 // DT_LOOS + 3
252#define DT_ANDROID_RELA 0x60000011 // DT_LOOS + 4
253#define DT_ANDROID_RELASZ 0x60000012 // DT_LOOS + 5
Elliott Hughes0f19b102022-10-06 23:11:38 +0000254
Elliott Hughesc221bec2024-06-11 12:59:38 +0000255/* arm64 psabi. */
256
Elliott Hughesb90d6b32024-03-26 19:15:42 +0000257/* TODO: upstreamed to FreeBSD as https://github.com/freebsd/freebsd-src/pull/1141/. */
Elliott Hughes6cd03ef2024-03-21 18:06:18 +0000258#define DT_AARCH64_MEMTAG_MODE 0x70000009
259#define DT_AARCH64_MEMTAG_HEAP 0x7000000b
260#define DT_AARCH64_MEMTAG_STACK 0x7000000c
261#define DT_AARCH64_MEMTAG_GLOBALS 0x7000000d
262#define DT_AARCH64_MEMTAG_GLOBALSSZ 0x7000000f
263
Elliott Hughes0f19b102022-10-06 23:11:38 +0000264/* Linux traditionally doesn't have the trailing 64 that BSD has on these. */
265#define R_AARCH64_TLS_DTPREL R_AARCH64_TLS_DTPREL64
266#define R_AARCH64_TLS_DTPMOD R_AARCH64_TLS_DTPMOD64
267#define R_AARCH64_TLS_TPREL R_AARCH64_TLS_TPREL64
268
269/* TODO: upstream these to FreeBSD? */
270#define R_ARM_TLS_DESC 13
271#define R_ARM_IRELATIVE 160
Elliott Hughesdcfd8702023-10-18 14:47:12 -0700272
Elliott Hughesc221bec2024-06-11 12:59:38 +0000273/* riscv64 psabi. */
274
Elliott Hughesb90d6b32024-03-26 19:15:42 +0000275/* FreeBSD is missing these, found in
276 * https://github.com/riscv-non-isa/riscv-elf-psabi-doc/blob/master/riscv-elf.adoc#relocations
277 * so I've sent https://github.com/freebsd/freebsd-src/pull/1141 upstream.
278 */
Elliott Hughes6cd03ef2024-03-21 18:06:18 +0000279#define R_RISCV_TLSDESC 12
280#define R_RISCV_PLT32 59
281#define R_RISCV_SET_ULEB128 60
282#define R_RISCV_SUB_ULEB128 61
283#define R_RISCV_TLSDESC_HI20 62
284#define R_RISCV_TLSDESC_LOAD_LO12 63
285#define R_RISCV_TLSDESC_ADD_LO12 64
286#define R_RISCV_TLSDESC_CALL 65
287
Elliott Hughesc221bec2024-06-11 12:59:38 +0000288/* https://github.com/riscv-non-isa/riscv-elf-psabi-doc/blob/master/riscv-elf.adoc#program-header-table */
289#define PT_RISCV_ATTRIBUTES 0x70000003
290
291/* https://github.com/riscv-non-isa/riscv-elf-psabi-doc/blob/master/riscv-elf.adoc#section-types */
292#define SHT_RISCV_ATTRIBUTES 0x70000003
293
Elliott Hughesb90d6b32024-03-26 19:15:42 +0000294/* FreeBSD spells this slightly differently to Linux. Linux is correct according to
295 * https://github.com/riscv-non-isa/riscv-elf-psabi-doc/blob/master/riscv-elf.adoc#file-header
296 * so I've sent https://github.com/freebsd/freebsd-src/pull/1148 upstream.
297 */
298#define EF_RISCV_FLOAT_ABI EF_RISCV_FLOAT_ABI_MASK
299
300/* FreeBSD spells this slightly differently to Linux. */
Elliott Hughesdcfd8702023-10-18 14:47:12 -0700301#define R_X86_64_JUMP_SLOT R_X86_64_JMP_SLOT