blob: ce7188cbdae58acb552762a9640e890fd8fe515e [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
H. Peter Anvinc889ba82013-04-16 16:02:58 -07002/* This is included from relocs_32/64.c */
H. Peter Anvin873b5272009-12-14 13:55:20 -08003
Kees Cookbf116552013-04-12 13:13:42 -07004#define ElfW(type) _ElfW(ELF_BITS, type)
5#define _ElfW(bits, type) __ElfW(bits, type)
6#define __ElfW(bits, type) Elf##bits##_##type
7
Kees Cook946166a2013-04-12 13:13:44 -07008#define Elf_Addr ElfW(Addr)
Kees Cookbf116552013-04-12 13:13:42 -07009#define Elf_Ehdr ElfW(Ehdr)
10#define Elf_Phdr ElfW(Phdr)
11#define Elf_Shdr ElfW(Shdr)
12#define Elf_Sym ElfW(Sym)
13
Artem Savkovf36e7492018-11-29 16:56:15 +010014static Elf_Ehdr ehdr;
15static unsigned long shnum;
16static unsigned int shstrndx;
Kees Cook5d442e62013-04-12 13:13:43 -070017
18struct relocs {
19 uint32_t *offset;
20 unsigned long count;
21 unsigned long size;
22};
23
24static struct relocs relocs16;
25static struct relocs relocs32;
Jan Beulich6d24c5f2014-11-04 08:50:18 +000026#if ELF_BITS == 64
27static struct relocs relocs32neg;
Kees Cook946166a2013-04-12 13:13:44 -070028static struct relocs relocs64;
Jan Beulich6d24c5f2014-11-04 08:50:18 +000029#endif
Eric W. Biederman968de4f2006-12-07 02:14:04 +010030
H. Peter Anvin908ec7a2008-06-30 14:42:18 -070031struct section {
Kees Cookbf116552013-04-12 13:13:42 -070032 Elf_Shdr shdr;
H. Peter Anvin908ec7a2008-06-30 14:42:18 -070033 struct section *link;
Kees Cookbf116552013-04-12 13:13:42 -070034 Elf_Sym *symtab;
35 Elf_Rel *reltab;
H. Peter Anvin908ec7a2008-06-30 14:42:18 -070036 char *strtab;
37};
38static struct section *secs;
39
H. Peter Anvin6520fe52012-05-08 21:22:24 +030040static const char * const sym_regex_kernel[S_NSYMTYPES] = {
Vivek Goyal6a044b32006-12-07 02:14:04 +010041/*
42 * Following symbols have been audited. There values are constant and do
43 * not change if bzImage is loaded at a different physical address than
44 * the address for which it has been compiled. Don't warn user about
45 * absolute relocations present w.r.t these symbols.
46 */
H. Peter Anvin6520fe52012-05-08 21:22:24 +030047 [S_ABS] =
H. Peter Anvin873b5272009-12-14 13:55:20 -080048 "^(xen_irq_disable_direct_reloc$|"
49 "xen_save_fl_direct_reloc$|"
50 "VDSO|"
H. Peter Anvin6520fe52012-05-08 21:22:24 +030051 "__crc_)",
Vivek Goyal6a044b32006-12-07 02:14:04 +010052
H. Peter Anvin873b5272009-12-14 13:55:20 -080053/*
54 * These symbols are known to be relative, even if the linker marks them
55 * as absolute (typically defined outside any section in the linker script.)
56 */
H. Peter Anvin6520fe52012-05-08 21:22:24 +030057 [S_REL] =
H. Peter Anvina3e854d2012-05-18 00:24:09 -070058 "^(__init_(begin|end)|"
59 "__x86_cpu_dev_(start|end)|"
60 "(__parainstructions|__alt_instructions)(|_end)|"
61 "(__iommu_table|__apicdrivers|__smp_locks)(|_end)|"
H. Peter Anvinfd952812012-05-23 14:02:34 -070062 "__(start|end)_pci_.*|"
63 "__(start|end)_builtin_fw|"
64 "__(start|stop)___ksymtab(|_gpl|_unused|_unused_gpl|_gpl_future)|"
65 "__(start|stop)___kcrctab(|_gpl|_unused|_unused_gpl|_gpl_future)|"
66 "__(start|stop)___param|"
67 "__(start|stop)___modver|"
68 "__(start|stop)___bug_table|"
69 "__tracedata_(start|end)|"
70 "__(start|stop)_notes|"
71 "__end_rodata|"
Joerg Roedela29dba12018-08-09 11:44:49 +020072 "__end_rodata_aligned|"
H. Peter Anvinfd952812012-05-23 14:02:34 -070073 "__initramfs_start|"
H. Peter Anvinea17e742012-05-24 07:01:38 -070074 "(jiffies|jiffies_64)|"
H. Peter Anvinc889ba82013-04-16 16:02:58 -070075#if ELF_BITS == 64
Kees Cook946166a2013-04-12 13:13:44 -070076 "__per_cpu_load|"
77 "init_per_cpu__.*|"
78 "__end_rodata_hpage_align|"
79#endif
Stefani Seiboldd2312e32014-03-17 23:22:01 +010080 "__vvar_page|"
H. Peter Anvina3e854d2012-05-18 00:24:09 -070081 "_end)$"
H. Peter Anvin6520fe52012-05-08 21:22:24 +030082};
83
84
85static const char * const sym_regex_realmode[S_NSYMTYPES] = {
86/*
H. Peter Anvin2a6de312012-05-08 21:22:31 +030087 * These symbols are known to be relative, even if the linker marks them
88 * as absolute (typically defined outside any section in the linker script.)
89 */
90 [S_REL] =
91 "^pa_",
92
93/*
H. Peter Anvin6520fe52012-05-08 21:22:24 +030094 * These are 16-bit segment symbols when compiling 16-bit code.
95 */
96 [S_SEG] =
97 "^real_mode_seg$",
98
99/*
100 * These are offsets belonging to segments, as opposed to linear addresses,
101 * when compiling 16-bit code.
102 */
103 [S_LIN] =
104 "^pa_",
105};
106
107static const char * const *sym_regex;
108
109static regex_t sym_regex_c[S_NSYMTYPES];
110static int is_reloc(enum symtype type, const char *sym_name)
H. Peter Anvin873b5272009-12-14 13:55:20 -0800111{
H. Peter Anvin6520fe52012-05-08 21:22:24 +0300112 return sym_regex[type] &&
113 !regexec(&sym_regex_c[type], sym_name, 0, NULL, 0);
H. Peter Anvin873b5272009-12-14 13:55:20 -0800114}
115
H. Peter Anvin6520fe52012-05-08 21:22:24 +0300116static void regex_init(int use_real_mode)
H. Peter Anvin873b5272009-12-14 13:55:20 -0800117{
118 char errbuf[128];
119 int err;
H. Peter Anvin6520fe52012-05-08 21:22:24 +0300120 int i;
H. Peter Anvin873b5272009-12-14 13:55:20 -0800121
H. Peter Anvin6520fe52012-05-08 21:22:24 +0300122 if (use_real_mode)
123 sym_regex = sym_regex_realmode;
124 else
125 sym_regex = sym_regex_kernel;
126
127 for (i = 0; i < S_NSYMTYPES; i++) {
128 if (!sym_regex[i])
129 continue;
130
131 err = regcomp(&sym_regex_c[i], sym_regex[i],
132 REG_EXTENDED|REG_NOSUB);
133
134 if (err) {
Jordan Borgner0e96f312018-10-28 12:58:28 +0000135 regerror(err, &sym_regex_c[i], errbuf, sizeof(errbuf));
H. Peter Anvin6520fe52012-05-08 21:22:24 +0300136 die("%s", errbuf);
137 }
H. Peter Anvin873b5272009-12-14 13:55:20 -0800138 }
Vivek Goyal6a044b32006-12-07 02:14:04 +0100139}
140
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100141static const char *sym_type(unsigned type)
142{
143 static const char *type_name[] = {
144#define SYM_TYPE(X) [X] = #X
145 SYM_TYPE(STT_NOTYPE),
146 SYM_TYPE(STT_OBJECT),
147 SYM_TYPE(STT_FUNC),
148 SYM_TYPE(STT_SECTION),
149 SYM_TYPE(STT_FILE),
150 SYM_TYPE(STT_COMMON),
151 SYM_TYPE(STT_TLS),
152#undef SYM_TYPE
153 };
154 const char *name = "unknown sym type name";
Robert P. J. Dayca820182007-02-17 19:10:01 +0100155 if (type < ARRAY_SIZE(type_name)) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100156 name = type_name[type];
157 }
158 return name;
159}
160
161static const char *sym_bind(unsigned bind)
162{
163 static const char *bind_name[] = {
164#define SYM_BIND(X) [X] = #X
165 SYM_BIND(STB_LOCAL),
166 SYM_BIND(STB_GLOBAL),
167 SYM_BIND(STB_WEAK),
168#undef SYM_BIND
169 };
170 const char *name = "unknown sym bind name";
Robert P. J. Dayca820182007-02-17 19:10:01 +0100171 if (bind < ARRAY_SIZE(bind_name)) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100172 name = bind_name[bind];
173 }
174 return name;
175}
176
177static const char *sym_visibility(unsigned visibility)
178{
179 static const char *visibility_name[] = {
180#define SYM_VISIBILITY(X) [X] = #X
181 SYM_VISIBILITY(STV_DEFAULT),
182 SYM_VISIBILITY(STV_INTERNAL),
183 SYM_VISIBILITY(STV_HIDDEN),
184 SYM_VISIBILITY(STV_PROTECTED),
185#undef SYM_VISIBILITY
186 };
187 const char *name = "unknown sym visibility name";
Robert P. J. Dayca820182007-02-17 19:10:01 +0100188 if (visibility < ARRAY_SIZE(visibility_name)) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100189 name = visibility_name[visibility];
190 }
191 return name;
192}
193
194static const char *rel_type(unsigned type)
195{
196 static const char *type_name[] = {
197#define REL_TYPE(X) [X] = #X
H. Peter Anvinc889ba82013-04-16 16:02:58 -0700198#if ELF_BITS == 64
Kees Cook946166a2013-04-12 13:13:44 -0700199 REL_TYPE(R_X86_64_NONE),
200 REL_TYPE(R_X86_64_64),
Ard Biesheuvelb40a1422018-09-18 23:51:39 -0700201 REL_TYPE(R_X86_64_PC64),
Kees Cook946166a2013-04-12 13:13:44 -0700202 REL_TYPE(R_X86_64_PC32),
203 REL_TYPE(R_X86_64_GOT32),
204 REL_TYPE(R_X86_64_PLT32),
205 REL_TYPE(R_X86_64_COPY),
206 REL_TYPE(R_X86_64_GLOB_DAT),
207 REL_TYPE(R_X86_64_JUMP_SLOT),
208 REL_TYPE(R_X86_64_RELATIVE),
209 REL_TYPE(R_X86_64_GOTPCREL),
210 REL_TYPE(R_X86_64_32),
211 REL_TYPE(R_X86_64_32S),
212 REL_TYPE(R_X86_64_16),
213 REL_TYPE(R_X86_64_PC16),
214 REL_TYPE(R_X86_64_8),
215 REL_TYPE(R_X86_64_PC8),
216#else
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100217 REL_TYPE(R_386_NONE),
218 REL_TYPE(R_386_32),
219 REL_TYPE(R_386_PC32),
220 REL_TYPE(R_386_GOT32),
221 REL_TYPE(R_386_PLT32),
222 REL_TYPE(R_386_COPY),
223 REL_TYPE(R_386_GLOB_DAT),
224 REL_TYPE(R_386_JMP_SLOT),
225 REL_TYPE(R_386_RELATIVE),
226 REL_TYPE(R_386_GOTOFF),
227 REL_TYPE(R_386_GOTPC),
H. Peter Anvin6520fe52012-05-08 21:22:24 +0300228 REL_TYPE(R_386_8),
229 REL_TYPE(R_386_PC8),
230 REL_TYPE(R_386_16),
231 REL_TYPE(R_386_PC16),
Kees Cook946166a2013-04-12 13:13:44 -0700232#endif
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100233#undef REL_TYPE
234 };
235 const char *name = "unknown type rel type name";
H. Peter Anvin873b5272009-12-14 13:55:20 -0800236 if (type < ARRAY_SIZE(type_name) && type_name[type]) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100237 name = type_name[type];
238 }
239 return name;
240}
241
242static const char *sec_name(unsigned shndx)
243{
244 const char *sec_strtab;
245 const char *name;
Artem Savkovf36e7492018-11-29 16:56:15 +0100246 sec_strtab = secs[shstrndx].strtab;
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100247 name = "<noname>";
Artem Savkovf36e7492018-11-29 16:56:15 +0100248 if (shndx < shnum) {
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700249 name = sec_strtab + secs[shndx].shdr.sh_name;
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100250 }
251 else if (shndx == SHN_ABS) {
252 name = "ABSOLUTE";
253 }
254 else if (shndx == SHN_COMMON) {
255 name = "COMMON";
256 }
257 return name;
258}
259
Kees Cookbf116552013-04-12 13:13:42 -0700260static const char *sym_name(const char *sym_strtab, Elf_Sym *sym)
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100261{
262 const char *name;
263 name = "<noname>";
264 if (sym->st_name) {
265 name = sym_strtab + sym->st_name;
266 }
267 else {
H. Peter Anvin6520fe52012-05-08 21:22:24 +0300268 name = sec_name(sym->st_shndx);
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100269 }
270 return name;
271}
272
Kees Cook946166a2013-04-12 13:13:44 -0700273static Elf_Sym *sym_lookup(const char *symname)
274{
275 int i;
Artem Savkovf36e7492018-11-29 16:56:15 +0100276 for (i = 0; i < shnum; i++) {
Kees Cook946166a2013-04-12 13:13:44 -0700277 struct section *sec = &secs[i];
278 long nsyms;
279 char *strtab;
280 Elf_Sym *symtab;
281 Elf_Sym *sym;
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100282
Kees Cook946166a2013-04-12 13:13:44 -0700283 if (sec->shdr.sh_type != SHT_SYMTAB)
284 continue;
285
286 nsyms = sec->shdr.sh_size/sizeof(Elf_Sym);
287 symtab = sec->symtab;
288 strtab = sec->link->strtab;
289
290 for (sym = symtab; --nsyms >= 0; sym++) {
291 if (!sym->st_name)
292 continue;
293 if (strcmp(symname, strtab + sym->st_name) == 0)
294 return sym;
295 }
296 }
297 return 0;
298}
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100299
Linus Torvalds13da9e22010-05-26 08:30:15 -0700300#if BYTE_ORDER == LITTLE_ENDIAN
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100301#define le16_to_cpu(val) (val)
302#define le32_to_cpu(val) (val)
Kees Cook946166a2013-04-12 13:13:44 -0700303#define le64_to_cpu(val) (val)
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100304#endif
Linus Torvalds13da9e22010-05-26 08:30:15 -0700305#if BYTE_ORDER == BIG_ENDIAN
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100306#define le16_to_cpu(val) bswap_16(val)
307#define le32_to_cpu(val) bswap_32(val)
Kees Cook946166a2013-04-12 13:13:44 -0700308#define le64_to_cpu(val) bswap_64(val)
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100309#endif
310
311static uint16_t elf16_to_cpu(uint16_t val)
312{
313 return le16_to_cpu(val);
314}
315
316static uint32_t elf32_to_cpu(uint32_t val)
317{
318 return le32_to_cpu(val);
319}
320
Kees Cookbf116552013-04-12 13:13:42 -0700321#define elf_half_to_cpu(x) elf16_to_cpu(x)
322#define elf_word_to_cpu(x) elf32_to_cpu(x)
Kees Cook946166a2013-04-12 13:13:44 -0700323
H. Peter Anvinc889ba82013-04-16 16:02:58 -0700324#if ELF_BITS == 64
Kees Cook946166a2013-04-12 13:13:44 -0700325static uint64_t elf64_to_cpu(uint64_t val)
326{
327 return le64_to_cpu(val);
328}
329#define elf_addr_to_cpu(x) elf64_to_cpu(x)
330#define elf_off_to_cpu(x) elf64_to_cpu(x)
331#define elf_xword_to_cpu(x) elf64_to_cpu(x)
332#else
Kees Cookbf116552013-04-12 13:13:42 -0700333#define elf_addr_to_cpu(x) elf32_to_cpu(x)
334#define elf_off_to_cpu(x) elf32_to_cpu(x)
335#define elf_xword_to_cpu(x) elf32_to_cpu(x)
Kees Cook946166a2013-04-12 13:13:44 -0700336#endif
Kees Cookbf116552013-04-12 13:13:42 -0700337
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100338static void read_ehdr(FILE *fp)
339{
340 if (fread(&ehdr, sizeof(ehdr), 1, fp) != 1) {
341 die("Cannot read ELF header: %s\n",
342 strerror(errno));
343 }
Cyrill Gorcunov8bd17962008-05-03 14:18:03 +0400344 if (memcmp(ehdr.e_ident, ELFMAG, SELFMAG) != 0) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100345 die("No ELF magic\n");
346 }
Kees Cookbf116552013-04-12 13:13:42 -0700347 if (ehdr.e_ident[EI_CLASS] != ELF_CLASS) {
348 die("Not a %d bit executable\n", ELF_BITS);
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100349 }
350 if (ehdr.e_ident[EI_DATA] != ELFDATA2LSB) {
351 die("Not a LSB ELF executable\n");
352 }
353 if (ehdr.e_ident[EI_VERSION] != EV_CURRENT) {
354 die("Unknown ELF version\n");
355 }
356 /* Convert the fields to native endian */
Kees Cookbf116552013-04-12 13:13:42 -0700357 ehdr.e_type = elf_half_to_cpu(ehdr.e_type);
358 ehdr.e_machine = elf_half_to_cpu(ehdr.e_machine);
359 ehdr.e_version = elf_word_to_cpu(ehdr.e_version);
360 ehdr.e_entry = elf_addr_to_cpu(ehdr.e_entry);
361 ehdr.e_phoff = elf_off_to_cpu(ehdr.e_phoff);
362 ehdr.e_shoff = elf_off_to_cpu(ehdr.e_shoff);
363 ehdr.e_flags = elf_word_to_cpu(ehdr.e_flags);
364 ehdr.e_ehsize = elf_half_to_cpu(ehdr.e_ehsize);
365 ehdr.e_phentsize = elf_half_to_cpu(ehdr.e_phentsize);
366 ehdr.e_phnum = elf_half_to_cpu(ehdr.e_phnum);
367 ehdr.e_shentsize = elf_half_to_cpu(ehdr.e_shentsize);
368 ehdr.e_shnum = elf_half_to_cpu(ehdr.e_shnum);
369 ehdr.e_shstrndx = elf_half_to_cpu(ehdr.e_shstrndx);
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100370
Artem Savkovf36e7492018-11-29 16:56:15 +0100371 shnum = ehdr.e_shnum;
372 shstrndx = ehdr.e_shstrndx;
373
374 if ((ehdr.e_type != ET_EXEC) && (ehdr.e_type != ET_DYN))
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100375 die("Unsupported ELF header type\n");
Artem Savkovf36e7492018-11-29 16:56:15 +0100376 if (ehdr.e_machine != ELF_MACHINE)
Kees Cookbf116552013-04-12 13:13:42 -0700377 die("Not for %s\n", ELF_MACHINE_NAME);
Artem Savkovf36e7492018-11-29 16:56:15 +0100378 if (ehdr.e_version != EV_CURRENT)
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100379 die("Unknown ELF version\n");
Artem Savkovf36e7492018-11-29 16:56:15 +0100380 if (ehdr.e_ehsize != sizeof(Elf_Ehdr))
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100381 die("Bad Elf header size\n");
Artem Savkovf36e7492018-11-29 16:56:15 +0100382 if (ehdr.e_phentsize != sizeof(Elf_Phdr))
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100383 die("Bad program header entry\n");
Artem Savkovf36e7492018-11-29 16:56:15 +0100384 if (ehdr.e_shentsize != sizeof(Elf_Shdr))
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100385 die("Bad section header entry\n");
Artem Savkovf36e7492018-11-29 16:56:15 +0100386
387
388 if (shnum == SHN_UNDEF || shstrndx == SHN_XINDEX) {
389 Elf_Shdr shdr;
390
391 if (fseek(fp, ehdr.e_shoff, SEEK_SET) < 0)
392 die("Seek to %d failed: %s\n", ehdr.e_shoff, strerror(errno));
393
394 if (fread(&shdr, sizeof(shdr), 1, fp) != 1)
395 die("Cannot read initial ELF section header: %s\n", strerror(errno));
396
397 if (shnum == SHN_UNDEF)
398 shnum = elf_xword_to_cpu(shdr.sh_size);
399
400 if (shstrndx == SHN_XINDEX)
401 shstrndx = elf_word_to_cpu(shdr.sh_link);
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100402 }
Artem Savkovf36e7492018-11-29 16:56:15 +0100403
404 if (shstrndx >= shnum)
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100405 die("String table index out of bounds\n");
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100406}
407
408static void read_shdrs(FILE *fp)
409{
410 int i;
Kees Cookbf116552013-04-12 13:13:42 -0700411 Elf_Shdr shdr;
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700412
Artem Savkovf36e7492018-11-29 16:56:15 +0100413 secs = calloc(shnum, sizeof(struct section));
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700414 if (!secs) {
415 die("Unable to allocate %d section headers\n",
Artem Savkovf36e7492018-11-29 16:56:15 +0100416 shnum);
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100417 }
418 if (fseek(fp, ehdr.e_shoff, SEEK_SET) < 0) {
419 die("Seek to %d failed: %s\n",
420 ehdr.e_shoff, strerror(errno));
421 }
Artem Savkovf36e7492018-11-29 16:56:15 +0100422 for (i = 0; i < shnum; i++) {
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700423 struct section *sec = &secs[i];
Jordan Borgner0e96f312018-10-28 12:58:28 +0000424 if (fread(&shdr, sizeof(shdr), 1, fp) != 1)
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700425 die("Cannot read ELF section headers %d/%d: %s\n",
Artem Savkovf36e7492018-11-29 16:56:15 +0100426 i, shnum, strerror(errno));
Kees Cookbf116552013-04-12 13:13:42 -0700427 sec->shdr.sh_name = elf_word_to_cpu(shdr.sh_name);
428 sec->shdr.sh_type = elf_word_to_cpu(shdr.sh_type);
429 sec->shdr.sh_flags = elf_xword_to_cpu(shdr.sh_flags);
430 sec->shdr.sh_addr = elf_addr_to_cpu(shdr.sh_addr);
431 sec->shdr.sh_offset = elf_off_to_cpu(shdr.sh_offset);
432 sec->shdr.sh_size = elf_xword_to_cpu(shdr.sh_size);
433 sec->shdr.sh_link = elf_word_to_cpu(shdr.sh_link);
434 sec->shdr.sh_info = elf_word_to_cpu(shdr.sh_info);
435 sec->shdr.sh_addralign = elf_xword_to_cpu(shdr.sh_addralign);
436 sec->shdr.sh_entsize = elf_xword_to_cpu(shdr.sh_entsize);
Artem Savkovf36e7492018-11-29 16:56:15 +0100437 if (sec->shdr.sh_link < shnum)
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700438 sec->link = &secs[sec->shdr.sh_link];
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100439 }
440
441}
442
443static void read_strtabs(FILE *fp)
444{
445 int i;
Artem Savkovf36e7492018-11-29 16:56:15 +0100446 for (i = 0; i < shnum; i++) {
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700447 struct section *sec = &secs[i];
448 if (sec->shdr.sh_type != SHT_STRTAB) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100449 continue;
450 }
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700451 sec->strtab = malloc(sec->shdr.sh_size);
452 if (!sec->strtab) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100453 die("malloc of %d bytes for strtab failed\n",
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700454 sec->shdr.sh_size);
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100455 }
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700456 if (fseek(fp, sec->shdr.sh_offset, SEEK_SET) < 0) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100457 die("Seek to %d failed: %s\n",
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700458 sec->shdr.sh_offset, strerror(errno));
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100459 }
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700460 if (fread(sec->strtab, 1, sec->shdr.sh_size, fp)
461 != sec->shdr.sh_size) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100462 die("Cannot read symbol table: %s\n",
463 strerror(errno));
464 }
465 }
466}
467
468static void read_symtabs(FILE *fp)
469{
470 int i,j;
Artem Savkovf36e7492018-11-29 16:56:15 +0100471 for (i = 0; i < shnum; i++) {
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700472 struct section *sec = &secs[i];
473 if (sec->shdr.sh_type != SHT_SYMTAB) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100474 continue;
475 }
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700476 sec->symtab = malloc(sec->shdr.sh_size);
477 if (!sec->symtab) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100478 die("malloc of %d bytes for symtab failed\n",
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700479 sec->shdr.sh_size);
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100480 }
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700481 if (fseek(fp, sec->shdr.sh_offset, SEEK_SET) < 0) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100482 die("Seek to %d failed: %s\n",
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700483 sec->shdr.sh_offset, strerror(errno));
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100484 }
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700485 if (fread(sec->symtab, 1, sec->shdr.sh_size, fp)
486 != sec->shdr.sh_size) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100487 die("Cannot read symbol table: %s\n",
488 strerror(errno));
489 }
Kees Cookbf116552013-04-12 13:13:42 -0700490 for (j = 0; j < sec->shdr.sh_size/sizeof(Elf_Sym); j++) {
491 Elf_Sym *sym = &sec->symtab[j];
492 sym->st_name = elf_word_to_cpu(sym->st_name);
493 sym->st_value = elf_addr_to_cpu(sym->st_value);
494 sym->st_size = elf_xword_to_cpu(sym->st_size);
495 sym->st_shndx = elf_half_to_cpu(sym->st_shndx);
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100496 }
497 }
498}
499
500
501static void read_relocs(FILE *fp)
502{
503 int i,j;
Artem Savkovf36e7492018-11-29 16:56:15 +0100504 for (i = 0; i < shnum; i++) {
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700505 struct section *sec = &secs[i];
Kees Cookbf116552013-04-12 13:13:42 -0700506 if (sec->shdr.sh_type != SHT_REL_TYPE) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100507 continue;
508 }
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700509 sec->reltab = malloc(sec->shdr.sh_size);
510 if (!sec->reltab) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100511 die("malloc of %d bytes for relocs failed\n",
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700512 sec->shdr.sh_size);
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100513 }
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700514 if (fseek(fp, sec->shdr.sh_offset, SEEK_SET) < 0) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100515 die("Seek to %d failed: %s\n",
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700516 sec->shdr.sh_offset, strerror(errno));
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100517 }
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700518 if (fread(sec->reltab, 1, sec->shdr.sh_size, fp)
519 != sec->shdr.sh_size) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100520 die("Cannot read symbol table: %s\n",
521 strerror(errno));
522 }
Kees Cookbf116552013-04-12 13:13:42 -0700523 for (j = 0; j < sec->shdr.sh_size/sizeof(Elf_Rel); j++) {
524 Elf_Rel *rel = &sec->reltab[j];
525 rel->r_offset = elf_addr_to_cpu(rel->r_offset);
526 rel->r_info = elf_xword_to_cpu(rel->r_info);
Kees Cook946166a2013-04-12 13:13:44 -0700527#if (SHT_REL_TYPE == SHT_RELA)
528 rel->r_addend = elf_xword_to_cpu(rel->r_addend);
529#endif
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100530 }
531 }
532}
533
534
535static void print_absolute_symbols(void)
536{
537 int i;
Kees Cook946166a2013-04-12 13:13:44 -0700538 const char *format;
539
H. Peter Anvinc889ba82013-04-16 16:02:58 -0700540 if (ELF_BITS == 64)
Kees Cook946166a2013-04-12 13:13:44 -0700541 format = "%5d %016"PRIx64" %5"PRId64" %10s %10s %12s %s\n";
542 else
543 format = "%5d %08"PRIx32" %5"PRId32" %10s %10s %12s %s\n";
544
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100545 printf("Absolute symbols\n");
546 printf(" Num: Value Size Type Bind Visibility Name\n");
Artem Savkovf36e7492018-11-29 16:56:15 +0100547 for (i = 0; i < shnum; i++) {
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700548 struct section *sec = &secs[i];
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100549 char *sym_strtab;
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100550 int j;
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700551
552 if (sec->shdr.sh_type != SHT_SYMTAB) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100553 continue;
554 }
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700555 sym_strtab = sec->link->strtab;
Kees Cookbf116552013-04-12 13:13:42 -0700556 for (j = 0; j < sec->shdr.sh_size/sizeof(Elf_Sym); j++) {
557 Elf_Sym *sym;
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100558 const char *name;
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700559 sym = &sec->symtab[j];
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100560 name = sym_name(sym_strtab, sym);
561 if (sym->st_shndx != SHN_ABS) {
562 continue;
563 }
Kees Cook946166a2013-04-12 13:13:44 -0700564 printf(format,
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100565 j, sym->st_value, sym->st_size,
Kees Cookbf116552013-04-12 13:13:42 -0700566 sym_type(ELF_ST_TYPE(sym->st_info)),
567 sym_bind(ELF_ST_BIND(sym->st_info)),
568 sym_visibility(ELF_ST_VISIBILITY(sym->st_other)),
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100569 name);
570 }
571 }
572 printf("\n");
573}
574
575static void print_absolute_relocs(void)
576{
Vivek Goyal6a044b32006-12-07 02:14:04 +0100577 int i, printed = 0;
Kees Cook946166a2013-04-12 13:13:44 -0700578 const char *format;
579
H. Peter Anvinc889ba82013-04-16 16:02:58 -0700580 if (ELF_BITS == 64)
Kees Cook946166a2013-04-12 13:13:44 -0700581 format = "%016"PRIx64" %016"PRIx64" %10s %016"PRIx64" %s\n";
582 else
583 format = "%08"PRIx32" %08"PRIx32" %10s %08"PRIx32" %s\n";
Vivek Goyal6a044b32006-12-07 02:14:04 +0100584
Artem Savkovf36e7492018-11-29 16:56:15 +0100585 for (i = 0; i < shnum; i++) {
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700586 struct section *sec = &secs[i];
587 struct section *sec_applies, *sec_symtab;
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100588 char *sym_strtab;
Kees Cookbf116552013-04-12 13:13:42 -0700589 Elf_Sym *sh_symtab;
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100590 int j;
Kees Cookbf116552013-04-12 13:13:42 -0700591 if (sec->shdr.sh_type != SHT_REL_TYPE) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100592 continue;
593 }
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700594 sec_symtab = sec->link;
595 sec_applies = &secs[sec->shdr.sh_info];
596 if (!(sec_applies->shdr.sh_flags & SHF_ALLOC)) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100597 continue;
598 }
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700599 sh_symtab = sec_symtab->symtab;
600 sym_strtab = sec_symtab->link->strtab;
Kees Cookbf116552013-04-12 13:13:42 -0700601 for (j = 0; j < sec->shdr.sh_size/sizeof(Elf_Rel); j++) {
602 Elf_Rel *rel;
603 Elf_Sym *sym;
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100604 const char *name;
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700605 rel = &sec->reltab[j];
Kees Cookbf116552013-04-12 13:13:42 -0700606 sym = &sh_symtab[ELF_R_SYM(rel->r_info)];
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100607 name = sym_name(sym_strtab, sym);
608 if (sym->st_shndx != SHN_ABS) {
609 continue;
610 }
Vivek Goyal6a044b32006-12-07 02:14:04 +0100611
612 /* Absolute symbols are not relocated if bzImage is
613 * loaded at a non-compiled address. Display a warning
614 * to user at compile time about the absolute
615 * relocations present.
616 *
617 * User need to audit the code to make sure
618 * some symbols which should have been section
619 * relative have not become absolute because of some
620 * linker optimization or wrong programming usage.
621 *
622 * Before warning check if this absolute symbol
623 * relocation is harmless.
624 */
H. Peter Anvin6520fe52012-05-08 21:22:24 +0300625 if (is_reloc(S_ABS, name) || is_reloc(S_REL, name))
Vivek Goyal6a044b32006-12-07 02:14:04 +0100626 continue;
627
628 if (!printed) {
629 printf("WARNING: Absolute relocations"
630 " present\n");
631 printf("Offset Info Type Sym.Value "
632 "Sym.Name\n");
633 printed = 1;
634 }
635
Kees Cook946166a2013-04-12 13:13:44 -0700636 printf(format,
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100637 rel->r_offset,
638 rel->r_info,
Kees Cookbf116552013-04-12 13:13:42 -0700639 rel_type(ELF_R_TYPE(rel->r_info)),
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100640 sym->st_value,
641 name);
642 }
643 }
Vivek Goyal6a044b32006-12-07 02:14:04 +0100644
645 if (printed)
646 printf("\n");
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100647}
648
Kees Cook5d442e62013-04-12 13:13:43 -0700649static void add_reloc(struct relocs *r, uint32_t offset)
650{
651 if (r->count == r->size) {
652 unsigned long newsize = r->size + 50000;
653 void *mem = realloc(r->offset, newsize * sizeof(r->offset[0]));
654
655 if (!mem)
656 die("realloc of %ld entries for relocs failed\n",
657 newsize);
658 r->offset = mem;
659 r->size = newsize;
660 }
661 r->offset[r->count++] = offset;
662}
663
664static void walk_relocs(int (*process)(struct section *sec, Elf_Rel *rel,
665 Elf_Sym *sym, const char *symname))
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100666{
667 int i;
668 /* Walk through the relocations */
Artem Savkovf36e7492018-11-29 16:56:15 +0100669 for (i = 0; i < shnum; i++) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100670 char *sym_strtab;
Kees Cookbf116552013-04-12 13:13:42 -0700671 Elf_Sym *sh_symtab;
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700672 struct section *sec_applies, *sec_symtab;
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100673 int j;
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700674 struct section *sec = &secs[i];
675
Kees Cookbf116552013-04-12 13:13:42 -0700676 if (sec->shdr.sh_type != SHT_REL_TYPE) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100677 continue;
678 }
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700679 sec_symtab = sec->link;
680 sec_applies = &secs[sec->shdr.sh_info];
681 if (!(sec_applies->shdr.sh_flags & SHF_ALLOC)) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100682 continue;
683 }
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700684 sh_symtab = sec_symtab->symtab;
H. Peter Anvincc65f1e2008-10-03 13:00:56 -0700685 sym_strtab = sec_symtab->link->strtab;
Kees Cookbf116552013-04-12 13:13:42 -0700686 for (j = 0; j < sec->shdr.sh_size/sizeof(Elf_Rel); j++) {
Kees Cook5d442e62013-04-12 13:13:43 -0700687 Elf_Rel *rel = &sec->reltab[j];
688 Elf_Sym *sym = &sh_symtab[ELF_R_SYM(rel->r_info)];
689 const char *symname = sym_name(sym_strtab, sym);
H. Peter Anvin24ab82b2012-05-18 09:52:01 -0700690
Kees Cook5d442e62013-04-12 13:13:43 -0700691 process(sec, rel, sym, symname);
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100692 }
693 }
694}
695
Kees Cook946166a2013-04-12 13:13:44 -0700696/*
697 * The .data..percpu section is a special case for x86_64 SMP kernels.
698 * It is used to initialize the actual per_cpu areas and to provide
699 * definitions for the per_cpu variables that correspond to their offsets
700 * within the percpu area. Since the values of all of the symbols need
701 * to be offsets from the start of the per_cpu area the virtual address
702 * (sh_addr) of .data..percpu is 0 in SMP kernels.
703 *
704 * This means that:
705 *
706 * Relocations that reference symbols in the per_cpu area do not
707 * need further relocation (since the value is an offset relative
708 * to the start of the per_cpu area that does not change).
709 *
710 * Relocations that apply to the per_cpu area need to have their
711 * offset adjusted by by the value of __per_cpu_load to make them
712 * point to the correct place in the loaded image (because the
713 * virtual address of .data..percpu is 0).
714 *
715 * For non SMP kernels .data..percpu is linked as part of the normal
716 * kernel data and does not require special treatment.
717 *
718 */
719static int per_cpu_shndx = -1;
Ben Hutchingseeeda4c2014-09-24 13:30:12 +0100720static Elf_Addr per_cpu_load_addr;
Kees Cook946166a2013-04-12 13:13:44 -0700721
722static void percpu_init(void)
723{
724 int i;
Artem Savkovf36e7492018-11-29 16:56:15 +0100725 for (i = 0; i < shnum; i++) {
Kees Cook946166a2013-04-12 13:13:44 -0700726 ElfW(Sym) *sym;
727 if (strcmp(sec_name(i), ".data..percpu"))
728 continue;
729
730 if (secs[i].shdr.sh_addr != 0) /* non SMP kernel */
731 return;
732
733 sym = sym_lookup("__per_cpu_load");
734 if (!sym)
735 die("can't find __per_cpu_load\n");
736
737 per_cpu_shndx = i;
738 per_cpu_load_addr = sym->st_value;
739 return;
740 }
741}
742
H. Peter Anvinc889ba82013-04-16 16:02:58 -0700743#if ELF_BITS == 64
744
Kees Cook946166a2013-04-12 13:13:44 -0700745/*
746 * Check to see if a symbol lies in the .data..percpu section.
Michael Davidsond751c162013-10-10 18:39:54 -0700747 *
748 * The linker incorrectly associates some symbols with the
749 * .data..percpu section so we also need to check the symbol
750 * name to make sure that we classify the symbol correctly.
751 *
752 * The GNU linker incorrectly associates:
753 * __init_begin
Kees Cookaec58ba2013-10-15 23:43:14 -0700754 * __per_cpu_load
Michael Davidsond751c162013-10-10 18:39:54 -0700755 *
756 * The "gold" linker incorrectly associates:
Andy Lutomirskie6401c12019-04-14 18:00:06 +0200757 * init_per_cpu__fixed_percpu_data
Michael Davidsond751c162013-10-10 18:39:54 -0700758 * init_per_cpu__gdt_page
Kees Cook946166a2013-04-12 13:13:44 -0700759 */
760static int is_percpu_sym(ElfW(Sym) *sym, const char *symname)
761{
762 return (sym->st_shndx == per_cpu_shndx) &&
Michael Davidsond751c162013-10-10 18:39:54 -0700763 strcmp(symname, "__init_begin") &&
Kees Cookaec58ba2013-10-15 23:43:14 -0700764 strcmp(symname, "__per_cpu_load") &&
Michael Davidsond751c162013-10-10 18:39:54 -0700765 strncmp(symname, "init_per_cpu_", 13);
Kees Cook946166a2013-04-12 13:13:44 -0700766}
767
H. Peter Anvinc889ba82013-04-16 16:02:58 -0700768
Kees Cook946166a2013-04-12 13:13:44 -0700769static int do_reloc64(struct section *sec, Elf_Rel *rel, ElfW(Sym) *sym,
770 const char *symname)
771{
772 unsigned r_type = ELF64_R_TYPE(rel->r_info);
773 ElfW(Addr) offset = rel->r_offset;
774 int shn_abs = (sym->st_shndx == SHN_ABS) && !is_reloc(S_REL, symname);
775
776 if (sym->st_shndx == SHN_UNDEF)
777 return 0;
778
779 /*
780 * Adjust the offset if this reloc applies to the percpu section.
781 */
782 if (sec->shdr.sh_info == per_cpu_shndx)
783 offset += per_cpu_load_addr;
784
785 switch (r_type) {
786 case R_X86_64_NONE:
Jan Beulich6d24c5f2014-11-04 08:50:18 +0000787 /* NONE can be ignored. */
788 break;
789
Kees Cook946166a2013-04-12 13:13:44 -0700790 case R_X86_64_PC32:
H.J. Lub21ebf2f2018-02-07 14:20:09 -0800791 case R_X86_64_PLT32:
Kees Cook946166a2013-04-12 13:13:44 -0700792 /*
Jan Beulich6d24c5f2014-11-04 08:50:18 +0000793 * PC relative relocations don't need to be adjusted unless
794 * referencing a percpu symbol.
H.J. Lub21ebf2f2018-02-07 14:20:09 -0800795 *
796 * NB: R_X86_64_PLT32 can be treated as R_X86_64_PC32.
Kees Cook946166a2013-04-12 13:13:44 -0700797 */
Jan Beulich6d24c5f2014-11-04 08:50:18 +0000798 if (is_percpu_sym(sym, symname))
799 add_reloc(&relocs32neg, offset);
Kees Cook946166a2013-04-12 13:13:44 -0700800 break;
801
Ard Biesheuvelb40a1422018-09-18 23:51:39 -0700802 case R_X86_64_PC64:
803 /*
804 * Only used by jump labels
805 */
806 if (is_percpu_sym(sym, symname))
807 die("Invalid R_X86_64_PC64 relocation against per-CPU symbol %s\n",
808 symname);
809 break;
810
Kees Cook946166a2013-04-12 13:13:44 -0700811 case R_X86_64_32:
812 case R_X86_64_32S:
813 case R_X86_64_64:
814 /*
815 * References to the percpu area don't need to be adjusted.
816 */
817 if (is_percpu_sym(sym, symname))
818 break;
819
820 if (shn_abs) {
821 /*
822 * Whitelisted absolute symbols do not require
823 * relocation.
824 */
825 if (is_reloc(S_ABS, symname))
826 break;
827
828 die("Invalid absolute %s relocation: %s\n",
829 rel_type(r_type), symname);
830 break;
831 }
832
833 /*
834 * Relocation offsets for 64 bit kernels are output
835 * as 32 bits and sign extended back to 64 bits when
836 * the relocations are processed.
837 * Make sure that the offset will fit.
838 */
839 if ((int32_t)offset != (int64_t)offset)
840 die("Relocation offset doesn't fit in 32 bits\n");
841
842 if (r_type == R_X86_64_64)
843 add_reloc(&relocs64, offset);
844 else
845 add_reloc(&relocs32, offset);
846 break;
847
848 default:
849 die("Unsupported relocation type: %s (%d)\n",
850 rel_type(r_type), r_type);
851 break;
852 }
853
854 return 0;
855}
856
H. Peter Anvinc889ba82013-04-16 16:02:58 -0700857#else
Kees Cook946166a2013-04-12 13:13:44 -0700858
859static int do_reloc32(struct section *sec, Elf_Rel *rel, Elf_Sym *sym,
860 const char *symname)
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100861{
Kees Cook5d442e62013-04-12 13:13:43 -0700862 unsigned r_type = ELF32_R_TYPE(rel->r_info);
863 int shn_abs = (sym->st_shndx == SHN_ABS) && !is_reloc(S_REL, symname);
864
865 switch (r_type) {
866 case R_386_NONE:
867 case R_386_PC32:
868 case R_386_PC16:
869 case R_386_PC8:
870 /*
871 * NONE can be ignored and PC relative relocations don't
872 * need to be adjusted.
873 */
874 break;
875
876 case R_386_32:
877 if (shn_abs) {
878 /*
879 * Whitelisted absolute symbols do not require
880 * relocation.
881 */
882 if (is_reloc(S_ABS, symname))
883 break;
884
885 die("Invalid absolute %s relocation: %s\n",
886 rel_type(r_type), symname);
887 break;
888 }
889
890 add_reloc(&relocs32, rel->r_offset);
891 break;
892
893 default:
894 die("Unsupported relocation type: %s (%d)\n",
895 rel_type(r_type), r_type);
896 break;
897 }
898
899 return 0;
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100900}
901
Kees Cook5d442e62013-04-12 13:13:43 -0700902static int do_reloc_real(struct section *sec, Elf_Rel *rel, Elf_Sym *sym,
903 const char *symname)
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100904{
Kees Cook5d442e62013-04-12 13:13:43 -0700905 unsigned r_type = ELF32_R_TYPE(rel->r_info);
906 int shn_abs = (sym->st_shndx == SHN_ABS) && !is_reloc(S_REL, symname);
907
908 switch (r_type) {
909 case R_386_NONE:
910 case R_386_PC32:
911 case R_386_PC16:
912 case R_386_PC8:
913 /*
914 * NONE can be ignored and PC relative relocations don't
915 * need to be adjusted.
916 */
917 break;
918
919 case R_386_16:
920 if (shn_abs) {
921 /*
922 * Whitelisted absolute symbols do not require
923 * relocation.
924 */
925 if (is_reloc(S_ABS, symname))
926 break;
927
928 if (is_reloc(S_SEG, symname)) {
929 add_reloc(&relocs16, rel->r_offset);
930 break;
931 }
932 } else {
933 if (!is_reloc(S_LIN, symname))
934 break;
935 }
936 die("Invalid %s %s relocation: %s\n",
937 shn_abs ? "absolute" : "relative",
938 rel_type(r_type), symname);
939 break;
940
941 case R_386_32:
942 if (shn_abs) {
943 /*
944 * Whitelisted absolute symbols do not require
945 * relocation.
946 */
947 if (is_reloc(S_ABS, symname))
948 break;
949
950 if (is_reloc(S_REL, symname)) {
951 add_reloc(&relocs32, rel->r_offset);
952 break;
953 }
954 } else {
955 if (is_reloc(S_LIN, symname))
956 add_reloc(&relocs32, rel->r_offset);
957 break;
958 }
959 die("Invalid %s %s relocation: %s\n",
960 shn_abs ? "absolute" : "relative",
961 rel_type(r_type), symname);
962 break;
963
964 default:
965 die("Unsupported relocation type: %s (%d)\n",
966 rel_type(r_type), r_type);
967 break;
968 }
969
970 return 0;
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100971}
972
H. Peter Anvinc889ba82013-04-16 16:02:58 -0700973#endif
974
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100975static int cmp_relocs(const void *va, const void *vb)
976{
Kees Cook5d442e62013-04-12 13:13:43 -0700977 const uint32_t *a, *b;
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100978 a = va; b = vb;
979 return (*a == *b)? 0 : (*a > *b)? 1 : -1;
980}
981
Kees Cook5d442e62013-04-12 13:13:43 -0700982static void sort_relocs(struct relocs *r)
983{
984 qsort(r->offset, r->count, sizeof(r->offset[0]), cmp_relocs);
985}
986
987static int write32(uint32_t v, FILE *f)
H. Peter Anvin6520fe52012-05-08 21:22:24 +0300988{
989 unsigned char buf[4];
990
991 put_unaligned_le32(v, buf);
992 return fwrite(buf, 1, 4, f) == 4 ? 0 : -1;
993}
994
Kees Cook5d442e62013-04-12 13:13:43 -0700995static int write32_as_text(uint32_t v, FILE *f)
996{
997 return fprintf(f, "\t.long 0x%08"PRIx32"\n", v) > 0 ? 0 : -1;
998}
999
H. Peter Anvin6520fe52012-05-08 21:22:24 +03001000static void emit_relocs(int as_text, int use_real_mode)
Eric W. Biederman968de4f2006-12-07 02:14:04 +01001001{
1002 int i;
Kees Cook5d442e62013-04-12 13:13:43 -07001003 int (*write_reloc)(uint32_t, FILE *) = write32;
Kees Cook946166a2013-04-12 13:13:44 -07001004 int (*do_reloc)(struct section *sec, Elf_Rel *rel, Elf_Sym *sym,
1005 const char *symname);
1006
H. Peter Anvinc889ba82013-04-16 16:02:58 -07001007#if ELF_BITS == 64
1008 if (!use_real_mode)
Kees Cook946166a2013-04-12 13:13:44 -07001009 do_reloc = do_reloc64;
H. Peter Anvinc889ba82013-04-16 16:02:58 -07001010 else
1011 die("--realmode not valid for a 64-bit ELF file");
1012#else
1013 if (!use_real_mode)
Kees Cook946166a2013-04-12 13:13:44 -07001014 do_reloc = do_reloc32;
1015 else
1016 do_reloc = do_reloc_real;
H. Peter Anvinc889ba82013-04-16 16:02:58 -07001017#endif
H. Peter Anvin6520fe52012-05-08 21:22:24 +03001018
Eric W. Biederman968de4f2006-12-07 02:14:04 +01001019 /* Collect up the relocations */
Kees Cook946166a2013-04-12 13:13:44 -07001020 walk_relocs(do_reloc);
H. Peter Anvin6520fe52012-05-08 21:22:24 +03001021
Kees Cook5d442e62013-04-12 13:13:43 -07001022 if (relocs16.count && !use_real_mode)
H. Peter Anvin6520fe52012-05-08 21:22:24 +03001023 die("Segment relocations found but --realmode not specified\n");
Eric W. Biederman968de4f2006-12-07 02:14:04 +01001024
1025 /* Order the relocations for more efficient processing */
Kees Cook5d442e62013-04-12 13:13:43 -07001026 sort_relocs(&relocs32);
Jan Beulich6d24c5f2014-11-04 08:50:18 +00001027#if ELF_BITS == 64
1028 sort_relocs(&relocs32neg);
Kees Cook946166a2013-04-12 13:13:44 -07001029 sort_relocs(&relocs64);
Markus Trippelsdorf7ebb9162016-12-15 13:45:13 +01001030#else
1031 sort_relocs(&relocs16);
Jan Beulich6d24c5f2014-11-04 08:50:18 +00001032#endif
Eric W. Biederman968de4f2006-12-07 02:14:04 +01001033
1034 /* Print the relocations */
1035 if (as_text) {
1036 /* Print the relocations in a form suitable that
1037 * gas will like.
1038 */
1039 printf(".section \".data.reloc\",\"a\"\n");
1040 printf(".balign 4\n");
Kees Cook5d442e62013-04-12 13:13:43 -07001041 write_reloc = write32_as_text;
Eric W. Biederman968de4f2006-12-07 02:14:04 +01001042 }
H. Peter Anvin6520fe52012-05-08 21:22:24 +03001043
Kees Cook5d442e62013-04-12 13:13:43 -07001044 if (use_real_mode) {
1045 write_reloc(relocs16.count, stdout);
1046 for (i = 0; i < relocs16.count; i++)
1047 write_reloc(relocs16.offset[i], stdout);
H. Peter Anvin6520fe52012-05-08 21:22:24 +03001048
Kees Cook5d442e62013-04-12 13:13:43 -07001049 write_reloc(relocs32.count, stdout);
1050 for (i = 0; i < relocs32.count; i++)
1051 write_reloc(relocs32.offset[i], stdout);
1052 } else {
Jan Beulich6d24c5f2014-11-04 08:50:18 +00001053#if ELF_BITS == 64
1054 /* Print a stop */
1055 write_reloc(0, stdout);
Kees Cook946166a2013-04-12 13:13:44 -07001056
Jan Beulich6d24c5f2014-11-04 08:50:18 +00001057 /* Now print each relocation */
1058 for (i = 0; i < relocs64.count; i++)
1059 write_reloc(relocs64.offset[i], stdout);
1060
1061 /* Print a stop */
1062 write_reloc(0, stdout);
1063
1064 /* Now print each inverse 32-bit relocation */
1065 for (i = 0; i < relocs32neg.count; i++)
1066 write_reloc(relocs32neg.offset[i], stdout);
1067#endif
Kees Cook946166a2013-04-12 13:13:44 -07001068
Kees Cook5d442e62013-04-12 13:13:43 -07001069 /* Print a stop */
1070 write_reloc(0, stdout);
1071
1072 /* Now print each relocation */
1073 for (i = 0; i < relocs32.count; i++)
1074 write_reloc(relocs32.offset[i], stdout);
Eric W. Biederman968de4f2006-12-07 02:14:04 +01001075 }
1076}
1077
Michael Davidson214a8872014-01-21 12:32:23 -08001078/*
1079 * As an aid to debugging problems with different linkers
1080 * print summary information about the relocs.
1081 * Since different linkers tend to emit the sections in
1082 * different orders we use the section names in the output.
1083 */
1084static int do_reloc_info(struct section *sec, Elf_Rel *rel, ElfW(Sym) *sym,
1085 const char *symname)
1086{
1087 printf("%s\t%s\t%s\t%s\n",
1088 sec_name(sec->shdr.sh_info),
1089 rel_type(ELF_R_TYPE(rel->r_info)),
1090 symname,
1091 sec_name(sym->st_shndx));
1092 return 0;
1093}
1094
1095static void print_reloc_info(void)
1096{
1097 printf("reloc section\treloc type\tsymbol\tsymbol section\n");
1098 walk_relocs(do_reloc_info);
1099}
1100
H. Peter Anvinc889ba82013-04-16 16:02:58 -07001101#if ELF_BITS == 64
1102# define process process_64
1103#else
1104# define process process_32
1105#endif
Eric W. Biederman968de4f2006-12-07 02:14:04 +01001106
H. Peter Anvinc889ba82013-04-16 16:02:58 -07001107void process(FILE *fp, int use_real_mode, int as_text,
Michael Davidson214a8872014-01-21 12:32:23 -08001108 int show_absolute_syms, int show_absolute_relocs,
1109 int show_reloc_info)
Eric W. Biederman968de4f2006-12-07 02:14:04 +01001110{
H. Peter Anvin6520fe52012-05-08 21:22:24 +03001111 regex_init(use_real_mode);
Eric W. Biederman968de4f2006-12-07 02:14:04 +01001112 read_ehdr(fp);
1113 read_shdrs(fp);
1114 read_strtabs(fp);
1115 read_symtabs(fp);
1116 read_relocs(fp);
H. Peter Anvinc889ba82013-04-16 16:02:58 -07001117 if (ELF_BITS == 64)
Kees Cook946166a2013-04-12 13:13:44 -07001118 percpu_init();
Vivek Goyal6a044b32006-12-07 02:14:04 +01001119 if (show_absolute_syms) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +01001120 print_absolute_symbols();
H. Peter Anvinc889ba82013-04-16 16:02:58 -07001121 return;
Vivek Goyal6a044b32006-12-07 02:14:04 +01001122 }
1123 if (show_absolute_relocs) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +01001124 print_absolute_relocs();
H. Peter Anvinc889ba82013-04-16 16:02:58 -07001125 return;
Eric W. Biederman968de4f2006-12-07 02:14:04 +01001126 }
Michael Davidson214a8872014-01-21 12:32:23 -08001127 if (show_reloc_info) {
1128 print_reloc_info();
1129 return;
1130 }
H. Peter Anvin6520fe52012-05-08 21:22:24 +03001131 emit_relocs(as_text, use_real_mode);
Eric W. Biederman968de4f2006-12-07 02:14:04 +01001132}