blob: bbb1d2259ecf52acc24caf198a3d27f8fd594018 [file] [log] [blame]
H. Peter Anvinc889ba82013-04-16 16:02:58 -07001/* This is included from relocs_32/64.c */
H. Peter Anvin873b5272009-12-14 13:55:20 -08002
Kees Cookbf116552013-04-12 13:13:42 -07003#define ElfW(type) _ElfW(ELF_BITS, type)
4#define _ElfW(bits, type) __ElfW(bits, type)
5#define __ElfW(bits, type) Elf##bits##_##type
6
Kees Cook946166a2013-04-12 13:13:44 -07007#define Elf_Addr ElfW(Addr)
Kees Cookbf116552013-04-12 13:13:42 -07008#define Elf_Ehdr ElfW(Ehdr)
9#define Elf_Phdr ElfW(Phdr)
10#define Elf_Shdr ElfW(Shdr)
11#define Elf_Sym ElfW(Sym)
12
Kees Cookbf116552013-04-12 13:13:42 -070013static Elf_Ehdr ehdr;
Kees Cook5d442e62013-04-12 13:13:43 -070014
15struct relocs {
16 uint32_t *offset;
17 unsigned long count;
18 unsigned long size;
19};
20
21static struct relocs relocs16;
22static struct relocs relocs32;
Kees Cook946166a2013-04-12 13:13:44 -070023static struct relocs relocs64;
Eric W. Biederman968de4f2006-12-07 02:14:04 +010024
H. Peter Anvin908ec7a2008-06-30 14:42:18 -070025struct section {
Kees Cookbf116552013-04-12 13:13:42 -070026 Elf_Shdr shdr;
H. Peter Anvin908ec7a2008-06-30 14:42:18 -070027 struct section *link;
Kees Cookbf116552013-04-12 13:13:42 -070028 Elf_Sym *symtab;
29 Elf_Rel *reltab;
H. Peter Anvin908ec7a2008-06-30 14:42:18 -070030 char *strtab;
31};
32static struct section *secs;
33
H. Peter Anvin6520fe52012-05-08 21:22:24 +030034static const char * const sym_regex_kernel[S_NSYMTYPES] = {
Vivek Goyal6a044b32006-12-07 02:14:04 +010035/*
36 * Following symbols have been audited. There values are constant and do
37 * not change if bzImage is loaded at a different physical address than
38 * the address for which it has been compiled. Don't warn user about
39 * absolute relocations present w.r.t these symbols.
40 */
H. Peter Anvin6520fe52012-05-08 21:22:24 +030041 [S_ABS] =
H. Peter Anvin873b5272009-12-14 13:55:20 -080042 "^(xen_irq_disable_direct_reloc$|"
43 "xen_save_fl_direct_reloc$|"
44 "VDSO|"
H. Peter Anvin6520fe52012-05-08 21:22:24 +030045 "__crc_)",
Vivek Goyal6a044b32006-12-07 02:14:04 +010046
H. Peter Anvin873b5272009-12-14 13:55:20 -080047/*
48 * These symbols are known to be relative, even if the linker marks them
49 * as absolute (typically defined outside any section in the linker script.)
50 */
H. Peter Anvin6520fe52012-05-08 21:22:24 +030051 [S_REL] =
H. Peter Anvina3e854d2012-05-18 00:24:09 -070052 "^(__init_(begin|end)|"
53 "__x86_cpu_dev_(start|end)|"
54 "(__parainstructions|__alt_instructions)(|_end)|"
55 "(__iommu_table|__apicdrivers|__smp_locks)(|_end)|"
H. Peter Anvinfd952812012-05-23 14:02:34 -070056 "__(start|end)_pci_.*|"
57 "__(start|end)_builtin_fw|"
58 "__(start|stop)___ksymtab(|_gpl|_unused|_unused_gpl|_gpl_future)|"
59 "__(start|stop)___kcrctab(|_gpl|_unused|_unused_gpl|_gpl_future)|"
60 "__(start|stop)___param|"
61 "__(start|stop)___modver|"
62 "__(start|stop)___bug_table|"
63 "__tracedata_(start|end)|"
64 "__(start|stop)_notes|"
65 "__end_rodata|"
66 "__initramfs_start|"
H. Peter Anvinea17e742012-05-24 07:01:38 -070067 "(jiffies|jiffies_64)|"
H. Peter Anvinc889ba82013-04-16 16:02:58 -070068#if ELF_BITS == 64
Kees Cook946166a2013-04-12 13:13:44 -070069 "__per_cpu_load|"
70 "init_per_cpu__.*|"
71 "__end_rodata_hpage_align|"
72#endif
Stefani Seiboldd2312e32014-03-17 23:22:01 +010073 "__vvar_page|"
H. Peter Anvina3e854d2012-05-18 00:24:09 -070074 "_end)$"
H. Peter Anvin6520fe52012-05-08 21:22:24 +030075};
76
77
78static const char * const sym_regex_realmode[S_NSYMTYPES] = {
79/*
H. Peter Anvin2a6de312012-05-08 21:22:31 +030080 * These symbols are known to be relative, even if the linker marks them
81 * as absolute (typically defined outside any section in the linker script.)
82 */
83 [S_REL] =
84 "^pa_",
85
86/*
H. Peter Anvin6520fe52012-05-08 21:22:24 +030087 * These are 16-bit segment symbols when compiling 16-bit code.
88 */
89 [S_SEG] =
90 "^real_mode_seg$",
91
92/*
93 * These are offsets belonging to segments, as opposed to linear addresses,
94 * when compiling 16-bit code.
95 */
96 [S_LIN] =
97 "^pa_",
98};
99
100static const char * const *sym_regex;
101
102static regex_t sym_regex_c[S_NSYMTYPES];
103static int is_reloc(enum symtype type, const char *sym_name)
H. Peter Anvin873b5272009-12-14 13:55:20 -0800104{
H. Peter Anvin6520fe52012-05-08 21:22:24 +0300105 return sym_regex[type] &&
106 !regexec(&sym_regex_c[type], sym_name, 0, NULL, 0);
H. Peter Anvin873b5272009-12-14 13:55:20 -0800107}
108
H. Peter Anvin6520fe52012-05-08 21:22:24 +0300109static void regex_init(int use_real_mode)
H. Peter Anvin873b5272009-12-14 13:55:20 -0800110{
111 char errbuf[128];
112 int err;
H. Peter Anvin6520fe52012-05-08 21:22:24 +0300113 int i;
H. Peter Anvin873b5272009-12-14 13:55:20 -0800114
H. Peter Anvin6520fe52012-05-08 21:22:24 +0300115 if (use_real_mode)
116 sym_regex = sym_regex_realmode;
117 else
118 sym_regex = sym_regex_kernel;
119
120 for (i = 0; i < S_NSYMTYPES; i++) {
121 if (!sym_regex[i])
122 continue;
123
124 err = regcomp(&sym_regex_c[i], sym_regex[i],
125 REG_EXTENDED|REG_NOSUB);
126
127 if (err) {
128 regerror(err, &sym_regex_c[i], errbuf, sizeof errbuf);
129 die("%s", errbuf);
130 }
H. Peter Anvin873b5272009-12-14 13:55:20 -0800131 }
Vivek Goyal6a044b32006-12-07 02:14:04 +0100132}
133
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100134static const char *sym_type(unsigned type)
135{
136 static const char *type_name[] = {
137#define SYM_TYPE(X) [X] = #X
138 SYM_TYPE(STT_NOTYPE),
139 SYM_TYPE(STT_OBJECT),
140 SYM_TYPE(STT_FUNC),
141 SYM_TYPE(STT_SECTION),
142 SYM_TYPE(STT_FILE),
143 SYM_TYPE(STT_COMMON),
144 SYM_TYPE(STT_TLS),
145#undef SYM_TYPE
146 };
147 const char *name = "unknown sym type name";
Robert P. J. Dayca820182007-02-17 19:10:01 +0100148 if (type < ARRAY_SIZE(type_name)) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100149 name = type_name[type];
150 }
151 return name;
152}
153
154static const char *sym_bind(unsigned bind)
155{
156 static const char *bind_name[] = {
157#define SYM_BIND(X) [X] = #X
158 SYM_BIND(STB_LOCAL),
159 SYM_BIND(STB_GLOBAL),
160 SYM_BIND(STB_WEAK),
161#undef SYM_BIND
162 };
163 const char *name = "unknown sym bind name";
Robert P. J. Dayca820182007-02-17 19:10:01 +0100164 if (bind < ARRAY_SIZE(bind_name)) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100165 name = bind_name[bind];
166 }
167 return name;
168}
169
170static const char *sym_visibility(unsigned visibility)
171{
172 static const char *visibility_name[] = {
173#define SYM_VISIBILITY(X) [X] = #X
174 SYM_VISIBILITY(STV_DEFAULT),
175 SYM_VISIBILITY(STV_INTERNAL),
176 SYM_VISIBILITY(STV_HIDDEN),
177 SYM_VISIBILITY(STV_PROTECTED),
178#undef SYM_VISIBILITY
179 };
180 const char *name = "unknown sym visibility name";
Robert P. J. Dayca820182007-02-17 19:10:01 +0100181 if (visibility < ARRAY_SIZE(visibility_name)) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100182 name = visibility_name[visibility];
183 }
184 return name;
185}
186
187static const char *rel_type(unsigned type)
188{
189 static const char *type_name[] = {
190#define REL_TYPE(X) [X] = #X
H. Peter Anvinc889ba82013-04-16 16:02:58 -0700191#if ELF_BITS == 64
Kees Cook946166a2013-04-12 13:13:44 -0700192 REL_TYPE(R_X86_64_NONE),
193 REL_TYPE(R_X86_64_64),
194 REL_TYPE(R_X86_64_PC32),
195 REL_TYPE(R_X86_64_GOT32),
196 REL_TYPE(R_X86_64_PLT32),
197 REL_TYPE(R_X86_64_COPY),
198 REL_TYPE(R_X86_64_GLOB_DAT),
199 REL_TYPE(R_X86_64_JUMP_SLOT),
200 REL_TYPE(R_X86_64_RELATIVE),
201 REL_TYPE(R_X86_64_GOTPCREL),
202 REL_TYPE(R_X86_64_32),
203 REL_TYPE(R_X86_64_32S),
204 REL_TYPE(R_X86_64_16),
205 REL_TYPE(R_X86_64_PC16),
206 REL_TYPE(R_X86_64_8),
207 REL_TYPE(R_X86_64_PC8),
208#else
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100209 REL_TYPE(R_386_NONE),
210 REL_TYPE(R_386_32),
211 REL_TYPE(R_386_PC32),
212 REL_TYPE(R_386_GOT32),
213 REL_TYPE(R_386_PLT32),
214 REL_TYPE(R_386_COPY),
215 REL_TYPE(R_386_GLOB_DAT),
216 REL_TYPE(R_386_JMP_SLOT),
217 REL_TYPE(R_386_RELATIVE),
218 REL_TYPE(R_386_GOTOFF),
219 REL_TYPE(R_386_GOTPC),
H. Peter Anvin6520fe52012-05-08 21:22:24 +0300220 REL_TYPE(R_386_8),
221 REL_TYPE(R_386_PC8),
222 REL_TYPE(R_386_16),
223 REL_TYPE(R_386_PC16),
Kees Cook946166a2013-04-12 13:13:44 -0700224#endif
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100225#undef REL_TYPE
226 };
227 const char *name = "unknown type rel type name";
H. Peter Anvin873b5272009-12-14 13:55:20 -0800228 if (type < ARRAY_SIZE(type_name) && type_name[type]) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100229 name = type_name[type];
230 }
231 return name;
232}
233
234static const char *sec_name(unsigned shndx)
235{
236 const char *sec_strtab;
237 const char *name;
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700238 sec_strtab = secs[ehdr.e_shstrndx].strtab;
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100239 name = "<noname>";
240 if (shndx < ehdr.e_shnum) {
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700241 name = sec_strtab + secs[shndx].shdr.sh_name;
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100242 }
243 else if (shndx == SHN_ABS) {
244 name = "ABSOLUTE";
245 }
246 else if (shndx == SHN_COMMON) {
247 name = "COMMON";
248 }
249 return name;
250}
251
Kees Cookbf116552013-04-12 13:13:42 -0700252static const char *sym_name(const char *sym_strtab, Elf_Sym *sym)
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100253{
254 const char *name;
255 name = "<noname>";
256 if (sym->st_name) {
257 name = sym_strtab + sym->st_name;
258 }
259 else {
H. Peter Anvin6520fe52012-05-08 21:22:24 +0300260 name = sec_name(sym->st_shndx);
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100261 }
262 return name;
263}
264
Kees Cook946166a2013-04-12 13:13:44 -0700265static Elf_Sym *sym_lookup(const char *symname)
266{
267 int i;
268 for (i = 0; i < ehdr.e_shnum; i++) {
269 struct section *sec = &secs[i];
270 long nsyms;
271 char *strtab;
272 Elf_Sym *symtab;
273 Elf_Sym *sym;
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100274
Kees Cook946166a2013-04-12 13:13:44 -0700275 if (sec->shdr.sh_type != SHT_SYMTAB)
276 continue;
277
278 nsyms = sec->shdr.sh_size/sizeof(Elf_Sym);
279 symtab = sec->symtab;
280 strtab = sec->link->strtab;
281
282 for (sym = symtab; --nsyms >= 0; sym++) {
283 if (!sym->st_name)
284 continue;
285 if (strcmp(symname, strtab + sym->st_name) == 0)
286 return sym;
287 }
288 }
289 return 0;
290}
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100291
Linus Torvalds13da9e22010-05-26 08:30:15 -0700292#if BYTE_ORDER == LITTLE_ENDIAN
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100293#define le16_to_cpu(val) (val)
294#define le32_to_cpu(val) (val)
Kees Cook946166a2013-04-12 13:13:44 -0700295#define le64_to_cpu(val) (val)
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100296#endif
Linus Torvalds13da9e22010-05-26 08:30:15 -0700297#if BYTE_ORDER == BIG_ENDIAN
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100298#define le16_to_cpu(val) bswap_16(val)
299#define le32_to_cpu(val) bswap_32(val)
Kees Cook946166a2013-04-12 13:13:44 -0700300#define le64_to_cpu(val) bswap_64(val)
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100301#endif
302
303static uint16_t elf16_to_cpu(uint16_t val)
304{
305 return le16_to_cpu(val);
306}
307
308static uint32_t elf32_to_cpu(uint32_t val)
309{
310 return le32_to_cpu(val);
311}
312
Kees Cookbf116552013-04-12 13:13:42 -0700313#define elf_half_to_cpu(x) elf16_to_cpu(x)
314#define elf_word_to_cpu(x) elf32_to_cpu(x)
Kees Cook946166a2013-04-12 13:13:44 -0700315
H. Peter Anvinc889ba82013-04-16 16:02:58 -0700316#if ELF_BITS == 64
Kees Cook946166a2013-04-12 13:13:44 -0700317static uint64_t elf64_to_cpu(uint64_t val)
318{
319 return le64_to_cpu(val);
320}
321#define elf_addr_to_cpu(x) elf64_to_cpu(x)
322#define elf_off_to_cpu(x) elf64_to_cpu(x)
323#define elf_xword_to_cpu(x) elf64_to_cpu(x)
324#else
Kees Cookbf116552013-04-12 13:13:42 -0700325#define elf_addr_to_cpu(x) elf32_to_cpu(x)
326#define elf_off_to_cpu(x) elf32_to_cpu(x)
327#define elf_xword_to_cpu(x) elf32_to_cpu(x)
Kees Cook946166a2013-04-12 13:13:44 -0700328#endif
Kees Cookbf116552013-04-12 13:13:42 -0700329
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100330static void read_ehdr(FILE *fp)
331{
332 if (fread(&ehdr, sizeof(ehdr), 1, fp) != 1) {
333 die("Cannot read ELF header: %s\n",
334 strerror(errno));
335 }
Cyrill Gorcunov8bd17962008-05-03 14:18:03 +0400336 if (memcmp(ehdr.e_ident, ELFMAG, SELFMAG) != 0) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100337 die("No ELF magic\n");
338 }
Kees Cookbf116552013-04-12 13:13:42 -0700339 if (ehdr.e_ident[EI_CLASS] != ELF_CLASS) {
340 die("Not a %d bit executable\n", ELF_BITS);
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100341 }
342 if (ehdr.e_ident[EI_DATA] != ELFDATA2LSB) {
343 die("Not a LSB ELF executable\n");
344 }
345 if (ehdr.e_ident[EI_VERSION] != EV_CURRENT) {
346 die("Unknown ELF version\n");
347 }
348 /* Convert the fields to native endian */
Kees Cookbf116552013-04-12 13:13:42 -0700349 ehdr.e_type = elf_half_to_cpu(ehdr.e_type);
350 ehdr.e_machine = elf_half_to_cpu(ehdr.e_machine);
351 ehdr.e_version = elf_word_to_cpu(ehdr.e_version);
352 ehdr.e_entry = elf_addr_to_cpu(ehdr.e_entry);
353 ehdr.e_phoff = elf_off_to_cpu(ehdr.e_phoff);
354 ehdr.e_shoff = elf_off_to_cpu(ehdr.e_shoff);
355 ehdr.e_flags = elf_word_to_cpu(ehdr.e_flags);
356 ehdr.e_ehsize = elf_half_to_cpu(ehdr.e_ehsize);
357 ehdr.e_phentsize = elf_half_to_cpu(ehdr.e_phentsize);
358 ehdr.e_phnum = elf_half_to_cpu(ehdr.e_phnum);
359 ehdr.e_shentsize = elf_half_to_cpu(ehdr.e_shentsize);
360 ehdr.e_shnum = elf_half_to_cpu(ehdr.e_shnum);
361 ehdr.e_shstrndx = elf_half_to_cpu(ehdr.e_shstrndx);
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100362
363 if ((ehdr.e_type != ET_EXEC) && (ehdr.e_type != ET_DYN)) {
364 die("Unsupported ELF header type\n");
365 }
Kees Cookbf116552013-04-12 13:13:42 -0700366 if (ehdr.e_machine != ELF_MACHINE) {
367 die("Not for %s\n", ELF_MACHINE_NAME);
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100368 }
369 if (ehdr.e_version != EV_CURRENT) {
370 die("Unknown ELF version\n");
371 }
Kees Cookbf116552013-04-12 13:13:42 -0700372 if (ehdr.e_ehsize != sizeof(Elf_Ehdr)) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100373 die("Bad Elf header size\n");
374 }
Kees Cookbf116552013-04-12 13:13:42 -0700375 if (ehdr.e_phentsize != sizeof(Elf_Phdr)) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100376 die("Bad program header entry\n");
377 }
Kees Cookbf116552013-04-12 13:13:42 -0700378 if (ehdr.e_shentsize != sizeof(Elf_Shdr)) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100379 die("Bad section header entry\n");
380 }
381 if (ehdr.e_shstrndx >= ehdr.e_shnum) {
382 die("String table index out of bounds\n");
383 }
384}
385
386static void read_shdrs(FILE *fp)
387{
388 int i;
Kees Cookbf116552013-04-12 13:13:42 -0700389 Elf_Shdr shdr;
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700390
391 secs = calloc(ehdr.e_shnum, sizeof(struct section));
392 if (!secs) {
393 die("Unable to allocate %d section headers\n",
394 ehdr.e_shnum);
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100395 }
396 if (fseek(fp, ehdr.e_shoff, SEEK_SET) < 0) {
397 die("Seek to %d failed: %s\n",
398 ehdr.e_shoff, strerror(errno));
399 }
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700400 for (i = 0; i < ehdr.e_shnum; i++) {
401 struct section *sec = &secs[i];
402 if (fread(&shdr, sizeof shdr, 1, fp) != 1)
403 die("Cannot read ELF section headers %d/%d: %s\n",
404 i, ehdr.e_shnum, strerror(errno));
Kees Cookbf116552013-04-12 13:13:42 -0700405 sec->shdr.sh_name = elf_word_to_cpu(shdr.sh_name);
406 sec->shdr.sh_type = elf_word_to_cpu(shdr.sh_type);
407 sec->shdr.sh_flags = elf_xword_to_cpu(shdr.sh_flags);
408 sec->shdr.sh_addr = elf_addr_to_cpu(shdr.sh_addr);
409 sec->shdr.sh_offset = elf_off_to_cpu(shdr.sh_offset);
410 sec->shdr.sh_size = elf_xword_to_cpu(shdr.sh_size);
411 sec->shdr.sh_link = elf_word_to_cpu(shdr.sh_link);
412 sec->shdr.sh_info = elf_word_to_cpu(shdr.sh_info);
413 sec->shdr.sh_addralign = elf_xword_to_cpu(shdr.sh_addralign);
414 sec->shdr.sh_entsize = elf_xword_to_cpu(shdr.sh_entsize);
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700415 if (sec->shdr.sh_link < ehdr.e_shnum)
416 sec->link = &secs[sec->shdr.sh_link];
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100417 }
418
419}
420
421static void read_strtabs(FILE *fp)
422{
423 int i;
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700424 for (i = 0; i < ehdr.e_shnum; i++) {
425 struct section *sec = &secs[i];
426 if (sec->shdr.sh_type != SHT_STRTAB) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100427 continue;
428 }
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700429 sec->strtab = malloc(sec->shdr.sh_size);
430 if (!sec->strtab) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100431 die("malloc of %d bytes for strtab failed\n",
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700432 sec->shdr.sh_size);
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100433 }
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700434 if (fseek(fp, sec->shdr.sh_offset, SEEK_SET) < 0) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100435 die("Seek to %d failed: %s\n",
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700436 sec->shdr.sh_offset, strerror(errno));
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100437 }
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700438 if (fread(sec->strtab, 1, sec->shdr.sh_size, fp)
439 != sec->shdr.sh_size) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100440 die("Cannot read symbol table: %s\n",
441 strerror(errno));
442 }
443 }
444}
445
446static void read_symtabs(FILE *fp)
447{
448 int i,j;
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700449 for (i = 0; i < ehdr.e_shnum; i++) {
450 struct section *sec = &secs[i];
451 if (sec->shdr.sh_type != SHT_SYMTAB) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100452 continue;
453 }
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700454 sec->symtab = malloc(sec->shdr.sh_size);
455 if (!sec->symtab) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100456 die("malloc of %d bytes for symtab failed\n",
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700457 sec->shdr.sh_size);
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100458 }
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700459 if (fseek(fp, sec->shdr.sh_offset, SEEK_SET) < 0) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100460 die("Seek to %d failed: %s\n",
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700461 sec->shdr.sh_offset, strerror(errno));
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100462 }
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700463 if (fread(sec->symtab, 1, sec->shdr.sh_size, fp)
464 != sec->shdr.sh_size) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100465 die("Cannot read symbol table: %s\n",
466 strerror(errno));
467 }
Kees Cookbf116552013-04-12 13:13:42 -0700468 for (j = 0; j < sec->shdr.sh_size/sizeof(Elf_Sym); j++) {
469 Elf_Sym *sym = &sec->symtab[j];
470 sym->st_name = elf_word_to_cpu(sym->st_name);
471 sym->st_value = elf_addr_to_cpu(sym->st_value);
472 sym->st_size = elf_xword_to_cpu(sym->st_size);
473 sym->st_shndx = elf_half_to_cpu(sym->st_shndx);
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100474 }
475 }
476}
477
478
479static void read_relocs(FILE *fp)
480{
481 int i,j;
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700482 for (i = 0; i < ehdr.e_shnum; i++) {
483 struct section *sec = &secs[i];
Kees Cookbf116552013-04-12 13:13:42 -0700484 if (sec->shdr.sh_type != SHT_REL_TYPE) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100485 continue;
486 }
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700487 sec->reltab = malloc(sec->shdr.sh_size);
488 if (!sec->reltab) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100489 die("malloc of %d bytes for relocs failed\n",
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700490 sec->shdr.sh_size);
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100491 }
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700492 if (fseek(fp, sec->shdr.sh_offset, SEEK_SET) < 0) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100493 die("Seek to %d failed: %s\n",
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700494 sec->shdr.sh_offset, strerror(errno));
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100495 }
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700496 if (fread(sec->reltab, 1, sec->shdr.sh_size, fp)
497 != sec->shdr.sh_size) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100498 die("Cannot read symbol table: %s\n",
499 strerror(errno));
500 }
Kees Cookbf116552013-04-12 13:13:42 -0700501 for (j = 0; j < sec->shdr.sh_size/sizeof(Elf_Rel); j++) {
502 Elf_Rel *rel = &sec->reltab[j];
503 rel->r_offset = elf_addr_to_cpu(rel->r_offset);
504 rel->r_info = elf_xword_to_cpu(rel->r_info);
Kees Cook946166a2013-04-12 13:13:44 -0700505#if (SHT_REL_TYPE == SHT_RELA)
506 rel->r_addend = elf_xword_to_cpu(rel->r_addend);
507#endif
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100508 }
509 }
510}
511
512
513static void print_absolute_symbols(void)
514{
515 int i;
Kees Cook946166a2013-04-12 13:13:44 -0700516 const char *format;
517
H. Peter Anvinc889ba82013-04-16 16:02:58 -0700518 if (ELF_BITS == 64)
Kees Cook946166a2013-04-12 13:13:44 -0700519 format = "%5d %016"PRIx64" %5"PRId64" %10s %10s %12s %s\n";
520 else
521 format = "%5d %08"PRIx32" %5"PRId32" %10s %10s %12s %s\n";
522
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100523 printf("Absolute symbols\n");
524 printf(" Num: Value Size Type Bind Visibility Name\n");
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700525 for (i = 0; i < ehdr.e_shnum; i++) {
526 struct section *sec = &secs[i];
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100527 char *sym_strtab;
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100528 int j;
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700529
530 if (sec->shdr.sh_type != SHT_SYMTAB) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100531 continue;
532 }
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700533 sym_strtab = sec->link->strtab;
Kees Cookbf116552013-04-12 13:13:42 -0700534 for (j = 0; j < sec->shdr.sh_size/sizeof(Elf_Sym); j++) {
535 Elf_Sym *sym;
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100536 const char *name;
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700537 sym = &sec->symtab[j];
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100538 name = sym_name(sym_strtab, sym);
539 if (sym->st_shndx != SHN_ABS) {
540 continue;
541 }
Kees Cook946166a2013-04-12 13:13:44 -0700542 printf(format,
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100543 j, sym->st_value, sym->st_size,
Kees Cookbf116552013-04-12 13:13:42 -0700544 sym_type(ELF_ST_TYPE(sym->st_info)),
545 sym_bind(ELF_ST_BIND(sym->st_info)),
546 sym_visibility(ELF_ST_VISIBILITY(sym->st_other)),
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100547 name);
548 }
549 }
550 printf("\n");
551}
552
553static void print_absolute_relocs(void)
554{
Vivek Goyal6a044b32006-12-07 02:14:04 +0100555 int i, printed = 0;
Kees Cook946166a2013-04-12 13:13:44 -0700556 const char *format;
557
H. Peter Anvinc889ba82013-04-16 16:02:58 -0700558 if (ELF_BITS == 64)
Kees Cook946166a2013-04-12 13:13:44 -0700559 format = "%016"PRIx64" %016"PRIx64" %10s %016"PRIx64" %s\n";
560 else
561 format = "%08"PRIx32" %08"PRIx32" %10s %08"PRIx32" %s\n";
Vivek Goyal6a044b32006-12-07 02:14:04 +0100562
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700563 for (i = 0; i < ehdr.e_shnum; i++) {
564 struct section *sec = &secs[i];
565 struct section *sec_applies, *sec_symtab;
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100566 char *sym_strtab;
Kees Cookbf116552013-04-12 13:13:42 -0700567 Elf_Sym *sh_symtab;
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100568 int j;
Kees Cookbf116552013-04-12 13:13:42 -0700569 if (sec->shdr.sh_type != SHT_REL_TYPE) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100570 continue;
571 }
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700572 sec_symtab = sec->link;
573 sec_applies = &secs[sec->shdr.sh_info];
574 if (!(sec_applies->shdr.sh_flags & SHF_ALLOC)) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100575 continue;
576 }
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700577 sh_symtab = sec_symtab->symtab;
578 sym_strtab = sec_symtab->link->strtab;
Kees Cookbf116552013-04-12 13:13:42 -0700579 for (j = 0; j < sec->shdr.sh_size/sizeof(Elf_Rel); j++) {
580 Elf_Rel *rel;
581 Elf_Sym *sym;
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100582 const char *name;
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700583 rel = &sec->reltab[j];
Kees Cookbf116552013-04-12 13:13:42 -0700584 sym = &sh_symtab[ELF_R_SYM(rel->r_info)];
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100585 name = sym_name(sym_strtab, sym);
586 if (sym->st_shndx != SHN_ABS) {
587 continue;
588 }
Vivek Goyal6a044b32006-12-07 02:14:04 +0100589
590 /* Absolute symbols are not relocated if bzImage is
591 * loaded at a non-compiled address. Display a warning
592 * to user at compile time about the absolute
593 * relocations present.
594 *
595 * User need to audit the code to make sure
596 * some symbols which should have been section
597 * relative have not become absolute because of some
598 * linker optimization or wrong programming usage.
599 *
600 * Before warning check if this absolute symbol
601 * relocation is harmless.
602 */
H. Peter Anvin6520fe52012-05-08 21:22:24 +0300603 if (is_reloc(S_ABS, name) || is_reloc(S_REL, name))
Vivek Goyal6a044b32006-12-07 02:14:04 +0100604 continue;
605
606 if (!printed) {
607 printf("WARNING: Absolute relocations"
608 " present\n");
609 printf("Offset Info Type Sym.Value "
610 "Sym.Name\n");
611 printed = 1;
612 }
613
Kees Cook946166a2013-04-12 13:13:44 -0700614 printf(format,
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100615 rel->r_offset,
616 rel->r_info,
Kees Cookbf116552013-04-12 13:13:42 -0700617 rel_type(ELF_R_TYPE(rel->r_info)),
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100618 sym->st_value,
619 name);
620 }
621 }
Vivek Goyal6a044b32006-12-07 02:14:04 +0100622
623 if (printed)
624 printf("\n");
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100625}
626
Kees Cook5d442e62013-04-12 13:13:43 -0700627static void add_reloc(struct relocs *r, uint32_t offset)
628{
629 if (r->count == r->size) {
630 unsigned long newsize = r->size + 50000;
631 void *mem = realloc(r->offset, newsize * sizeof(r->offset[0]));
632
633 if (!mem)
634 die("realloc of %ld entries for relocs failed\n",
635 newsize);
636 r->offset = mem;
637 r->size = newsize;
638 }
639 r->offset[r->count++] = offset;
640}
641
642static void walk_relocs(int (*process)(struct section *sec, Elf_Rel *rel,
643 Elf_Sym *sym, const char *symname))
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100644{
645 int i;
646 /* Walk through the relocations */
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700647 for (i = 0; i < ehdr.e_shnum; i++) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100648 char *sym_strtab;
Kees Cookbf116552013-04-12 13:13:42 -0700649 Elf_Sym *sh_symtab;
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700650 struct section *sec_applies, *sec_symtab;
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100651 int j;
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700652 struct section *sec = &secs[i];
653
Kees Cookbf116552013-04-12 13:13:42 -0700654 if (sec->shdr.sh_type != SHT_REL_TYPE) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100655 continue;
656 }
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700657 sec_symtab = sec->link;
658 sec_applies = &secs[sec->shdr.sh_info];
659 if (!(sec_applies->shdr.sh_flags & SHF_ALLOC)) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100660 continue;
661 }
H. Peter Anvin908ec7a2008-06-30 14:42:18 -0700662 sh_symtab = sec_symtab->symtab;
H. Peter Anvincc65f1e2008-10-03 13:00:56 -0700663 sym_strtab = sec_symtab->link->strtab;
Kees Cookbf116552013-04-12 13:13:42 -0700664 for (j = 0; j < sec->shdr.sh_size/sizeof(Elf_Rel); j++) {
Kees Cook5d442e62013-04-12 13:13:43 -0700665 Elf_Rel *rel = &sec->reltab[j];
666 Elf_Sym *sym = &sh_symtab[ELF_R_SYM(rel->r_info)];
667 const char *symname = sym_name(sym_strtab, sym);
H. Peter Anvin24ab82b2012-05-18 09:52:01 -0700668
Kees Cook5d442e62013-04-12 13:13:43 -0700669 process(sec, rel, sym, symname);
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100670 }
671 }
672}
673
Kees Cook946166a2013-04-12 13:13:44 -0700674/*
675 * The .data..percpu section is a special case for x86_64 SMP kernels.
676 * It is used to initialize the actual per_cpu areas and to provide
677 * definitions for the per_cpu variables that correspond to their offsets
678 * within the percpu area. Since the values of all of the symbols need
679 * to be offsets from the start of the per_cpu area the virtual address
680 * (sh_addr) of .data..percpu is 0 in SMP kernels.
681 *
682 * This means that:
683 *
684 * Relocations that reference symbols in the per_cpu area do not
685 * need further relocation (since the value is an offset relative
686 * to the start of the per_cpu area that does not change).
687 *
688 * Relocations that apply to the per_cpu area need to have their
689 * offset adjusted by by the value of __per_cpu_load to make them
690 * point to the correct place in the loaded image (because the
691 * virtual address of .data..percpu is 0).
692 *
693 * For non SMP kernels .data..percpu is linked as part of the normal
694 * kernel data and does not require special treatment.
695 *
696 */
697static int per_cpu_shndx = -1;
698Elf_Addr per_cpu_load_addr;
699
700static void percpu_init(void)
701{
702 int i;
703 for (i = 0; i < ehdr.e_shnum; i++) {
704 ElfW(Sym) *sym;
705 if (strcmp(sec_name(i), ".data..percpu"))
706 continue;
707
708 if (secs[i].shdr.sh_addr != 0) /* non SMP kernel */
709 return;
710
711 sym = sym_lookup("__per_cpu_load");
712 if (!sym)
713 die("can't find __per_cpu_load\n");
714
715 per_cpu_shndx = i;
716 per_cpu_load_addr = sym->st_value;
717 return;
718 }
719}
720
H. Peter Anvinc889ba82013-04-16 16:02:58 -0700721#if ELF_BITS == 64
722
Kees Cook946166a2013-04-12 13:13:44 -0700723/*
724 * Check to see if a symbol lies in the .data..percpu section.
Michael Davidsond751c162013-10-10 18:39:54 -0700725 *
726 * The linker incorrectly associates some symbols with the
727 * .data..percpu section so we also need to check the symbol
728 * name to make sure that we classify the symbol correctly.
729 *
730 * The GNU linker incorrectly associates:
731 * __init_begin
Kees Cookaec58ba2013-10-15 23:43:14 -0700732 * __per_cpu_load
Michael Davidsond751c162013-10-10 18:39:54 -0700733 *
734 * The "gold" linker incorrectly associates:
735 * init_per_cpu__irq_stack_union
736 * init_per_cpu__gdt_page
Kees Cook946166a2013-04-12 13:13:44 -0700737 */
738static int is_percpu_sym(ElfW(Sym) *sym, const char *symname)
739{
740 return (sym->st_shndx == per_cpu_shndx) &&
Michael Davidsond751c162013-10-10 18:39:54 -0700741 strcmp(symname, "__init_begin") &&
Kees Cookaec58ba2013-10-15 23:43:14 -0700742 strcmp(symname, "__per_cpu_load") &&
Michael Davidsond751c162013-10-10 18:39:54 -0700743 strncmp(symname, "init_per_cpu_", 13);
Kees Cook946166a2013-04-12 13:13:44 -0700744}
745
H. Peter Anvinc889ba82013-04-16 16:02:58 -0700746
Kees Cook946166a2013-04-12 13:13:44 -0700747static int do_reloc64(struct section *sec, Elf_Rel *rel, ElfW(Sym) *sym,
748 const char *symname)
749{
750 unsigned r_type = ELF64_R_TYPE(rel->r_info);
751 ElfW(Addr) offset = rel->r_offset;
752 int shn_abs = (sym->st_shndx == SHN_ABS) && !is_reloc(S_REL, symname);
753
754 if (sym->st_shndx == SHN_UNDEF)
755 return 0;
756
757 /*
758 * Adjust the offset if this reloc applies to the percpu section.
759 */
760 if (sec->shdr.sh_info == per_cpu_shndx)
761 offset += per_cpu_load_addr;
762
763 switch (r_type) {
764 case R_X86_64_NONE:
765 case R_X86_64_PC32:
766 /*
767 * NONE can be ignored and PC relative relocations don't
768 * need to be adjusted.
769 */
770 break;
771
772 case R_X86_64_32:
773 case R_X86_64_32S:
774 case R_X86_64_64:
775 /*
776 * References to the percpu area don't need to be adjusted.
777 */
778 if (is_percpu_sym(sym, symname))
779 break;
780
781 if (shn_abs) {
782 /*
783 * Whitelisted absolute symbols do not require
784 * relocation.
785 */
786 if (is_reloc(S_ABS, symname))
787 break;
788
789 die("Invalid absolute %s relocation: %s\n",
790 rel_type(r_type), symname);
791 break;
792 }
793
794 /*
795 * Relocation offsets for 64 bit kernels are output
796 * as 32 bits and sign extended back to 64 bits when
797 * the relocations are processed.
798 * Make sure that the offset will fit.
799 */
800 if ((int32_t)offset != (int64_t)offset)
801 die("Relocation offset doesn't fit in 32 bits\n");
802
803 if (r_type == R_X86_64_64)
804 add_reloc(&relocs64, offset);
805 else
806 add_reloc(&relocs32, offset);
807 break;
808
809 default:
810 die("Unsupported relocation type: %s (%d)\n",
811 rel_type(r_type), r_type);
812 break;
813 }
814
815 return 0;
816}
817
H. Peter Anvinc889ba82013-04-16 16:02:58 -0700818#else
Kees Cook946166a2013-04-12 13:13:44 -0700819
820static int do_reloc32(struct section *sec, Elf_Rel *rel, Elf_Sym *sym,
821 const char *symname)
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100822{
Kees Cook5d442e62013-04-12 13:13:43 -0700823 unsigned r_type = ELF32_R_TYPE(rel->r_info);
824 int shn_abs = (sym->st_shndx == SHN_ABS) && !is_reloc(S_REL, symname);
825
826 switch (r_type) {
827 case R_386_NONE:
828 case R_386_PC32:
829 case R_386_PC16:
830 case R_386_PC8:
831 /*
832 * NONE can be ignored and PC relative relocations don't
833 * need to be adjusted.
834 */
835 break;
836
837 case R_386_32:
838 if (shn_abs) {
839 /*
840 * Whitelisted absolute symbols do not require
841 * relocation.
842 */
843 if (is_reloc(S_ABS, symname))
844 break;
845
846 die("Invalid absolute %s relocation: %s\n",
847 rel_type(r_type), symname);
848 break;
849 }
850
851 add_reloc(&relocs32, rel->r_offset);
852 break;
853
854 default:
855 die("Unsupported relocation type: %s (%d)\n",
856 rel_type(r_type), r_type);
857 break;
858 }
859
860 return 0;
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100861}
862
Kees Cook5d442e62013-04-12 13:13:43 -0700863static int do_reloc_real(struct section *sec, Elf_Rel *rel, Elf_Sym *sym,
864 const char *symname)
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100865{
Kees Cook5d442e62013-04-12 13:13:43 -0700866 unsigned r_type = ELF32_R_TYPE(rel->r_info);
867 int shn_abs = (sym->st_shndx == SHN_ABS) && !is_reloc(S_REL, symname);
868
869 switch (r_type) {
870 case R_386_NONE:
871 case R_386_PC32:
872 case R_386_PC16:
873 case R_386_PC8:
874 /*
875 * NONE can be ignored and PC relative relocations don't
876 * need to be adjusted.
877 */
878 break;
879
880 case R_386_16:
881 if (shn_abs) {
882 /*
883 * Whitelisted absolute symbols do not require
884 * relocation.
885 */
886 if (is_reloc(S_ABS, symname))
887 break;
888
889 if (is_reloc(S_SEG, symname)) {
890 add_reloc(&relocs16, rel->r_offset);
891 break;
892 }
893 } else {
894 if (!is_reloc(S_LIN, symname))
895 break;
896 }
897 die("Invalid %s %s relocation: %s\n",
898 shn_abs ? "absolute" : "relative",
899 rel_type(r_type), symname);
900 break;
901
902 case R_386_32:
903 if (shn_abs) {
904 /*
905 * Whitelisted absolute symbols do not require
906 * relocation.
907 */
908 if (is_reloc(S_ABS, symname))
909 break;
910
911 if (is_reloc(S_REL, symname)) {
912 add_reloc(&relocs32, rel->r_offset);
913 break;
914 }
915 } else {
916 if (is_reloc(S_LIN, symname))
917 add_reloc(&relocs32, rel->r_offset);
918 break;
919 }
920 die("Invalid %s %s relocation: %s\n",
921 shn_abs ? "absolute" : "relative",
922 rel_type(r_type), symname);
923 break;
924
925 default:
926 die("Unsupported relocation type: %s (%d)\n",
927 rel_type(r_type), r_type);
928 break;
929 }
930
931 return 0;
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100932}
933
H. Peter Anvinc889ba82013-04-16 16:02:58 -0700934#endif
935
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100936static int cmp_relocs(const void *va, const void *vb)
937{
Kees Cook5d442e62013-04-12 13:13:43 -0700938 const uint32_t *a, *b;
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100939 a = va; b = vb;
940 return (*a == *b)? 0 : (*a > *b)? 1 : -1;
941}
942
Kees Cook5d442e62013-04-12 13:13:43 -0700943static void sort_relocs(struct relocs *r)
944{
945 qsort(r->offset, r->count, sizeof(r->offset[0]), cmp_relocs);
946}
947
948static int write32(uint32_t v, FILE *f)
H. Peter Anvin6520fe52012-05-08 21:22:24 +0300949{
950 unsigned char buf[4];
951
952 put_unaligned_le32(v, buf);
953 return fwrite(buf, 1, 4, f) == 4 ? 0 : -1;
954}
955
Kees Cook5d442e62013-04-12 13:13:43 -0700956static int write32_as_text(uint32_t v, FILE *f)
957{
958 return fprintf(f, "\t.long 0x%08"PRIx32"\n", v) > 0 ? 0 : -1;
959}
960
H. Peter Anvin6520fe52012-05-08 21:22:24 +0300961static void emit_relocs(int as_text, int use_real_mode)
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100962{
963 int i;
Kees Cook5d442e62013-04-12 13:13:43 -0700964 int (*write_reloc)(uint32_t, FILE *) = write32;
Kees Cook946166a2013-04-12 13:13:44 -0700965 int (*do_reloc)(struct section *sec, Elf_Rel *rel, Elf_Sym *sym,
966 const char *symname);
967
H. Peter Anvinc889ba82013-04-16 16:02:58 -0700968#if ELF_BITS == 64
969 if (!use_real_mode)
Kees Cook946166a2013-04-12 13:13:44 -0700970 do_reloc = do_reloc64;
H. Peter Anvinc889ba82013-04-16 16:02:58 -0700971 else
972 die("--realmode not valid for a 64-bit ELF file");
973#else
974 if (!use_real_mode)
Kees Cook946166a2013-04-12 13:13:44 -0700975 do_reloc = do_reloc32;
976 else
977 do_reloc = do_reloc_real;
H. Peter Anvinc889ba82013-04-16 16:02:58 -0700978#endif
H. Peter Anvin6520fe52012-05-08 21:22:24 +0300979
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100980 /* Collect up the relocations */
Kees Cook946166a2013-04-12 13:13:44 -0700981 walk_relocs(do_reloc);
H. Peter Anvin6520fe52012-05-08 21:22:24 +0300982
Kees Cook5d442e62013-04-12 13:13:43 -0700983 if (relocs16.count && !use_real_mode)
H. Peter Anvin6520fe52012-05-08 21:22:24 +0300984 die("Segment relocations found but --realmode not specified\n");
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100985
986 /* Order the relocations for more efficient processing */
Kees Cook5d442e62013-04-12 13:13:43 -0700987 sort_relocs(&relocs16);
988 sort_relocs(&relocs32);
Kees Cook946166a2013-04-12 13:13:44 -0700989 sort_relocs(&relocs64);
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100990
991 /* Print the relocations */
992 if (as_text) {
993 /* Print the relocations in a form suitable that
994 * gas will like.
995 */
996 printf(".section \".data.reloc\",\"a\"\n");
997 printf(".balign 4\n");
Kees Cook5d442e62013-04-12 13:13:43 -0700998 write_reloc = write32_as_text;
Eric W. Biederman968de4f2006-12-07 02:14:04 +0100999 }
H. Peter Anvin6520fe52012-05-08 21:22:24 +03001000
Kees Cook5d442e62013-04-12 13:13:43 -07001001 if (use_real_mode) {
1002 write_reloc(relocs16.count, stdout);
1003 for (i = 0; i < relocs16.count; i++)
1004 write_reloc(relocs16.offset[i], stdout);
H. Peter Anvin6520fe52012-05-08 21:22:24 +03001005
Kees Cook5d442e62013-04-12 13:13:43 -07001006 write_reloc(relocs32.count, stdout);
1007 for (i = 0; i < relocs32.count; i++)
1008 write_reloc(relocs32.offset[i], stdout);
1009 } else {
H. Peter Anvinc889ba82013-04-16 16:02:58 -07001010 if (ELF_BITS == 64) {
Kees Cook946166a2013-04-12 13:13:44 -07001011 /* Print a stop */
1012 write_reloc(0, stdout);
1013
1014 /* Now print each relocation */
1015 for (i = 0; i < relocs64.count; i++)
1016 write_reloc(relocs64.offset[i], stdout);
1017 }
1018
Kees Cook5d442e62013-04-12 13:13:43 -07001019 /* Print a stop */
1020 write_reloc(0, stdout);
1021
1022 /* Now print each relocation */
1023 for (i = 0; i < relocs32.count; i++)
1024 write_reloc(relocs32.offset[i], stdout);
Eric W. Biederman968de4f2006-12-07 02:14:04 +01001025 }
1026}
1027
Michael Davidson214a8872014-01-21 12:32:23 -08001028/*
1029 * As an aid to debugging problems with different linkers
1030 * print summary information about the relocs.
1031 * Since different linkers tend to emit the sections in
1032 * different orders we use the section names in the output.
1033 */
1034static int do_reloc_info(struct section *sec, Elf_Rel *rel, ElfW(Sym) *sym,
1035 const char *symname)
1036{
1037 printf("%s\t%s\t%s\t%s\n",
1038 sec_name(sec->shdr.sh_info),
1039 rel_type(ELF_R_TYPE(rel->r_info)),
1040 symname,
1041 sec_name(sym->st_shndx));
1042 return 0;
1043}
1044
1045static void print_reloc_info(void)
1046{
1047 printf("reloc section\treloc type\tsymbol\tsymbol section\n");
1048 walk_relocs(do_reloc_info);
1049}
1050
H. Peter Anvinc889ba82013-04-16 16:02:58 -07001051#if ELF_BITS == 64
1052# define process process_64
1053#else
1054# define process process_32
1055#endif
Eric W. Biederman968de4f2006-12-07 02:14:04 +01001056
H. Peter Anvinc889ba82013-04-16 16:02:58 -07001057void process(FILE *fp, int use_real_mode, int as_text,
Michael Davidson214a8872014-01-21 12:32:23 -08001058 int show_absolute_syms, int show_absolute_relocs,
1059 int show_reloc_info)
Eric W. Biederman968de4f2006-12-07 02:14:04 +01001060{
H. Peter Anvin6520fe52012-05-08 21:22:24 +03001061 regex_init(use_real_mode);
Eric W. Biederman968de4f2006-12-07 02:14:04 +01001062 read_ehdr(fp);
1063 read_shdrs(fp);
1064 read_strtabs(fp);
1065 read_symtabs(fp);
1066 read_relocs(fp);
H. Peter Anvinc889ba82013-04-16 16:02:58 -07001067 if (ELF_BITS == 64)
Kees Cook946166a2013-04-12 13:13:44 -07001068 percpu_init();
Vivek Goyal6a044b32006-12-07 02:14:04 +01001069 if (show_absolute_syms) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +01001070 print_absolute_symbols();
H. Peter Anvinc889ba82013-04-16 16:02:58 -07001071 return;
Vivek Goyal6a044b32006-12-07 02:14:04 +01001072 }
1073 if (show_absolute_relocs) {
Eric W. Biederman968de4f2006-12-07 02:14:04 +01001074 print_absolute_relocs();
H. Peter Anvinc889ba82013-04-16 16:02:58 -07001075 return;
Eric W. Biederman968de4f2006-12-07 02:14:04 +01001076 }
Michael Davidson214a8872014-01-21 12:32:23 -08001077 if (show_reloc_info) {
1078 print_reloc_info();
1079 return;
1080 }
H. Peter Anvin6520fe52012-05-08 21:22:24 +03001081 emit_relocs(as_text, use_real_mode);
Eric W. Biederman968de4f2006-12-07 02:14:04 +01001082}