blob: 1dfc0085c832f612469e3695a355e7ffb21cbac6 [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
205/* http://www.sco.com/developers/gabi/latest/ch4.eheader.html */
Elliott Hughes0266ae52014-02-10 17:46:57 -0800206#define ELFOSABI_SYSV 0 /* Synonym for ELFOSABI_NONE used by valgrind. */
Elliott Hughesa8a23f52017-10-31 17:22:41 -0700207#define ELFOSABI_GNU 3 /* Synonym for ELFOSABI_LINUX. */
Elliott Hughes0266ae52014-02-10 17:46:57 -0800208
Elliott Hughesa8a23f52017-10-31 17:22:41 -0700209/* http://www.sco.com/developers/gabi/latest/ch4.reloc.html */
210#define ELF32_R_INFO(sym, type) ((((Elf32_Word)sym) << 8) | ((type) & 0xff))
211#define ELF64_R_INFO(sym, type) ((((Elf64_Xword)sym) << 32) | ((type) & 0xffffffff))
Elliott Hughes0266ae52014-02-10 17:46:57 -0800212
Elliott Hughesa8a23f52017-10-31 17:22:41 -0700213/* http://www.sco.com/developers/gabi/latest/ch4.symtab.html */
Elliott Hughesd390df12017-04-30 22:56:10 -0700214#undef ELF_ST_TYPE
215#define ELF_ST_TYPE(x) ((x) & 0xf)
216#define ELF_ST_INFO(b,t) (((b) << 4) + ((t) & 0xf))
217#define ELF32_ST_INFO(b,t) ELF_ST_INFO(b,t)
218#define ELF64_ST_INFO(b,t) ELF_ST_INFO(b,t)
219
Elliott Hughesa8a23f52017-10-31 17:22:41 -0700220/* http://www.sco.com/developers/gabi/latest/ch4.sheader.html */
Elliott Hughesa8a23f52017-10-31 17:22:41 -0700221#define GRP_MASKOS 0x0ff00000
222#define GRP_MASKPROC 0xf0000000
Greg Hackmann8874d882017-10-31 13:25:03 -0700223
Elliott Hughesa8a23f52017-10-31 17:22:41 -0700224/* http://www.sco.com/developers/gabi/latest/ch4.sheader.html */
Elliott Hughes0f19b102022-10-06 23:11:38 +0000225/*
226 * Standard replacement for SHT_ANDROID_RELR.
227 */
Elliott Hughes6663f552020-01-24 14:36:10 -0800228#define SHT_RELR 19
Elliott Hughesa8a23f52017-10-31 17:22:41 -0700229#undef SHT_NUM
Elliott Hughes6663f552020-01-24 14:36:10 -0800230#define SHT_NUM 20
Dmitriy Ivanov2a815362015-04-09 13:42:33 -0700231
Elliott Hughes6663f552020-01-24 14:36:10 -0800232/*
233 * Experimental support for SHT_RELR sections. For details, see proposal
234 * at https://groups.google.com/forum/#!topic/generic-abi/bX460iggiKg.
Elliott Hughesb070cab2020-01-27 16:00:19 -0800235 *
Elliott Hughes6663f552020-01-24 14:36:10 -0800236 * This was eventually replaced by SHT_RELR and DT_RELR (which are identical
237 * other than their different constants), but those constants are only
Elliott Hughesb070cab2020-01-27 16:00:19 -0800238 * supported by the OS in API levels >= 30.
Elliott Hughes6663f552020-01-24 14:36:10 -0800239 */
240#define SHT_ANDROID_RELR 0x6fffff00
241#define DT_ANDROID_RELR 0x6fffe000
242#define DT_ANDROID_RELRSZ 0x6fffe001
243#define DT_ANDROID_RELRENT 0x6fffe003
244#define DT_ANDROID_RELRCOUNT 0x6fffe005
Elliott Hughesb070cab2020-01-27 16:00:19 -0800245
246/*
247 * Android compressed REL/RELA sections. These were generated by the relocation
248 * packer in old versions of Android, and can be generated directly by lld
249 * with https://reviews.llvm.org/D39152.
250 *
251 * This was replaced by SHT_ANDROID_RELR in API level 28 (but is supported
252 * in all API levels >= 23).
253 */
254#define SHT_ANDROID_REL 0x60000001
255#define SHT_ANDROID_RELA 0x60000002
256#define DT_ANDROID_REL 0x6000000f // DT_LOOS + 2
257#define DT_ANDROID_RELSZ 0x60000010 // DT_LOOS + 3
258#define DT_ANDROID_RELA 0x60000011 // DT_LOOS + 4
259#define DT_ANDROID_RELASZ 0x60000012 // DT_LOOS + 5
Elliott Hughes0f19b102022-10-06 23:11:38 +0000260
261/* Linux traditionally doesn't have the trailing 64 that BSD has on these. */
262#define R_AARCH64_TLS_DTPREL R_AARCH64_TLS_DTPREL64
263#define R_AARCH64_TLS_DTPMOD R_AARCH64_TLS_DTPMOD64
264#define R_AARCH64_TLS_TPREL R_AARCH64_TLS_TPREL64
265
266/* TODO: upstream these to FreeBSD? */
267#define R_ARM_TLS_DESC 13
268#define R_ARM_IRELATIVE 160
269#define R_X86_64_JUMP_SLOT 7