]>
Commit | Line | Data |
---|---|---|
252b5132 | 1 | /* readelf.c -- display contents of an ELF format file |
b3adc24a | 2 | Copyright (C) 1998-2020 Free Software Foundation, Inc. |
252b5132 RH |
3 | |
4 | Originally developed by Eric Youngdale <[email protected]> | |
12ab83a9 | 5 | Modifications by Nick Clifton <[email protected]> |
252b5132 RH |
6 | |
7 | This file is part of GNU Binutils. | |
8 | ||
9 | This program is free software; you can redistribute it and/or modify | |
10 | it under the terms of the GNU General Public License as published by | |
32866df7 | 11 | the Free Software Foundation; either version 3 of the License, or |
252b5132 RH |
12 | (at your option) any later version. |
13 | ||
14 | This program is distributed in the hope that it will be useful, | |
15 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 | GNU General Public License for more details. | |
18 | ||
19 | You should have received a copy of the GNU General Public License | |
20 | along with this program; if not, write to the Free Software | |
b43b5d5f NC |
21 | Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA |
22 | 02110-1301, USA. */ | |
252b5132 | 23 | \f |
9eb20dd8 | 24 | /* The difference between readelf and objdump: |
252b5132 | 25 | |
74013231 | 26 | Both programs are capable of displaying the contents of ELF format files, |
9eb20dd8 | 27 | so why does the binutils project have two file dumpers ? |
0de14b54 | 28 | |
9eb20dd8 NC |
29 | The reason is that objdump sees an ELF file through a BFD filter of the |
30 | world; if BFD has a bug where, say, it disagrees about a machine constant | |
31 | in e_flags, then the odds are good that it will remain internally | |
32 | consistent. The linker sees it the BFD way, objdump sees it the BFD way, | |
33 | GAS sees it the BFD way. There was need for a tool to go find out what | |
34 | the file actually says. | |
35 | ||
36 | This is why the readelf program does not link against the BFD library - it | |
37 | exists as an independent program to help verify the correct working of BFD. | |
38 | ||
39 | There is also the case that readelf can provide more information about an | |
40 | ELF file than is provided by objdump. In particular it can display DWARF | |
41 | debugging information which (at the moment) objdump cannot. */ | |
42 | \f | |
3db64b00 | 43 | #include "sysdep.h" |
252b5132 | 44 | #include <assert.h> |
252b5132 | 45 | #include <time.h> |
1b315056 | 46 | #include <zlib.h> |
3bfcb652 | 47 | #ifdef HAVE_WCHAR_H |
7bfd842d | 48 | #include <wchar.h> |
3bfcb652 | 49 | #endif |
252b5132 | 50 | |
a952a375 | 51 | #if __GNUC__ >= 2 |
19936277 | 52 | /* Define BFD64 here, even if our default architecture is 32 bit ELF |
a952a375 | 53 | as this will allow us to read in and parse 64bit and 32bit ELF files. |
b34976b6 | 54 | Only do this if we believe that the compiler can support a 64 bit |
a952a375 | 55 | data type. For now we only rely on GCC being able to do this. */ |
19936277 | 56 | #define BFD64 |
a952a375 NC |
57 | #endif |
58 | ||
3db64b00 AM |
59 | #include "bfd.h" |
60 | #include "bucomm.h" | |
3284fe0c | 61 | #include "elfcomm.h" |
19e6b90e | 62 | #include "dwarf.h" |
7d9813f1 | 63 | #include "ctf-api.h" |
252b5132 RH |
64 | |
65 | #include "elf/common.h" | |
66 | #include "elf/external.h" | |
67 | #include "elf/internal.h" | |
252b5132 | 68 | |
4b78141a NC |
69 | |
70 | /* Included here, before RELOC_MACROS_GEN_FUNC is defined, so that | |
71 | we can obtain the H8 reloc numbers. We need these for the | |
72 | get_reloc_size() function. We include h8.h again after defining | |
73 | RELOC_MACROS_GEN_FUNC so that we get the naming function as well. */ | |
74 | ||
75 | #include "elf/h8.h" | |
76 | #undef _ELF_H8_H | |
77 | ||
78 | /* Undo the effects of #including reloc-macros.h. */ | |
79 | ||
80 | #undef START_RELOC_NUMBERS | |
81 | #undef RELOC_NUMBER | |
82 | #undef FAKE_RELOC | |
83 | #undef EMPTY_RELOC | |
84 | #undef END_RELOC_NUMBERS | |
85 | #undef _RELOC_MACROS_H | |
86 | ||
252b5132 RH |
87 | /* The following headers use the elf/reloc-macros.h file to |
88 | automatically generate relocation recognition functions | |
89 | such as elf_mips_reloc_type() */ | |
90 | ||
91 | #define RELOC_MACROS_GEN_FUNC | |
92 | ||
a06ea964 | 93 | #include "elf/aarch64.h" |
252b5132 | 94 | #include "elf/alpha.h" |
3b16e843 | 95 | #include "elf/arc.h" |
252b5132 | 96 | #include "elf/arm.h" |
3b16e843 | 97 | #include "elf/avr.h" |
1d65ded4 | 98 | #include "elf/bfin.h" |
60bca95a | 99 | #include "elf/cr16.h" |
3b16e843 | 100 | #include "elf/cris.h" |
1c0d3aa6 | 101 | #include "elf/crx.h" |
b8891f8d | 102 | #include "elf/csky.h" |
252b5132 RH |
103 | #include "elf/d10v.h" |
104 | #include "elf/d30v.h" | |
d172d4ba | 105 | #include "elf/dlx.h" |
aca4efc7 | 106 | #include "elf/bpf.h" |
cfb8c092 | 107 | #include "elf/epiphany.h" |
252b5132 | 108 | #include "elf/fr30.h" |
5c70f934 | 109 | #include "elf/frv.h" |
3f8107ab | 110 | #include "elf/ft32.h" |
3b16e843 NC |
111 | #include "elf/h8.h" |
112 | #include "elf/hppa.h" | |
113 | #include "elf/i386.h" | |
f954747f AM |
114 | #include "elf/i370.h" |
115 | #include "elf/i860.h" | |
116 | #include "elf/i960.h" | |
3b16e843 | 117 | #include "elf/ia64.h" |
1e4cf259 | 118 | #include "elf/ip2k.h" |
84e94c90 | 119 | #include "elf/lm32.h" |
1c0d3aa6 | 120 | #include "elf/iq2000.h" |
49f58d10 | 121 | #include "elf/m32c.h" |
3b16e843 NC |
122 | #include "elf/m32r.h" |
123 | #include "elf/m68k.h" | |
75751cd9 | 124 | #include "elf/m68hc11.h" |
7b4ae824 | 125 | #include "elf/s12z.h" |
252b5132 | 126 | #include "elf/mcore.h" |
15ab5209 | 127 | #include "elf/mep.h" |
a3c62988 | 128 | #include "elf/metag.h" |
7ba29e2a | 129 | #include "elf/microblaze.h" |
3b16e843 | 130 | #include "elf/mips.h" |
3c3bdf30 | 131 | #include "elf/mmix.h" |
3b16e843 NC |
132 | #include "elf/mn10200.h" |
133 | #include "elf/mn10300.h" | |
5506d11a | 134 | #include "elf/moxie.h" |
4970f871 | 135 | #include "elf/mt.h" |
2469cfa2 | 136 | #include "elf/msp430.h" |
35c08157 | 137 | #include "elf/nds32.h" |
fe944acf | 138 | #include "elf/nfp.h" |
13761a11 | 139 | #include "elf/nios2.h" |
73589c9d | 140 | #include "elf/or1k.h" |
7d466069 | 141 | #include "elf/pj.h" |
3b16e843 | 142 | #include "elf/ppc.h" |
c833c019 | 143 | #include "elf/ppc64.h" |
2b100bb5 | 144 | #include "elf/pru.h" |
03336641 | 145 | #include "elf/riscv.h" |
99c513f6 | 146 | #include "elf/rl78.h" |
c7927a3c | 147 | #include "elf/rx.h" |
a85d7ed0 | 148 | #include "elf/s390.h" |
1c0d3aa6 | 149 | #include "elf/score.h" |
3b16e843 NC |
150 | #include "elf/sh.h" |
151 | #include "elf/sparc.h" | |
e9f53129 | 152 | #include "elf/spu.h" |
40b36596 | 153 | #include "elf/tic6x.h" |
aa137e4d NC |
154 | #include "elf/tilegx.h" |
155 | #include "elf/tilepro.h" | |
3b16e843 | 156 | #include "elf/v850.h" |
179d3252 | 157 | #include "elf/vax.h" |
619ed720 | 158 | #include "elf/visium.h" |
f96bd6c2 | 159 | #include "elf/wasm32.h" |
3b16e843 | 160 | #include "elf/x86-64.h" |
c29aca4a | 161 | #include "elf/xc16x.h" |
f6c1a2d5 | 162 | #include "elf/xgate.h" |
93fbbb04 | 163 | #include "elf/xstormy16.h" |
88da6820 | 164 | #include "elf/xtensa.h" |
6655dba2 | 165 | #include "elf/z80.h" |
252b5132 | 166 | |
252b5132 | 167 | #include "getopt.h" |
566b0d53 | 168 | #include "libiberty.h" |
09c11c86 | 169 | #include "safe-ctype.h" |
2cf0635d | 170 | #include "filenames.h" |
252b5132 | 171 | |
15b42fb0 AM |
172 | #ifndef offsetof |
173 | #define offsetof(TYPE, MEMBER) ((size_t) &(((TYPE *) 0)->MEMBER)) | |
174 | #endif | |
175 | ||
6a40cf0c NC |
176 | typedef struct elf_section_list |
177 | { | |
dda8d76d NC |
178 | Elf_Internal_Shdr * hdr; |
179 | struct elf_section_list * next; | |
6a40cf0c NC |
180 | } elf_section_list; |
181 | ||
dda8d76d NC |
182 | /* Flag bits indicating particular types of dump. */ |
183 | #define HEX_DUMP (1 << 0) /* The -x command line switch. */ | |
184 | #define DISASS_DUMP (1 << 1) /* The -i command line switch. */ | |
185 | #define DEBUG_DUMP (1 << 2) /* The -w command line switch. */ | |
186 | #define STRING_DUMP (1 << 3) /* The -p command line switch. */ | |
187 | #define RELOC_DUMP (1 << 4) /* The -R command line switch. */ | |
d344b407 | 188 | #define CTF_DUMP (1 << 5) /* The --ctf command line switch. */ |
dda8d76d NC |
189 | |
190 | typedef unsigned char dump_type; | |
191 | ||
192 | /* A linked list of the section names for which dumps were requested. */ | |
193 | struct dump_list_entry | |
194 | { | |
195 | char * name; | |
196 | dump_type type; | |
197 | struct dump_list_entry * next; | |
198 | }; | |
199 | ||
6431e409 AM |
200 | /* A dynamic array of flags indicating for which sections a dump |
201 | has been requested via command line switches. */ | |
202 | struct dump_data { | |
203 | dump_type * dump_sects; | |
204 | unsigned int num_dump_sects; | |
205 | }; | |
206 | ||
207 | static struct dump_data cmdline; | |
208 | ||
209 | static struct dump_list_entry * dump_sects_byname; | |
210 | ||
2cf0635d | 211 | char * program_name = "readelf"; |
dda8d76d | 212 | |
32ec8896 NC |
213 | static bfd_boolean show_name = FALSE; |
214 | static bfd_boolean do_dynamic = FALSE; | |
215 | static bfd_boolean do_syms = FALSE; | |
216 | static bfd_boolean do_dyn_syms = FALSE; | |
217 | static bfd_boolean do_reloc = FALSE; | |
218 | static bfd_boolean do_sections = FALSE; | |
219 | static bfd_boolean do_section_groups = FALSE; | |
220 | static bfd_boolean do_section_details = FALSE; | |
221 | static bfd_boolean do_segments = FALSE; | |
222 | static bfd_boolean do_unwind = FALSE; | |
223 | static bfd_boolean do_using_dynamic = FALSE; | |
224 | static bfd_boolean do_header = FALSE; | |
225 | static bfd_boolean do_dump = FALSE; | |
226 | static bfd_boolean do_version = FALSE; | |
227 | static bfd_boolean do_histogram = FALSE; | |
228 | static bfd_boolean do_debugging = FALSE; | |
7d9813f1 | 229 | static bfd_boolean do_ctf = FALSE; |
32ec8896 NC |
230 | static bfd_boolean do_arch = FALSE; |
231 | static bfd_boolean do_notes = FALSE; | |
232 | static bfd_boolean do_archive_index = FALSE; | |
233 | static bfd_boolean is_32bit_elf = FALSE; | |
234 | static bfd_boolean decompress_dumps = FALSE; | |
252b5132 | 235 | |
7d9813f1 NA |
236 | static char *dump_ctf_parent_name; |
237 | static char *dump_ctf_symtab_name; | |
238 | static char *dump_ctf_strtab_name; | |
239 | ||
e4b17d5c L |
240 | struct group_list |
241 | { | |
dda8d76d NC |
242 | struct group_list * next; |
243 | unsigned int section_index; | |
e4b17d5c L |
244 | }; |
245 | ||
246 | struct group | |
247 | { | |
dda8d76d NC |
248 | struct group_list * root; |
249 | unsigned int group_index; | |
e4b17d5c L |
250 | }; |
251 | ||
978c4450 AM |
252 | typedef struct filedata |
253 | { | |
254 | const char * file_name; | |
255 | FILE * handle; | |
256 | bfd_size_type file_size; | |
257 | Elf_Internal_Ehdr file_header; | |
258 | Elf_Internal_Shdr * section_headers; | |
259 | Elf_Internal_Phdr * program_headers; | |
260 | char * string_table; | |
261 | unsigned long string_table_length; | |
262 | unsigned long archive_file_offset; | |
263 | unsigned long archive_file_size; | |
264 | unsigned long dynamic_addr; | |
265 | bfd_size_type dynamic_size; | |
266 | size_t dynamic_nent; | |
267 | Elf_Internal_Dyn * dynamic_section; | |
268 | char * dynamic_strings; | |
269 | unsigned long dynamic_strings_length; | |
270 | unsigned long num_dynamic_syms; | |
271 | Elf_Internal_Sym * dynamic_symbols; | |
272 | bfd_vma version_info[16]; | |
273 | unsigned int dynamic_syminfo_nent; | |
274 | Elf_Internal_Syminfo * dynamic_syminfo; | |
275 | unsigned long dynamic_syminfo_offset; | |
276 | bfd_size_type nbuckets; | |
277 | bfd_size_type nchains; | |
278 | bfd_vma * buckets; | |
279 | bfd_vma * chains; | |
280 | bfd_size_type ngnubuckets; | |
281 | bfd_size_type ngnuchains; | |
282 | bfd_vma * gnubuckets; | |
283 | bfd_vma * gnuchains; | |
284 | bfd_vma * mipsxlat; | |
285 | bfd_vma gnusymidx; | |
286 | char program_interpreter[PATH_MAX]; | |
287 | bfd_vma dynamic_info[DT_ENCODING]; | |
288 | bfd_vma dynamic_info_DT_GNU_HASH; | |
289 | bfd_vma dynamic_info_DT_MIPS_XHASH; | |
290 | elf_section_list * symtab_shndx_list; | |
291 | size_t group_count; | |
292 | struct group * section_groups; | |
293 | struct group ** section_headers_groups; | |
294 | /* A dynamic array of flags indicating for which sections a dump of | |
295 | some kind has been requested. It is reset on a per-object file | |
296 | basis and then initialised from the cmdline_dump_sects array, | |
297 | the results of interpreting the -w switch, and the | |
298 | dump_sects_byname list. */ | |
299 | struct dump_data dump; | |
300 | } Filedata; | |
aef1f6d0 | 301 | |
c256ffe7 | 302 | /* How to print a vma value. */ |
843dd992 NC |
303 | typedef enum print_mode |
304 | { | |
305 | HEX, | |
306 | DEC, | |
307 | DEC_5, | |
308 | UNSIGNED, | |
309 | PREFIX_HEX, | |
310 | FULL_HEX, | |
311 | LONG_HEX | |
312 | } | |
313 | print_mode; | |
314 | ||
bb4d2ac2 L |
315 | /* Versioned symbol info. */ |
316 | enum versioned_symbol_info | |
317 | { | |
318 | symbol_undefined, | |
319 | symbol_hidden, | |
320 | symbol_public | |
321 | }; | |
322 | ||
32ec8896 | 323 | static const char * get_symbol_version_string |
dda8d76d | 324 | (Filedata *, bfd_boolean, const char *, unsigned long, unsigned, |
32ec8896 | 325 | Elf_Internal_Sym *, enum versioned_symbol_info *, unsigned short *); |
bb4d2ac2 | 326 | |
9c19a809 NC |
327 | #define UNKNOWN -1 |
328 | ||
2b692964 NC |
329 | #define SECTION_NAME(X) \ |
330 | ((X) == NULL ? _("<none>") \ | |
dda8d76d NC |
331 | : filedata->string_table == NULL ? _("<no-strings>") \ |
332 | : ((X)->sh_name >= filedata->string_table_length ? _("<corrupt>") \ | |
333 | : filedata->string_table + (X)->sh_name)) | |
252b5132 | 334 | |
ee42cf8c | 335 | #define DT_VERSIONTAGIDX(tag) (DT_VERNEEDNUM - (tag)) /* Reverse order! */ |
252b5132 | 336 | |
ba5cdace NC |
337 | #define GET_ELF_SYMBOLS(file, section, sym_count) \ |
338 | (is_32bit_elf ? get_32bit_elf_symbols (file, section, sym_count) \ | |
339 | : get_64bit_elf_symbols (file, section, sym_count)) | |
9ea033b2 | 340 | |
10ca4b04 L |
341 | #define VALID_SYMBOL_NAME(strtab, strtab_size, offset) \ |
342 | (strtab != NULL && offset < strtab_size) | |
978c4450 AM |
343 | #define VALID_DYNAMIC_NAME(filedata, offset) \ |
344 | VALID_SYMBOL_NAME (filedata->dynamic_strings, \ | |
345 | filedata->dynamic_strings_length, offset) | |
d79b3d50 NC |
346 | /* GET_DYNAMIC_NAME asssumes that VALID_DYNAMIC_NAME has |
347 | already been called and verified that the string exists. */ | |
978c4450 AM |
348 | #define GET_DYNAMIC_NAME(filedata, offset) \ |
349 | (filedata->dynamic_strings + offset) | |
18bd398b | 350 | |
61865e30 NC |
351 | #define REMOVE_ARCH_BITS(ADDR) \ |
352 | do \ | |
353 | { \ | |
dda8d76d | 354 | if (filedata->file_header.e_machine == EM_ARM) \ |
61865e30 NC |
355 | (ADDR) &= ~1; \ |
356 | } \ | |
357 | while (0) | |
f16a9783 MS |
358 | |
359 | /* Get the correct GNU hash section name. */ | |
978c4450 AM |
360 | #define GNU_HASH_SECTION_NAME(filedata) \ |
361 | filedata->dynamic_info_DT_MIPS_XHASH ? ".MIPS.xhash" : ".gnu.hash" | |
d79b3d50 | 362 | \f |
66cfc0fd AM |
363 | /* Print a BFD_VMA to an internal buffer, for use in error messages. |
364 | BFD_FMA_FMT can't be used in translated strings. */ | |
365 | ||
366 | static const char * | |
367 | bfd_vmatoa (char *fmtch, bfd_vma value) | |
368 | { | |
369 | /* bfd_vmatoa is used more then once in a printf call for output. | |
370 | Cycle through an array of buffers. */ | |
371 | static int buf_pos = 0; | |
372 | static struct bfd_vmatoa_buf | |
373 | { | |
374 | char place[64]; | |
375 | } buf[4]; | |
376 | char *ret; | |
377 | char fmt[32]; | |
378 | ||
379 | ret = buf[buf_pos++].place; | |
380 | buf_pos %= ARRAY_SIZE (buf); | |
381 | ||
382 | sprintf (fmt, "%%%s%s", BFD_VMA_FMT, fmtch); | |
383 | snprintf (ret, sizeof (buf[0].place), fmt, value); | |
384 | return ret; | |
385 | } | |
386 | ||
dda8d76d NC |
387 | /* Retrieve NMEMB structures, each SIZE bytes long from FILEDATA starting at |
388 | OFFSET + the offset of the current archive member, if we are examining an | |
389 | archive. Put the retrieved data into VAR, if it is not NULL. Otherwise | |
390 | allocate a buffer using malloc and fill that. In either case return the | |
391 | pointer to the start of the retrieved data or NULL if something went wrong. | |
392 | If something does go wrong and REASON is not NULL then emit an error | |
393 | message using REASON as part of the context. */ | |
59245841 | 394 | |
c256ffe7 | 395 | static void * |
dda8d76d NC |
396 | get_data (void * var, |
397 | Filedata * filedata, | |
398 | unsigned long offset, | |
399 | bfd_size_type size, | |
400 | bfd_size_type nmemb, | |
401 | const char * reason) | |
a6e9f9df | 402 | { |
2cf0635d | 403 | void * mvar; |
57028622 | 404 | bfd_size_type amt = size * nmemb; |
a6e9f9df | 405 | |
c256ffe7 | 406 | if (size == 0 || nmemb == 0) |
a6e9f9df AM |
407 | return NULL; |
408 | ||
57028622 NC |
409 | /* If the size_t type is smaller than the bfd_size_type, eg because |
410 | you are building a 32-bit tool on a 64-bit host, then make sure | |
411 | that when the sizes are cast to (size_t) no information is lost. */ | |
7c1c1904 AM |
412 | if ((size_t) size != size |
413 | || (size_t) nmemb != nmemb | |
414 | || (size_t) amt != amt) | |
57028622 NC |
415 | { |
416 | if (reason) | |
66cfc0fd AM |
417 | error (_("Size truncation prevents reading %s" |
418 | " elements of size %s for %s\n"), | |
419 | bfd_vmatoa ("u", nmemb), bfd_vmatoa ("u", size), reason); | |
57028622 NC |
420 | return NULL; |
421 | } | |
422 | ||
423 | /* Check for size overflow. */ | |
7c1c1904 | 424 | if (amt / size != nmemb || (size_t) amt + 1 == 0) |
57028622 NC |
425 | { |
426 | if (reason) | |
66cfc0fd AM |
427 | error (_("Size overflow prevents reading %s" |
428 | " elements of size %s for %s\n"), | |
429 | bfd_vmatoa ("u", nmemb), bfd_vmatoa ("u", size), reason); | |
57028622 NC |
430 | return NULL; |
431 | } | |
432 | ||
c22b42ce | 433 | /* Be kind to memory checkers (eg valgrind, address sanitizer) by not |
c9c1d674 | 434 | attempting to allocate memory when the read is bound to fail. */ |
978c4450 AM |
435 | if (filedata->archive_file_offset > filedata->file_size |
436 | || offset > filedata->file_size - filedata->archive_file_offset | |
437 | || amt > filedata->file_size - filedata->archive_file_offset - offset) | |
a6e9f9df | 438 | { |
049b0c3a | 439 | if (reason) |
66cfc0fd AM |
440 | error (_("Reading %s bytes extends past end of file for %s\n"), |
441 | bfd_vmatoa ("u", amt), reason); | |
a6e9f9df AM |
442 | return NULL; |
443 | } | |
444 | ||
978c4450 AM |
445 | if (fseek (filedata->handle, filedata->archive_file_offset + offset, |
446 | SEEK_SET)) | |
071436c6 NC |
447 | { |
448 | if (reason) | |
c9c1d674 | 449 | error (_("Unable to seek to 0x%lx for %s\n"), |
978c4450 | 450 | filedata->archive_file_offset + offset, reason); |
071436c6 NC |
451 | return NULL; |
452 | } | |
453 | ||
a6e9f9df AM |
454 | mvar = var; |
455 | if (mvar == NULL) | |
456 | { | |
7c1c1904 AM |
457 | /* + 1 so that we can '\0' terminate invalid string table sections. */ |
458 | mvar = malloc ((size_t) amt + 1); | |
a6e9f9df AM |
459 | |
460 | if (mvar == NULL) | |
461 | { | |
049b0c3a | 462 | if (reason) |
66cfc0fd AM |
463 | error (_("Out of memory allocating %s bytes for %s\n"), |
464 | bfd_vmatoa ("u", amt), reason); | |
a6e9f9df AM |
465 | return NULL; |
466 | } | |
c256ffe7 | 467 | |
c9c1d674 | 468 | ((char *) mvar)[amt] = '\0'; |
a6e9f9df AM |
469 | } |
470 | ||
dda8d76d | 471 | if (fread (mvar, (size_t) size, (size_t) nmemb, filedata->handle) != nmemb) |
a6e9f9df | 472 | { |
049b0c3a | 473 | if (reason) |
66cfc0fd AM |
474 | error (_("Unable to read in %s bytes of %s\n"), |
475 | bfd_vmatoa ("u", amt), reason); | |
a6e9f9df AM |
476 | if (mvar != var) |
477 | free (mvar); | |
478 | return NULL; | |
479 | } | |
480 | ||
481 | return mvar; | |
482 | } | |
483 | ||
32ec8896 NC |
484 | /* Print a VMA value in the MODE specified. |
485 | Returns the number of characters displayed. */ | |
cb8f3167 | 486 | |
32ec8896 | 487 | static unsigned int |
14a91970 | 488 | print_vma (bfd_vma vma, print_mode mode) |
66543521 | 489 | { |
32ec8896 | 490 | unsigned int nc = 0; |
66543521 | 491 | |
14a91970 | 492 | switch (mode) |
66543521 | 493 | { |
14a91970 AM |
494 | case FULL_HEX: |
495 | nc = printf ("0x"); | |
1a0670f3 | 496 | /* Fall through. */ |
14a91970 | 497 | case LONG_HEX: |
f7a99963 | 498 | #ifdef BFD64 |
14a91970 | 499 | if (is_32bit_elf) |
437c2fb7 | 500 | return nc + printf ("%8.8" BFD_VMA_FMT "x", vma); |
f7a99963 | 501 | #endif |
14a91970 AM |
502 | printf_vma (vma); |
503 | return nc + 16; | |
b19aac67 | 504 | |
14a91970 AM |
505 | case DEC_5: |
506 | if (vma <= 99999) | |
507 | return printf ("%5" BFD_VMA_FMT "d", vma); | |
1a0670f3 | 508 | /* Fall through. */ |
14a91970 AM |
509 | case PREFIX_HEX: |
510 | nc = printf ("0x"); | |
1a0670f3 | 511 | /* Fall through. */ |
14a91970 AM |
512 | case HEX: |
513 | return nc + printf ("%" BFD_VMA_FMT "x", vma); | |
b19aac67 | 514 | |
14a91970 AM |
515 | case DEC: |
516 | return printf ("%" BFD_VMA_FMT "d", vma); | |
b19aac67 | 517 | |
14a91970 AM |
518 | case UNSIGNED: |
519 | return printf ("%" BFD_VMA_FMT "u", vma); | |
32ec8896 NC |
520 | |
521 | default: | |
522 | /* FIXME: Report unrecognised mode ? */ | |
523 | return 0; | |
f7a99963 | 524 | } |
f7a99963 NC |
525 | } |
526 | ||
7bfd842d | 527 | /* Display a symbol on stdout. Handles the display of control characters and |
3bfcb652 | 528 | multibye characters (assuming the host environment supports them). |
31104126 | 529 | |
7bfd842d NC |
530 | Display at most abs(WIDTH) characters, truncating as necessary, unless do_wide is true. |
531 | ||
532 | If WIDTH is negative then ensure that the output is at least (- WIDTH) characters, | |
533 | padding as necessary. | |
171191ba NC |
534 | |
535 | Returns the number of emitted characters. */ | |
536 | ||
537 | static unsigned int | |
32ec8896 | 538 | print_symbol (signed int width, const char *symbol) |
31104126 | 539 | { |
171191ba | 540 | bfd_boolean extra_padding = FALSE; |
32ec8896 | 541 | signed int num_printed = 0; |
3bfcb652 | 542 | #ifdef HAVE_MBSTATE_T |
7bfd842d | 543 | mbstate_t state; |
3bfcb652 | 544 | #endif |
32ec8896 | 545 | unsigned int width_remaining; |
961c521f | 546 | |
7bfd842d | 547 | if (width < 0) |
961c521f | 548 | { |
88305e1b | 549 | /* Keep the width positive. This helps the code below. */ |
961c521f | 550 | width = - width; |
171191ba | 551 | extra_padding = TRUE; |
0b4362b0 | 552 | } |
56d8f8a9 NC |
553 | else if (width == 0) |
554 | return 0; | |
961c521f | 555 | |
7bfd842d NC |
556 | if (do_wide) |
557 | /* Set the remaining width to a very large value. | |
558 | This simplifies the code below. */ | |
559 | width_remaining = INT_MAX; | |
560 | else | |
561 | width_remaining = width; | |
cb8f3167 | 562 | |
3bfcb652 | 563 | #ifdef HAVE_MBSTATE_T |
7bfd842d NC |
564 | /* Initialise the multibyte conversion state. */ |
565 | memset (& state, 0, sizeof (state)); | |
3bfcb652 | 566 | #endif |
961c521f | 567 | |
7bfd842d NC |
568 | while (width_remaining) |
569 | { | |
570 | size_t n; | |
7bfd842d | 571 | const char c = *symbol++; |
961c521f | 572 | |
7bfd842d | 573 | if (c == 0) |
961c521f NC |
574 | break; |
575 | ||
7bfd842d NC |
576 | /* Do not print control characters directly as they can affect terminal |
577 | settings. Such characters usually appear in the names generated | |
578 | by the assembler for local labels. */ | |
579 | if (ISCNTRL (c)) | |
961c521f | 580 | { |
7bfd842d | 581 | if (width_remaining < 2) |
961c521f NC |
582 | break; |
583 | ||
7bfd842d NC |
584 | printf ("^%c", c + 0x40); |
585 | width_remaining -= 2; | |
171191ba | 586 | num_printed += 2; |
961c521f | 587 | } |
7bfd842d NC |
588 | else if (ISPRINT (c)) |
589 | { | |
590 | putchar (c); | |
591 | width_remaining --; | |
592 | num_printed ++; | |
593 | } | |
961c521f NC |
594 | else |
595 | { | |
3bfcb652 NC |
596 | #ifdef HAVE_MBSTATE_T |
597 | wchar_t w; | |
598 | #endif | |
7bfd842d NC |
599 | /* Let printf do the hard work of displaying multibyte characters. */ |
600 | printf ("%.1s", symbol - 1); | |
601 | width_remaining --; | |
602 | num_printed ++; | |
603 | ||
3bfcb652 | 604 | #ifdef HAVE_MBSTATE_T |
7bfd842d NC |
605 | /* Try to find out how many bytes made up the character that was |
606 | just printed. Advance the symbol pointer past the bytes that | |
607 | were displayed. */ | |
608 | n = mbrtowc (& w, symbol - 1, MB_CUR_MAX, & state); | |
3bfcb652 NC |
609 | #else |
610 | n = 1; | |
611 | #endif | |
7bfd842d NC |
612 | if (n != (size_t) -1 && n != (size_t) -2 && n > 0) |
613 | symbol += (n - 1); | |
961c521f | 614 | } |
961c521f | 615 | } |
171191ba | 616 | |
7bfd842d | 617 | if (extra_padding && num_printed < width) |
171191ba NC |
618 | { |
619 | /* Fill in the remaining spaces. */ | |
7bfd842d NC |
620 | printf ("%-*s", width - num_printed, " "); |
621 | num_printed = width; | |
171191ba NC |
622 | } |
623 | ||
624 | return num_printed; | |
31104126 NC |
625 | } |
626 | ||
1449284b | 627 | /* Returns a pointer to a static buffer containing a printable version of |
74e1a04b NC |
628 | the given section's name. Like print_symbol, except that it does not try |
629 | to print multibyte characters, it just interprets them as hex values. */ | |
630 | ||
631 | static const char * | |
dda8d76d | 632 | printable_section_name (Filedata * filedata, const Elf_Internal_Shdr * sec) |
74e1a04b NC |
633 | { |
634 | #define MAX_PRINT_SEC_NAME_LEN 128 | |
635 | static char sec_name_buf [MAX_PRINT_SEC_NAME_LEN + 1]; | |
636 | const char * name = SECTION_NAME (sec); | |
637 | char * buf = sec_name_buf; | |
638 | char c; | |
639 | unsigned int remaining = MAX_PRINT_SEC_NAME_LEN; | |
640 | ||
641 | while ((c = * name ++) != 0) | |
642 | { | |
643 | if (ISCNTRL (c)) | |
644 | { | |
645 | if (remaining < 2) | |
646 | break; | |
948f632f | 647 | |
74e1a04b NC |
648 | * buf ++ = '^'; |
649 | * buf ++ = c + 0x40; | |
650 | remaining -= 2; | |
651 | } | |
652 | else if (ISPRINT (c)) | |
653 | { | |
654 | * buf ++ = c; | |
655 | remaining -= 1; | |
656 | } | |
657 | else | |
658 | { | |
659 | static char hex[17] = "0123456789ABCDEF"; | |
660 | ||
661 | if (remaining < 4) | |
662 | break; | |
663 | * buf ++ = '<'; | |
664 | * buf ++ = hex[(c & 0xf0) >> 4]; | |
665 | * buf ++ = hex[c & 0x0f]; | |
666 | * buf ++ = '>'; | |
667 | remaining -= 4; | |
668 | } | |
669 | ||
670 | if (remaining == 0) | |
671 | break; | |
672 | } | |
673 | ||
674 | * buf = 0; | |
675 | return sec_name_buf; | |
676 | } | |
677 | ||
678 | static const char * | |
dda8d76d | 679 | printable_section_name_from_index (Filedata * filedata, unsigned long ndx) |
74e1a04b | 680 | { |
dda8d76d | 681 | if (ndx >= filedata->file_header.e_shnum) |
74e1a04b NC |
682 | return _("<corrupt>"); |
683 | ||
dda8d76d | 684 | return printable_section_name (filedata, filedata->section_headers + ndx); |
74e1a04b NC |
685 | } |
686 | ||
89fac5e3 RS |
687 | /* Return a pointer to section NAME, or NULL if no such section exists. */ |
688 | ||
689 | static Elf_Internal_Shdr * | |
dda8d76d | 690 | find_section (Filedata * filedata, const char * name) |
89fac5e3 RS |
691 | { |
692 | unsigned int i; | |
693 | ||
68807c3c NC |
694 | if (filedata->section_headers == NULL) |
695 | return NULL; | |
dda8d76d NC |
696 | |
697 | for (i = 0; i < filedata->file_header.e_shnum; i++) | |
698 | if (streq (SECTION_NAME (filedata->section_headers + i), name)) | |
699 | return filedata->section_headers + i; | |
89fac5e3 RS |
700 | |
701 | return NULL; | |
702 | } | |
703 | ||
0b6ae522 DJ |
704 | /* Return a pointer to a section containing ADDR, or NULL if no such |
705 | section exists. */ | |
706 | ||
707 | static Elf_Internal_Shdr * | |
dda8d76d | 708 | find_section_by_address (Filedata * filedata, bfd_vma addr) |
0b6ae522 DJ |
709 | { |
710 | unsigned int i; | |
711 | ||
68807c3c NC |
712 | if (filedata->section_headers == NULL) |
713 | return NULL; | |
714 | ||
dda8d76d | 715 | for (i = 0; i < filedata->file_header.e_shnum; i++) |
0b6ae522 | 716 | { |
dda8d76d NC |
717 | Elf_Internal_Shdr *sec = filedata->section_headers + i; |
718 | ||
0b6ae522 DJ |
719 | if (addr >= sec->sh_addr && addr < sec->sh_addr + sec->sh_size) |
720 | return sec; | |
721 | } | |
722 | ||
723 | return NULL; | |
724 | } | |
725 | ||
071436c6 | 726 | static Elf_Internal_Shdr * |
dda8d76d | 727 | find_section_by_type (Filedata * filedata, unsigned int type) |
071436c6 NC |
728 | { |
729 | unsigned int i; | |
730 | ||
68807c3c NC |
731 | if (filedata->section_headers == NULL) |
732 | return NULL; | |
733 | ||
dda8d76d | 734 | for (i = 0; i < filedata->file_header.e_shnum; i++) |
071436c6 | 735 | { |
dda8d76d NC |
736 | Elf_Internal_Shdr *sec = filedata->section_headers + i; |
737 | ||
071436c6 NC |
738 | if (sec->sh_type == type) |
739 | return sec; | |
740 | } | |
741 | ||
742 | return NULL; | |
743 | } | |
744 | ||
657d0d47 CC |
745 | /* Return a pointer to section NAME, or NULL if no such section exists, |
746 | restricted to the list of sections given in SET. */ | |
747 | ||
748 | static Elf_Internal_Shdr * | |
dda8d76d | 749 | find_section_in_set (Filedata * filedata, const char * name, unsigned int * set) |
657d0d47 CC |
750 | { |
751 | unsigned int i; | |
752 | ||
68807c3c NC |
753 | if (filedata->section_headers == NULL) |
754 | return NULL; | |
755 | ||
657d0d47 CC |
756 | if (set != NULL) |
757 | { | |
758 | while ((i = *set++) > 0) | |
b814a36d NC |
759 | { |
760 | /* See PR 21156 for a reproducer. */ | |
dda8d76d | 761 | if (i >= filedata->file_header.e_shnum) |
b814a36d NC |
762 | continue; /* FIXME: Should we issue an error message ? */ |
763 | ||
dda8d76d NC |
764 | if (streq (SECTION_NAME (filedata->section_headers + i), name)) |
765 | return filedata->section_headers + i; | |
b814a36d | 766 | } |
657d0d47 CC |
767 | } |
768 | ||
dda8d76d | 769 | return find_section (filedata, name); |
657d0d47 CC |
770 | } |
771 | ||
32ec8896 | 772 | /* Return TRUE if the current file is for IA-64 machine and OpenVMS ABI. |
28f997cf TG |
773 | This OS has so many departures from the ELF standard that we test it at |
774 | many places. */ | |
775 | ||
32ec8896 | 776 | static inline bfd_boolean |
dda8d76d | 777 | is_ia64_vms (Filedata * filedata) |
28f997cf | 778 | { |
dda8d76d NC |
779 | return filedata->file_header.e_machine == EM_IA_64 |
780 | && filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_OPENVMS; | |
28f997cf TG |
781 | } |
782 | ||
bcedfee6 | 783 | /* Guess the relocation size commonly used by the specific machines. */ |
252b5132 | 784 | |
32ec8896 | 785 | static bfd_boolean |
2dc4cec1 | 786 | guess_is_rela (unsigned int e_machine) |
252b5132 | 787 | { |
9c19a809 | 788 | switch (e_machine) |
252b5132 RH |
789 | { |
790 | /* Targets that use REL relocations. */ | |
252b5132 | 791 | case EM_386: |
22abe556 | 792 | case EM_IAMCU: |
f954747f | 793 | case EM_960: |
e9f53129 | 794 | case EM_ARM: |
2b0337b0 | 795 | case EM_D10V: |
252b5132 | 796 | case EM_CYGNUS_D10V: |
e9f53129 | 797 | case EM_DLX: |
252b5132 | 798 | case EM_MIPS: |
4fe85591 | 799 | case EM_MIPS_RS3_LE: |
e9f53129 | 800 | case EM_CYGNUS_M32R: |
1c0d3aa6 | 801 | case EM_SCORE: |
f6c1a2d5 | 802 | case EM_XGATE: |
fe944acf | 803 | case EM_NFP: |
aca4efc7 | 804 | case EM_BPF: |
9c19a809 | 805 | return FALSE; |
103f02d3 | 806 | |
252b5132 RH |
807 | /* Targets that use RELA relocations. */ |
808 | case EM_68K: | |
f954747f | 809 | case EM_860: |
a06ea964 | 810 | case EM_AARCH64: |
cfb8c092 | 811 | case EM_ADAPTEVA_EPIPHANY: |
e9f53129 AM |
812 | case EM_ALPHA: |
813 | case EM_ALTERA_NIOS2: | |
886a2506 NC |
814 | case EM_ARC: |
815 | case EM_ARC_COMPACT: | |
816 | case EM_ARC_COMPACT2: | |
e9f53129 AM |
817 | case EM_AVR: |
818 | case EM_AVR_OLD: | |
819 | case EM_BLACKFIN: | |
60bca95a | 820 | case EM_CR16: |
e9f53129 AM |
821 | case EM_CRIS: |
822 | case EM_CRX: | |
b8891f8d | 823 | case EM_CSKY: |
2b0337b0 | 824 | case EM_D30V: |
252b5132 | 825 | case EM_CYGNUS_D30V: |
2b0337b0 | 826 | case EM_FR30: |
3f8107ab | 827 | case EM_FT32: |
252b5132 | 828 | case EM_CYGNUS_FR30: |
5c70f934 | 829 | case EM_CYGNUS_FRV: |
e9f53129 AM |
830 | case EM_H8S: |
831 | case EM_H8_300: | |
832 | case EM_H8_300H: | |
800eeca4 | 833 | case EM_IA_64: |
1e4cf259 NC |
834 | case EM_IP2K: |
835 | case EM_IP2K_OLD: | |
3b36097d | 836 | case EM_IQ2000: |
84e94c90 | 837 | case EM_LATTICEMICO32: |
ff7eeb89 | 838 | case EM_M32C_OLD: |
49f58d10 | 839 | case EM_M32C: |
e9f53129 AM |
840 | case EM_M32R: |
841 | case EM_MCORE: | |
15ab5209 | 842 | case EM_CYGNUS_MEP: |
a3c62988 | 843 | case EM_METAG: |
e9f53129 AM |
844 | case EM_MMIX: |
845 | case EM_MN10200: | |
846 | case EM_CYGNUS_MN10200: | |
847 | case EM_MN10300: | |
848 | case EM_CYGNUS_MN10300: | |
5506d11a | 849 | case EM_MOXIE: |
e9f53129 AM |
850 | case EM_MSP430: |
851 | case EM_MSP430_OLD: | |
d031aafb | 852 | case EM_MT: |
35c08157 | 853 | case EM_NDS32: |
64fd6348 | 854 | case EM_NIOS32: |
73589c9d | 855 | case EM_OR1K: |
e9f53129 AM |
856 | case EM_PPC64: |
857 | case EM_PPC: | |
2b100bb5 | 858 | case EM_TI_PRU: |
e23eba97 | 859 | case EM_RISCV: |
99c513f6 | 860 | case EM_RL78: |
c7927a3c | 861 | case EM_RX: |
e9f53129 AM |
862 | case EM_S390: |
863 | case EM_S390_OLD: | |
864 | case EM_SH: | |
865 | case EM_SPARC: | |
866 | case EM_SPARC32PLUS: | |
867 | case EM_SPARCV9: | |
868 | case EM_SPU: | |
40b36596 | 869 | case EM_TI_C6000: |
aa137e4d NC |
870 | case EM_TILEGX: |
871 | case EM_TILEPRO: | |
708e2187 | 872 | case EM_V800: |
e9f53129 AM |
873 | case EM_V850: |
874 | case EM_CYGNUS_V850: | |
875 | case EM_VAX: | |
619ed720 | 876 | case EM_VISIUM: |
e9f53129 | 877 | case EM_X86_64: |
8a9036a4 | 878 | case EM_L1OM: |
7a9068fe | 879 | case EM_K1OM: |
e9f53129 AM |
880 | case EM_XSTORMY16: |
881 | case EM_XTENSA: | |
882 | case EM_XTENSA_OLD: | |
7ba29e2a NC |
883 | case EM_MICROBLAZE: |
884 | case EM_MICROBLAZE_OLD: | |
f96bd6c2 | 885 | case EM_WEBASSEMBLY: |
9c19a809 | 886 | return TRUE; |
103f02d3 | 887 | |
e9f53129 AM |
888 | case EM_68HC05: |
889 | case EM_68HC08: | |
890 | case EM_68HC11: | |
891 | case EM_68HC16: | |
892 | case EM_FX66: | |
893 | case EM_ME16: | |
d1133906 | 894 | case EM_MMA: |
d1133906 NC |
895 | case EM_NCPU: |
896 | case EM_NDR1: | |
e9f53129 | 897 | case EM_PCP: |
d1133906 | 898 | case EM_ST100: |
e9f53129 | 899 | case EM_ST19: |
d1133906 | 900 | case EM_ST7: |
e9f53129 AM |
901 | case EM_ST9PLUS: |
902 | case EM_STARCORE: | |
d1133906 | 903 | case EM_SVX: |
e9f53129 | 904 | case EM_TINYJ: |
9c19a809 NC |
905 | default: |
906 | warn (_("Don't know about relocations on this machine architecture\n")); | |
907 | return FALSE; | |
908 | } | |
909 | } | |
252b5132 | 910 | |
dda8d76d | 911 | /* Load RELA type relocations from FILEDATA at REL_OFFSET extending for REL_SIZE bytes. |
32ec8896 NC |
912 | Returns TRUE upon success, FALSE otherwise. If successful then a |
913 | pointer to a malloc'ed buffer containing the relocs is placed in *RELASP, | |
914 | and the number of relocs loaded is placed in *NRELASP. It is the caller's | |
915 | responsibility to free the allocated buffer. */ | |
916 | ||
917 | static bfd_boolean | |
dda8d76d NC |
918 | slurp_rela_relocs (Filedata * filedata, |
919 | unsigned long rel_offset, | |
920 | unsigned long rel_size, | |
921 | Elf_Internal_Rela ** relasp, | |
922 | unsigned long * nrelasp) | |
9c19a809 | 923 | { |
2cf0635d | 924 | Elf_Internal_Rela * relas; |
8b73c356 | 925 | size_t nrelas; |
4d6ed7c8 | 926 | unsigned int i; |
252b5132 | 927 | |
4d6ed7c8 NC |
928 | if (is_32bit_elf) |
929 | { | |
2cf0635d | 930 | Elf32_External_Rela * erelas; |
103f02d3 | 931 | |
dda8d76d | 932 | erelas = (Elf32_External_Rela *) get_data (NULL, filedata, rel_offset, 1, |
9cf03b7e | 933 | rel_size, _("32-bit relocation data")); |
a6e9f9df | 934 | if (!erelas) |
32ec8896 | 935 | return FALSE; |
252b5132 | 936 | |
4d6ed7c8 | 937 | nrelas = rel_size / sizeof (Elf32_External_Rela); |
103f02d3 | 938 | |
3f5e193b NC |
939 | relas = (Elf_Internal_Rela *) cmalloc (nrelas, |
940 | sizeof (Elf_Internal_Rela)); | |
103f02d3 | 941 | |
4d6ed7c8 NC |
942 | if (relas == NULL) |
943 | { | |
c256ffe7 | 944 | free (erelas); |
591a748a | 945 | error (_("out of memory parsing relocs\n")); |
32ec8896 | 946 | return FALSE; |
4d6ed7c8 | 947 | } |
103f02d3 | 948 | |
4d6ed7c8 NC |
949 | for (i = 0; i < nrelas; i++) |
950 | { | |
951 | relas[i].r_offset = BYTE_GET (erelas[i].r_offset); | |
952 | relas[i].r_info = BYTE_GET (erelas[i].r_info); | |
598aaa76 | 953 | relas[i].r_addend = BYTE_GET_SIGNED (erelas[i].r_addend); |
4d6ed7c8 | 954 | } |
103f02d3 | 955 | |
4d6ed7c8 NC |
956 | free (erelas); |
957 | } | |
958 | else | |
959 | { | |
2cf0635d | 960 | Elf64_External_Rela * erelas; |
103f02d3 | 961 | |
dda8d76d | 962 | erelas = (Elf64_External_Rela *) get_data (NULL, filedata, rel_offset, 1, |
9cf03b7e | 963 | rel_size, _("64-bit relocation data")); |
a6e9f9df | 964 | if (!erelas) |
32ec8896 | 965 | return FALSE; |
4d6ed7c8 NC |
966 | |
967 | nrelas = rel_size / sizeof (Elf64_External_Rela); | |
103f02d3 | 968 | |
3f5e193b NC |
969 | relas = (Elf_Internal_Rela *) cmalloc (nrelas, |
970 | sizeof (Elf_Internal_Rela)); | |
103f02d3 | 971 | |
4d6ed7c8 NC |
972 | if (relas == NULL) |
973 | { | |
c256ffe7 | 974 | free (erelas); |
591a748a | 975 | error (_("out of memory parsing relocs\n")); |
32ec8896 | 976 | return FALSE; |
9c19a809 | 977 | } |
4d6ed7c8 NC |
978 | |
979 | for (i = 0; i < nrelas; i++) | |
9c19a809 | 980 | { |
66543521 AM |
981 | relas[i].r_offset = BYTE_GET (erelas[i].r_offset); |
982 | relas[i].r_info = BYTE_GET (erelas[i].r_info); | |
598aaa76 | 983 | relas[i].r_addend = BYTE_GET_SIGNED (erelas[i].r_addend); |
861fb55a DJ |
984 | |
985 | /* The #ifdef BFD64 below is to prevent a compile time | |
986 | warning. We know that if we do not have a 64 bit data | |
987 | type that we will never execute this code anyway. */ | |
988 | #ifdef BFD64 | |
dda8d76d NC |
989 | if (filedata->file_header.e_machine == EM_MIPS |
990 | && filedata->file_header.e_ident[EI_DATA] != ELFDATA2MSB) | |
861fb55a DJ |
991 | { |
992 | /* In little-endian objects, r_info isn't really a | |
993 | 64-bit little-endian value: it has a 32-bit | |
994 | little-endian symbol index followed by four | |
995 | individual byte fields. Reorder INFO | |
996 | accordingly. */ | |
91d6fa6a NC |
997 | bfd_vma inf = relas[i].r_info; |
998 | inf = (((inf & 0xffffffff) << 32) | |
999 | | ((inf >> 56) & 0xff) | |
1000 | | ((inf >> 40) & 0xff00) | |
1001 | | ((inf >> 24) & 0xff0000) | |
1002 | | ((inf >> 8) & 0xff000000)); | |
1003 | relas[i].r_info = inf; | |
861fb55a DJ |
1004 | } |
1005 | #endif /* BFD64 */ | |
4d6ed7c8 | 1006 | } |
103f02d3 | 1007 | |
4d6ed7c8 NC |
1008 | free (erelas); |
1009 | } | |
32ec8896 | 1010 | |
4d6ed7c8 NC |
1011 | *relasp = relas; |
1012 | *nrelasp = nrelas; | |
32ec8896 | 1013 | return TRUE; |
4d6ed7c8 | 1014 | } |
103f02d3 | 1015 | |
dda8d76d | 1016 | /* Load REL type relocations from FILEDATA at REL_OFFSET extending for REL_SIZE bytes. |
32ec8896 NC |
1017 | Returns TRUE upon success, FALSE otherwise. If successful then a |
1018 | pointer to a malloc'ed buffer containing the relocs is placed in *RELSP, | |
1019 | and the number of relocs loaded is placed in *NRELSP. It is the caller's | |
1020 | responsibility to free the allocated buffer. */ | |
1021 | ||
1022 | static bfd_boolean | |
dda8d76d NC |
1023 | slurp_rel_relocs (Filedata * filedata, |
1024 | unsigned long rel_offset, | |
1025 | unsigned long rel_size, | |
1026 | Elf_Internal_Rela ** relsp, | |
1027 | unsigned long * nrelsp) | |
4d6ed7c8 | 1028 | { |
2cf0635d | 1029 | Elf_Internal_Rela * rels; |
8b73c356 | 1030 | size_t nrels; |
4d6ed7c8 | 1031 | unsigned int i; |
103f02d3 | 1032 | |
4d6ed7c8 NC |
1033 | if (is_32bit_elf) |
1034 | { | |
2cf0635d | 1035 | Elf32_External_Rel * erels; |
103f02d3 | 1036 | |
dda8d76d | 1037 | erels = (Elf32_External_Rel *) get_data (NULL, filedata, rel_offset, 1, |
9cf03b7e | 1038 | rel_size, _("32-bit relocation data")); |
a6e9f9df | 1039 | if (!erels) |
32ec8896 | 1040 | return FALSE; |
103f02d3 | 1041 | |
4d6ed7c8 | 1042 | nrels = rel_size / sizeof (Elf32_External_Rel); |
103f02d3 | 1043 | |
3f5e193b | 1044 | rels = (Elf_Internal_Rela *) cmalloc (nrels, sizeof (Elf_Internal_Rela)); |
103f02d3 | 1045 | |
4d6ed7c8 NC |
1046 | if (rels == NULL) |
1047 | { | |
c256ffe7 | 1048 | free (erels); |
591a748a | 1049 | error (_("out of memory parsing relocs\n")); |
32ec8896 | 1050 | return FALSE; |
4d6ed7c8 NC |
1051 | } |
1052 | ||
1053 | for (i = 0; i < nrels; i++) | |
1054 | { | |
1055 | rels[i].r_offset = BYTE_GET (erels[i].r_offset); | |
1056 | rels[i].r_info = BYTE_GET (erels[i].r_info); | |
c8286bd1 | 1057 | rels[i].r_addend = 0; |
9ea033b2 | 1058 | } |
4d6ed7c8 NC |
1059 | |
1060 | free (erels); | |
9c19a809 NC |
1061 | } |
1062 | else | |
1063 | { | |
2cf0635d | 1064 | Elf64_External_Rel * erels; |
9ea033b2 | 1065 | |
dda8d76d | 1066 | erels = (Elf64_External_Rel *) get_data (NULL, filedata, rel_offset, 1, |
9cf03b7e | 1067 | rel_size, _("64-bit relocation data")); |
a6e9f9df | 1068 | if (!erels) |
32ec8896 | 1069 | return FALSE; |
103f02d3 | 1070 | |
4d6ed7c8 | 1071 | nrels = rel_size / sizeof (Elf64_External_Rel); |
103f02d3 | 1072 | |
3f5e193b | 1073 | rels = (Elf_Internal_Rela *) cmalloc (nrels, sizeof (Elf_Internal_Rela)); |
103f02d3 | 1074 | |
4d6ed7c8 | 1075 | if (rels == NULL) |
9c19a809 | 1076 | { |
c256ffe7 | 1077 | free (erels); |
591a748a | 1078 | error (_("out of memory parsing relocs\n")); |
32ec8896 | 1079 | return FALSE; |
4d6ed7c8 | 1080 | } |
103f02d3 | 1081 | |
4d6ed7c8 NC |
1082 | for (i = 0; i < nrels; i++) |
1083 | { | |
66543521 AM |
1084 | rels[i].r_offset = BYTE_GET (erels[i].r_offset); |
1085 | rels[i].r_info = BYTE_GET (erels[i].r_info); | |
c8286bd1 | 1086 | rels[i].r_addend = 0; |
861fb55a DJ |
1087 | |
1088 | /* The #ifdef BFD64 below is to prevent a compile time | |
1089 | warning. We know that if we do not have a 64 bit data | |
1090 | type that we will never execute this code anyway. */ | |
1091 | #ifdef BFD64 | |
dda8d76d NC |
1092 | if (filedata->file_header.e_machine == EM_MIPS |
1093 | && filedata->file_header.e_ident[EI_DATA] != ELFDATA2MSB) | |
861fb55a DJ |
1094 | { |
1095 | /* In little-endian objects, r_info isn't really a | |
1096 | 64-bit little-endian value: it has a 32-bit | |
1097 | little-endian symbol index followed by four | |
1098 | individual byte fields. Reorder INFO | |
1099 | accordingly. */ | |
91d6fa6a NC |
1100 | bfd_vma inf = rels[i].r_info; |
1101 | inf = (((inf & 0xffffffff) << 32) | |
1102 | | ((inf >> 56) & 0xff) | |
1103 | | ((inf >> 40) & 0xff00) | |
1104 | | ((inf >> 24) & 0xff0000) | |
1105 | | ((inf >> 8) & 0xff000000)); | |
1106 | rels[i].r_info = inf; | |
861fb55a DJ |
1107 | } |
1108 | #endif /* BFD64 */ | |
4d6ed7c8 | 1109 | } |
103f02d3 | 1110 | |
4d6ed7c8 NC |
1111 | free (erels); |
1112 | } | |
32ec8896 | 1113 | |
4d6ed7c8 NC |
1114 | *relsp = rels; |
1115 | *nrelsp = nrels; | |
32ec8896 | 1116 | return TRUE; |
4d6ed7c8 | 1117 | } |
103f02d3 | 1118 | |
aca88567 NC |
1119 | /* Returns the reloc type extracted from the reloc info field. */ |
1120 | ||
1121 | static unsigned int | |
dda8d76d | 1122 | get_reloc_type (Filedata * filedata, bfd_vma reloc_info) |
aca88567 NC |
1123 | { |
1124 | if (is_32bit_elf) | |
1125 | return ELF32_R_TYPE (reloc_info); | |
1126 | ||
dda8d76d | 1127 | switch (filedata->file_header.e_machine) |
aca88567 NC |
1128 | { |
1129 | case EM_MIPS: | |
1130 | /* Note: We assume that reloc_info has already been adjusted for us. */ | |
1131 | return ELF64_MIPS_R_TYPE (reloc_info); | |
1132 | ||
1133 | case EM_SPARCV9: | |
1134 | return ELF64_R_TYPE_ID (reloc_info); | |
1135 | ||
1136 | default: | |
1137 | return ELF64_R_TYPE (reloc_info); | |
1138 | } | |
1139 | } | |
1140 | ||
1141 | /* Return the symbol index extracted from the reloc info field. */ | |
1142 | ||
1143 | static bfd_vma | |
1144 | get_reloc_symindex (bfd_vma reloc_info) | |
1145 | { | |
1146 | return is_32bit_elf ? ELF32_R_SYM (reloc_info) : ELF64_R_SYM (reloc_info); | |
1147 | } | |
1148 | ||
13761a11 | 1149 | static inline bfd_boolean |
dda8d76d | 1150 | uses_msp430x_relocs (Filedata * filedata) |
13761a11 NC |
1151 | { |
1152 | return | |
dda8d76d | 1153 | filedata->file_header.e_machine == EM_MSP430 /* Paranoia. */ |
13761a11 | 1154 | /* GCC uses osabi == ELFOSBI_STANDALONE. */ |
dda8d76d | 1155 | && (((filedata->file_header.e_flags & EF_MSP430_MACH) == E_MSP430_MACH_MSP430X) |
13761a11 | 1156 | /* TI compiler uses ELFOSABI_NONE. */ |
dda8d76d | 1157 | || (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_NONE)); |
13761a11 NC |
1158 | } |
1159 | ||
d3ba0551 AM |
1160 | /* Display the contents of the relocation data found at the specified |
1161 | offset. */ | |
ee42cf8c | 1162 | |
32ec8896 | 1163 | static bfd_boolean |
dda8d76d NC |
1164 | dump_relocations (Filedata * filedata, |
1165 | unsigned long rel_offset, | |
1166 | unsigned long rel_size, | |
1167 | Elf_Internal_Sym * symtab, | |
1168 | unsigned long nsyms, | |
1169 | char * strtab, | |
1170 | unsigned long strtablen, | |
1171 | int is_rela, | |
1172 | bfd_boolean is_dynsym) | |
4d6ed7c8 | 1173 | { |
32ec8896 | 1174 | unsigned long i; |
2cf0635d | 1175 | Elf_Internal_Rela * rels; |
32ec8896 | 1176 | bfd_boolean res = TRUE; |
103f02d3 | 1177 | |
4d6ed7c8 | 1178 | if (is_rela == UNKNOWN) |
dda8d76d | 1179 | is_rela = guess_is_rela (filedata->file_header.e_machine); |
103f02d3 | 1180 | |
4d6ed7c8 NC |
1181 | if (is_rela) |
1182 | { | |
dda8d76d | 1183 | if (!slurp_rela_relocs (filedata, rel_offset, rel_size, &rels, &rel_size)) |
32ec8896 | 1184 | return FALSE; |
4d6ed7c8 NC |
1185 | } |
1186 | else | |
1187 | { | |
dda8d76d | 1188 | if (!slurp_rel_relocs (filedata, rel_offset, rel_size, &rels, &rel_size)) |
32ec8896 | 1189 | return FALSE; |
252b5132 RH |
1190 | } |
1191 | ||
410f7a12 L |
1192 | if (is_32bit_elf) |
1193 | { | |
1194 | if (is_rela) | |
2c71103e NC |
1195 | { |
1196 | if (do_wide) | |
1197 | printf (_(" Offset Info Type Sym. Value Symbol's Name + Addend\n")); | |
1198 | else | |
1199 | printf (_(" Offset Info Type Sym.Value Sym. Name + Addend\n")); | |
1200 | } | |
410f7a12 | 1201 | else |
2c71103e NC |
1202 | { |
1203 | if (do_wide) | |
1204 | printf (_(" Offset Info Type Sym. Value Symbol's Name\n")); | |
1205 | else | |
1206 | printf (_(" Offset Info Type Sym.Value Sym. Name\n")); | |
1207 | } | |
410f7a12 | 1208 | } |
252b5132 | 1209 | else |
410f7a12 L |
1210 | { |
1211 | if (is_rela) | |
2c71103e NC |
1212 | { |
1213 | if (do_wide) | |
8beeaeb7 | 1214 | printf (_(" Offset Info Type Symbol's Value Symbol's Name + Addend\n")); |
2c71103e NC |
1215 | else |
1216 | printf (_(" Offset Info Type Sym. Value Sym. Name + Addend\n")); | |
1217 | } | |
410f7a12 | 1218 | else |
2c71103e NC |
1219 | { |
1220 | if (do_wide) | |
8beeaeb7 | 1221 | printf (_(" Offset Info Type Symbol's Value Symbol's Name\n")); |
2c71103e NC |
1222 | else |
1223 | printf (_(" Offset Info Type Sym. Value Sym. Name\n")); | |
1224 | } | |
410f7a12 | 1225 | } |
252b5132 RH |
1226 | |
1227 | for (i = 0; i < rel_size; i++) | |
1228 | { | |
2cf0635d | 1229 | const char * rtype; |
b34976b6 | 1230 | bfd_vma offset; |
91d6fa6a | 1231 | bfd_vma inf; |
b34976b6 AM |
1232 | bfd_vma symtab_index; |
1233 | bfd_vma type; | |
103f02d3 | 1234 | |
b34976b6 | 1235 | offset = rels[i].r_offset; |
91d6fa6a | 1236 | inf = rels[i].r_info; |
103f02d3 | 1237 | |
dda8d76d | 1238 | type = get_reloc_type (filedata, inf); |
91d6fa6a | 1239 | symtab_index = get_reloc_symindex (inf); |
252b5132 | 1240 | |
410f7a12 L |
1241 | if (is_32bit_elf) |
1242 | { | |
39dbeff8 AM |
1243 | printf ("%8.8lx %8.8lx ", |
1244 | (unsigned long) offset & 0xffffffff, | |
91d6fa6a | 1245 | (unsigned long) inf & 0xffffffff); |
410f7a12 L |
1246 | } |
1247 | else | |
1248 | { | |
39dbeff8 AM |
1249 | #if BFD_HOST_64BIT_LONG |
1250 | printf (do_wide | |
1251 | ? "%16.16lx %16.16lx " | |
1252 | : "%12.12lx %12.12lx ", | |
91d6fa6a | 1253 | offset, inf); |
39dbeff8 | 1254 | #elif BFD_HOST_64BIT_LONG_LONG |
6e3d6dc1 | 1255 | #ifndef __MSVCRT__ |
39dbeff8 AM |
1256 | printf (do_wide |
1257 | ? "%16.16llx %16.16llx " | |
1258 | : "%12.12llx %12.12llx ", | |
91d6fa6a | 1259 | offset, inf); |
6e3d6dc1 NC |
1260 | #else |
1261 | printf (do_wide | |
1262 | ? "%16.16I64x %16.16I64x " | |
1263 | : "%12.12I64x %12.12I64x ", | |
91d6fa6a | 1264 | offset, inf); |
6e3d6dc1 | 1265 | #endif |
39dbeff8 | 1266 | #else |
2c71103e NC |
1267 | printf (do_wide |
1268 | ? "%8.8lx%8.8lx %8.8lx%8.8lx " | |
1269 | : "%4.4lx%8.8lx %4.4lx%8.8lx ", | |
410f7a12 L |
1270 | _bfd_int64_high (offset), |
1271 | _bfd_int64_low (offset), | |
91d6fa6a NC |
1272 | _bfd_int64_high (inf), |
1273 | _bfd_int64_low (inf)); | |
9ea033b2 | 1274 | #endif |
410f7a12 | 1275 | } |
103f02d3 | 1276 | |
dda8d76d | 1277 | switch (filedata->file_header.e_machine) |
252b5132 RH |
1278 | { |
1279 | default: | |
1280 | rtype = NULL; | |
1281 | break; | |
1282 | ||
a06ea964 NC |
1283 | case EM_AARCH64: |
1284 | rtype = elf_aarch64_reloc_type (type); | |
1285 | break; | |
1286 | ||
2b0337b0 | 1287 | case EM_M32R: |
252b5132 | 1288 | case EM_CYGNUS_M32R: |
9ea033b2 | 1289 | rtype = elf_m32r_reloc_type (type); |
252b5132 RH |
1290 | break; |
1291 | ||
1292 | case EM_386: | |
22abe556 | 1293 | case EM_IAMCU: |
9ea033b2 | 1294 | rtype = elf_i386_reloc_type (type); |
252b5132 RH |
1295 | break; |
1296 | ||
ba2685cc AM |
1297 | case EM_68HC11: |
1298 | case EM_68HC12: | |
1299 | rtype = elf_m68hc11_reloc_type (type); | |
1300 | break; | |
75751cd9 | 1301 | |
7b4ae824 JD |
1302 | case EM_S12Z: |
1303 | rtype = elf_s12z_reloc_type (type); | |
1304 | break; | |
1305 | ||
252b5132 | 1306 | case EM_68K: |
9ea033b2 | 1307 | rtype = elf_m68k_reloc_type (type); |
252b5132 RH |
1308 | break; |
1309 | ||
f954747f AM |
1310 | case EM_960: |
1311 | rtype = elf_i960_reloc_type (type); | |
1312 | break; | |
1313 | ||
adde6300 | 1314 | case EM_AVR: |
2b0337b0 | 1315 | case EM_AVR_OLD: |
adde6300 AM |
1316 | rtype = elf_avr_reloc_type (type); |
1317 | break; | |
1318 | ||
9ea033b2 NC |
1319 | case EM_OLD_SPARCV9: |
1320 | case EM_SPARC32PLUS: | |
1321 | case EM_SPARCV9: | |
252b5132 | 1322 | case EM_SPARC: |
9ea033b2 | 1323 | rtype = elf_sparc_reloc_type (type); |
252b5132 RH |
1324 | break; |
1325 | ||
e9f53129 AM |
1326 | case EM_SPU: |
1327 | rtype = elf_spu_reloc_type (type); | |
1328 | break; | |
1329 | ||
708e2187 NC |
1330 | case EM_V800: |
1331 | rtype = v800_reloc_type (type); | |
1332 | break; | |
2b0337b0 | 1333 | case EM_V850: |
252b5132 | 1334 | case EM_CYGNUS_V850: |
9ea033b2 | 1335 | rtype = v850_reloc_type (type); |
252b5132 RH |
1336 | break; |
1337 | ||
2b0337b0 | 1338 | case EM_D10V: |
252b5132 | 1339 | case EM_CYGNUS_D10V: |
9ea033b2 | 1340 | rtype = elf_d10v_reloc_type (type); |
252b5132 RH |
1341 | break; |
1342 | ||
2b0337b0 | 1343 | case EM_D30V: |
252b5132 | 1344 | case EM_CYGNUS_D30V: |
9ea033b2 | 1345 | rtype = elf_d30v_reloc_type (type); |
252b5132 RH |
1346 | break; |
1347 | ||
d172d4ba NC |
1348 | case EM_DLX: |
1349 | rtype = elf_dlx_reloc_type (type); | |
1350 | break; | |
1351 | ||
252b5132 | 1352 | case EM_SH: |
9ea033b2 | 1353 | rtype = elf_sh_reloc_type (type); |
252b5132 RH |
1354 | break; |
1355 | ||
2b0337b0 | 1356 | case EM_MN10300: |
252b5132 | 1357 | case EM_CYGNUS_MN10300: |
9ea033b2 | 1358 | rtype = elf_mn10300_reloc_type (type); |
252b5132 RH |
1359 | break; |
1360 | ||
2b0337b0 | 1361 | case EM_MN10200: |
252b5132 | 1362 | case EM_CYGNUS_MN10200: |
9ea033b2 | 1363 | rtype = elf_mn10200_reloc_type (type); |
252b5132 RH |
1364 | break; |
1365 | ||
2b0337b0 | 1366 | case EM_FR30: |
252b5132 | 1367 | case EM_CYGNUS_FR30: |
9ea033b2 | 1368 | rtype = elf_fr30_reloc_type (type); |
252b5132 RH |
1369 | break; |
1370 | ||
ba2685cc AM |
1371 | case EM_CYGNUS_FRV: |
1372 | rtype = elf_frv_reloc_type (type); | |
1373 | break; | |
5c70f934 | 1374 | |
b8891f8d AJ |
1375 | case EM_CSKY: |
1376 | rtype = elf_csky_reloc_type (type); | |
1377 | break; | |
1378 | ||
3f8107ab AM |
1379 | case EM_FT32: |
1380 | rtype = elf_ft32_reloc_type (type); | |
1381 | break; | |
1382 | ||
252b5132 | 1383 | case EM_MCORE: |
9ea033b2 | 1384 | rtype = elf_mcore_reloc_type (type); |
252b5132 RH |
1385 | break; |
1386 | ||
3c3bdf30 NC |
1387 | case EM_MMIX: |
1388 | rtype = elf_mmix_reloc_type (type); | |
1389 | break; | |
1390 | ||
5506d11a AM |
1391 | case EM_MOXIE: |
1392 | rtype = elf_moxie_reloc_type (type); | |
1393 | break; | |
1394 | ||
2469cfa2 | 1395 | case EM_MSP430: |
dda8d76d | 1396 | if (uses_msp430x_relocs (filedata)) |
13761a11 NC |
1397 | { |
1398 | rtype = elf_msp430x_reloc_type (type); | |
1399 | break; | |
1400 | } | |
1a0670f3 | 1401 | /* Fall through. */ |
2469cfa2 NC |
1402 | case EM_MSP430_OLD: |
1403 | rtype = elf_msp430_reloc_type (type); | |
1404 | break; | |
1405 | ||
35c08157 KLC |
1406 | case EM_NDS32: |
1407 | rtype = elf_nds32_reloc_type (type); | |
1408 | break; | |
1409 | ||
252b5132 | 1410 | case EM_PPC: |
9ea033b2 | 1411 | rtype = elf_ppc_reloc_type (type); |
252b5132 RH |
1412 | break; |
1413 | ||
c833c019 AM |
1414 | case EM_PPC64: |
1415 | rtype = elf_ppc64_reloc_type (type); | |
1416 | break; | |
1417 | ||
252b5132 | 1418 | case EM_MIPS: |
4fe85591 | 1419 | case EM_MIPS_RS3_LE: |
9ea033b2 | 1420 | rtype = elf_mips_reloc_type (type); |
252b5132 RH |
1421 | break; |
1422 | ||
e23eba97 NC |
1423 | case EM_RISCV: |
1424 | rtype = elf_riscv_reloc_type (type); | |
1425 | break; | |
1426 | ||
252b5132 | 1427 | case EM_ALPHA: |
9ea033b2 | 1428 | rtype = elf_alpha_reloc_type (type); |
252b5132 RH |
1429 | break; |
1430 | ||
1431 | case EM_ARM: | |
9ea033b2 | 1432 | rtype = elf_arm_reloc_type (type); |
252b5132 RH |
1433 | break; |
1434 | ||
584da044 | 1435 | case EM_ARC: |
886a2506 NC |
1436 | case EM_ARC_COMPACT: |
1437 | case EM_ARC_COMPACT2: | |
9ea033b2 | 1438 | rtype = elf_arc_reloc_type (type); |
252b5132 RH |
1439 | break; |
1440 | ||
1441 | case EM_PARISC: | |
69e617ca | 1442 | rtype = elf_hppa_reloc_type (type); |
252b5132 | 1443 | break; |
7d466069 | 1444 | |
b8720f9d JL |
1445 | case EM_H8_300: |
1446 | case EM_H8_300H: | |
1447 | case EM_H8S: | |
1448 | rtype = elf_h8_reloc_type (type); | |
1449 | break; | |
1450 | ||
73589c9d CS |
1451 | case EM_OR1K: |
1452 | rtype = elf_or1k_reloc_type (type); | |
3b16e843 NC |
1453 | break; |
1454 | ||
7d466069 | 1455 | case EM_PJ: |
2b0337b0 | 1456 | case EM_PJ_OLD: |
7d466069 ILT |
1457 | rtype = elf_pj_reloc_type (type); |
1458 | break; | |
800eeca4 JW |
1459 | case EM_IA_64: |
1460 | rtype = elf_ia64_reloc_type (type); | |
1461 | break; | |
1b61cf92 HPN |
1462 | |
1463 | case EM_CRIS: | |
1464 | rtype = elf_cris_reloc_type (type); | |
1465 | break; | |
535c37ff | 1466 | |
f954747f AM |
1467 | case EM_860: |
1468 | rtype = elf_i860_reloc_type (type); | |
1469 | break; | |
1470 | ||
bcedfee6 | 1471 | case EM_X86_64: |
8a9036a4 | 1472 | case EM_L1OM: |
7a9068fe | 1473 | case EM_K1OM: |
bcedfee6 NC |
1474 | rtype = elf_x86_64_reloc_type (type); |
1475 | break; | |
a85d7ed0 | 1476 | |
f954747f AM |
1477 | case EM_S370: |
1478 | rtype = i370_reloc_type (type); | |
1479 | break; | |
1480 | ||
53c7db4b KH |
1481 | case EM_S390_OLD: |
1482 | case EM_S390: | |
1483 | rtype = elf_s390_reloc_type (type); | |
1484 | break; | |
93fbbb04 | 1485 | |
1c0d3aa6 NC |
1486 | case EM_SCORE: |
1487 | rtype = elf_score_reloc_type (type); | |
1488 | break; | |
1489 | ||
93fbbb04 GK |
1490 | case EM_XSTORMY16: |
1491 | rtype = elf_xstormy16_reloc_type (type); | |
1492 | break; | |
179d3252 | 1493 | |
1fe1f39c NC |
1494 | case EM_CRX: |
1495 | rtype = elf_crx_reloc_type (type); | |
1496 | break; | |
1497 | ||
179d3252 JT |
1498 | case EM_VAX: |
1499 | rtype = elf_vax_reloc_type (type); | |
1500 | break; | |
1e4cf259 | 1501 | |
619ed720 EB |
1502 | case EM_VISIUM: |
1503 | rtype = elf_visium_reloc_type (type); | |
1504 | break; | |
1505 | ||
aca4efc7 JM |
1506 | case EM_BPF: |
1507 | rtype = elf_bpf_reloc_type (type); | |
1508 | break; | |
1509 | ||
cfb8c092 NC |
1510 | case EM_ADAPTEVA_EPIPHANY: |
1511 | rtype = elf_epiphany_reloc_type (type); | |
1512 | break; | |
1513 | ||
1e4cf259 NC |
1514 | case EM_IP2K: |
1515 | case EM_IP2K_OLD: | |
1516 | rtype = elf_ip2k_reloc_type (type); | |
1517 | break; | |
3b36097d SC |
1518 | |
1519 | case EM_IQ2000: | |
1520 | rtype = elf_iq2000_reloc_type (type); | |
1521 | break; | |
88da6820 NC |
1522 | |
1523 | case EM_XTENSA_OLD: | |
1524 | case EM_XTENSA: | |
1525 | rtype = elf_xtensa_reloc_type (type); | |
1526 | break; | |
a34e3ecb | 1527 | |
84e94c90 NC |
1528 | case EM_LATTICEMICO32: |
1529 | rtype = elf_lm32_reloc_type (type); | |
1530 | break; | |
1531 | ||
ff7eeb89 | 1532 | case EM_M32C_OLD: |
49f58d10 JB |
1533 | case EM_M32C: |
1534 | rtype = elf_m32c_reloc_type (type); | |
1535 | break; | |
1536 | ||
d031aafb NS |
1537 | case EM_MT: |
1538 | rtype = elf_mt_reloc_type (type); | |
a34e3ecb | 1539 | break; |
1d65ded4 CM |
1540 | |
1541 | case EM_BLACKFIN: | |
1542 | rtype = elf_bfin_reloc_type (type); | |
1543 | break; | |
15ab5209 DB |
1544 | |
1545 | case EM_CYGNUS_MEP: | |
1546 | rtype = elf_mep_reloc_type (type); | |
1547 | break; | |
60bca95a NC |
1548 | |
1549 | case EM_CR16: | |
1550 | rtype = elf_cr16_reloc_type (type); | |
1551 | break; | |
dd24e3da | 1552 | |
7ba29e2a NC |
1553 | case EM_MICROBLAZE: |
1554 | case EM_MICROBLAZE_OLD: | |
1555 | rtype = elf_microblaze_reloc_type (type); | |
1556 | break; | |
c7927a3c | 1557 | |
99c513f6 DD |
1558 | case EM_RL78: |
1559 | rtype = elf_rl78_reloc_type (type); | |
1560 | break; | |
1561 | ||
c7927a3c NC |
1562 | case EM_RX: |
1563 | rtype = elf_rx_reloc_type (type); | |
1564 | break; | |
c29aca4a | 1565 | |
a3c62988 NC |
1566 | case EM_METAG: |
1567 | rtype = elf_metag_reloc_type (type); | |
1568 | break; | |
1569 | ||
c29aca4a NC |
1570 | case EM_XC16X: |
1571 | case EM_C166: | |
1572 | rtype = elf_xc16x_reloc_type (type); | |
1573 | break; | |
40b36596 JM |
1574 | |
1575 | case EM_TI_C6000: | |
1576 | rtype = elf_tic6x_reloc_type (type); | |
1577 | break; | |
aa137e4d NC |
1578 | |
1579 | case EM_TILEGX: | |
1580 | rtype = elf_tilegx_reloc_type (type); | |
1581 | break; | |
1582 | ||
1583 | case EM_TILEPRO: | |
1584 | rtype = elf_tilepro_reloc_type (type); | |
1585 | break; | |
f6c1a2d5 | 1586 | |
f96bd6c2 PC |
1587 | case EM_WEBASSEMBLY: |
1588 | rtype = elf_wasm32_reloc_type (type); | |
1589 | break; | |
1590 | ||
f6c1a2d5 NC |
1591 | case EM_XGATE: |
1592 | rtype = elf_xgate_reloc_type (type); | |
1593 | break; | |
36591ba1 SL |
1594 | |
1595 | case EM_ALTERA_NIOS2: | |
1596 | rtype = elf_nios2_reloc_type (type); | |
1597 | break; | |
2b100bb5 DD |
1598 | |
1599 | case EM_TI_PRU: | |
1600 | rtype = elf_pru_reloc_type (type); | |
1601 | break; | |
fe944acf FT |
1602 | |
1603 | case EM_NFP: | |
1604 | if (EF_NFP_MACH (filedata->file_header.e_flags) == E_NFP_MACH_3200) | |
1605 | rtype = elf_nfp3200_reloc_type (type); | |
1606 | else | |
1607 | rtype = elf_nfp_reloc_type (type); | |
1608 | break; | |
6655dba2 SB |
1609 | |
1610 | case EM_Z80: | |
1611 | rtype = elf_z80_reloc_type (type); | |
1612 | break; | |
252b5132 RH |
1613 | } |
1614 | ||
1615 | if (rtype == NULL) | |
39dbeff8 | 1616 | printf (_("unrecognized: %-7lx"), (unsigned long) type & 0xffffffff); |
252b5132 | 1617 | else |
5c144731 | 1618 | printf (do_wide ? "%-22s" : "%-17.17s", rtype); |
252b5132 | 1619 | |
dda8d76d | 1620 | if (filedata->file_header.e_machine == EM_ALPHA |
157c2599 | 1621 | && rtype != NULL |
7ace3541 RH |
1622 | && streq (rtype, "R_ALPHA_LITUSE") |
1623 | && is_rela) | |
1624 | { | |
1625 | switch (rels[i].r_addend) | |
1626 | { | |
1627 | case LITUSE_ALPHA_ADDR: rtype = "ADDR"; break; | |
1628 | case LITUSE_ALPHA_BASE: rtype = "BASE"; break; | |
1629 | case LITUSE_ALPHA_BYTOFF: rtype = "BYTOFF"; break; | |
1630 | case LITUSE_ALPHA_JSR: rtype = "JSR"; break; | |
1631 | case LITUSE_ALPHA_TLSGD: rtype = "TLSGD"; break; | |
1632 | case LITUSE_ALPHA_TLSLDM: rtype = "TLSLDM"; break; | |
1633 | case LITUSE_ALPHA_JSRDIRECT: rtype = "JSRDIRECT"; break; | |
1634 | default: rtype = NULL; | |
1635 | } | |
32ec8896 | 1636 | |
7ace3541 RH |
1637 | if (rtype) |
1638 | printf (" (%s)", rtype); | |
1639 | else | |
1640 | { | |
1641 | putchar (' '); | |
1642 | printf (_("<unknown addend: %lx>"), | |
1643 | (unsigned long) rels[i].r_addend); | |
32ec8896 | 1644 | res = FALSE; |
7ace3541 RH |
1645 | } |
1646 | } | |
1647 | else if (symtab_index) | |
252b5132 | 1648 | { |
af3fc3bc | 1649 | if (symtab == NULL || symtab_index >= nsyms) |
32ec8896 | 1650 | { |
27a45f42 AS |
1651 | error (_(" bad symbol index: %08lx in reloc\n"), |
1652 | (unsigned long) symtab_index); | |
32ec8896 NC |
1653 | res = FALSE; |
1654 | } | |
af3fc3bc | 1655 | else |
19936277 | 1656 | { |
2cf0635d | 1657 | Elf_Internal_Sym * psym; |
bb4d2ac2 L |
1658 | const char * version_string; |
1659 | enum versioned_symbol_info sym_info; | |
1660 | unsigned short vna_other; | |
19936277 | 1661 | |
af3fc3bc | 1662 | psym = symtab + symtab_index; |
103f02d3 | 1663 | |
bb4d2ac2 | 1664 | version_string |
dda8d76d | 1665 | = get_symbol_version_string (filedata, is_dynsym, |
bb4d2ac2 L |
1666 | strtab, strtablen, |
1667 | symtab_index, | |
1668 | psym, | |
1669 | &sym_info, | |
1670 | &vna_other); | |
1671 | ||
af3fc3bc | 1672 | printf (" "); |
171191ba | 1673 | |
d8045f23 NC |
1674 | if (ELF_ST_TYPE (psym->st_info) == STT_GNU_IFUNC) |
1675 | { | |
1676 | const char * name; | |
1677 | unsigned int len; | |
1678 | unsigned int width = is_32bit_elf ? 8 : 14; | |
1679 | ||
1680 | /* Relocations against GNU_IFUNC symbols do not use the value | |
1681 | of the symbol as the address to relocate against. Instead | |
1682 | they invoke the function named by the symbol and use its | |
1683 | result as the address for relocation. | |
1684 | ||
1685 | To indicate this to the user, do not display the value of | |
1686 | the symbol in the "Symbols's Value" field. Instead show | |
1687 | its name followed by () as a hint that the symbol is | |
1688 | invoked. */ | |
1689 | ||
1690 | if (strtab == NULL | |
1691 | || psym->st_name == 0 | |
1692 | || psym->st_name >= strtablen) | |
1693 | name = "??"; | |
1694 | else | |
1695 | name = strtab + psym->st_name; | |
1696 | ||
1697 | len = print_symbol (width, name); | |
bb4d2ac2 L |
1698 | if (version_string) |
1699 | printf (sym_info == symbol_public ? "@@%s" : "@%s", | |
1700 | version_string); | |
d8045f23 NC |
1701 | printf ("()%-*s", len <= width ? (width + 1) - len : 1, " "); |
1702 | } | |
1703 | else | |
1704 | { | |
1705 | print_vma (psym->st_value, LONG_HEX); | |
171191ba | 1706 | |
d8045f23 NC |
1707 | printf (is_32bit_elf ? " " : " "); |
1708 | } | |
103f02d3 | 1709 | |
af3fc3bc | 1710 | if (psym->st_name == 0) |
f1ef08cb | 1711 | { |
2cf0635d | 1712 | const char * sec_name = "<null>"; |
f1ef08cb AM |
1713 | char name_buf[40]; |
1714 | ||
1715 | if (ELF_ST_TYPE (psym->st_info) == STT_SECTION) | |
1716 | { | |
dda8d76d NC |
1717 | if (psym->st_shndx < filedata->file_header.e_shnum) |
1718 | sec_name = SECTION_NAME (filedata->section_headers + psym->st_shndx); | |
f1ef08cb AM |
1719 | else if (psym->st_shndx == SHN_ABS) |
1720 | sec_name = "ABS"; | |
1721 | else if (psym->st_shndx == SHN_COMMON) | |
1722 | sec_name = "COMMON"; | |
dda8d76d | 1723 | else if ((filedata->file_header.e_machine == EM_MIPS |
ac145307 | 1724 | && psym->st_shndx == SHN_MIPS_SCOMMON) |
dda8d76d | 1725 | || (filedata->file_header.e_machine == EM_TI_C6000 |
ac145307 | 1726 | && psym->st_shndx == SHN_TIC6X_SCOMMON)) |
172553c7 | 1727 | sec_name = "SCOMMON"; |
dda8d76d | 1728 | else if (filedata->file_header.e_machine == EM_MIPS |
172553c7 TS |
1729 | && psym->st_shndx == SHN_MIPS_SUNDEFINED) |
1730 | sec_name = "SUNDEF"; | |
dda8d76d NC |
1731 | else if ((filedata->file_header.e_machine == EM_X86_64 |
1732 | || filedata->file_header.e_machine == EM_L1OM | |
1733 | || filedata->file_header.e_machine == EM_K1OM) | |
3b22753a L |
1734 | && psym->st_shndx == SHN_X86_64_LCOMMON) |
1735 | sec_name = "LARGE_COMMON"; | |
dda8d76d NC |
1736 | else if (filedata->file_header.e_machine == EM_IA_64 |
1737 | && filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_HPUX | |
9ce701e2 L |
1738 | && psym->st_shndx == SHN_IA_64_ANSI_COMMON) |
1739 | sec_name = "ANSI_COM"; | |
dda8d76d | 1740 | else if (is_ia64_vms (filedata) |
148b93f2 NC |
1741 | && psym->st_shndx == SHN_IA_64_VMS_SYMVEC) |
1742 | sec_name = "VMS_SYMVEC"; | |
f1ef08cb AM |
1743 | else |
1744 | { | |
1745 | sprintf (name_buf, "<section 0x%x>", | |
1746 | (unsigned int) psym->st_shndx); | |
1747 | sec_name = name_buf; | |
1748 | } | |
1749 | } | |
1750 | print_symbol (22, sec_name); | |
1751 | } | |
af3fc3bc | 1752 | else if (strtab == NULL) |
d79b3d50 | 1753 | printf (_("<string table index: %3ld>"), psym->st_name); |
c256ffe7 | 1754 | else if (psym->st_name >= strtablen) |
32ec8896 | 1755 | { |
27a45f42 AS |
1756 | error (_("<corrupt string table index: %3ld>\n"), |
1757 | psym->st_name); | |
32ec8896 NC |
1758 | res = FALSE; |
1759 | } | |
af3fc3bc | 1760 | else |
bb4d2ac2 L |
1761 | { |
1762 | print_symbol (22, strtab + psym->st_name); | |
1763 | if (version_string) | |
1764 | printf (sym_info == symbol_public ? "@@%s" : "@%s", | |
1765 | version_string); | |
1766 | } | |
103f02d3 | 1767 | |
af3fc3bc | 1768 | if (is_rela) |
171191ba | 1769 | { |
7360e63f | 1770 | bfd_vma off = rels[i].r_addend; |
171191ba | 1771 | |
7360e63f | 1772 | if ((bfd_signed_vma) off < 0) |
598aaa76 | 1773 | printf (" - %" BFD_VMA_FMT "x", - off); |
171191ba | 1774 | else |
598aaa76 | 1775 | printf (" + %" BFD_VMA_FMT "x", off); |
171191ba | 1776 | } |
19936277 | 1777 | } |
252b5132 | 1778 | } |
1b228002 | 1779 | else if (is_rela) |
f7a99963 | 1780 | { |
7360e63f | 1781 | bfd_vma off = rels[i].r_addend; |
e04d7088 L |
1782 | |
1783 | printf ("%*c", is_32bit_elf ? 12 : 20, ' '); | |
7360e63f | 1784 | if ((bfd_signed_vma) off < 0) |
e04d7088 L |
1785 | printf ("-%" BFD_VMA_FMT "x", - off); |
1786 | else | |
1787 | printf ("%" BFD_VMA_FMT "x", off); | |
f7a99963 | 1788 | } |
252b5132 | 1789 | |
dda8d76d | 1790 | if (filedata->file_header.e_machine == EM_SPARCV9 |
157c2599 NC |
1791 | && rtype != NULL |
1792 | && streq (rtype, "R_SPARC_OLO10")) | |
91d6fa6a | 1793 | printf (" + %lx", (unsigned long) ELF64_R_TYPE_DATA (inf)); |
351b4b40 | 1794 | |
252b5132 | 1795 | putchar ('\n'); |
2c71103e | 1796 | |
aca88567 | 1797 | #ifdef BFD64 |
dda8d76d | 1798 | if (! is_32bit_elf && filedata->file_header.e_machine == EM_MIPS) |
2c71103e | 1799 | { |
91d6fa6a NC |
1800 | bfd_vma type2 = ELF64_MIPS_R_TYPE2 (inf); |
1801 | bfd_vma type3 = ELF64_MIPS_R_TYPE3 (inf); | |
2cf0635d NC |
1802 | const char * rtype2 = elf_mips_reloc_type (type2); |
1803 | const char * rtype3 = elf_mips_reloc_type (type3); | |
aca88567 | 1804 | |
2c71103e NC |
1805 | printf (" Type2: "); |
1806 | ||
1807 | if (rtype2 == NULL) | |
39dbeff8 AM |
1808 | printf (_("unrecognized: %-7lx"), |
1809 | (unsigned long) type2 & 0xffffffff); | |
2c71103e NC |
1810 | else |
1811 | printf ("%-17.17s", rtype2); | |
1812 | ||
18bd398b | 1813 | printf ("\n Type3: "); |
2c71103e NC |
1814 | |
1815 | if (rtype3 == NULL) | |
39dbeff8 AM |
1816 | printf (_("unrecognized: %-7lx"), |
1817 | (unsigned long) type3 & 0xffffffff); | |
2c71103e NC |
1818 | else |
1819 | printf ("%-17.17s", rtype3); | |
1820 | ||
53c7db4b | 1821 | putchar ('\n'); |
2c71103e | 1822 | } |
aca88567 | 1823 | #endif /* BFD64 */ |
252b5132 RH |
1824 | } |
1825 | ||
c8286bd1 | 1826 | free (rels); |
32ec8896 NC |
1827 | |
1828 | return res; | |
252b5132 RH |
1829 | } |
1830 | ||
37c18eed SD |
1831 | static const char * |
1832 | get_aarch64_dynamic_type (unsigned long type) | |
1833 | { | |
1834 | switch (type) | |
1835 | { | |
1836 | case DT_AARCH64_BTI_PLT: return "AARCH64_BTI_PLT"; | |
1dbade74 | 1837 | case DT_AARCH64_PAC_PLT: return "AARCH64_PAC_PLT"; |
2301ed1c | 1838 | case DT_AARCH64_VARIANT_PCS: return "AARCH64_VARIANT_PCS"; |
37c18eed SD |
1839 | default: |
1840 | return NULL; | |
1841 | } | |
1842 | } | |
1843 | ||
252b5132 | 1844 | static const char * |
d3ba0551 | 1845 | get_mips_dynamic_type (unsigned long type) |
252b5132 RH |
1846 | { |
1847 | switch (type) | |
1848 | { | |
1849 | case DT_MIPS_RLD_VERSION: return "MIPS_RLD_VERSION"; | |
1850 | case DT_MIPS_TIME_STAMP: return "MIPS_TIME_STAMP"; | |
1851 | case DT_MIPS_ICHECKSUM: return "MIPS_ICHECKSUM"; | |
1852 | case DT_MIPS_IVERSION: return "MIPS_IVERSION"; | |
1853 | case DT_MIPS_FLAGS: return "MIPS_FLAGS"; | |
1854 | case DT_MIPS_BASE_ADDRESS: return "MIPS_BASE_ADDRESS"; | |
1855 | case DT_MIPS_MSYM: return "MIPS_MSYM"; | |
1856 | case DT_MIPS_CONFLICT: return "MIPS_CONFLICT"; | |
1857 | case DT_MIPS_LIBLIST: return "MIPS_LIBLIST"; | |
1858 | case DT_MIPS_LOCAL_GOTNO: return "MIPS_LOCAL_GOTNO"; | |
1859 | case DT_MIPS_CONFLICTNO: return "MIPS_CONFLICTNO"; | |
1860 | case DT_MIPS_LIBLISTNO: return "MIPS_LIBLISTNO"; | |
1861 | case DT_MIPS_SYMTABNO: return "MIPS_SYMTABNO"; | |
1862 | case DT_MIPS_UNREFEXTNO: return "MIPS_UNREFEXTNO"; | |
1863 | case DT_MIPS_GOTSYM: return "MIPS_GOTSYM"; | |
1864 | case DT_MIPS_HIPAGENO: return "MIPS_HIPAGENO"; | |
1865 | case DT_MIPS_RLD_MAP: return "MIPS_RLD_MAP"; | |
a5499fa4 | 1866 | case DT_MIPS_RLD_MAP_REL: return "MIPS_RLD_MAP_REL"; |
252b5132 RH |
1867 | case DT_MIPS_DELTA_CLASS: return "MIPS_DELTA_CLASS"; |
1868 | case DT_MIPS_DELTA_CLASS_NO: return "MIPS_DELTA_CLASS_NO"; | |
1869 | case DT_MIPS_DELTA_INSTANCE: return "MIPS_DELTA_INSTANCE"; | |
1870 | case DT_MIPS_DELTA_INSTANCE_NO: return "MIPS_DELTA_INSTANCE_NO"; | |
1871 | case DT_MIPS_DELTA_RELOC: return "MIPS_DELTA_RELOC"; | |
1872 | case DT_MIPS_DELTA_RELOC_NO: return "MIPS_DELTA_RELOC_NO"; | |
1873 | case DT_MIPS_DELTA_SYM: return "MIPS_DELTA_SYM"; | |
1874 | case DT_MIPS_DELTA_SYM_NO: return "MIPS_DELTA_SYM_NO"; | |
1875 | case DT_MIPS_DELTA_CLASSSYM: return "MIPS_DELTA_CLASSSYM"; | |
1876 | case DT_MIPS_DELTA_CLASSSYM_NO: return "MIPS_DELTA_CLASSSYM_NO"; | |
1877 | case DT_MIPS_CXX_FLAGS: return "MIPS_CXX_FLAGS"; | |
1878 | case DT_MIPS_PIXIE_INIT: return "MIPS_PIXIE_INIT"; | |
1879 | case DT_MIPS_SYMBOL_LIB: return "MIPS_SYMBOL_LIB"; | |
1880 | case DT_MIPS_LOCALPAGE_GOTIDX: return "MIPS_LOCALPAGE_GOTIDX"; | |
1881 | case DT_MIPS_LOCAL_GOTIDX: return "MIPS_LOCAL_GOTIDX"; | |
1882 | case DT_MIPS_HIDDEN_GOTIDX: return "MIPS_HIDDEN_GOTIDX"; | |
1883 | case DT_MIPS_PROTECTED_GOTIDX: return "MIPS_PROTECTED_GOTIDX"; | |
1884 | case DT_MIPS_OPTIONS: return "MIPS_OPTIONS"; | |
1885 | case DT_MIPS_INTERFACE: return "MIPS_INTERFACE"; | |
1886 | case DT_MIPS_DYNSTR_ALIGN: return "MIPS_DYNSTR_ALIGN"; | |
1887 | case DT_MIPS_INTERFACE_SIZE: return "MIPS_INTERFACE_SIZE"; | |
1888 | case DT_MIPS_RLD_TEXT_RESOLVE_ADDR: return "MIPS_RLD_TEXT_RESOLVE_ADDR"; | |
1889 | case DT_MIPS_PERF_SUFFIX: return "MIPS_PERF_SUFFIX"; | |
1890 | case DT_MIPS_COMPACT_SIZE: return "MIPS_COMPACT_SIZE"; | |
1891 | case DT_MIPS_GP_VALUE: return "MIPS_GP_VALUE"; | |
1892 | case DT_MIPS_AUX_DYNAMIC: return "MIPS_AUX_DYNAMIC"; | |
861fb55a DJ |
1893 | case DT_MIPS_PLTGOT: return "MIPS_PLTGOT"; |
1894 | case DT_MIPS_RWPLT: return "MIPS_RWPLT"; | |
f16a9783 | 1895 | case DT_MIPS_XHASH: return "MIPS_XHASH"; |
252b5132 RH |
1896 | default: |
1897 | return NULL; | |
1898 | } | |
1899 | } | |
1900 | ||
9a097730 | 1901 | static const char * |
d3ba0551 | 1902 | get_sparc64_dynamic_type (unsigned long type) |
9a097730 RH |
1903 | { |
1904 | switch (type) | |
1905 | { | |
1906 | case DT_SPARC_REGISTER: return "SPARC_REGISTER"; | |
1907 | default: | |
1908 | return NULL; | |
1909 | } | |
103f02d3 UD |
1910 | } |
1911 | ||
7490d522 AM |
1912 | static const char * |
1913 | get_ppc_dynamic_type (unsigned long type) | |
1914 | { | |
1915 | switch (type) | |
1916 | { | |
a7f2871e | 1917 | case DT_PPC_GOT: return "PPC_GOT"; |
e8910a83 | 1918 | case DT_PPC_OPT: return "PPC_OPT"; |
7490d522 AM |
1919 | default: |
1920 | return NULL; | |
1921 | } | |
1922 | } | |
1923 | ||
f1cb7e17 | 1924 | static const char * |
d3ba0551 | 1925 | get_ppc64_dynamic_type (unsigned long type) |
f1cb7e17 AM |
1926 | { |
1927 | switch (type) | |
1928 | { | |
a7f2871e AM |
1929 | case DT_PPC64_GLINK: return "PPC64_GLINK"; |
1930 | case DT_PPC64_OPD: return "PPC64_OPD"; | |
1931 | case DT_PPC64_OPDSZ: return "PPC64_OPDSZ"; | |
e8910a83 | 1932 | case DT_PPC64_OPT: return "PPC64_OPT"; |
f1cb7e17 AM |
1933 | default: |
1934 | return NULL; | |
1935 | } | |
1936 | } | |
1937 | ||
103f02d3 | 1938 | static const char * |
d3ba0551 | 1939 | get_parisc_dynamic_type (unsigned long type) |
103f02d3 UD |
1940 | { |
1941 | switch (type) | |
1942 | { | |
1943 | case DT_HP_LOAD_MAP: return "HP_LOAD_MAP"; | |
1944 | case DT_HP_DLD_FLAGS: return "HP_DLD_FLAGS"; | |
1945 | case DT_HP_DLD_HOOK: return "HP_DLD_HOOK"; | |
1946 | case DT_HP_UX10_INIT: return "HP_UX10_INIT"; | |
1947 | case DT_HP_UX10_INITSZ: return "HP_UX10_INITSZ"; | |
1948 | case DT_HP_PREINIT: return "HP_PREINIT"; | |
1949 | case DT_HP_PREINITSZ: return "HP_PREINITSZ"; | |
1950 | case DT_HP_NEEDED: return "HP_NEEDED"; | |
1951 | case DT_HP_TIME_STAMP: return "HP_TIME_STAMP"; | |
1952 | case DT_HP_CHECKSUM: return "HP_CHECKSUM"; | |
1953 | case DT_HP_GST_SIZE: return "HP_GST_SIZE"; | |
1954 | case DT_HP_GST_VERSION: return "HP_GST_VERSION"; | |
1955 | case DT_HP_GST_HASHVAL: return "HP_GST_HASHVAL"; | |
eec8f817 DA |
1956 | case DT_HP_EPLTREL: return "HP_GST_EPLTREL"; |
1957 | case DT_HP_EPLTRELSZ: return "HP_GST_EPLTRELSZ"; | |
1958 | case DT_HP_FILTERED: return "HP_FILTERED"; | |
1959 | case DT_HP_FILTER_TLS: return "HP_FILTER_TLS"; | |
1960 | case DT_HP_COMPAT_FILTERED: return "HP_COMPAT_FILTERED"; | |
1961 | case DT_HP_LAZYLOAD: return "HP_LAZYLOAD"; | |
1962 | case DT_HP_BIND_NOW_COUNT: return "HP_BIND_NOW_COUNT"; | |
1963 | case DT_PLT: return "PLT"; | |
1964 | case DT_PLT_SIZE: return "PLT_SIZE"; | |
1965 | case DT_DLT: return "DLT"; | |
1966 | case DT_DLT_SIZE: return "DLT_SIZE"; | |
103f02d3 UD |
1967 | default: |
1968 | return NULL; | |
1969 | } | |
1970 | } | |
9a097730 | 1971 | |
ecc51f48 | 1972 | static const char * |
d3ba0551 | 1973 | get_ia64_dynamic_type (unsigned long type) |
ecc51f48 NC |
1974 | { |
1975 | switch (type) | |
1976 | { | |
148b93f2 NC |
1977 | case DT_IA_64_PLT_RESERVE: return "IA_64_PLT_RESERVE"; |
1978 | case DT_IA_64_VMS_SUBTYPE: return "VMS_SUBTYPE"; | |
1979 | case DT_IA_64_VMS_IMGIOCNT: return "VMS_IMGIOCNT"; | |
1980 | case DT_IA_64_VMS_LNKFLAGS: return "VMS_LNKFLAGS"; | |
1981 | case DT_IA_64_VMS_VIR_MEM_BLK_SIZ: return "VMS_VIR_MEM_BLK_SIZ"; | |
1982 | case DT_IA_64_VMS_IDENT: return "VMS_IDENT"; | |
1983 | case DT_IA_64_VMS_NEEDED_IDENT: return "VMS_NEEDED_IDENT"; | |
1984 | case DT_IA_64_VMS_IMG_RELA_CNT: return "VMS_IMG_RELA_CNT"; | |
1985 | case DT_IA_64_VMS_SEG_RELA_CNT: return "VMS_SEG_RELA_CNT"; | |
1986 | case DT_IA_64_VMS_FIXUP_RELA_CNT: return "VMS_FIXUP_RELA_CNT"; | |
1987 | case DT_IA_64_VMS_FIXUP_NEEDED: return "VMS_FIXUP_NEEDED"; | |
1988 | case DT_IA_64_VMS_SYMVEC_CNT: return "VMS_SYMVEC_CNT"; | |
1989 | case DT_IA_64_VMS_XLATED: return "VMS_XLATED"; | |
1990 | case DT_IA_64_VMS_STACKSIZE: return "VMS_STACKSIZE"; | |
1991 | case DT_IA_64_VMS_UNWINDSZ: return "VMS_UNWINDSZ"; | |
1992 | case DT_IA_64_VMS_UNWIND_CODSEG: return "VMS_UNWIND_CODSEG"; | |
1993 | case DT_IA_64_VMS_UNWIND_INFOSEG: return "VMS_UNWIND_INFOSEG"; | |
1994 | case DT_IA_64_VMS_LINKTIME: return "VMS_LINKTIME"; | |
1995 | case DT_IA_64_VMS_SEG_NO: return "VMS_SEG_NO"; | |
1996 | case DT_IA_64_VMS_SYMVEC_OFFSET: return "VMS_SYMVEC_OFFSET"; | |
1997 | case DT_IA_64_VMS_SYMVEC_SEG: return "VMS_SYMVEC_SEG"; | |
1998 | case DT_IA_64_VMS_UNWIND_OFFSET: return "VMS_UNWIND_OFFSET"; | |
1999 | case DT_IA_64_VMS_UNWIND_SEG: return "VMS_UNWIND_SEG"; | |
2000 | case DT_IA_64_VMS_STRTAB_OFFSET: return "VMS_STRTAB_OFFSET"; | |
2001 | case DT_IA_64_VMS_SYSVER_OFFSET: return "VMS_SYSVER_OFFSET"; | |
2002 | case DT_IA_64_VMS_IMG_RELA_OFF: return "VMS_IMG_RELA_OFF"; | |
2003 | case DT_IA_64_VMS_SEG_RELA_OFF: return "VMS_SEG_RELA_OFF"; | |
2004 | case DT_IA_64_VMS_FIXUP_RELA_OFF: return "VMS_FIXUP_RELA_OFF"; | |
2005 | case DT_IA_64_VMS_PLTGOT_OFFSET: return "VMS_PLTGOT_OFFSET"; | |
2006 | case DT_IA_64_VMS_PLTGOT_SEG: return "VMS_PLTGOT_SEG"; | |
2007 | case DT_IA_64_VMS_FPMODE: return "VMS_FPMODE"; | |
ecc51f48 NC |
2008 | default: |
2009 | return NULL; | |
2010 | } | |
2011 | } | |
2012 | ||
fd85a6a1 NC |
2013 | static const char * |
2014 | get_solaris_section_type (unsigned long type) | |
2015 | { | |
2016 | switch (type) | |
2017 | { | |
2018 | case 0x6fffffee: return "SUNW_ancillary"; | |
2019 | case 0x6fffffef: return "SUNW_capchain"; | |
2020 | case 0x6ffffff0: return "SUNW_capinfo"; | |
2021 | case 0x6ffffff1: return "SUNW_symsort"; | |
2022 | case 0x6ffffff2: return "SUNW_tlssort"; | |
2023 | case 0x6ffffff3: return "SUNW_LDYNSYM"; | |
2024 | case 0x6ffffff4: return "SUNW_dof"; | |
2025 | case 0x6ffffff5: return "SUNW_cap"; | |
2026 | case 0x6ffffff6: return "SUNW_SIGNATURE"; | |
2027 | case 0x6ffffff7: return "SUNW_ANNOTATE"; | |
2028 | case 0x6ffffff8: return "SUNW_DEBUGSTR"; | |
2029 | case 0x6ffffff9: return "SUNW_DEBUG"; | |
2030 | case 0x6ffffffa: return "SUNW_move"; | |
2031 | case 0x6ffffffb: return "SUNW_COMDAT"; | |
2032 | case 0x6ffffffc: return "SUNW_syminfo"; | |
2033 | case 0x6ffffffd: return "SUNW_verdef"; | |
2034 | case 0x6ffffffe: return "SUNW_verneed"; | |
2035 | case 0x6fffffff: return "SUNW_versym"; | |
2036 | case 0x70000000: return "SPARC_GOTDATA"; | |
2037 | default: return NULL; | |
2038 | } | |
2039 | } | |
2040 | ||
fabcb361 RH |
2041 | static const char * |
2042 | get_alpha_dynamic_type (unsigned long type) | |
2043 | { | |
2044 | switch (type) | |
2045 | { | |
2046 | case DT_ALPHA_PLTRO: return "ALPHA_PLTRO"; | |
32ec8896 | 2047 | default: return NULL; |
fabcb361 RH |
2048 | } |
2049 | } | |
2050 | ||
1c0d3aa6 NC |
2051 | static const char * |
2052 | get_score_dynamic_type (unsigned long type) | |
2053 | { | |
2054 | switch (type) | |
2055 | { | |
2056 | case DT_SCORE_BASE_ADDRESS: return "SCORE_BASE_ADDRESS"; | |
2057 | case DT_SCORE_LOCAL_GOTNO: return "SCORE_LOCAL_GOTNO"; | |
2058 | case DT_SCORE_SYMTABNO: return "SCORE_SYMTABNO"; | |
2059 | case DT_SCORE_GOTSYM: return "SCORE_GOTSYM"; | |
2060 | case DT_SCORE_UNREFEXTNO: return "SCORE_UNREFEXTNO"; | |
2061 | case DT_SCORE_HIPAGENO: return "SCORE_HIPAGENO"; | |
32ec8896 | 2062 | default: return NULL; |
1c0d3aa6 NC |
2063 | } |
2064 | } | |
2065 | ||
40b36596 JM |
2066 | static const char * |
2067 | get_tic6x_dynamic_type (unsigned long type) | |
2068 | { | |
2069 | switch (type) | |
2070 | { | |
2071 | case DT_C6000_GSYM_OFFSET: return "C6000_GSYM_OFFSET"; | |
2072 | case DT_C6000_GSTR_OFFSET: return "C6000_GSTR_OFFSET"; | |
2073 | case DT_C6000_DSBT_BASE: return "C6000_DSBT_BASE"; | |
2074 | case DT_C6000_DSBT_SIZE: return "C6000_DSBT_SIZE"; | |
2075 | case DT_C6000_PREEMPTMAP: return "C6000_PREEMPTMAP"; | |
2076 | case DT_C6000_DSBT_INDEX: return "C6000_DSBT_INDEX"; | |
32ec8896 | 2077 | default: return NULL; |
40b36596 JM |
2078 | } |
2079 | } | |
1c0d3aa6 | 2080 | |
36591ba1 SL |
2081 | static const char * |
2082 | get_nios2_dynamic_type (unsigned long type) | |
2083 | { | |
2084 | switch (type) | |
2085 | { | |
2086 | case DT_NIOS2_GP: return "NIOS2_GP"; | |
32ec8896 | 2087 | default: return NULL; |
36591ba1 SL |
2088 | } |
2089 | } | |
2090 | ||
fd85a6a1 NC |
2091 | static const char * |
2092 | get_solaris_dynamic_type (unsigned long type) | |
2093 | { | |
2094 | switch (type) | |
2095 | { | |
2096 | case 0x6000000d: return "SUNW_AUXILIARY"; | |
2097 | case 0x6000000e: return "SUNW_RTLDINF"; | |
2098 | case 0x6000000f: return "SUNW_FILTER"; | |
2099 | case 0x60000010: return "SUNW_CAP"; | |
2100 | case 0x60000011: return "SUNW_SYMTAB"; | |
2101 | case 0x60000012: return "SUNW_SYMSZ"; | |
2102 | case 0x60000013: return "SUNW_SORTENT"; | |
2103 | case 0x60000014: return "SUNW_SYMSORT"; | |
2104 | case 0x60000015: return "SUNW_SYMSORTSZ"; | |
2105 | case 0x60000016: return "SUNW_TLSSORT"; | |
2106 | case 0x60000017: return "SUNW_TLSSORTSZ"; | |
2107 | case 0x60000018: return "SUNW_CAPINFO"; | |
2108 | case 0x60000019: return "SUNW_STRPAD"; | |
2109 | case 0x6000001a: return "SUNW_CAPCHAIN"; | |
2110 | case 0x6000001b: return "SUNW_LDMACH"; | |
2111 | case 0x6000001d: return "SUNW_CAPCHAINENT"; | |
2112 | case 0x6000001f: return "SUNW_CAPCHAINSZ"; | |
2113 | case 0x60000021: return "SUNW_PARENT"; | |
2114 | case 0x60000023: return "SUNW_ASLR"; | |
2115 | case 0x60000025: return "SUNW_RELAX"; | |
2116 | case 0x60000029: return "SUNW_NXHEAP"; | |
2117 | case 0x6000002b: return "SUNW_NXSTACK"; | |
2118 | ||
2119 | case 0x70000001: return "SPARC_REGISTER"; | |
2120 | case 0x7ffffffd: return "AUXILIARY"; | |
2121 | case 0x7ffffffe: return "USED"; | |
2122 | case 0x7fffffff: return "FILTER"; | |
2123 | ||
15f205b1 | 2124 | default: return NULL; |
fd85a6a1 NC |
2125 | } |
2126 | } | |
2127 | ||
252b5132 | 2128 | static const char * |
dda8d76d | 2129 | get_dynamic_type (Filedata * filedata, unsigned long type) |
252b5132 | 2130 | { |
e9e44622 | 2131 | static char buff[64]; |
252b5132 RH |
2132 | |
2133 | switch (type) | |
2134 | { | |
2135 | case DT_NULL: return "NULL"; | |
2136 | case DT_NEEDED: return "NEEDED"; | |
2137 | case DT_PLTRELSZ: return "PLTRELSZ"; | |
2138 | case DT_PLTGOT: return "PLTGOT"; | |
2139 | case DT_HASH: return "HASH"; | |
2140 | case DT_STRTAB: return "STRTAB"; | |
2141 | case DT_SYMTAB: return "SYMTAB"; | |
2142 | case DT_RELA: return "RELA"; | |
2143 | case DT_RELASZ: return "RELASZ"; | |
2144 | case DT_RELAENT: return "RELAENT"; | |
2145 | case DT_STRSZ: return "STRSZ"; | |
2146 | case DT_SYMENT: return "SYMENT"; | |
2147 | case DT_INIT: return "INIT"; | |
2148 | case DT_FINI: return "FINI"; | |
2149 | case DT_SONAME: return "SONAME"; | |
2150 | case DT_RPATH: return "RPATH"; | |
2151 | case DT_SYMBOLIC: return "SYMBOLIC"; | |
2152 | case DT_REL: return "REL"; | |
2153 | case DT_RELSZ: return "RELSZ"; | |
2154 | case DT_RELENT: return "RELENT"; | |
2155 | case DT_PLTREL: return "PLTREL"; | |
2156 | case DT_DEBUG: return "DEBUG"; | |
2157 | case DT_TEXTREL: return "TEXTREL"; | |
2158 | case DT_JMPREL: return "JMPREL"; | |
2159 | case DT_BIND_NOW: return "BIND_NOW"; | |
2160 | case DT_INIT_ARRAY: return "INIT_ARRAY"; | |
2161 | case DT_FINI_ARRAY: return "FINI_ARRAY"; | |
2162 | case DT_INIT_ARRAYSZ: return "INIT_ARRAYSZ"; | |
2163 | case DT_FINI_ARRAYSZ: return "FINI_ARRAYSZ"; | |
d1133906 NC |
2164 | case DT_RUNPATH: return "RUNPATH"; |
2165 | case DT_FLAGS: return "FLAGS"; | |
2d0e6f43 | 2166 | |
d1133906 NC |
2167 | case DT_PREINIT_ARRAY: return "PREINIT_ARRAY"; |
2168 | case DT_PREINIT_ARRAYSZ: return "PREINIT_ARRAYSZ"; | |
6d913794 | 2169 | case DT_SYMTAB_SHNDX: return "SYMTAB_SHNDX"; |
103f02d3 | 2170 | |
05107a46 | 2171 | case DT_CHECKSUM: return "CHECKSUM"; |
252b5132 RH |
2172 | case DT_PLTPADSZ: return "PLTPADSZ"; |
2173 | case DT_MOVEENT: return "MOVEENT"; | |
2174 | case DT_MOVESZ: return "MOVESZ"; | |
dcefbbbd | 2175 | case DT_FEATURE: return "FEATURE"; |
252b5132 RH |
2176 | case DT_POSFLAG_1: return "POSFLAG_1"; |
2177 | case DT_SYMINSZ: return "SYMINSZ"; | |
2178 | case DT_SYMINENT: return "SYMINENT"; /* aka VALRNGHI */ | |
103f02d3 | 2179 | |
252b5132 | 2180 | case DT_ADDRRNGLO: return "ADDRRNGLO"; |
dcefbbbd L |
2181 | case DT_CONFIG: return "CONFIG"; |
2182 | case DT_DEPAUDIT: return "DEPAUDIT"; | |
2183 | case DT_AUDIT: return "AUDIT"; | |
2184 | case DT_PLTPAD: return "PLTPAD"; | |
2185 | case DT_MOVETAB: return "MOVETAB"; | |
252b5132 | 2186 | case DT_SYMINFO: return "SYMINFO"; /* aka ADDRRNGHI */ |
103f02d3 | 2187 | |
252b5132 | 2188 | case DT_VERSYM: return "VERSYM"; |
103f02d3 | 2189 | |
67a4f2b7 AO |
2190 | case DT_TLSDESC_GOT: return "TLSDESC_GOT"; |
2191 | case DT_TLSDESC_PLT: return "TLSDESC_PLT"; | |
252b5132 RH |
2192 | case DT_RELACOUNT: return "RELACOUNT"; |
2193 | case DT_RELCOUNT: return "RELCOUNT"; | |
2194 | case DT_FLAGS_1: return "FLAGS_1"; | |
2195 | case DT_VERDEF: return "VERDEF"; | |
2196 | case DT_VERDEFNUM: return "VERDEFNUM"; | |
2197 | case DT_VERNEED: return "VERNEED"; | |
2198 | case DT_VERNEEDNUM: return "VERNEEDNUM"; | |
103f02d3 | 2199 | |
019148e4 | 2200 | case DT_AUXILIARY: return "AUXILIARY"; |
252b5132 RH |
2201 | case DT_USED: return "USED"; |
2202 | case DT_FILTER: return "FILTER"; | |
103f02d3 | 2203 | |
047b2264 JJ |
2204 | case DT_GNU_PRELINKED: return "GNU_PRELINKED"; |
2205 | case DT_GNU_CONFLICT: return "GNU_CONFLICT"; | |
2206 | case DT_GNU_CONFLICTSZ: return "GNU_CONFLICTSZ"; | |
2207 | case DT_GNU_LIBLIST: return "GNU_LIBLIST"; | |
2208 | case DT_GNU_LIBLISTSZ: return "GNU_LIBLISTSZ"; | |
fdc90cb4 | 2209 | case DT_GNU_HASH: return "GNU_HASH"; |
047b2264 | 2210 | |
252b5132 RH |
2211 | default: |
2212 | if ((type >= DT_LOPROC) && (type <= DT_HIPROC)) | |
2213 | { | |
2cf0635d | 2214 | const char * result; |
103f02d3 | 2215 | |
dda8d76d | 2216 | switch (filedata->file_header.e_machine) |
252b5132 | 2217 | { |
37c18eed SD |
2218 | case EM_AARCH64: |
2219 | result = get_aarch64_dynamic_type (type); | |
2220 | break; | |
252b5132 | 2221 | case EM_MIPS: |
4fe85591 | 2222 | case EM_MIPS_RS3_LE: |
252b5132 RH |
2223 | result = get_mips_dynamic_type (type); |
2224 | break; | |
9a097730 RH |
2225 | case EM_SPARCV9: |
2226 | result = get_sparc64_dynamic_type (type); | |
2227 | break; | |
7490d522 AM |
2228 | case EM_PPC: |
2229 | result = get_ppc_dynamic_type (type); | |
2230 | break; | |
f1cb7e17 AM |
2231 | case EM_PPC64: |
2232 | result = get_ppc64_dynamic_type (type); | |
2233 | break; | |
ecc51f48 NC |
2234 | case EM_IA_64: |
2235 | result = get_ia64_dynamic_type (type); | |
2236 | break; | |
fabcb361 RH |
2237 | case EM_ALPHA: |
2238 | result = get_alpha_dynamic_type (type); | |
2239 | break; | |
1c0d3aa6 NC |
2240 | case EM_SCORE: |
2241 | result = get_score_dynamic_type (type); | |
2242 | break; | |
40b36596 JM |
2243 | case EM_TI_C6000: |
2244 | result = get_tic6x_dynamic_type (type); | |
2245 | break; | |
36591ba1 SL |
2246 | case EM_ALTERA_NIOS2: |
2247 | result = get_nios2_dynamic_type (type); | |
2248 | break; | |
252b5132 | 2249 | default: |
dda8d76d | 2250 | if (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_SOLARIS) |
fd85a6a1 NC |
2251 | result = get_solaris_dynamic_type (type); |
2252 | else | |
2253 | result = NULL; | |
252b5132 RH |
2254 | break; |
2255 | } | |
2256 | ||
2257 | if (result != NULL) | |
2258 | return result; | |
2259 | ||
e9e44622 | 2260 | snprintf (buff, sizeof (buff), _("Processor Specific: %lx"), type); |
252b5132 | 2261 | } |
eec8f817 | 2262 | else if (((type >= DT_LOOS) && (type <= DT_HIOS)) |
dda8d76d | 2263 | || (filedata->file_header.e_machine == EM_PARISC |
eec8f817 | 2264 | && (type >= OLD_DT_LOOS) && (type <= OLD_DT_HIOS))) |
103f02d3 | 2265 | { |
2cf0635d | 2266 | const char * result; |
103f02d3 | 2267 | |
dda8d76d | 2268 | switch (filedata->file_header.e_machine) |
103f02d3 UD |
2269 | { |
2270 | case EM_PARISC: | |
2271 | result = get_parisc_dynamic_type (type); | |
2272 | break; | |
148b93f2 NC |
2273 | case EM_IA_64: |
2274 | result = get_ia64_dynamic_type (type); | |
2275 | break; | |
103f02d3 | 2276 | default: |
dda8d76d | 2277 | if (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_SOLARIS) |
fd85a6a1 NC |
2278 | result = get_solaris_dynamic_type (type); |
2279 | else | |
2280 | result = NULL; | |
103f02d3 UD |
2281 | break; |
2282 | } | |
2283 | ||
2284 | if (result != NULL) | |
2285 | return result; | |
2286 | ||
e9e44622 JJ |
2287 | snprintf (buff, sizeof (buff), _("Operating System specific: %lx"), |
2288 | type); | |
103f02d3 | 2289 | } |
252b5132 | 2290 | else |
e9e44622 | 2291 | snprintf (buff, sizeof (buff), _("<unknown>: %lx"), type); |
103f02d3 | 2292 | |
252b5132 RH |
2293 | return buff; |
2294 | } | |
2295 | } | |
2296 | ||
2297 | static char * | |
d3ba0551 | 2298 | get_file_type (unsigned e_type) |
252b5132 | 2299 | { |
89246a0e | 2300 | static char buff[64]; |
252b5132 RH |
2301 | |
2302 | switch (e_type) | |
2303 | { | |
32ec8896 NC |
2304 | case ET_NONE: return _("NONE (None)"); |
2305 | case ET_REL: return _("REL (Relocatable file)"); | |
2306 | case ET_EXEC: return _("EXEC (Executable file)"); | |
2307 | case ET_DYN: return _("DYN (Shared object file)"); | |
2308 | case ET_CORE: return _("CORE (Core file)"); | |
252b5132 RH |
2309 | |
2310 | default: | |
2311 | if ((e_type >= ET_LOPROC) && (e_type <= ET_HIPROC)) | |
e9e44622 | 2312 | snprintf (buff, sizeof (buff), _("Processor Specific: (%x)"), e_type); |
252b5132 | 2313 | else if ((e_type >= ET_LOOS) && (e_type <= ET_HIOS)) |
e9e44622 | 2314 | snprintf (buff, sizeof (buff), _("OS Specific: (%x)"), e_type); |
252b5132 | 2315 | else |
e9e44622 | 2316 | snprintf (buff, sizeof (buff), _("<unknown>: %x"), e_type); |
252b5132 RH |
2317 | return buff; |
2318 | } | |
2319 | } | |
2320 | ||
2321 | static char * | |
d3ba0551 | 2322 | get_machine_name (unsigned e_machine) |
252b5132 | 2323 | { |
b34976b6 | 2324 | static char buff[64]; /* XXX */ |
252b5132 RH |
2325 | |
2326 | switch (e_machine) | |
2327 | { | |
55e22ca8 NC |
2328 | /* Please keep this switch table sorted by increasing EM_ value. */ |
2329 | /* 0 */ | |
c45021f2 NC |
2330 | case EM_NONE: return _("None"); |
2331 | case EM_M32: return "WE32100"; | |
2332 | case EM_SPARC: return "Sparc"; | |
2333 | case EM_386: return "Intel 80386"; | |
2334 | case EM_68K: return "MC68000"; | |
2335 | case EM_88K: return "MC88000"; | |
22abe556 | 2336 | case EM_IAMCU: return "Intel MCU"; |
fb70ec17 | 2337 | case EM_860: return "Intel 80860"; |
c45021f2 NC |
2338 | case EM_MIPS: return "MIPS R3000"; |
2339 | case EM_S370: return "IBM System/370"; | |
55e22ca8 | 2340 | /* 10 */ |
7036c0e1 | 2341 | case EM_MIPS_RS3_LE: return "MIPS R4000 big-endian"; |
252b5132 | 2342 | case EM_OLD_SPARCV9: return "Sparc v9 (old)"; |
c45021f2 | 2343 | case EM_PARISC: return "HPPA"; |
55e22ca8 | 2344 | case EM_VPP550: return "Fujitsu VPP500"; |
7036c0e1 | 2345 | case EM_SPARC32PLUS: return "Sparc v8+" ; |
d7867d17 | 2346 | case EM_960: return "Intel 80960"; |
c45021f2 | 2347 | case EM_PPC: return "PowerPC"; |
55e22ca8 | 2348 | /* 20 */ |
285d1771 | 2349 | case EM_PPC64: return "PowerPC64"; |
55e22ca8 NC |
2350 | case EM_S390_OLD: |
2351 | case EM_S390: return "IBM S/390"; | |
2352 | case EM_SPU: return "SPU"; | |
2353 | /* 30 */ | |
2354 | case EM_V800: return "Renesas V850 (using RH850 ABI)"; | |
c45021f2 NC |
2355 | case EM_FR20: return "Fujitsu FR20"; |
2356 | case EM_RH32: return "TRW RH32"; | |
b34976b6 | 2357 | case EM_MCORE: return "MCORE"; |
55e22ca8 | 2358 | /* 40 */ |
7036c0e1 AJ |
2359 | case EM_ARM: return "ARM"; |
2360 | case EM_OLD_ALPHA: return "Digital Alpha (old)"; | |
ef230218 | 2361 | case EM_SH: return "Renesas / SuperH SH"; |
c45021f2 NC |
2362 | case EM_SPARCV9: return "Sparc v9"; |
2363 | case EM_TRICORE: return "Siemens Tricore"; | |
584da044 | 2364 | case EM_ARC: return "ARC"; |
c2dcd04e NC |
2365 | case EM_H8_300: return "Renesas H8/300"; |
2366 | case EM_H8_300H: return "Renesas H8/300H"; | |
2367 | case EM_H8S: return "Renesas H8S"; | |
2368 | case EM_H8_500: return "Renesas H8/500"; | |
55e22ca8 | 2369 | /* 50 */ |
30800947 | 2370 | case EM_IA_64: return "Intel IA-64"; |
252b5132 RH |
2371 | case EM_MIPS_X: return "Stanford MIPS-X"; |
2372 | case EM_COLDFIRE: return "Motorola Coldfire"; | |
55e22ca8 | 2373 | case EM_68HC12: return "Motorola MC68HC12 Microcontroller"; |
7036c0e1 AJ |
2374 | case EM_MMA: return "Fujitsu Multimedia Accelerator"; |
2375 | case EM_PCP: return "Siemens PCP"; | |
2376 | case EM_NCPU: return "Sony nCPU embedded RISC processor"; | |
2377 | case EM_NDR1: return "Denso NDR1 microprocesspr"; | |
2378 | case EM_STARCORE: return "Motorola Star*Core processor"; | |
2379 | case EM_ME16: return "Toyota ME16 processor"; | |
55e22ca8 | 2380 | /* 60 */ |
7036c0e1 AJ |
2381 | case EM_ST100: return "STMicroelectronics ST100 processor"; |
2382 | case EM_TINYJ: return "Advanced Logic Corp. TinyJ embedded processor"; | |
55e22ca8 | 2383 | case EM_X86_64: return "Advanced Micro Devices X86-64"; |
11636f9e JM |
2384 | case EM_PDSP: return "Sony DSP processor"; |
2385 | case EM_PDP10: return "Digital Equipment Corp. PDP-10"; | |
2386 | case EM_PDP11: return "Digital Equipment Corp. PDP-11"; | |
7036c0e1 AJ |
2387 | case EM_FX66: return "Siemens FX66 microcontroller"; |
2388 | case EM_ST9PLUS: return "STMicroelectronics ST9+ 8/16 bit microcontroller"; | |
2389 | case EM_ST7: return "STMicroelectronics ST7 8-bit microcontroller"; | |
2390 | case EM_68HC16: return "Motorola MC68HC16 Microcontroller"; | |
55e22ca8 | 2391 | /* 70 */ |
7036c0e1 AJ |
2392 | case EM_68HC11: return "Motorola MC68HC11 Microcontroller"; |
2393 | case EM_68HC08: return "Motorola MC68HC08 Microcontroller"; | |
2394 | case EM_68HC05: return "Motorola MC68HC05 Microcontroller"; | |
2395 | case EM_SVX: return "Silicon Graphics SVx"; | |
2396 | case EM_ST19: return "STMicroelectronics ST19 8-bit microcontroller"; | |
2397 | case EM_VAX: return "Digital VAX"; | |
1b61cf92 | 2398 | case EM_CRIS: return "Axis Communications 32-bit embedded processor"; |
c45021f2 NC |
2399 | case EM_JAVELIN: return "Infineon Technologies 32-bit embedded cpu"; |
2400 | case EM_FIREPATH: return "Element 14 64-bit DSP processor"; | |
2401 | case EM_ZSP: return "LSI Logic's 16-bit DSP processor"; | |
55e22ca8 | 2402 | /* 80 */ |
b34976b6 | 2403 | case EM_MMIX: return "Donald Knuth's educational 64-bit processor"; |
c45021f2 | 2404 | case EM_HUANY: return "Harvard Universitys's machine-independent object format"; |
3b36097d | 2405 | case EM_PRISM: return "Vitesse Prism"; |
55e22ca8 NC |
2406 | case EM_AVR_OLD: |
2407 | case EM_AVR: return "Atmel AVR 8-bit microcontroller"; | |
2408 | case EM_CYGNUS_FR30: | |
2409 | case EM_FR30: return "Fujitsu FR30"; | |
2410 | case EM_CYGNUS_D10V: | |
2411 | case EM_D10V: return "d10v"; | |
2412 | case EM_CYGNUS_D30V: | |
2413 | case EM_D30V: return "d30v"; | |
2414 | case EM_CYGNUS_V850: | |
2415 | case EM_V850: return "Renesas V850"; | |
2416 | case EM_CYGNUS_M32R: | |
2417 | case EM_M32R: return "Renesas M32R (formerly Mitsubishi M32r)"; | |
2418 | case EM_CYGNUS_MN10300: | |
2419 | case EM_MN10300: return "mn10300"; | |
2420 | /* 90 */ | |
2421 | case EM_CYGNUS_MN10200: | |
2422 | case EM_MN10200: return "mn10200"; | |
2423 | case EM_PJ: return "picoJava"; | |
73589c9d | 2424 | case EM_OR1K: return "OpenRISC 1000"; |
55e22ca8 | 2425 | case EM_ARC_COMPACT: return "ARCompact"; |
88da6820 NC |
2426 | case EM_XTENSA_OLD: |
2427 | case EM_XTENSA: return "Tensilica Xtensa Processor"; | |
11636f9e JM |
2428 | case EM_VIDEOCORE: return "Alphamosaic VideoCore processor"; |
2429 | case EM_TMM_GPP: return "Thompson Multimedia General Purpose Processor"; | |
2430 | case EM_NS32K: return "National Semiconductor 32000 series"; | |
2431 | case EM_TPC: return "Tenor Network TPC processor"; | |
55e22ca8 NC |
2432 | case EM_SNP1K: return "Trebia SNP 1000 processor"; |
2433 | /* 100 */ | |
9abca702 | 2434 | case EM_ST200: return "STMicroelectronics ST200 microcontroller"; |
55e22ca8 NC |
2435 | case EM_IP2K_OLD: |
2436 | case EM_IP2K: return "Ubicom IP2xxx 8-bit microcontrollers"; | |
11636f9e JM |
2437 | case EM_MAX: return "MAX Processor"; |
2438 | case EM_CR: return "National Semiconductor CompactRISC"; | |
2439 | case EM_F2MC16: return "Fujitsu F2MC16"; | |
2440 | case EM_MSP430: return "Texas Instruments msp430 microcontroller"; | |
7bbe5bc5 | 2441 | case EM_BLACKFIN: return "Analog Devices Blackfin"; |
11636f9e JM |
2442 | case EM_SE_C33: return "S1C33 Family of Seiko Epson processors"; |
2443 | case EM_SEP: return "Sharp embedded microprocessor"; | |
2444 | case EM_ARCA: return "Arca RISC microprocessor"; | |
55e22ca8 | 2445 | /* 110 */ |
11636f9e JM |
2446 | case EM_UNICORE: return "Unicore"; |
2447 | case EM_EXCESS: return "eXcess 16/32/64-bit configurable embedded CPU"; | |
2448 | case EM_DXP: return "Icera Semiconductor Inc. Deep Execution Processor"; | |
64fd6348 | 2449 | case EM_ALTERA_NIOS2: return "Altera Nios II"; |
55e22ca8 NC |
2450 | case EM_CRX: return "National Semiconductor CRX microprocessor"; |
2451 | case EM_XGATE: return "Motorola XGATE embedded processor"; | |
c29aca4a | 2452 | case EM_C166: |
d70c5fc7 | 2453 | case EM_XC16X: return "Infineon Technologies xc16x"; |
11636f9e JM |
2454 | case EM_M16C: return "Renesas M16C series microprocessors"; |
2455 | case EM_DSPIC30F: return "Microchip Technology dsPIC30F Digital Signal Controller"; | |
2456 | case EM_CE: return "Freescale Communication Engine RISC core"; | |
55e22ca8 NC |
2457 | /* 120 */ |
2458 | case EM_M32C: return "Renesas M32c"; | |
2459 | /* 130 */ | |
11636f9e JM |
2460 | case EM_TSK3000: return "Altium TSK3000 core"; |
2461 | case EM_RS08: return "Freescale RS08 embedded processor"; | |
2462 | case EM_ECOG2: return "Cyan Technology eCOG2 microprocessor"; | |
55e22ca8 | 2463 | case EM_SCORE: return "SUNPLUS S+Core"; |
11636f9e JM |
2464 | case EM_DSP24: return "New Japan Radio (NJR) 24-bit DSP Processor"; |
2465 | case EM_VIDEOCORE3: return "Broadcom VideoCore III processor"; | |
55e22ca8 | 2466 | case EM_LATTICEMICO32: return "Lattice Mico32"; |
11636f9e | 2467 | case EM_SE_C17: return "Seiko Epson C17 family"; |
55e22ca8 | 2468 | /* 140 */ |
11636f9e JM |
2469 | case EM_TI_C6000: return "Texas Instruments TMS320C6000 DSP family"; |
2470 | case EM_TI_C2000: return "Texas Instruments TMS320C2000 DSP family"; | |
2471 | case EM_TI_C5500: return "Texas Instruments TMS320C55x DSP family"; | |
55e22ca8 NC |
2472 | case EM_TI_PRU: return "TI PRU I/O processor"; |
2473 | /* 160 */ | |
11636f9e JM |
2474 | case EM_MMDSP_PLUS: return "STMicroelectronics 64bit VLIW Data Signal Processor"; |
2475 | case EM_CYPRESS_M8C: return "Cypress M8C microprocessor"; | |
2476 | case EM_R32C: return "Renesas R32C series microprocessors"; | |
2477 | case EM_TRIMEDIA: return "NXP Semiconductors TriMedia architecture family"; | |
2478 | case EM_QDSP6: return "QUALCOMM DSP6 Processor"; | |
2479 | case EM_8051: return "Intel 8051 and variants"; | |
2480 | case EM_STXP7X: return "STMicroelectronics STxP7x family"; | |
2481 | case EM_NDS32: return "Andes Technology compact code size embedded RISC processor family"; | |
2482 | case EM_ECOG1X: return "Cyan Technology eCOG1X family"; | |
2483 | case EM_MAXQ30: return "Dallas Semiconductor MAXQ30 Core microcontrollers"; | |
55e22ca8 | 2484 | /* 170 */ |
11636f9e JM |
2485 | case EM_XIMO16: return "New Japan Radio (NJR) 16-bit DSP Processor"; |
2486 | case EM_MANIK: return "M2000 Reconfigurable RISC Microprocessor"; | |
2487 | case EM_CRAYNV2: return "Cray Inc. NV2 vector architecture"; | |
c7927a3c | 2488 | case EM_RX: return "Renesas RX"; |
a3c62988 | 2489 | case EM_METAG: return "Imagination Technologies Meta processor architecture"; |
11636f9e JM |
2490 | case EM_MCST_ELBRUS: return "MCST Elbrus general purpose hardware architecture"; |
2491 | case EM_ECOG16: return "Cyan Technology eCOG16 family"; | |
55e22ca8 NC |
2492 | case EM_CR16: |
2493 | case EM_MICROBLAZE: | |
2494 | case EM_MICROBLAZE_OLD: return "Xilinx MicroBlaze"; | |
11636f9e JM |
2495 | case EM_ETPU: return "Freescale Extended Time Processing Unit"; |
2496 | case EM_SLE9X: return "Infineon Technologies SLE9X core"; | |
55e22ca8 NC |
2497 | /* 180 */ |
2498 | case EM_L1OM: return "Intel L1OM"; | |
2499 | case EM_K1OM: return "Intel K1OM"; | |
2500 | case EM_INTEL182: return "Intel (reserved)"; | |
2501 | case EM_AARCH64: return "AArch64"; | |
2502 | case EM_ARM184: return "ARM (reserved)"; | |
2503 | case EM_AVR32: return "Atmel Corporation 32-bit microprocessor"; | |
11636f9e JM |
2504 | case EM_STM8: return "STMicroeletronics STM8 8-bit microcontroller"; |
2505 | case EM_TILE64: return "Tilera TILE64 multicore architecture family"; | |
2506 | case EM_TILEPRO: return "Tilera TILEPro multicore architecture family"; | |
55e22ca8 | 2507 | /* 190 */ |
11636f9e | 2508 | case EM_CUDA: return "NVIDIA CUDA architecture"; |
55e22ca8 | 2509 | case EM_TILEGX: return "Tilera TILE-Gx multicore architecture family"; |
6d913794 NC |
2510 | case EM_CLOUDSHIELD: return "CloudShield architecture family"; |
2511 | case EM_COREA_1ST: return "KIPO-KAIST Core-A 1st generation processor family"; | |
2512 | case EM_COREA_2ND: return "KIPO-KAIST Core-A 2nd generation processor family"; | |
55e22ca8 | 2513 | case EM_ARC_COMPACT2: return "ARCv2"; |
6d913794 | 2514 | case EM_OPEN8: return "Open8 8-bit RISC soft processor core"; |
55e22ca8 | 2515 | case EM_RL78: return "Renesas RL78"; |
6d913794 | 2516 | case EM_VIDEOCORE5: return "Broadcom VideoCore V processor"; |
55e22ca8 NC |
2517 | case EM_78K0R: return "Renesas 78K0R"; |
2518 | /* 200 */ | |
6d913794 | 2519 | case EM_56800EX: return "Freescale 56800EX Digital Signal Controller (DSC)"; |
15f205b1 NC |
2520 | case EM_BA1: return "Beyond BA1 CPU architecture"; |
2521 | case EM_BA2: return "Beyond BA2 CPU architecture"; | |
6d913794 NC |
2522 | case EM_XCORE: return "XMOS xCORE processor family"; |
2523 | case EM_MCHP_PIC: return "Microchip 8-bit PIC(r) family"; | |
55e22ca8 | 2524 | /* 210 */ |
6d913794 NC |
2525 | case EM_KM32: return "KM211 KM32 32-bit processor"; |
2526 | case EM_KMX32: return "KM211 KMX32 32-bit processor"; | |
2527 | case EM_KMX16: return "KM211 KMX16 16-bit processor"; | |
2528 | case EM_KMX8: return "KM211 KMX8 8-bit processor"; | |
2529 | case EM_KVARC: return "KM211 KVARC processor"; | |
15f205b1 | 2530 | case EM_CDP: return "Paneve CDP architecture family"; |
6d913794 NC |
2531 | case EM_COGE: return "Cognitive Smart Memory Processor"; |
2532 | case EM_COOL: return "Bluechip Systems CoolEngine"; | |
2533 | case EM_NORC: return "Nanoradio Optimized RISC"; | |
2534 | case EM_CSR_KALIMBA: return "CSR Kalimba architecture family"; | |
55e22ca8 | 2535 | /* 220 */ |
15f205b1 | 2536 | case EM_Z80: return "Zilog Z80"; |
55e22ca8 NC |
2537 | case EM_VISIUM: return "CDS VISIUMcore processor"; |
2538 | case EM_FT32: return "FTDI Chip FT32"; | |
2539 | case EM_MOXIE: return "Moxie"; | |
2540 | case EM_AMDGPU: return "AMD GPU"; | |
2541 | case EM_RISCV: return "RISC-V"; | |
2542 | case EM_LANAI: return "Lanai 32-bit processor"; | |
2543 | case EM_BPF: return "Linux BPF"; | |
fe944acf | 2544 | case EM_NFP: return "Netronome Flow Processor"; |
55e22ca8 NC |
2545 | |
2546 | /* Large numbers... */ | |
2547 | case EM_MT: return "Morpho Techologies MT processor"; | |
2548 | case EM_ALPHA: return "Alpha"; | |
2549 | case EM_WEBASSEMBLY: return "Web Assembly"; | |
9abca702 | 2550 | case EM_DLX: return "OpenDLX"; |
55e22ca8 NC |
2551 | case EM_XSTORMY16: return "Sanyo XStormy16 CPU core"; |
2552 | case EM_IQ2000: return "Vitesse IQ2000"; | |
2553 | case EM_M32C_OLD: | |
2554 | case EM_NIOS32: return "Altera Nios"; | |
2555 | case EM_CYGNUS_MEP: return "Toshiba MeP Media Engine"; | |
2556 | case EM_ADAPTEVA_EPIPHANY: return "Adapteva EPIPHANY"; | |
2557 | case EM_CYGNUS_FRV: return "Fujitsu FR-V"; | |
637b1970 | 2558 | case EM_S12Z: return "Freescale S12Z"; |
b8891f8d | 2559 | case EM_CSKY: return "C-SKY"; |
55e22ca8 | 2560 | |
252b5132 | 2561 | default: |
35d9dd2f | 2562 | snprintf (buff, sizeof (buff), _("<unknown>: 0x%x"), e_machine); |
252b5132 RH |
2563 | return buff; |
2564 | } | |
2565 | } | |
2566 | ||
a9522a21 AB |
2567 | static void |
2568 | decode_ARC_machine_flags (unsigned e_flags, unsigned e_machine, char buf[]) | |
2569 | { | |
2570 | /* ARC has two machine types EM_ARC_COMPACT and EM_ARC_COMPACT2. Some | |
2571 | other compilers don't a specific architecture type in the e_flags, and | |
2572 | instead use EM_ARC_COMPACT for old ARC600, ARC601, and ARC700 | |
2573 | architectures, and switch to EM_ARC_COMPACT2 for newer ARCEM and ARCHS | |
2574 | architectures. | |
2575 | ||
2576 | Th GNU tools follows this use of EM_ARC_COMPACT and EM_ARC_COMPACT2, | |
2577 | but also sets a specific architecture type in the e_flags field. | |
2578 | ||
2579 | However, when decoding the flags we don't worry if we see an | |
2580 | unexpected pairing, for example EM_ARC_COMPACT machine type, with | |
2581 | ARCEM architecture type. */ | |
2582 | ||
2583 | switch (e_flags & EF_ARC_MACH_MSK) | |
2584 | { | |
2585 | /* We only expect these to occur for EM_ARC_COMPACT2. */ | |
2586 | case EF_ARC_CPU_ARCV2EM: | |
2587 | strcat (buf, ", ARC EM"); | |
2588 | break; | |
2589 | case EF_ARC_CPU_ARCV2HS: | |
2590 | strcat (buf, ", ARC HS"); | |
2591 | break; | |
2592 | ||
2593 | /* We only expect these to occur for EM_ARC_COMPACT. */ | |
2594 | case E_ARC_MACH_ARC600: | |
2595 | strcat (buf, ", ARC600"); | |
2596 | break; | |
2597 | case E_ARC_MACH_ARC601: | |
2598 | strcat (buf, ", ARC601"); | |
2599 | break; | |
2600 | case E_ARC_MACH_ARC700: | |
2601 | strcat (buf, ", ARC700"); | |
2602 | break; | |
2603 | ||
2604 | /* The only times we should end up here are (a) A corrupt ELF, (b) A | |
2605 | new ELF with new architecture being read by an old version of | |
2606 | readelf, or (c) An ELF built with non-GNU compiler that does not | |
2607 | set the architecture in the e_flags. */ | |
2608 | default: | |
2609 | if (e_machine == EM_ARC_COMPACT) | |
2610 | strcat (buf, ", Unknown ARCompact"); | |
2611 | else | |
2612 | strcat (buf, ", Unknown ARC"); | |
2613 | break; | |
2614 | } | |
2615 | ||
2616 | switch (e_flags & EF_ARC_OSABI_MSK) | |
2617 | { | |
2618 | case E_ARC_OSABI_ORIG: | |
2619 | strcat (buf, ", (ABI:legacy)"); | |
2620 | break; | |
2621 | case E_ARC_OSABI_V2: | |
2622 | strcat (buf, ", (ABI:v2)"); | |
2623 | break; | |
2624 | /* Only upstream 3.9+ kernels will support ARCv2 ISA. */ | |
2625 | case E_ARC_OSABI_V3: | |
2626 | strcat (buf, ", v3 no-legacy-syscalls ABI"); | |
2627 | break; | |
53a346d8 CZ |
2628 | case E_ARC_OSABI_V4: |
2629 | strcat (buf, ", v4 ABI"); | |
2630 | break; | |
a9522a21 AB |
2631 | default: |
2632 | strcat (buf, ", unrecognised ARC OSABI flag"); | |
2633 | break; | |
2634 | } | |
2635 | } | |
2636 | ||
f3485b74 | 2637 | static void |
d3ba0551 | 2638 | decode_ARM_machine_flags (unsigned e_flags, char buf[]) |
f3485b74 NC |
2639 | { |
2640 | unsigned eabi; | |
32ec8896 | 2641 | bfd_boolean unknown = FALSE; |
f3485b74 NC |
2642 | |
2643 | eabi = EF_ARM_EABI_VERSION (e_flags); | |
2644 | e_flags &= ~ EF_ARM_EABIMASK; | |
2645 | ||
2646 | /* Handle "generic" ARM flags. */ | |
2647 | if (e_flags & EF_ARM_RELEXEC) | |
2648 | { | |
2649 | strcat (buf, ", relocatable executable"); | |
2650 | e_flags &= ~ EF_ARM_RELEXEC; | |
2651 | } | |
76da6bbe | 2652 | |
18a20338 CL |
2653 | if (e_flags & EF_ARM_PIC) |
2654 | { | |
2655 | strcat (buf, ", position independent"); | |
2656 | e_flags &= ~ EF_ARM_PIC; | |
2657 | } | |
2658 | ||
f3485b74 NC |
2659 | /* Now handle EABI specific flags. */ |
2660 | switch (eabi) | |
2661 | { | |
2662 | default: | |
2c71103e | 2663 | strcat (buf, ", <unrecognized EABI>"); |
f3485b74 | 2664 | if (e_flags) |
32ec8896 | 2665 | unknown = TRUE; |
f3485b74 NC |
2666 | break; |
2667 | ||
2668 | case EF_ARM_EABI_VER1: | |
a5bcd848 | 2669 | strcat (buf, ", Version1 EABI"); |
f3485b74 NC |
2670 | while (e_flags) |
2671 | { | |
2672 | unsigned flag; | |
76da6bbe | 2673 | |
f3485b74 NC |
2674 | /* Process flags one bit at a time. */ |
2675 | flag = e_flags & - e_flags; | |
2676 | e_flags &= ~ flag; | |
76da6bbe | 2677 | |
f3485b74 NC |
2678 | switch (flag) |
2679 | { | |
a5bcd848 | 2680 | case EF_ARM_SYMSARESORTED: /* Conflicts with EF_ARM_INTERWORK. */ |
f3485b74 NC |
2681 | strcat (buf, ", sorted symbol tables"); |
2682 | break; | |
76da6bbe | 2683 | |
f3485b74 | 2684 | default: |
32ec8896 | 2685 | unknown = TRUE; |
f3485b74 NC |
2686 | break; |
2687 | } | |
2688 | } | |
2689 | break; | |
76da6bbe | 2690 | |
a5bcd848 PB |
2691 | case EF_ARM_EABI_VER2: |
2692 | strcat (buf, ", Version2 EABI"); | |
2693 | while (e_flags) | |
2694 | { | |
2695 | unsigned flag; | |
2696 | ||
2697 | /* Process flags one bit at a time. */ | |
2698 | flag = e_flags & - e_flags; | |
2699 | e_flags &= ~ flag; | |
2700 | ||
2701 | switch (flag) | |
2702 | { | |
2703 | case EF_ARM_SYMSARESORTED: /* Conflicts with EF_ARM_INTERWORK. */ | |
2704 | strcat (buf, ", sorted symbol tables"); | |
2705 | break; | |
2706 | ||
2707 | case EF_ARM_DYNSYMSUSESEGIDX: | |
2708 | strcat (buf, ", dynamic symbols use segment index"); | |
2709 | break; | |
2710 | ||
2711 | case EF_ARM_MAPSYMSFIRST: | |
2712 | strcat (buf, ", mapping symbols precede others"); | |
2713 | break; | |
2714 | ||
2715 | default: | |
32ec8896 | 2716 | unknown = TRUE; |
a5bcd848 PB |
2717 | break; |
2718 | } | |
2719 | } | |
2720 | break; | |
2721 | ||
d507cf36 PB |
2722 | case EF_ARM_EABI_VER3: |
2723 | strcat (buf, ", Version3 EABI"); | |
8cb51566 PB |
2724 | break; |
2725 | ||
2726 | case EF_ARM_EABI_VER4: | |
2727 | strcat (buf, ", Version4 EABI"); | |
3bfcb652 NC |
2728 | while (e_flags) |
2729 | { | |
2730 | unsigned flag; | |
2731 | ||
2732 | /* Process flags one bit at a time. */ | |
2733 | flag = e_flags & - e_flags; | |
2734 | e_flags &= ~ flag; | |
2735 | ||
2736 | switch (flag) | |
2737 | { | |
2738 | case EF_ARM_BE8: | |
2739 | strcat (buf, ", BE8"); | |
2740 | break; | |
2741 | ||
2742 | case EF_ARM_LE8: | |
2743 | strcat (buf, ", LE8"); | |
2744 | break; | |
2745 | ||
2746 | default: | |
32ec8896 | 2747 | unknown = TRUE; |
3bfcb652 NC |
2748 | break; |
2749 | } | |
3bfcb652 NC |
2750 | } |
2751 | break; | |
3a4a14e9 PB |
2752 | |
2753 | case EF_ARM_EABI_VER5: | |
2754 | strcat (buf, ", Version5 EABI"); | |
d507cf36 PB |
2755 | while (e_flags) |
2756 | { | |
2757 | unsigned flag; | |
2758 | ||
2759 | /* Process flags one bit at a time. */ | |
2760 | flag = e_flags & - e_flags; | |
2761 | e_flags &= ~ flag; | |
2762 | ||
2763 | switch (flag) | |
2764 | { | |
2765 | case EF_ARM_BE8: | |
2766 | strcat (buf, ", BE8"); | |
2767 | break; | |
2768 | ||
2769 | case EF_ARM_LE8: | |
2770 | strcat (buf, ", LE8"); | |
2771 | break; | |
2772 | ||
3bfcb652 NC |
2773 | case EF_ARM_ABI_FLOAT_SOFT: /* Conflicts with EF_ARM_SOFT_FLOAT. */ |
2774 | strcat (buf, ", soft-float ABI"); | |
2775 | break; | |
2776 | ||
2777 | case EF_ARM_ABI_FLOAT_HARD: /* Conflicts with EF_ARM_VFP_FLOAT. */ | |
2778 | strcat (buf, ", hard-float ABI"); | |
2779 | break; | |
2780 | ||
d507cf36 | 2781 | default: |
32ec8896 | 2782 | unknown = TRUE; |
d507cf36 PB |
2783 | break; |
2784 | } | |
2785 | } | |
2786 | break; | |
2787 | ||
f3485b74 | 2788 | case EF_ARM_EABI_UNKNOWN: |
a5bcd848 | 2789 | strcat (buf, ", GNU EABI"); |
f3485b74 NC |
2790 | while (e_flags) |
2791 | { | |
2792 | unsigned flag; | |
76da6bbe | 2793 | |
f3485b74 NC |
2794 | /* Process flags one bit at a time. */ |
2795 | flag = e_flags & - e_flags; | |
2796 | e_flags &= ~ flag; | |
76da6bbe | 2797 | |
f3485b74 NC |
2798 | switch (flag) |
2799 | { | |
a5bcd848 | 2800 | case EF_ARM_INTERWORK: |
f3485b74 NC |
2801 | strcat (buf, ", interworking enabled"); |
2802 | break; | |
76da6bbe | 2803 | |
a5bcd848 | 2804 | case EF_ARM_APCS_26: |
f3485b74 NC |
2805 | strcat (buf, ", uses APCS/26"); |
2806 | break; | |
76da6bbe | 2807 | |
a5bcd848 | 2808 | case EF_ARM_APCS_FLOAT: |
f3485b74 NC |
2809 | strcat (buf, ", uses APCS/float"); |
2810 | break; | |
76da6bbe | 2811 | |
a5bcd848 | 2812 | case EF_ARM_PIC: |
f3485b74 NC |
2813 | strcat (buf, ", position independent"); |
2814 | break; | |
76da6bbe | 2815 | |
a5bcd848 | 2816 | case EF_ARM_ALIGN8: |
f3485b74 NC |
2817 | strcat (buf, ", 8 bit structure alignment"); |
2818 | break; | |
76da6bbe | 2819 | |
a5bcd848 | 2820 | case EF_ARM_NEW_ABI: |
f3485b74 NC |
2821 | strcat (buf, ", uses new ABI"); |
2822 | break; | |
76da6bbe | 2823 | |
a5bcd848 | 2824 | case EF_ARM_OLD_ABI: |
f3485b74 NC |
2825 | strcat (buf, ", uses old ABI"); |
2826 | break; | |
76da6bbe | 2827 | |
a5bcd848 | 2828 | case EF_ARM_SOFT_FLOAT: |
f3485b74 NC |
2829 | strcat (buf, ", software FP"); |
2830 | break; | |
76da6bbe | 2831 | |
90e01f86 ILT |
2832 | case EF_ARM_VFP_FLOAT: |
2833 | strcat (buf, ", VFP"); | |
2834 | break; | |
2835 | ||
fde78edd NC |
2836 | case EF_ARM_MAVERICK_FLOAT: |
2837 | strcat (buf, ", Maverick FP"); | |
2838 | break; | |
2839 | ||
f3485b74 | 2840 | default: |
32ec8896 | 2841 | unknown = TRUE; |
f3485b74 NC |
2842 | break; |
2843 | } | |
2844 | } | |
2845 | } | |
f3485b74 NC |
2846 | |
2847 | if (unknown) | |
2b692964 | 2848 | strcat (buf,_(", <unknown>")); |
f3485b74 NC |
2849 | } |
2850 | ||
343433df AB |
2851 | static void |
2852 | decode_AVR_machine_flags (unsigned e_flags, char buf[], size_t size) | |
2853 | { | |
2854 | --size; /* Leave space for null terminator. */ | |
2855 | ||
2856 | switch (e_flags & EF_AVR_MACH) | |
2857 | { | |
2858 | case E_AVR_MACH_AVR1: | |
2859 | strncat (buf, ", avr:1", size); | |
2860 | break; | |
2861 | case E_AVR_MACH_AVR2: | |
2862 | strncat (buf, ", avr:2", size); | |
2863 | break; | |
2864 | case E_AVR_MACH_AVR25: | |
2865 | strncat (buf, ", avr:25", size); | |
2866 | break; | |
2867 | case E_AVR_MACH_AVR3: | |
2868 | strncat (buf, ", avr:3", size); | |
2869 | break; | |
2870 | case E_AVR_MACH_AVR31: | |
2871 | strncat (buf, ", avr:31", size); | |
2872 | break; | |
2873 | case E_AVR_MACH_AVR35: | |
2874 | strncat (buf, ", avr:35", size); | |
2875 | break; | |
2876 | case E_AVR_MACH_AVR4: | |
2877 | strncat (buf, ", avr:4", size); | |
2878 | break; | |
2879 | case E_AVR_MACH_AVR5: | |
2880 | strncat (buf, ", avr:5", size); | |
2881 | break; | |
2882 | case E_AVR_MACH_AVR51: | |
2883 | strncat (buf, ", avr:51", size); | |
2884 | break; | |
2885 | case E_AVR_MACH_AVR6: | |
2886 | strncat (buf, ", avr:6", size); | |
2887 | break; | |
2888 | case E_AVR_MACH_AVRTINY: | |
2889 | strncat (buf, ", avr:100", size); | |
2890 | break; | |
2891 | case E_AVR_MACH_XMEGA1: | |
2892 | strncat (buf, ", avr:101", size); | |
2893 | break; | |
2894 | case E_AVR_MACH_XMEGA2: | |
2895 | strncat (buf, ", avr:102", size); | |
2896 | break; | |
2897 | case E_AVR_MACH_XMEGA3: | |
2898 | strncat (buf, ", avr:103", size); | |
2899 | break; | |
2900 | case E_AVR_MACH_XMEGA4: | |
2901 | strncat (buf, ", avr:104", size); | |
2902 | break; | |
2903 | case E_AVR_MACH_XMEGA5: | |
2904 | strncat (buf, ", avr:105", size); | |
2905 | break; | |
2906 | case E_AVR_MACH_XMEGA6: | |
2907 | strncat (buf, ", avr:106", size); | |
2908 | break; | |
2909 | case E_AVR_MACH_XMEGA7: | |
2910 | strncat (buf, ", avr:107", size); | |
2911 | break; | |
2912 | default: | |
2913 | strncat (buf, ", avr:<unknown>", size); | |
2914 | break; | |
2915 | } | |
2916 | ||
2917 | size -= strlen (buf); | |
2918 | if (e_flags & EF_AVR_LINKRELAX_PREPARED) | |
2919 | strncat (buf, ", link-relax", size); | |
2920 | } | |
2921 | ||
35c08157 KLC |
2922 | static void |
2923 | decode_NDS32_machine_flags (unsigned e_flags, char buf[], size_t size) | |
2924 | { | |
2925 | unsigned abi; | |
2926 | unsigned arch; | |
2927 | unsigned config; | |
2928 | unsigned version; | |
32ec8896 NC |
2929 | bfd_boolean has_fpu = FALSE; |
2930 | unsigned int r = 0; | |
35c08157 KLC |
2931 | |
2932 | static const char *ABI_STRINGS[] = | |
2933 | { | |
2934 | "ABI v0", /* use r5 as return register; only used in N1213HC */ | |
2935 | "ABI v1", /* use r0 as return register */ | |
2936 | "ABI v2", /* use r0 as return register and don't reserve 24 bytes for arguments */ | |
2937 | "ABI v2fp", /* for FPU */ | |
40c7a7cb KLC |
2938 | "AABI", |
2939 | "ABI2 FP+" | |
35c08157 KLC |
2940 | }; |
2941 | static const char *VER_STRINGS[] = | |
2942 | { | |
2943 | "Andes ELF V1.3 or older", | |
2944 | "Andes ELF V1.3.1", | |
2945 | "Andes ELF V1.4" | |
2946 | }; | |
2947 | static const char *ARCH_STRINGS[] = | |
2948 | { | |
2949 | "", | |
2950 | "Andes Star v1.0", | |
2951 | "Andes Star v2.0", | |
2952 | "Andes Star v3.0", | |
2953 | "Andes Star v3.0m" | |
2954 | }; | |
2955 | ||
2956 | abi = EF_NDS_ABI & e_flags; | |
2957 | arch = EF_NDS_ARCH & e_flags; | |
2958 | config = EF_NDS_INST & e_flags; | |
2959 | version = EF_NDS32_ELF_VERSION & e_flags; | |
2960 | ||
2961 | memset (buf, 0, size); | |
2962 | ||
2963 | switch (abi) | |
2964 | { | |
2965 | case E_NDS_ABI_V0: | |
2966 | case E_NDS_ABI_V1: | |
2967 | case E_NDS_ABI_V2: | |
2968 | case E_NDS_ABI_V2FP: | |
2969 | case E_NDS_ABI_AABI: | |
40c7a7cb | 2970 | case E_NDS_ABI_V2FP_PLUS: |
35c08157 KLC |
2971 | /* In case there are holes in the array. */ |
2972 | r += snprintf (buf + r, size - r, ", %s", ABI_STRINGS[abi >> EF_NDS_ABI_SHIFT]); | |
2973 | break; | |
2974 | ||
2975 | default: | |
2976 | r += snprintf (buf + r, size - r, ", <unrecognized ABI>"); | |
2977 | break; | |
2978 | } | |
2979 | ||
2980 | switch (version) | |
2981 | { | |
2982 | case E_NDS32_ELF_VER_1_2: | |
2983 | case E_NDS32_ELF_VER_1_3: | |
2984 | case E_NDS32_ELF_VER_1_4: | |
2985 | r += snprintf (buf + r, size - r, ", %s", VER_STRINGS[version >> EF_NDS32_ELF_VERSION_SHIFT]); | |
2986 | break; | |
2987 | ||
2988 | default: | |
2989 | r += snprintf (buf + r, size - r, ", <unrecognized ELF version number>"); | |
2990 | break; | |
2991 | } | |
2992 | ||
2993 | if (E_NDS_ABI_V0 == abi) | |
2994 | { | |
2995 | /* OLD ABI; only used in N1213HC, has performance extension 1. */ | |
2996 | r += snprintf (buf + r, size - r, ", Andes Star v1.0, N1213HC, MAC, PERF1"); | |
2997 | if (arch == E_NDS_ARCH_STAR_V1_0) | |
2998 | r += snprintf (buf + r, size -r, ", 16b"); /* has 16-bit instructions */ | |
2999 | return; | |
3000 | } | |
3001 | ||
3002 | switch (arch) | |
3003 | { | |
3004 | case E_NDS_ARCH_STAR_V1_0: | |
3005 | case E_NDS_ARCH_STAR_V2_0: | |
3006 | case E_NDS_ARCH_STAR_V3_0: | |
3007 | case E_NDS_ARCH_STAR_V3_M: | |
3008 | r += snprintf (buf + r, size - r, ", %s", ARCH_STRINGS[arch >> EF_NDS_ARCH_SHIFT]); | |
3009 | break; | |
3010 | ||
3011 | default: | |
3012 | r += snprintf (buf + r, size - r, ", <unrecognized architecture>"); | |
3013 | /* ARCH version determines how the e_flags are interpreted. | |
3014 | If it is unknown, we cannot proceed. */ | |
3015 | return; | |
3016 | } | |
3017 | ||
3018 | /* Newer ABI; Now handle architecture specific flags. */ | |
3019 | if (arch == E_NDS_ARCH_STAR_V1_0) | |
3020 | { | |
3021 | if (config & E_NDS32_HAS_MFUSR_PC_INST) | |
3022 | r += snprintf (buf + r, size -r, ", MFUSR_PC"); | |
3023 | ||
3024 | if (!(config & E_NDS32_HAS_NO_MAC_INST)) | |
3025 | r += snprintf (buf + r, size -r, ", MAC"); | |
3026 | ||
3027 | if (config & E_NDS32_HAS_DIV_INST) | |
3028 | r += snprintf (buf + r, size -r, ", DIV"); | |
3029 | ||
3030 | if (config & E_NDS32_HAS_16BIT_INST) | |
3031 | r += snprintf (buf + r, size -r, ", 16b"); | |
3032 | } | |
3033 | else | |
3034 | { | |
3035 | if (config & E_NDS32_HAS_MFUSR_PC_INST) | |
3036 | { | |
3037 | if (version <= E_NDS32_ELF_VER_1_3) | |
3038 | r += snprintf (buf + r, size -r, ", [B8]"); | |
3039 | else | |
3040 | r += snprintf (buf + r, size -r, ", EX9"); | |
3041 | } | |
3042 | ||
3043 | if (config & E_NDS32_HAS_MAC_DX_INST) | |
3044 | r += snprintf (buf + r, size -r, ", MAC_DX"); | |
3045 | ||
3046 | if (config & E_NDS32_HAS_DIV_DX_INST) | |
3047 | r += snprintf (buf + r, size -r, ", DIV_DX"); | |
3048 | ||
3049 | if (config & E_NDS32_HAS_16BIT_INST) | |
3050 | { | |
3051 | if (version <= E_NDS32_ELF_VER_1_3) | |
3052 | r += snprintf (buf + r, size -r, ", 16b"); | |
3053 | else | |
3054 | r += snprintf (buf + r, size -r, ", IFC"); | |
3055 | } | |
3056 | } | |
3057 | ||
3058 | if (config & E_NDS32_HAS_EXT_INST) | |
3059 | r += snprintf (buf + r, size -r, ", PERF1"); | |
3060 | ||
3061 | if (config & E_NDS32_HAS_EXT2_INST) | |
3062 | r += snprintf (buf + r, size -r, ", PERF2"); | |
3063 | ||
3064 | if (config & E_NDS32_HAS_FPU_INST) | |
3065 | { | |
32ec8896 | 3066 | has_fpu = TRUE; |
35c08157 KLC |
3067 | r += snprintf (buf + r, size -r, ", FPU_SP"); |
3068 | } | |
3069 | ||
3070 | if (config & E_NDS32_HAS_FPU_DP_INST) | |
3071 | { | |
32ec8896 | 3072 | has_fpu = TRUE; |
35c08157 KLC |
3073 | r += snprintf (buf + r, size -r, ", FPU_DP"); |
3074 | } | |
3075 | ||
3076 | if (config & E_NDS32_HAS_FPU_MAC_INST) | |
3077 | { | |
32ec8896 | 3078 | has_fpu = TRUE; |
35c08157 KLC |
3079 | r += snprintf (buf + r, size -r, ", FPU_MAC"); |
3080 | } | |
3081 | ||
3082 | if (has_fpu) | |
3083 | { | |
3084 | switch ((config & E_NDS32_FPU_REG_CONF) >> E_NDS32_FPU_REG_CONF_SHIFT) | |
3085 | { | |
3086 | case E_NDS32_FPU_REG_8SP_4DP: | |
3087 | r += snprintf (buf + r, size -r, ", FPU_REG:8/4"); | |
3088 | break; | |
3089 | case E_NDS32_FPU_REG_16SP_8DP: | |
3090 | r += snprintf (buf + r, size -r, ", FPU_REG:16/8"); | |
3091 | break; | |
3092 | case E_NDS32_FPU_REG_32SP_16DP: | |
3093 | r += snprintf (buf + r, size -r, ", FPU_REG:32/16"); | |
3094 | break; | |
3095 | case E_NDS32_FPU_REG_32SP_32DP: | |
3096 | r += snprintf (buf + r, size -r, ", FPU_REG:32/32"); | |
3097 | break; | |
3098 | } | |
3099 | } | |
3100 | ||
3101 | if (config & E_NDS32_HAS_AUDIO_INST) | |
3102 | r += snprintf (buf + r, size -r, ", AUDIO"); | |
3103 | ||
3104 | if (config & E_NDS32_HAS_STRING_INST) | |
3105 | r += snprintf (buf + r, size -r, ", STR"); | |
3106 | ||
3107 | if (config & E_NDS32_HAS_REDUCED_REGS) | |
3108 | r += snprintf (buf + r, size -r, ", 16REG"); | |
3109 | ||
3110 | if (config & E_NDS32_HAS_VIDEO_INST) | |
3111 | { | |
3112 | if (version <= E_NDS32_ELF_VER_1_3) | |
3113 | r += snprintf (buf + r, size -r, ", VIDEO"); | |
3114 | else | |
3115 | r += snprintf (buf + r, size -r, ", SATURATION"); | |
3116 | } | |
3117 | ||
3118 | if (config & E_NDS32_HAS_ENCRIPT_INST) | |
3119 | r += snprintf (buf + r, size -r, ", ENCRP"); | |
3120 | ||
3121 | if (config & E_NDS32_HAS_L2C_INST) | |
3122 | r += snprintf (buf + r, size -r, ", L2C"); | |
3123 | } | |
3124 | ||
252b5132 | 3125 | static char * |
dda8d76d | 3126 | get_machine_flags (Filedata * filedata, unsigned e_flags, unsigned e_machine) |
252b5132 | 3127 | { |
b34976b6 | 3128 | static char buf[1024]; |
252b5132 RH |
3129 | |
3130 | buf[0] = '\0'; | |
76da6bbe | 3131 | |
252b5132 RH |
3132 | if (e_flags) |
3133 | { | |
3134 | switch (e_machine) | |
3135 | { | |
3136 | default: | |
3137 | break; | |
3138 | ||
886a2506 | 3139 | case EM_ARC_COMPACT2: |
886a2506 | 3140 | case EM_ARC_COMPACT: |
a9522a21 AB |
3141 | decode_ARC_machine_flags (e_flags, e_machine, buf); |
3142 | break; | |
886a2506 | 3143 | |
f3485b74 NC |
3144 | case EM_ARM: |
3145 | decode_ARM_machine_flags (e_flags, buf); | |
3146 | break; | |
76da6bbe | 3147 | |
343433df AB |
3148 | case EM_AVR: |
3149 | decode_AVR_machine_flags (e_flags, buf, sizeof buf); | |
3150 | break; | |
3151 | ||
781303ce MF |
3152 | case EM_BLACKFIN: |
3153 | if (e_flags & EF_BFIN_PIC) | |
3154 | strcat (buf, ", PIC"); | |
3155 | ||
3156 | if (e_flags & EF_BFIN_FDPIC) | |
3157 | strcat (buf, ", FDPIC"); | |
3158 | ||
3159 | if (e_flags & EF_BFIN_CODE_IN_L1) | |
3160 | strcat (buf, ", code in L1"); | |
3161 | ||
3162 | if (e_flags & EF_BFIN_DATA_IN_L1) | |
3163 | strcat (buf, ", data in L1"); | |
3164 | ||
3165 | break; | |
3166 | ||
ec2dfb42 AO |
3167 | case EM_CYGNUS_FRV: |
3168 | switch (e_flags & EF_FRV_CPU_MASK) | |
3169 | { | |
3170 | case EF_FRV_CPU_GENERIC: | |
3171 | break; | |
3172 | ||
3173 | default: | |
3174 | strcat (buf, ", fr???"); | |
3175 | break; | |
57346661 | 3176 | |
ec2dfb42 AO |
3177 | case EF_FRV_CPU_FR300: |
3178 | strcat (buf, ", fr300"); | |
3179 | break; | |
3180 | ||
3181 | case EF_FRV_CPU_FR400: | |
3182 | strcat (buf, ", fr400"); | |
3183 | break; | |
3184 | case EF_FRV_CPU_FR405: | |
3185 | strcat (buf, ", fr405"); | |
3186 | break; | |
3187 | ||
3188 | case EF_FRV_CPU_FR450: | |
3189 | strcat (buf, ", fr450"); | |
3190 | break; | |
3191 | ||
3192 | case EF_FRV_CPU_FR500: | |
3193 | strcat (buf, ", fr500"); | |
3194 | break; | |
3195 | case EF_FRV_CPU_FR550: | |
3196 | strcat (buf, ", fr550"); | |
3197 | break; | |
3198 | ||
3199 | case EF_FRV_CPU_SIMPLE: | |
3200 | strcat (buf, ", simple"); | |
3201 | break; | |
3202 | case EF_FRV_CPU_TOMCAT: | |
3203 | strcat (buf, ", tomcat"); | |
3204 | break; | |
3205 | } | |
1c877e87 | 3206 | break; |
ec2dfb42 | 3207 | |
53c7db4b | 3208 | case EM_68K: |
425c6cb0 | 3209 | if ((e_flags & EF_M68K_ARCH_MASK) == EF_M68K_M68000) |
76f57f3a | 3210 | strcat (buf, ", m68000"); |
425c6cb0 | 3211 | else if ((e_flags & EF_M68K_ARCH_MASK) == EF_M68K_CPU32) |
3bdcfdf4 KH |
3212 | strcat (buf, ", cpu32"); |
3213 | else if ((e_flags & EF_M68K_ARCH_MASK) == EF_M68K_FIDO) | |
3214 | strcat (buf, ", fido_a"); | |
425c6cb0 | 3215 | else |
266abb8f | 3216 | { |
2cf0635d NC |
3217 | char const * isa = _("unknown"); |
3218 | char const * mac = _("unknown mac"); | |
3219 | char const * additional = NULL; | |
0112cd26 | 3220 | |
c694fd50 | 3221 | switch (e_flags & EF_M68K_CF_ISA_MASK) |
266abb8f | 3222 | { |
c694fd50 | 3223 | case EF_M68K_CF_ISA_A_NODIV: |
0b2e31dc NS |
3224 | isa = "A"; |
3225 | additional = ", nodiv"; | |
3226 | break; | |
c694fd50 | 3227 | case EF_M68K_CF_ISA_A: |
266abb8f NS |
3228 | isa = "A"; |
3229 | break; | |
c694fd50 | 3230 | case EF_M68K_CF_ISA_A_PLUS: |
266abb8f NS |
3231 | isa = "A+"; |
3232 | break; | |
c694fd50 | 3233 | case EF_M68K_CF_ISA_B_NOUSP: |
0b2e31dc NS |
3234 | isa = "B"; |
3235 | additional = ", nousp"; | |
3236 | break; | |
c694fd50 | 3237 | case EF_M68K_CF_ISA_B: |
266abb8f NS |
3238 | isa = "B"; |
3239 | break; | |
f608cd77 NS |
3240 | case EF_M68K_CF_ISA_C: |
3241 | isa = "C"; | |
3242 | break; | |
3243 | case EF_M68K_CF_ISA_C_NODIV: | |
3244 | isa = "C"; | |
3245 | additional = ", nodiv"; | |
3246 | break; | |
266abb8f NS |
3247 | } |
3248 | strcat (buf, ", cf, isa "); | |
3249 | strcat (buf, isa); | |
0b2e31dc NS |
3250 | if (additional) |
3251 | strcat (buf, additional); | |
c694fd50 | 3252 | if (e_flags & EF_M68K_CF_FLOAT) |
0b2e31dc | 3253 | strcat (buf, ", float"); |
c694fd50 | 3254 | switch (e_flags & EF_M68K_CF_MAC_MASK) |
266abb8f NS |
3255 | { |
3256 | case 0: | |
3257 | mac = NULL; | |
3258 | break; | |
c694fd50 | 3259 | case EF_M68K_CF_MAC: |
266abb8f NS |
3260 | mac = "mac"; |
3261 | break; | |
c694fd50 | 3262 | case EF_M68K_CF_EMAC: |
266abb8f NS |
3263 | mac = "emac"; |
3264 | break; | |
f608cd77 NS |
3265 | case EF_M68K_CF_EMAC_B: |
3266 | mac = "emac_b"; | |
3267 | break; | |
266abb8f NS |
3268 | } |
3269 | if (mac) | |
3270 | { | |
3271 | strcat (buf, ", "); | |
3272 | strcat (buf, mac); | |
3273 | } | |
266abb8f | 3274 | } |
53c7db4b | 3275 | break; |
33c63f9d | 3276 | |
153a2776 NC |
3277 | case EM_CYGNUS_MEP: |
3278 | switch (e_flags & EF_MEP_CPU_MASK) | |
3279 | { | |
3280 | case EF_MEP_CPU_MEP: strcat (buf, ", generic MeP"); break; | |
3281 | case EF_MEP_CPU_C2: strcat (buf, ", MeP C2"); break; | |
3282 | case EF_MEP_CPU_C3: strcat (buf, ", MeP C3"); break; | |
3283 | case EF_MEP_CPU_C4: strcat (buf, ", MeP C4"); break; | |
3284 | case EF_MEP_CPU_C5: strcat (buf, ", MeP C5"); break; | |
3285 | case EF_MEP_CPU_H1: strcat (buf, ", MeP H1"); break; | |
3286 | default: strcat (buf, _(", <unknown MeP cpu type>")); break; | |
3287 | } | |
3288 | ||
3289 | switch (e_flags & EF_MEP_COP_MASK) | |
3290 | { | |
3291 | case EF_MEP_COP_NONE: break; | |
3292 | case EF_MEP_COP_AVC: strcat (buf, ", AVC coprocessor"); break; | |
3293 | case EF_MEP_COP_AVC2: strcat (buf, ", AVC2 coprocessor"); break; | |
3294 | case EF_MEP_COP_FMAX: strcat (buf, ", FMAX coprocessor"); break; | |
3295 | case EF_MEP_COP_IVC2: strcat (buf, ", IVC2 coprocessor"); break; | |
3296 | default: strcat (buf, _("<unknown MeP copro type>")); break; | |
3297 | } | |
3298 | ||
3299 | if (e_flags & EF_MEP_LIBRARY) | |
3300 | strcat (buf, ", Built for Library"); | |
3301 | ||
3302 | if (e_flags & EF_MEP_INDEX_MASK) | |
3303 | sprintf (buf + strlen (buf), ", Configuration Index: %#x", | |
3304 | e_flags & EF_MEP_INDEX_MASK); | |
3305 | ||
3306 | if (e_flags & ~ EF_MEP_ALL_FLAGS) | |
3307 | sprintf (buf + strlen (buf), _(", unknown flags bits: %#x"), | |
3308 | e_flags & ~ EF_MEP_ALL_FLAGS); | |
3309 | break; | |
3310 | ||
252b5132 RH |
3311 | case EM_PPC: |
3312 | if (e_flags & EF_PPC_EMB) | |
3313 | strcat (buf, ", emb"); | |
3314 | ||
3315 | if (e_flags & EF_PPC_RELOCATABLE) | |
2b692964 | 3316 | strcat (buf, _(", relocatable")); |
252b5132 RH |
3317 | |
3318 | if (e_flags & EF_PPC_RELOCATABLE_LIB) | |
2b692964 | 3319 | strcat (buf, _(", relocatable-lib")); |
252b5132 RH |
3320 | break; |
3321 | ||
ee67d69a AM |
3322 | case EM_PPC64: |
3323 | if (e_flags & EF_PPC64_ABI) | |
3324 | { | |
3325 | char abi[] = ", abiv0"; | |
3326 | ||
3327 | abi[6] += e_flags & EF_PPC64_ABI; | |
3328 | strcat (buf, abi); | |
3329 | } | |
3330 | break; | |
3331 | ||
708e2187 NC |
3332 | case EM_V800: |
3333 | if ((e_flags & EF_RH850_ABI) == EF_RH850_ABI) | |
3334 | strcat (buf, ", RH850 ABI"); | |
0b4362b0 | 3335 | |
708e2187 NC |
3336 | if (e_flags & EF_V800_850E3) |
3337 | strcat (buf, ", V3 architecture"); | |
3338 | ||
3339 | if ((e_flags & (EF_RH850_FPU_DOUBLE | EF_RH850_FPU_SINGLE)) == 0) | |
3340 | strcat (buf, ", FPU not used"); | |
3341 | ||
3342 | if ((e_flags & (EF_RH850_REGMODE22 | EF_RH850_REGMODE32)) == 0) | |
3343 | strcat (buf, ", regmode: COMMON"); | |
3344 | ||
3345 | if ((e_flags & (EF_RH850_GP_FIX | EF_RH850_GP_NOFIX)) == 0) | |
3346 | strcat (buf, ", r4 not used"); | |
3347 | ||
3348 | if ((e_flags & (EF_RH850_EP_FIX | EF_RH850_EP_NOFIX)) == 0) | |
3349 | strcat (buf, ", r30 not used"); | |
3350 | ||
3351 | if ((e_flags & (EF_RH850_TP_FIX | EF_RH850_TP_NOFIX)) == 0) | |
3352 | strcat (buf, ", r5 not used"); | |
3353 | ||
3354 | if ((e_flags & (EF_RH850_REG2_RESERVE | EF_RH850_REG2_NORESERVE)) == 0) | |
3355 | strcat (buf, ", r2 not used"); | |
3356 | ||
3357 | for (e_flags &= 0xFFFF; e_flags; e_flags &= ~ (e_flags & - e_flags)) | |
3358 | { | |
3359 | switch (e_flags & - e_flags) | |
3360 | { | |
3361 | case EF_RH850_FPU_DOUBLE: strcat (buf, ", double precision FPU"); break; | |
3362 | case EF_RH850_FPU_SINGLE: strcat (buf, ", single precision FPU"); break; | |
708e2187 NC |
3363 | case EF_RH850_REGMODE22: strcat (buf, ", regmode:22"); break; |
3364 | case EF_RH850_REGMODE32: strcat (buf, ", regmode:23"); break; | |
708e2187 NC |
3365 | case EF_RH850_GP_FIX: strcat (buf, ", r4 fixed"); break; |
3366 | case EF_RH850_GP_NOFIX: strcat (buf, ", r4 free"); break; | |
3367 | case EF_RH850_EP_FIX: strcat (buf, ", r30 fixed"); break; | |
3368 | case EF_RH850_EP_NOFIX: strcat (buf, ", r30 free"); break; | |
3369 | case EF_RH850_TP_FIX: strcat (buf, ", r5 fixed"); break; | |
3370 | case EF_RH850_TP_NOFIX: strcat (buf, ", r5 free"); break; | |
3371 | case EF_RH850_REG2_RESERVE: strcat (buf, ", r2 fixed"); break; | |
3372 | case EF_RH850_REG2_NORESERVE: strcat (buf, ", r2 free"); break; | |
3373 | default: break; | |
3374 | } | |
3375 | } | |
3376 | break; | |
3377 | ||
2b0337b0 | 3378 | case EM_V850: |
252b5132 RH |
3379 | case EM_CYGNUS_V850: |
3380 | switch (e_flags & EF_V850_ARCH) | |
3381 | { | |
78c8d46c NC |
3382 | case E_V850E3V5_ARCH: |
3383 | strcat (buf, ", v850e3v5"); | |
3384 | break; | |
1cd986c5 NC |
3385 | case E_V850E2V3_ARCH: |
3386 | strcat (buf, ", v850e2v3"); | |
3387 | break; | |
3388 | case E_V850E2_ARCH: | |
3389 | strcat (buf, ", v850e2"); | |
3390 | break; | |
3391 | case E_V850E1_ARCH: | |
3392 | strcat (buf, ", v850e1"); | |
8ad30312 | 3393 | break; |
252b5132 RH |
3394 | case E_V850E_ARCH: |
3395 | strcat (buf, ", v850e"); | |
3396 | break; | |
252b5132 RH |
3397 | case E_V850_ARCH: |
3398 | strcat (buf, ", v850"); | |
3399 | break; | |
3400 | default: | |
2b692964 | 3401 | strcat (buf, _(", unknown v850 architecture variant")); |
252b5132 RH |
3402 | break; |
3403 | } | |
3404 | break; | |
3405 | ||
2b0337b0 | 3406 | case EM_M32R: |
252b5132 RH |
3407 | case EM_CYGNUS_M32R: |
3408 | if ((e_flags & EF_M32R_ARCH) == E_M32R_ARCH) | |
3409 | strcat (buf, ", m32r"); | |
252b5132 RH |
3410 | break; |
3411 | ||
3412 | case EM_MIPS: | |
4fe85591 | 3413 | case EM_MIPS_RS3_LE: |
252b5132 RH |
3414 | if (e_flags & EF_MIPS_NOREORDER) |
3415 | strcat (buf, ", noreorder"); | |
3416 | ||
3417 | if (e_flags & EF_MIPS_PIC) | |
3418 | strcat (buf, ", pic"); | |
3419 | ||
3420 | if (e_flags & EF_MIPS_CPIC) | |
3421 | strcat (buf, ", cpic"); | |
3422 | ||
d1bdd336 TS |
3423 | if (e_flags & EF_MIPS_UCODE) |
3424 | strcat (buf, ", ugen_reserved"); | |
3425 | ||
252b5132 RH |
3426 | if (e_flags & EF_MIPS_ABI2) |
3427 | strcat (buf, ", abi2"); | |
3428 | ||
43521d43 TS |
3429 | if (e_flags & EF_MIPS_OPTIONS_FIRST) |
3430 | strcat (buf, ", odk first"); | |
3431 | ||
a5d22d2a TS |
3432 | if (e_flags & EF_MIPS_32BITMODE) |
3433 | strcat (buf, ", 32bitmode"); | |
3434 | ||
ba92f887 MR |
3435 | if (e_flags & EF_MIPS_NAN2008) |
3436 | strcat (buf, ", nan2008"); | |
3437 | ||
fef1b0b3 SE |
3438 | if (e_flags & EF_MIPS_FP64) |
3439 | strcat (buf, ", fp64"); | |
3440 | ||
156c2f8b NC |
3441 | switch ((e_flags & EF_MIPS_MACH)) |
3442 | { | |
3443 | case E_MIPS_MACH_3900: strcat (buf, ", 3900"); break; | |
3444 | case E_MIPS_MACH_4010: strcat (buf, ", 4010"); break; | |
3445 | case E_MIPS_MACH_4100: strcat (buf, ", 4100"); break; | |
156c2f8b | 3446 | case E_MIPS_MACH_4111: strcat (buf, ", 4111"); break; |
810dfa6e L |
3447 | case E_MIPS_MACH_4120: strcat (buf, ", 4120"); break; |
3448 | case E_MIPS_MACH_4650: strcat (buf, ", 4650"); break; | |
3449 | case E_MIPS_MACH_5400: strcat (buf, ", 5400"); break; | |
3450 | case E_MIPS_MACH_5500: strcat (buf, ", 5500"); break; | |
ef272caa | 3451 | case E_MIPS_MACH_5900: strcat (buf, ", 5900"); break; |
c6c98b38 | 3452 | case E_MIPS_MACH_SB1: strcat (buf, ", sb1"); break; |
ebcb91b7 | 3453 | case E_MIPS_MACH_9000: strcat (buf, ", 9000"); break; |
350cc38d MS |
3454 | case E_MIPS_MACH_LS2E: strcat (buf, ", loongson-2e"); break; |
3455 | case E_MIPS_MACH_LS2F: strcat (buf, ", loongson-2f"); break; | |
ac8cb70f | 3456 | case E_MIPS_MACH_GS464: strcat (buf, ", gs464"); break; |
bd782c07 | 3457 | case E_MIPS_MACH_GS464E: strcat (buf, ", gs464e"); break; |
9108bc33 | 3458 | case E_MIPS_MACH_GS264E: strcat (buf, ", gs264e"); break; |
05c6f050 | 3459 | case E_MIPS_MACH_OCTEON: strcat (buf, ", octeon"); break; |
67c2a3e8 | 3460 | case E_MIPS_MACH_OCTEON2: strcat (buf, ", octeon2"); break; |
d32e5c54 | 3461 | case E_MIPS_MACH_OCTEON3: strcat (buf, ", octeon3"); break; |
52b6b6b9 | 3462 | case E_MIPS_MACH_XLR: strcat (buf, ", xlr"); break; |
38bf472a | 3463 | case E_MIPS_MACH_IAMR2: strcat (buf, ", interaptiv-mr2"); break; |
43521d43 TS |
3464 | case 0: |
3465 | /* We simply ignore the field in this case to avoid confusion: | |
3466 | MIPS ELF does not specify EF_MIPS_MACH, it is a GNU | |
3467 | extension. */ | |
3468 | break; | |
2b692964 | 3469 | default: strcat (buf, _(", unknown CPU")); break; |
156c2f8b | 3470 | } |
43521d43 TS |
3471 | |
3472 | switch ((e_flags & EF_MIPS_ABI)) | |
3473 | { | |
3474 | case E_MIPS_ABI_O32: strcat (buf, ", o32"); break; | |
3475 | case E_MIPS_ABI_O64: strcat (buf, ", o64"); break; | |
3476 | case E_MIPS_ABI_EABI32: strcat (buf, ", eabi32"); break; | |
3477 | case E_MIPS_ABI_EABI64: strcat (buf, ", eabi64"); break; | |
3478 | case 0: | |
3479 | /* We simply ignore the field in this case to avoid confusion: | |
3480 | MIPS ELF does not specify EF_MIPS_ABI, it is a GNU extension. | |
3481 | This means it is likely to be an o32 file, but not for | |
3482 | sure. */ | |
3483 | break; | |
2b692964 | 3484 | default: strcat (buf, _(", unknown ABI")); break; |
43521d43 TS |
3485 | } |
3486 | ||
3487 | if (e_flags & EF_MIPS_ARCH_ASE_MDMX) | |
3488 | strcat (buf, ", mdmx"); | |
3489 | ||
3490 | if (e_flags & EF_MIPS_ARCH_ASE_M16) | |
3491 | strcat (buf, ", mips16"); | |
3492 | ||
df58fc94 RS |
3493 | if (e_flags & EF_MIPS_ARCH_ASE_MICROMIPS) |
3494 | strcat (buf, ", micromips"); | |
3495 | ||
43521d43 TS |
3496 | switch ((e_flags & EF_MIPS_ARCH)) |
3497 | { | |
3498 | case E_MIPS_ARCH_1: strcat (buf, ", mips1"); break; | |
3499 | case E_MIPS_ARCH_2: strcat (buf, ", mips2"); break; | |
3500 | case E_MIPS_ARCH_3: strcat (buf, ", mips3"); break; | |
3501 | case E_MIPS_ARCH_4: strcat (buf, ", mips4"); break; | |
3502 | case E_MIPS_ARCH_5: strcat (buf, ", mips5"); break; | |
3503 | case E_MIPS_ARCH_32: strcat (buf, ", mips32"); break; | |
cb44e358 | 3504 | case E_MIPS_ARCH_32R2: strcat (buf, ", mips32r2"); break; |
7361da2c | 3505 | case E_MIPS_ARCH_32R6: strcat (buf, ", mips32r6"); break; |
43521d43 | 3506 | case E_MIPS_ARCH_64: strcat (buf, ", mips64"); break; |
5f74bc13 | 3507 | case E_MIPS_ARCH_64R2: strcat (buf, ", mips64r2"); break; |
7361da2c | 3508 | case E_MIPS_ARCH_64R6: strcat (buf, ", mips64r6"); break; |
2b692964 | 3509 | default: strcat (buf, _(", unknown ISA")); break; |
43521d43 | 3510 | } |
252b5132 | 3511 | break; |
351b4b40 | 3512 | |
35c08157 KLC |
3513 | case EM_NDS32: |
3514 | decode_NDS32_machine_flags (e_flags, buf, sizeof buf); | |
3515 | break; | |
3516 | ||
fe944acf FT |
3517 | case EM_NFP: |
3518 | switch (EF_NFP_MACH (e_flags)) | |
3519 | { | |
3520 | case E_NFP_MACH_3200: | |
3521 | strcat (buf, ", NFP-32xx"); | |
3522 | break; | |
3523 | case E_NFP_MACH_6000: | |
3524 | strcat (buf, ", NFP-6xxx"); | |
3525 | break; | |
3526 | } | |
3527 | break; | |
3528 | ||
e23eba97 NC |
3529 | case EM_RISCV: |
3530 | if (e_flags & EF_RISCV_RVC) | |
3531 | strcat (buf, ", RVC"); | |
2922d21d | 3532 | |
7f999549 JW |
3533 | if (e_flags & EF_RISCV_RVE) |
3534 | strcat (buf, ", RVE"); | |
3535 | ||
2922d21d AW |
3536 | switch (e_flags & EF_RISCV_FLOAT_ABI) |
3537 | { | |
3538 | case EF_RISCV_FLOAT_ABI_SOFT: | |
3539 | strcat (buf, ", soft-float ABI"); | |
3540 | break; | |
3541 | ||
3542 | case EF_RISCV_FLOAT_ABI_SINGLE: | |
3543 | strcat (buf, ", single-float ABI"); | |
3544 | break; | |
3545 | ||
3546 | case EF_RISCV_FLOAT_ABI_DOUBLE: | |
3547 | strcat (buf, ", double-float ABI"); | |
3548 | break; | |
3549 | ||
3550 | case EF_RISCV_FLOAT_ABI_QUAD: | |
3551 | strcat (buf, ", quad-float ABI"); | |
3552 | break; | |
3553 | } | |
e23eba97 NC |
3554 | break; |
3555 | ||
ccde1100 AO |
3556 | case EM_SH: |
3557 | switch ((e_flags & EF_SH_MACH_MASK)) | |
3558 | { | |
3559 | case EF_SH1: strcat (buf, ", sh1"); break; | |
3560 | case EF_SH2: strcat (buf, ", sh2"); break; | |
3561 | case EF_SH3: strcat (buf, ", sh3"); break; | |
3562 | case EF_SH_DSP: strcat (buf, ", sh-dsp"); break; | |
3563 | case EF_SH3_DSP: strcat (buf, ", sh3-dsp"); break; | |
3564 | case EF_SH4AL_DSP: strcat (buf, ", sh4al-dsp"); break; | |
3565 | case EF_SH3E: strcat (buf, ", sh3e"); break; | |
3566 | case EF_SH4: strcat (buf, ", sh4"); break; | |
3567 | case EF_SH5: strcat (buf, ", sh5"); break; | |
3568 | case EF_SH2E: strcat (buf, ", sh2e"); break; | |
3569 | case EF_SH4A: strcat (buf, ", sh4a"); break; | |
1d70c7fb | 3570 | case EF_SH2A: strcat (buf, ", sh2a"); break; |
ccde1100 AO |
3571 | case EF_SH4_NOFPU: strcat (buf, ", sh4-nofpu"); break; |
3572 | case EF_SH4A_NOFPU: strcat (buf, ", sh4a-nofpu"); break; | |
1d70c7fb | 3573 | case EF_SH2A_NOFPU: strcat (buf, ", sh2a-nofpu"); break; |
0b92ab21 NH |
3574 | case EF_SH3_NOMMU: strcat (buf, ", sh3-nommu"); break; |
3575 | case EF_SH4_NOMMU_NOFPU: strcat (buf, ", sh4-nommu-nofpu"); break; | |
3576 | case EF_SH2A_SH4_NOFPU: strcat (buf, ", sh2a-nofpu-or-sh4-nommu-nofpu"); break; | |
3577 | case EF_SH2A_SH3_NOFPU: strcat (buf, ", sh2a-nofpu-or-sh3-nommu"); break; | |
3578 | case EF_SH2A_SH4: strcat (buf, ", sh2a-or-sh4"); break; | |
3579 | case EF_SH2A_SH3E: strcat (buf, ", sh2a-or-sh3e"); break; | |
2b692964 | 3580 | default: strcat (buf, _(", unknown ISA")); break; |
ccde1100 AO |
3581 | } |
3582 | ||
cec6a5b8 MR |
3583 | if (e_flags & EF_SH_PIC) |
3584 | strcat (buf, ", pic"); | |
3585 | ||
3586 | if (e_flags & EF_SH_FDPIC) | |
3587 | strcat (buf, ", fdpic"); | |
ccde1100 | 3588 | break; |
948f632f | 3589 | |
73589c9d CS |
3590 | case EM_OR1K: |
3591 | if (e_flags & EF_OR1K_NODELAY) | |
3592 | strcat (buf, ", no delay"); | |
3593 | break; | |
57346661 | 3594 | |
351b4b40 RH |
3595 | case EM_SPARCV9: |
3596 | if (e_flags & EF_SPARC_32PLUS) | |
3597 | strcat (buf, ", v8+"); | |
3598 | ||
3599 | if (e_flags & EF_SPARC_SUN_US1) | |
d07faca2 RH |
3600 | strcat (buf, ", ultrasparcI"); |
3601 | ||
3602 | if (e_flags & EF_SPARC_SUN_US3) | |
3603 | strcat (buf, ", ultrasparcIII"); | |
351b4b40 RH |
3604 | |
3605 | if (e_flags & EF_SPARC_HAL_R1) | |
3606 | strcat (buf, ", halr1"); | |
3607 | ||
3608 | if (e_flags & EF_SPARC_LEDATA) | |
3609 | strcat (buf, ", ledata"); | |
3610 | ||
3611 | if ((e_flags & EF_SPARCV9_MM) == EF_SPARCV9_TSO) | |
3612 | strcat (buf, ", tso"); | |
3613 | ||
3614 | if ((e_flags & EF_SPARCV9_MM) == EF_SPARCV9_PSO) | |
3615 | strcat (buf, ", pso"); | |
3616 | ||
3617 | if ((e_flags & EF_SPARCV9_MM) == EF_SPARCV9_RMO) | |
3618 | strcat (buf, ", rmo"); | |
3619 | break; | |
7d466069 | 3620 | |
103f02d3 UD |
3621 | case EM_PARISC: |
3622 | switch (e_flags & EF_PARISC_ARCH) | |
3623 | { | |
3624 | case EFA_PARISC_1_0: | |
3625 | strcpy (buf, ", PA-RISC 1.0"); | |
3626 | break; | |
3627 | case EFA_PARISC_1_1: | |
3628 | strcpy (buf, ", PA-RISC 1.1"); | |
3629 | break; | |
3630 | case EFA_PARISC_2_0: | |
3631 | strcpy (buf, ", PA-RISC 2.0"); | |
3632 | break; | |
3633 | default: | |
3634 | break; | |
3635 | } | |
3636 | if (e_flags & EF_PARISC_TRAPNIL) | |
3637 | strcat (buf, ", trapnil"); | |
3638 | if (e_flags & EF_PARISC_EXT) | |
3639 | strcat (buf, ", ext"); | |
3640 | if (e_flags & EF_PARISC_LSB) | |
3641 | strcat (buf, ", lsb"); | |
3642 | if (e_flags & EF_PARISC_WIDE) | |
3643 | strcat (buf, ", wide"); | |
3644 | if (e_flags & EF_PARISC_NO_KABP) | |
3645 | strcat (buf, ", no kabp"); | |
3646 | if (e_flags & EF_PARISC_LAZYSWAP) | |
3647 | strcat (buf, ", lazyswap"); | |
30800947 | 3648 | break; |
76da6bbe | 3649 | |
7d466069 | 3650 | case EM_PJ: |
2b0337b0 | 3651 | case EM_PJ_OLD: |
7d466069 ILT |
3652 | if ((e_flags & EF_PICOJAVA_NEWCALLS) == EF_PICOJAVA_NEWCALLS) |
3653 | strcat (buf, ", new calling convention"); | |
3654 | ||
3655 | if ((e_flags & EF_PICOJAVA_GNUCALLS) == EF_PICOJAVA_GNUCALLS) | |
3656 | strcat (buf, ", gnu calling convention"); | |
3657 | break; | |
4d6ed7c8 NC |
3658 | |
3659 | case EM_IA_64: | |
3660 | if ((e_flags & EF_IA_64_ABI64)) | |
3661 | strcat (buf, ", 64-bit"); | |
3662 | else | |
3663 | strcat (buf, ", 32-bit"); | |
3664 | if ((e_flags & EF_IA_64_REDUCEDFP)) | |
3665 | strcat (buf, ", reduced fp model"); | |
3666 | if ((e_flags & EF_IA_64_NOFUNCDESC_CONS_GP)) | |
3667 | strcat (buf, ", no function descriptors, constant gp"); | |
3668 | else if ((e_flags & EF_IA_64_CONS_GP)) | |
3669 | strcat (buf, ", constant gp"); | |
3670 | if ((e_flags & EF_IA_64_ABSOLUTE)) | |
3671 | strcat (buf, ", absolute"); | |
dda8d76d | 3672 | if (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_OPENVMS) |
28f997cf TG |
3673 | { |
3674 | if ((e_flags & EF_IA_64_VMS_LINKAGES)) | |
3675 | strcat (buf, ", vms_linkages"); | |
3676 | switch ((e_flags & EF_IA_64_VMS_COMCOD)) | |
3677 | { | |
3678 | case EF_IA_64_VMS_COMCOD_SUCCESS: | |
3679 | break; | |
3680 | case EF_IA_64_VMS_COMCOD_WARNING: | |
3681 | strcat (buf, ", warning"); | |
3682 | break; | |
3683 | case EF_IA_64_VMS_COMCOD_ERROR: | |
3684 | strcat (buf, ", error"); | |
3685 | break; | |
3686 | case EF_IA_64_VMS_COMCOD_ABORT: | |
3687 | strcat (buf, ", abort"); | |
3688 | break; | |
3689 | default: | |
bee0ee85 NC |
3690 | warn (_("Unrecognised IA64 VMS Command Code: %x\n"), |
3691 | e_flags & EF_IA_64_VMS_COMCOD); | |
3692 | strcat (buf, ", <unknown>"); | |
28f997cf TG |
3693 | } |
3694 | } | |
4d6ed7c8 | 3695 | break; |
179d3252 JT |
3696 | |
3697 | case EM_VAX: | |
3698 | if ((e_flags & EF_VAX_NONPIC)) | |
3699 | strcat (buf, ", non-PIC"); | |
3700 | if ((e_flags & EF_VAX_DFLOAT)) | |
3701 | strcat (buf, ", D-Float"); | |
3702 | if ((e_flags & EF_VAX_GFLOAT)) | |
3703 | strcat (buf, ", G-Float"); | |
3704 | break; | |
c7927a3c | 3705 | |
619ed720 EB |
3706 | case EM_VISIUM: |
3707 | if (e_flags & EF_VISIUM_ARCH_MCM) | |
3708 | strcat (buf, ", mcm"); | |
3709 | else if (e_flags & EF_VISIUM_ARCH_MCM24) | |
3710 | strcat (buf, ", mcm24"); | |
3711 | if (e_flags & EF_VISIUM_ARCH_GR6) | |
3712 | strcat (buf, ", gr6"); | |
3713 | break; | |
3714 | ||
4046d87a | 3715 | case EM_RL78: |
1740ba0c NC |
3716 | switch (e_flags & E_FLAG_RL78_CPU_MASK) |
3717 | { | |
3718 | case E_FLAG_RL78_ANY_CPU: break; | |
3719 | case E_FLAG_RL78_G10: strcat (buf, ", G10"); break; | |
3720 | case E_FLAG_RL78_G13: strcat (buf, ", G13"); break; | |
3721 | case E_FLAG_RL78_G14: strcat (buf, ", G14"); break; | |
3722 | } | |
856ea05c KP |
3723 | if (e_flags & E_FLAG_RL78_64BIT_DOUBLES) |
3724 | strcat (buf, ", 64-bit doubles"); | |
4046d87a | 3725 | break; |
0b4362b0 | 3726 | |
c7927a3c NC |
3727 | case EM_RX: |
3728 | if (e_flags & E_FLAG_RX_64BIT_DOUBLES) | |
3729 | strcat (buf, ", 64-bit doubles"); | |
3730 | if (e_flags & E_FLAG_RX_DSP) | |
dd24e3da | 3731 | strcat (buf, ", dsp"); |
d4cb0ea0 | 3732 | if (e_flags & E_FLAG_RX_PID) |
0b4362b0 | 3733 | strcat (buf, ", pid"); |
708e2187 NC |
3734 | if (e_flags & E_FLAG_RX_ABI) |
3735 | strcat (buf, ", RX ABI"); | |
3525236c NC |
3736 | if (e_flags & E_FLAG_RX_SINSNS_SET) |
3737 | strcat (buf, e_flags & E_FLAG_RX_SINSNS_YES | |
3738 | ? ", uses String instructions" : ", bans String instructions"); | |
a117b0a5 YS |
3739 | if (e_flags & E_FLAG_RX_V2) |
3740 | strcat (buf, ", V2"); | |
f87673e0 YS |
3741 | if (e_flags & E_FLAG_RX_V3) |
3742 | strcat (buf, ", V3"); | |
d4cb0ea0 | 3743 | break; |
55786da2 AK |
3744 | |
3745 | case EM_S390: | |
3746 | if (e_flags & EF_S390_HIGH_GPRS) | |
3747 | strcat (buf, ", highgprs"); | |
d4cb0ea0 | 3748 | break; |
40b36596 JM |
3749 | |
3750 | case EM_TI_C6000: | |
3751 | if ((e_flags & EF_C6000_REL)) | |
3752 | strcat (buf, ", relocatable module"); | |
d4cb0ea0 | 3753 | break; |
13761a11 NC |
3754 | |
3755 | case EM_MSP430: | |
3756 | strcat (buf, _(": architecture variant: ")); | |
3757 | switch (e_flags & EF_MSP430_MACH) | |
3758 | { | |
3759 | case E_MSP430_MACH_MSP430x11: strcat (buf, "MSP430x11"); break; | |
3760 | case E_MSP430_MACH_MSP430x11x1 : strcat (buf, "MSP430x11x1 "); break; | |
3761 | case E_MSP430_MACH_MSP430x12: strcat (buf, "MSP430x12"); break; | |
3762 | case E_MSP430_MACH_MSP430x13: strcat (buf, "MSP430x13"); break; | |
3763 | case E_MSP430_MACH_MSP430x14: strcat (buf, "MSP430x14"); break; | |
3764 | case E_MSP430_MACH_MSP430x15: strcat (buf, "MSP430x15"); break; | |
3765 | case E_MSP430_MACH_MSP430x16: strcat (buf, "MSP430x16"); break; | |
3766 | case E_MSP430_MACH_MSP430x31: strcat (buf, "MSP430x31"); break; | |
3767 | case E_MSP430_MACH_MSP430x32: strcat (buf, "MSP430x32"); break; | |
3768 | case E_MSP430_MACH_MSP430x33: strcat (buf, "MSP430x33"); break; | |
3769 | case E_MSP430_MACH_MSP430x41: strcat (buf, "MSP430x41"); break; | |
3770 | case E_MSP430_MACH_MSP430x42: strcat (buf, "MSP430x42"); break; | |
3771 | case E_MSP430_MACH_MSP430x43: strcat (buf, "MSP430x43"); break; | |
3772 | case E_MSP430_MACH_MSP430x44: strcat (buf, "MSP430x44"); break; | |
3773 | case E_MSP430_MACH_MSP430X : strcat (buf, "MSP430X"); break; | |
3774 | default: | |
3775 | strcat (buf, _(": unknown")); break; | |
3776 | } | |
3777 | ||
3778 | if (e_flags & ~ EF_MSP430_MACH) | |
3779 | strcat (buf, _(": unknown extra flag bits also present")); | |
6655dba2 SB |
3780 | break; |
3781 | ||
3782 | case EM_Z80: | |
3783 | switch (e_flags & EF_Z80_MACH_MSK) | |
3784 | { | |
3785 | case EF_Z80_MACH_Z80: strcat (buf, ", Z80"); break; | |
3786 | case EF_Z80_MACH_Z180: strcat (buf, ", Z180"); break; | |
3787 | case EF_Z80_MACH_R800: strcat (buf, ", R800"); break; | |
3788 | case EF_Z80_MACH_EZ80_Z80: strcat (buf, ", EZ80"); break; | |
3789 | case EF_Z80_MACH_EZ80_ADL: strcat (buf, ", EZ80, ADL"); break; | |
3790 | case EF_Z80_MACH_GBZ80: strcat (buf, ", GBZ80"); break; | |
9fc0b501 | 3791 | case EF_Z80_MACH_Z80N: strcat (buf, ", Z80N"); break; |
6655dba2 SB |
3792 | default: |
3793 | strcat (buf, _(", unknown")); break; | |
3794 | } | |
3795 | break; | |
252b5132 RH |
3796 | } |
3797 | } | |
3798 | ||
3799 | return buf; | |
3800 | } | |
3801 | ||
252b5132 | 3802 | static const char * |
dda8d76d | 3803 | get_osabi_name (Filedata * filedata, unsigned int osabi) |
d3ba0551 AM |
3804 | { |
3805 | static char buff[32]; | |
3806 | ||
3807 | switch (osabi) | |
3808 | { | |
3809 | case ELFOSABI_NONE: return "UNIX - System V"; | |
3810 | case ELFOSABI_HPUX: return "UNIX - HP-UX"; | |
3811 | case ELFOSABI_NETBSD: return "UNIX - NetBSD"; | |
9c55345c | 3812 | case ELFOSABI_GNU: return "UNIX - GNU"; |
d3ba0551 AM |
3813 | case ELFOSABI_SOLARIS: return "UNIX - Solaris"; |
3814 | case ELFOSABI_AIX: return "UNIX - AIX"; | |
3815 | case ELFOSABI_IRIX: return "UNIX - IRIX"; | |
3816 | case ELFOSABI_FREEBSD: return "UNIX - FreeBSD"; | |
3817 | case ELFOSABI_TRU64: return "UNIX - TRU64"; | |
3818 | case ELFOSABI_MODESTO: return "Novell - Modesto"; | |
3819 | case ELFOSABI_OPENBSD: return "UNIX - OpenBSD"; | |
3820 | case ELFOSABI_OPENVMS: return "VMS - OpenVMS"; | |
3821 | case ELFOSABI_NSK: return "HP - Non-Stop Kernel"; | |
3b26c801 | 3822 | case ELFOSABI_AROS: return "AROS"; |
11636f9e | 3823 | case ELFOSABI_FENIXOS: return "FenixOS"; |
6d913794 NC |
3824 | case ELFOSABI_CLOUDABI: return "Nuxi CloudABI"; |
3825 | case ELFOSABI_OPENVOS: return "Stratus Technologies OpenVOS"; | |
d3ba0551 | 3826 | default: |
40b36596 | 3827 | if (osabi >= 64) |
dda8d76d | 3828 | switch (filedata->file_header.e_machine) |
40b36596 JM |
3829 | { |
3830 | case EM_ARM: | |
3831 | switch (osabi) | |
3832 | { | |
3833 | case ELFOSABI_ARM: return "ARM"; | |
18a20338 | 3834 | case ELFOSABI_ARM_FDPIC: return "ARM FDPIC"; |
40b36596 JM |
3835 | default: |
3836 | break; | |
3837 | } | |
3838 | break; | |
3839 | ||
3840 | case EM_MSP430: | |
3841 | case EM_MSP430_OLD: | |
619ed720 | 3842 | case EM_VISIUM: |
40b36596 JM |
3843 | switch (osabi) |
3844 | { | |
3845 | case ELFOSABI_STANDALONE: return _("Standalone App"); | |
3846 | default: | |
3847 | break; | |
3848 | } | |
3849 | break; | |
3850 | ||
3851 | case EM_TI_C6000: | |
3852 | switch (osabi) | |
3853 | { | |
3854 | case ELFOSABI_C6000_ELFABI: return _("Bare-metal C6000"); | |
3855 | case ELFOSABI_C6000_LINUX: return "Linux C6000"; | |
3856 | default: | |
3857 | break; | |
3858 | } | |
3859 | break; | |
3860 | ||
3861 | default: | |
3862 | break; | |
3863 | } | |
e9e44622 | 3864 | snprintf (buff, sizeof (buff), _("<unknown: %x>"), osabi); |
d3ba0551 AM |
3865 | return buff; |
3866 | } | |
3867 | } | |
3868 | ||
a06ea964 NC |
3869 | static const char * |
3870 | get_aarch64_segment_type (unsigned long type) | |
3871 | { | |
3872 | switch (type) | |
3873 | { | |
32ec8896 NC |
3874 | case PT_AARCH64_ARCHEXT: return "AARCH64_ARCHEXT"; |
3875 | default: return NULL; | |
a06ea964 | 3876 | } |
a06ea964 NC |
3877 | } |
3878 | ||
b294bdf8 MM |
3879 | static const char * |
3880 | get_arm_segment_type (unsigned long type) | |
3881 | { | |
3882 | switch (type) | |
3883 | { | |
32ec8896 NC |
3884 | case PT_ARM_EXIDX: return "EXIDX"; |
3885 | default: return NULL; | |
b294bdf8 | 3886 | } |
b294bdf8 MM |
3887 | } |
3888 | ||
b4cbbe8f AK |
3889 | static const char * |
3890 | get_s390_segment_type (unsigned long type) | |
3891 | { | |
3892 | switch (type) | |
3893 | { | |
3894 | case PT_S390_PGSTE: return "S390_PGSTE"; | |
3895 | default: return NULL; | |
3896 | } | |
3897 | } | |
3898 | ||
d3ba0551 AM |
3899 | static const char * |
3900 | get_mips_segment_type (unsigned long type) | |
252b5132 RH |
3901 | { |
3902 | switch (type) | |
3903 | { | |
32ec8896 NC |
3904 | case PT_MIPS_REGINFO: return "REGINFO"; |
3905 | case PT_MIPS_RTPROC: return "RTPROC"; | |
3906 | case PT_MIPS_OPTIONS: return "OPTIONS"; | |
3907 | case PT_MIPS_ABIFLAGS: return "ABIFLAGS"; | |
3908 | default: return NULL; | |
252b5132 | 3909 | } |
252b5132 RH |
3910 | } |
3911 | ||
103f02d3 | 3912 | static const char * |
d3ba0551 | 3913 | get_parisc_segment_type (unsigned long type) |
103f02d3 UD |
3914 | { |
3915 | switch (type) | |
3916 | { | |
103f02d3 UD |
3917 | case PT_PARISC_ARCHEXT: return "PARISC_ARCHEXT"; |
3918 | case PT_PARISC_UNWIND: return "PARISC_UNWIND"; | |
61472819 | 3919 | case PT_PARISC_WEAKORDER: return "PARISC_WEAKORDER"; |
32ec8896 | 3920 | default: return NULL; |
103f02d3 | 3921 | } |
103f02d3 UD |
3922 | } |
3923 | ||
4d6ed7c8 | 3924 | static const char * |
d3ba0551 | 3925 | get_ia64_segment_type (unsigned long type) |
4d6ed7c8 NC |
3926 | { |
3927 | switch (type) | |
3928 | { | |
3929 | case PT_IA_64_ARCHEXT: return "IA_64_ARCHEXT"; | |
3930 | case PT_IA_64_UNWIND: return "IA_64_UNWIND"; | |
32ec8896 | 3931 | default: return NULL; |
4d6ed7c8 | 3932 | } |
4d6ed7c8 NC |
3933 | } |
3934 | ||
40b36596 JM |
3935 | static const char * |
3936 | get_tic6x_segment_type (unsigned long type) | |
3937 | { | |
3938 | switch (type) | |
3939 | { | |
32ec8896 NC |
3940 | case PT_C6000_PHATTR: return "C6000_PHATTR"; |
3941 | default: return NULL; | |
40b36596 | 3942 | } |
40b36596 JM |
3943 | } |
3944 | ||
df3a023b AM |
3945 | static const char * |
3946 | get_hpux_segment_type (unsigned long type, unsigned e_machine) | |
3947 | { | |
3948 | if (e_machine == EM_PARISC) | |
3949 | switch (type) | |
3950 | { | |
3951 | case PT_HP_TLS: return "HP_TLS"; | |
3952 | case PT_HP_CORE_NONE: return "HP_CORE_NONE"; | |
3953 | case PT_HP_CORE_VERSION: return "HP_CORE_VERSION"; | |
3954 | case PT_HP_CORE_KERNEL: return "HP_CORE_KERNEL"; | |
3955 | case PT_HP_CORE_COMM: return "HP_CORE_COMM"; | |
3956 | case PT_HP_CORE_PROC: return "HP_CORE_PROC"; | |
3957 | case PT_HP_CORE_LOADABLE: return "HP_CORE_LOADABLE"; | |
3958 | case PT_HP_CORE_STACK: return "HP_CORE_STACK"; | |
3959 | case PT_HP_CORE_SHM: return "HP_CORE_SHM"; | |
3960 | case PT_HP_CORE_MMF: return "HP_CORE_MMF"; | |
3961 | case PT_HP_PARALLEL: return "HP_PARALLEL"; | |
3962 | case PT_HP_FASTBIND: return "HP_FASTBIND"; | |
3963 | case PT_HP_OPT_ANNOT: return "HP_OPT_ANNOT"; | |
3964 | case PT_HP_HSL_ANNOT: return "HP_HSL_ANNOT"; | |
3965 | case PT_HP_STACK: return "HP_STACK"; | |
3966 | case PT_HP_CORE_UTSNAME: return "HP_CORE_UTSNAME"; | |
3967 | default: return NULL; | |
3968 | } | |
3969 | ||
3970 | if (e_machine == EM_IA_64) | |
3971 | switch (type) | |
3972 | { | |
3973 | case PT_HP_TLS: return "HP_TLS"; | |
3974 | case PT_IA_64_HP_OPT_ANOT: return "HP_OPT_ANNOT"; | |
3975 | case PT_IA_64_HP_HSL_ANOT: return "HP_HSL_ANNOT"; | |
3976 | case PT_IA_64_HP_STACK: return "HP_STACK"; | |
3977 | default: return NULL; | |
3978 | } | |
3979 | ||
3980 | return NULL; | |
3981 | } | |
3982 | ||
5522f910 NC |
3983 | static const char * |
3984 | get_solaris_segment_type (unsigned long type) | |
3985 | { | |
3986 | switch (type) | |
3987 | { | |
3988 | case 0x6464e550: return "PT_SUNW_UNWIND"; | |
3989 | case 0x6474e550: return "PT_SUNW_EH_FRAME"; | |
3990 | case 0x6ffffff7: return "PT_LOSUNW"; | |
3991 | case 0x6ffffffa: return "PT_SUNWBSS"; | |
3992 | case 0x6ffffffb: return "PT_SUNWSTACK"; | |
3993 | case 0x6ffffffc: return "PT_SUNWDTRACE"; | |
3994 | case 0x6ffffffd: return "PT_SUNWCAP"; | |
3995 | case 0x6fffffff: return "PT_HISUNW"; | |
32ec8896 | 3996 | default: return NULL; |
5522f910 NC |
3997 | } |
3998 | } | |
3999 | ||
252b5132 | 4000 | static const char * |
dda8d76d | 4001 | get_segment_type (Filedata * filedata, unsigned long p_type) |
252b5132 | 4002 | { |
b34976b6 | 4003 | static char buff[32]; |
252b5132 RH |
4004 | |
4005 | switch (p_type) | |
4006 | { | |
b34976b6 AM |
4007 | case PT_NULL: return "NULL"; |
4008 | case PT_LOAD: return "LOAD"; | |
252b5132 | 4009 | case PT_DYNAMIC: return "DYNAMIC"; |
b34976b6 AM |
4010 | case PT_INTERP: return "INTERP"; |
4011 | case PT_NOTE: return "NOTE"; | |
4012 | case PT_SHLIB: return "SHLIB"; | |
4013 | case PT_PHDR: return "PHDR"; | |
13ae64f3 | 4014 | case PT_TLS: return "TLS"; |
32ec8896 | 4015 | case PT_GNU_EH_FRAME: return "GNU_EH_FRAME"; |
2b05f1b7 | 4016 | case PT_GNU_STACK: return "GNU_STACK"; |
8c37241b | 4017 | case PT_GNU_RELRO: return "GNU_RELRO"; |
0a59decb | 4018 | case PT_GNU_PROPERTY: return "GNU_PROPERTY"; |
65765700 | 4019 | |
252b5132 | 4020 | default: |
df3a023b | 4021 | if ((p_type >= PT_LOPROC) && (p_type <= PT_HIPROC)) |
252b5132 | 4022 | { |
2cf0635d | 4023 | const char * result; |
103f02d3 | 4024 | |
dda8d76d | 4025 | switch (filedata->file_header.e_machine) |
252b5132 | 4026 | { |
a06ea964 NC |
4027 | case EM_AARCH64: |
4028 | result = get_aarch64_segment_type (p_type); | |
4029 | break; | |
b294bdf8 MM |
4030 | case EM_ARM: |
4031 | result = get_arm_segment_type (p_type); | |
4032 | break; | |
252b5132 | 4033 | case EM_MIPS: |
4fe85591 | 4034 | case EM_MIPS_RS3_LE: |
252b5132 RH |
4035 | result = get_mips_segment_type (p_type); |
4036 | break; | |
103f02d3 UD |
4037 | case EM_PARISC: |
4038 | result = get_parisc_segment_type (p_type); | |
4039 | break; | |
4d6ed7c8 NC |
4040 | case EM_IA_64: |
4041 | result = get_ia64_segment_type (p_type); | |
4042 | break; | |
40b36596 JM |
4043 | case EM_TI_C6000: |
4044 | result = get_tic6x_segment_type (p_type); | |
4045 | break; | |
b4cbbe8f AK |
4046 | case EM_S390: |
4047 | case EM_S390_OLD: | |
4048 | result = get_s390_segment_type (p_type); | |
4049 | break; | |
252b5132 RH |
4050 | default: |
4051 | result = NULL; | |
4052 | break; | |
4053 | } | |
103f02d3 | 4054 | |
252b5132 RH |
4055 | if (result != NULL) |
4056 | return result; | |
103f02d3 | 4057 | |
1a9ccd70 | 4058 | sprintf (buff, "LOPROC+%#lx", p_type - PT_LOPROC); |
252b5132 RH |
4059 | } |
4060 | else if ((p_type >= PT_LOOS) && (p_type <= PT_HIOS)) | |
103f02d3 | 4061 | { |
df3a023b | 4062 | const char * result = NULL; |
103f02d3 | 4063 | |
df3a023b | 4064 | switch (filedata->file_header.e_ident[EI_OSABI]) |
103f02d3 | 4065 | { |
df3a023b AM |
4066 | case ELFOSABI_GNU: |
4067 | case ELFOSABI_FREEBSD: | |
4068 | if (p_type >= PT_GNU_MBIND_LO && p_type <= PT_GNU_MBIND_HI) | |
4069 | { | |
4070 | sprintf (buff, "GNU_MBIND+%#lx", p_type - PT_GNU_MBIND_LO); | |
4071 | result = buff; | |
4072 | } | |
103f02d3 | 4073 | break; |
df3a023b AM |
4074 | case ELFOSABI_HPUX: |
4075 | result = get_hpux_segment_type (p_type, | |
4076 | filedata->file_header.e_machine); | |
4077 | break; | |
4078 | case ELFOSABI_SOLARIS: | |
4079 | result = get_solaris_segment_type (p_type); | |
00428cca | 4080 | break; |
103f02d3 | 4081 | default: |
103f02d3 UD |
4082 | break; |
4083 | } | |
103f02d3 UD |
4084 | if (result != NULL) |
4085 | return result; | |
4086 | ||
1a9ccd70 | 4087 | sprintf (buff, "LOOS+%#lx", p_type - PT_LOOS); |
103f02d3 | 4088 | } |
252b5132 | 4089 | else |
e9e44622 | 4090 | snprintf (buff, sizeof (buff), _("<unknown>: %lx"), p_type); |
252b5132 RH |
4091 | |
4092 | return buff; | |
4093 | } | |
4094 | } | |
4095 | ||
53a346d8 CZ |
4096 | static const char * |
4097 | get_arc_section_type_name (unsigned int sh_type) | |
4098 | { | |
4099 | switch (sh_type) | |
4100 | { | |
4101 | case SHT_ARC_ATTRIBUTES: return "ARC_ATTRIBUTES"; | |
4102 | default: | |
4103 | break; | |
4104 | } | |
4105 | return NULL; | |
4106 | } | |
4107 | ||
252b5132 | 4108 | static const char * |
d3ba0551 | 4109 | get_mips_section_type_name (unsigned int sh_type) |
252b5132 RH |
4110 | { |
4111 | switch (sh_type) | |
4112 | { | |
b34976b6 AM |
4113 | case SHT_MIPS_LIBLIST: return "MIPS_LIBLIST"; |
4114 | case SHT_MIPS_MSYM: return "MIPS_MSYM"; | |
4115 | case SHT_MIPS_CONFLICT: return "MIPS_CONFLICT"; | |
4116 | case SHT_MIPS_GPTAB: return "MIPS_GPTAB"; | |
4117 | case SHT_MIPS_UCODE: return "MIPS_UCODE"; | |
4118 | case SHT_MIPS_DEBUG: return "MIPS_DEBUG"; | |
4119 | case SHT_MIPS_REGINFO: return "MIPS_REGINFO"; | |
4120 | case SHT_MIPS_PACKAGE: return "MIPS_PACKAGE"; | |
4121 | case SHT_MIPS_PACKSYM: return "MIPS_PACKSYM"; | |
4122 | case SHT_MIPS_RELD: return "MIPS_RELD"; | |
4123 | case SHT_MIPS_IFACE: return "MIPS_IFACE"; | |
4124 | case SHT_MIPS_CONTENT: return "MIPS_CONTENT"; | |
4125 | case SHT_MIPS_OPTIONS: return "MIPS_OPTIONS"; | |
4126 | case SHT_MIPS_SHDR: return "MIPS_SHDR"; | |
4127 | case SHT_MIPS_FDESC: return "MIPS_FDESC"; | |
4128 | case SHT_MIPS_EXTSYM: return "MIPS_EXTSYM"; | |
4129 | case SHT_MIPS_DENSE: return "MIPS_DENSE"; | |
4130 | case SHT_MIPS_PDESC: return "MIPS_PDESC"; | |
4131 | case SHT_MIPS_LOCSYM: return "MIPS_LOCSYM"; | |
4132 | case SHT_MIPS_AUXSYM: return "MIPS_AUXSYM"; | |
4133 | case SHT_MIPS_OPTSYM: return "MIPS_OPTSYM"; | |
4134 | case SHT_MIPS_LOCSTR: return "MIPS_LOCSTR"; | |
4135 | case SHT_MIPS_LINE: return "MIPS_LINE"; | |
4136 | case SHT_MIPS_RFDESC: return "MIPS_RFDESC"; | |
4137 | case SHT_MIPS_DELTASYM: return "MIPS_DELTASYM"; | |
4138 | case SHT_MIPS_DELTAINST: return "MIPS_DELTAINST"; | |
4139 | case SHT_MIPS_DELTACLASS: return "MIPS_DELTACLASS"; | |
4140 | case SHT_MIPS_DWARF: return "MIPS_DWARF"; | |
4141 | case SHT_MIPS_DELTADECL: return "MIPS_DELTADECL"; | |
4142 | case SHT_MIPS_SYMBOL_LIB: return "MIPS_SYMBOL_LIB"; | |
4143 | case SHT_MIPS_EVENTS: return "MIPS_EVENTS"; | |
4144 | case SHT_MIPS_TRANSLATE: return "MIPS_TRANSLATE"; | |
4145 | case SHT_MIPS_PIXIE: return "MIPS_PIXIE"; | |
4146 | case SHT_MIPS_XLATE: return "MIPS_XLATE"; | |
4147 | case SHT_MIPS_XLATE_DEBUG: return "MIPS_XLATE_DEBUG"; | |
4148 | case SHT_MIPS_WHIRL: return "MIPS_WHIRL"; | |
4149 | case SHT_MIPS_EH_REGION: return "MIPS_EH_REGION"; | |
4150 | case SHT_MIPS_XLATE_OLD: return "MIPS_XLATE_OLD"; | |
252b5132 | 4151 | case SHT_MIPS_PDR_EXCEPTION: return "MIPS_PDR_EXCEPTION"; |
351cdf24 | 4152 | case SHT_MIPS_ABIFLAGS: return "MIPS_ABIFLAGS"; |
f16a9783 | 4153 | case SHT_MIPS_XHASH: return "MIPS_XHASH"; |
252b5132 RH |
4154 | default: |
4155 | break; | |
4156 | } | |
4157 | return NULL; | |
4158 | } | |
4159 | ||
103f02d3 | 4160 | static const char * |
d3ba0551 | 4161 | get_parisc_section_type_name (unsigned int sh_type) |
103f02d3 UD |
4162 | { |
4163 | switch (sh_type) | |
4164 | { | |
4165 | case SHT_PARISC_EXT: return "PARISC_EXT"; | |
4166 | case SHT_PARISC_UNWIND: return "PARISC_UNWIND"; | |
4167 | case SHT_PARISC_DOC: return "PARISC_DOC"; | |
eec8f817 DA |
4168 | case SHT_PARISC_ANNOT: return "PARISC_ANNOT"; |
4169 | case SHT_PARISC_SYMEXTN: return "PARISC_SYMEXTN"; | |
4170 | case SHT_PARISC_STUBS: return "PARISC_STUBS"; | |
61472819 | 4171 | case SHT_PARISC_DLKM: return "PARISC_DLKM"; |
32ec8896 | 4172 | default: return NULL; |
103f02d3 | 4173 | } |
103f02d3 UD |
4174 | } |
4175 | ||
4d6ed7c8 | 4176 | static const char * |
dda8d76d | 4177 | get_ia64_section_type_name (Filedata * filedata, unsigned int sh_type) |
4d6ed7c8 | 4178 | { |
18bd398b | 4179 | /* If the top 8 bits are 0x78 the next 8 are the os/abi ID. */ |
ecc51f48 | 4180 | if ((sh_type & 0xFF000000) == SHT_IA_64_LOPSREG) |
dda8d76d | 4181 | return get_osabi_name (filedata, (sh_type & 0x00FF0000) >> 16); |
0de14b54 | 4182 | |
4d6ed7c8 NC |
4183 | switch (sh_type) |
4184 | { | |
148b93f2 NC |
4185 | case SHT_IA_64_EXT: return "IA_64_EXT"; |
4186 | case SHT_IA_64_UNWIND: return "IA_64_UNWIND"; | |
4187 | case SHT_IA_64_PRIORITY_INIT: return "IA_64_PRIORITY_INIT"; | |
4188 | case SHT_IA_64_VMS_TRACE: return "VMS_TRACE"; | |
4189 | case SHT_IA_64_VMS_TIE_SIGNATURES: return "VMS_TIE_SIGNATURES"; | |
4190 | case SHT_IA_64_VMS_DEBUG: return "VMS_DEBUG"; | |
4191 | case SHT_IA_64_VMS_DEBUG_STR: return "VMS_DEBUG_STR"; | |
4192 | case SHT_IA_64_VMS_LINKAGES: return "VMS_LINKAGES"; | |
4193 | case SHT_IA_64_VMS_SYMBOL_VECTOR: return "VMS_SYMBOL_VECTOR"; | |
4194 | case SHT_IA_64_VMS_FIXUP: return "VMS_FIXUP"; | |
4d6ed7c8 NC |
4195 | default: |
4196 | break; | |
4197 | } | |
4198 | return NULL; | |
4199 | } | |
4200 | ||
d2b2c203 DJ |
4201 | static const char * |
4202 | get_x86_64_section_type_name (unsigned int sh_type) | |
4203 | { | |
4204 | switch (sh_type) | |
4205 | { | |
4206 | case SHT_X86_64_UNWIND: return "X86_64_UNWIND"; | |
32ec8896 | 4207 | default: return NULL; |
d2b2c203 | 4208 | } |
d2b2c203 DJ |
4209 | } |
4210 | ||
a06ea964 NC |
4211 | static const char * |
4212 | get_aarch64_section_type_name (unsigned int sh_type) | |
4213 | { | |
4214 | switch (sh_type) | |
4215 | { | |
32ec8896 NC |
4216 | case SHT_AARCH64_ATTRIBUTES: return "AARCH64_ATTRIBUTES"; |
4217 | default: return NULL; | |
a06ea964 | 4218 | } |
a06ea964 NC |
4219 | } |
4220 | ||
40a18ebd NC |
4221 | static const char * |
4222 | get_arm_section_type_name (unsigned int sh_type) | |
4223 | { | |
4224 | switch (sh_type) | |
4225 | { | |
7f6fed87 NC |
4226 | case SHT_ARM_EXIDX: return "ARM_EXIDX"; |
4227 | case SHT_ARM_PREEMPTMAP: return "ARM_PREEMPTMAP"; | |
4228 | case SHT_ARM_ATTRIBUTES: return "ARM_ATTRIBUTES"; | |
4229 | case SHT_ARM_DEBUGOVERLAY: return "ARM_DEBUGOVERLAY"; | |
4230 | case SHT_ARM_OVERLAYSECTION: return "ARM_OVERLAYSECTION"; | |
32ec8896 | 4231 | default: return NULL; |
40a18ebd | 4232 | } |
40a18ebd NC |
4233 | } |
4234 | ||
40b36596 JM |
4235 | static const char * |
4236 | get_tic6x_section_type_name (unsigned int sh_type) | |
4237 | { | |
4238 | switch (sh_type) | |
4239 | { | |
32ec8896 NC |
4240 | case SHT_C6000_UNWIND: return "C6000_UNWIND"; |
4241 | case SHT_C6000_PREEMPTMAP: return "C6000_PREEMPTMAP"; | |
4242 | case SHT_C6000_ATTRIBUTES: return "C6000_ATTRIBUTES"; | |
4243 | case SHT_TI_ICODE: return "TI_ICODE"; | |
4244 | case SHT_TI_XREF: return "TI_XREF"; | |
4245 | case SHT_TI_HANDLER: return "TI_HANDLER"; | |
4246 | case SHT_TI_INITINFO: return "TI_INITINFO"; | |
4247 | case SHT_TI_PHATTRS: return "TI_PHATTRS"; | |
4248 | default: return NULL; | |
40b36596 | 4249 | } |
40b36596 JM |
4250 | } |
4251 | ||
13761a11 NC |
4252 | static const char * |
4253 | get_msp430x_section_type_name (unsigned int sh_type) | |
4254 | { | |
4255 | switch (sh_type) | |
4256 | { | |
32ec8896 NC |
4257 | case SHT_MSP430_SEC_FLAGS: return "MSP430_SEC_FLAGS"; |
4258 | case SHT_MSP430_SYM_ALIASES: return "MSP430_SYM_ALIASES"; | |
4259 | case SHT_MSP430_ATTRIBUTES: return "MSP430_ATTRIBUTES"; | |
4260 | default: return NULL; | |
13761a11 NC |
4261 | } |
4262 | } | |
4263 | ||
fe944acf FT |
4264 | static const char * |
4265 | get_nfp_section_type_name (unsigned int sh_type) | |
4266 | { | |
4267 | switch (sh_type) | |
4268 | { | |
4269 | case SHT_NFP_MECONFIG: return "NFP_MECONFIG"; | |
4270 | case SHT_NFP_INITREG: return "NFP_INITREG"; | |
4271 | case SHT_NFP_UDEBUG: return "NFP_UDEBUG"; | |
4272 | default: return NULL; | |
4273 | } | |
4274 | } | |
4275 | ||
685080f2 NC |
4276 | static const char * |
4277 | get_v850_section_type_name (unsigned int sh_type) | |
4278 | { | |
4279 | switch (sh_type) | |
4280 | { | |
32ec8896 NC |
4281 | case SHT_V850_SCOMMON: return "V850 Small Common"; |
4282 | case SHT_V850_TCOMMON: return "V850 Tiny Common"; | |
4283 | case SHT_V850_ZCOMMON: return "V850 Zero Common"; | |
4284 | case SHT_RENESAS_IOP: return "RENESAS IOP"; | |
4285 | case SHT_RENESAS_INFO: return "RENESAS INFO"; | |
4286 | default: return NULL; | |
685080f2 NC |
4287 | } |
4288 | } | |
4289 | ||
2dc8dd17 JW |
4290 | static const char * |
4291 | get_riscv_section_type_name (unsigned int sh_type) | |
4292 | { | |
4293 | switch (sh_type) | |
4294 | { | |
4295 | case SHT_RISCV_ATTRIBUTES: return "RISCV_ATTRIBUTES"; | |
4296 | default: return NULL; | |
4297 | } | |
4298 | } | |
4299 | ||
252b5132 | 4300 | static const char * |
dda8d76d | 4301 | get_section_type_name (Filedata * filedata, unsigned int sh_type) |
252b5132 | 4302 | { |
b34976b6 | 4303 | static char buff[32]; |
9fb71ee4 | 4304 | const char * result; |
252b5132 RH |
4305 | |
4306 | switch (sh_type) | |
4307 | { | |
4308 | case SHT_NULL: return "NULL"; | |
4309 | case SHT_PROGBITS: return "PROGBITS"; | |
4310 | case SHT_SYMTAB: return "SYMTAB"; | |
4311 | case SHT_STRTAB: return "STRTAB"; | |
4312 | case SHT_RELA: return "RELA"; | |
4313 | case SHT_HASH: return "HASH"; | |
4314 | case SHT_DYNAMIC: return "DYNAMIC"; | |
4315 | case SHT_NOTE: return "NOTE"; | |
4316 | case SHT_NOBITS: return "NOBITS"; | |
4317 | case SHT_REL: return "REL"; | |
4318 | case SHT_SHLIB: return "SHLIB"; | |
4319 | case SHT_DYNSYM: return "DYNSYM"; | |
d1133906 NC |
4320 | case SHT_INIT_ARRAY: return "INIT_ARRAY"; |
4321 | case SHT_FINI_ARRAY: return "FINI_ARRAY"; | |
4322 | case SHT_PREINIT_ARRAY: return "PREINIT_ARRAY"; | |
fdc90cb4 | 4323 | case SHT_GNU_HASH: return "GNU_HASH"; |
93ebe586 | 4324 | case SHT_GROUP: return "GROUP"; |
67ce483b | 4325 | case SHT_SYMTAB_SHNDX: return "SYMTAB SECTION INDICES"; |
252b5132 RH |
4326 | case SHT_GNU_verdef: return "VERDEF"; |
4327 | case SHT_GNU_verneed: return "VERNEED"; | |
4328 | case SHT_GNU_versym: return "VERSYM"; | |
b34976b6 AM |
4329 | case 0x6ffffff0: return "VERSYM"; |
4330 | case 0x6ffffffc: return "VERDEF"; | |
252b5132 RH |
4331 | case 0x7ffffffd: return "AUXILIARY"; |
4332 | case 0x7fffffff: return "FILTER"; | |
047b2264 | 4333 | case SHT_GNU_LIBLIST: return "GNU_LIBLIST"; |
252b5132 RH |
4334 | |
4335 | default: | |
4336 | if ((sh_type >= SHT_LOPROC) && (sh_type <= SHT_HIPROC)) | |
4337 | { | |
dda8d76d | 4338 | switch (filedata->file_header.e_machine) |
252b5132 | 4339 | { |
53a346d8 CZ |
4340 | case EM_ARC: |
4341 | case EM_ARC_COMPACT: | |
4342 | case EM_ARC_COMPACT2: | |
4343 | result = get_arc_section_type_name (sh_type); | |
4344 | break; | |
252b5132 | 4345 | case EM_MIPS: |
4fe85591 | 4346 | case EM_MIPS_RS3_LE: |
252b5132 RH |
4347 | result = get_mips_section_type_name (sh_type); |
4348 | break; | |
103f02d3 UD |
4349 | case EM_PARISC: |
4350 | result = get_parisc_section_type_name (sh_type); | |
4351 | break; | |
4d6ed7c8 | 4352 | case EM_IA_64: |
dda8d76d | 4353 | result = get_ia64_section_type_name (filedata, sh_type); |
4d6ed7c8 | 4354 | break; |
d2b2c203 | 4355 | case EM_X86_64: |
8a9036a4 | 4356 | case EM_L1OM: |
7a9068fe | 4357 | case EM_K1OM: |
d2b2c203 DJ |
4358 | result = get_x86_64_section_type_name (sh_type); |
4359 | break; | |
a06ea964 NC |
4360 | case EM_AARCH64: |
4361 | result = get_aarch64_section_type_name (sh_type); | |
4362 | break; | |
40a18ebd NC |
4363 | case EM_ARM: |
4364 | result = get_arm_section_type_name (sh_type); | |
4365 | break; | |
40b36596 JM |
4366 | case EM_TI_C6000: |
4367 | result = get_tic6x_section_type_name (sh_type); | |
4368 | break; | |
13761a11 NC |
4369 | case EM_MSP430: |
4370 | result = get_msp430x_section_type_name (sh_type); | |
4371 | break; | |
fe944acf FT |
4372 | case EM_NFP: |
4373 | result = get_nfp_section_type_name (sh_type); | |
4374 | break; | |
685080f2 NC |
4375 | case EM_V800: |
4376 | case EM_V850: | |
4377 | case EM_CYGNUS_V850: | |
4378 | result = get_v850_section_type_name (sh_type); | |
4379 | break; | |
2dc8dd17 JW |
4380 | case EM_RISCV: |
4381 | result = get_riscv_section_type_name (sh_type); | |
4382 | break; | |
252b5132 RH |
4383 | default: |
4384 | result = NULL; | |
4385 | break; | |
4386 | } | |
4387 | ||
4388 | if (result != NULL) | |
4389 | return result; | |
4390 | ||
9fb71ee4 | 4391 | sprintf (buff, "LOPROC+%#x", sh_type - SHT_LOPROC); |
252b5132 RH |
4392 | } |
4393 | else if ((sh_type >= SHT_LOOS) && (sh_type <= SHT_HIOS)) | |
148b93f2 | 4394 | { |
dda8d76d | 4395 | switch (filedata->file_header.e_machine) |
148b93f2 NC |
4396 | { |
4397 | case EM_IA_64: | |
dda8d76d | 4398 | result = get_ia64_section_type_name (filedata, sh_type); |
148b93f2 NC |
4399 | break; |
4400 | default: | |
dda8d76d | 4401 | if (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_SOLARIS) |
fd85a6a1 NC |
4402 | result = get_solaris_section_type (sh_type); |
4403 | else | |
1b4b80bf NC |
4404 | { |
4405 | switch (sh_type) | |
4406 | { | |
4407 | case SHT_GNU_INCREMENTAL_INPUTS: result = "GNU_INCREMENTAL_INPUTS"; break; | |
4408 | case SHT_GNU_ATTRIBUTES: result = "GNU_ATTRIBUTES"; break; | |
4409 | case SHT_GNU_HASH: result = "GNU_HASH"; break; | |
4410 | case SHT_GNU_LIBLIST: result = "GNU_LIBLIST"; break; | |
4411 | default: | |
4412 | result = NULL; | |
4413 | break; | |
4414 | } | |
4415 | } | |
148b93f2 NC |
4416 | break; |
4417 | } | |
4418 | ||
4419 | if (result != NULL) | |
4420 | return result; | |
4421 | ||
9fb71ee4 | 4422 | sprintf (buff, "LOOS+%#x", sh_type - SHT_LOOS); |
148b93f2 | 4423 | } |
252b5132 | 4424 | else if ((sh_type >= SHT_LOUSER) && (sh_type <= SHT_HIUSER)) |
685080f2 | 4425 | { |
dda8d76d | 4426 | switch (filedata->file_header.e_machine) |
685080f2 NC |
4427 | { |
4428 | case EM_V800: | |
4429 | case EM_V850: | |
4430 | case EM_CYGNUS_V850: | |
9fb71ee4 | 4431 | result = get_v850_section_type_name (sh_type); |
a9fb83be | 4432 | break; |
685080f2 | 4433 | default: |
9fb71ee4 | 4434 | result = NULL; |
685080f2 NC |
4435 | break; |
4436 | } | |
4437 | ||
9fb71ee4 NC |
4438 | if (result != NULL) |
4439 | return result; | |
4440 | ||
4441 | sprintf (buff, "LOUSER+%#x", sh_type - SHT_LOUSER); | |
685080f2 | 4442 | } |
252b5132 | 4443 | else |
a7dbfd1c NC |
4444 | /* This message is probably going to be displayed in a 15 |
4445 | character wide field, so put the hex value first. */ | |
4446 | snprintf (buff, sizeof (buff), _("%08x: <unknown>"), sh_type); | |
103f02d3 | 4447 | |
252b5132 RH |
4448 | return buff; |
4449 | } | |
4450 | } | |
4451 | ||
2979dc34 | 4452 | #define OPTION_DEBUG_DUMP 512 |
2c610e4b | 4453 | #define OPTION_DYN_SYMS 513 |
fd2f0033 TT |
4454 | #define OPTION_DWARF_DEPTH 514 |
4455 | #define OPTION_DWARF_START 515 | |
4723351a | 4456 | #define OPTION_DWARF_CHECK 516 |
7d9813f1 NA |
4457 | #define OPTION_CTF_DUMP 517 |
4458 | #define OPTION_CTF_PARENT 518 | |
4459 | #define OPTION_CTF_SYMBOLS 519 | |
4460 | #define OPTION_CTF_STRINGS 520 | |
2979dc34 | 4461 | |
85b1c36d | 4462 | static struct option options[] = |
252b5132 | 4463 | { |
b34976b6 | 4464 | {"all", no_argument, 0, 'a'}, |
252b5132 RH |
4465 | {"file-header", no_argument, 0, 'h'}, |
4466 | {"program-headers", no_argument, 0, 'l'}, | |
b34976b6 AM |
4467 | {"headers", no_argument, 0, 'e'}, |
4468 | {"histogram", no_argument, 0, 'I'}, | |
4469 | {"segments", no_argument, 0, 'l'}, | |
4470 | {"sections", no_argument, 0, 'S'}, | |
252b5132 | 4471 | {"section-headers", no_argument, 0, 'S'}, |
f5842774 | 4472 | {"section-groups", no_argument, 0, 'g'}, |
5477e8a0 | 4473 | {"section-details", no_argument, 0, 't'}, |
595cf52e | 4474 | {"full-section-name",no_argument, 0, 'N'}, |
b34976b6 AM |
4475 | {"symbols", no_argument, 0, 's'}, |
4476 | {"syms", no_argument, 0, 's'}, | |
2c610e4b | 4477 | {"dyn-syms", no_argument, 0, OPTION_DYN_SYMS}, |
b34976b6 AM |
4478 | {"relocs", no_argument, 0, 'r'}, |
4479 | {"notes", no_argument, 0, 'n'}, | |
4480 | {"dynamic", no_argument, 0, 'd'}, | |
a952a375 | 4481 | {"arch-specific", no_argument, 0, 'A'}, |
252b5132 RH |
4482 | {"version-info", no_argument, 0, 'V'}, |
4483 | {"use-dynamic", no_argument, 0, 'D'}, | |
09c11c86 | 4484 | {"unwind", no_argument, 0, 'u'}, |
4145f1d5 | 4485 | {"archive-index", no_argument, 0, 'c'}, |
b34976b6 | 4486 | {"hex-dump", required_argument, 0, 'x'}, |
cf13d699 | 4487 | {"relocated-dump", required_argument, 0, 'R'}, |
09c11c86 | 4488 | {"string-dump", required_argument, 0, 'p'}, |
0e602686 | 4489 | {"decompress", no_argument, 0, 'z'}, |
252b5132 RH |
4490 | #ifdef SUPPORT_DISASSEMBLY |
4491 | {"instruction-dump", required_argument, 0, 'i'}, | |
4492 | #endif | |
cf13d699 | 4493 | {"debug-dump", optional_argument, 0, OPTION_DEBUG_DUMP}, |
252b5132 | 4494 | |
fd2f0033 TT |
4495 | {"dwarf-depth", required_argument, 0, OPTION_DWARF_DEPTH}, |
4496 | {"dwarf-start", required_argument, 0, OPTION_DWARF_START}, | |
4723351a | 4497 | {"dwarf-check", no_argument, 0, OPTION_DWARF_CHECK}, |
fd2f0033 | 4498 | |
d344b407 | 4499 | {"ctf", required_argument, 0, OPTION_CTF_DUMP}, |
7d9813f1 NA |
4500 | |
4501 | {"ctf-symbols", required_argument, 0, OPTION_CTF_SYMBOLS}, | |
4502 | {"ctf-strings", required_argument, 0, OPTION_CTF_STRINGS}, | |
4503 | {"ctf-parent", required_argument, 0, OPTION_CTF_PARENT}, | |
4504 | ||
b34976b6 AM |
4505 | {"version", no_argument, 0, 'v'}, |
4506 | {"wide", no_argument, 0, 'W'}, | |
4507 | {"help", no_argument, 0, 'H'}, | |
4508 | {0, no_argument, 0, 0} | |
252b5132 RH |
4509 | }; |
4510 | ||
4511 | static void | |
2cf0635d | 4512 | usage (FILE * stream) |
252b5132 | 4513 | { |
92f01d61 JM |
4514 | fprintf (stream, _("Usage: readelf <option(s)> elf-file(s)\n")); |
4515 | fprintf (stream, _(" Display information about the contents of ELF format files\n")); | |
4516 | fprintf (stream, _(" Options are:\n\ | |
8b53311e NC |
4517 | -a --all Equivalent to: -h -l -S -s -r -d -V -A -I\n\ |
4518 | -h --file-header Display the ELF file header\n\ | |
4519 | -l --program-headers Display the program headers\n\ | |
4520 | --segments An alias for --program-headers\n\ | |
4521 | -S --section-headers Display the sections' header\n\ | |
4522 | --sections An alias for --section-headers\n\ | |
f5842774 | 4523 | -g --section-groups Display the section groups\n\ |
5477e8a0 | 4524 | -t --section-details Display the section details\n\ |
8b53311e NC |
4525 | -e --headers Equivalent to: -h -l -S\n\ |
4526 | -s --syms Display the symbol table\n\ | |
3f08eb35 | 4527 | --symbols An alias for --syms\n\ |
2c610e4b | 4528 | --dyn-syms Display the dynamic symbol table\n\ |
8b53311e NC |
4529 | -n --notes Display the core notes (if present)\n\ |
4530 | -r --relocs Display the relocations (if present)\n\ | |
4531 | -u --unwind Display the unwind info (if present)\n\ | |
b2d38a17 | 4532 | -d --dynamic Display the dynamic section (if present)\n\ |
8b53311e | 4533 | -V --version-info Display the version sections (if present)\n\ |
1b31d05e | 4534 | -A --arch-specific Display architecture specific information (if any)\n\ |
4145f1d5 | 4535 | -c --archive-index Display the symbol/file index in an archive\n\ |
8b53311e | 4536 | -D --use-dynamic Use the dynamic section info when displaying symbols\n\ |
09c11c86 NC |
4537 | -x --hex-dump=<number|name>\n\ |
4538 | Dump the contents of section <number|name> as bytes\n\ | |
4539 | -p --string-dump=<number|name>\n\ | |
4540 | Dump the contents of section <number|name> as strings\n\ | |
cf13d699 NC |
4541 | -R --relocated-dump=<number|name>\n\ |
4542 | Dump the contents of section <number|name> as relocated bytes\n\ | |
0e602686 | 4543 | -z --decompress Decompress section before dumping it\n\ |
dda8d76d | 4544 | -w[lLiaprmfFsoRtUuTgAckK] or\n\ |
1ed06042 | 4545 | --debug-dump[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,\n\ |
6f875884 | 4546 | =frames-interp,=str,=loc,=Ranges,=pubtypes,\n\ |
657d0d47 | 4547 | =gdb_index,=trace_info,=trace_abbrev,=trace_aranges,\n\ |
dda8d76d NC |
4548 | =addr,=cu_index,=links,=follow-links]\n\ |
4549 | Display the contents of DWARF debug sections\n")); | |
fd2f0033 TT |
4550 | fprintf (stream, _("\ |
4551 | --dwarf-depth=N Do not display DIEs at depth N or greater\n\ | |
4552 | --dwarf-start=N Display DIEs starting with N, at the same depth\n\ | |
4553 | or deeper\n")); | |
7d9813f1 NA |
4554 | fprintf (stream, _("\ |
4555 | --ctf=<number|name> Display CTF info from section <number|name>\n\ | |
4556 | --ctf-parent=<number|name>\n\ | |
4557 | Use section <number|name> as the CTF parent\n\n\ | |
4558 | --ctf-symbols=<number|name>\n\ | |
4559 | Use section <number|name> as the CTF external symtab\n\n\ | |
4560 | --ctf-strings=<number|name>\n\ | |
4561 | Use section <number|name> as the CTF external strtab\n\n")); | |
4562 | ||
252b5132 | 4563 | #ifdef SUPPORT_DISASSEMBLY |
92f01d61 | 4564 | fprintf (stream, _("\ |
09c11c86 NC |
4565 | -i --instruction-dump=<number|name>\n\ |
4566 | Disassemble the contents of section <number|name>\n")); | |
252b5132 | 4567 | #endif |
92f01d61 | 4568 | fprintf (stream, _("\ |
8b53311e NC |
4569 | -I --histogram Display histogram of bucket list lengths\n\ |
4570 | -W --wide Allow output width to exceed 80 characters\n\ | |
07012eee | 4571 | @<file> Read options from <file>\n\ |
8b53311e NC |
4572 | -H --help Display this information\n\ |
4573 | -v --version Display the version number of readelf\n")); | |
1118d252 | 4574 | |
92f01d61 JM |
4575 | if (REPORT_BUGS_TO[0] && stream == stdout) |
4576 | fprintf (stdout, _("Report bugs to %s\n"), REPORT_BUGS_TO); | |
252b5132 | 4577 | |
92f01d61 | 4578 | exit (stream == stdout ? 0 : 1); |
252b5132 RH |
4579 | } |
4580 | ||
18bd398b NC |
4581 | /* Record the fact that the user wants the contents of section number |
4582 | SECTION to be displayed using the method(s) encoded as flags bits | |
4583 | in TYPE. Note, TYPE can be zero if we are creating the array for | |
4584 | the first time. */ | |
4585 | ||
252b5132 | 4586 | static void |
6431e409 AM |
4587 | request_dump_bynumber (struct dump_data *dumpdata, |
4588 | unsigned int section, dump_type type) | |
252b5132 | 4589 | { |
6431e409 | 4590 | if (section >= dumpdata->num_dump_sects) |
252b5132 | 4591 | { |
2cf0635d | 4592 | dump_type * new_dump_sects; |
252b5132 | 4593 | |
3f5e193b | 4594 | new_dump_sects = (dump_type *) calloc (section + 1, |
dda8d76d | 4595 | sizeof (* new_dump_sects)); |
252b5132 RH |
4596 | |
4597 | if (new_dump_sects == NULL) | |
591a748a | 4598 | error (_("Out of memory allocating dump request table.\n")); |
252b5132 RH |
4599 | else |
4600 | { | |
6431e409 | 4601 | if (dumpdata->dump_sects) |
21b65bac NC |
4602 | { |
4603 | /* Copy current flag settings. */ | |
6431e409 AM |
4604 | memcpy (new_dump_sects, dumpdata->dump_sects, |
4605 | dumpdata->num_dump_sects * sizeof (* new_dump_sects)); | |
252b5132 | 4606 | |
6431e409 | 4607 | free (dumpdata->dump_sects); |
21b65bac | 4608 | } |
252b5132 | 4609 | |
6431e409 AM |
4610 | dumpdata->dump_sects = new_dump_sects; |
4611 | dumpdata->num_dump_sects = section + 1; | |
252b5132 RH |
4612 | } |
4613 | } | |
4614 | ||
6431e409 AM |
4615 | if (dumpdata->dump_sects) |
4616 | dumpdata->dump_sects[section] |= type; | |
252b5132 RH |
4617 | } |
4618 | ||
aef1f6d0 DJ |
4619 | /* Request a dump by section name. */ |
4620 | ||
4621 | static void | |
2cf0635d | 4622 | request_dump_byname (const char * section, dump_type type) |
aef1f6d0 | 4623 | { |
2cf0635d | 4624 | struct dump_list_entry * new_request; |
aef1f6d0 | 4625 | |
3f5e193b NC |
4626 | new_request = (struct dump_list_entry *) |
4627 | malloc (sizeof (struct dump_list_entry)); | |
aef1f6d0 | 4628 | if (!new_request) |
591a748a | 4629 | error (_("Out of memory allocating dump request table.\n")); |
aef1f6d0 DJ |
4630 | |
4631 | new_request->name = strdup (section); | |
4632 | if (!new_request->name) | |
591a748a | 4633 | error (_("Out of memory allocating dump request table.\n")); |
aef1f6d0 DJ |
4634 | |
4635 | new_request->type = type; | |
4636 | ||
4637 | new_request->next = dump_sects_byname; | |
4638 | dump_sects_byname = new_request; | |
4639 | } | |
4640 | ||
cf13d699 | 4641 | static inline void |
6431e409 | 4642 | request_dump (struct dump_data *dumpdata, dump_type type) |
cf13d699 NC |
4643 | { |
4644 | int section; | |
4645 | char * cp; | |
4646 | ||
4647 | do_dump++; | |
4648 | section = strtoul (optarg, & cp, 0); | |
4649 | ||
4650 | if (! *cp && section >= 0) | |
6431e409 | 4651 | request_dump_bynumber (dumpdata, section, type); |
cf13d699 NC |
4652 | else |
4653 | request_dump_byname (optarg, type); | |
4654 | } | |
4655 | ||
252b5132 | 4656 | static void |
6431e409 | 4657 | parse_args (struct dump_data *dumpdata, int argc, char ** argv) |
252b5132 RH |
4658 | { |
4659 | int c; | |
4660 | ||
4661 | if (argc < 2) | |
92f01d61 | 4662 | usage (stderr); |
252b5132 RH |
4663 | |
4664 | while ((c = getopt_long | |
0e602686 | 4665 | (argc, argv, "ADHINR:SVWacdeghi:lnp:rstuvw::x:z", options, NULL)) != EOF) |
252b5132 | 4666 | { |
252b5132 RH |
4667 | switch (c) |
4668 | { | |
4669 | case 0: | |
4670 | /* Long options. */ | |
4671 | break; | |
4672 | case 'H': | |
92f01d61 | 4673 | usage (stdout); |
252b5132 RH |
4674 | break; |
4675 | ||
4676 | case 'a': | |
32ec8896 NC |
4677 | do_syms = TRUE; |
4678 | do_reloc = TRUE; | |
4679 | do_unwind = TRUE; | |
4680 | do_dynamic = TRUE; | |
4681 | do_header = TRUE; | |
4682 | do_sections = TRUE; | |
4683 | do_section_groups = TRUE; | |
4684 | do_segments = TRUE; | |
4685 | do_version = TRUE; | |
4686 | do_histogram = TRUE; | |
4687 | do_arch = TRUE; | |
4688 | do_notes = TRUE; | |
252b5132 | 4689 | break; |
f5842774 | 4690 | case 'g': |
32ec8896 | 4691 | do_section_groups = TRUE; |
f5842774 | 4692 | break; |
5477e8a0 | 4693 | case 't': |
595cf52e | 4694 | case 'N': |
32ec8896 NC |
4695 | do_sections = TRUE; |
4696 | do_section_details = TRUE; | |
595cf52e | 4697 | break; |
252b5132 | 4698 | case 'e': |
32ec8896 NC |
4699 | do_header = TRUE; |
4700 | do_sections = TRUE; | |
4701 | do_segments = TRUE; | |
252b5132 | 4702 | break; |
a952a375 | 4703 | case 'A': |
32ec8896 | 4704 | do_arch = TRUE; |
a952a375 | 4705 | break; |
252b5132 | 4706 | case 'D': |
32ec8896 | 4707 | do_using_dynamic = TRUE; |
252b5132 RH |
4708 | break; |
4709 | case 'r': | |
32ec8896 | 4710 | do_reloc = TRUE; |
252b5132 | 4711 | break; |
4d6ed7c8 | 4712 | case 'u': |
32ec8896 | 4713 | do_unwind = TRUE; |
4d6ed7c8 | 4714 | break; |
252b5132 | 4715 | case 'h': |
32ec8896 | 4716 | do_header = TRUE; |
252b5132 RH |
4717 | break; |
4718 | case 'l': | |
32ec8896 | 4719 | do_segments = TRUE; |
252b5132 RH |
4720 | break; |
4721 | case 's': | |
32ec8896 | 4722 | do_syms = TRUE; |
252b5132 RH |
4723 | break; |
4724 | case 'S': | |
32ec8896 | 4725 | do_sections = TRUE; |
252b5132 RH |
4726 | break; |
4727 | case 'd': | |
32ec8896 | 4728 | do_dynamic = TRUE; |
252b5132 | 4729 | break; |
a952a375 | 4730 | case 'I': |
32ec8896 | 4731 | do_histogram = TRUE; |
a952a375 | 4732 | break; |
779fe533 | 4733 | case 'n': |
32ec8896 | 4734 | do_notes = TRUE; |
779fe533 | 4735 | break; |
4145f1d5 | 4736 | case 'c': |
32ec8896 | 4737 | do_archive_index = TRUE; |
4145f1d5 | 4738 | break; |
252b5132 | 4739 | case 'x': |
6431e409 | 4740 | request_dump (dumpdata, HEX_DUMP); |
aef1f6d0 | 4741 | break; |
09c11c86 | 4742 | case 'p': |
6431e409 | 4743 | request_dump (dumpdata, STRING_DUMP); |
cf13d699 NC |
4744 | break; |
4745 | case 'R': | |
6431e409 | 4746 | request_dump (dumpdata, RELOC_DUMP); |
09c11c86 | 4747 | break; |
0e602686 | 4748 | case 'z': |
32ec8896 | 4749 | decompress_dumps = TRUE; |
0e602686 | 4750 | break; |
252b5132 | 4751 | case 'w': |
32ec8896 | 4752 | do_dump = TRUE; |
252b5132 | 4753 | if (optarg == 0) |
613ff48b | 4754 | { |
32ec8896 | 4755 | do_debugging = TRUE; |
613ff48b CC |
4756 | dwarf_select_sections_all (); |
4757 | } | |
252b5132 RH |
4758 | else |
4759 | { | |
32ec8896 | 4760 | do_debugging = FALSE; |
4cb93e3b | 4761 | dwarf_select_sections_by_letters (optarg); |
252b5132 RH |
4762 | } |
4763 | break; | |
2979dc34 | 4764 | case OPTION_DEBUG_DUMP: |
32ec8896 | 4765 | do_dump = TRUE; |
2979dc34 | 4766 | if (optarg == 0) |
32ec8896 | 4767 | do_debugging = TRUE; |
2979dc34 JJ |
4768 | else |
4769 | { | |
32ec8896 | 4770 | do_debugging = FALSE; |
4cb93e3b | 4771 | dwarf_select_sections_by_names (optarg); |
2979dc34 JJ |
4772 | } |
4773 | break; | |
fd2f0033 TT |
4774 | case OPTION_DWARF_DEPTH: |
4775 | { | |
4776 | char *cp; | |
4777 | ||
4778 | dwarf_cutoff_level = strtoul (optarg, & cp, 0); | |
4779 | } | |
4780 | break; | |
4781 | case OPTION_DWARF_START: | |
4782 | { | |
4783 | char *cp; | |
4784 | ||
4785 | dwarf_start_die = strtoul (optarg, & cp, 0); | |
4786 | } | |
4787 | break; | |
4723351a | 4788 | case OPTION_DWARF_CHECK: |
32ec8896 | 4789 | dwarf_check = TRUE; |
4723351a | 4790 | break; |
7d9813f1 NA |
4791 | case OPTION_CTF_DUMP: |
4792 | do_ctf = TRUE; | |
6431e409 | 4793 | request_dump (dumpdata, CTF_DUMP); |
7d9813f1 NA |
4794 | break; |
4795 | case OPTION_CTF_SYMBOLS: | |
4796 | dump_ctf_symtab_name = strdup (optarg); | |
4797 | break; | |
4798 | case OPTION_CTF_STRINGS: | |
4799 | dump_ctf_strtab_name = strdup (optarg); | |
4800 | break; | |
4801 | case OPTION_CTF_PARENT: | |
4802 | dump_ctf_parent_name = strdup (optarg); | |
4803 | break; | |
2c610e4b | 4804 | case OPTION_DYN_SYMS: |
32ec8896 | 4805 | do_dyn_syms = TRUE; |
2c610e4b | 4806 | break; |
252b5132 RH |
4807 | #ifdef SUPPORT_DISASSEMBLY |
4808 | case 'i': | |
6431e409 | 4809 | request_dump (dumpdata, DISASS_DUMP); |
cf13d699 | 4810 | break; |
252b5132 RH |
4811 | #endif |
4812 | case 'v': | |
4813 | print_version (program_name); | |
4814 | break; | |
4815 | case 'V': | |
32ec8896 | 4816 | do_version = TRUE; |
252b5132 | 4817 | break; |
d974e256 | 4818 | case 'W': |
32ec8896 | 4819 | do_wide = TRUE; |
d974e256 | 4820 | break; |
252b5132 | 4821 | default: |
252b5132 RH |
4822 | /* xgettext:c-format */ |
4823 | error (_("Invalid option '-%c'\n"), c); | |
1a0670f3 | 4824 | /* Fall through. */ |
252b5132 | 4825 | case '?': |
92f01d61 | 4826 | usage (stderr); |
252b5132 RH |
4827 | } |
4828 | } | |
4829 | ||
4d6ed7c8 | 4830 | if (!do_dynamic && !do_syms && !do_reloc && !do_unwind && !do_sections |
252b5132 | 4831 | && !do_segments && !do_header && !do_dump && !do_version |
f5842774 | 4832 | && !do_histogram && !do_debugging && !do_arch && !do_notes |
2c610e4b L |
4833 | && !do_section_groups && !do_archive_index |
4834 | && !do_dyn_syms) | |
92f01d61 | 4835 | usage (stderr); |
252b5132 RH |
4836 | } |
4837 | ||
4838 | static const char * | |
d3ba0551 | 4839 | get_elf_class (unsigned int elf_class) |
252b5132 | 4840 | { |
b34976b6 | 4841 | static char buff[32]; |
103f02d3 | 4842 | |
252b5132 RH |
4843 | switch (elf_class) |
4844 | { | |
4845 | case ELFCLASSNONE: return _("none"); | |
e3c8793a NC |
4846 | case ELFCLASS32: return "ELF32"; |
4847 | case ELFCLASS64: return "ELF64"; | |
ab5e7794 | 4848 | default: |
e9e44622 | 4849 | snprintf (buff, sizeof (buff), _("<unknown: %x>"), elf_class); |
ab5e7794 | 4850 | return buff; |
252b5132 RH |
4851 | } |
4852 | } | |
4853 | ||
4854 | static const char * | |
d3ba0551 | 4855 | get_data_encoding (unsigned int encoding) |
252b5132 | 4856 | { |
b34976b6 | 4857 | static char buff[32]; |
103f02d3 | 4858 | |
252b5132 RH |
4859 | switch (encoding) |
4860 | { | |
4861 | case ELFDATANONE: return _("none"); | |
33c63f9d CM |
4862 | case ELFDATA2LSB: return _("2's complement, little endian"); |
4863 | case ELFDATA2MSB: return _("2's complement, big endian"); | |
103f02d3 | 4864 | default: |
e9e44622 | 4865 | snprintf (buff, sizeof (buff), _("<unknown: %x>"), encoding); |
ab5e7794 | 4866 | return buff; |
252b5132 RH |
4867 | } |
4868 | } | |
4869 | ||
dda8d76d | 4870 | /* Decode the data held in 'filedata->file_header'. */ |
ee42cf8c | 4871 | |
32ec8896 | 4872 | static bfd_boolean |
dda8d76d | 4873 | process_file_header (Filedata * filedata) |
252b5132 | 4874 | { |
dda8d76d NC |
4875 | Elf_Internal_Ehdr * header = & filedata->file_header; |
4876 | ||
4877 | if ( header->e_ident[EI_MAG0] != ELFMAG0 | |
4878 | || header->e_ident[EI_MAG1] != ELFMAG1 | |
4879 | || header->e_ident[EI_MAG2] != ELFMAG2 | |
4880 | || header->e_ident[EI_MAG3] != ELFMAG3) | |
252b5132 RH |
4881 | { |
4882 | error | |
4883 | (_("Not an ELF file - it has the wrong magic bytes at the start\n")); | |
32ec8896 | 4884 | return FALSE; |
252b5132 RH |
4885 | } |
4886 | ||
955ff7fc | 4887 | init_dwarf_regnames_by_elf_machine_code (header->e_machine); |
2dc4cec1 | 4888 | |
252b5132 RH |
4889 | if (do_header) |
4890 | { | |
32ec8896 | 4891 | unsigned i; |
252b5132 RH |
4892 | |
4893 | printf (_("ELF Header:\n")); | |
4894 | printf (_(" Magic: ")); | |
b34976b6 | 4895 | for (i = 0; i < EI_NIDENT; i++) |
dda8d76d | 4896 | printf ("%2.2x ", header->e_ident[i]); |
252b5132 RH |
4897 | printf ("\n"); |
4898 | printf (_(" Class: %s\n"), | |
dda8d76d | 4899 | get_elf_class (header->e_ident[EI_CLASS])); |
252b5132 | 4900 | printf (_(" Data: %s\n"), |
dda8d76d | 4901 | get_data_encoding (header->e_ident[EI_DATA])); |
e8a64888 | 4902 | printf (_(" Version: %d%s\n"), |
dda8d76d NC |
4903 | header->e_ident[EI_VERSION], |
4904 | (header->e_ident[EI_VERSION] == EV_CURRENT | |
e8a64888 | 4905 | ? _(" (current)") |
dda8d76d | 4906 | : (header->e_ident[EI_VERSION] != EV_NONE |
e8a64888 | 4907 | ? _(" <unknown>") |
789be9f7 | 4908 | : ""))); |
252b5132 | 4909 | printf (_(" OS/ABI: %s\n"), |
dda8d76d | 4910 | get_osabi_name (filedata, header->e_ident[EI_OSABI])); |
252b5132 | 4911 | printf (_(" ABI Version: %d\n"), |
dda8d76d | 4912 | header->e_ident[EI_ABIVERSION]); |
252b5132 | 4913 | printf (_(" Type: %s\n"), |
dda8d76d | 4914 | get_file_type (header->e_type)); |
252b5132 | 4915 | printf (_(" Machine: %s\n"), |
dda8d76d | 4916 | get_machine_name (header->e_machine)); |
252b5132 | 4917 | printf (_(" Version: 0x%lx\n"), |
e8a64888 | 4918 | header->e_version); |
76da6bbe | 4919 | |
f7a99963 | 4920 | printf (_(" Entry point address: ")); |
e8a64888 | 4921 | print_vma (header->e_entry, PREFIX_HEX); |
f7a99963 | 4922 | printf (_("\n Start of program headers: ")); |
e8a64888 | 4923 | print_vma (header->e_phoff, DEC); |
f7a99963 | 4924 | printf (_(" (bytes into file)\n Start of section headers: ")); |
e8a64888 | 4925 | print_vma (header->e_shoff, DEC); |
f7a99963 | 4926 | printf (_(" (bytes into file)\n")); |
76da6bbe | 4927 | |
252b5132 | 4928 | printf (_(" Flags: 0x%lx%s\n"), |
e8a64888 | 4929 | header->e_flags, |
dda8d76d | 4930 | get_machine_flags (filedata, header->e_flags, header->e_machine)); |
e8a64888 AM |
4931 | printf (_(" Size of this header: %u (bytes)\n"), |
4932 | header->e_ehsize); | |
4933 | printf (_(" Size of program headers: %u (bytes)\n"), | |
4934 | header->e_phentsize); | |
4935 | printf (_(" Number of program headers: %u"), | |
4936 | header->e_phnum); | |
dda8d76d NC |
4937 | if (filedata->section_headers != NULL |
4938 | && header->e_phnum == PN_XNUM | |
4939 | && filedata->section_headers[0].sh_info != 0) | |
e8a64888 AM |
4940 | { |
4941 | header->e_phnum = filedata->section_headers[0].sh_info; | |
4942 | printf (" (%u)", header->e_phnum); | |
4943 | } | |
2046a35d | 4944 | putc ('\n', stdout); |
e8a64888 AM |
4945 | printf (_(" Size of section headers: %u (bytes)\n"), |
4946 | header->e_shentsize); | |
4947 | printf (_(" Number of section headers: %u"), | |
4948 | header->e_shnum); | |
dda8d76d | 4949 | if (filedata->section_headers != NULL && header->e_shnum == SHN_UNDEF) |
e8a64888 AM |
4950 | { |
4951 | header->e_shnum = filedata->section_headers[0].sh_size; | |
4952 | printf (" (%u)", header->e_shnum); | |
4953 | } | |
560f3c1c | 4954 | putc ('\n', stdout); |
e8a64888 AM |
4955 | printf (_(" Section header string table index: %u"), |
4956 | header->e_shstrndx); | |
dda8d76d NC |
4957 | if (filedata->section_headers != NULL |
4958 | && header->e_shstrndx == (SHN_XINDEX & 0xffff)) | |
e8a64888 AM |
4959 | { |
4960 | header->e_shstrndx = filedata->section_headers[0].sh_link; | |
4961 | printf (" (%u)", header->e_shstrndx); | |
4962 | } | |
4963 | if (header->e_shstrndx != SHN_UNDEF | |
4964 | && header->e_shstrndx >= header->e_shnum) | |
4965 | { | |
4966 | header->e_shstrndx = SHN_UNDEF; | |
4967 | printf (_(" <corrupt: out of range>")); | |
4968 | } | |
560f3c1c AM |
4969 | putc ('\n', stdout); |
4970 | } | |
4971 | ||
dda8d76d | 4972 | if (filedata->section_headers != NULL) |
560f3c1c | 4973 | { |
dda8d76d NC |
4974 | if (header->e_phnum == PN_XNUM |
4975 | && filedata->section_headers[0].sh_info != 0) | |
4976 | header->e_phnum = filedata->section_headers[0].sh_info; | |
4977 | if (header->e_shnum == SHN_UNDEF) | |
4978 | header->e_shnum = filedata->section_headers[0].sh_size; | |
4979 | if (header->e_shstrndx == (SHN_XINDEX & 0xffff)) | |
4980 | header->e_shstrndx = filedata->section_headers[0].sh_link; | |
9c1ce108 | 4981 | if (header->e_shstrndx >= header->e_shnum) |
dda8d76d NC |
4982 | header->e_shstrndx = SHN_UNDEF; |
4983 | free (filedata->section_headers); | |
4984 | filedata->section_headers = NULL; | |
252b5132 | 4985 | } |
103f02d3 | 4986 | |
32ec8896 | 4987 | return TRUE; |
9ea033b2 NC |
4988 | } |
4989 | ||
dda8d76d NC |
4990 | /* Read in the program headers from FILEDATA and store them in PHEADERS. |
4991 | Returns TRUE upon success, FALSE otherwise. Loads 32-bit headers. */ | |
4992 | ||
e0a31db1 | 4993 | static bfd_boolean |
dda8d76d | 4994 | get_32bit_program_headers (Filedata * filedata, Elf_Internal_Phdr * pheaders) |
9ea033b2 | 4995 | { |
2cf0635d NC |
4996 | Elf32_External_Phdr * phdrs; |
4997 | Elf32_External_Phdr * external; | |
4998 | Elf_Internal_Phdr * internal; | |
b34976b6 | 4999 | unsigned int i; |
dda8d76d NC |
5000 | unsigned int size = filedata->file_header.e_phentsize; |
5001 | unsigned int num = filedata->file_header.e_phnum; | |
e0a31db1 NC |
5002 | |
5003 | /* PR binutils/17531: Cope with unexpected section header sizes. */ | |
5004 | if (size == 0 || num == 0) | |
5005 | return FALSE; | |
5006 | if (size < sizeof * phdrs) | |
5007 | { | |
5008 | error (_("The e_phentsize field in the ELF header is less than the size of an ELF program header\n")); | |
5009 | return FALSE; | |
5010 | } | |
5011 | if (size > sizeof * phdrs) | |
5012 | warn (_("The e_phentsize field in the ELF header is larger than the size of an ELF program header\n")); | |
103f02d3 | 5013 | |
dda8d76d | 5014 | phdrs = (Elf32_External_Phdr *) get_data (NULL, filedata, filedata->file_header.e_phoff, |
e0a31db1 NC |
5015 | size, num, _("program headers")); |
5016 | if (phdrs == NULL) | |
5017 | return FALSE; | |
9ea033b2 | 5018 | |
91d6fa6a | 5019 | for (i = 0, internal = pheaders, external = phdrs; |
dda8d76d | 5020 | i < filedata->file_header.e_phnum; |
b34976b6 | 5021 | i++, internal++, external++) |
252b5132 | 5022 | { |
9ea033b2 NC |
5023 | internal->p_type = BYTE_GET (external->p_type); |
5024 | internal->p_offset = BYTE_GET (external->p_offset); | |
5025 | internal->p_vaddr = BYTE_GET (external->p_vaddr); | |
5026 | internal->p_paddr = BYTE_GET (external->p_paddr); | |
5027 | internal->p_filesz = BYTE_GET (external->p_filesz); | |
5028 | internal->p_memsz = BYTE_GET (external->p_memsz); | |
5029 | internal->p_flags = BYTE_GET (external->p_flags); | |
5030 | internal->p_align = BYTE_GET (external->p_align); | |
252b5132 RH |
5031 | } |
5032 | ||
9ea033b2 | 5033 | free (phdrs); |
e0a31db1 | 5034 | return TRUE; |
252b5132 RH |
5035 | } |
5036 | ||
dda8d76d NC |
5037 | /* Read in the program headers from FILEDATA and store them in PHEADERS. |
5038 | Returns TRUE upon success, FALSE otherwise. Loads 64-bit headers. */ | |
5039 | ||
e0a31db1 | 5040 | static bfd_boolean |
dda8d76d | 5041 | get_64bit_program_headers (Filedata * filedata, Elf_Internal_Phdr * pheaders) |
9ea033b2 | 5042 | { |
2cf0635d NC |
5043 | Elf64_External_Phdr * phdrs; |
5044 | Elf64_External_Phdr * external; | |
5045 | Elf_Internal_Phdr * internal; | |
b34976b6 | 5046 | unsigned int i; |
dda8d76d NC |
5047 | unsigned int size = filedata->file_header.e_phentsize; |
5048 | unsigned int num = filedata->file_header.e_phnum; | |
e0a31db1 NC |
5049 | |
5050 | /* PR binutils/17531: Cope with unexpected section header sizes. */ | |
5051 | if (size == 0 || num == 0) | |
5052 | return FALSE; | |
5053 | if (size < sizeof * phdrs) | |
5054 | { | |
5055 | error (_("The e_phentsize field in the ELF header is less than the size of an ELF program header\n")); | |
5056 | return FALSE; | |
5057 | } | |
5058 | if (size > sizeof * phdrs) | |
5059 | warn (_("The e_phentsize field in the ELF header is larger than the size of an ELF program header\n")); | |
103f02d3 | 5060 | |
dda8d76d | 5061 | phdrs = (Elf64_External_Phdr *) get_data (NULL, filedata, filedata->file_header.e_phoff, |
e0a31db1 | 5062 | size, num, _("program headers")); |
a6e9f9df | 5063 | if (!phdrs) |
e0a31db1 | 5064 | return FALSE; |
9ea033b2 | 5065 | |
91d6fa6a | 5066 | for (i = 0, internal = pheaders, external = phdrs; |
dda8d76d | 5067 | i < filedata->file_header.e_phnum; |
b34976b6 | 5068 | i++, internal++, external++) |
9ea033b2 NC |
5069 | { |
5070 | internal->p_type = BYTE_GET (external->p_type); | |
5071 | internal->p_flags = BYTE_GET (external->p_flags); | |
66543521 AM |
5072 | internal->p_offset = BYTE_GET (external->p_offset); |
5073 | internal->p_vaddr = BYTE_GET (external->p_vaddr); | |
5074 | internal->p_paddr = BYTE_GET (external->p_paddr); | |
5075 | internal->p_filesz = BYTE_GET (external->p_filesz); | |
5076 | internal->p_memsz = BYTE_GET (external->p_memsz); | |
5077 | internal->p_align = BYTE_GET (external->p_align); | |
9ea033b2 NC |
5078 | } |
5079 | ||
5080 | free (phdrs); | |
e0a31db1 | 5081 | return TRUE; |
9ea033b2 | 5082 | } |
252b5132 | 5083 | |
32ec8896 | 5084 | /* Returns TRUE if the program headers were read into `program_headers'. */ |
d93f0186 | 5085 | |
32ec8896 | 5086 | static bfd_boolean |
dda8d76d | 5087 | get_program_headers (Filedata * filedata) |
d93f0186 | 5088 | { |
2cf0635d | 5089 | Elf_Internal_Phdr * phdrs; |
d93f0186 NC |
5090 | |
5091 | /* Check cache of prior read. */ | |
dda8d76d | 5092 | if (filedata->program_headers != NULL) |
32ec8896 | 5093 | return TRUE; |
d93f0186 | 5094 | |
82156ab7 NC |
5095 | /* Be kind to memory checkers by looking for |
5096 | e_phnum values which we know must be invalid. */ | |
dda8d76d | 5097 | if (filedata->file_header.e_phnum |
82156ab7 | 5098 | * (is_32bit_elf ? sizeof (Elf32_External_Phdr) : sizeof (Elf64_External_Phdr)) |
dda8d76d | 5099 | >= filedata->file_size) |
82156ab7 NC |
5100 | { |
5101 | error (_("Too many program headers - %#x - the file is not that big\n"), | |
dda8d76d | 5102 | filedata->file_header.e_phnum); |
82156ab7 NC |
5103 | return FALSE; |
5104 | } | |
d93f0186 | 5105 | |
dda8d76d | 5106 | phdrs = (Elf_Internal_Phdr *) cmalloc (filedata->file_header.e_phnum, |
82156ab7 | 5107 | sizeof (Elf_Internal_Phdr)); |
d93f0186 NC |
5108 | if (phdrs == NULL) |
5109 | { | |
8b73c356 | 5110 | error (_("Out of memory reading %u program headers\n"), |
dda8d76d | 5111 | filedata->file_header.e_phnum); |
32ec8896 | 5112 | return FALSE; |
d93f0186 NC |
5113 | } |
5114 | ||
5115 | if (is_32bit_elf | |
dda8d76d NC |
5116 | ? get_32bit_program_headers (filedata, phdrs) |
5117 | : get_64bit_program_headers (filedata, phdrs)) | |
d93f0186 | 5118 | { |
dda8d76d | 5119 | filedata->program_headers = phdrs; |
32ec8896 | 5120 | return TRUE; |
d93f0186 NC |
5121 | } |
5122 | ||
5123 | free (phdrs); | |
32ec8896 | 5124 | return FALSE; |
d93f0186 NC |
5125 | } |
5126 | ||
32ec8896 | 5127 | /* Returns TRUE if the program headers were loaded. */ |
2f62977e | 5128 | |
32ec8896 | 5129 | static bfd_boolean |
dda8d76d | 5130 | process_program_headers (Filedata * filedata) |
252b5132 | 5131 | { |
2cf0635d | 5132 | Elf_Internal_Phdr * segment; |
b34976b6 | 5133 | unsigned int i; |
1a9ccd70 | 5134 | Elf_Internal_Phdr * previous_load = NULL; |
252b5132 | 5135 | |
978c4450 AM |
5136 | filedata->dynamic_addr = 0; |
5137 | filedata->dynamic_size = 0; | |
663f67df | 5138 | |
dda8d76d | 5139 | if (filedata->file_header.e_phnum == 0) |
252b5132 | 5140 | { |
82f2dbf7 | 5141 | /* PR binutils/12467. */ |
dda8d76d | 5142 | if (filedata->file_header.e_phoff != 0) |
32ec8896 NC |
5143 | { |
5144 | warn (_("possibly corrupt ELF header - it has a non-zero program" | |
5145 | " header offset, but no program headers\n")); | |
5146 | return FALSE; | |
5147 | } | |
82f2dbf7 | 5148 | else if (do_segments) |
252b5132 | 5149 | printf (_("\nThere are no program headers in this file.\n")); |
32ec8896 | 5150 | return TRUE; |
252b5132 RH |
5151 | } |
5152 | ||
5153 | if (do_segments && !do_header) | |
5154 | { | |
dda8d76d NC |
5155 | printf (_("\nElf file type is %s\n"), get_file_type (filedata->file_header.e_type)); |
5156 | printf (_("Entry point 0x%s\n"), bfd_vmatoa ("x", filedata->file_header.e_entry)); | |
d3a49aa8 AM |
5157 | printf (ngettext ("There is %d program header, starting at offset %s\n", |
5158 | "There are %d program headers, starting at offset %s\n", | |
dda8d76d NC |
5159 | filedata->file_header.e_phnum), |
5160 | filedata->file_header.e_phnum, | |
5161 | bfd_vmatoa ("u", filedata->file_header.e_phoff)); | |
252b5132 RH |
5162 | } |
5163 | ||
dda8d76d | 5164 | if (! get_program_headers (filedata)) |
6b4bf3bc | 5165 | return TRUE; |
103f02d3 | 5166 | |
252b5132 RH |
5167 | if (do_segments) |
5168 | { | |
dda8d76d | 5169 | if (filedata->file_header.e_phnum > 1) |
3a1a2036 NC |
5170 | printf (_("\nProgram Headers:\n")); |
5171 | else | |
5172 | printf (_("\nProgram Headers:\n")); | |
76da6bbe | 5173 | |
f7a99963 NC |
5174 | if (is_32bit_elf) |
5175 | printf | |
5176 | (_(" Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align\n")); | |
d974e256 JJ |
5177 | else if (do_wide) |
5178 | printf | |
5179 | (_(" Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align\n")); | |
f7a99963 NC |
5180 | else |
5181 | { | |
5182 | printf | |
5183 | (_(" Type Offset VirtAddr PhysAddr\n")); | |
5184 | printf | |
5185 | (_(" FileSiz MemSiz Flags Align\n")); | |
5186 | } | |
252b5132 RH |
5187 | } |
5188 | ||
dda8d76d NC |
5189 | for (i = 0, segment = filedata->program_headers; |
5190 | i < filedata->file_header.e_phnum; | |
b34976b6 | 5191 | i++, segment++) |
252b5132 RH |
5192 | { |
5193 | if (do_segments) | |
5194 | { | |
dda8d76d | 5195 | printf (" %-14.14s ", get_segment_type (filedata, segment->p_type)); |
f7a99963 NC |
5196 | |
5197 | if (is_32bit_elf) | |
5198 | { | |
5199 | printf ("0x%6.6lx ", (unsigned long) segment->p_offset); | |
5200 | printf ("0x%8.8lx ", (unsigned long) segment->p_vaddr); | |
5201 | printf ("0x%8.8lx ", (unsigned long) segment->p_paddr); | |
5202 | printf ("0x%5.5lx ", (unsigned long) segment->p_filesz); | |
5203 | printf ("0x%5.5lx ", (unsigned long) segment->p_memsz); | |
5204 | printf ("%c%c%c ", | |
5205 | (segment->p_flags & PF_R ? 'R' : ' '), | |
5206 | (segment->p_flags & PF_W ? 'W' : ' '), | |
5207 | (segment->p_flags & PF_X ? 'E' : ' ')); | |
5208 | printf ("%#lx", (unsigned long) segment->p_align); | |
5209 | } | |
d974e256 JJ |
5210 | else if (do_wide) |
5211 | { | |
5212 | if ((unsigned long) segment->p_offset == segment->p_offset) | |
5213 | printf ("0x%6.6lx ", (unsigned long) segment->p_offset); | |
5214 | else | |
5215 | { | |
5216 | print_vma (segment->p_offset, FULL_HEX); | |
5217 | putchar (' '); | |
5218 | } | |
5219 | ||
5220 | print_vma (segment->p_vaddr, FULL_HEX); | |
5221 | putchar (' '); | |
5222 | print_vma (segment->p_paddr, FULL_HEX); | |
5223 | putchar (' '); | |
5224 | ||
5225 | if ((unsigned long) segment->p_filesz == segment->p_filesz) | |
5226 | printf ("0x%6.6lx ", (unsigned long) segment->p_filesz); | |
5227 | else | |
5228 | { | |
5229 | print_vma (segment->p_filesz, FULL_HEX); | |
5230 | putchar (' '); | |
5231 | } | |
5232 | ||
5233 | if ((unsigned long) segment->p_memsz == segment->p_memsz) | |
5234 | printf ("0x%6.6lx", (unsigned long) segment->p_memsz); | |
5235 | else | |
5236 | { | |
f48e6c45 | 5237 | print_vma (segment->p_memsz, FULL_HEX); |
d974e256 JJ |
5238 | } |
5239 | ||
5240 | printf (" %c%c%c ", | |
5241 | (segment->p_flags & PF_R ? 'R' : ' '), | |
5242 | (segment->p_flags & PF_W ? 'W' : ' '), | |
5243 | (segment->p_flags & PF_X ? 'E' : ' ')); | |
5244 | ||
5245 | if ((unsigned long) segment->p_align == segment->p_align) | |
5246 | printf ("%#lx", (unsigned long) segment->p_align); | |
5247 | else | |
5248 | { | |
5249 | print_vma (segment->p_align, PREFIX_HEX); | |
5250 | } | |
5251 | } | |
f7a99963 NC |
5252 | else |
5253 | { | |
5254 | print_vma (segment->p_offset, FULL_HEX); | |
5255 | putchar (' '); | |
5256 | print_vma (segment->p_vaddr, FULL_HEX); | |
5257 | putchar (' '); | |
5258 | print_vma (segment->p_paddr, FULL_HEX); | |
5259 | printf ("\n "); | |
5260 | print_vma (segment->p_filesz, FULL_HEX); | |
5261 | putchar (' '); | |
5262 | print_vma (segment->p_memsz, FULL_HEX); | |
5263 | printf (" %c%c%c ", | |
5264 | (segment->p_flags & PF_R ? 'R' : ' '), | |
5265 | (segment->p_flags & PF_W ? 'W' : ' '), | |
5266 | (segment->p_flags & PF_X ? 'E' : ' ')); | |
1d262527 | 5267 | print_vma (segment->p_align, PREFIX_HEX); |
f7a99963 | 5268 | } |
252b5132 | 5269 | |
1a9ccd70 NC |
5270 | putc ('\n', stdout); |
5271 | } | |
f54498b4 | 5272 | |
252b5132 RH |
5273 | switch (segment->p_type) |
5274 | { | |
1a9ccd70 | 5275 | case PT_LOAD: |
502d895c NC |
5276 | #if 0 /* Do not warn about out of order PT_LOAD segments. Although officially |
5277 | required by the ELF standard, several programs, including the Linux | |
5278 | kernel, make use of non-ordered segments. */ | |
1a9ccd70 NC |
5279 | if (previous_load |
5280 | && previous_load->p_vaddr > segment->p_vaddr) | |
5281 | error (_("LOAD segments must be sorted in order of increasing VirtAddr\n")); | |
502d895c | 5282 | #endif |
1a9ccd70 NC |
5283 | if (segment->p_memsz < segment->p_filesz) |
5284 | error (_("the segment's file size is larger than its memory size\n")); | |
5285 | previous_load = segment; | |
5286 | break; | |
5287 | ||
5288 | case PT_PHDR: | |
5289 | /* PR 20815 - Verify that the program header is loaded into memory. */ | |
5290 | if (i > 0 && previous_load != NULL) | |
5291 | error (_("the PHDR segment must occur before any LOAD segment\n")); | |
dda8d76d | 5292 | if (filedata->file_header.e_machine != EM_PARISC) |
1a9ccd70 NC |
5293 | { |
5294 | unsigned int j; | |
5295 | ||
dda8d76d | 5296 | for (j = 1; j < filedata->file_header.e_phnum; j++) |
c0c121b0 AM |
5297 | { |
5298 | Elf_Internal_Phdr *load = filedata->program_headers + j; | |
5299 | if (load->p_type == PT_LOAD | |
5300 | && load->p_offset <= segment->p_offset | |
5301 | && (load->p_offset + load->p_filesz | |
5302 | >= segment->p_offset + segment->p_filesz) | |
5303 | && load->p_vaddr <= segment->p_vaddr | |
5304 | && (load->p_vaddr + load->p_filesz | |
5305 | >= segment->p_vaddr + segment->p_filesz)) | |
5306 | break; | |
5307 | } | |
dda8d76d | 5308 | if (j == filedata->file_header.e_phnum) |
1a9ccd70 NC |
5309 | error (_("the PHDR segment is not covered by a LOAD segment\n")); |
5310 | } | |
5311 | break; | |
5312 | ||
252b5132 | 5313 | case PT_DYNAMIC: |
978c4450 | 5314 | if (filedata->dynamic_addr) |
252b5132 RH |
5315 | error (_("more than one dynamic segment\n")); |
5316 | ||
20737c13 AM |
5317 | /* By default, assume that the .dynamic section is the first |
5318 | section in the DYNAMIC segment. */ | |
978c4450 AM |
5319 | filedata->dynamic_addr = segment->p_offset; |
5320 | filedata->dynamic_size = segment->p_filesz; | |
20737c13 | 5321 | |
b2d38a17 NC |
5322 | /* Try to locate the .dynamic section. If there is |
5323 | a section header table, we can easily locate it. */ | |
dda8d76d | 5324 | if (filedata->section_headers != NULL) |
b2d38a17 | 5325 | { |
2cf0635d | 5326 | Elf_Internal_Shdr * sec; |
b2d38a17 | 5327 | |
dda8d76d | 5328 | sec = find_section (filedata, ".dynamic"); |
89fac5e3 | 5329 | if (sec == NULL || sec->sh_size == 0) |
b2d38a17 | 5330 | { |
28f997cf TG |
5331 | /* A corresponding .dynamic section is expected, but on |
5332 | IA-64/OpenVMS it is OK for it to be missing. */ | |
dda8d76d | 5333 | if (!is_ia64_vms (filedata)) |
28f997cf | 5334 | error (_("no .dynamic section in the dynamic segment\n")); |
b2d38a17 NC |
5335 | break; |
5336 | } | |
5337 | ||
42bb2e33 | 5338 | if (sec->sh_type == SHT_NOBITS) |
20737c13 | 5339 | { |
978c4450 | 5340 | filedata->dynamic_size = 0; |
20737c13 AM |
5341 | break; |
5342 | } | |
42bb2e33 | 5343 | |
978c4450 AM |
5344 | filedata->dynamic_addr = sec->sh_offset; |
5345 | filedata->dynamic_size = sec->sh_size; | |
b2d38a17 | 5346 | |
978c4450 AM |
5347 | if (filedata->dynamic_addr < segment->p_offset |
5348 | || filedata->dynamic_addr > segment->p_offset + segment->p_filesz) | |
20737c13 AM |
5349 | warn (_("the .dynamic section is not contained" |
5350 | " within the dynamic segment\n")); | |
978c4450 | 5351 | else if (filedata->dynamic_addr > segment->p_offset) |
20737c13 AM |
5352 | warn (_("the .dynamic section is not the first section" |
5353 | " in the dynamic segment.\n")); | |
b2d38a17 | 5354 | } |
39e224f6 MW |
5355 | |
5356 | /* PR binutils/17512: Avoid corrupt dynamic section info in the | |
5357 | segment. Check this after matching against the section headers | |
5358 | so we don't warn on debuginfo file (which have NOBITS .dynamic | |
5359 | sections). */ | |
978c4450 AM |
5360 | if (filedata->dynamic_addr > filedata->file_size |
5361 | || (filedata->dynamic_size | |
5362 | > filedata->file_size - filedata->dynamic_addr)) | |
39e224f6 MW |
5363 | { |
5364 | error (_("the dynamic segment offset + size exceeds the size of the file\n")); | |
978c4450 | 5365 | filedata->dynamic_addr = filedata->dynamic_size = 0; |
39e224f6 | 5366 | } |
252b5132 RH |
5367 | break; |
5368 | ||
5369 | case PT_INTERP: | |
978c4450 AM |
5370 | if (fseek (filedata->handle, |
5371 | filedata->archive_file_offset + (long) segment->p_offset, | |
fb52b2f4 | 5372 | SEEK_SET)) |
252b5132 RH |
5373 | error (_("Unable to find program interpreter name\n")); |
5374 | else | |
5375 | { | |
f8eae8b2 | 5376 | char fmt [32]; |
9495b2e6 | 5377 | int ret = snprintf (fmt, sizeof (fmt), "%%%ds", PATH_MAX - 1); |
f8eae8b2 L |
5378 | |
5379 | if (ret >= (int) sizeof (fmt) || ret < 0) | |
591a748a | 5380 | error (_("Internal error: failed to create format string to display program interpreter\n")); |
f8eae8b2 | 5381 | |
978c4450 AM |
5382 | filedata->program_interpreter[0] = 0; |
5383 | if (fscanf (filedata->handle, fmt, | |
5384 | filedata->program_interpreter) <= 0) | |
7bd7b3ef | 5385 | error (_("Unable to read program interpreter name\n")); |
252b5132 RH |
5386 | |
5387 | if (do_segments) | |
f54498b4 | 5388 | printf (_(" [Requesting program interpreter: %s]\n"), |
978c4450 | 5389 | filedata->program_interpreter); |
252b5132 RH |
5390 | } |
5391 | break; | |
5392 | } | |
252b5132 RH |
5393 | } |
5394 | ||
dda8d76d NC |
5395 | if (do_segments |
5396 | && filedata->section_headers != NULL | |
5397 | && filedata->string_table != NULL) | |
252b5132 RH |
5398 | { |
5399 | printf (_("\n Section to Segment mapping:\n")); | |
5400 | printf (_(" Segment Sections...\n")); | |
5401 | ||
dda8d76d | 5402 | for (i = 0; i < filedata->file_header.e_phnum; i++) |
252b5132 | 5403 | { |
9ad5cbcf | 5404 | unsigned int j; |
2cf0635d | 5405 | Elf_Internal_Shdr * section; |
252b5132 | 5406 | |
dda8d76d NC |
5407 | segment = filedata->program_headers + i; |
5408 | section = filedata->section_headers + 1; | |
252b5132 RH |
5409 | |
5410 | printf (" %2.2d ", i); | |
5411 | ||
dda8d76d | 5412 | for (j = 1; j < filedata->file_header.e_shnum; j++, section++) |
252b5132 | 5413 | { |
f4638467 AM |
5414 | if (!ELF_TBSS_SPECIAL (section, segment) |
5415 | && ELF_SECTION_IN_SEGMENT_STRICT (section, segment)) | |
dda8d76d | 5416 | printf ("%s ", printable_section_name (filedata, section)); |
252b5132 RH |
5417 | } |
5418 | ||
5419 | putc ('\n',stdout); | |
5420 | } | |
5421 | } | |
5422 | ||
32ec8896 | 5423 | return TRUE; |
252b5132 RH |
5424 | } |
5425 | ||
5426 | ||
d93f0186 NC |
5427 | /* Find the file offset corresponding to VMA by using the program headers. */ |
5428 | ||
5429 | static long | |
dda8d76d | 5430 | offset_from_vma (Filedata * filedata, bfd_vma vma, bfd_size_type size) |
d93f0186 | 5431 | { |
2cf0635d | 5432 | Elf_Internal_Phdr * seg; |
d93f0186 | 5433 | |
dda8d76d | 5434 | if (! get_program_headers (filedata)) |
d93f0186 NC |
5435 | { |
5436 | warn (_("Cannot interpret virtual addresses without program headers.\n")); | |
5437 | return (long) vma; | |
5438 | } | |
5439 | ||
dda8d76d NC |
5440 | for (seg = filedata->program_headers; |
5441 | seg < filedata->program_headers + filedata->file_header.e_phnum; | |
d93f0186 NC |
5442 | ++seg) |
5443 | { | |
5444 | if (seg->p_type != PT_LOAD) | |
5445 | continue; | |
5446 | ||
5447 | if (vma >= (seg->p_vaddr & -seg->p_align) | |
5448 | && vma + size <= seg->p_vaddr + seg->p_filesz) | |
5449 | return vma - seg->p_vaddr + seg->p_offset; | |
5450 | } | |
5451 | ||
5452 | warn (_("Virtual address 0x%lx not located in any PT_LOAD segment.\n"), | |
0af1713e | 5453 | (unsigned long) vma); |
d93f0186 NC |
5454 | return (long) vma; |
5455 | } | |
5456 | ||
5457 | ||
dda8d76d NC |
5458 | /* Allocate memory and load the sections headers into FILEDATA->filedata->section_headers. |
5459 | If PROBE is true, this is just a probe and we do not generate any error | |
5460 | messages if the load fails. */ | |
049b0c3a NC |
5461 | |
5462 | static bfd_boolean | |
dda8d76d | 5463 | get_32bit_section_headers (Filedata * filedata, bfd_boolean probe) |
252b5132 | 5464 | { |
2cf0635d NC |
5465 | Elf32_External_Shdr * shdrs; |
5466 | Elf_Internal_Shdr * internal; | |
dda8d76d NC |
5467 | unsigned int i; |
5468 | unsigned int size = filedata->file_header.e_shentsize; | |
5469 | unsigned int num = probe ? 1 : filedata->file_header.e_shnum; | |
049b0c3a NC |
5470 | |
5471 | /* PR binutils/17531: Cope with unexpected section header sizes. */ | |
5472 | if (size == 0 || num == 0) | |
5473 | return FALSE; | |
5474 | if (size < sizeof * shdrs) | |
5475 | { | |
5476 | if (! probe) | |
5477 | error (_("The e_shentsize field in the ELF header is less than the size of an ELF section header\n")); | |
5478 | return FALSE; | |
5479 | } | |
5480 | if (!probe && size > sizeof * shdrs) | |
5481 | warn (_("The e_shentsize field in the ELF header is larger than the size of an ELF section header\n")); | |
252b5132 | 5482 | |
dda8d76d | 5483 | shdrs = (Elf32_External_Shdr *) get_data (NULL, filedata, filedata->file_header.e_shoff, |
049b0c3a NC |
5484 | size, num, |
5485 | probe ? NULL : _("section headers")); | |
5486 | if (shdrs == NULL) | |
5487 | return FALSE; | |
252b5132 | 5488 | |
dda8d76d NC |
5489 | free (filedata->section_headers); |
5490 | filedata->section_headers = (Elf_Internal_Shdr *) | |
5491 | cmalloc (num, sizeof (Elf_Internal_Shdr)); | |
5492 | if (filedata->section_headers == NULL) | |
252b5132 | 5493 | { |
049b0c3a | 5494 | if (!probe) |
8b73c356 | 5495 | error (_("Out of memory reading %u section headers\n"), num); |
e3d39609 | 5496 | free (shdrs); |
049b0c3a | 5497 | return FALSE; |
252b5132 RH |
5498 | } |
5499 | ||
dda8d76d | 5500 | for (i = 0, internal = filedata->section_headers; |
560f3c1c | 5501 | i < num; |
b34976b6 | 5502 | i++, internal++) |
252b5132 RH |
5503 | { |
5504 | internal->sh_name = BYTE_GET (shdrs[i].sh_name); | |
5505 | internal->sh_type = BYTE_GET (shdrs[i].sh_type); | |
5506 | internal->sh_flags = BYTE_GET (shdrs[i].sh_flags); | |
5507 | internal->sh_addr = BYTE_GET (shdrs[i].sh_addr); | |
5508 | internal->sh_offset = BYTE_GET (shdrs[i].sh_offset); | |
5509 | internal->sh_size = BYTE_GET (shdrs[i].sh_size); | |
5510 | internal->sh_link = BYTE_GET (shdrs[i].sh_link); | |
5511 | internal->sh_info = BYTE_GET (shdrs[i].sh_info); | |
5512 | internal->sh_addralign = BYTE_GET (shdrs[i].sh_addralign); | |
5513 | internal->sh_entsize = BYTE_GET (shdrs[i].sh_entsize); | |
315350be NC |
5514 | if (!probe && internal->sh_link > num) |
5515 | warn (_("Section %u has an out of range sh_link value of %u\n"), i, internal->sh_link); | |
5516 | if (!probe && internal->sh_flags & SHF_INFO_LINK && internal->sh_info > num) | |
5517 | warn (_("Section %u has an out of range sh_info value of %u\n"), i, internal->sh_info); | |
252b5132 RH |
5518 | } |
5519 | ||
5520 | free (shdrs); | |
049b0c3a | 5521 | return TRUE; |
252b5132 RH |
5522 | } |
5523 | ||
dda8d76d NC |
5524 | /* Like get_32bit_section_headers, except that it fetches 64-bit headers. */ |
5525 | ||
049b0c3a | 5526 | static bfd_boolean |
dda8d76d | 5527 | get_64bit_section_headers (Filedata * filedata, bfd_boolean probe) |
9ea033b2 | 5528 | { |
dda8d76d NC |
5529 | Elf64_External_Shdr * shdrs; |
5530 | Elf_Internal_Shdr * internal; | |
5531 | unsigned int i; | |
5532 | unsigned int size = filedata->file_header.e_shentsize; | |
5533 | unsigned int num = probe ? 1 : filedata->file_header.e_shnum; | |
049b0c3a NC |
5534 | |
5535 | /* PR binutils/17531: Cope with unexpected section header sizes. */ | |
5536 | if (size == 0 || num == 0) | |
5537 | return FALSE; | |
dda8d76d | 5538 | |
049b0c3a NC |
5539 | if (size < sizeof * shdrs) |
5540 | { | |
5541 | if (! probe) | |
5542 | error (_("The e_shentsize field in the ELF header is less than the size of an ELF section header\n")); | |
5543 | return FALSE; | |
5544 | } | |
dda8d76d | 5545 | |
049b0c3a NC |
5546 | if (! probe && size > sizeof * shdrs) |
5547 | warn (_("The e_shentsize field in the ELF header is larger than the size of an ELF section header\n")); | |
9ea033b2 | 5548 | |
dda8d76d NC |
5549 | shdrs = (Elf64_External_Shdr *) get_data (NULL, filedata, |
5550 | filedata->file_header.e_shoff, | |
049b0c3a NC |
5551 | size, num, |
5552 | probe ? NULL : _("section headers")); | |
5553 | if (shdrs == NULL) | |
5554 | return FALSE; | |
9ea033b2 | 5555 | |
dda8d76d NC |
5556 | free (filedata->section_headers); |
5557 | filedata->section_headers = (Elf_Internal_Shdr *) | |
5558 | cmalloc (num, sizeof (Elf_Internal_Shdr)); | |
5559 | if (filedata->section_headers == NULL) | |
9ea033b2 | 5560 | { |
049b0c3a | 5561 | if (! probe) |
8b73c356 | 5562 | error (_("Out of memory reading %u section headers\n"), num); |
e3d39609 | 5563 | free (shdrs); |
049b0c3a | 5564 | return FALSE; |
9ea033b2 NC |
5565 | } |
5566 | ||
dda8d76d | 5567 | for (i = 0, internal = filedata->section_headers; |
560f3c1c | 5568 | i < num; |
b34976b6 | 5569 | i++, internal++) |
9ea033b2 NC |
5570 | { |
5571 | internal->sh_name = BYTE_GET (shdrs[i].sh_name); | |
5572 | internal->sh_type = BYTE_GET (shdrs[i].sh_type); | |
66543521 AM |
5573 | internal->sh_flags = BYTE_GET (shdrs[i].sh_flags); |
5574 | internal->sh_addr = BYTE_GET (shdrs[i].sh_addr); | |
5575 | internal->sh_size = BYTE_GET (shdrs[i].sh_size); | |
5576 | internal->sh_entsize = BYTE_GET (shdrs[i].sh_entsize); | |
9ea033b2 NC |
5577 | internal->sh_link = BYTE_GET (shdrs[i].sh_link); |
5578 | internal->sh_info = BYTE_GET (shdrs[i].sh_info); | |
5579 | internal->sh_offset = BYTE_GET (shdrs[i].sh_offset); | |
5580 | internal->sh_addralign = BYTE_GET (shdrs[i].sh_addralign); | |
315350be NC |
5581 | if (!probe && internal->sh_link > num) |
5582 | warn (_("Section %u has an out of range sh_link value of %u\n"), i, internal->sh_link); | |
5583 | if (!probe && internal->sh_flags & SHF_INFO_LINK && internal->sh_info > num) | |
5584 | warn (_("Section %u has an out of range sh_info value of %u\n"), i, internal->sh_info); | |
9ea033b2 NC |
5585 | } |
5586 | ||
5587 | free (shdrs); | |
049b0c3a | 5588 | return TRUE; |
9ea033b2 NC |
5589 | } |
5590 | ||
252b5132 | 5591 | static Elf_Internal_Sym * |
dda8d76d NC |
5592 | get_32bit_elf_symbols (Filedata * filedata, |
5593 | Elf_Internal_Shdr * section, | |
5594 | unsigned long * num_syms_return) | |
252b5132 | 5595 | { |
ba5cdace | 5596 | unsigned long number = 0; |
dd24e3da | 5597 | Elf32_External_Sym * esyms = NULL; |
ba5cdace | 5598 | Elf_External_Sym_Shndx * shndx = NULL; |
dd24e3da | 5599 | Elf_Internal_Sym * isyms = NULL; |
2cf0635d | 5600 | Elf_Internal_Sym * psym; |
b34976b6 | 5601 | unsigned int j; |
e3d39609 | 5602 | elf_section_list * entry; |
252b5132 | 5603 | |
c9c1d674 EG |
5604 | if (section->sh_size == 0) |
5605 | { | |
5606 | if (num_syms_return != NULL) | |
5607 | * num_syms_return = 0; | |
5608 | return NULL; | |
5609 | } | |
5610 | ||
dd24e3da | 5611 | /* Run some sanity checks first. */ |
c9c1d674 | 5612 | if (section->sh_entsize == 0 || section->sh_entsize > section->sh_size) |
dd24e3da | 5613 | { |
c9c1d674 | 5614 | error (_("Section %s has an invalid sh_entsize of 0x%lx\n"), |
dda8d76d NC |
5615 | printable_section_name (filedata, section), |
5616 | (unsigned long) section->sh_entsize); | |
ba5cdace | 5617 | goto exit_point; |
dd24e3da NC |
5618 | } |
5619 | ||
dda8d76d | 5620 | if (section->sh_size > filedata->file_size) |
f54498b4 NC |
5621 | { |
5622 | error (_("Section %s has an invalid sh_size of 0x%lx\n"), | |
dda8d76d NC |
5623 | printable_section_name (filedata, section), |
5624 | (unsigned long) section->sh_size); | |
f54498b4 NC |
5625 | goto exit_point; |
5626 | } | |
5627 | ||
dd24e3da NC |
5628 | number = section->sh_size / section->sh_entsize; |
5629 | ||
5630 | if (number * sizeof (Elf32_External_Sym) > section->sh_size + 1) | |
5631 | { | |
c9c1d674 | 5632 | error (_("Size (0x%lx) of section %s is not a multiple of its sh_entsize (0x%lx)\n"), |
8066deb1 | 5633 | (unsigned long) section->sh_size, |
dda8d76d | 5634 | printable_section_name (filedata, section), |
8066deb1 | 5635 | (unsigned long) section->sh_entsize); |
ba5cdace | 5636 | goto exit_point; |
dd24e3da NC |
5637 | } |
5638 | ||
dda8d76d | 5639 | esyms = (Elf32_External_Sym *) get_data (NULL, filedata, section->sh_offset, 1, |
3f5e193b | 5640 | section->sh_size, _("symbols")); |
dd24e3da | 5641 | if (esyms == NULL) |
ba5cdace | 5642 | goto exit_point; |
252b5132 | 5643 | |
e3d39609 | 5644 | shndx = NULL; |
978c4450 | 5645 | for (entry = filedata->symtab_shndx_list; entry != NULL; entry = entry->next) |
e3d39609 NC |
5646 | { |
5647 | if (entry->hdr->sh_link != (unsigned long) (section - filedata->section_headers)) | |
5648 | continue; | |
5649 | ||
5650 | if (shndx != NULL) | |
5651 | { | |
5652 | error (_("Multiple symbol table index sections associated with the same symbol section\n")); | |
5653 | free (shndx); | |
5654 | } | |
5655 | ||
5656 | shndx = (Elf_External_Sym_Shndx *) get_data (NULL, filedata, | |
5657 | entry->hdr->sh_offset, | |
5658 | 1, entry->hdr->sh_size, | |
5659 | _("symbol table section indices")); | |
5660 | if (shndx == NULL) | |
5661 | goto exit_point; | |
5662 | ||
5663 | /* PR17531: file: heap-buffer-overflow */ | |
5664 | if (entry->hdr->sh_size / sizeof (Elf_External_Sym_Shndx) < number) | |
5665 | { | |
5666 | error (_("Index section %s has an sh_size of 0x%lx - expected 0x%lx\n"), | |
5667 | printable_section_name (filedata, entry->hdr), | |
5668 | (unsigned long) entry->hdr->sh_size, | |
5669 | (unsigned long) section->sh_size); | |
5670 | goto exit_point; | |
c9c1d674 | 5671 | } |
e3d39609 | 5672 | } |
9ad5cbcf | 5673 | |
3f5e193b | 5674 | isyms = (Elf_Internal_Sym *) cmalloc (number, sizeof (Elf_Internal_Sym)); |
252b5132 RH |
5675 | |
5676 | if (isyms == NULL) | |
5677 | { | |
8b73c356 NC |
5678 | error (_("Out of memory reading %lu symbols\n"), |
5679 | (unsigned long) number); | |
dd24e3da | 5680 | goto exit_point; |
252b5132 RH |
5681 | } |
5682 | ||
dd24e3da | 5683 | for (j = 0, psym = isyms; j < number; j++, psym++) |
252b5132 RH |
5684 | { |
5685 | psym->st_name = BYTE_GET (esyms[j].st_name); | |
5686 | psym->st_value = BYTE_GET (esyms[j].st_value); | |
5687 | psym->st_size = BYTE_GET (esyms[j].st_size); | |
5688 | psym->st_shndx = BYTE_GET (esyms[j].st_shndx); | |
4fbb74a6 | 5689 | if (psym->st_shndx == (SHN_XINDEX & 0xffff) && shndx != NULL) |
9ad5cbcf AM |
5690 | psym->st_shndx |
5691 | = byte_get ((unsigned char *) &shndx[j], sizeof (shndx[j])); | |
4fbb74a6 AM |
5692 | else if (psym->st_shndx >= (SHN_LORESERVE & 0xffff)) |
5693 | psym->st_shndx += SHN_LORESERVE - (SHN_LORESERVE & 0xffff); | |
252b5132 RH |
5694 | psym->st_info = BYTE_GET (esyms[j].st_info); |
5695 | psym->st_other = BYTE_GET (esyms[j].st_other); | |
5696 | } | |
5697 | ||
dd24e3da | 5698 | exit_point: |
e3d39609 NC |
5699 | free (shndx); |
5700 | free (esyms); | |
252b5132 | 5701 | |
ba5cdace NC |
5702 | if (num_syms_return != NULL) |
5703 | * num_syms_return = isyms == NULL ? 0 : number; | |
5704 | ||
252b5132 RH |
5705 | return isyms; |
5706 | } | |
5707 | ||
9ea033b2 | 5708 | static Elf_Internal_Sym * |
dda8d76d NC |
5709 | get_64bit_elf_symbols (Filedata * filedata, |
5710 | Elf_Internal_Shdr * section, | |
5711 | unsigned long * num_syms_return) | |
9ea033b2 | 5712 | { |
ba5cdace NC |
5713 | unsigned long number = 0; |
5714 | Elf64_External_Sym * esyms = NULL; | |
5715 | Elf_External_Sym_Shndx * shndx = NULL; | |
5716 | Elf_Internal_Sym * isyms = NULL; | |
2cf0635d | 5717 | Elf_Internal_Sym * psym; |
b34976b6 | 5718 | unsigned int j; |
e3d39609 | 5719 | elf_section_list * entry; |
9ea033b2 | 5720 | |
c9c1d674 EG |
5721 | if (section->sh_size == 0) |
5722 | { | |
5723 | if (num_syms_return != NULL) | |
5724 | * num_syms_return = 0; | |
5725 | return NULL; | |
5726 | } | |
5727 | ||
dd24e3da | 5728 | /* Run some sanity checks first. */ |
c9c1d674 | 5729 | if (section->sh_entsize == 0 || section->sh_entsize > section->sh_size) |
dd24e3da | 5730 | { |
c9c1d674 | 5731 | error (_("Section %s has an invalid sh_entsize of 0x%lx\n"), |
dda8d76d | 5732 | printable_section_name (filedata, section), |
8066deb1 | 5733 | (unsigned long) section->sh_entsize); |
ba5cdace | 5734 | goto exit_point; |
dd24e3da NC |
5735 | } |
5736 | ||
dda8d76d | 5737 | if (section->sh_size > filedata->file_size) |
f54498b4 NC |
5738 | { |
5739 | error (_("Section %s has an invalid sh_size of 0x%lx\n"), | |
dda8d76d | 5740 | printable_section_name (filedata, section), |
8066deb1 | 5741 | (unsigned long) section->sh_size); |
f54498b4 NC |
5742 | goto exit_point; |
5743 | } | |
5744 | ||
dd24e3da NC |
5745 | number = section->sh_size / section->sh_entsize; |
5746 | ||
5747 | if (number * sizeof (Elf64_External_Sym) > section->sh_size + 1) | |
5748 | { | |
c9c1d674 | 5749 | error (_("Size (0x%lx) of section %s is not a multiple of its sh_entsize (0x%lx)\n"), |
8066deb1 | 5750 | (unsigned long) section->sh_size, |
dda8d76d | 5751 | printable_section_name (filedata, section), |
8066deb1 | 5752 | (unsigned long) section->sh_entsize); |
ba5cdace | 5753 | goto exit_point; |
dd24e3da NC |
5754 | } |
5755 | ||
dda8d76d | 5756 | esyms = (Elf64_External_Sym *) get_data (NULL, filedata, section->sh_offset, 1, |
3f5e193b | 5757 | section->sh_size, _("symbols")); |
a6e9f9df | 5758 | if (!esyms) |
ba5cdace | 5759 | goto exit_point; |
9ea033b2 | 5760 | |
e3d39609 | 5761 | shndx = NULL; |
978c4450 | 5762 | for (entry = filedata->symtab_shndx_list; entry != NULL; entry = entry->next) |
e3d39609 NC |
5763 | { |
5764 | if (entry->hdr->sh_link != (unsigned long) (section - filedata->section_headers)) | |
5765 | continue; | |
5766 | ||
5767 | if (shndx != NULL) | |
5768 | { | |
5769 | error (_("Multiple symbol table index sections associated with the same symbol section\n")); | |
5770 | free (shndx); | |
c9c1d674 | 5771 | } |
e3d39609 NC |
5772 | |
5773 | shndx = (Elf_External_Sym_Shndx *) get_data (NULL, filedata, | |
5774 | entry->hdr->sh_offset, | |
5775 | 1, entry->hdr->sh_size, | |
5776 | _("symbol table section indices")); | |
5777 | if (shndx == NULL) | |
5778 | goto exit_point; | |
5779 | ||
5780 | /* PR17531: file: heap-buffer-overflow */ | |
5781 | if (entry->hdr->sh_size / sizeof (Elf_External_Sym_Shndx) < number) | |
5782 | { | |
5783 | error (_("Index section %s has an sh_size of 0x%lx - expected 0x%lx\n"), | |
5784 | printable_section_name (filedata, entry->hdr), | |
5785 | (unsigned long) entry->hdr->sh_size, | |
5786 | (unsigned long) section->sh_size); | |
5787 | goto exit_point; | |
5788 | } | |
5789 | } | |
9ad5cbcf | 5790 | |
3f5e193b | 5791 | isyms = (Elf_Internal_Sym *) cmalloc (number, sizeof (Elf_Internal_Sym)); |
9ea033b2 NC |
5792 | |
5793 | if (isyms == NULL) | |
5794 | { | |
8b73c356 NC |
5795 | error (_("Out of memory reading %lu symbols\n"), |
5796 | (unsigned long) number); | |
ba5cdace | 5797 | goto exit_point; |
9ea033b2 NC |
5798 | } |
5799 | ||
ba5cdace | 5800 | for (j = 0, psym = isyms; j < number; j++, psym++) |
9ea033b2 NC |
5801 | { |
5802 | psym->st_name = BYTE_GET (esyms[j].st_name); | |
5803 | psym->st_info = BYTE_GET (esyms[j].st_info); | |
5804 | psym->st_other = BYTE_GET (esyms[j].st_other); | |
5805 | psym->st_shndx = BYTE_GET (esyms[j].st_shndx); | |
ba5cdace | 5806 | |
4fbb74a6 | 5807 | if (psym->st_shndx == (SHN_XINDEX & 0xffff) && shndx != NULL) |
9ad5cbcf AM |
5808 | psym->st_shndx |
5809 | = byte_get ((unsigned char *) &shndx[j], sizeof (shndx[j])); | |
4fbb74a6 AM |
5810 | else if (psym->st_shndx >= (SHN_LORESERVE & 0xffff)) |
5811 | psym->st_shndx += SHN_LORESERVE - (SHN_LORESERVE & 0xffff); | |
ba5cdace | 5812 | |
66543521 AM |
5813 | psym->st_value = BYTE_GET (esyms[j].st_value); |
5814 | psym->st_size = BYTE_GET (esyms[j].st_size); | |
9ea033b2 NC |
5815 | } |
5816 | ||
ba5cdace | 5817 | exit_point: |
e3d39609 NC |
5818 | free (shndx); |
5819 | free (esyms); | |
ba5cdace NC |
5820 | |
5821 | if (num_syms_return != NULL) | |
5822 | * num_syms_return = isyms == NULL ? 0 : number; | |
9ea033b2 NC |
5823 | |
5824 | return isyms; | |
5825 | } | |
5826 | ||
d1133906 | 5827 | static const char * |
dda8d76d | 5828 | get_elf_section_flags (Filedata * filedata, bfd_vma sh_flags) |
d1133906 | 5829 | { |
5477e8a0 | 5830 | static char buff[1024]; |
2cf0635d | 5831 | char * p = buff; |
32ec8896 NC |
5832 | unsigned int field_size = is_32bit_elf ? 8 : 16; |
5833 | signed int sindex; | |
5834 | unsigned int size = sizeof (buff) - (field_size + 4 + 1); | |
8d5ff12c L |
5835 | bfd_vma os_flags = 0; |
5836 | bfd_vma proc_flags = 0; | |
5837 | bfd_vma unknown_flags = 0; | |
148b93f2 | 5838 | static const struct |
5477e8a0 | 5839 | { |
2cf0635d | 5840 | const char * str; |
32ec8896 | 5841 | unsigned int len; |
5477e8a0 L |
5842 | } |
5843 | flags [] = | |
5844 | { | |
cfcac11d NC |
5845 | /* 0 */ { STRING_COMMA_LEN ("WRITE") }, |
5846 | /* 1 */ { STRING_COMMA_LEN ("ALLOC") }, | |
5847 | /* 2 */ { STRING_COMMA_LEN ("EXEC") }, | |
5848 | /* 3 */ { STRING_COMMA_LEN ("MERGE") }, | |
5849 | /* 4 */ { STRING_COMMA_LEN ("STRINGS") }, | |
5850 | /* 5 */ { STRING_COMMA_LEN ("INFO LINK") }, | |
5851 | /* 6 */ { STRING_COMMA_LEN ("LINK ORDER") }, | |
5852 | /* 7 */ { STRING_COMMA_LEN ("OS NONCONF") }, | |
5853 | /* 8 */ { STRING_COMMA_LEN ("GROUP") }, | |
5854 | /* 9 */ { STRING_COMMA_LEN ("TLS") }, | |
5855 | /* IA-64 specific. */ | |
5856 | /* 10 */ { STRING_COMMA_LEN ("SHORT") }, | |
5857 | /* 11 */ { STRING_COMMA_LEN ("NORECOV") }, | |
5858 | /* IA-64 OpenVMS specific. */ | |
5859 | /* 12 */ { STRING_COMMA_LEN ("VMS_GLOBAL") }, | |
5860 | /* 13 */ { STRING_COMMA_LEN ("VMS_OVERLAID") }, | |
5861 | /* 14 */ { STRING_COMMA_LEN ("VMS_SHARED") }, | |
5862 | /* 15 */ { STRING_COMMA_LEN ("VMS_VECTOR") }, | |
5863 | /* 16 */ { STRING_COMMA_LEN ("VMS_ALLOC_64BIT") }, | |
5864 | /* 17 */ { STRING_COMMA_LEN ("VMS_PROTECTED") }, | |
18ae9cc1 | 5865 | /* Generic. */ |
cfcac11d | 5866 | /* 18 */ { STRING_COMMA_LEN ("EXCLUDE") }, |
18ae9cc1 | 5867 | /* SPARC specific. */ |
77115a4a | 5868 | /* 19 */ { STRING_COMMA_LEN ("ORDERED") }, |
ac4c9b04 MG |
5869 | /* 20 */ { STRING_COMMA_LEN ("COMPRESSED") }, |
5870 | /* ARM specific. */ | |
5871 | /* 21 */ { STRING_COMMA_LEN ("ENTRYSECT") }, | |
f0728ee3 | 5872 | /* 22 */ { STRING_COMMA_LEN ("ARM_PURECODE") }, |
a91e1603 L |
5873 | /* 23 */ { STRING_COMMA_LEN ("COMDEF") }, |
5874 | /* GNU specific. */ | |
5875 | /* 24 */ { STRING_COMMA_LEN ("GNU_MBIND") }, | |
83eef883 AFB |
5876 | /* VLE specific. */ |
5877 | /* 25 */ { STRING_COMMA_LEN ("VLE") }, | |
5477e8a0 L |
5878 | }; |
5879 | ||
5880 | if (do_section_details) | |
5881 | { | |
8d5ff12c L |
5882 | sprintf (buff, "[%*.*lx]: ", |
5883 | field_size, field_size, (unsigned long) sh_flags); | |
5884 | p += field_size + 4; | |
5477e8a0 | 5885 | } |
76da6bbe | 5886 | |
d1133906 NC |
5887 | while (sh_flags) |
5888 | { | |
5889 | bfd_vma flag; | |
5890 | ||
5891 | flag = sh_flags & - sh_flags; | |
5892 | sh_flags &= ~ flag; | |
76da6bbe | 5893 | |
5477e8a0 | 5894 | if (do_section_details) |
d1133906 | 5895 | { |
5477e8a0 L |
5896 | switch (flag) |
5897 | { | |
91d6fa6a NC |
5898 | case SHF_WRITE: sindex = 0; break; |
5899 | case SHF_ALLOC: sindex = 1; break; | |
5900 | case SHF_EXECINSTR: sindex = 2; break; | |
5901 | case SHF_MERGE: sindex = 3; break; | |
5902 | case SHF_STRINGS: sindex = 4; break; | |
5903 | case SHF_INFO_LINK: sindex = 5; break; | |
5904 | case SHF_LINK_ORDER: sindex = 6; break; | |
5905 | case SHF_OS_NONCONFORMING: sindex = 7; break; | |
5906 | case SHF_GROUP: sindex = 8; break; | |
5907 | case SHF_TLS: sindex = 9; break; | |
18ae9cc1 | 5908 | case SHF_EXCLUDE: sindex = 18; break; |
77115a4a | 5909 | case SHF_COMPRESSED: sindex = 20; break; |
a91e1603 | 5910 | case SHF_GNU_MBIND: sindex = 24; break; |
76da6bbe | 5911 | |
5477e8a0 | 5912 | default: |
91d6fa6a | 5913 | sindex = -1; |
dda8d76d | 5914 | switch (filedata->file_header.e_machine) |
148b93f2 | 5915 | { |
cfcac11d | 5916 | case EM_IA_64: |
148b93f2 | 5917 | if (flag == SHF_IA_64_SHORT) |
91d6fa6a | 5918 | sindex = 10; |
148b93f2 | 5919 | else if (flag == SHF_IA_64_NORECOV) |
91d6fa6a | 5920 | sindex = 11; |
148b93f2 | 5921 | #ifdef BFD64 |
dda8d76d | 5922 | else if (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_OPENVMS) |
148b93f2 NC |
5923 | switch (flag) |
5924 | { | |
91d6fa6a NC |
5925 | case SHF_IA_64_VMS_GLOBAL: sindex = 12; break; |
5926 | case SHF_IA_64_VMS_OVERLAID: sindex = 13; break; | |
5927 | case SHF_IA_64_VMS_SHARED: sindex = 14; break; | |
5928 | case SHF_IA_64_VMS_VECTOR: sindex = 15; break; | |
5929 | case SHF_IA_64_VMS_ALLOC_64BIT: sindex = 16; break; | |
5930 | case SHF_IA_64_VMS_PROTECTED: sindex = 17; break; | |
148b93f2 NC |
5931 | default: break; |
5932 | } | |
5933 | #endif | |
cfcac11d NC |
5934 | break; |
5935 | ||
caa83f8b | 5936 | case EM_386: |
22abe556 | 5937 | case EM_IAMCU: |
caa83f8b | 5938 | case EM_X86_64: |
7f502d6c | 5939 | case EM_L1OM: |
7a9068fe | 5940 | case EM_K1OM: |
cfcac11d NC |
5941 | case EM_OLD_SPARCV9: |
5942 | case EM_SPARC32PLUS: | |
5943 | case EM_SPARCV9: | |
5944 | case EM_SPARC: | |
18ae9cc1 | 5945 | if (flag == SHF_ORDERED) |
91d6fa6a | 5946 | sindex = 19; |
cfcac11d | 5947 | break; |
ac4c9b04 MG |
5948 | |
5949 | case EM_ARM: | |
5950 | switch (flag) | |
5951 | { | |
5952 | case SHF_ENTRYSECT: sindex = 21; break; | |
f0728ee3 | 5953 | case SHF_ARM_PURECODE: sindex = 22; break; |
ac4c9b04 MG |
5954 | case SHF_COMDEF: sindex = 23; break; |
5955 | default: break; | |
5956 | } | |
5957 | break; | |
83eef883 AFB |
5958 | case EM_PPC: |
5959 | if (flag == SHF_PPC_VLE) | |
5960 | sindex = 25; | |
5961 | break; | |
ac4c9b04 | 5962 | |
cfcac11d NC |
5963 | default: |
5964 | break; | |
148b93f2 | 5965 | } |
5477e8a0 L |
5966 | } |
5967 | ||
91d6fa6a | 5968 | if (sindex != -1) |
5477e8a0 | 5969 | { |
8d5ff12c L |
5970 | if (p != buff + field_size + 4) |
5971 | { | |
5972 | if (size < (10 + 2)) | |
bee0ee85 NC |
5973 | { |
5974 | warn (_("Internal error: not enough buffer room for section flag info")); | |
5975 | return _("<unknown>"); | |
5976 | } | |
8d5ff12c L |
5977 | size -= 2; |
5978 | *p++ = ','; | |
5979 | *p++ = ' '; | |
5980 | } | |
5981 | ||
91d6fa6a NC |
5982 | size -= flags [sindex].len; |
5983 | p = stpcpy (p, flags [sindex].str); | |
5477e8a0 | 5984 | } |
3b22753a | 5985 | else if (flag & SHF_MASKOS) |
8d5ff12c | 5986 | os_flags |= flag; |
d1133906 | 5987 | else if (flag & SHF_MASKPROC) |
8d5ff12c | 5988 | proc_flags |= flag; |
d1133906 | 5989 | else |
8d5ff12c | 5990 | unknown_flags |= flag; |
5477e8a0 L |
5991 | } |
5992 | else | |
5993 | { | |
5994 | switch (flag) | |
5995 | { | |
5996 | case SHF_WRITE: *p = 'W'; break; | |
5997 | case SHF_ALLOC: *p = 'A'; break; | |
5998 | case SHF_EXECINSTR: *p = 'X'; break; | |
5999 | case SHF_MERGE: *p = 'M'; break; | |
6000 | case SHF_STRINGS: *p = 'S'; break; | |
6001 | case SHF_INFO_LINK: *p = 'I'; break; | |
6002 | case SHF_LINK_ORDER: *p = 'L'; break; | |
6003 | case SHF_OS_NONCONFORMING: *p = 'O'; break; | |
6004 | case SHF_GROUP: *p = 'G'; break; | |
6005 | case SHF_TLS: *p = 'T'; break; | |
18ae9cc1 | 6006 | case SHF_EXCLUDE: *p = 'E'; break; |
77115a4a | 6007 | case SHF_COMPRESSED: *p = 'C'; break; |
a91e1603 | 6008 | case SHF_GNU_MBIND: *p = 'D'; break; |
5477e8a0 L |
6009 | |
6010 | default: | |
dda8d76d NC |
6011 | if ((filedata->file_header.e_machine == EM_X86_64 |
6012 | || filedata->file_header.e_machine == EM_L1OM | |
6013 | || filedata->file_header.e_machine == EM_K1OM) | |
5477e8a0 L |
6014 | && flag == SHF_X86_64_LARGE) |
6015 | *p = 'l'; | |
dda8d76d | 6016 | else if (filedata->file_header.e_machine == EM_ARM |
f0728ee3 | 6017 | && flag == SHF_ARM_PURECODE) |
91f68a68 | 6018 | *p = 'y'; |
dda8d76d | 6019 | else if (filedata->file_header.e_machine == EM_PPC |
83eef883 AFB |
6020 | && flag == SHF_PPC_VLE) |
6021 | *p = 'v'; | |
5477e8a0 L |
6022 | else if (flag & SHF_MASKOS) |
6023 | { | |
6024 | *p = 'o'; | |
6025 | sh_flags &= ~ SHF_MASKOS; | |
6026 | } | |
6027 | else if (flag & SHF_MASKPROC) | |
6028 | { | |
6029 | *p = 'p'; | |
6030 | sh_flags &= ~ SHF_MASKPROC; | |
6031 | } | |
6032 | else | |
6033 | *p = 'x'; | |
6034 | break; | |
6035 | } | |
6036 | p++; | |
d1133906 NC |
6037 | } |
6038 | } | |
76da6bbe | 6039 | |
8d5ff12c L |
6040 | if (do_section_details) |
6041 | { | |
6042 | if (os_flags) | |
6043 | { | |
6044 | size -= 5 + field_size; | |
6045 | if (p != buff + field_size + 4) | |
6046 | { | |
6047 | if (size < (2 + 1)) | |
bee0ee85 NC |
6048 | { |
6049 | warn (_("Internal error: not enough buffer room for section flag info")); | |
6050 | return _("<unknown>"); | |
6051 | } | |
8d5ff12c L |
6052 | size -= 2; |
6053 | *p++ = ','; | |
6054 | *p++ = ' '; | |
6055 | } | |
6056 | sprintf (p, "OS (%*.*lx)", field_size, field_size, | |
6057 | (unsigned long) os_flags); | |
6058 | p += 5 + field_size; | |
6059 | } | |
6060 | if (proc_flags) | |
6061 | { | |
6062 | size -= 7 + field_size; | |
6063 | if (p != buff + field_size + 4) | |
6064 | { | |
6065 | if (size < (2 + 1)) | |
bee0ee85 NC |
6066 | { |
6067 | warn (_("Internal error: not enough buffer room for section flag info")); | |
6068 | return _("<unknown>"); | |
6069 | } | |
8d5ff12c L |
6070 | size -= 2; |
6071 | *p++ = ','; | |
6072 | *p++ = ' '; | |
6073 | } | |
6074 | sprintf (p, "PROC (%*.*lx)", field_size, field_size, | |
6075 | (unsigned long) proc_flags); | |
6076 | p += 7 + field_size; | |
6077 | } | |
6078 | if (unknown_flags) | |
6079 | { | |
6080 | size -= 10 + field_size; | |
6081 | if (p != buff + field_size + 4) | |
6082 | { | |
6083 | if (size < (2 + 1)) | |
bee0ee85 NC |
6084 | { |
6085 | warn (_("Internal error: not enough buffer room for section flag info")); | |
6086 | return _("<unknown>"); | |
6087 | } | |
8d5ff12c L |
6088 | size -= 2; |
6089 | *p++ = ','; | |
6090 | *p++ = ' '; | |
6091 | } | |
2b692964 | 6092 | sprintf (p, _("UNKNOWN (%*.*lx)"), field_size, field_size, |
8d5ff12c L |
6093 | (unsigned long) unknown_flags); |
6094 | p += 10 + field_size; | |
6095 | } | |
6096 | } | |
6097 | ||
e9e44622 | 6098 | *p = '\0'; |
d1133906 NC |
6099 | return buff; |
6100 | } | |
6101 | ||
5844b465 | 6102 | static unsigned int ATTRIBUTE_WARN_UNUSED_RESULT |
ebdf1ebf | 6103 | get_compression_header (Elf_Internal_Chdr *chdr, unsigned char *buf, bfd_size_type size) |
77115a4a L |
6104 | { |
6105 | if (is_32bit_elf) | |
6106 | { | |
6107 | Elf32_External_Chdr *echdr = (Elf32_External_Chdr *) buf; | |
d8024a91 | 6108 | |
ebdf1ebf NC |
6109 | if (size < sizeof (* echdr)) |
6110 | { | |
6111 | error (_("Compressed section is too small even for a compression header\n")); | |
6112 | return 0; | |
6113 | } | |
6114 | ||
77115a4a L |
6115 | chdr->ch_type = BYTE_GET (echdr->ch_type); |
6116 | chdr->ch_size = BYTE_GET (echdr->ch_size); | |
6117 | chdr->ch_addralign = BYTE_GET (echdr->ch_addralign); | |
6118 | return sizeof (*echdr); | |
6119 | } | |
6120 | else | |
6121 | { | |
6122 | Elf64_External_Chdr *echdr = (Elf64_External_Chdr *) buf; | |
d8024a91 | 6123 | |
ebdf1ebf NC |
6124 | if (size < sizeof (* echdr)) |
6125 | { | |
6126 | error (_("Compressed section is too small even for a compression header\n")); | |
6127 | return 0; | |
6128 | } | |
6129 | ||
77115a4a L |
6130 | chdr->ch_type = BYTE_GET (echdr->ch_type); |
6131 | chdr->ch_size = BYTE_GET (echdr->ch_size); | |
6132 | chdr->ch_addralign = BYTE_GET (echdr->ch_addralign); | |
6133 | return sizeof (*echdr); | |
6134 | } | |
6135 | } | |
6136 | ||
32ec8896 | 6137 | static bfd_boolean |
dda8d76d | 6138 | process_section_headers (Filedata * filedata) |
252b5132 | 6139 | { |
2cf0635d | 6140 | Elf_Internal_Shdr * section; |
b34976b6 | 6141 | unsigned int i; |
252b5132 | 6142 | |
8fb879cd | 6143 | free (filedata->section_headers); |
dda8d76d | 6144 | filedata->section_headers = NULL; |
978c4450 AM |
6145 | free (filedata->dynamic_symbols); |
6146 | filedata->dynamic_symbols = NULL; | |
6147 | filedata->num_dynamic_syms = 0; | |
6148 | free (filedata->dynamic_strings); | |
6149 | filedata->dynamic_strings = NULL; | |
6150 | filedata->dynamic_strings_length = 0; | |
6151 | free (filedata->dynamic_syminfo); | |
6152 | filedata->dynamic_syminfo = NULL; | |
6153 | while (filedata->symtab_shndx_list != NULL) | |
8ff66993 | 6154 | { |
978c4450 AM |
6155 | elf_section_list *next = filedata->symtab_shndx_list->next; |
6156 | free (filedata->symtab_shndx_list); | |
6157 | filedata->symtab_shndx_list = next; | |
8ff66993 | 6158 | } |
252b5132 | 6159 | |
dda8d76d | 6160 | if (filedata->file_header.e_shnum == 0) |
252b5132 | 6161 | { |
82f2dbf7 | 6162 | /* PR binutils/12467. */ |
dda8d76d | 6163 | if (filedata->file_header.e_shoff != 0) |
32ec8896 NC |
6164 | { |
6165 | warn (_("possibly corrupt ELF file header - it has a non-zero" | |
6166 | " section header offset, but no section headers\n")); | |
6167 | return FALSE; | |
6168 | } | |
82f2dbf7 | 6169 | else if (do_sections) |
252b5132 RH |
6170 | printf (_("\nThere are no sections in this file.\n")); |
6171 | ||
32ec8896 | 6172 | return TRUE; |
252b5132 RH |
6173 | } |
6174 | ||
6175 | if (do_sections && !do_header) | |
d3a49aa8 AM |
6176 | printf (ngettext ("There is %d section header, " |
6177 | "starting at offset 0x%lx:\n", | |
6178 | "There are %d section headers, " | |
6179 | "starting at offset 0x%lx:\n", | |
dda8d76d NC |
6180 | filedata->file_header.e_shnum), |
6181 | filedata->file_header.e_shnum, | |
6182 | (unsigned long) filedata->file_header.e_shoff); | |
252b5132 | 6183 | |
9ea033b2 NC |
6184 | if (is_32bit_elf) |
6185 | { | |
dda8d76d | 6186 | if (! get_32bit_section_headers (filedata, FALSE)) |
32ec8896 NC |
6187 | return FALSE; |
6188 | } | |
6189 | else | |
6190 | { | |
dda8d76d | 6191 | if (! get_64bit_section_headers (filedata, FALSE)) |
32ec8896 | 6192 | return FALSE; |
9ea033b2 | 6193 | } |
252b5132 RH |
6194 | |
6195 | /* Read in the string table, so that we have names to display. */ | |
dda8d76d NC |
6196 | if (filedata->file_header.e_shstrndx != SHN_UNDEF |
6197 | && filedata->file_header.e_shstrndx < filedata->file_header.e_shnum) | |
252b5132 | 6198 | { |
dda8d76d | 6199 | section = filedata->section_headers + filedata->file_header.e_shstrndx; |
d40ac9bd | 6200 | |
c256ffe7 JJ |
6201 | if (section->sh_size != 0) |
6202 | { | |
dda8d76d NC |
6203 | filedata->string_table = (char *) get_data (NULL, filedata, section->sh_offset, |
6204 | 1, section->sh_size, | |
6205 | _("string table")); | |
0de14b54 | 6206 | |
dda8d76d | 6207 | filedata->string_table_length = filedata->string_table != NULL ? section->sh_size : 0; |
c256ffe7 | 6208 | } |
252b5132 RH |
6209 | } |
6210 | ||
6211 | /* Scan the sections for the dynamic symbol table | |
e3c8793a | 6212 | and dynamic string table and debug sections. */ |
89fac5e3 | 6213 | eh_addr_size = is_32bit_elf ? 4 : 8; |
dda8d76d | 6214 | switch (filedata->file_header.e_machine) |
89fac5e3 RS |
6215 | { |
6216 | case EM_MIPS: | |
6217 | case EM_MIPS_RS3_LE: | |
6218 | /* The 64-bit MIPS EABI uses a combination of 32-bit ELF and 64-bit | |
6219 | FDE addresses. However, the ABI also has a semi-official ILP32 | |
6220 | variant for which the normal FDE address size rules apply. | |
6221 | ||
6222 | GCC 4.0 marks EABI64 objects with a dummy .gcc_compiled_longXX | |
6223 | section, where XX is the size of longs in bits. Unfortunately, | |
6224 | earlier compilers provided no way of distinguishing ILP32 objects | |
6225 | from LP64 objects, so if there's any doubt, we should assume that | |
6226 | the official LP64 form is being used. */ | |
dda8d76d NC |
6227 | if ((filedata->file_header.e_flags & EF_MIPS_ABI) == E_MIPS_ABI_EABI64 |
6228 | && find_section (filedata, ".gcc_compiled_long32") == NULL) | |
89fac5e3 RS |
6229 | eh_addr_size = 8; |
6230 | break; | |
0f56a26a DD |
6231 | |
6232 | case EM_H8_300: | |
6233 | case EM_H8_300H: | |
dda8d76d | 6234 | switch (filedata->file_header.e_flags & EF_H8_MACH) |
0f56a26a DD |
6235 | { |
6236 | case E_H8_MACH_H8300: | |
6237 | case E_H8_MACH_H8300HN: | |
6238 | case E_H8_MACH_H8300SN: | |
6239 | case E_H8_MACH_H8300SXN: | |
6240 | eh_addr_size = 2; | |
6241 | break; | |
6242 | case E_H8_MACH_H8300H: | |
6243 | case E_H8_MACH_H8300S: | |
6244 | case E_H8_MACH_H8300SX: | |
6245 | eh_addr_size = 4; | |
6246 | break; | |
6247 | } | |
f4236fe4 DD |
6248 | break; |
6249 | ||
ff7eeb89 | 6250 | case EM_M32C_OLD: |
f4236fe4 | 6251 | case EM_M32C: |
dda8d76d | 6252 | switch (filedata->file_header.e_flags & EF_M32C_CPU_MASK) |
f4236fe4 DD |
6253 | { |
6254 | case EF_M32C_CPU_M16C: | |
6255 | eh_addr_size = 2; | |
6256 | break; | |
6257 | } | |
6258 | break; | |
89fac5e3 RS |
6259 | } |
6260 | ||
76ca31c0 NC |
6261 | #define CHECK_ENTSIZE_VALUES(section, i, size32, size64) \ |
6262 | do \ | |
6263 | { \ | |
6264 | bfd_size_type expected_entsize = is_32bit_elf ? size32 : size64; \ | |
6265 | if (section->sh_entsize != expected_entsize) \ | |
9dd3a467 | 6266 | { \ |
76ca31c0 NC |
6267 | char buf[40]; \ |
6268 | sprintf_vma (buf, section->sh_entsize); \ | |
6269 | /* Note: coded this way so that there is a single string for \ | |
6270 | translation. */ \ | |
6271 | error (_("Section %d has invalid sh_entsize of %s\n"), i, buf); \ | |
6272 | error (_("(Using the expected size of %u for the rest of this dump)\n"), \ | |
6273 | (unsigned) expected_entsize); \ | |
9dd3a467 | 6274 | section->sh_entsize = expected_entsize; \ |
76ca31c0 NC |
6275 | } \ |
6276 | } \ | |
08d8fa11 | 6277 | while (0) |
9dd3a467 NC |
6278 | |
6279 | #define CHECK_ENTSIZE(section, i, type) \ | |
08d8fa11 JJ |
6280 | CHECK_ENTSIZE_VALUES (section, i, sizeof (Elf32_External_##type), \ |
6281 | sizeof (Elf64_External_##type)) | |
6282 | ||
dda8d76d NC |
6283 | for (i = 0, section = filedata->section_headers; |
6284 | i < filedata->file_header.e_shnum; | |
b34976b6 | 6285 | i++, section++) |
252b5132 | 6286 | { |
2cf0635d | 6287 | char * name = SECTION_NAME (section); |
252b5132 RH |
6288 | |
6289 | if (section->sh_type == SHT_DYNSYM) | |
6290 | { | |
978c4450 | 6291 | if (filedata->dynamic_symbols != NULL) |
252b5132 RH |
6292 | { |
6293 | error (_("File contains multiple dynamic symbol tables\n")); | |
6294 | continue; | |
6295 | } | |
6296 | ||
08d8fa11 | 6297 | CHECK_ENTSIZE (section, i, Sym); |
978c4450 AM |
6298 | filedata->dynamic_symbols |
6299 | = GET_ELF_SYMBOLS (filedata, section, &filedata->num_dynamic_syms); | |
252b5132 RH |
6300 | } |
6301 | else if (section->sh_type == SHT_STRTAB | |
18bd398b | 6302 | && streq (name, ".dynstr")) |
252b5132 | 6303 | { |
978c4450 | 6304 | if (filedata->dynamic_strings != NULL) |
252b5132 RH |
6305 | { |
6306 | error (_("File contains multiple dynamic string tables\n")); | |
6307 | continue; | |
6308 | } | |
6309 | ||
978c4450 AM |
6310 | filedata->dynamic_strings |
6311 | = (char *) get_data (NULL, filedata, section->sh_offset, | |
6312 | 1, section->sh_size, _("dynamic strings")); | |
6313 | filedata->dynamic_strings_length | |
6314 | = filedata->dynamic_strings == NULL ? 0 : section->sh_size; | |
252b5132 | 6315 | } |
9ad5cbcf AM |
6316 | else if (section->sh_type == SHT_SYMTAB_SHNDX) |
6317 | { | |
6a40cf0c | 6318 | elf_section_list * entry = xmalloc (sizeof * entry); |
dda8d76d | 6319 | |
6a40cf0c | 6320 | entry->hdr = section; |
978c4450 AM |
6321 | entry->next = filedata->symtab_shndx_list; |
6322 | filedata->symtab_shndx_list = entry; | |
9ad5cbcf | 6323 | } |
08d8fa11 JJ |
6324 | else if (section->sh_type == SHT_SYMTAB) |
6325 | CHECK_ENTSIZE (section, i, Sym); | |
6326 | else if (section->sh_type == SHT_GROUP) | |
6327 | CHECK_ENTSIZE_VALUES (section, i, GRP_ENTRY_SIZE, GRP_ENTRY_SIZE); | |
6328 | else if (section->sh_type == SHT_REL) | |
6329 | CHECK_ENTSIZE (section, i, Rel); | |
6330 | else if (section->sh_type == SHT_RELA) | |
6331 | CHECK_ENTSIZE (section, i, Rela); | |
252b5132 | 6332 | else if ((do_debugging || do_debug_info || do_debug_abbrevs |
f9f0e732 | 6333 | || do_debug_lines || do_debug_pubnames || do_debug_pubtypes |
cb8f3167 | 6334 | || do_debug_aranges || do_debug_frames || do_debug_macinfo |
657d0d47 | 6335 | || do_debug_str || do_debug_loc || do_debug_ranges |
d85bf2ba | 6336 | || do_debug_addr || do_debug_cu_index || do_debug_links) |
1b315056 CS |
6337 | && (const_strneq (name, ".debug_") |
6338 | || const_strneq (name, ".zdebug_"))) | |
252b5132 | 6339 | { |
1b315056 CS |
6340 | if (name[1] == 'z') |
6341 | name += sizeof (".zdebug_") - 1; | |
6342 | else | |
6343 | name += sizeof (".debug_") - 1; | |
252b5132 RH |
6344 | |
6345 | if (do_debugging | |
4723351a CC |
6346 | || (do_debug_info && const_strneq (name, "info")) |
6347 | || (do_debug_info && const_strneq (name, "types")) | |
6348 | || (do_debug_abbrevs && const_strneq (name, "abbrev")) | |
b40bf0a2 NC |
6349 | || (do_debug_lines && strcmp (name, "line") == 0) |
6350 | || (do_debug_lines && const_strneq (name, "line.")) | |
4723351a CC |
6351 | || (do_debug_pubnames && const_strneq (name, "pubnames")) |
6352 | || (do_debug_pubtypes && const_strneq (name, "pubtypes")) | |
459d52c8 DE |
6353 | || (do_debug_pubnames && const_strneq (name, "gnu_pubnames")) |
6354 | || (do_debug_pubtypes && const_strneq (name, "gnu_pubtypes")) | |
4723351a CC |
6355 | || (do_debug_aranges && const_strneq (name, "aranges")) |
6356 | || (do_debug_ranges && const_strneq (name, "ranges")) | |
77145576 | 6357 | || (do_debug_ranges && const_strneq (name, "rnglists")) |
4723351a CC |
6358 | || (do_debug_frames && const_strneq (name, "frame")) |
6359 | || (do_debug_macinfo && const_strneq (name, "macinfo")) | |
6360 | || (do_debug_macinfo && const_strneq (name, "macro")) | |
6361 | || (do_debug_str && const_strneq (name, "str")) | |
6362 | || (do_debug_loc && const_strneq (name, "loc")) | |
77145576 | 6363 | || (do_debug_loc && const_strneq (name, "loclists")) |
657d0d47 CC |
6364 | || (do_debug_addr && const_strneq (name, "addr")) |
6365 | || (do_debug_cu_index && const_strneq (name, "cu_index")) | |
6366 | || (do_debug_cu_index && const_strneq (name, "tu_index")) | |
252b5132 | 6367 | ) |
6431e409 | 6368 | request_dump_bynumber (&filedata->dump, i, DEBUG_DUMP); |
252b5132 | 6369 | } |
a262ae96 | 6370 | /* Linkonce section to be combined with .debug_info at link time. */ |
09fd7e38 | 6371 | else if ((do_debugging || do_debug_info) |
0112cd26 | 6372 | && const_strneq (name, ".gnu.linkonce.wi.")) |
6431e409 | 6373 | request_dump_bynumber (&filedata->dump, i, DEBUG_DUMP); |
18bd398b | 6374 | else if (do_debug_frames && streq (name, ".eh_frame")) |
6431e409 | 6375 | request_dump_bynumber (&filedata->dump, i, DEBUG_DUMP); |
61364358 JK |
6376 | else if (do_gdb_index && (streq (name, ".gdb_index") |
6377 | || streq (name, ".debug_names"))) | |
6431e409 | 6378 | request_dump_bynumber (&filedata->dump, i, DEBUG_DUMP); |
6f875884 TG |
6379 | /* Trace sections for Itanium VMS. */ |
6380 | else if ((do_debugging || do_trace_info || do_trace_abbrevs | |
6381 | || do_trace_aranges) | |
6382 | && const_strneq (name, ".trace_")) | |
6383 | { | |
6384 | name += sizeof (".trace_") - 1; | |
6385 | ||
6386 | if (do_debugging | |
6387 | || (do_trace_info && streq (name, "info")) | |
6388 | || (do_trace_abbrevs && streq (name, "abbrev")) | |
6389 | || (do_trace_aranges && streq (name, "aranges")) | |
6390 | ) | |
6431e409 | 6391 | request_dump_bynumber (&filedata->dump, i, DEBUG_DUMP); |
6f875884 | 6392 | } |
dda8d76d NC |
6393 | else if ((do_debugging || do_debug_links) |
6394 | && (const_strneq (name, ".gnu_debuglink") | |
6395 | || const_strneq (name, ".gnu_debugaltlink"))) | |
6431e409 | 6396 | request_dump_bynumber (&filedata->dump, i, DEBUG_DUMP); |
252b5132 RH |
6397 | } |
6398 | ||
6399 | if (! do_sections) | |
32ec8896 | 6400 | return TRUE; |
252b5132 | 6401 | |
dda8d76d | 6402 | if (filedata->file_header.e_shnum > 1) |
3a1a2036 NC |
6403 | printf (_("\nSection Headers:\n")); |
6404 | else | |
6405 | printf (_("\nSection Header:\n")); | |
76da6bbe | 6406 | |
f7a99963 | 6407 | if (is_32bit_elf) |
595cf52e | 6408 | { |
5477e8a0 | 6409 | if (do_section_details) |
595cf52e L |
6410 | { |
6411 | printf (_(" [Nr] Name\n")); | |
5477e8a0 | 6412 | printf (_(" Type Addr Off Size ES Lk Inf Al\n")); |
595cf52e L |
6413 | } |
6414 | else | |
6415 | printf | |
6416 | (_(" [Nr] Name Type Addr Off Size ES Flg Lk Inf Al\n")); | |
6417 | } | |
d974e256 | 6418 | else if (do_wide) |
595cf52e | 6419 | { |
5477e8a0 | 6420 | if (do_section_details) |
595cf52e L |
6421 | { |
6422 | printf (_(" [Nr] Name\n")); | |
5477e8a0 | 6423 | printf (_(" Type Address Off Size ES Lk Inf Al\n")); |
595cf52e L |
6424 | } |
6425 | else | |
6426 | printf | |
6427 | (_(" [Nr] Name Type Address Off Size ES Flg Lk Inf Al\n")); | |
6428 | } | |
f7a99963 NC |
6429 | else |
6430 | { | |
5477e8a0 | 6431 | if (do_section_details) |
595cf52e L |
6432 | { |
6433 | printf (_(" [Nr] Name\n")); | |
5477e8a0 L |
6434 | printf (_(" Type Address Offset Link\n")); |
6435 | printf (_(" Size EntSize Info Align\n")); | |
595cf52e L |
6436 | } |
6437 | else | |
6438 | { | |
6439 | printf (_(" [Nr] Name Type Address Offset\n")); | |
6440 | printf (_(" Size EntSize Flags Link Info Align\n")); | |
6441 | } | |
f7a99963 | 6442 | } |
252b5132 | 6443 | |
5477e8a0 L |
6444 | if (do_section_details) |
6445 | printf (_(" Flags\n")); | |
6446 | ||
dda8d76d NC |
6447 | for (i = 0, section = filedata->section_headers; |
6448 | i < filedata->file_header.e_shnum; | |
b34976b6 | 6449 | i++, section++) |
252b5132 | 6450 | { |
dd905818 NC |
6451 | /* Run some sanity checks on the section header. */ |
6452 | ||
6453 | /* Check the sh_link field. */ | |
6454 | switch (section->sh_type) | |
6455 | { | |
285e3f99 AM |
6456 | case SHT_REL: |
6457 | case SHT_RELA: | |
6458 | if (section->sh_link == 0 | |
6459 | && (filedata->file_header.e_type == ET_EXEC | |
6460 | || filedata->file_header.e_type == ET_DYN)) | |
6461 | /* A dynamic relocation section where all entries use a | |
6462 | zero symbol index need not specify a symtab section. */ | |
6463 | break; | |
6464 | /* Fall through. */ | |
dd905818 NC |
6465 | case SHT_SYMTAB_SHNDX: |
6466 | case SHT_GROUP: | |
6467 | case SHT_HASH: | |
6468 | case SHT_GNU_HASH: | |
6469 | case SHT_GNU_versym: | |
285e3f99 | 6470 | if (section->sh_link == 0 |
dda8d76d NC |
6471 | || section->sh_link >= filedata->file_header.e_shnum |
6472 | || (filedata->section_headers[section->sh_link].sh_type != SHT_SYMTAB | |
6473 | && filedata->section_headers[section->sh_link].sh_type != SHT_DYNSYM)) | |
dd905818 NC |
6474 | warn (_("[%2u]: Link field (%u) should index a symtab section.\n"), |
6475 | i, section->sh_link); | |
6476 | break; | |
6477 | ||
6478 | case SHT_DYNAMIC: | |
6479 | case SHT_SYMTAB: | |
6480 | case SHT_DYNSYM: | |
6481 | case SHT_GNU_verneed: | |
6482 | case SHT_GNU_verdef: | |
6483 | case SHT_GNU_LIBLIST: | |
285e3f99 | 6484 | if (section->sh_link == 0 |
dda8d76d NC |
6485 | || section->sh_link >= filedata->file_header.e_shnum |
6486 | || filedata->section_headers[section->sh_link].sh_type != SHT_STRTAB) | |
dd905818 NC |
6487 | warn (_("[%2u]: Link field (%u) should index a string section.\n"), |
6488 | i, section->sh_link); | |
6489 | break; | |
6490 | ||
6491 | case SHT_INIT_ARRAY: | |
6492 | case SHT_FINI_ARRAY: | |
6493 | case SHT_PREINIT_ARRAY: | |
6494 | if (section->sh_type < SHT_LOOS && section->sh_link != 0) | |
6495 | warn (_("[%2u]: Unexpected value (%u) in link field.\n"), | |
6496 | i, section->sh_link); | |
6497 | break; | |
6498 | ||
6499 | default: | |
6500 | /* FIXME: Add support for target specific section types. */ | |
6501 | #if 0 /* Currently we do not check other section types as there are too | |
6502 | many special cases. Stab sections for example have a type | |
6503 | of SHT_PROGBITS but an sh_link field that links to the .stabstr | |
6504 | section. */ | |
6505 | if (section->sh_type < SHT_LOOS && section->sh_link != 0) | |
6506 | warn (_("[%2u]: Unexpected value (%u) in link field.\n"), | |
6507 | i, section->sh_link); | |
6508 | #endif | |
6509 | break; | |
6510 | } | |
6511 | ||
6512 | /* Check the sh_info field. */ | |
6513 | switch (section->sh_type) | |
6514 | { | |
6515 | case SHT_REL: | |
6516 | case SHT_RELA: | |
285e3f99 AM |
6517 | if (section->sh_info == 0 |
6518 | && (filedata->file_header.e_type == ET_EXEC | |
6519 | || filedata->file_header.e_type == ET_DYN)) | |
6520 | /* Dynamic relocations apply to segments, so they do not | |
6521 | need to specify the section they relocate. */ | |
6522 | break; | |
6523 | if (section->sh_info == 0 | |
dda8d76d NC |
6524 | || section->sh_info >= filedata->file_header.e_shnum |
6525 | || (filedata->section_headers[section->sh_info].sh_type != SHT_PROGBITS | |
6526 | && filedata->section_headers[section->sh_info].sh_type != SHT_NOBITS | |
6527 | && filedata->section_headers[section->sh_info].sh_type != SHT_NOTE | |
6528 | && filedata->section_headers[section->sh_info].sh_type != SHT_INIT_ARRAY | |
385e5b90 L |
6529 | && filedata->section_headers[section->sh_info].sh_type != SHT_FINI_ARRAY |
6530 | && filedata->section_headers[section->sh_info].sh_type != SHT_PREINIT_ARRAY | |
dd905818 | 6531 | /* FIXME: Are other section types valid ? */ |
dda8d76d | 6532 | && filedata->section_headers[section->sh_info].sh_type < SHT_LOOS)) |
285e3f99 AM |
6533 | warn (_("[%2u]: Info field (%u) should index a relocatable section.\n"), |
6534 | i, section->sh_info); | |
dd905818 NC |
6535 | break; |
6536 | ||
6537 | case SHT_DYNAMIC: | |
6538 | case SHT_HASH: | |
6539 | case SHT_SYMTAB_SHNDX: | |
6540 | case SHT_INIT_ARRAY: | |
6541 | case SHT_FINI_ARRAY: | |
6542 | case SHT_PREINIT_ARRAY: | |
6543 | if (section->sh_info != 0) | |
6544 | warn (_("[%2u]: Unexpected value (%u) in info field.\n"), | |
6545 | i, section->sh_info); | |
6546 | break; | |
6547 | ||
6548 | case SHT_GROUP: | |
6549 | case SHT_SYMTAB: | |
6550 | case SHT_DYNSYM: | |
6551 | /* A symbol index - we assume that it is valid. */ | |
6552 | break; | |
6553 | ||
6554 | default: | |
6555 | /* FIXME: Add support for target specific section types. */ | |
6556 | if (section->sh_type == SHT_NOBITS) | |
6557 | /* NOBITS section headers with non-zero sh_info fields can be | |
6558 | created when a binary is stripped of everything but its debug | |
1a9ccd70 NC |
6559 | information. The stripped sections have their headers |
6560 | preserved but their types set to SHT_NOBITS. So do not check | |
6561 | this type of section. */ | |
dd905818 NC |
6562 | ; |
6563 | else if (section->sh_flags & SHF_INFO_LINK) | |
6564 | { | |
dda8d76d | 6565 | if (section->sh_info < 1 || section->sh_info >= filedata->file_header.e_shnum) |
dd905818 NC |
6566 | warn (_("[%2u]: Expected link to another section in info field"), i); |
6567 | } | |
a91e1603 L |
6568 | else if (section->sh_type < SHT_LOOS |
6569 | && (section->sh_flags & SHF_GNU_MBIND) == 0 | |
6570 | && section->sh_info != 0) | |
dd905818 NC |
6571 | warn (_("[%2u]: Unexpected value (%u) in info field.\n"), |
6572 | i, section->sh_info); | |
6573 | break; | |
6574 | } | |
6575 | ||
3e6b6445 | 6576 | /* Check the sh_size field. */ |
dda8d76d | 6577 | if (section->sh_size > filedata->file_size |
3e6b6445 NC |
6578 | && section->sh_type != SHT_NOBITS |
6579 | && section->sh_type != SHT_NULL | |
6580 | && section->sh_type < SHT_LOOS) | |
6581 | warn (_("Size of section %u is larger than the entire file!\n"), i); | |
6582 | ||
7bfd842d | 6583 | printf (" [%2u] ", i); |
5477e8a0 | 6584 | if (do_section_details) |
dda8d76d | 6585 | printf ("%s\n ", printable_section_name (filedata, section)); |
595cf52e | 6586 | else |
74e1a04b | 6587 | print_symbol (-17, SECTION_NAME (section)); |
0b4362b0 | 6588 | |
ea52a088 | 6589 | printf (do_wide ? " %-15s " : " %-15.15s ", |
dda8d76d | 6590 | get_section_type_name (filedata, section->sh_type)); |
0b4362b0 | 6591 | |
f7a99963 NC |
6592 | if (is_32bit_elf) |
6593 | { | |
cfcac11d NC |
6594 | const char * link_too_big = NULL; |
6595 | ||
f7a99963 | 6596 | print_vma (section->sh_addr, LONG_HEX); |
76da6bbe | 6597 | |
f7a99963 NC |
6598 | printf ( " %6.6lx %6.6lx %2.2lx", |
6599 | (unsigned long) section->sh_offset, | |
6600 | (unsigned long) section->sh_size, | |
6601 | (unsigned long) section->sh_entsize); | |
d1133906 | 6602 | |
5477e8a0 L |
6603 | if (do_section_details) |
6604 | fputs (" ", stdout); | |
6605 | else | |
dda8d76d | 6606 | printf (" %3s ", get_elf_section_flags (filedata, section->sh_flags)); |
76da6bbe | 6607 | |
dda8d76d | 6608 | if (section->sh_link >= filedata->file_header.e_shnum) |
cfcac11d NC |
6609 | { |
6610 | link_too_big = ""; | |
6611 | /* The sh_link value is out of range. Normally this indicates | |
caa83f8b | 6612 | an error but it can have special values in Solaris binaries. */ |
dda8d76d | 6613 | switch (filedata->file_header.e_machine) |
cfcac11d | 6614 | { |
caa83f8b | 6615 | case EM_386: |
22abe556 | 6616 | case EM_IAMCU: |
caa83f8b | 6617 | case EM_X86_64: |
7f502d6c | 6618 | case EM_L1OM: |
7a9068fe | 6619 | case EM_K1OM: |
cfcac11d NC |
6620 | case EM_OLD_SPARCV9: |
6621 | case EM_SPARC32PLUS: | |
6622 | case EM_SPARCV9: | |
6623 | case EM_SPARC: | |
6624 | if (section->sh_link == (SHN_BEFORE & 0xffff)) | |
6625 | link_too_big = "BEFORE"; | |
6626 | else if (section->sh_link == (SHN_AFTER & 0xffff)) | |
6627 | link_too_big = "AFTER"; | |
6628 | break; | |
6629 | default: | |
6630 | break; | |
6631 | } | |
6632 | } | |
6633 | ||
6634 | if (do_section_details) | |
6635 | { | |
6636 | if (link_too_big != NULL && * link_too_big) | |
6637 | printf ("<%s> ", link_too_big); | |
6638 | else | |
6639 | printf ("%2u ", section->sh_link); | |
6640 | printf ("%3u %2lu\n", section->sh_info, | |
6641 | (unsigned long) section->sh_addralign); | |
6642 | } | |
6643 | else | |
6644 | printf ("%2u %3u %2lu\n", | |
6645 | section->sh_link, | |
6646 | section->sh_info, | |
6647 | (unsigned long) section->sh_addralign); | |
6648 | ||
6649 | if (link_too_big && ! * link_too_big) | |
6650 | warn (_("section %u: sh_link value of %u is larger than the number of sections\n"), | |
6651 | i, section->sh_link); | |
f7a99963 | 6652 | } |
d974e256 JJ |
6653 | else if (do_wide) |
6654 | { | |
6655 | print_vma (section->sh_addr, LONG_HEX); | |
6656 | ||
6657 | if ((long) section->sh_offset == section->sh_offset) | |
6658 | printf (" %6.6lx", (unsigned long) section->sh_offset); | |
6659 | else | |
6660 | { | |
6661 | putchar (' '); | |
6662 | print_vma (section->sh_offset, LONG_HEX); | |
6663 | } | |
6664 | ||
6665 | if ((unsigned long) section->sh_size == section->sh_size) | |
6666 | printf (" %6.6lx", (unsigned long) section->sh_size); | |
6667 | else | |
6668 | { | |
6669 | putchar (' '); | |
6670 | print_vma (section->sh_size, LONG_HEX); | |
6671 | } | |
6672 | ||
6673 | if ((unsigned long) section->sh_entsize == section->sh_entsize) | |
6674 | printf (" %2.2lx", (unsigned long) section->sh_entsize); | |
6675 | else | |
6676 | { | |
6677 | putchar (' '); | |
6678 | print_vma (section->sh_entsize, LONG_HEX); | |
6679 | } | |
6680 | ||
5477e8a0 L |
6681 | if (do_section_details) |
6682 | fputs (" ", stdout); | |
6683 | else | |
dda8d76d | 6684 | printf (" %3s ", get_elf_section_flags (filedata, section->sh_flags)); |
d974e256 | 6685 | |
72de5009 | 6686 | printf ("%2u %3u ", section->sh_link, section->sh_info); |
d974e256 JJ |
6687 | |
6688 | if ((unsigned long) section->sh_addralign == section->sh_addralign) | |
72de5009 | 6689 | printf ("%2lu\n", (unsigned long) section->sh_addralign); |
d974e256 JJ |
6690 | else |
6691 | { | |
6692 | print_vma (section->sh_addralign, DEC); | |
6693 | putchar ('\n'); | |
6694 | } | |
6695 | } | |
5477e8a0 | 6696 | else if (do_section_details) |
595cf52e | 6697 | { |
55cc53e9 | 6698 | putchar (' '); |
595cf52e L |
6699 | print_vma (section->sh_addr, LONG_HEX); |
6700 | if ((long) section->sh_offset == section->sh_offset) | |
5477e8a0 | 6701 | printf (" %16.16lx", (unsigned long) section->sh_offset); |
595cf52e L |
6702 | else |
6703 | { | |
6704 | printf (" "); | |
6705 | print_vma (section->sh_offset, LONG_HEX); | |
6706 | } | |
72de5009 | 6707 | printf (" %u\n ", section->sh_link); |
595cf52e | 6708 | print_vma (section->sh_size, LONG_HEX); |
5477e8a0 | 6709 | putchar (' '); |
595cf52e L |
6710 | print_vma (section->sh_entsize, LONG_HEX); |
6711 | ||
72de5009 AM |
6712 | printf (" %-16u %lu\n", |
6713 | section->sh_info, | |
595cf52e L |
6714 | (unsigned long) section->sh_addralign); |
6715 | } | |
f7a99963 NC |
6716 | else |
6717 | { | |
6718 | putchar (' '); | |
6719 | print_vma (section->sh_addr, LONG_HEX); | |
53c7db4b KH |
6720 | if ((long) section->sh_offset == section->sh_offset) |
6721 | printf (" %8.8lx", (unsigned long) section->sh_offset); | |
6722 | else | |
6723 | { | |
6724 | printf (" "); | |
6725 | print_vma (section->sh_offset, LONG_HEX); | |
6726 | } | |
f7a99963 NC |
6727 | printf ("\n "); |
6728 | print_vma (section->sh_size, LONG_HEX); | |
6729 | printf (" "); | |
6730 | print_vma (section->sh_entsize, LONG_HEX); | |
76da6bbe | 6731 | |
dda8d76d | 6732 | printf (" %3s ", get_elf_section_flags (filedata, section->sh_flags)); |
76da6bbe | 6733 | |
72de5009 AM |
6734 | printf (" %2u %3u %lu\n", |
6735 | section->sh_link, | |
6736 | section->sh_info, | |
f7a99963 NC |
6737 | (unsigned long) section->sh_addralign); |
6738 | } | |
5477e8a0 L |
6739 | |
6740 | if (do_section_details) | |
77115a4a | 6741 | { |
dda8d76d | 6742 | printf (" %s\n", get_elf_section_flags (filedata, section->sh_flags)); |
77115a4a L |
6743 | if ((section->sh_flags & SHF_COMPRESSED) != 0) |
6744 | { | |
6745 | /* Minimum section size is 12 bytes for 32-bit compression | |
6746 | header + 12 bytes for compressed data header. */ | |
6747 | unsigned char buf[24]; | |
d8024a91 | 6748 | |
77115a4a | 6749 | assert (sizeof (buf) >= sizeof (Elf64_External_Chdr)); |
dda8d76d | 6750 | if (get_data (&buf, filedata, section->sh_offset, 1, |
77115a4a L |
6751 | sizeof (buf), _("compression header"))) |
6752 | { | |
6753 | Elf_Internal_Chdr chdr; | |
d8024a91 | 6754 | |
5844b465 NC |
6755 | if (get_compression_header (&chdr, buf, sizeof (buf)) == 0) |
6756 | printf (_(" [<corrupt>]\n")); | |
77115a4a | 6757 | else |
5844b465 NC |
6758 | { |
6759 | if (chdr.ch_type == ELFCOMPRESS_ZLIB) | |
6760 | printf (" ZLIB, "); | |
6761 | else | |
6762 | printf (_(" [<unknown>: 0x%x], "), | |
6763 | chdr.ch_type); | |
6764 | print_vma (chdr.ch_size, LONG_HEX); | |
6765 | printf (", %lu\n", (unsigned long) chdr.ch_addralign); | |
6766 | } | |
77115a4a L |
6767 | } |
6768 | } | |
6769 | } | |
252b5132 RH |
6770 | } |
6771 | ||
5477e8a0 | 6772 | if (!do_section_details) |
3dbcc61d | 6773 | { |
9fb71ee4 NC |
6774 | /* The ordering of the letters shown here matches the ordering of the |
6775 | corresponding SHF_xxx values, and hence the order in which these | |
6776 | letters will be displayed to the user. */ | |
6777 | printf (_("Key to Flags:\n\ | |
6778 | W (write), A (alloc), X (execute), M (merge), S (strings), I (info),\n\ | |
6779 | L (link order), O (extra OS processing required), G (group), T (TLS),\n\ | |
fd85a6a1 | 6780 | C (compressed), x (unknown), o (OS specific), E (exclude),\n ")); |
dda8d76d NC |
6781 | if (filedata->file_header.e_machine == EM_X86_64 |
6782 | || filedata->file_header.e_machine == EM_L1OM | |
6783 | || filedata->file_header.e_machine == EM_K1OM) | |
9fb71ee4 | 6784 | printf (_("l (large), ")); |
dda8d76d | 6785 | else if (filedata->file_header.e_machine == EM_ARM) |
f0728ee3 | 6786 | printf (_("y (purecode), ")); |
dda8d76d | 6787 | else if (filedata->file_header.e_machine == EM_PPC) |
83eef883 | 6788 | printf (_("v (VLE), ")); |
9fb71ee4 | 6789 | printf ("p (processor specific)\n"); |
0b4362b0 | 6790 | } |
d1133906 | 6791 | |
32ec8896 | 6792 | return TRUE; |
252b5132 RH |
6793 | } |
6794 | ||
28d13567 AM |
6795 | static bfd_boolean |
6796 | get_symtab (Filedata *filedata, Elf_Internal_Shdr *symsec, | |
6797 | Elf_Internal_Sym **symtab, unsigned long *nsyms, | |
6798 | char **strtab, unsigned long *strtablen) | |
6799 | { | |
6800 | *strtab = NULL; | |
6801 | *strtablen = 0; | |
6802 | *symtab = GET_ELF_SYMBOLS (filedata, symsec, nsyms); | |
6803 | ||
6804 | if (*symtab == NULL) | |
6805 | return FALSE; | |
6806 | ||
6807 | if (symsec->sh_link != 0) | |
6808 | { | |
6809 | Elf_Internal_Shdr *strsec; | |
6810 | ||
6811 | if (symsec->sh_link >= filedata->file_header.e_shnum) | |
6812 | { | |
6813 | error (_("Bad sh_link in symbol table section\n")); | |
6814 | free (*symtab); | |
6815 | *symtab = NULL; | |
6816 | *nsyms = 0; | |
6817 | return FALSE; | |
6818 | } | |
6819 | ||
6820 | strsec = filedata->section_headers + symsec->sh_link; | |
6821 | ||
6822 | *strtab = (char *) get_data (NULL, filedata, strsec->sh_offset, | |
6823 | 1, strsec->sh_size, _("string table")); | |
6824 | if (*strtab == NULL) | |
6825 | { | |
6826 | free (*symtab); | |
6827 | *symtab = NULL; | |
6828 | *nsyms = 0; | |
6829 | return FALSE; | |
6830 | } | |
6831 | *strtablen = strsec->sh_size; | |
6832 | } | |
6833 | return TRUE; | |
6834 | } | |
6835 | ||
f5842774 L |
6836 | static const char * |
6837 | get_group_flags (unsigned int flags) | |
6838 | { | |
1449284b | 6839 | static char buff[128]; |
220453ec | 6840 | |
6d913794 NC |
6841 | if (flags == 0) |
6842 | return ""; | |
6843 | else if (flags == GRP_COMDAT) | |
6844 | return "COMDAT "; | |
f5842774 | 6845 | |
89246a0e AM |
6846 | snprintf (buff, sizeof buff, "[0x%x: %s%s%s]", |
6847 | flags, | |
6848 | flags & GRP_MASKOS ? _("<OS specific>") : "", | |
6849 | flags & GRP_MASKPROC ? _("<PROC specific>") : "", | |
6850 | (flags & ~(GRP_COMDAT | GRP_MASKOS | GRP_MASKPROC) | |
6851 | ? _("<unknown>") : "")); | |
6d913794 | 6852 | |
f5842774 L |
6853 | return buff; |
6854 | } | |
6855 | ||
32ec8896 | 6856 | static bfd_boolean |
dda8d76d | 6857 | process_section_groups (Filedata * filedata) |
f5842774 | 6858 | { |
2cf0635d | 6859 | Elf_Internal_Shdr * section; |
f5842774 | 6860 | unsigned int i; |
2cf0635d NC |
6861 | struct group * group; |
6862 | Elf_Internal_Shdr * symtab_sec; | |
6863 | Elf_Internal_Shdr * strtab_sec; | |
6864 | Elf_Internal_Sym * symtab; | |
ba5cdace | 6865 | unsigned long num_syms; |
2cf0635d | 6866 | char * strtab; |
c256ffe7 | 6867 | size_t strtab_size; |
d1f5c6e3 L |
6868 | |
6869 | /* Don't process section groups unless needed. */ | |
6870 | if (!do_unwind && !do_section_groups) | |
32ec8896 | 6871 | return TRUE; |
f5842774 | 6872 | |
dda8d76d | 6873 | if (filedata->file_header.e_shnum == 0) |
f5842774 L |
6874 | { |
6875 | if (do_section_groups) | |
82f2dbf7 | 6876 | printf (_("\nThere are no sections to group in this file.\n")); |
f5842774 | 6877 | |
32ec8896 | 6878 | return TRUE; |
f5842774 L |
6879 | } |
6880 | ||
dda8d76d | 6881 | if (filedata->section_headers == NULL) |
f5842774 L |
6882 | { |
6883 | error (_("Section headers are not available!\n")); | |
fa1908fd | 6884 | /* PR 13622: This can happen with a corrupt ELF header. */ |
32ec8896 | 6885 | return FALSE; |
f5842774 L |
6886 | } |
6887 | ||
978c4450 AM |
6888 | filedata->section_headers_groups |
6889 | = (struct group **) calloc (filedata->file_header.e_shnum, | |
6890 | sizeof (struct group *)); | |
e4b17d5c | 6891 | |
978c4450 | 6892 | if (filedata->section_headers_groups == NULL) |
e4b17d5c | 6893 | { |
8b73c356 | 6894 | error (_("Out of memory reading %u section group headers\n"), |
dda8d76d | 6895 | filedata->file_header.e_shnum); |
32ec8896 | 6896 | return FALSE; |
e4b17d5c L |
6897 | } |
6898 | ||
f5842774 | 6899 | /* Scan the sections for the group section. */ |
978c4450 | 6900 | filedata->group_count = 0; |
dda8d76d NC |
6901 | for (i = 0, section = filedata->section_headers; |
6902 | i < filedata->file_header.e_shnum; | |
f5842774 | 6903 | i++, section++) |
e4b17d5c | 6904 | if (section->sh_type == SHT_GROUP) |
978c4450 | 6905 | filedata->group_count++; |
e4b17d5c | 6906 | |
978c4450 | 6907 | if (filedata->group_count == 0) |
d1f5c6e3 L |
6908 | { |
6909 | if (do_section_groups) | |
6910 | printf (_("\nThere are no section groups in this file.\n")); | |
6911 | ||
32ec8896 | 6912 | return TRUE; |
d1f5c6e3 L |
6913 | } |
6914 | ||
978c4450 AM |
6915 | filedata->section_groups = (struct group *) calloc (filedata->group_count, |
6916 | sizeof (struct group)); | |
e4b17d5c | 6917 | |
978c4450 | 6918 | if (filedata->section_groups == NULL) |
e4b17d5c | 6919 | { |
8b73c356 | 6920 | error (_("Out of memory reading %lu groups\n"), |
978c4450 | 6921 | (unsigned long) filedata->group_count); |
32ec8896 | 6922 | return FALSE; |
e4b17d5c L |
6923 | } |
6924 | ||
d1f5c6e3 L |
6925 | symtab_sec = NULL; |
6926 | strtab_sec = NULL; | |
6927 | symtab = NULL; | |
ba5cdace | 6928 | num_syms = 0; |
d1f5c6e3 | 6929 | strtab = NULL; |
c256ffe7 | 6930 | strtab_size = 0; |
978c4450 | 6931 | for (i = 0, section = filedata->section_headers, group = filedata->section_groups; |
dda8d76d | 6932 | i < filedata->file_header.e_shnum; |
e4b17d5c | 6933 | i++, section++) |
f5842774 L |
6934 | { |
6935 | if (section->sh_type == SHT_GROUP) | |
6936 | { | |
dda8d76d | 6937 | const char * name = printable_section_name (filedata, section); |
74e1a04b | 6938 | const char * group_name; |
2cf0635d NC |
6939 | unsigned char * start; |
6940 | unsigned char * indices; | |
f5842774 | 6941 | unsigned int entry, j, size; |
2cf0635d NC |
6942 | Elf_Internal_Shdr * sec; |
6943 | Elf_Internal_Sym * sym; | |
f5842774 L |
6944 | |
6945 | /* Get the symbol table. */ | |
dda8d76d NC |
6946 | if (section->sh_link >= filedata->file_header.e_shnum |
6947 | || ((sec = filedata->section_headers + section->sh_link)->sh_type | |
c256ffe7 | 6948 | != SHT_SYMTAB)) |
f5842774 L |
6949 | { |
6950 | error (_("Bad sh_link in group section `%s'\n"), name); | |
6951 | continue; | |
6952 | } | |
d1f5c6e3 L |
6953 | |
6954 | if (symtab_sec != sec) | |
6955 | { | |
6956 | symtab_sec = sec; | |
6957 | if (symtab) | |
6958 | free (symtab); | |
dda8d76d | 6959 | symtab = GET_ELF_SYMBOLS (filedata, symtab_sec, & num_syms); |
d1f5c6e3 | 6960 | } |
f5842774 | 6961 | |
dd24e3da NC |
6962 | if (symtab == NULL) |
6963 | { | |
6964 | error (_("Corrupt header in group section `%s'\n"), name); | |
6965 | continue; | |
6966 | } | |
6967 | ||
ba5cdace NC |
6968 | if (section->sh_info >= num_syms) |
6969 | { | |
6970 | error (_("Bad sh_info in group section `%s'\n"), name); | |
6971 | continue; | |
6972 | } | |
6973 | ||
f5842774 L |
6974 | sym = symtab + section->sh_info; |
6975 | ||
6976 | if (ELF_ST_TYPE (sym->st_info) == STT_SECTION) | |
6977 | { | |
4fbb74a6 | 6978 | if (sym->st_shndx == 0 |
dda8d76d | 6979 | || sym->st_shndx >= filedata->file_header.e_shnum) |
f5842774 L |
6980 | { |
6981 | error (_("Bad sh_info in group section `%s'\n"), name); | |
6982 | continue; | |
6983 | } | |
ba2685cc | 6984 | |
dda8d76d | 6985 | group_name = SECTION_NAME (filedata->section_headers + sym->st_shndx); |
c256ffe7 JJ |
6986 | strtab_sec = NULL; |
6987 | if (strtab) | |
6988 | free (strtab); | |
f5842774 | 6989 | strtab = NULL; |
c256ffe7 | 6990 | strtab_size = 0; |
f5842774 L |
6991 | } |
6992 | else | |
6993 | { | |
6994 | /* Get the string table. */ | |
dda8d76d | 6995 | if (symtab_sec->sh_link >= filedata->file_header.e_shnum) |
c256ffe7 JJ |
6996 | { |
6997 | strtab_sec = NULL; | |
6998 | if (strtab) | |
6999 | free (strtab); | |
7000 | strtab = NULL; | |
7001 | strtab_size = 0; | |
7002 | } | |
7003 | else if (strtab_sec | |
dda8d76d | 7004 | != (sec = filedata->section_headers + symtab_sec->sh_link)) |
d1f5c6e3 L |
7005 | { |
7006 | strtab_sec = sec; | |
7007 | if (strtab) | |
7008 | free (strtab); | |
071436c6 | 7009 | |
dda8d76d | 7010 | strtab = (char *) get_data (NULL, filedata, strtab_sec->sh_offset, |
071436c6 NC |
7011 | 1, strtab_sec->sh_size, |
7012 | _("string table")); | |
c256ffe7 | 7013 | strtab_size = strtab != NULL ? strtab_sec->sh_size : 0; |
d1f5c6e3 | 7014 | } |
c256ffe7 | 7015 | group_name = sym->st_name < strtab_size |
2b692964 | 7016 | ? strtab + sym->st_name : _("<corrupt>"); |
f5842774 L |
7017 | } |
7018 | ||
c9c1d674 EG |
7019 | /* PR 17531: file: loop. */ |
7020 | if (section->sh_entsize > section->sh_size) | |
7021 | { | |
7022 | error (_("Section %s has sh_entsize (0x%lx) which is larger than its size (0x%lx)\n"), | |
dda8d76d | 7023 | printable_section_name (filedata, section), |
8066deb1 AM |
7024 | (unsigned long) section->sh_entsize, |
7025 | (unsigned long) section->sh_size); | |
61dd8e19 | 7026 | continue; |
c9c1d674 EG |
7027 | } |
7028 | ||
dda8d76d | 7029 | start = (unsigned char *) get_data (NULL, filedata, section->sh_offset, |
3f5e193b NC |
7030 | 1, section->sh_size, |
7031 | _("section data")); | |
59245841 NC |
7032 | if (start == NULL) |
7033 | continue; | |
f5842774 L |
7034 | |
7035 | indices = start; | |
7036 | size = (section->sh_size / section->sh_entsize) - 1; | |
7037 | entry = byte_get (indices, 4); | |
7038 | indices += 4; | |
e4b17d5c L |
7039 | |
7040 | if (do_section_groups) | |
7041 | { | |
2b692964 | 7042 | printf (_("\n%sgroup section [%5u] `%s' [%s] contains %u sections:\n"), |
391cb864 | 7043 | get_group_flags (entry), i, name, group_name, size); |
ba2685cc | 7044 | |
e4b17d5c L |
7045 | printf (_(" [Index] Name\n")); |
7046 | } | |
7047 | ||
7048 | group->group_index = i; | |
7049 | ||
f5842774 L |
7050 | for (j = 0; j < size; j++) |
7051 | { | |
2cf0635d | 7052 | struct group_list * g; |
e4b17d5c | 7053 | |
f5842774 L |
7054 | entry = byte_get (indices, 4); |
7055 | indices += 4; | |
7056 | ||
dda8d76d | 7057 | if (entry >= filedata->file_header.e_shnum) |
391cb864 | 7058 | { |
57028622 NC |
7059 | static unsigned num_group_errors = 0; |
7060 | ||
7061 | if (num_group_errors ++ < 10) | |
7062 | { | |
7063 | error (_("section [%5u] in group section [%5u] > maximum section [%5u]\n"), | |
dda8d76d | 7064 | entry, i, filedata->file_header.e_shnum - 1); |
57028622 | 7065 | if (num_group_errors == 10) |
67ce483b | 7066 | warn (_("Further error messages about overlarge group section indices suppressed\n")); |
57028622 | 7067 | } |
391cb864 L |
7068 | continue; |
7069 | } | |
391cb864 | 7070 | |
978c4450 | 7071 | if (filedata->section_headers_groups [entry] != NULL) |
e4b17d5c | 7072 | { |
d1f5c6e3 L |
7073 | if (entry) |
7074 | { | |
57028622 NC |
7075 | static unsigned num_errs = 0; |
7076 | ||
7077 | if (num_errs ++ < 10) | |
7078 | { | |
7079 | error (_("section [%5u] in group section [%5u] already in group section [%5u]\n"), | |
7080 | entry, i, | |
978c4450 | 7081 | filedata->section_headers_groups [entry]->group_index); |
57028622 NC |
7082 | if (num_errs == 10) |
7083 | warn (_("Further error messages about already contained group sections suppressed\n")); | |
7084 | } | |
d1f5c6e3 L |
7085 | continue; |
7086 | } | |
7087 | else | |
7088 | { | |
7089 | /* Intel C/C++ compiler may put section 0 in a | |
32ec8896 | 7090 | section group. We just warn it the first time |
d1f5c6e3 | 7091 | and ignore it afterwards. */ |
32ec8896 | 7092 | static bfd_boolean warned = FALSE; |
d1f5c6e3 L |
7093 | if (!warned) |
7094 | { | |
7095 | error (_("section 0 in group section [%5u]\n"), | |
978c4450 | 7096 | filedata->section_headers_groups [entry]->group_index); |
32ec8896 | 7097 | warned = TRUE; |
d1f5c6e3 L |
7098 | } |
7099 | } | |
e4b17d5c L |
7100 | } |
7101 | ||
978c4450 | 7102 | filedata->section_headers_groups [entry] = group; |
e4b17d5c L |
7103 | |
7104 | if (do_section_groups) | |
7105 | { | |
dda8d76d NC |
7106 | sec = filedata->section_headers + entry; |
7107 | printf (" [%5u] %s\n", entry, printable_section_name (filedata, sec)); | |
ba2685cc AM |
7108 | } |
7109 | ||
3f5e193b | 7110 | g = (struct group_list *) xmalloc (sizeof (struct group_list)); |
e4b17d5c L |
7111 | g->section_index = entry; |
7112 | g->next = group->root; | |
7113 | group->root = g; | |
f5842774 L |
7114 | } |
7115 | ||
f5842774 L |
7116 | if (start) |
7117 | free (start); | |
e4b17d5c L |
7118 | |
7119 | group++; | |
f5842774 L |
7120 | } |
7121 | } | |
7122 | ||
d1f5c6e3 L |
7123 | if (symtab) |
7124 | free (symtab); | |
7125 | if (strtab) | |
7126 | free (strtab); | |
32ec8896 | 7127 | return TRUE; |
f5842774 L |
7128 | } |
7129 | ||
28f997cf TG |
7130 | /* Data used to display dynamic fixups. */ |
7131 | ||
7132 | struct ia64_vms_dynfixup | |
7133 | { | |
7134 | bfd_vma needed_ident; /* Library ident number. */ | |
7135 | bfd_vma needed; /* Index in the dstrtab of the library name. */ | |
7136 | bfd_vma fixup_needed; /* Index of the library. */ | |
7137 | bfd_vma fixup_rela_cnt; /* Number of fixups. */ | |
7138 | bfd_vma fixup_rela_off; /* Fixups offset in the dynamic segment. */ | |
7139 | }; | |
7140 | ||
7141 | /* Data used to display dynamic relocations. */ | |
7142 | ||
7143 | struct ia64_vms_dynimgrela | |
7144 | { | |
7145 | bfd_vma img_rela_cnt; /* Number of relocations. */ | |
7146 | bfd_vma img_rela_off; /* Reloc offset in the dynamic segment. */ | |
7147 | }; | |
7148 | ||
7149 | /* Display IA-64 OpenVMS dynamic fixups (used to dynamically link a shared | |
7150 | library). */ | |
7151 | ||
32ec8896 | 7152 | static bfd_boolean |
dda8d76d NC |
7153 | dump_ia64_vms_dynamic_fixups (Filedata * filedata, |
7154 | struct ia64_vms_dynfixup * fixup, | |
7155 | const char * strtab, | |
7156 | unsigned int strtab_sz) | |
28f997cf | 7157 | { |
32ec8896 | 7158 | Elf64_External_VMS_IMAGE_FIXUP * imfs; |
28f997cf | 7159 | long i; |
32ec8896 | 7160 | const char * lib_name; |
28f997cf | 7161 | |
978c4450 AM |
7162 | imfs = get_data (NULL, filedata, |
7163 | filedata->dynamic_addr + fixup->fixup_rela_off, | |
95099889 | 7164 | sizeof (*imfs), fixup->fixup_rela_cnt, |
28f997cf TG |
7165 | _("dynamic section image fixups")); |
7166 | if (!imfs) | |
32ec8896 | 7167 | return FALSE; |
28f997cf TG |
7168 | |
7169 | if (fixup->needed < strtab_sz) | |
7170 | lib_name = strtab + fixup->needed; | |
7171 | else | |
7172 | { | |
32ec8896 | 7173 | warn (_("corrupt library name index of 0x%lx found in dynamic entry"), |
7f01b0c6 | 7174 | (unsigned long) fixup->needed); |
28f997cf TG |
7175 | lib_name = "???"; |
7176 | } | |
736990c4 | 7177 | |
28f997cf TG |
7178 | printf (_("\nImage fixups for needed library #%d: %s - ident: %lx\n"), |
7179 | (int) fixup->fixup_needed, lib_name, (long) fixup->needed_ident); | |
7180 | printf | |
7181 | (_("Seg Offset Type SymVec DataType\n")); | |
7182 | ||
7183 | for (i = 0; i < (long) fixup->fixup_rela_cnt; i++) | |
7184 | { | |
7185 | unsigned int type; | |
7186 | const char *rtype; | |
7187 | ||
7188 | printf ("%3u ", (unsigned) BYTE_GET (imfs [i].fixup_seg)); | |
7189 | printf_vma ((bfd_vma) BYTE_GET (imfs [i].fixup_offset)); | |
7190 | type = BYTE_GET (imfs [i].type); | |
7191 | rtype = elf_ia64_reloc_type (type); | |
7192 | if (rtype == NULL) | |
7193 | printf (" 0x%08x ", type); | |
7194 | else | |
7195 | printf (" %-32s ", rtype); | |
7196 | printf ("%6u ", (unsigned) BYTE_GET (imfs [i].symvec_index)); | |
7197 | printf ("0x%08x\n", (unsigned) BYTE_GET (imfs [i].data_type)); | |
7198 | } | |
7199 | ||
7200 | free (imfs); | |
32ec8896 | 7201 | return TRUE; |
28f997cf TG |
7202 | } |
7203 | ||
7204 | /* Display IA-64 OpenVMS dynamic relocations (used to relocate an image). */ | |
7205 | ||
32ec8896 | 7206 | static bfd_boolean |
dda8d76d | 7207 | dump_ia64_vms_dynamic_relocs (Filedata * filedata, struct ia64_vms_dynimgrela *imgrela) |
28f997cf TG |
7208 | { |
7209 | Elf64_External_VMS_IMAGE_RELA *imrs; | |
7210 | long i; | |
7211 | ||
978c4450 AM |
7212 | imrs = get_data (NULL, filedata, |
7213 | filedata->dynamic_addr + imgrela->img_rela_off, | |
95099889 | 7214 | sizeof (*imrs), imgrela->img_rela_cnt, |
9cf03b7e | 7215 | _("dynamic section image relocations")); |
28f997cf | 7216 | if (!imrs) |
32ec8896 | 7217 | return FALSE; |
28f997cf TG |
7218 | |
7219 | printf (_("\nImage relocs\n")); | |
7220 | printf | |
7221 | (_("Seg Offset Type Addend Seg Sym Off\n")); | |
7222 | ||
7223 | for (i = 0; i < (long) imgrela->img_rela_cnt; i++) | |
7224 | { | |
7225 | unsigned int type; | |
7226 | const char *rtype; | |
7227 | ||
7228 | printf ("%3u ", (unsigned) BYTE_GET (imrs [i].rela_seg)); | |
7229 | printf ("%08" BFD_VMA_FMT "x ", | |
7230 | (bfd_vma) BYTE_GET (imrs [i].rela_offset)); | |
7231 | type = BYTE_GET (imrs [i].type); | |
7232 | rtype = elf_ia64_reloc_type (type); | |
7233 | if (rtype == NULL) | |
7234 | printf ("0x%08x ", type); | |
7235 | else | |
7236 | printf ("%-31s ", rtype); | |
7237 | print_vma (BYTE_GET (imrs [i].addend), FULL_HEX); | |
7238 | printf ("%3u ", (unsigned) BYTE_GET (imrs [i].sym_seg)); | |
7239 | printf ("%08" BFD_VMA_FMT "x\n", | |
7240 | (bfd_vma) BYTE_GET (imrs [i].sym_offset)); | |
7241 | } | |
7242 | ||
7243 | free (imrs); | |
32ec8896 | 7244 | return TRUE; |
28f997cf TG |
7245 | } |
7246 | ||
7247 | /* Display IA-64 OpenVMS dynamic relocations and fixups. */ | |
7248 | ||
32ec8896 | 7249 | static bfd_boolean |
dda8d76d | 7250 | process_ia64_vms_dynamic_relocs (Filedata * filedata) |
28f997cf TG |
7251 | { |
7252 | struct ia64_vms_dynfixup fixup; | |
7253 | struct ia64_vms_dynimgrela imgrela; | |
7254 | Elf_Internal_Dyn *entry; | |
28f997cf TG |
7255 | bfd_vma strtab_off = 0; |
7256 | bfd_vma strtab_sz = 0; | |
7257 | char *strtab = NULL; | |
32ec8896 | 7258 | bfd_boolean res = TRUE; |
28f997cf TG |
7259 | |
7260 | memset (&fixup, 0, sizeof (fixup)); | |
7261 | memset (&imgrela, 0, sizeof (imgrela)); | |
7262 | ||
7263 | /* Note: the order of the entries is specified by the OpenVMS specs. */ | |
978c4450 AM |
7264 | for (entry = filedata->dynamic_section; |
7265 | entry < filedata->dynamic_section + filedata->dynamic_nent; | |
28f997cf TG |
7266 | entry++) |
7267 | { | |
7268 | switch (entry->d_tag) | |
7269 | { | |
7270 | case DT_IA_64_VMS_STRTAB_OFFSET: | |
7271 | strtab_off = entry->d_un.d_val; | |
7272 | break; | |
7273 | case DT_STRSZ: | |
7274 | strtab_sz = entry->d_un.d_val; | |
7275 | if (strtab == NULL) | |
978c4450 AM |
7276 | strtab = get_data (NULL, filedata, |
7277 | filedata->dynamic_addr + strtab_off, | |
28f997cf | 7278 | 1, strtab_sz, _("dynamic string section")); |
736990c4 NC |
7279 | if (strtab == NULL) |
7280 | strtab_sz = 0; | |
28f997cf TG |
7281 | break; |
7282 | ||
7283 | case DT_IA_64_VMS_NEEDED_IDENT: | |
7284 | fixup.needed_ident = entry->d_un.d_val; | |
7285 | break; | |
7286 | case DT_NEEDED: | |
7287 | fixup.needed = entry->d_un.d_val; | |
7288 | break; | |
7289 | case DT_IA_64_VMS_FIXUP_NEEDED: | |
7290 | fixup.fixup_needed = entry->d_un.d_val; | |
7291 | break; | |
7292 | case DT_IA_64_VMS_FIXUP_RELA_CNT: | |
7293 | fixup.fixup_rela_cnt = entry->d_un.d_val; | |
7294 | break; | |
7295 | case DT_IA_64_VMS_FIXUP_RELA_OFF: | |
7296 | fixup.fixup_rela_off = entry->d_un.d_val; | |
dda8d76d | 7297 | if (! dump_ia64_vms_dynamic_fixups (filedata, &fixup, strtab, strtab_sz)) |
32ec8896 | 7298 | res = FALSE; |
28f997cf | 7299 | break; |
28f997cf TG |
7300 | case DT_IA_64_VMS_IMG_RELA_CNT: |
7301 | imgrela.img_rela_cnt = entry->d_un.d_val; | |
7302 | break; | |
7303 | case DT_IA_64_VMS_IMG_RELA_OFF: | |
7304 | imgrela.img_rela_off = entry->d_un.d_val; | |
dda8d76d | 7305 | if (! dump_ia64_vms_dynamic_relocs (filedata, &imgrela)) |
32ec8896 | 7306 | res = FALSE; |
28f997cf TG |
7307 | break; |
7308 | ||
7309 | default: | |
7310 | break; | |
7311 | } | |
7312 | } | |
7313 | ||
7314 | if (strtab != NULL) | |
7315 | free (strtab); | |
7316 | ||
7317 | return res; | |
7318 | } | |
7319 | ||
85b1c36d | 7320 | static struct |
566b0d53 | 7321 | { |
2cf0635d | 7322 | const char * name; |
566b0d53 L |
7323 | int reloc; |
7324 | int size; | |
7325 | int rela; | |
32ec8896 NC |
7326 | } |
7327 | dynamic_relocations [] = | |
566b0d53 | 7328 | { |
32ec8896 NC |
7329 | { "REL", DT_REL, DT_RELSZ, FALSE }, |
7330 | { "RELA", DT_RELA, DT_RELASZ, TRUE }, | |
7331 | { "PLT", DT_JMPREL, DT_PLTRELSZ, UNKNOWN } | |
566b0d53 L |
7332 | }; |
7333 | ||
252b5132 | 7334 | /* Process the reloc section. */ |
18bd398b | 7335 | |
32ec8896 | 7336 | static bfd_boolean |
dda8d76d | 7337 | process_relocs (Filedata * filedata) |
252b5132 | 7338 | { |
b34976b6 AM |
7339 | unsigned long rel_size; |
7340 | unsigned long rel_offset; | |
252b5132 | 7341 | |
252b5132 | 7342 | if (!do_reloc) |
32ec8896 | 7343 | return TRUE; |
252b5132 RH |
7344 | |
7345 | if (do_using_dynamic) | |
7346 | { | |
32ec8896 | 7347 | int is_rela; |
2cf0635d | 7348 | const char * name; |
32ec8896 | 7349 | bfd_boolean has_dynamic_reloc; |
566b0d53 | 7350 | unsigned int i; |
0de14b54 | 7351 | |
32ec8896 | 7352 | has_dynamic_reloc = FALSE; |
252b5132 | 7353 | |
566b0d53 | 7354 | for (i = 0; i < ARRAY_SIZE (dynamic_relocations); i++) |
252b5132 | 7355 | { |
566b0d53 L |
7356 | is_rela = dynamic_relocations [i].rela; |
7357 | name = dynamic_relocations [i].name; | |
978c4450 AM |
7358 | rel_size = filedata->dynamic_info[dynamic_relocations [i].size]; |
7359 | rel_offset = filedata->dynamic_info[dynamic_relocations [i].reloc]; | |
103f02d3 | 7360 | |
32ec8896 NC |
7361 | if (rel_size) |
7362 | has_dynamic_reloc = TRUE; | |
566b0d53 L |
7363 | |
7364 | if (is_rela == UNKNOWN) | |
aa903cfb | 7365 | { |
566b0d53 | 7366 | if (dynamic_relocations [i].reloc == DT_JMPREL) |
978c4450 | 7367 | switch (filedata->dynamic_info[DT_PLTREL]) |
566b0d53 L |
7368 | { |
7369 | case DT_REL: | |
7370 | is_rela = FALSE; | |
7371 | break; | |
7372 | case DT_RELA: | |
7373 | is_rela = TRUE; | |
7374 | break; | |
7375 | } | |
aa903cfb | 7376 | } |
252b5132 | 7377 | |
566b0d53 L |
7378 | if (rel_size) |
7379 | { | |
7380 | printf | |
7381 | (_("\n'%s' relocation section at offset 0x%lx contains %ld bytes:\n"), | |
7382 | name, rel_offset, rel_size); | |
252b5132 | 7383 | |
dda8d76d NC |
7384 | dump_relocations (filedata, |
7385 | offset_from_vma (filedata, rel_offset, rel_size), | |
d93f0186 | 7386 | rel_size, |
978c4450 AM |
7387 | filedata->dynamic_symbols, |
7388 | filedata->num_dynamic_syms, | |
7389 | filedata->dynamic_strings, | |
7390 | filedata->dynamic_strings_length, | |
32ec8896 | 7391 | is_rela, TRUE /* is_dynamic */); |
566b0d53 | 7392 | } |
252b5132 | 7393 | } |
566b0d53 | 7394 | |
dda8d76d NC |
7395 | if (is_ia64_vms (filedata)) |
7396 | if (process_ia64_vms_dynamic_relocs (filedata)) | |
32ec8896 | 7397 | has_dynamic_reloc = TRUE; |
28f997cf | 7398 | |
566b0d53 | 7399 | if (! has_dynamic_reloc) |
252b5132 RH |
7400 | printf (_("\nThere are no dynamic relocations in this file.\n")); |
7401 | } | |
7402 | else | |
7403 | { | |
2cf0635d | 7404 | Elf_Internal_Shdr * section; |
b34976b6 | 7405 | unsigned long i; |
32ec8896 | 7406 | bfd_boolean found = FALSE; |
252b5132 | 7407 | |
dda8d76d NC |
7408 | for (i = 0, section = filedata->section_headers; |
7409 | i < filedata->file_header.e_shnum; | |
b34976b6 | 7410 | i++, section++) |
252b5132 RH |
7411 | { |
7412 | if ( section->sh_type != SHT_RELA | |
7413 | && section->sh_type != SHT_REL) | |
7414 | continue; | |
7415 | ||
7416 | rel_offset = section->sh_offset; | |
7417 | rel_size = section->sh_size; | |
7418 | ||
7419 | if (rel_size) | |
7420 | { | |
b34976b6 | 7421 | int is_rela; |
d3a49aa8 | 7422 | unsigned long num_rela; |
103f02d3 | 7423 | |
252b5132 RH |
7424 | printf (_("\nRelocation section ")); |
7425 | ||
dda8d76d | 7426 | if (filedata->string_table == NULL) |
19936277 | 7427 | printf ("%d", section->sh_name); |
252b5132 | 7428 | else |
dda8d76d | 7429 | printf ("'%s'", printable_section_name (filedata, section)); |
252b5132 | 7430 | |
d3a49aa8 AM |
7431 | num_rela = rel_size / section->sh_entsize; |
7432 | printf (ngettext (" at offset 0x%lx contains %lu entry:\n", | |
7433 | " at offset 0x%lx contains %lu entries:\n", | |
7434 | num_rela), | |
7435 | rel_offset, num_rela); | |
252b5132 | 7436 | |
d79b3d50 NC |
7437 | is_rela = section->sh_type == SHT_RELA; |
7438 | ||
4fbb74a6 | 7439 | if (section->sh_link != 0 |
dda8d76d | 7440 | && section->sh_link < filedata->file_header.e_shnum) |
af3fc3bc | 7441 | { |
2cf0635d NC |
7442 | Elf_Internal_Shdr * symsec; |
7443 | Elf_Internal_Sym * symtab; | |
d79b3d50 | 7444 | unsigned long nsyms; |
c256ffe7 | 7445 | unsigned long strtablen = 0; |
2cf0635d | 7446 | char * strtab = NULL; |
57346661 | 7447 | |
dda8d76d | 7448 | symsec = filedata->section_headers + section->sh_link; |
08d8fa11 JJ |
7449 | if (symsec->sh_type != SHT_SYMTAB |
7450 | && symsec->sh_type != SHT_DYNSYM) | |
7451 | continue; | |
7452 | ||
28d13567 AM |
7453 | if (!get_symtab (filedata, symsec, |
7454 | &symtab, &nsyms, &strtab, &strtablen)) | |
af3fc3bc | 7455 | continue; |
252b5132 | 7456 | |
dda8d76d | 7457 | dump_relocations (filedata, rel_offset, rel_size, |
bb4d2ac2 L |
7458 | symtab, nsyms, strtab, strtablen, |
7459 | is_rela, | |
7460 | symsec->sh_type == SHT_DYNSYM); | |
d79b3d50 NC |
7461 | if (strtab) |
7462 | free (strtab); | |
7463 | free (symtab); | |
7464 | } | |
7465 | else | |
dda8d76d | 7466 | dump_relocations (filedata, rel_offset, rel_size, |
32ec8896 NC |
7467 | NULL, 0, NULL, 0, is_rela, |
7468 | FALSE /* is_dynamic */); | |
252b5132 | 7469 | |
32ec8896 | 7470 | found = TRUE; |
252b5132 RH |
7471 | } |
7472 | } | |
7473 | ||
7474 | if (! found) | |
45ac8f4f NC |
7475 | { |
7476 | /* Users sometimes forget the -D option, so try to be helpful. */ | |
7477 | for (i = 0; i < ARRAY_SIZE (dynamic_relocations); i++) | |
7478 | { | |
978c4450 | 7479 | if (filedata->dynamic_info[dynamic_relocations [i].size]) |
45ac8f4f NC |
7480 | { |
7481 | printf (_("\nThere are no static relocations in this file.")); | |
7482 | printf (_("\nTo see the dynamic relocations add --use-dynamic to the command line.\n")); | |
7483 | ||
7484 | break; | |
7485 | } | |
7486 | } | |
7487 | if (i == ARRAY_SIZE (dynamic_relocations)) | |
7488 | printf (_("\nThere are no relocations in this file.\n")); | |
7489 | } | |
252b5132 RH |
7490 | } |
7491 | ||
32ec8896 | 7492 | return TRUE; |
252b5132 RH |
7493 | } |
7494 | ||
4d6ed7c8 NC |
7495 | /* An absolute address consists of a section and an offset. If the |
7496 | section is NULL, the offset itself is the address, otherwise, the | |
7497 | address equals to LOAD_ADDRESS(section) + offset. */ | |
7498 | ||
7499 | struct absaddr | |
948f632f DA |
7500 | { |
7501 | unsigned short section; | |
7502 | bfd_vma offset; | |
7503 | }; | |
4d6ed7c8 | 7504 | |
948f632f DA |
7505 | /* Find the nearest symbol at or below ADDR. Returns the symbol |
7506 | name, if found, and the offset from the symbol to ADDR. */ | |
4d6ed7c8 | 7507 | |
4d6ed7c8 | 7508 | static void |
dda8d76d NC |
7509 | find_symbol_for_address (Filedata * filedata, |
7510 | Elf_Internal_Sym * symtab, | |
7511 | unsigned long nsyms, | |
7512 | const char * strtab, | |
7513 | unsigned long strtab_size, | |
7514 | struct absaddr addr, | |
7515 | const char ** symname, | |
7516 | bfd_vma * offset) | |
4d6ed7c8 | 7517 | { |
d3ba0551 | 7518 | bfd_vma dist = 0x100000; |
2cf0635d | 7519 | Elf_Internal_Sym * sym; |
948f632f DA |
7520 | Elf_Internal_Sym * beg; |
7521 | Elf_Internal_Sym * end; | |
2cf0635d | 7522 | Elf_Internal_Sym * best = NULL; |
4d6ed7c8 | 7523 | |
0b6ae522 | 7524 | REMOVE_ARCH_BITS (addr.offset); |
948f632f DA |
7525 | beg = symtab; |
7526 | end = symtab + nsyms; | |
0b6ae522 | 7527 | |
948f632f | 7528 | while (beg < end) |
4d6ed7c8 | 7529 | { |
948f632f DA |
7530 | bfd_vma value; |
7531 | ||
7532 | sym = beg + (end - beg) / 2; | |
0b6ae522 | 7533 | |
948f632f | 7534 | value = sym->st_value; |
0b6ae522 DJ |
7535 | REMOVE_ARCH_BITS (value); |
7536 | ||
948f632f | 7537 | if (sym->st_name != 0 |
4d6ed7c8 | 7538 | && (addr.section == SHN_UNDEF || addr.section == sym->st_shndx) |
0b6ae522 DJ |
7539 | && addr.offset >= value |
7540 | && addr.offset - value < dist) | |
4d6ed7c8 NC |
7541 | { |
7542 | best = sym; | |
0b6ae522 | 7543 | dist = addr.offset - value; |
4d6ed7c8 NC |
7544 | if (!dist) |
7545 | break; | |
7546 | } | |
948f632f DA |
7547 | |
7548 | if (addr.offset < value) | |
7549 | end = sym; | |
7550 | else | |
7551 | beg = sym + 1; | |
4d6ed7c8 | 7552 | } |
1b31d05e | 7553 | |
4d6ed7c8 NC |
7554 | if (best) |
7555 | { | |
57346661 | 7556 | *symname = (best->st_name >= strtab_size |
2b692964 | 7557 | ? _("<corrupt>") : strtab + best->st_name); |
4d6ed7c8 NC |
7558 | *offset = dist; |
7559 | return; | |
7560 | } | |
1b31d05e | 7561 | |
4d6ed7c8 NC |
7562 | *symname = NULL; |
7563 | *offset = addr.offset; | |
7564 | } | |
7565 | ||
32ec8896 | 7566 | static /* signed */ int |
948f632f DA |
7567 | symcmp (const void *p, const void *q) |
7568 | { | |
7569 | Elf_Internal_Sym *sp = (Elf_Internal_Sym *) p; | |
7570 | Elf_Internal_Sym *sq = (Elf_Internal_Sym *) q; | |
7571 | ||
7572 | return sp->st_value > sq->st_value ? 1 : (sp->st_value < sq->st_value ? -1 : 0); | |
7573 | } | |
7574 | ||
7575 | /* Process the unwind section. */ | |
7576 | ||
7577 | #include "unwind-ia64.h" | |
7578 | ||
7579 | struct ia64_unw_table_entry | |
7580 | { | |
7581 | struct absaddr start; | |
7582 | struct absaddr end; | |
7583 | struct absaddr info; | |
7584 | }; | |
7585 | ||
7586 | struct ia64_unw_aux_info | |
7587 | { | |
32ec8896 NC |
7588 | struct ia64_unw_table_entry * table; /* Unwind table. */ |
7589 | unsigned long table_len; /* Length of unwind table. */ | |
7590 | unsigned char * info; /* Unwind info. */ | |
7591 | unsigned long info_size; /* Size of unwind info. */ | |
7592 | bfd_vma info_addr; /* Starting address of unwind info. */ | |
7593 | bfd_vma seg_base; /* Starting address of segment. */ | |
7594 | Elf_Internal_Sym * symtab; /* The symbol table. */ | |
7595 | unsigned long nsyms; /* Number of symbols. */ | |
7596 | Elf_Internal_Sym * funtab; /* Sorted table of STT_FUNC symbols. */ | |
7597 | unsigned long nfuns; /* Number of entries in funtab. */ | |
7598 | char * strtab; /* The string table. */ | |
7599 | unsigned long strtab_size; /* Size of string table. */ | |
948f632f DA |
7600 | }; |
7601 | ||
32ec8896 | 7602 | static bfd_boolean |
dda8d76d | 7603 | dump_ia64_unwind (Filedata * filedata, struct ia64_unw_aux_info * aux) |
4d6ed7c8 | 7604 | { |
2cf0635d | 7605 | struct ia64_unw_table_entry * tp; |
948f632f | 7606 | unsigned long j, nfuns; |
4d6ed7c8 | 7607 | int in_body; |
32ec8896 | 7608 | bfd_boolean res = TRUE; |
7036c0e1 | 7609 | |
948f632f DA |
7610 | aux->funtab = xmalloc (aux->nsyms * sizeof (Elf_Internal_Sym)); |
7611 | for (nfuns = 0, j = 0; j < aux->nsyms; j++) | |
7612 | if (aux->symtab[j].st_value && ELF_ST_TYPE (aux->symtab[j].st_info) == STT_FUNC) | |
7613 | aux->funtab[nfuns++] = aux->symtab[j]; | |
7614 | aux->nfuns = nfuns; | |
7615 | qsort (aux->funtab, aux->nfuns, sizeof (Elf_Internal_Sym), symcmp); | |
7616 | ||
4d6ed7c8 NC |
7617 | for (tp = aux->table; tp < aux->table + aux->table_len; ++tp) |
7618 | { | |
7619 | bfd_vma stamp; | |
7620 | bfd_vma offset; | |
2cf0635d NC |
7621 | const unsigned char * dp; |
7622 | const unsigned char * head; | |
53774b7e | 7623 | const unsigned char * end; |
2cf0635d | 7624 | const char * procname; |
4d6ed7c8 | 7625 | |
dda8d76d | 7626 | find_symbol_for_address (filedata, aux->funtab, aux->nfuns, aux->strtab, |
57346661 | 7627 | aux->strtab_size, tp->start, &procname, &offset); |
4d6ed7c8 NC |
7628 | |
7629 | fputs ("\n<", stdout); | |
7630 | ||
7631 | if (procname) | |
7632 | { | |
7633 | fputs (procname, stdout); | |
7634 | ||
7635 | if (offset) | |
7636 | printf ("+%lx", (unsigned long) offset); | |
7637 | } | |
7638 | ||
7639 | fputs (">: [", stdout); | |
7640 | print_vma (tp->start.offset, PREFIX_HEX); | |
7641 | fputc ('-', stdout); | |
7642 | print_vma (tp->end.offset, PREFIX_HEX); | |
86f55779 | 7643 | printf ("], info at +0x%lx\n", |
4d6ed7c8 NC |
7644 | (unsigned long) (tp->info.offset - aux->seg_base)); |
7645 | ||
53774b7e NC |
7646 | /* PR 17531: file: 86232b32. */ |
7647 | if (aux->info == NULL) | |
7648 | continue; | |
7649 | ||
97c0a079 AM |
7650 | offset = tp->info.offset; |
7651 | if (tp->info.section) | |
7652 | { | |
7653 | if (tp->info.section >= filedata->file_header.e_shnum) | |
7654 | { | |
7655 | warn (_("Invalid section %u in table entry %ld\n"), | |
7656 | tp->info.section, (long) (tp - aux->table)); | |
7657 | res = FALSE; | |
7658 | continue; | |
7659 | } | |
7660 | offset += filedata->section_headers[tp->info.section].sh_addr; | |
7661 | } | |
7662 | offset -= aux->info_addr; | |
53774b7e | 7663 | /* PR 17531: file: 0997b4d1. */ |
90679903 AM |
7664 | if (offset >= aux->info_size |
7665 | || aux->info_size - offset < 8) | |
53774b7e NC |
7666 | { |
7667 | warn (_("Invalid offset %lx in table entry %ld\n"), | |
7668 | (long) tp->info.offset, (long) (tp - aux->table)); | |
32ec8896 | 7669 | res = FALSE; |
53774b7e NC |
7670 | continue; |
7671 | } | |
7672 | ||
97c0a079 | 7673 | head = aux->info + offset; |
a4a00738 | 7674 | stamp = byte_get ((unsigned char *) head, sizeof (stamp)); |
4d6ed7c8 | 7675 | |
86f55779 | 7676 | printf (" v%u, flags=0x%lx (%s%s), len=%lu bytes\n", |
4d6ed7c8 NC |
7677 | (unsigned) UNW_VER (stamp), |
7678 | (unsigned long) ((stamp & UNW_FLAG_MASK) >> 32), | |
7679 | UNW_FLAG_EHANDLER (stamp) ? " ehandler" : "", | |
7680 | UNW_FLAG_UHANDLER (stamp) ? " uhandler" : "", | |
89fac5e3 | 7681 | (unsigned long) (eh_addr_size * UNW_LENGTH (stamp))); |
4d6ed7c8 NC |
7682 | |
7683 | if (UNW_VER (stamp) != 1) | |
7684 | { | |
2b692964 | 7685 | printf (_("\tUnknown version.\n")); |
4d6ed7c8 NC |
7686 | continue; |
7687 | } | |
7688 | ||
7689 | in_body = 0; | |
53774b7e NC |
7690 | end = head + 8 + eh_addr_size * UNW_LENGTH (stamp); |
7691 | /* PR 17531: file: 16ceda89. */ | |
7692 | if (end > aux->info + aux->info_size) | |
7693 | end = aux->info + aux->info_size; | |
7694 | for (dp = head + 8; dp < end;) | |
b4477bc8 | 7695 | dp = unw_decode (dp, in_body, & in_body, end); |
4d6ed7c8 | 7696 | } |
948f632f DA |
7697 | |
7698 | free (aux->funtab); | |
32ec8896 NC |
7699 | |
7700 | return res; | |
4d6ed7c8 NC |
7701 | } |
7702 | ||
53774b7e | 7703 | static bfd_boolean |
dda8d76d NC |
7704 | slurp_ia64_unwind_table (Filedata * filedata, |
7705 | struct ia64_unw_aux_info * aux, | |
7706 | Elf_Internal_Shdr * sec) | |
4d6ed7c8 | 7707 | { |
89fac5e3 | 7708 | unsigned long size, nrelas, i; |
2cf0635d NC |
7709 | Elf_Internal_Phdr * seg; |
7710 | struct ia64_unw_table_entry * tep; | |
7711 | Elf_Internal_Shdr * relsec; | |
7712 | Elf_Internal_Rela * rela; | |
7713 | Elf_Internal_Rela * rp; | |
7714 | unsigned char * table; | |
7715 | unsigned char * tp; | |
7716 | Elf_Internal_Sym * sym; | |
7717 | const char * relname; | |
4d6ed7c8 | 7718 | |
53774b7e NC |
7719 | aux->table_len = 0; |
7720 | ||
4d6ed7c8 NC |
7721 | /* First, find the starting address of the segment that includes |
7722 | this section: */ | |
7723 | ||
dda8d76d | 7724 | if (filedata->file_header.e_phnum) |
4d6ed7c8 | 7725 | { |
dda8d76d | 7726 | if (! get_program_headers (filedata)) |
53774b7e | 7727 | return FALSE; |
4d6ed7c8 | 7728 | |
dda8d76d NC |
7729 | for (seg = filedata->program_headers; |
7730 | seg < filedata->program_headers + filedata->file_header.e_phnum; | |
d93f0186 | 7731 | ++seg) |
4d6ed7c8 NC |
7732 | { |
7733 | if (seg->p_type != PT_LOAD) | |
7734 | continue; | |
7735 | ||
7736 | if (sec->sh_addr >= seg->p_vaddr | |
7737 | && (sec->sh_addr + sec->sh_size <= seg->p_vaddr + seg->p_memsz)) | |
7738 | { | |
7739 | aux->seg_base = seg->p_vaddr; | |
7740 | break; | |
7741 | } | |
7742 | } | |
4d6ed7c8 NC |
7743 | } |
7744 | ||
7745 | /* Second, build the unwind table from the contents of the unwind section: */ | |
7746 | size = sec->sh_size; | |
dda8d76d | 7747 | table = (unsigned char *) get_data (NULL, filedata, sec->sh_offset, 1, size, |
3f5e193b | 7748 | _("unwind table")); |
a6e9f9df | 7749 | if (!table) |
53774b7e | 7750 | return FALSE; |
4d6ed7c8 | 7751 | |
53774b7e | 7752 | aux->table_len = size / (3 * eh_addr_size); |
3f5e193b | 7753 | aux->table = (struct ia64_unw_table_entry *) |
53774b7e | 7754 | xcmalloc (aux->table_len, sizeof (aux->table[0])); |
89fac5e3 | 7755 | tep = aux->table; |
53774b7e NC |
7756 | |
7757 | for (tp = table; tp <= table + size - (3 * eh_addr_size); ++tep) | |
4d6ed7c8 NC |
7758 | { |
7759 | tep->start.section = SHN_UNDEF; | |
7760 | tep->end.section = SHN_UNDEF; | |
7761 | tep->info.section = SHN_UNDEF; | |
c6a0c689 AM |
7762 | tep->start.offset = byte_get (tp, eh_addr_size); tp += eh_addr_size; |
7763 | tep->end.offset = byte_get (tp, eh_addr_size); tp += eh_addr_size; | |
7764 | tep->info.offset = byte_get (tp, eh_addr_size); tp += eh_addr_size; | |
4d6ed7c8 NC |
7765 | tep->start.offset += aux->seg_base; |
7766 | tep->end.offset += aux->seg_base; | |
7767 | tep->info.offset += aux->seg_base; | |
7768 | } | |
7769 | free (table); | |
7770 | ||
41e92641 | 7771 | /* Third, apply any relocations to the unwind table: */ |
dda8d76d NC |
7772 | for (relsec = filedata->section_headers; |
7773 | relsec < filedata->section_headers + filedata->file_header.e_shnum; | |
4d6ed7c8 NC |
7774 | ++relsec) |
7775 | { | |
7776 | if (relsec->sh_type != SHT_RELA | |
dda8d76d NC |
7777 | || relsec->sh_info >= filedata->file_header.e_shnum |
7778 | || filedata->section_headers + relsec->sh_info != sec) | |
4d6ed7c8 NC |
7779 | continue; |
7780 | ||
dda8d76d | 7781 | if (!slurp_rela_relocs (filedata, relsec->sh_offset, relsec->sh_size, |
4d6ed7c8 | 7782 | & rela, & nrelas)) |
53774b7e NC |
7783 | { |
7784 | free (aux->table); | |
7785 | aux->table = NULL; | |
7786 | aux->table_len = 0; | |
7787 | return FALSE; | |
7788 | } | |
4d6ed7c8 NC |
7789 | |
7790 | for (rp = rela; rp < rela + nrelas; ++rp) | |
7791 | { | |
4770fb94 | 7792 | unsigned int sym_ndx; |
726bd37d AM |
7793 | unsigned int r_type = get_reloc_type (filedata, rp->r_info); |
7794 | relname = elf_ia64_reloc_type (r_type); | |
4d6ed7c8 | 7795 | |
82b1b41b NC |
7796 | /* PR 17531: file: 9fa67536. */ |
7797 | if (relname == NULL) | |
7798 | { | |
726bd37d | 7799 | warn (_("Skipping unknown relocation type: %u\n"), r_type); |
82b1b41b NC |
7800 | continue; |
7801 | } | |
948f632f | 7802 | |
0112cd26 | 7803 | if (! const_strneq (relname, "R_IA64_SEGREL")) |
4d6ed7c8 | 7804 | { |
82b1b41b | 7805 | warn (_("Skipping unexpected relocation type: %s\n"), relname); |
4d6ed7c8 NC |
7806 | continue; |
7807 | } | |
7808 | ||
89fac5e3 | 7809 | i = rp->r_offset / (3 * eh_addr_size); |
4d6ed7c8 | 7810 | |
53774b7e NC |
7811 | /* PR 17531: file: 5bc8d9bf. */ |
7812 | if (i >= aux->table_len) | |
7813 | { | |
7814 | warn (_("Skipping reloc with overlarge offset: %lx\n"), i); | |
7815 | continue; | |
7816 | } | |
7817 | ||
4770fb94 AM |
7818 | sym_ndx = get_reloc_symindex (rp->r_info); |
7819 | if (sym_ndx >= aux->nsyms) | |
7820 | { | |
7821 | warn (_("Skipping reloc with invalid symbol index: %u\n"), | |
7822 | sym_ndx); | |
7823 | continue; | |
7824 | } | |
7825 | sym = aux->symtab + sym_ndx; | |
7826 | ||
53774b7e | 7827 | switch (rp->r_offset / eh_addr_size % 3) |
4d6ed7c8 NC |
7828 | { |
7829 | case 0: | |
7830 | aux->table[i].start.section = sym->st_shndx; | |
e466bc6e | 7831 | aux->table[i].start.offset = rp->r_addend + sym->st_value; |
4d6ed7c8 NC |
7832 | break; |
7833 | case 1: | |
7834 | aux->table[i].end.section = sym->st_shndx; | |
e466bc6e | 7835 | aux->table[i].end.offset = rp->r_addend + sym->st_value; |
4d6ed7c8 NC |
7836 | break; |
7837 | case 2: | |
7838 | aux->table[i].info.section = sym->st_shndx; | |
e466bc6e | 7839 | aux->table[i].info.offset = rp->r_addend + sym->st_value; |
4d6ed7c8 NC |
7840 | break; |
7841 | default: | |
7842 | break; | |
7843 | } | |
7844 | } | |
7845 | ||
7846 | free (rela); | |
7847 | } | |
7848 | ||
53774b7e | 7849 | return TRUE; |
4d6ed7c8 NC |
7850 | } |
7851 | ||
32ec8896 | 7852 | static bfd_boolean |
dda8d76d | 7853 | ia64_process_unwind (Filedata * filedata) |
4d6ed7c8 | 7854 | { |
2cf0635d NC |
7855 | Elf_Internal_Shdr * sec; |
7856 | Elf_Internal_Shdr * unwsec = NULL; | |
89fac5e3 | 7857 | unsigned long i, unwcount = 0, unwstart = 0; |
57346661 | 7858 | struct ia64_unw_aux_info aux; |
32ec8896 | 7859 | bfd_boolean res = TRUE; |
f1467e33 | 7860 | |
4d6ed7c8 NC |
7861 | memset (& aux, 0, sizeof (aux)); |
7862 | ||
dda8d76d | 7863 | for (i = 0, sec = filedata->section_headers; i < filedata->file_header.e_shnum; ++i, ++sec) |
4d6ed7c8 | 7864 | { |
28d13567 | 7865 | if (sec->sh_type == SHT_SYMTAB) |
4d6ed7c8 | 7866 | { |
28d13567 | 7867 | if (aux.symtab) |
4082ef84 | 7868 | { |
28d13567 AM |
7869 | error (_("Multiple symbol tables encountered\n")); |
7870 | free (aux.symtab); | |
7871 | aux.symtab = NULL; | |
4082ef84 | 7872 | free (aux.strtab); |
28d13567 | 7873 | aux.strtab = NULL; |
4082ef84 | 7874 | } |
28d13567 AM |
7875 | if (!get_symtab (filedata, sec, &aux.symtab, &aux.nsyms, |
7876 | &aux.strtab, &aux.strtab_size)) | |
7877 | return FALSE; | |
4d6ed7c8 NC |
7878 | } |
7879 | else if (sec->sh_type == SHT_IA_64_UNWIND) | |
579f31ac JJ |
7880 | unwcount++; |
7881 | } | |
7882 | ||
7883 | if (!unwcount) | |
7884 | printf (_("\nThere are no unwind sections in this file.\n")); | |
7885 | ||
7886 | while (unwcount-- > 0) | |
7887 | { | |
2cf0635d | 7888 | char * suffix; |
579f31ac JJ |
7889 | size_t len, len2; |
7890 | ||
dda8d76d NC |
7891 | for (i = unwstart, sec = filedata->section_headers + unwstart, unwsec = NULL; |
7892 | i < filedata->file_header.e_shnum; ++i, ++sec) | |
579f31ac JJ |
7893 | if (sec->sh_type == SHT_IA_64_UNWIND) |
7894 | { | |
7895 | unwsec = sec; | |
7896 | break; | |
7897 | } | |
4082ef84 NC |
7898 | /* We have already counted the number of SHT_IA64_UNWIND |
7899 | sections so the loop above should never fail. */ | |
7900 | assert (unwsec != NULL); | |
579f31ac JJ |
7901 | |
7902 | unwstart = i + 1; | |
7903 | len = sizeof (ELF_STRING_ia64_unwind_once) - 1; | |
7904 | ||
e4b17d5c L |
7905 | if ((unwsec->sh_flags & SHF_GROUP) != 0) |
7906 | { | |
7907 | /* We need to find which section group it is in. */ | |
4082ef84 | 7908 | struct group_list * g; |
e4b17d5c | 7909 | |
978c4450 AM |
7910 | if (filedata->section_headers_groups == NULL |
7911 | || filedata->section_headers_groups[i] == NULL) | |
dda8d76d | 7912 | i = filedata->file_header.e_shnum; |
4082ef84 | 7913 | else |
e4b17d5c | 7914 | { |
978c4450 | 7915 | g = filedata->section_headers_groups[i]->root; |
18bd398b | 7916 | |
4082ef84 NC |
7917 | for (; g != NULL; g = g->next) |
7918 | { | |
dda8d76d | 7919 | sec = filedata->section_headers + g->section_index; |
e4b17d5c | 7920 | |
4082ef84 NC |
7921 | if (streq (SECTION_NAME (sec), ELF_STRING_ia64_unwind_info)) |
7922 | break; | |
7923 | } | |
7924 | ||
7925 | if (g == NULL) | |
dda8d76d | 7926 | i = filedata->file_header.e_shnum; |
4082ef84 | 7927 | } |
e4b17d5c | 7928 | } |
18bd398b | 7929 | else if (strneq (SECTION_NAME (unwsec), ELF_STRING_ia64_unwind_once, len)) |
579f31ac | 7930 | { |
18bd398b | 7931 | /* .gnu.linkonce.ia64unw.FOO -> .gnu.linkonce.ia64unwi.FOO. */ |
579f31ac JJ |
7932 | len2 = sizeof (ELF_STRING_ia64_unwind_info_once) - 1; |
7933 | suffix = SECTION_NAME (unwsec) + len; | |
dda8d76d | 7934 | for (i = 0, sec = filedata->section_headers; i < filedata->file_header.e_shnum; |
579f31ac | 7935 | ++i, ++sec) |
18bd398b NC |
7936 | if (strneq (SECTION_NAME (sec), ELF_STRING_ia64_unwind_info_once, len2) |
7937 | && streq (SECTION_NAME (sec) + len2, suffix)) | |
579f31ac JJ |
7938 | break; |
7939 | } | |
7940 | else | |
7941 | { | |
7942 | /* .IA_64.unwindFOO -> .IA_64.unwind_infoFOO | |
18bd398b | 7943 | .IA_64.unwind or BAR -> .IA_64.unwind_info. */ |
579f31ac JJ |
7944 | len = sizeof (ELF_STRING_ia64_unwind) - 1; |
7945 | len2 = sizeof (ELF_STRING_ia64_unwind_info) - 1; | |
7946 | suffix = ""; | |
18bd398b | 7947 | if (strneq (SECTION_NAME (unwsec), ELF_STRING_ia64_unwind, len)) |
579f31ac | 7948 | suffix = SECTION_NAME (unwsec) + len; |
dda8d76d | 7949 | for (i = 0, sec = filedata->section_headers; i < filedata->file_header.e_shnum; |
579f31ac | 7950 | ++i, ++sec) |
18bd398b NC |
7951 | if (strneq (SECTION_NAME (sec), ELF_STRING_ia64_unwind_info, len2) |
7952 | && streq (SECTION_NAME (sec) + len2, suffix)) | |
579f31ac JJ |
7953 | break; |
7954 | } | |
7955 | ||
dda8d76d | 7956 | if (i == filedata->file_header.e_shnum) |
579f31ac JJ |
7957 | { |
7958 | printf (_("\nCould not find unwind info section for ")); | |
7959 | ||
dda8d76d | 7960 | if (filedata->string_table == NULL) |
579f31ac JJ |
7961 | printf ("%d", unwsec->sh_name); |
7962 | else | |
dda8d76d | 7963 | printf ("'%s'", printable_section_name (filedata, unwsec)); |
579f31ac JJ |
7964 | } |
7965 | else | |
4d6ed7c8 | 7966 | { |
4d6ed7c8 | 7967 | aux.info_addr = sec->sh_addr; |
dda8d76d | 7968 | aux.info = (unsigned char *) get_data (NULL, filedata, sec->sh_offset, 1, |
4082ef84 NC |
7969 | sec->sh_size, |
7970 | _("unwind info")); | |
59245841 | 7971 | aux.info_size = aux.info == NULL ? 0 : sec->sh_size; |
4d6ed7c8 | 7972 | |
579f31ac | 7973 | printf (_("\nUnwind section ")); |
4d6ed7c8 | 7974 | |
dda8d76d | 7975 | if (filedata->string_table == NULL) |
579f31ac JJ |
7976 | printf ("%d", unwsec->sh_name); |
7977 | else | |
dda8d76d | 7978 | printf ("'%s'", printable_section_name (filedata, unwsec)); |
4d6ed7c8 | 7979 | |
579f31ac | 7980 | printf (_(" at offset 0x%lx contains %lu entries:\n"), |
e59b4dfb | 7981 | (unsigned long) unwsec->sh_offset, |
89fac5e3 | 7982 | (unsigned long) (unwsec->sh_size / (3 * eh_addr_size))); |
4d6ed7c8 | 7983 | |
dda8d76d | 7984 | if (slurp_ia64_unwind_table (filedata, & aux, unwsec) |
53774b7e | 7985 | && aux.table_len > 0) |
dda8d76d | 7986 | dump_ia64_unwind (filedata, & aux); |
579f31ac JJ |
7987 | |
7988 | if (aux.table) | |
7989 | free ((char *) aux.table); | |
7990 | if (aux.info) | |
7991 | free ((char *) aux.info); | |
7992 | aux.table = NULL; | |
7993 | aux.info = NULL; | |
7994 | } | |
4d6ed7c8 | 7995 | } |
4d6ed7c8 | 7996 | |
4d6ed7c8 NC |
7997 | if (aux.symtab) |
7998 | free (aux.symtab); | |
7999 | if (aux.strtab) | |
8000 | free ((char *) aux.strtab); | |
32ec8896 NC |
8001 | |
8002 | return res; | |
4d6ed7c8 NC |
8003 | } |
8004 | ||
3f5e193b | 8005 | struct hppa_unw_table_entry |
32ec8896 NC |
8006 | { |
8007 | struct absaddr start; | |
8008 | struct absaddr end; | |
8009 | unsigned int Cannot_unwind:1; /* 0 */ | |
8010 | unsigned int Millicode:1; /* 1 */ | |
8011 | unsigned int Millicode_save_sr0:1; /* 2 */ | |
8012 | unsigned int Region_description:2; /* 3..4 */ | |
8013 | unsigned int reserved1:1; /* 5 */ | |
8014 | unsigned int Entry_SR:1; /* 6 */ | |
8015 | unsigned int Entry_FR:4; /* Number saved 7..10 */ | |
8016 | unsigned int Entry_GR:5; /* Number saved 11..15 */ | |
8017 | unsigned int Args_stored:1; /* 16 */ | |
8018 | unsigned int Variable_Frame:1; /* 17 */ | |
8019 | unsigned int Separate_Package_Body:1; /* 18 */ | |
8020 | unsigned int Frame_Extension_Millicode:1; /* 19 */ | |
8021 | unsigned int Stack_Overflow_Check:1; /* 20 */ | |
8022 | unsigned int Two_Instruction_SP_Increment:1; /* 21 */ | |
8023 | unsigned int Ada_Region:1; /* 22 */ | |
8024 | unsigned int cxx_info:1; /* 23 */ | |
8025 | unsigned int cxx_try_catch:1; /* 24 */ | |
8026 | unsigned int sched_entry_seq:1; /* 25 */ | |
8027 | unsigned int reserved2:1; /* 26 */ | |
8028 | unsigned int Save_SP:1; /* 27 */ | |
8029 | unsigned int Save_RP:1; /* 28 */ | |
8030 | unsigned int Save_MRP_in_frame:1; /* 29 */ | |
8031 | unsigned int extn_ptr_defined:1; /* 30 */ | |
8032 | unsigned int Cleanup_defined:1; /* 31 */ | |
8033 | ||
8034 | unsigned int MPE_XL_interrupt_marker:1; /* 0 */ | |
8035 | unsigned int HP_UX_interrupt_marker:1; /* 1 */ | |
8036 | unsigned int Large_frame:1; /* 2 */ | |
8037 | unsigned int Pseudo_SP_Set:1; /* 3 */ | |
8038 | unsigned int reserved4:1; /* 4 */ | |
8039 | unsigned int Total_frame_size:27; /* 5..31 */ | |
8040 | }; | |
3f5e193b | 8041 | |
57346661 | 8042 | struct hppa_unw_aux_info |
948f632f | 8043 | { |
32ec8896 NC |
8044 | struct hppa_unw_table_entry * table; /* Unwind table. */ |
8045 | unsigned long table_len; /* Length of unwind table. */ | |
8046 | bfd_vma seg_base; /* Starting address of segment. */ | |
8047 | Elf_Internal_Sym * symtab; /* The symbol table. */ | |
8048 | unsigned long nsyms; /* Number of symbols. */ | |
8049 | Elf_Internal_Sym * funtab; /* Sorted table of STT_FUNC symbols. */ | |
8050 | unsigned long nfuns; /* Number of entries in funtab. */ | |
8051 | char * strtab; /* The string table. */ | |
8052 | unsigned long strtab_size; /* Size of string table. */ | |
948f632f | 8053 | }; |
57346661 | 8054 | |
32ec8896 | 8055 | static bfd_boolean |
dda8d76d | 8056 | dump_hppa_unwind (Filedata * filedata, struct hppa_unw_aux_info * aux) |
57346661 | 8057 | { |
2cf0635d | 8058 | struct hppa_unw_table_entry * tp; |
948f632f | 8059 | unsigned long j, nfuns; |
32ec8896 | 8060 | bfd_boolean res = TRUE; |
948f632f DA |
8061 | |
8062 | aux->funtab = xmalloc (aux->nsyms * sizeof (Elf_Internal_Sym)); | |
8063 | for (nfuns = 0, j = 0; j < aux->nsyms; j++) | |
8064 | if (aux->symtab[j].st_value && ELF_ST_TYPE (aux->symtab[j].st_info) == STT_FUNC) | |
8065 | aux->funtab[nfuns++] = aux->symtab[j]; | |
8066 | aux->nfuns = nfuns; | |
8067 | qsort (aux->funtab, aux->nfuns, sizeof (Elf_Internal_Sym), symcmp); | |
57346661 | 8068 | |
57346661 AM |
8069 | for (tp = aux->table; tp < aux->table + aux->table_len; ++tp) |
8070 | { | |
8071 | bfd_vma offset; | |
2cf0635d | 8072 | const char * procname; |
57346661 | 8073 | |
dda8d76d | 8074 | find_symbol_for_address (filedata, aux->funtab, aux->nfuns, aux->strtab, |
57346661 AM |
8075 | aux->strtab_size, tp->start, &procname, |
8076 | &offset); | |
8077 | ||
8078 | fputs ("\n<", stdout); | |
8079 | ||
8080 | if (procname) | |
8081 | { | |
8082 | fputs (procname, stdout); | |
8083 | ||
8084 | if (offset) | |
8085 | printf ("+%lx", (unsigned long) offset); | |
8086 | } | |
8087 | ||
8088 | fputs (">: [", stdout); | |
8089 | print_vma (tp->start.offset, PREFIX_HEX); | |
8090 | fputc ('-', stdout); | |
8091 | print_vma (tp->end.offset, PREFIX_HEX); | |
8092 | printf ("]\n\t"); | |
8093 | ||
18bd398b NC |
8094 | #define PF(_m) if (tp->_m) printf (#_m " "); |
8095 | #define PV(_m) if (tp->_m) printf (#_m "=%d ", tp->_m); | |
57346661 AM |
8096 | PF(Cannot_unwind); |
8097 | PF(Millicode); | |
8098 | PF(Millicode_save_sr0); | |
18bd398b | 8099 | /* PV(Region_description); */ |
57346661 AM |
8100 | PF(Entry_SR); |
8101 | PV(Entry_FR); | |
8102 | PV(Entry_GR); | |
8103 | PF(Args_stored); | |
8104 | PF(Variable_Frame); | |
8105 | PF(Separate_Package_Body); | |
8106 | PF(Frame_Extension_Millicode); | |
8107 | PF(Stack_Overflow_Check); | |
8108 | PF(Two_Instruction_SP_Increment); | |
8109 | PF(Ada_Region); | |
8110 | PF(cxx_info); | |
8111 | PF(cxx_try_catch); | |
8112 | PF(sched_entry_seq); | |
8113 | PF(Save_SP); | |
8114 | PF(Save_RP); | |
8115 | PF(Save_MRP_in_frame); | |
8116 | PF(extn_ptr_defined); | |
8117 | PF(Cleanup_defined); | |
8118 | PF(MPE_XL_interrupt_marker); | |
8119 | PF(HP_UX_interrupt_marker); | |
8120 | PF(Large_frame); | |
8121 | PF(Pseudo_SP_Set); | |
8122 | PV(Total_frame_size); | |
8123 | #undef PF | |
8124 | #undef PV | |
8125 | } | |
8126 | ||
18bd398b | 8127 | printf ("\n"); |
948f632f DA |
8128 | |
8129 | free (aux->funtab); | |
32ec8896 NC |
8130 | |
8131 | return res; | |
57346661 AM |
8132 | } |
8133 | ||
32ec8896 | 8134 | static bfd_boolean |
dda8d76d NC |
8135 | slurp_hppa_unwind_table (Filedata * filedata, |
8136 | struct hppa_unw_aux_info * aux, | |
8137 | Elf_Internal_Shdr * sec) | |
57346661 | 8138 | { |
1c0751b2 | 8139 | unsigned long size, unw_ent_size, nentries, nrelas, i; |
2cf0635d NC |
8140 | Elf_Internal_Phdr * seg; |
8141 | struct hppa_unw_table_entry * tep; | |
8142 | Elf_Internal_Shdr * relsec; | |
8143 | Elf_Internal_Rela * rela; | |
8144 | Elf_Internal_Rela * rp; | |
8145 | unsigned char * table; | |
8146 | unsigned char * tp; | |
8147 | Elf_Internal_Sym * sym; | |
8148 | const char * relname; | |
57346661 | 8149 | |
57346661 AM |
8150 | /* First, find the starting address of the segment that includes |
8151 | this section. */ | |
dda8d76d | 8152 | if (filedata->file_header.e_phnum) |
57346661 | 8153 | { |
dda8d76d | 8154 | if (! get_program_headers (filedata)) |
32ec8896 | 8155 | return FALSE; |
57346661 | 8156 | |
dda8d76d NC |
8157 | for (seg = filedata->program_headers; |
8158 | seg < filedata->program_headers + filedata->file_header.e_phnum; | |
57346661 AM |
8159 | ++seg) |
8160 | { | |
8161 | if (seg->p_type != PT_LOAD) | |
8162 | continue; | |
8163 | ||
8164 | if (sec->sh_addr >= seg->p_vaddr | |
8165 | && (sec->sh_addr + sec->sh_size <= seg->p_vaddr + seg->p_memsz)) | |
8166 | { | |
8167 | aux->seg_base = seg->p_vaddr; | |
8168 | break; | |
8169 | } | |
8170 | } | |
8171 | } | |
8172 | ||
8173 | /* Second, build the unwind table from the contents of the unwind | |
8174 | section. */ | |
8175 | size = sec->sh_size; | |
dda8d76d | 8176 | table = (unsigned char *) get_data (NULL, filedata, sec->sh_offset, 1, size, |
3f5e193b | 8177 | _("unwind table")); |
57346661 | 8178 | if (!table) |
32ec8896 | 8179 | return FALSE; |
57346661 | 8180 | |
1c0751b2 DA |
8181 | unw_ent_size = 16; |
8182 | nentries = size / unw_ent_size; | |
8183 | size = unw_ent_size * nentries; | |
57346661 | 8184 | |
3f5e193b NC |
8185 | tep = aux->table = (struct hppa_unw_table_entry *) |
8186 | xcmalloc (nentries, sizeof (aux->table[0])); | |
57346661 | 8187 | |
1c0751b2 | 8188 | for (tp = table; tp < table + size; tp += unw_ent_size, ++tep) |
57346661 AM |
8189 | { |
8190 | unsigned int tmp1, tmp2; | |
8191 | ||
8192 | tep->start.section = SHN_UNDEF; | |
8193 | tep->end.section = SHN_UNDEF; | |
8194 | ||
1c0751b2 DA |
8195 | tep->start.offset = byte_get ((unsigned char *) tp + 0, 4); |
8196 | tep->end.offset = byte_get ((unsigned char *) tp + 4, 4); | |
8197 | tmp1 = byte_get ((unsigned char *) tp + 8, 4); | |
8198 | tmp2 = byte_get ((unsigned char *) tp + 12, 4); | |
8199 | ||
8200 | tep->start.offset += aux->seg_base; | |
8201 | tep->end.offset += aux->seg_base; | |
57346661 AM |
8202 | |
8203 | tep->Cannot_unwind = (tmp1 >> 31) & 0x1; | |
8204 | tep->Millicode = (tmp1 >> 30) & 0x1; | |
8205 | tep->Millicode_save_sr0 = (tmp1 >> 29) & 0x1; | |
8206 | tep->Region_description = (tmp1 >> 27) & 0x3; | |
8207 | tep->reserved1 = (tmp1 >> 26) & 0x1; | |
8208 | tep->Entry_SR = (tmp1 >> 25) & 0x1; | |
8209 | tep->Entry_FR = (tmp1 >> 21) & 0xf; | |
8210 | tep->Entry_GR = (tmp1 >> 16) & 0x1f; | |
8211 | tep->Args_stored = (tmp1 >> 15) & 0x1; | |
8212 | tep->Variable_Frame = (tmp1 >> 14) & 0x1; | |
8213 | tep->Separate_Package_Body = (tmp1 >> 13) & 0x1; | |
8214 | tep->Frame_Extension_Millicode = (tmp1 >> 12) & 0x1; | |
8215 | tep->Stack_Overflow_Check = (tmp1 >> 11) & 0x1; | |
8216 | tep->Two_Instruction_SP_Increment = (tmp1 >> 10) & 0x1; | |
8217 | tep->Ada_Region = (tmp1 >> 9) & 0x1; | |
8218 | tep->cxx_info = (tmp1 >> 8) & 0x1; | |
8219 | tep->cxx_try_catch = (tmp1 >> 7) & 0x1; | |
8220 | tep->sched_entry_seq = (tmp1 >> 6) & 0x1; | |
8221 | tep->reserved2 = (tmp1 >> 5) & 0x1; | |
8222 | tep->Save_SP = (tmp1 >> 4) & 0x1; | |
8223 | tep->Save_RP = (tmp1 >> 3) & 0x1; | |
8224 | tep->Save_MRP_in_frame = (tmp1 >> 2) & 0x1; | |
8225 | tep->extn_ptr_defined = (tmp1 >> 1) & 0x1; | |
8226 | tep->Cleanup_defined = tmp1 & 0x1; | |
8227 | ||
8228 | tep->MPE_XL_interrupt_marker = (tmp2 >> 31) & 0x1; | |
8229 | tep->HP_UX_interrupt_marker = (tmp2 >> 30) & 0x1; | |
8230 | tep->Large_frame = (tmp2 >> 29) & 0x1; | |
8231 | tep->Pseudo_SP_Set = (tmp2 >> 28) & 0x1; | |
8232 | tep->reserved4 = (tmp2 >> 27) & 0x1; | |
8233 | tep->Total_frame_size = tmp2 & 0x7ffffff; | |
57346661 AM |
8234 | } |
8235 | free (table); | |
8236 | ||
8237 | /* Third, apply any relocations to the unwind table. */ | |
dda8d76d NC |
8238 | for (relsec = filedata->section_headers; |
8239 | relsec < filedata->section_headers + filedata->file_header.e_shnum; | |
57346661 AM |
8240 | ++relsec) |
8241 | { | |
8242 | if (relsec->sh_type != SHT_RELA | |
dda8d76d NC |
8243 | || relsec->sh_info >= filedata->file_header.e_shnum |
8244 | || filedata->section_headers + relsec->sh_info != sec) | |
57346661 AM |
8245 | continue; |
8246 | ||
dda8d76d | 8247 | if (!slurp_rela_relocs (filedata, relsec->sh_offset, relsec->sh_size, |
57346661 | 8248 | & rela, & nrelas)) |
32ec8896 | 8249 | return FALSE; |
57346661 AM |
8250 | |
8251 | for (rp = rela; rp < rela + nrelas; ++rp) | |
8252 | { | |
4770fb94 | 8253 | unsigned int sym_ndx; |
726bd37d AM |
8254 | unsigned int r_type = get_reloc_type (filedata, rp->r_info); |
8255 | relname = elf_hppa_reloc_type (r_type); | |
57346661 | 8256 | |
726bd37d AM |
8257 | if (relname == NULL) |
8258 | { | |
8259 | warn (_("Skipping unknown relocation type: %u\n"), r_type); | |
8260 | continue; | |
8261 | } | |
8262 | ||
57346661 | 8263 | /* R_PARISC_SEGREL32 or R_PARISC_SEGREL64. */ |
0112cd26 | 8264 | if (! const_strneq (relname, "R_PARISC_SEGREL")) |
57346661 | 8265 | { |
726bd37d | 8266 | warn (_("Skipping unexpected relocation type: %s\n"), relname); |
57346661 AM |
8267 | continue; |
8268 | } | |
8269 | ||
8270 | i = rp->r_offset / unw_ent_size; | |
726bd37d AM |
8271 | if (i >= aux->table_len) |
8272 | { | |
8273 | warn (_("Skipping reloc with overlarge offset: %lx\n"), i); | |
8274 | continue; | |
8275 | } | |
57346661 | 8276 | |
4770fb94 AM |
8277 | sym_ndx = get_reloc_symindex (rp->r_info); |
8278 | if (sym_ndx >= aux->nsyms) | |
8279 | { | |
8280 | warn (_("Skipping reloc with invalid symbol index: %u\n"), | |
8281 | sym_ndx); | |
8282 | continue; | |
8283 | } | |
8284 | sym = aux->symtab + sym_ndx; | |
8285 | ||
43f6cd05 | 8286 | switch ((rp->r_offset % unw_ent_size) / 4) |
57346661 AM |
8287 | { |
8288 | case 0: | |
8289 | aux->table[i].start.section = sym->st_shndx; | |
1e456d54 | 8290 | aux->table[i].start.offset = sym->st_value + rp->r_addend; |
57346661 AM |
8291 | break; |
8292 | case 1: | |
8293 | aux->table[i].end.section = sym->st_shndx; | |
1e456d54 | 8294 | aux->table[i].end.offset = sym->st_value + rp->r_addend; |
57346661 AM |
8295 | break; |
8296 | default: | |
8297 | break; | |
8298 | } | |
8299 | } | |
8300 | ||
8301 | free (rela); | |
8302 | } | |
8303 | ||
1c0751b2 | 8304 | aux->table_len = nentries; |
57346661 | 8305 | |
32ec8896 | 8306 | return TRUE; |
57346661 AM |
8307 | } |
8308 | ||
32ec8896 | 8309 | static bfd_boolean |
dda8d76d | 8310 | hppa_process_unwind (Filedata * filedata) |
57346661 | 8311 | { |
57346661 | 8312 | struct hppa_unw_aux_info aux; |
2cf0635d | 8313 | Elf_Internal_Shdr * unwsec = NULL; |
2cf0635d | 8314 | Elf_Internal_Shdr * sec; |
18bd398b | 8315 | unsigned long i; |
32ec8896 | 8316 | bfd_boolean res = TRUE; |
57346661 | 8317 | |
dda8d76d | 8318 | if (filedata->string_table == NULL) |
32ec8896 | 8319 | return FALSE; |
1b31d05e NC |
8320 | |
8321 | memset (& aux, 0, sizeof (aux)); | |
57346661 | 8322 | |
dda8d76d | 8323 | for (i = 0, sec = filedata->section_headers; i < filedata->file_header.e_shnum; ++i, ++sec) |
57346661 | 8324 | { |
28d13567 | 8325 | if (sec->sh_type == SHT_SYMTAB) |
57346661 | 8326 | { |
28d13567 | 8327 | if (aux.symtab) |
4082ef84 | 8328 | { |
28d13567 AM |
8329 | error (_("Multiple symbol tables encountered\n")); |
8330 | free (aux.symtab); | |
8331 | aux.symtab = NULL; | |
4082ef84 | 8332 | free (aux.strtab); |
28d13567 | 8333 | aux.strtab = NULL; |
4082ef84 | 8334 | } |
28d13567 AM |
8335 | if (!get_symtab (filedata, sec, &aux.symtab, &aux.nsyms, |
8336 | &aux.strtab, &aux.strtab_size)) | |
8337 | return FALSE; | |
57346661 | 8338 | } |
18bd398b | 8339 | else if (streq (SECTION_NAME (sec), ".PARISC.unwind")) |
57346661 AM |
8340 | unwsec = sec; |
8341 | } | |
8342 | ||
8343 | if (!unwsec) | |
8344 | printf (_("\nThere are no unwind sections in this file.\n")); | |
8345 | ||
dda8d76d | 8346 | for (i = 0, sec = filedata->section_headers; i < filedata->file_header.e_shnum; ++i, ++sec) |
57346661 | 8347 | { |
18bd398b | 8348 | if (streq (SECTION_NAME (sec), ".PARISC.unwind")) |
57346661 | 8349 | { |
43f6cd05 | 8350 | unsigned long num_unwind = sec->sh_size / 16; |
dda8d76d | 8351 | |
d3a49aa8 AM |
8352 | printf (ngettext ("\nUnwind section '%s' at offset 0x%lx " |
8353 | "contains %lu entry:\n", | |
8354 | "\nUnwind section '%s' at offset 0x%lx " | |
8355 | "contains %lu entries:\n", | |
8356 | num_unwind), | |
dda8d76d | 8357 | printable_section_name (filedata, sec), |
57346661 | 8358 | (unsigned long) sec->sh_offset, |
d3a49aa8 | 8359 | num_unwind); |
57346661 | 8360 | |
dda8d76d | 8361 | if (! slurp_hppa_unwind_table (filedata, &aux, sec)) |
32ec8896 | 8362 | res = FALSE; |
66b09c7e S |
8363 | |
8364 | if (res && aux.table_len > 0) | |
32ec8896 | 8365 | { |
dda8d76d | 8366 | if (! dump_hppa_unwind (filedata, &aux)) |
32ec8896 NC |
8367 | res = FALSE; |
8368 | } | |
57346661 AM |
8369 | |
8370 | if (aux.table) | |
8371 | free ((char *) aux.table); | |
8372 | aux.table = NULL; | |
8373 | } | |
8374 | } | |
8375 | ||
8376 | if (aux.symtab) | |
8377 | free (aux.symtab); | |
8378 | if (aux.strtab) | |
8379 | free ((char *) aux.strtab); | |
32ec8896 NC |
8380 | |
8381 | return res; | |
57346661 AM |
8382 | } |
8383 | ||
0b6ae522 DJ |
8384 | struct arm_section |
8385 | { | |
a734115a NC |
8386 | unsigned char * data; /* The unwind data. */ |
8387 | Elf_Internal_Shdr * sec; /* The cached unwind section header. */ | |
8388 | Elf_Internal_Rela * rela; /* The cached relocations for this section. */ | |
8389 | unsigned long nrelas; /* The number of relocations. */ | |
8390 | unsigned int rel_type; /* REL or RELA ? */ | |
8391 | Elf_Internal_Rela * next_rela; /* Cyclic pointer to the next reloc to process. */ | |
0b6ae522 DJ |
8392 | }; |
8393 | ||
8394 | struct arm_unw_aux_info | |
8395 | { | |
dda8d76d | 8396 | Filedata * filedata; /* The file containing the unwind sections. */ |
a734115a NC |
8397 | Elf_Internal_Sym * symtab; /* The file's symbol table. */ |
8398 | unsigned long nsyms; /* Number of symbols. */ | |
948f632f DA |
8399 | Elf_Internal_Sym * funtab; /* Sorted table of STT_FUNC symbols. */ |
8400 | unsigned long nfuns; /* Number of these symbols. */ | |
a734115a NC |
8401 | char * strtab; /* The file's string table. */ |
8402 | unsigned long strtab_size; /* Size of string table. */ | |
0b6ae522 DJ |
8403 | }; |
8404 | ||
8405 | static const char * | |
dda8d76d NC |
8406 | arm_print_vma_and_name (Filedata * filedata, |
8407 | struct arm_unw_aux_info * aux, | |
8408 | bfd_vma fn, | |
8409 | struct absaddr addr) | |
0b6ae522 DJ |
8410 | { |
8411 | const char *procname; | |
8412 | bfd_vma sym_offset; | |
8413 | ||
8414 | if (addr.section == SHN_UNDEF) | |
8415 | addr.offset = fn; | |
8416 | ||
dda8d76d | 8417 | find_symbol_for_address (filedata, aux->funtab, aux->nfuns, aux->strtab, |
0b6ae522 DJ |
8418 | aux->strtab_size, addr, &procname, |
8419 | &sym_offset); | |
8420 | ||
8421 | print_vma (fn, PREFIX_HEX); | |
8422 | ||
8423 | if (procname) | |
8424 | { | |
8425 | fputs (" <", stdout); | |
8426 | fputs (procname, stdout); | |
8427 | ||
8428 | if (sym_offset) | |
8429 | printf ("+0x%lx", (unsigned long) sym_offset); | |
8430 | fputc ('>', stdout); | |
8431 | } | |
8432 | ||
8433 | return procname; | |
8434 | } | |
8435 | ||
8436 | static void | |
8437 | arm_free_section (struct arm_section *arm_sec) | |
8438 | { | |
8439 | if (arm_sec->data != NULL) | |
8440 | free (arm_sec->data); | |
8441 | ||
8442 | if (arm_sec->rela != NULL) | |
8443 | free (arm_sec->rela); | |
8444 | } | |
8445 | ||
a734115a NC |
8446 | /* 1) If SEC does not match the one cached in ARM_SEC, then free the current |
8447 | cached section and install SEC instead. | |
8448 | 2) Locate the 32-bit word at WORD_OFFSET in unwind section SEC | |
8449 | and return its valued in * WORDP, relocating if necessary. | |
1b31d05e | 8450 | 3) Update the NEXT_RELA field in ARM_SEC and store the section index and |
a734115a | 8451 | relocation's offset in ADDR. |
1b31d05e NC |
8452 | 4) If SYM_NAME is non-NULL and a relocation was applied, record the offset |
8453 | into the string table of the symbol associated with the reloc. If no | |
8454 | reloc was applied store -1 there. | |
8455 | 5) Return TRUE upon success, FALSE otherwise. */ | |
a734115a NC |
8456 | |
8457 | static bfd_boolean | |
dda8d76d NC |
8458 | get_unwind_section_word (Filedata * filedata, |
8459 | struct arm_unw_aux_info * aux, | |
1b31d05e NC |
8460 | struct arm_section * arm_sec, |
8461 | Elf_Internal_Shdr * sec, | |
8462 | bfd_vma word_offset, | |
8463 | unsigned int * wordp, | |
8464 | struct absaddr * addr, | |
8465 | bfd_vma * sym_name) | |
0b6ae522 DJ |
8466 | { |
8467 | Elf_Internal_Rela *rp; | |
8468 | Elf_Internal_Sym *sym; | |
8469 | const char * relname; | |
8470 | unsigned int word; | |
8471 | bfd_boolean wrapped; | |
8472 | ||
e0a31db1 NC |
8473 | if (sec == NULL || arm_sec == NULL) |
8474 | return FALSE; | |
8475 | ||
0b6ae522 DJ |
8476 | addr->section = SHN_UNDEF; |
8477 | addr->offset = 0; | |
8478 | ||
1b31d05e NC |
8479 | if (sym_name != NULL) |
8480 | *sym_name = (bfd_vma) -1; | |
8481 | ||
a734115a | 8482 | /* If necessary, update the section cache. */ |
0b6ae522 DJ |
8483 | if (sec != arm_sec->sec) |
8484 | { | |
8485 | Elf_Internal_Shdr *relsec; | |
8486 | ||
8487 | arm_free_section (arm_sec); | |
8488 | ||
8489 | arm_sec->sec = sec; | |
dda8d76d | 8490 | arm_sec->data = get_data (NULL, aux->filedata, sec->sh_offset, 1, |
0b6ae522 | 8491 | sec->sh_size, _("unwind data")); |
0b6ae522 DJ |
8492 | arm_sec->rela = NULL; |
8493 | arm_sec->nrelas = 0; | |
8494 | ||
dda8d76d NC |
8495 | for (relsec = filedata->section_headers; |
8496 | relsec < filedata->section_headers + filedata->file_header.e_shnum; | |
0b6ae522 DJ |
8497 | ++relsec) |
8498 | { | |
dda8d76d NC |
8499 | if (relsec->sh_info >= filedata->file_header.e_shnum |
8500 | || filedata->section_headers + relsec->sh_info != sec | |
1ae40aa4 NC |
8501 | /* PR 15745: Check the section type as well. */ |
8502 | || (relsec->sh_type != SHT_REL | |
8503 | && relsec->sh_type != SHT_RELA)) | |
0b6ae522 DJ |
8504 | continue; |
8505 | ||
a734115a | 8506 | arm_sec->rel_type = relsec->sh_type; |
0b6ae522 DJ |
8507 | if (relsec->sh_type == SHT_REL) |
8508 | { | |
dda8d76d | 8509 | if (!slurp_rel_relocs (aux->filedata, relsec->sh_offset, |
0b6ae522 DJ |
8510 | relsec->sh_size, |
8511 | & arm_sec->rela, & arm_sec->nrelas)) | |
a734115a | 8512 | return FALSE; |
0b6ae522 | 8513 | } |
1ae40aa4 | 8514 | else /* relsec->sh_type == SHT_RELA */ |
0b6ae522 | 8515 | { |
dda8d76d | 8516 | if (!slurp_rela_relocs (aux->filedata, relsec->sh_offset, |
0b6ae522 DJ |
8517 | relsec->sh_size, |
8518 | & arm_sec->rela, & arm_sec->nrelas)) | |
a734115a | 8519 | return FALSE; |
0b6ae522 | 8520 | } |
1ae40aa4 | 8521 | break; |
0b6ae522 DJ |
8522 | } |
8523 | ||
8524 | arm_sec->next_rela = arm_sec->rela; | |
8525 | } | |
8526 | ||
a734115a | 8527 | /* If there is no unwind data we can do nothing. */ |
0b6ae522 | 8528 | if (arm_sec->data == NULL) |
a734115a | 8529 | return FALSE; |
0b6ae522 | 8530 | |
e0a31db1 | 8531 | /* If the offset is invalid then fail. */ |
f32ba729 NC |
8532 | if (/* PR 21343 *//* PR 18879 */ |
8533 | sec->sh_size < 4 | |
8534 | || word_offset > (sec->sh_size - 4) | |
1a915552 | 8535 | || ((bfd_signed_vma) word_offset) < 0) |
e0a31db1 NC |
8536 | return FALSE; |
8537 | ||
a734115a | 8538 | /* Get the word at the required offset. */ |
0b6ae522 DJ |
8539 | word = byte_get (arm_sec->data + word_offset, 4); |
8540 | ||
0eff7165 NC |
8541 | /* PR 17531: file: id:000001,src:001266+003044,op:splice,rep:128. */ |
8542 | if (arm_sec->rela == NULL) | |
8543 | { | |
8544 | * wordp = word; | |
8545 | return TRUE; | |
8546 | } | |
8547 | ||
a734115a | 8548 | /* Look through the relocs to find the one that applies to the provided offset. */ |
0b6ae522 DJ |
8549 | wrapped = FALSE; |
8550 | for (rp = arm_sec->next_rela; rp != arm_sec->rela + arm_sec->nrelas; rp++) | |
8551 | { | |
8552 | bfd_vma prelval, offset; | |
8553 | ||
8554 | if (rp->r_offset > word_offset && !wrapped) | |
8555 | { | |
8556 | rp = arm_sec->rela; | |
8557 | wrapped = TRUE; | |
8558 | } | |
8559 | if (rp->r_offset > word_offset) | |
8560 | break; | |
8561 | ||
8562 | if (rp->r_offset & 3) | |
8563 | { | |
8564 | warn (_("Skipping unexpected relocation at offset 0x%lx\n"), | |
8565 | (unsigned long) rp->r_offset); | |
8566 | continue; | |
8567 | } | |
8568 | ||
8569 | if (rp->r_offset < word_offset) | |
8570 | continue; | |
8571 | ||
74e1a04b NC |
8572 | /* PR 17531: file: 027-161405-0.004 */ |
8573 | if (aux->symtab == NULL) | |
8574 | continue; | |
8575 | ||
0b6ae522 DJ |
8576 | if (arm_sec->rel_type == SHT_REL) |
8577 | { | |
8578 | offset = word & 0x7fffffff; | |
8579 | if (offset & 0x40000000) | |
8580 | offset |= ~ (bfd_vma) 0x7fffffff; | |
8581 | } | |
a734115a | 8582 | else if (arm_sec->rel_type == SHT_RELA) |
0b6ae522 | 8583 | offset = rp->r_addend; |
a734115a | 8584 | else |
74e1a04b NC |
8585 | { |
8586 | error (_("Unknown section relocation type %d encountered\n"), | |
8587 | arm_sec->rel_type); | |
8588 | break; | |
8589 | } | |
0b6ae522 | 8590 | |
071436c6 NC |
8591 | /* PR 17531 file: 027-1241568-0.004. */ |
8592 | if (ELF32_R_SYM (rp->r_info) >= aux->nsyms) | |
8593 | { | |
8594 | error (_("Bad symbol index in unwind relocation (%lu > %lu)\n"), | |
8595 | (unsigned long) ELF32_R_SYM (rp->r_info), aux->nsyms); | |
8596 | break; | |
8597 | } | |
8598 | ||
8599 | sym = aux->symtab + ELF32_R_SYM (rp->r_info); | |
0b6ae522 DJ |
8600 | offset += sym->st_value; |
8601 | prelval = offset - (arm_sec->sec->sh_addr + rp->r_offset); | |
8602 | ||
a734115a | 8603 | /* Check that we are processing the expected reloc type. */ |
dda8d76d | 8604 | if (filedata->file_header.e_machine == EM_ARM) |
a734115a NC |
8605 | { |
8606 | relname = elf_arm_reloc_type (ELF32_R_TYPE (rp->r_info)); | |
071436c6 NC |
8607 | if (relname == NULL) |
8608 | { | |
8609 | warn (_("Skipping unknown ARM relocation type: %d\n"), | |
8610 | (int) ELF32_R_TYPE (rp->r_info)); | |
8611 | continue; | |
8612 | } | |
a734115a NC |
8613 | |
8614 | if (streq (relname, "R_ARM_NONE")) | |
8615 | continue; | |
0b4362b0 | 8616 | |
a734115a NC |
8617 | if (! streq (relname, "R_ARM_PREL31")) |
8618 | { | |
071436c6 | 8619 | warn (_("Skipping unexpected ARM relocation type %s\n"), relname); |
a734115a NC |
8620 | continue; |
8621 | } | |
8622 | } | |
dda8d76d | 8623 | else if (filedata->file_header.e_machine == EM_TI_C6000) |
a734115a NC |
8624 | { |
8625 | relname = elf_tic6x_reloc_type (ELF32_R_TYPE (rp->r_info)); | |
071436c6 NC |
8626 | if (relname == NULL) |
8627 | { | |
8628 | warn (_("Skipping unknown C6000 relocation type: %d\n"), | |
8629 | (int) ELF32_R_TYPE (rp->r_info)); | |
8630 | continue; | |
8631 | } | |
0b4362b0 | 8632 | |
a734115a NC |
8633 | if (streq (relname, "R_C6000_NONE")) |
8634 | continue; | |
8635 | ||
8636 | if (! streq (relname, "R_C6000_PREL31")) | |
8637 | { | |
071436c6 | 8638 | warn (_("Skipping unexpected C6000 relocation type %s\n"), relname); |
a734115a NC |
8639 | continue; |
8640 | } | |
8641 | ||
8642 | prelval >>= 1; | |
8643 | } | |
8644 | else | |
74e1a04b NC |
8645 | { |
8646 | /* This function currently only supports ARM and TI unwinders. */ | |
8647 | warn (_("Only TI and ARM unwinders are currently supported\n")); | |
8648 | break; | |
8649 | } | |
fa197c1c | 8650 | |
0b6ae522 DJ |
8651 | word = (word & ~ (bfd_vma) 0x7fffffff) | (prelval & 0x7fffffff); |
8652 | addr->section = sym->st_shndx; | |
8653 | addr->offset = offset; | |
74e1a04b | 8654 | |
1b31d05e NC |
8655 | if (sym_name) |
8656 | * sym_name = sym->st_name; | |
0b6ae522 DJ |
8657 | break; |
8658 | } | |
8659 | ||
8660 | *wordp = word; | |
8661 | arm_sec->next_rela = rp; | |
8662 | ||
a734115a | 8663 | return TRUE; |
0b6ae522 DJ |
8664 | } |
8665 | ||
a734115a NC |
8666 | static const char *tic6x_unwind_regnames[16] = |
8667 | { | |
0b4362b0 RM |
8668 | "A15", "B15", "B14", "B13", "B12", "B11", "B10", "B3", |
8669 | "A14", "A13", "A12", "A11", "A10", | |
a734115a NC |
8670 | "[invalid reg 13]", "[invalid reg 14]", "[invalid reg 15]" |
8671 | }; | |
fa197c1c | 8672 | |
0b6ae522 | 8673 | static void |
fa197c1c | 8674 | decode_tic6x_unwind_regmask (unsigned int mask) |
0b6ae522 | 8675 | { |
fa197c1c PB |
8676 | int i; |
8677 | ||
8678 | for (i = 12; mask; mask >>= 1, i--) | |
8679 | { | |
8680 | if (mask & 1) | |
8681 | { | |
8682 | fputs (tic6x_unwind_regnames[i], stdout); | |
8683 | if (mask > 1) | |
8684 | fputs (", ", stdout); | |
8685 | } | |
8686 | } | |
8687 | } | |
0b6ae522 DJ |
8688 | |
8689 | #define ADVANCE \ | |
8690 | if (remaining == 0 && more_words) \ | |
8691 | { \ | |
8692 | data_offset += 4; \ | |
dda8d76d | 8693 | if (! get_unwind_section_word (filedata, aux, data_arm_sec, data_sec, \ |
1b31d05e | 8694 | data_offset, & word, & addr, NULL)) \ |
32ec8896 | 8695 | return FALSE; \ |
0b6ae522 DJ |
8696 | remaining = 4; \ |
8697 | more_words--; \ | |
8698 | } \ | |
8699 | ||
8700 | #define GET_OP(OP) \ | |
8701 | ADVANCE; \ | |
8702 | if (remaining) \ | |
8703 | { \ | |
8704 | remaining--; \ | |
8705 | (OP) = word >> 24; \ | |
8706 | word <<= 8; \ | |
8707 | } \ | |
8708 | else \ | |
8709 | { \ | |
2b692964 | 8710 | printf (_("[Truncated opcode]\n")); \ |
32ec8896 | 8711 | return FALSE; \ |
0b6ae522 | 8712 | } \ |
cc5914eb | 8713 | printf ("0x%02x ", OP) |
0b6ae522 | 8714 | |
32ec8896 | 8715 | static bfd_boolean |
dda8d76d NC |
8716 | decode_arm_unwind_bytecode (Filedata * filedata, |
8717 | struct arm_unw_aux_info * aux, | |
948f632f DA |
8718 | unsigned int word, |
8719 | unsigned int remaining, | |
8720 | unsigned int more_words, | |
8721 | bfd_vma data_offset, | |
8722 | Elf_Internal_Shdr * data_sec, | |
8723 | struct arm_section * data_arm_sec) | |
fa197c1c PB |
8724 | { |
8725 | struct absaddr addr; | |
32ec8896 | 8726 | bfd_boolean res = TRUE; |
0b6ae522 DJ |
8727 | |
8728 | /* Decode the unwinding instructions. */ | |
8729 | while (1) | |
8730 | { | |
8731 | unsigned int op, op2; | |
8732 | ||
8733 | ADVANCE; | |
8734 | if (remaining == 0) | |
8735 | break; | |
8736 | remaining--; | |
8737 | op = word >> 24; | |
8738 | word <<= 8; | |
8739 | ||
cc5914eb | 8740 | printf (" 0x%02x ", op); |
0b6ae522 DJ |
8741 | |
8742 | if ((op & 0xc0) == 0x00) | |
8743 | { | |
8744 | int offset = ((op & 0x3f) << 2) + 4; | |
61865e30 | 8745 | |
cc5914eb | 8746 | printf (" vsp = vsp + %d", offset); |
0b6ae522 DJ |
8747 | } |
8748 | else if ((op & 0xc0) == 0x40) | |
8749 | { | |
8750 | int offset = ((op & 0x3f) << 2) + 4; | |
61865e30 | 8751 | |
cc5914eb | 8752 | printf (" vsp = vsp - %d", offset); |
0b6ae522 DJ |
8753 | } |
8754 | else if ((op & 0xf0) == 0x80) | |
8755 | { | |
8756 | GET_OP (op2); | |
8757 | if (op == 0x80 && op2 == 0) | |
8758 | printf (_("Refuse to unwind")); | |
8759 | else | |
8760 | { | |
8761 | unsigned int mask = ((op & 0x0f) << 8) | op2; | |
32ec8896 | 8762 | bfd_boolean first = TRUE; |
0b6ae522 | 8763 | int i; |
2b692964 | 8764 | |
0b6ae522 DJ |
8765 | printf ("pop {"); |
8766 | for (i = 0; i < 12; i++) | |
8767 | if (mask & (1 << i)) | |
8768 | { | |
8769 | if (first) | |
32ec8896 | 8770 | first = FALSE; |
0b6ae522 DJ |
8771 | else |
8772 | printf (", "); | |
8773 | printf ("r%d", 4 + i); | |
8774 | } | |
8775 | printf ("}"); | |
8776 | } | |
8777 | } | |
8778 | else if ((op & 0xf0) == 0x90) | |
8779 | { | |
8780 | if (op == 0x9d || op == 0x9f) | |
8781 | printf (_(" [Reserved]")); | |
8782 | else | |
cc5914eb | 8783 | printf (" vsp = r%d", op & 0x0f); |
0b6ae522 DJ |
8784 | } |
8785 | else if ((op & 0xf0) == 0xa0) | |
8786 | { | |
8787 | int end = 4 + (op & 0x07); | |
32ec8896 | 8788 | bfd_boolean first = TRUE; |
0b6ae522 | 8789 | int i; |
61865e30 | 8790 | |
0b6ae522 DJ |
8791 | printf (" pop {"); |
8792 | for (i = 4; i <= end; i++) | |
8793 | { | |
8794 | if (first) | |
32ec8896 | 8795 | first = FALSE; |
0b6ae522 DJ |
8796 | else |
8797 | printf (", "); | |
8798 | printf ("r%d", i); | |
8799 | } | |
8800 | if (op & 0x08) | |
8801 | { | |
1b31d05e | 8802 | if (!first) |
0b6ae522 DJ |
8803 | printf (", "); |
8804 | printf ("r14"); | |
8805 | } | |
8806 | printf ("}"); | |
8807 | } | |
8808 | else if (op == 0xb0) | |
8809 | printf (_(" finish")); | |
8810 | else if (op == 0xb1) | |
8811 | { | |
8812 | GET_OP (op2); | |
8813 | if (op2 == 0 || (op2 & 0xf0) != 0) | |
8814 | printf (_("[Spare]")); | |
8815 | else | |
8816 | { | |
8817 | unsigned int mask = op2 & 0x0f; | |
32ec8896 | 8818 | bfd_boolean first = TRUE; |
0b6ae522 | 8819 | int i; |
61865e30 | 8820 | |
0b6ae522 DJ |
8821 | printf ("pop {"); |
8822 | for (i = 0; i < 12; i++) | |
8823 | if (mask & (1 << i)) | |
8824 | { | |
8825 | if (first) | |
32ec8896 | 8826 | first = FALSE; |
0b6ae522 DJ |
8827 | else |
8828 | printf (", "); | |
8829 | printf ("r%d", i); | |
8830 | } | |
8831 | printf ("}"); | |
8832 | } | |
8833 | } | |
8834 | else if (op == 0xb2) | |
8835 | { | |
b115cf96 | 8836 | unsigned char buf[9]; |
0b6ae522 DJ |
8837 | unsigned int i, len; |
8838 | unsigned long offset; | |
61865e30 | 8839 | |
b115cf96 | 8840 | for (i = 0; i < sizeof (buf); i++) |
0b6ae522 DJ |
8841 | { |
8842 | GET_OP (buf[i]); | |
8843 | if ((buf[i] & 0x80) == 0) | |
8844 | break; | |
8845 | } | |
4082ef84 | 8846 | if (i == sizeof (buf)) |
32ec8896 | 8847 | { |
27a45f42 | 8848 | error (_("corrupt change to vsp\n")); |
32ec8896 NC |
8849 | res = FALSE; |
8850 | } | |
4082ef84 NC |
8851 | else |
8852 | { | |
cd30bcef | 8853 | offset = read_leb128 (buf, buf + i + 1, FALSE, &len, NULL); |
4082ef84 NC |
8854 | assert (len == i + 1); |
8855 | offset = offset * 4 + 0x204; | |
8856 | printf ("vsp = vsp + %ld", offset); | |
8857 | } | |
0b6ae522 | 8858 | } |
61865e30 | 8859 | else if (op == 0xb3 || op == 0xc8 || op == 0xc9) |
0b6ae522 | 8860 | { |
61865e30 NC |
8861 | unsigned int first, last; |
8862 | ||
8863 | GET_OP (op2); | |
8864 | first = op2 >> 4; | |
8865 | last = op2 & 0x0f; | |
8866 | if (op == 0xc8) | |
8867 | first = first + 16; | |
8868 | printf ("pop {D%d", first); | |
8869 | if (last) | |
8870 | printf ("-D%d", first + last); | |
8871 | printf ("}"); | |
8872 | } | |
8873 | else if ((op & 0xf8) == 0xb8 || (op & 0xf8) == 0xd0) | |
8874 | { | |
8875 | unsigned int count = op & 0x07; | |
8876 | ||
8877 | printf ("pop {D8"); | |
8878 | if (count) | |
8879 | printf ("-D%d", 8 + count); | |
8880 | printf ("}"); | |
8881 | } | |
8882 | else if (op >= 0xc0 && op <= 0xc5) | |
8883 | { | |
8884 | unsigned int count = op & 0x07; | |
8885 | ||
8886 | printf (" pop {wR10"); | |
8887 | if (count) | |
8888 | printf ("-wR%d", 10 + count); | |
8889 | printf ("}"); | |
8890 | } | |
8891 | else if (op == 0xc6) | |
8892 | { | |
8893 | unsigned int first, last; | |
8894 | ||
8895 | GET_OP (op2); | |
8896 | first = op2 >> 4; | |
8897 | last = op2 & 0x0f; | |
8898 | printf ("pop {wR%d", first); | |
8899 | if (last) | |
8900 | printf ("-wR%d", first + last); | |
8901 | printf ("}"); | |
8902 | } | |
8903 | else if (op == 0xc7) | |
8904 | { | |
8905 | GET_OP (op2); | |
8906 | if (op2 == 0 || (op2 & 0xf0) != 0) | |
8907 | printf (_("[Spare]")); | |
0b6ae522 DJ |
8908 | else |
8909 | { | |
61865e30 | 8910 | unsigned int mask = op2 & 0x0f; |
32ec8896 | 8911 | bfd_boolean first = TRUE; |
61865e30 NC |
8912 | int i; |
8913 | ||
8914 | printf ("pop {"); | |
8915 | for (i = 0; i < 4; i++) | |
8916 | if (mask & (1 << i)) | |
8917 | { | |
8918 | if (first) | |
32ec8896 | 8919 | first = FALSE; |
61865e30 NC |
8920 | else |
8921 | printf (", "); | |
8922 | printf ("wCGR%d", i); | |
8923 | } | |
8924 | printf ("}"); | |
0b6ae522 DJ |
8925 | } |
8926 | } | |
61865e30 | 8927 | else |
32ec8896 NC |
8928 | { |
8929 | printf (_(" [unsupported opcode]")); | |
8930 | res = FALSE; | |
8931 | } | |
8932 | ||
0b6ae522 DJ |
8933 | printf ("\n"); |
8934 | } | |
32ec8896 NC |
8935 | |
8936 | return res; | |
fa197c1c PB |
8937 | } |
8938 | ||
32ec8896 | 8939 | static bfd_boolean |
dda8d76d NC |
8940 | decode_tic6x_unwind_bytecode (Filedata * filedata, |
8941 | struct arm_unw_aux_info * aux, | |
948f632f DA |
8942 | unsigned int word, |
8943 | unsigned int remaining, | |
8944 | unsigned int more_words, | |
8945 | bfd_vma data_offset, | |
8946 | Elf_Internal_Shdr * data_sec, | |
8947 | struct arm_section * data_arm_sec) | |
fa197c1c PB |
8948 | { |
8949 | struct absaddr addr; | |
8950 | ||
8951 | /* Decode the unwinding instructions. */ | |
8952 | while (1) | |
8953 | { | |
8954 | unsigned int op, op2; | |
8955 | ||
8956 | ADVANCE; | |
8957 | if (remaining == 0) | |
8958 | break; | |
8959 | remaining--; | |
8960 | op = word >> 24; | |
8961 | word <<= 8; | |
8962 | ||
9cf03b7e | 8963 | printf (" 0x%02x ", op); |
fa197c1c PB |
8964 | |
8965 | if ((op & 0xc0) == 0x00) | |
8966 | { | |
8967 | int offset = ((op & 0x3f) << 3) + 8; | |
9cf03b7e | 8968 | printf (" sp = sp + %d", offset); |
fa197c1c PB |
8969 | } |
8970 | else if ((op & 0xc0) == 0x80) | |
8971 | { | |
8972 | GET_OP (op2); | |
8973 | if (op == 0x80 && op2 == 0) | |
8974 | printf (_("Refuse to unwind")); | |
8975 | else | |
8976 | { | |
8977 | unsigned int mask = ((op & 0x1f) << 8) | op2; | |
8978 | if (op & 0x20) | |
8979 | printf ("pop compact {"); | |
8980 | else | |
8981 | printf ("pop {"); | |
8982 | ||
8983 | decode_tic6x_unwind_regmask (mask); | |
8984 | printf("}"); | |
8985 | } | |
8986 | } | |
8987 | else if ((op & 0xf0) == 0xc0) | |
8988 | { | |
8989 | unsigned int reg; | |
8990 | unsigned int nregs; | |
8991 | unsigned int i; | |
8992 | const char *name; | |
a734115a NC |
8993 | struct |
8994 | { | |
32ec8896 NC |
8995 | unsigned int offset; |
8996 | unsigned int reg; | |
fa197c1c PB |
8997 | } regpos[16]; |
8998 | ||
8999 | /* Scan entire instruction first so that GET_OP output is not | |
9000 | interleaved with disassembly. */ | |
9001 | nregs = 0; | |
9002 | for (i = 0; nregs < (op & 0xf); i++) | |
9003 | { | |
9004 | GET_OP (op2); | |
9005 | reg = op2 >> 4; | |
9006 | if (reg != 0xf) | |
9007 | { | |
9008 | regpos[nregs].offset = i * 2; | |
9009 | regpos[nregs].reg = reg; | |
9010 | nregs++; | |
9011 | } | |
9012 | ||
9013 | reg = op2 & 0xf; | |
9014 | if (reg != 0xf) | |
9015 | { | |
9016 | regpos[nregs].offset = i * 2 + 1; | |
9017 | regpos[nregs].reg = reg; | |
9018 | nregs++; | |
9019 | } | |
9020 | } | |
9021 | ||
9022 | printf (_("pop frame {")); | |
18344509 | 9023 | if (nregs == 0) |
fa197c1c | 9024 | { |
18344509 NC |
9025 | printf (_("*corrupt* - no registers specified")); |
9026 | } | |
9027 | else | |
9028 | { | |
9029 | reg = nregs - 1; | |
9030 | for (i = i * 2; i > 0; i--) | |
fa197c1c | 9031 | { |
18344509 NC |
9032 | if (regpos[reg].offset == i - 1) |
9033 | { | |
9034 | name = tic6x_unwind_regnames[regpos[reg].reg]; | |
9035 | if (reg > 0) | |
9036 | reg--; | |
9037 | } | |
9038 | else | |
9039 | name = _("[pad]"); | |
fa197c1c | 9040 | |
18344509 NC |
9041 | fputs (name, stdout); |
9042 | if (i > 1) | |
9043 | printf (", "); | |
9044 | } | |
fa197c1c PB |
9045 | } |
9046 | ||
9047 | printf ("}"); | |
9048 | } | |
9049 | else if (op == 0xd0) | |
9050 | printf (" MOV FP, SP"); | |
9051 | else if (op == 0xd1) | |
9052 | printf (" __c6xabi_pop_rts"); | |
9053 | else if (op == 0xd2) | |
9054 | { | |
9055 | unsigned char buf[9]; | |
9056 | unsigned int i, len; | |
9057 | unsigned long offset; | |
a734115a | 9058 | |
fa197c1c PB |
9059 | for (i = 0; i < sizeof (buf); i++) |
9060 | { | |
9061 | GET_OP (buf[i]); | |
9062 | if ((buf[i] & 0x80) == 0) | |
9063 | break; | |
9064 | } | |
0eff7165 NC |
9065 | /* PR 17531: file: id:000001,src:001906+004739,op:splice,rep:2. */ |
9066 | if (i == sizeof (buf)) | |
9067 | { | |
0eff7165 | 9068 | warn (_("Corrupt stack pointer adjustment detected\n")); |
32ec8896 | 9069 | return FALSE; |
0eff7165 | 9070 | } |
948f632f | 9071 | |
cd30bcef | 9072 | offset = read_leb128 (buf, buf + i + 1, FALSE, &len, NULL); |
fa197c1c PB |
9073 | assert (len == i + 1); |
9074 | offset = offset * 8 + 0x408; | |
9075 | printf (_("sp = sp + %ld"), offset); | |
9076 | } | |
9077 | else if ((op & 0xf0) == 0xe0) | |
9078 | { | |
9079 | if ((op & 0x0f) == 7) | |
9080 | printf (" RETURN"); | |
9081 | else | |
9082 | printf (" MV %s, B3", tic6x_unwind_regnames[op & 0x0f]); | |
9083 | } | |
9084 | else | |
9085 | { | |
9086 | printf (_(" [unsupported opcode]")); | |
9087 | } | |
9088 | putchar ('\n'); | |
9089 | } | |
32ec8896 NC |
9090 | |
9091 | return TRUE; | |
fa197c1c PB |
9092 | } |
9093 | ||
9094 | static bfd_vma | |
dda8d76d | 9095 | arm_expand_prel31 (Filedata * filedata, bfd_vma word, bfd_vma where) |
fa197c1c PB |
9096 | { |
9097 | bfd_vma offset; | |
9098 | ||
9099 | offset = word & 0x7fffffff; | |
9100 | if (offset & 0x40000000) | |
9101 | offset |= ~ (bfd_vma) 0x7fffffff; | |
9102 | ||
dda8d76d | 9103 | if (filedata->file_header.e_machine == EM_TI_C6000) |
fa197c1c PB |
9104 | offset <<= 1; |
9105 | ||
9106 | return offset + where; | |
9107 | } | |
9108 | ||
32ec8896 | 9109 | static bfd_boolean |
dda8d76d NC |
9110 | decode_arm_unwind (Filedata * filedata, |
9111 | struct arm_unw_aux_info * aux, | |
1b31d05e NC |
9112 | unsigned int word, |
9113 | unsigned int remaining, | |
9114 | bfd_vma data_offset, | |
9115 | Elf_Internal_Shdr * data_sec, | |
9116 | struct arm_section * data_arm_sec) | |
fa197c1c PB |
9117 | { |
9118 | int per_index; | |
9119 | unsigned int more_words = 0; | |
37e14bc3 | 9120 | struct absaddr addr; |
1b31d05e | 9121 | bfd_vma sym_name = (bfd_vma) -1; |
97953bab | 9122 | bfd_boolean res = TRUE; |
fa197c1c PB |
9123 | |
9124 | if (remaining == 0) | |
9125 | { | |
1b31d05e NC |
9126 | /* Fetch the first word. |
9127 | Note - when decoding an object file the address extracted | |
9128 | here will always be 0. So we also pass in the sym_name | |
9129 | parameter so that we can find the symbol associated with | |
9130 | the personality routine. */ | |
dda8d76d | 9131 | if (! get_unwind_section_word (filedata, aux, data_arm_sec, data_sec, data_offset, |
1b31d05e | 9132 | & word, & addr, & sym_name)) |
32ec8896 | 9133 | return FALSE; |
1b31d05e | 9134 | |
fa197c1c PB |
9135 | remaining = 4; |
9136 | } | |
c93dbb25 CZ |
9137 | else |
9138 | { | |
9139 | addr.section = SHN_UNDEF; | |
9140 | addr.offset = 0; | |
9141 | } | |
fa197c1c PB |
9142 | |
9143 | if ((word & 0x80000000) == 0) | |
9144 | { | |
9145 | /* Expand prel31 for personality routine. */ | |
9146 | bfd_vma fn; | |
9147 | const char *procname; | |
9148 | ||
dda8d76d | 9149 | fn = arm_expand_prel31 (filedata, word, data_sec->sh_addr + data_offset); |
fa197c1c | 9150 | printf (_(" Personality routine: ")); |
1b31d05e NC |
9151 | if (fn == 0 |
9152 | && addr.section == SHN_UNDEF && addr.offset == 0 | |
9153 | && sym_name != (bfd_vma) -1 && sym_name < aux->strtab_size) | |
9154 | { | |
9155 | procname = aux->strtab + sym_name; | |
9156 | print_vma (fn, PREFIX_HEX); | |
9157 | if (procname) | |
9158 | { | |
9159 | fputs (" <", stdout); | |
9160 | fputs (procname, stdout); | |
9161 | fputc ('>', stdout); | |
9162 | } | |
9163 | } | |
9164 | else | |
dda8d76d | 9165 | procname = arm_print_vma_and_name (filedata, aux, fn, addr); |
fa197c1c PB |
9166 | fputc ('\n', stdout); |
9167 | ||
9168 | /* The GCC personality routines use the standard compact | |
9169 | encoding, starting with one byte giving the number of | |
9170 | words. */ | |
9171 | if (procname != NULL | |
9172 | && (const_strneq (procname, "__gcc_personality_v0") | |
9173 | || const_strneq (procname, "__gxx_personality_v0") | |
9174 | || const_strneq (procname, "__gcj_personality_v0") | |
9175 | || const_strneq (procname, "__gnu_objc_personality_v0"))) | |
9176 | { | |
9177 | remaining = 0; | |
9178 | more_words = 1; | |
9179 | ADVANCE; | |
9180 | if (!remaining) | |
9181 | { | |
9182 | printf (_(" [Truncated data]\n")); | |
32ec8896 | 9183 | return FALSE; |
fa197c1c PB |
9184 | } |
9185 | more_words = word >> 24; | |
9186 | word <<= 8; | |
9187 | remaining--; | |
9188 | per_index = -1; | |
9189 | } | |
9190 | else | |
32ec8896 | 9191 | return TRUE; |
fa197c1c PB |
9192 | } |
9193 | else | |
9194 | { | |
1b31d05e | 9195 | /* ARM EHABI Section 6.3: |
0b4362b0 | 9196 | |
1b31d05e | 9197 | An exception-handling table entry for the compact model looks like: |
0b4362b0 | 9198 | |
1b31d05e NC |
9199 | 31 30-28 27-24 23-0 |
9200 | -- ----- ----- ---- | |
9201 | 1 0 index Data for personalityRoutine[index] */ | |
9202 | ||
dda8d76d | 9203 | if (filedata->file_header.e_machine == EM_ARM |
1b31d05e | 9204 | && (word & 0x70000000)) |
32ec8896 NC |
9205 | { |
9206 | warn (_("Corrupt ARM compact model table entry: %x \n"), word); | |
9207 | res = FALSE; | |
9208 | } | |
1b31d05e | 9209 | |
fa197c1c | 9210 | per_index = (word >> 24) & 0x7f; |
1b31d05e | 9211 | printf (_(" Compact model index: %d\n"), per_index); |
fa197c1c PB |
9212 | if (per_index == 0) |
9213 | { | |
9214 | more_words = 0; | |
9215 | word <<= 8; | |
9216 | remaining--; | |
9217 | } | |
9218 | else if (per_index < 3) | |
9219 | { | |
9220 | more_words = (word >> 16) & 0xff; | |
9221 | word <<= 16; | |
9222 | remaining -= 2; | |
9223 | } | |
9224 | } | |
9225 | ||
dda8d76d | 9226 | switch (filedata->file_header.e_machine) |
fa197c1c PB |
9227 | { |
9228 | case EM_ARM: | |
9229 | if (per_index < 3) | |
9230 | { | |
dda8d76d | 9231 | if (! decode_arm_unwind_bytecode (filedata, aux, word, remaining, more_words, |
32ec8896 NC |
9232 | data_offset, data_sec, data_arm_sec)) |
9233 | res = FALSE; | |
fa197c1c PB |
9234 | } |
9235 | else | |
1b31d05e NC |
9236 | { |
9237 | warn (_("Unknown ARM compact model index encountered\n")); | |
9238 | printf (_(" [reserved]\n")); | |
32ec8896 | 9239 | res = FALSE; |
1b31d05e | 9240 | } |
fa197c1c PB |
9241 | break; |
9242 | ||
9243 | case EM_TI_C6000: | |
9244 | if (per_index < 3) | |
9245 | { | |
dda8d76d | 9246 | if (! decode_tic6x_unwind_bytecode (filedata, aux, word, remaining, more_words, |
32ec8896 NC |
9247 | data_offset, data_sec, data_arm_sec)) |
9248 | res = FALSE; | |
fa197c1c PB |
9249 | } |
9250 | else if (per_index < 5) | |
9251 | { | |
9252 | if (((word >> 17) & 0x7f) == 0x7f) | |
9253 | printf (_(" Restore stack from frame pointer\n")); | |
9254 | else | |
9255 | printf (_(" Stack increment %d\n"), (word >> 14) & 0x1fc); | |
9256 | printf (_(" Registers restored: ")); | |
9257 | if (per_index == 4) | |
9258 | printf (" (compact) "); | |
9259 | decode_tic6x_unwind_regmask ((word >> 4) & 0x1fff); | |
9260 | putchar ('\n'); | |
9261 | printf (_(" Return register: %s\n"), | |
9262 | tic6x_unwind_regnames[word & 0xf]); | |
9263 | } | |
9264 | else | |
1b31d05e | 9265 | printf (_(" [reserved (%d)]\n"), per_index); |
fa197c1c PB |
9266 | break; |
9267 | ||
9268 | default: | |
74e1a04b | 9269 | error (_("Unsupported architecture type %d encountered when decoding unwind table\n"), |
dda8d76d | 9270 | filedata->file_header.e_machine); |
32ec8896 | 9271 | res = FALSE; |
fa197c1c | 9272 | } |
0b6ae522 DJ |
9273 | |
9274 | /* Decode the descriptors. Not implemented. */ | |
32ec8896 NC |
9275 | |
9276 | return res; | |
0b6ae522 DJ |
9277 | } |
9278 | ||
32ec8896 | 9279 | static bfd_boolean |
dda8d76d NC |
9280 | dump_arm_unwind (Filedata * filedata, |
9281 | struct arm_unw_aux_info * aux, | |
9282 | Elf_Internal_Shdr * exidx_sec) | |
0b6ae522 DJ |
9283 | { |
9284 | struct arm_section exidx_arm_sec, extab_arm_sec; | |
9285 | unsigned int i, exidx_len; | |
948f632f | 9286 | unsigned long j, nfuns; |
32ec8896 | 9287 | bfd_boolean res = TRUE; |
0b6ae522 DJ |
9288 | |
9289 | memset (&exidx_arm_sec, 0, sizeof (exidx_arm_sec)); | |
9290 | memset (&extab_arm_sec, 0, sizeof (extab_arm_sec)); | |
9291 | exidx_len = exidx_sec->sh_size / 8; | |
9292 | ||
948f632f DA |
9293 | aux->funtab = xmalloc (aux->nsyms * sizeof (Elf_Internal_Sym)); |
9294 | for (nfuns = 0, j = 0; j < aux->nsyms; j++) | |
9295 | if (aux->symtab[j].st_value && ELF_ST_TYPE (aux->symtab[j].st_info) == STT_FUNC) | |
9296 | aux->funtab[nfuns++] = aux->symtab[j]; | |
9297 | aux->nfuns = nfuns; | |
9298 | qsort (aux->funtab, aux->nfuns, sizeof (Elf_Internal_Sym), symcmp); | |
9299 | ||
0b6ae522 DJ |
9300 | for (i = 0; i < exidx_len; i++) |
9301 | { | |
9302 | unsigned int exidx_fn, exidx_entry; | |
9303 | struct absaddr fn_addr, entry_addr; | |
9304 | bfd_vma fn; | |
9305 | ||
9306 | fputc ('\n', stdout); | |
9307 | ||
dda8d76d | 9308 | if (! get_unwind_section_word (filedata, aux, & exidx_arm_sec, exidx_sec, |
1b31d05e | 9309 | 8 * i, & exidx_fn, & fn_addr, NULL) |
dda8d76d | 9310 | || ! get_unwind_section_word (filedata, aux, & exidx_arm_sec, exidx_sec, |
1b31d05e | 9311 | 8 * i + 4, & exidx_entry, & entry_addr, NULL)) |
0b6ae522 | 9312 | { |
948f632f | 9313 | free (aux->funtab); |
1b31d05e NC |
9314 | arm_free_section (& exidx_arm_sec); |
9315 | arm_free_section (& extab_arm_sec); | |
32ec8896 | 9316 | return FALSE; |
0b6ae522 DJ |
9317 | } |
9318 | ||
83c257ca NC |
9319 | /* ARM EHABI, Section 5: |
9320 | An index table entry consists of 2 words. | |
9321 | The first word contains a prel31 offset to the start of a function, with bit 31 clear. */ | |
9322 | if (exidx_fn & 0x80000000) | |
32ec8896 NC |
9323 | { |
9324 | warn (_("corrupt index table entry: %x\n"), exidx_fn); | |
9325 | res = FALSE; | |
9326 | } | |
83c257ca | 9327 | |
dda8d76d | 9328 | fn = arm_expand_prel31 (filedata, exidx_fn, exidx_sec->sh_addr + 8 * i); |
0b6ae522 | 9329 | |
dda8d76d | 9330 | arm_print_vma_and_name (filedata, aux, fn, fn_addr); |
0b6ae522 DJ |
9331 | fputs (": ", stdout); |
9332 | ||
9333 | if (exidx_entry == 1) | |
9334 | { | |
9335 | print_vma (exidx_entry, PREFIX_HEX); | |
9336 | fputs (" [cantunwind]\n", stdout); | |
9337 | } | |
9338 | else if (exidx_entry & 0x80000000) | |
9339 | { | |
9340 | print_vma (exidx_entry, PREFIX_HEX); | |
9341 | fputc ('\n', stdout); | |
dda8d76d | 9342 | decode_arm_unwind (filedata, aux, exidx_entry, 4, 0, NULL, NULL); |
0b6ae522 DJ |
9343 | } |
9344 | else | |
9345 | { | |
8f73510c | 9346 | bfd_vma table, table_offset = 0; |
0b6ae522 DJ |
9347 | Elf_Internal_Shdr *table_sec; |
9348 | ||
9349 | fputs ("@", stdout); | |
dda8d76d | 9350 | table = arm_expand_prel31 (filedata, exidx_entry, exidx_sec->sh_addr + 8 * i + 4); |
0b6ae522 DJ |
9351 | print_vma (table, PREFIX_HEX); |
9352 | printf ("\n"); | |
9353 | ||
9354 | /* Locate the matching .ARM.extab. */ | |
9355 | if (entry_addr.section != SHN_UNDEF | |
dda8d76d | 9356 | && entry_addr.section < filedata->file_header.e_shnum) |
0b6ae522 | 9357 | { |
dda8d76d | 9358 | table_sec = filedata->section_headers + entry_addr.section; |
0b6ae522 | 9359 | table_offset = entry_addr.offset; |
1a915552 NC |
9360 | /* PR 18879 */ |
9361 | if (table_offset > table_sec->sh_size | |
9362 | || ((bfd_signed_vma) table_offset) < 0) | |
9363 | { | |
9364 | warn (_("Unwind entry contains corrupt offset (0x%lx) into section %s\n"), | |
9365 | (unsigned long) table_offset, | |
dda8d76d | 9366 | printable_section_name (filedata, table_sec)); |
32ec8896 | 9367 | res = FALSE; |
1a915552 NC |
9368 | continue; |
9369 | } | |
0b6ae522 DJ |
9370 | } |
9371 | else | |
9372 | { | |
dda8d76d | 9373 | table_sec = find_section_by_address (filedata, table); |
0b6ae522 DJ |
9374 | if (table_sec != NULL) |
9375 | table_offset = table - table_sec->sh_addr; | |
9376 | } | |
32ec8896 | 9377 | |
0b6ae522 DJ |
9378 | if (table_sec == NULL) |
9379 | { | |
9380 | warn (_("Could not locate .ARM.extab section containing 0x%lx.\n"), | |
9381 | (unsigned long) table); | |
32ec8896 | 9382 | res = FALSE; |
0b6ae522 DJ |
9383 | continue; |
9384 | } | |
32ec8896 | 9385 | |
dda8d76d | 9386 | if (! decode_arm_unwind (filedata, aux, 0, 0, table_offset, table_sec, |
32ec8896 NC |
9387 | &extab_arm_sec)) |
9388 | res = FALSE; | |
0b6ae522 DJ |
9389 | } |
9390 | } | |
9391 | ||
9392 | printf ("\n"); | |
9393 | ||
948f632f | 9394 | free (aux->funtab); |
0b6ae522 DJ |
9395 | arm_free_section (&exidx_arm_sec); |
9396 | arm_free_section (&extab_arm_sec); | |
32ec8896 NC |
9397 | |
9398 | return res; | |
0b6ae522 DJ |
9399 | } |
9400 | ||
fa197c1c | 9401 | /* Used for both ARM and C6X unwinding tables. */ |
1b31d05e | 9402 | |
32ec8896 | 9403 | static bfd_boolean |
dda8d76d | 9404 | arm_process_unwind (Filedata * filedata) |
0b6ae522 DJ |
9405 | { |
9406 | struct arm_unw_aux_info aux; | |
9407 | Elf_Internal_Shdr *unwsec = NULL; | |
0b6ae522 DJ |
9408 | Elf_Internal_Shdr *sec; |
9409 | unsigned long i; | |
fa197c1c | 9410 | unsigned int sec_type; |
32ec8896 | 9411 | bfd_boolean res = TRUE; |
0b6ae522 | 9412 | |
dda8d76d | 9413 | switch (filedata->file_header.e_machine) |
fa197c1c PB |
9414 | { |
9415 | case EM_ARM: | |
9416 | sec_type = SHT_ARM_EXIDX; | |
9417 | break; | |
9418 | ||
9419 | case EM_TI_C6000: | |
9420 | sec_type = SHT_C6000_UNWIND; | |
9421 | break; | |
9422 | ||
0b4362b0 | 9423 | default: |
74e1a04b | 9424 | error (_("Unsupported architecture type %d encountered when processing unwind table\n"), |
dda8d76d | 9425 | filedata->file_header.e_machine); |
32ec8896 | 9426 | return FALSE; |
fa197c1c PB |
9427 | } |
9428 | ||
dda8d76d | 9429 | if (filedata->string_table == NULL) |
32ec8896 | 9430 | return FALSE; |
1b31d05e NC |
9431 | |
9432 | memset (& aux, 0, sizeof (aux)); | |
dda8d76d | 9433 | aux.filedata = filedata; |
0b6ae522 | 9434 | |
dda8d76d | 9435 | for (i = 0, sec = filedata->section_headers; i < filedata->file_header.e_shnum; ++i, ++sec) |
0b6ae522 | 9436 | { |
28d13567 | 9437 | if (sec->sh_type == SHT_SYMTAB) |
0b6ae522 | 9438 | { |
28d13567 | 9439 | if (aux.symtab) |
74e1a04b | 9440 | { |
28d13567 AM |
9441 | error (_("Multiple symbol tables encountered\n")); |
9442 | free (aux.symtab); | |
9443 | aux.symtab = NULL; | |
74e1a04b | 9444 | free (aux.strtab); |
28d13567 | 9445 | aux.strtab = NULL; |
74e1a04b | 9446 | } |
28d13567 AM |
9447 | if (!get_symtab (filedata, sec, &aux.symtab, &aux.nsyms, |
9448 | &aux.strtab, &aux.strtab_size)) | |
9449 | return FALSE; | |
0b6ae522 | 9450 | } |
fa197c1c | 9451 | else if (sec->sh_type == sec_type) |
0b6ae522 DJ |
9452 | unwsec = sec; |
9453 | } | |
9454 | ||
1b31d05e | 9455 | if (unwsec == NULL) |
0b6ae522 | 9456 | printf (_("\nThere are no unwind sections in this file.\n")); |
1b31d05e | 9457 | else |
dda8d76d | 9458 | for (i = 0, sec = filedata->section_headers; i < filedata->file_header.e_shnum; ++i, ++sec) |
1b31d05e NC |
9459 | { |
9460 | if (sec->sh_type == sec_type) | |
9461 | { | |
d3a49aa8 AM |
9462 | unsigned long num_unwind = sec->sh_size / (2 * eh_addr_size); |
9463 | printf (ngettext ("\nUnwind section '%s' at offset 0x%lx " | |
9464 | "contains %lu entry:\n", | |
9465 | "\nUnwind section '%s' at offset 0x%lx " | |
9466 | "contains %lu entries:\n", | |
9467 | num_unwind), | |
dda8d76d | 9468 | printable_section_name (filedata, sec), |
1b31d05e | 9469 | (unsigned long) sec->sh_offset, |
d3a49aa8 | 9470 | num_unwind); |
0b6ae522 | 9471 | |
dda8d76d | 9472 | if (! dump_arm_unwind (filedata, &aux, sec)) |
32ec8896 | 9473 | res = FALSE; |
1b31d05e NC |
9474 | } |
9475 | } | |
0b6ae522 DJ |
9476 | |
9477 | if (aux.symtab) | |
9478 | free (aux.symtab); | |
9479 | if (aux.strtab) | |
9480 | free ((char *) aux.strtab); | |
32ec8896 NC |
9481 | |
9482 | return res; | |
0b6ae522 DJ |
9483 | } |
9484 | ||
32ec8896 | 9485 | static bfd_boolean |
dda8d76d | 9486 | process_unwind (Filedata * filedata) |
57346661 | 9487 | { |
2cf0635d NC |
9488 | struct unwind_handler |
9489 | { | |
32ec8896 | 9490 | unsigned int machtype; |
dda8d76d | 9491 | bfd_boolean (* handler)(Filedata *); |
2cf0635d NC |
9492 | } handlers[] = |
9493 | { | |
0b6ae522 | 9494 | { EM_ARM, arm_process_unwind }, |
57346661 AM |
9495 | { EM_IA_64, ia64_process_unwind }, |
9496 | { EM_PARISC, hppa_process_unwind }, | |
fa197c1c | 9497 | { EM_TI_C6000, arm_process_unwind }, |
32ec8896 | 9498 | { 0, NULL } |
57346661 AM |
9499 | }; |
9500 | int i; | |
9501 | ||
9502 | if (!do_unwind) | |
32ec8896 | 9503 | return TRUE; |
57346661 AM |
9504 | |
9505 | for (i = 0; handlers[i].handler != NULL; i++) | |
dda8d76d NC |
9506 | if (filedata->file_header.e_machine == handlers[i].machtype) |
9507 | return handlers[i].handler (filedata); | |
57346661 | 9508 | |
1b31d05e | 9509 | printf (_("\nThe decoding of unwind sections for machine type %s is not currently supported.\n"), |
dda8d76d | 9510 | get_machine_name (filedata->file_header.e_machine)); |
32ec8896 | 9511 | return TRUE; |
57346661 AM |
9512 | } |
9513 | ||
37c18eed SD |
9514 | static void |
9515 | dynamic_section_aarch64_val (Elf_Internal_Dyn * entry) | |
9516 | { | |
9517 | switch (entry->d_tag) | |
9518 | { | |
9519 | case DT_AARCH64_BTI_PLT: | |
1dbade74 | 9520 | case DT_AARCH64_PAC_PLT: |
37c18eed SD |
9521 | break; |
9522 | default: | |
9523 | print_vma (entry->d_un.d_ptr, PREFIX_HEX); | |
9524 | break; | |
9525 | } | |
9526 | putchar ('\n'); | |
9527 | } | |
9528 | ||
252b5132 | 9529 | static void |
978c4450 | 9530 | dynamic_section_mips_val (Filedata * filedata, Elf_Internal_Dyn * entry) |
252b5132 RH |
9531 | { |
9532 | switch (entry->d_tag) | |
9533 | { | |
9534 | case DT_MIPS_FLAGS: | |
9535 | if (entry->d_un.d_val == 0) | |
4b68bca3 | 9536 | printf (_("NONE")); |
252b5132 RH |
9537 | else |
9538 | { | |
9539 | static const char * opts[] = | |
9540 | { | |
9541 | "QUICKSTART", "NOTPOT", "NO_LIBRARY_REPLACEMENT", | |
9542 | "NO_MOVE", "SGI_ONLY", "GUARANTEE_INIT", "DELTA_C_PLUS_PLUS", | |
9543 | "GUARANTEE_START_INIT", "PIXIE", "DEFAULT_DELAY_LOAD", | |
9544 | "REQUICKSTART", "REQUICKSTARTED", "CORD", "NO_UNRES_UNDEF", | |
9545 | "RLD_ORDER_SAFE" | |
9546 | }; | |
9547 | unsigned int cnt; | |
32ec8896 | 9548 | bfd_boolean first = TRUE; |
2b692964 | 9549 | |
60bca95a | 9550 | for (cnt = 0; cnt < ARRAY_SIZE (opts); ++cnt) |
252b5132 RH |
9551 | if (entry->d_un.d_val & (1 << cnt)) |
9552 | { | |
9553 | printf ("%s%s", first ? "" : " ", opts[cnt]); | |
32ec8896 | 9554 | first = FALSE; |
252b5132 | 9555 | } |
252b5132 RH |
9556 | } |
9557 | break; | |
103f02d3 | 9558 | |
252b5132 | 9559 | case DT_MIPS_IVERSION: |
978c4450 AM |
9560 | if (VALID_DYNAMIC_NAME (filedata, entry->d_un.d_val)) |
9561 | printf (_("Interface Version: %s"), | |
9562 | GET_DYNAMIC_NAME (filedata, entry->d_un.d_val)); | |
252b5132 | 9563 | else |
76ca31c0 NC |
9564 | { |
9565 | char buf[40]; | |
9566 | sprintf_vma (buf, entry->d_un.d_ptr); | |
9567 | /* Note: coded this way so that there is a single string for translation. */ | |
9568 | printf (_("<corrupt: %s>"), buf); | |
9569 | } | |
252b5132 | 9570 | break; |
103f02d3 | 9571 | |
252b5132 RH |
9572 | case DT_MIPS_TIME_STAMP: |
9573 | { | |
d5b07ef4 | 9574 | char timebuf[128]; |
2cf0635d | 9575 | struct tm * tmp; |
91d6fa6a | 9576 | time_t atime = entry->d_un.d_val; |
82b1b41b | 9577 | |
91d6fa6a | 9578 | tmp = gmtime (&atime); |
82b1b41b NC |
9579 | /* PR 17531: file: 6accc532. */ |
9580 | if (tmp == NULL) | |
9581 | snprintf (timebuf, sizeof (timebuf), _("<corrupt>")); | |
9582 | else | |
9583 | snprintf (timebuf, sizeof (timebuf), "%04u-%02u-%02uT%02u:%02u:%02u", | |
9584 | tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday, | |
9585 | tmp->tm_hour, tmp->tm_min, tmp->tm_sec); | |
4b68bca3 | 9586 | printf (_("Time Stamp: %s"), timebuf); |
252b5132 RH |
9587 | } |
9588 | break; | |
103f02d3 | 9589 | |
252b5132 RH |
9590 | case DT_MIPS_RLD_VERSION: |
9591 | case DT_MIPS_LOCAL_GOTNO: | |
9592 | case DT_MIPS_CONFLICTNO: | |
9593 | case DT_MIPS_LIBLISTNO: | |
9594 | case DT_MIPS_SYMTABNO: | |
9595 | case DT_MIPS_UNREFEXTNO: | |
9596 | case DT_MIPS_HIPAGENO: | |
9597 | case DT_MIPS_DELTA_CLASS_NO: | |
9598 | case DT_MIPS_DELTA_INSTANCE_NO: | |
9599 | case DT_MIPS_DELTA_RELOC_NO: | |
9600 | case DT_MIPS_DELTA_SYM_NO: | |
9601 | case DT_MIPS_DELTA_CLASSSYM_NO: | |
9602 | case DT_MIPS_COMPACT_SIZE: | |
c69075ac | 9603 | print_vma (entry->d_un.d_val, DEC); |
252b5132 | 9604 | break; |
103f02d3 | 9605 | |
f16a9783 | 9606 | case DT_MIPS_XHASH: |
978c4450 AM |
9607 | filedata->dynamic_info_DT_MIPS_XHASH = entry->d_un.d_val; |
9608 | filedata->dynamic_info_DT_GNU_HASH = entry->d_un.d_val; | |
f16a9783 MS |
9609 | /* Falls through. */ |
9610 | ||
103f02d3 | 9611 | default: |
4b68bca3 | 9612 | print_vma (entry->d_un.d_ptr, PREFIX_HEX); |
103f02d3 | 9613 | } |
4b68bca3 | 9614 | putchar ('\n'); |
103f02d3 UD |
9615 | } |
9616 | ||
103f02d3 | 9617 | static void |
2cf0635d | 9618 | dynamic_section_parisc_val (Elf_Internal_Dyn * entry) |
103f02d3 UD |
9619 | { |
9620 | switch (entry->d_tag) | |
9621 | { | |
9622 | case DT_HP_DLD_FLAGS: | |
9623 | { | |
9624 | static struct | |
9625 | { | |
9626 | long int bit; | |
2cf0635d | 9627 | const char * str; |
5e220199 NC |
9628 | } |
9629 | flags[] = | |
9630 | { | |
9631 | { DT_HP_DEBUG_PRIVATE, "HP_DEBUG_PRIVATE" }, | |
9632 | { DT_HP_DEBUG_CALLBACK, "HP_DEBUG_CALLBACK" }, | |
9633 | { DT_HP_DEBUG_CALLBACK_BOR, "HP_DEBUG_CALLBACK_BOR" }, | |
9634 | { DT_HP_NO_ENVVAR, "HP_NO_ENVVAR" }, | |
9635 | { DT_HP_BIND_NOW, "HP_BIND_NOW" }, | |
9636 | { DT_HP_BIND_NONFATAL, "HP_BIND_NONFATAL" }, | |
9637 | { DT_HP_BIND_VERBOSE, "HP_BIND_VERBOSE" }, | |
9638 | { DT_HP_BIND_RESTRICTED, "HP_BIND_RESTRICTED" }, | |
9639 | { DT_HP_BIND_SYMBOLIC, "HP_BIND_SYMBOLIC" }, | |
9640 | { DT_HP_RPATH_FIRST, "HP_RPATH_FIRST" }, | |
eec8f817 DA |
9641 | { DT_HP_BIND_DEPTH_FIRST, "HP_BIND_DEPTH_FIRST" }, |
9642 | { DT_HP_GST, "HP_GST" }, | |
9643 | { DT_HP_SHLIB_FIXED, "HP_SHLIB_FIXED" }, | |
9644 | { DT_HP_MERGE_SHLIB_SEG, "HP_MERGE_SHLIB_SEG" }, | |
9645 | { DT_HP_NODELETE, "HP_NODELETE" }, | |
9646 | { DT_HP_GROUP, "HP_GROUP" }, | |
9647 | { DT_HP_PROTECT_LINKAGE_TABLE, "HP_PROTECT_LINKAGE_TABLE" } | |
5e220199 | 9648 | }; |
32ec8896 | 9649 | bfd_boolean first = TRUE; |
5e220199 | 9650 | size_t cnt; |
f7a99963 | 9651 | bfd_vma val = entry->d_un.d_val; |
103f02d3 | 9652 | |
60bca95a | 9653 | for (cnt = 0; cnt < ARRAY_SIZE (flags); ++cnt) |
103f02d3 | 9654 | if (val & flags[cnt].bit) |
30800947 NC |
9655 | { |
9656 | if (! first) | |
9657 | putchar (' '); | |
9658 | fputs (flags[cnt].str, stdout); | |
32ec8896 | 9659 | first = FALSE; |
30800947 NC |
9660 | val ^= flags[cnt].bit; |
9661 | } | |
76da6bbe | 9662 | |
103f02d3 | 9663 | if (val != 0 || first) |
f7a99963 NC |
9664 | { |
9665 | if (! first) | |
9666 | putchar (' '); | |
9667 | print_vma (val, HEX); | |
9668 | } | |
103f02d3 UD |
9669 | } |
9670 | break; | |
76da6bbe | 9671 | |
252b5132 | 9672 | default: |
f7a99963 NC |
9673 | print_vma (entry->d_un.d_ptr, PREFIX_HEX); |
9674 | break; | |
252b5132 | 9675 | } |
35b1837e | 9676 | putchar ('\n'); |
252b5132 RH |
9677 | } |
9678 | ||
28f997cf TG |
9679 | #ifdef BFD64 |
9680 | ||
9681 | /* VMS vs Unix time offset and factor. */ | |
9682 | ||
9683 | #define VMS_EPOCH_OFFSET 35067168000000000LL | |
9684 | #define VMS_GRANULARITY_FACTOR 10000000 | |
9685 | ||
9686 | /* Display a VMS time in a human readable format. */ | |
9687 | ||
9688 | static void | |
9689 | print_vms_time (bfd_int64_t vmstime) | |
9690 | { | |
9691 | struct tm *tm; | |
9692 | time_t unxtime; | |
9693 | ||
9694 | unxtime = (vmstime - VMS_EPOCH_OFFSET) / VMS_GRANULARITY_FACTOR; | |
9695 | tm = gmtime (&unxtime); | |
9696 | printf ("%04u-%02u-%02uT%02u:%02u:%02u", | |
9697 | tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday, | |
9698 | tm->tm_hour, tm->tm_min, tm->tm_sec); | |
9699 | } | |
9700 | #endif /* BFD64 */ | |
9701 | ||
ecc51f48 | 9702 | static void |
2cf0635d | 9703 | dynamic_section_ia64_val (Elf_Internal_Dyn * entry) |
ecc51f48 NC |
9704 | { |
9705 | switch (entry->d_tag) | |
9706 | { | |
0de14b54 | 9707 | case DT_IA_64_PLT_RESERVE: |
bdf4d63a | 9708 | /* First 3 slots reserved. */ |
ecc51f48 NC |
9709 | print_vma (entry->d_un.d_ptr, PREFIX_HEX); |
9710 | printf (" -- "); | |
9711 | print_vma (entry->d_un.d_ptr + (3 * 8), PREFIX_HEX); | |
bdf4d63a JJ |
9712 | break; |
9713 | ||
28f997cf TG |
9714 | case DT_IA_64_VMS_LINKTIME: |
9715 | #ifdef BFD64 | |
9716 | print_vms_time (entry->d_un.d_val); | |
9717 | #endif | |
9718 | break; | |
9719 | ||
9720 | case DT_IA_64_VMS_LNKFLAGS: | |
9721 | print_vma (entry->d_un.d_ptr, PREFIX_HEX); | |
9722 | if (entry->d_un.d_val & VMS_LF_CALL_DEBUG) | |
9723 | printf (" CALL_DEBUG"); | |
9724 | if (entry->d_un.d_val & VMS_LF_NOP0BUFS) | |
9725 | printf (" NOP0BUFS"); | |
9726 | if (entry->d_un.d_val & VMS_LF_P0IMAGE) | |
9727 | printf (" P0IMAGE"); | |
9728 | if (entry->d_un.d_val & VMS_LF_MKTHREADS) | |
9729 | printf (" MKTHREADS"); | |
9730 | if (entry->d_un.d_val & VMS_LF_UPCALLS) | |
9731 | printf (" UPCALLS"); | |
9732 | if (entry->d_un.d_val & VMS_LF_IMGSTA) | |
9733 | printf (" IMGSTA"); | |
9734 | if (entry->d_un.d_val & VMS_LF_INITIALIZE) | |
9735 | printf (" INITIALIZE"); | |
9736 | if (entry->d_un.d_val & VMS_LF_MAIN) | |
9737 | printf (" MAIN"); | |
9738 | if (entry->d_un.d_val & VMS_LF_EXE_INIT) | |
9739 | printf (" EXE_INIT"); | |
9740 | if (entry->d_un.d_val & VMS_LF_TBK_IN_IMG) | |
9741 | printf (" TBK_IN_IMG"); | |
9742 | if (entry->d_un.d_val & VMS_LF_DBG_IN_IMG) | |
9743 | printf (" DBG_IN_IMG"); | |
9744 | if (entry->d_un.d_val & VMS_LF_TBK_IN_DSF) | |
9745 | printf (" TBK_IN_DSF"); | |
9746 | if (entry->d_un.d_val & VMS_LF_DBG_IN_DSF) | |
9747 | printf (" DBG_IN_DSF"); | |
9748 | if (entry->d_un.d_val & VMS_LF_SIGNATURES) | |
9749 | printf (" SIGNATURES"); | |
9750 | if (entry->d_un.d_val & VMS_LF_REL_SEG_OFF) | |
9751 | printf (" REL_SEG_OFF"); | |
9752 | break; | |
9753 | ||
bdf4d63a JJ |
9754 | default: |
9755 | print_vma (entry->d_un.d_ptr, PREFIX_HEX); | |
9756 | break; | |
ecc51f48 | 9757 | } |
bdf4d63a | 9758 | putchar ('\n'); |
ecc51f48 NC |
9759 | } |
9760 | ||
32ec8896 | 9761 | static bfd_boolean |
dda8d76d | 9762 | get_32bit_dynamic_section (Filedata * filedata) |
252b5132 | 9763 | { |
2cf0635d NC |
9764 | Elf32_External_Dyn * edyn; |
9765 | Elf32_External_Dyn * ext; | |
9766 | Elf_Internal_Dyn * entry; | |
103f02d3 | 9767 | |
978c4450 AM |
9768 | edyn = (Elf32_External_Dyn *) get_data (NULL, filedata, |
9769 | filedata->dynamic_addr, 1, | |
9770 | filedata->dynamic_size, | |
9771 | _("dynamic section")); | |
a6e9f9df | 9772 | if (!edyn) |
32ec8896 | 9773 | return FALSE; |
103f02d3 | 9774 | |
071436c6 NC |
9775 | /* SGI's ELF has more than one section in the DYNAMIC segment, and we |
9776 | might not have the luxury of section headers. Look for the DT_NULL | |
9777 | terminator to determine the number of entries. */ | |
978c4450 AM |
9778 | for (ext = edyn, filedata->dynamic_nent = 0; |
9779 | (char *) (ext + 1) <= (char *) edyn + filedata->dynamic_size; | |
ba2685cc AM |
9780 | ext++) |
9781 | { | |
978c4450 | 9782 | filedata->dynamic_nent++; |
ba2685cc AM |
9783 | if (BYTE_GET (ext->d_tag) == DT_NULL) |
9784 | break; | |
9785 | } | |
252b5132 | 9786 | |
978c4450 AM |
9787 | filedata->dynamic_section |
9788 | = (Elf_Internal_Dyn *) cmalloc (filedata->dynamic_nent, sizeof (* entry)); | |
9789 | if (filedata->dynamic_section == NULL) | |
252b5132 | 9790 | { |
8b73c356 | 9791 | error (_("Out of memory allocating space for %lu dynamic entries\n"), |
978c4450 | 9792 | (unsigned long) filedata->dynamic_nent); |
9ea033b2 | 9793 | free (edyn); |
32ec8896 | 9794 | return FALSE; |
9ea033b2 | 9795 | } |
252b5132 | 9796 | |
978c4450 AM |
9797 | for (ext = edyn, entry = filedata->dynamic_section; |
9798 | entry < filedata->dynamic_section + filedata->dynamic_nent; | |
fb514b26 | 9799 | ext++, entry++) |
9ea033b2 | 9800 | { |
fb514b26 AM |
9801 | entry->d_tag = BYTE_GET (ext->d_tag); |
9802 | entry->d_un.d_val = BYTE_GET (ext->d_un.d_val); | |
252b5132 RH |
9803 | } |
9804 | ||
9ea033b2 NC |
9805 | free (edyn); |
9806 | ||
32ec8896 | 9807 | return TRUE; |
9ea033b2 NC |
9808 | } |
9809 | ||
32ec8896 | 9810 | static bfd_boolean |
dda8d76d | 9811 | get_64bit_dynamic_section (Filedata * filedata) |
9ea033b2 | 9812 | { |
2cf0635d NC |
9813 | Elf64_External_Dyn * edyn; |
9814 | Elf64_External_Dyn * ext; | |
9815 | Elf_Internal_Dyn * entry; | |
103f02d3 | 9816 | |
071436c6 | 9817 | /* Read in the data. */ |
978c4450 AM |
9818 | edyn = (Elf64_External_Dyn *) get_data (NULL, filedata, |
9819 | filedata->dynamic_addr, 1, | |
9820 | filedata->dynamic_size, | |
9821 | _("dynamic section")); | |
a6e9f9df | 9822 | if (!edyn) |
32ec8896 | 9823 | return FALSE; |
103f02d3 | 9824 | |
071436c6 NC |
9825 | /* SGI's ELF has more than one section in the DYNAMIC segment, and we |
9826 | might not have the luxury of section headers. Look for the DT_NULL | |
9827 | terminator to determine the number of entries. */ | |
978c4450 | 9828 | for (ext = edyn, filedata->dynamic_nent = 0; |
53c3012c | 9829 | /* PR 17533 file: 033-67080-0.004 - do not read past end of buffer. */ |
978c4450 | 9830 | (char *) (ext + 1) <= (char *) edyn + filedata->dynamic_size; |
ba2685cc AM |
9831 | ext++) |
9832 | { | |
978c4450 | 9833 | filedata->dynamic_nent++; |
66543521 | 9834 | if (BYTE_GET (ext->d_tag) == DT_NULL) |
ba2685cc AM |
9835 | break; |
9836 | } | |
252b5132 | 9837 | |
978c4450 AM |
9838 | filedata->dynamic_section |
9839 | = (Elf_Internal_Dyn *) cmalloc (filedata->dynamic_nent, sizeof (* entry)); | |
9840 | if (filedata->dynamic_section == NULL) | |
252b5132 | 9841 | { |
8b73c356 | 9842 | error (_("Out of memory allocating space for %lu dynamic entries\n"), |
978c4450 | 9843 | (unsigned long) filedata->dynamic_nent); |
252b5132 | 9844 | free (edyn); |
32ec8896 | 9845 | return FALSE; |
252b5132 RH |
9846 | } |
9847 | ||
071436c6 | 9848 | /* Convert from external to internal formats. */ |
978c4450 AM |
9849 | for (ext = edyn, entry = filedata->dynamic_section; |
9850 | entry < filedata->dynamic_section + filedata->dynamic_nent; | |
fb514b26 | 9851 | ext++, entry++) |
252b5132 | 9852 | { |
66543521 AM |
9853 | entry->d_tag = BYTE_GET (ext->d_tag); |
9854 | entry->d_un.d_val = BYTE_GET (ext->d_un.d_val); | |
252b5132 RH |
9855 | } |
9856 | ||
9857 | free (edyn); | |
9858 | ||
32ec8896 | 9859 | return TRUE; |
9ea033b2 NC |
9860 | } |
9861 | ||
e9e44622 JJ |
9862 | static void |
9863 | print_dynamic_flags (bfd_vma flags) | |
d1133906 | 9864 | { |
32ec8896 | 9865 | bfd_boolean first = TRUE; |
13ae64f3 | 9866 | |
d1133906 NC |
9867 | while (flags) |
9868 | { | |
9869 | bfd_vma flag; | |
9870 | ||
9871 | flag = flags & - flags; | |
9872 | flags &= ~ flag; | |
9873 | ||
e9e44622 | 9874 | if (first) |
32ec8896 | 9875 | first = FALSE; |
e9e44622 JJ |
9876 | else |
9877 | putc (' ', stdout); | |
13ae64f3 | 9878 | |
d1133906 NC |
9879 | switch (flag) |
9880 | { | |
e9e44622 JJ |
9881 | case DF_ORIGIN: fputs ("ORIGIN", stdout); break; |
9882 | case DF_SYMBOLIC: fputs ("SYMBOLIC", stdout); break; | |
9883 | case DF_TEXTREL: fputs ("TEXTREL", stdout); break; | |
9884 | case DF_BIND_NOW: fputs ("BIND_NOW", stdout); break; | |
9885 | case DF_STATIC_TLS: fputs ("STATIC_TLS", stdout); break; | |
2b692964 | 9886 | default: fputs (_("unknown"), stdout); break; |
d1133906 NC |
9887 | } |
9888 | } | |
e9e44622 | 9889 | puts (""); |
d1133906 NC |
9890 | } |
9891 | ||
10ca4b04 L |
9892 | static bfd_vma * |
9893 | get_dynamic_data (Filedata * filedata, bfd_size_type number, unsigned int ent_size) | |
9894 | { | |
9895 | unsigned char * e_data; | |
9896 | bfd_vma * i_data; | |
9897 | ||
9898 | /* If the size_t type is smaller than the bfd_size_type, eg because | |
9899 | you are building a 32-bit tool on a 64-bit host, then make sure | |
9900 | that when (number) is cast to (size_t) no information is lost. */ | |
9901 | if (sizeof (size_t) < sizeof (bfd_size_type) | |
9902 | && (bfd_size_type) ((size_t) number) != number) | |
9903 | { | |
9904 | error (_("Size truncation prevents reading %s elements of size %u\n"), | |
9905 | bfd_vmatoa ("u", number), ent_size); | |
9906 | return NULL; | |
9907 | } | |
9908 | ||
9909 | /* Be kind to memory checkers (eg valgrind, address sanitizer) by not | |
9910 | attempting to allocate memory when the read is bound to fail. */ | |
9911 | if (ent_size * number > filedata->file_size) | |
9912 | { | |
9913 | error (_("Invalid number of dynamic entries: %s\n"), | |
9914 | bfd_vmatoa ("u", number)); | |
9915 | return NULL; | |
9916 | } | |
9917 | ||
9918 | e_data = (unsigned char *) cmalloc ((size_t) number, ent_size); | |
9919 | if (e_data == NULL) | |
9920 | { | |
9921 | error (_("Out of memory reading %s dynamic entries\n"), | |
9922 | bfd_vmatoa ("u", number)); | |
9923 | return NULL; | |
9924 | } | |
9925 | ||
9926 | if (fread (e_data, ent_size, (size_t) number, filedata->handle) != number) | |
9927 | { | |
9928 | error (_("Unable to read in %s bytes of dynamic data\n"), | |
9929 | bfd_vmatoa ("u", number * ent_size)); | |
9930 | free (e_data); | |
9931 | return NULL; | |
9932 | } | |
9933 | ||
9934 | i_data = (bfd_vma *) cmalloc ((size_t) number, sizeof (*i_data)); | |
9935 | if (i_data == NULL) | |
9936 | { | |
9937 | error (_("Out of memory allocating space for %s dynamic entries\n"), | |
9938 | bfd_vmatoa ("u", number)); | |
9939 | free (e_data); | |
9940 | return NULL; | |
9941 | } | |
9942 | ||
9943 | while (number--) | |
9944 | i_data[number] = byte_get (e_data + number * ent_size, ent_size); | |
9945 | ||
9946 | free (e_data); | |
9947 | ||
9948 | return i_data; | |
9949 | } | |
9950 | ||
9951 | static unsigned long | |
9952 | get_num_dynamic_syms (Filedata * filedata) | |
9953 | { | |
9954 | unsigned long num_of_syms = 0; | |
9955 | ||
9956 | if (!do_histogram && (!do_using_dynamic || do_dyn_syms)) | |
9957 | return num_of_syms; | |
9958 | ||
978c4450 | 9959 | if (filedata->dynamic_info[DT_HASH]) |
10ca4b04 L |
9960 | { |
9961 | unsigned char nb[8]; | |
9962 | unsigned char nc[8]; | |
9963 | unsigned int hash_ent_size = 4; | |
9964 | ||
9965 | if ((filedata->file_header.e_machine == EM_ALPHA | |
9966 | || filedata->file_header.e_machine == EM_S390 | |
9967 | || filedata->file_header.e_machine == EM_S390_OLD) | |
9968 | && filedata->file_header.e_ident[EI_CLASS] == ELFCLASS64) | |
9969 | hash_ent_size = 8; | |
9970 | ||
9971 | if (fseek (filedata->handle, | |
978c4450 AM |
9972 | (filedata->archive_file_offset |
9973 | + offset_from_vma (filedata, filedata->dynamic_info[DT_HASH], | |
10ca4b04 L |
9974 | sizeof nb + sizeof nc)), |
9975 | SEEK_SET)) | |
9976 | { | |
9977 | error (_("Unable to seek to start of dynamic information\n")); | |
9978 | goto no_hash; | |
9979 | } | |
9980 | ||
9981 | if (fread (nb, hash_ent_size, 1, filedata->handle) != 1) | |
9982 | { | |
9983 | error (_("Failed to read in number of buckets\n")); | |
9984 | goto no_hash; | |
9985 | } | |
9986 | ||
9987 | if (fread (nc, hash_ent_size, 1, filedata->handle) != 1) | |
9988 | { | |
9989 | error (_("Failed to read in number of chains\n")); | |
9990 | goto no_hash; | |
9991 | } | |
9992 | ||
978c4450 AM |
9993 | filedata->nbuckets = byte_get (nb, hash_ent_size); |
9994 | filedata->nchains = byte_get (nc, hash_ent_size); | |
10ca4b04 | 9995 | |
978c4450 AM |
9996 | filedata->buckets = get_dynamic_data (filedata, filedata->nbuckets, |
9997 | hash_ent_size); | |
9998 | filedata->chains = get_dynamic_data (filedata, filedata->nchains, | |
9999 | hash_ent_size); | |
10ca4b04 | 10000 | |
978c4450 AM |
10001 | if (filedata->buckets != NULL && filedata->chains != NULL) |
10002 | num_of_syms = filedata->nchains; | |
001890e1 | 10003 | |
ceb9bf11 | 10004 | no_hash: |
10ca4b04 L |
10005 | if (num_of_syms == 0) |
10006 | { | |
978c4450 | 10007 | if (filedata->buckets) |
10ca4b04 | 10008 | { |
978c4450 AM |
10009 | free (filedata->buckets); |
10010 | filedata->buckets = NULL; | |
10ca4b04 | 10011 | } |
978c4450 | 10012 | if (filedata->chains) |
10ca4b04 | 10013 | { |
978c4450 AM |
10014 | free (filedata->chains); |
10015 | filedata->chains = NULL; | |
10ca4b04 | 10016 | } |
978c4450 | 10017 | filedata->nbuckets = 0; |
10ca4b04 L |
10018 | } |
10019 | } | |
10020 | ||
978c4450 | 10021 | if (filedata->dynamic_info_DT_GNU_HASH) |
10ca4b04 L |
10022 | { |
10023 | unsigned char nb[16]; | |
10024 | bfd_vma i, maxchain = 0xffffffff, bitmaskwords; | |
10025 | bfd_vma buckets_vma; | |
10026 | unsigned long hn; | |
10027 | bfd_boolean gnu_hash_error = FALSE; | |
10028 | ||
10029 | if (fseek (filedata->handle, | |
978c4450 AM |
10030 | (filedata->archive_file_offset |
10031 | + offset_from_vma (filedata, | |
10032 | filedata->dynamic_info_DT_GNU_HASH, | |
10ca4b04 L |
10033 | sizeof nb)), |
10034 | SEEK_SET)) | |
10035 | { | |
10036 | error (_("Unable to seek to start of dynamic information\n")); | |
10037 | gnu_hash_error = TRUE; | |
10038 | goto no_gnu_hash; | |
10039 | } | |
10040 | ||
10041 | if (fread (nb, 16, 1, filedata->handle) != 1) | |
10042 | { | |
10043 | error (_("Failed to read in number of buckets\n")); | |
10044 | gnu_hash_error = TRUE; | |
10045 | goto no_gnu_hash; | |
10046 | } | |
10047 | ||
978c4450 AM |
10048 | filedata->ngnubuckets = byte_get (nb, 4); |
10049 | filedata->gnusymidx = byte_get (nb + 4, 4); | |
10ca4b04 | 10050 | bitmaskwords = byte_get (nb + 8, 4); |
978c4450 | 10051 | buckets_vma = filedata->dynamic_info_DT_GNU_HASH + 16; |
10ca4b04 L |
10052 | if (is_32bit_elf) |
10053 | buckets_vma += bitmaskwords * 4; | |
10054 | else | |
10055 | buckets_vma += bitmaskwords * 8; | |
10056 | ||
10057 | if (fseek (filedata->handle, | |
978c4450 | 10058 | (filedata->archive_file_offset |
10ca4b04 L |
10059 | + offset_from_vma (filedata, buckets_vma, 4)), |
10060 | SEEK_SET)) | |
10061 | { | |
10062 | error (_("Unable to seek to start of dynamic information\n")); | |
10063 | gnu_hash_error = TRUE; | |
10064 | goto no_gnu_hash; | |
10065 | } | |
10066 | ||
978c4450 AM |
10067 | filedata->gnubuckets |
10068 | = get_dynamic_data (filedata, filedata->ngnubuckets, 4); | |
10ca4b04 | 10069 | |
978c4450 | 10070 | if (filedata->gnubuckets == NULL) |
10ca4b04 L |
10071 | { |
10072 | gnu_hash_error = TRUE; | |
10073 | goto no_gnu_hash; | |
10074 | } | |
10075 | ||
978c4450 AM |
10076 | for (i = 0; i < filedata->ngnubuckets; i++) |
10077 | if (filedata->gnubuckets[i] != 0) | |
10ca4b04 | 10078 | { |
978c4450 | 10079 | if (filedata->gnubuckets[i] < filedata->gnusymidx) |
10ca4b04 L |
10080 | { |
10081 | gnu_hash_error = TRUE; | |
ceb9bf11 | 10082 | goto no_gnu_hash; |
10ca4b04 L |
10083 | } |
10084 | ||
978c4450 AM |
10085 | if (maxchain == 0xffffffff || filedata->gnubuckets[i] > maxchain) |
10086 | maxchain = filedata->gnubuckets[i]; | |
10ca4b04 L |
10087 | } |
10088 | ||
10089 | if (maxchain == 0xffffffff) | |
10090 | { | |
10091 | gnu_hash_error = TRUE; | |
10092 | goto no_gnu_hash; | |
10093 | } | |
10094 | ||
978c4450 | 10095 | maxchain -= filedata->gnusymidx; |
10ca4b04 L |
10096 | |
10097 | if (fseek (filedata->handle, | |
978c4450 AM |
10098 | (filedata->archive_file_offset |
10099 | + offset_from_vma (filedata, | |
10100 | buckets_vma + 4 * (filedata->ngnubuckets | |
10101 | + maxchain), | |
10102 | 4)), | |
10ca4b04 L |
10103 | SEEK_SET)) |
10104 | { | |
10105 | error (_("Unable to seek to start of dynamic information\n")); | |
10106 | gnu_hash_error = TRUE; | |
10107 | goto no_gnu_hash; | |
10108 | } | |
10109 | ||
10110 | do | |
10111 | { | |
10112 | if (fread (nb, 4, 1, filedata->handle) != 1) | |
10113 | { | |
10114 | error (_("Failed to determine last chain length\n")); | |
ceb9bf11 | 10115 | gnu_hash_error = TRUE; |
10ca4b04 L |
10116 | goto no_gnu_hash; |
10117 | } | |
10118 | ||
10119 | if (maxchain + 1 == 0) | |
10120 | { | |
10121 | gnu_hash_error = TRUE; | |
10122 | goto no_gnu_hash; | |
10123 | } | |
10124 | ||
10125 | ++maxchain; | |
10126 | } | |
10127 | while ((byte_get (nb, 4) & 1) == 0); | |
10128 | ||
10129 | if (fseek (filedata->handle, | |
978c4450 AM |
10130 | (filedata->archive_file_offset |
10131 | + offset_from_vma (filedata, (buckets_vma | |
10132 | + 4 * filedata->ngnubuckets), | |
10133 | 4)), | |
10ca4b04 L |
10134 | SEEK_SET)) |
10135 | { | |
10136 | error (_("Unable to seek to start of dynamic information\n")); | |
10137 | gnu_hash_error = TRUE; | |
10138 | goto no_gnu_hash; | |
10139 | } | |
10140 | ||
978c4450 AM |
10141 | filedata->gnuchains = get_dynamic_data (filedata, maxchain, 4); |
10142 | filedata->ngnuchains = maxchain; | |
10ca4b04 | 10143 | |
978c4450 | 10144 | if (filedata->gnuchains == NULL) |
10ca4b04 L |
10145 | { |
10146 | gnu_hash_error = TRUE; | |
10147 | goto no_gnu_hash; | |
10148 | } | |
10149 | ||
978c4450 | 10150 | if (filedata->dynamic_info_DT_MIPS_XHASH) |
10ca4b04 L |
10151 | { |
10152 | if (fseek (filedata->handle, | |
978c4450 | 10153 | (filedata->archive_file_offset |
10ca4b04 | 10154 | + offset_from_vma (filedata, (buckets_vma |
978c4450 | 10155 | + 4 * (filedata->ngnubuckets |
10ca4b04 L |
10156 | + maxchain)), 4)), |
10157 | SEEK_SET)) | |
10158 | { | |
10159 | error (_("Unable to seek to start of dynamic information\n")); | |
10160 | gnu_hash_error = TRUE; | |
10161 | goto no_gnu_hash; | |
10162 | } | |
10163 | ||
978c4450 | 10164 | filedata->mipsxlat = get_dynamic_data (filedata, maxchain, 4); |
10ca4b04 L |
10165 | } |
10166 | ||
978c4450 AM |
10167 | for (hn = 0; hn < filedata->ngnubuckets; ++hn) |
10168 | if (filedata->gnubuckets[hn] != 0) | |
10ca4b04 | 10169 | { |
978c4450 AM |
10170 | bfd_vma si = filedata->gnubuckets[hn]; |
10171 | bfd_vma off = si - filedata->gnusymidx; | |
10ca4b04 L |
10172 | |
10173 | do | |
10174 | { | |
978c4450 | 10175 | if (filedata->dynamic_info_DT_MIPS_XHASH) |
10ca4b04 | 10176 | { |
978c4450 AM |
10177 | if (filedata->mipsxlat[off] >= num_of_syms) |
10178 | num_of_syms = filedata->mipsxlat[off] + 1; | |
10ca4b04 L |
10179 | } |
10180 | else | |
10181 | { | |
10182 | if (si >= num_of_syms) | |
10183 | num_of_syms = si + 1; | |
10184 | } | |
10185 | si++; | |
10186 | } | |
978c4450 AM |
10187 | while (off < filedata->ngnuchains |
10188 | && (filedata->gnuchains[off++] & 1) == 0); | |
10ca4b04 L |
10189 | } |
10190 | ||
ceb9bf11 | 10191 | no_gnu_hash: |
10ca4b04 L |
10192 | if (gnu_hash_error) |
10193 | { | |
978c4450 | 10194 | if (filedata->mipsxlat) |
10ca4b04 | 10195 | { |
978c4450 AM |
10196 | free (filedata->mipsxlat); |
10197 | filedata->mipsxlat = NULL; | |
10ca4b04 | 10198 | } |
978c4450 | 10199 | if (filedata->gnuchains) |
10ca4b04 | 10200 | { |
978c4450 AM |
10201 | free (filedata->gnuchains); |
10202 | filedata->gnuchains = NULL; | |
10ca4b04 | 10203 | } |
978c4450 | 10204 | if (filedata->gnubuckets) |
10ca4b04 | 10205 | { |
978c4450 AM |
10206 | free (filedata->gnubuckets); |
10207 | filedata->gnubuckets = NULL; | |
10ca4b04 | 10208 | } |
978c4450 AM |
10209 | filedata->ngnubuckets = 0; |
10210 | filedata->ngnuchains = 0; | |
10ca4b04 L |
10211 | } |
10212 | } | |
10213 | ||
10214 | return num_of_syms; | |
10215 | } | |
10216 | ||
b2d38a17 NC |
10217 | /* Parse and display the contents of the dynamic section. */ |
10218 | ||
32ec8896 | 10219 | static bfd_boolean |
dda8d76d | 10220 | process_dynamic_section (Filedata * filedata) |
9ea033b2 | 10221 | { |
2cf0635d | 10222 | Elf_Internal_Dyn * entry; |
9ea033b2 | 10223 | |
978c4450 | 10224 | if (filedata->dynamic_size == 0) |
9ea033b2 NC |
10225 | { |
10226 | if (do_dynamic) | |
b2d38a17 | 10227 | printf (_("\nThere is no dynamic section in this file.\n")); |
9ea033b2 | 10228 | |
32ec8896 | 10229 | return TRUE; |
9ea033b2 NC |
10230 | } |
10231 | ||
10232 | if (is_32bit_elf) | |
10233 | { | |
dda8d76d | 10234 | if (! get_32bit_dynamic_section (filedata)) |
32ec8896 NC |
10235 | return FALSE; |
10236 | } | |
10237 | else | |
10238 | { | |
dda8d76d | 10239 | if (! get_64bit_dynamic_section (filedata)) |
32ec8896 | 10240 | return FALSE; |
9ea033b2 | 10241 | } |
9ea033b2 | 10242 | |
252b5132 | 10243 | /* Find the appropriate symbol table. */ |
978c4450 | 10244 | if (filedata->dynamic_symbols == NULL || do_histogram) |
252b5132 | 10245 | { |
978c4450 AM |
10246 | for (entry = filedata->dynamic_section; |
10247 | entry < filedata->dynamic_section + filedata->dynamic_nent; | |
86dba8ee | 10248 | ++entry) |
10ca4b04 | 10249 | if (entry->d_tag == DT_SYMTAB) |
978c4450 | 10250 | filedata->dynamic_info[DT_SYMTAB] = entry->d_un.d_val; |
10ca4b04 | 10251 | else if (entry->d_tag == DT_SYMENT) |
978c4450 | 10252 | filedata->dynamic_info[DT_SYMENT] = entry->d_un.d_val; |
10ca4b04 | 10253 | else if (entry->d_tag == DT_HASH) |
978c4450 | 10254 | filedata->dynamic_info[DT_HASH] = entry->d_un.d_val; |
10ca4b04 | 10255 | else if (entry->d_tag == DT_GNU_HASH) |
978c4450 | 10256 | filedata->dynamic_info_DT_GNU_HASH = entry->d_un.d_val; |
10ca4b04 L |
10257 | else if ((filedata->file_header.e_machine == EM_MIPS |
10258 | || filedata->file_header.e_machine == EM_MIPS_RS3_LE) | |
10259 | && entry->d_tag == DT_MIPS_XHASH) | |
10260 | { | |
978c4450 AM |
10261 | filedata->dynamic_info_DT_MIPS_XHASH = entry->d_un.d_val; |
10262 | filedata->dynamic_info_DT_GNU_HASH = entry->d_un.d_val; | |
10ca4b04 | 10263 | } |
252b5132 | 10264 | |
978c4450 AM |
10265 | if (filedata->dynamic_info[DT_SYMTAB] |
10266 | && filedata->dynamic_info[DT_SYMENT]) | |
10ca4b04 L |
10267 | { |
10268 | Elf_Internal_Phdr *seg; | |
978c4450 | 10269 | bfd_vma vma = filedata->dynamic_info[DT_SYMTAB]; |
252b5132 | 10270 | |
10ca4b04 L |
10271 | if (! get_program_headers (filedata)) |
10272 | { | |
10273 | error (_("Cannot interpret virtual addresses without program headers.\n")); | |
10274 | return FALSE; | |
10275 | } | |
252b5132 | 10276 | |
10ca4b04 L |
10277 | for (seg = filedata->program_headers; |
10278 | seg < filedata->program_headers + filedata->file_header.e_phnum; | |
10279 | ++seg) | |
10280 | { | |
10281 | unsigned long num_of_syms; | |
252b5132 | 10282 | |
10ca4b04 L |
10283 | if (seg->p_type != PT_LOAD) |
10284 | continue; | |
252b5132 | 10285 | |
10ca4b04 L |
10286 | if ((seg->p_offset + seg->p_filesz) |
10287 | > filedata->file_size) | |
10288 | { | |
10289 | /* See PR 21379 for a reproducer. */ | |
10290 | error (_("Invalid PT_LOAD entry\n")); | |
10291 | return FALSE; | |
10292 | } | |
252b5132 | 10293 | |
10ca4b04 L |
10294 | if (vma >= (seg->p_vaddr & -seg->p_align) |
10295 | && vma <= seg->p_vaddr + seg->p_filesz | |
ceb9bf11 | 10296 | && (num_of_syms = get_num_dynamic_syms (filedata)) != 0 |
978c4450 | 10297 | && filedata->dynamic_symbols == NULL) |
10ca4b04 L |
10298 | { |
10299 | /* Since we do not know how big the symbol table is, | |
10300 | we default to reading in up to the end of PT_LOAD | |
10301 | segment and processing that. This is overkill, I | |
10302 | know, but it should work. */ | |
10303 | Elf_Internal_Shdr section; | |
10304 | section.sh_offset = (vma - seg->p_vaddr | |
10305 | + seg->p_offset); | |
10306 | section.sh_size = (num_of_syms | |
978c4450 AM |
10307 | * filedata->dynamic_info[DT_SYMENT]); |
10308 | section.sh_entsize = filedata->dynamic_info[DT_SYMENT]; | |
10ca4b04 | 10309 | section.sh_name = filedata->string_table_length; |
978c4450 AM |
10310 | filedata->dynamic_symbols |
10311 | = GET_ELF_SYMBOLS (filedata, §ion, | |
10312 | &filedata->num_dynamic_syms); | |
10313 | if (filedata->dynamic_symbols == NULL | |
10314 | || filedata->num_dynamic_syms != num_of_syms) | |
10ca4b04 L |
10315 | { |
10316 | error (_("Corrupt DT_SYMTAB dynamic entry\n")); | |
10317 | return FALSE; | |
10318 | } | |
10319 | } | |
10320 | } | |
10321 | } | |
10322 | } | |
252b5132 RH |
10323 | |
10324 | /* Similarly find a string table. */ | |
978c4450 AM |
10325 | if (filedata->dynamic_strings == NULL) |
10326 | for (entry = filedata->dynamic_section; | |
10327 | entry < filedata->dynamic_section + filedata->dynamic_nent; | |
10ca4b04 L |
10328 | ++entry) |
10329 | { | |
10330 | if (entry->d_tag == DT_STRTAB) | |
978c4450 | 10331 | filedata->dynamic_info[DT_STRTAB] = entry->d_un.d_val; |
252b5132 | 10332 | |
10ca4b04 | 10333 | if (entry->d_tag == DT_STRSZ) |
978c4450 | 10334 | filedata->dynamic_info[DT_STRSZ] = entry->d_un.d_val; |
252b5132 | 10335 | |
978c4450 AM |
10336 | if (filedata->dynamic_info[DT_STRTAB] |
10337 | && filedata->dynamic_info[DT_STRSZ]) | |
10ca4b04 L |
10338 | { |
10339 | unsigned long offset; | |
978c4450 | 10340 | bfd_size_type str_tab_len = filedata->dynamic_info[DT_STRSZ]; |
10ca4b04 L |
10341 | |
10342 | offset = offset_from_vma (filedata, | |
978c4450 | 10343 | filedata->dynamic_info[DT_STRTAB], |
10ca4b04 | 10344 | str_tab_len); |
978c4450 AM |
10345 | filedata->dynamic_strings |
10346 | = (char *) get_data (NULL, filedata, offset, 1, str_tab_len, | |
10347 | _("dynamic string table")); | |
10348 | if (filedata->dynamic_strings == NULL) | |
10ca4b04 L |
10349 | { |
10350 | error (_("Corrupt DT_STRTAB dynamic entry\n")); | |
10351 | break; | |
10352 | } | |
e3d39609 | 10353 | |
978c4450 | 10354 | filedata->dynamic_strings_length = str_tab_len; |
10ca4b04 L |
10355 | break; |
10356 | } | |
10357 | } | |
252b5132 RH |
10358 | |
10359 | /* And find the syminfo section if available. */ | |
978c4450 | 10360 | if (filedata->dynamic_syminfo == NULL) |
252b5132 | 10361 | { |
3e8bba36 | 10362 | unsigned long syminsz = 0; |
252b5132 | 10363 | |
978c4450 AM |
10364 | for (entry = filedata->dynamic_section; |
10365 | entry < filedata->dynamic_section + filedata->dynamic_nent; | |
86dba8ee | 10366 | ++entry) |
252b5132 RH |
10367 | { |
10368 | if (entry->d_tag == DT_SYMINENT) | |
10369 | { | |
10370 | /* Note: these braces are necessary to avoid a syntax | |
10371 | error from the SunOS4 C compiler. */ | |
049b0c3a NC |
10372 | /* PR binutils/17531: A corrupt file can trigger this test. |
10373 | So do not use an assert, instead generate an error message. */ | |
10374 | if (sizeof (Elf_External_Syminfo) != entry->d_un.d_val) | |
071436c6 | 10375 | error (_("Bad value (%d) for SYMINENT entry\n"), |
049b0c3a | 10376 | (int) entry->d_un.d_val); |
252b5132 RH |
10377 | } |
10378 | else if (entry->d_tag == DT_SYMINSZ) | |
10379 | syminsz = entry->d_un.d_val; | |
10380 | else if (entry->d_tag == DT_SYMINFO) | |
978c4450 AM |
10381 | filedata->dynamic_syminfo_offset |
10382 | = offset_from_vma (filedata, entry->d_un.d_val, syminsz); | |
252b5132 RH |
10383 | } |
10384 | ||
978c4450 | 10385 | if (filedata->dynamic_syminfo_offset != 0 && syminsz != 0) |
252b5132 | 10386 | { |
2cf0635d NC |
10387 | Elf_External_Syminfo * extsyminfo; |
10388 | Elf_External_Syminfo * extsym; | |
10389 | Elf_Internal_Syminfo * syminfo; | |
252b5132 RH |
10390 | |
10391 | /* There is a syminfo section. Read the data. */ | |
3f5e193b | 10392 | extsyminfo = (Elf_External_Syminfo *) |
978c4450 AM |
10393 | get_data (NULL, filedata, filedata->dynamic_syminfo_offset, |
10394 | 1, syminsz, _("symbol information")); | |
a6e9f9df | 10395 | if (!extsyminfo) |
32ec8896 | 10396 | return FALSE; |
252b5132 | 10397 | |
978c4450 | 10398 | if (filedata->dynamic_syminfo != NULL) |
e3d39609 NC |
10399 | { |
10400 | error (_("Multiple dynamic symbol information sections found\n")); | |
978c4450 | 10401 | free (filedata->dynamic_syminfo); |
e3d39609 | 10402 | } |
978c4450 AM |
10403 | filedata->dynamic_syminfo = (Elf_Internal_Syminfo *) malloc (syminsz); |
10404 | if (filedata->dynamic_syminfo == NULL) | |
252b5132 | 10405 | { |
8b73c356 NC |
10406 | error (_("Out of memory allocating %lu byte for dynamic symbol info\n"), |
10407 | (unsigned long) syminsz); | |
32ec8896 | 10408 | return FALSE; |
252b5132 RH |
10409 | } |
10410 | ||
978c4450 AM |
10411 | filedata->dynamic_syminfo_nent = syminsz / sizeof (Elf_External_Syminfo); |
10412 | for (syminfo = filedata->dynamic_syminfo, extsym = extsyminfo; | |
10413 | syminfo < filedata->dynamic_syminfo + filedata->dynamic_syminfo_nent; | |
86dba8ee | 10414 | ++syminfo, ++extsym) |
252b5132 | 10415 | { |
86dba8ee AM |
10416 | syminfo->si_boundto = BYTE_GET (extsym->si_boundto); |
10417 | syminfo->si_flags = BYTE_GET (extsym->si_flags); | |
252b5132 RH |
10418 | } |
10419 | ||
10420 | free (extsyminfo); | |
10421 | } | |
10422 | } | |
10423 | ||
978c4450 | 10424 | if (do_dynamic && filedata->dynamic_addr) |
d3a49aa8 AM |
10425 | printf (ngettext ("\nDynamic section at offset 0x%lx " |
10426 | "contains %lu entry:\n", | |
10427 | "\nDynamic section at offset 0x%lx " | |
10428 | "contains %lu entries:\n", | |
978c4450 AM |
10429 | filedata->dynamic_nent), |
10430 | filedata->dynamic_addr, (unsigned long) filedata->dynamic_nent); | |
252b5132 RH |
10431 | if (do_dynamic) |
10432 | printf (_(" Tag Type Name/Value\n")); | |
10433 | ||
978c4450 AM |
10434 | for (entry = filedata->dynamic_section; |
10435 | entry < filedata->dynamic_section + filedata->dynamic_nent; | |
86dba8ee | 10436 | entry++) |
252b5132 RH |
10437 | { |
10438 | if (do_dynamic) | |
f7a99963 | 10439 | { |
2cf0635d | 10440 | const char * dtype; |
e699b9ff | 10441 | |
f7a99963 NC |
10442 | putchar (' '); |
10443 | print_vma (entry->d_tag, FULL_HEX); | |
dda8d76d | 10444 | dtype = get_dynamic_type (filedata, entry->d_tag); |
e699b9ff | 10445 | printf (" (%s)%*s", dtype, |
32ec8896 | 10446 | ((is_32bit_elf ? 27 : 19) - (int) strlen (dtype)), " "); |
f7a99963 | 10447 | } |
252b5132 RH |
10448 | |
10449 | switch (entry->d_tag) | |
10450 | { | |
d1133906 NC |
10451 | case DT_FLAGS: |
10452 | if (do_dynamic) | |
e9e44622 | 10453 | print_dynamic_flags (entry->d_un.d_val); |
d1133906 | 10454 | break; |
76da6bbe | 10455 | |
252b5132 RH |
10456 | case DT_AUXILIARY: |
10457 | case DT_FILTER: | |
019148e4 L |
10458 | case DT_CONFIG: |
10459 | case DT_DEPAUDIT: | |
10460 | case DT_AUDIT: | |
252b5132 RH |
10461 | if (do_dynamic) |
10462 | { | |
019148e4 | 10463 | switch (entry->d_tag) |
b34976b6 | 10464 | { |
019148e4 L |
10465 | case DT_AUXILIARY: |
10466 | printf (_("Auxiliary library")); | |
10467 | break; | |
10468 | ||
10469 | case DT_FILTER: | |
10470 | printf (_("Filter library")); | |
10471 | break; | |
10472 | ||
b34976b6 | 10473 | case DT_CONFIG: |
019148e4 L |
10474 | printf (_("Configuration file")); |
10475 | break; | |
10476 | ||
10477 | case DT_DEPAUDIT: | |
10478 | printf (_("Dependency audit library")); | |
10479 | break; | |
10480 | ||
10481 | case DT_AUDIT: | |
10482 | printf (_("Audit library")); | |
10483 | break; | |
10484 | } | |
252b5132 | 10485 | |
978c4450 AM |
10486 | if (VALID_DYNAMIC_NAME (filedata, entry->d_un.d_val)) |
10487 | printf (": [%s]\n", | |
10488 | GET_DYNAMIC_NAME (filedata, entry->d_un.d_val)); | |
252b5132 | 10489 | else |
f7a99963 NC |
10490 | { |
10491 | printf (": "); | |
10492 | print_vma (entry->d_un.d_val, PREFIX_HEX); | |
10493 | putchar ('\n'); | |
10494 | } | |
252b5132 RH |
10495 | } |
10496 | break; | |
10497 | ||
dcefbbbd | 10498 | case DT_FEATURE: |
252b5132 RH |
10499 | if (do_dynamic) |
10500 | { | |
10501 | printf (_("Flags:")); | |
86f55779 | 10502 | |
252b5132 RH |
10503 | if (entry->d_un.d_val == 0) |
10504 | printf (_(" None\n")); | |
10505 | else | |
10506 | { | |
10507 | unsigned long int val = entry->d_un.d_val; | |
86f55779 | 10508 | |
252b5132 RH |
10509 | if (val & DTF_1_PARINIT) |
10510 | { | |
10511 | printf (" PARINIT"); | |
10512 | val ^= DTF_1_PARINIT; | |
10513 | } | |
dcefbbbd L |
10514 | if (val & DTF_1_CONFEXP) |
10515 | { | |
10516 | printf (" CONFEXP"); | |
10517 | val ^= DTF_1_CONFEXP; | |
10518 | } | |
252b5132 RH |
10519 | if (val != 0) |
10520 | printf (" %lx", val); | |
10521 | puts (""); | |
10522 | } | |
10523 | } | |
10524 | break; | |
10525 | ||
10526 | case DT_POSFLAG_1: | |
10527 | if (do_dynamic) | |
10528 | { | |
10529 | printf (_("Flags:")); | |
86f55779 | 10530 | |
252b5132 RH |
10531 | if (entry->d_un.d_val == 0) |
10532 | printf (_(" None\n")); | |
10533 | else | |
10534 | { | |
10535 | unsigned long int val = entry->d_un.d_val; | |
86f55779 | 10536 | |
252b5132 RH |
10537 | if (val & DF_P1_LAZYLOAD) |
10538 | { | |
10539 | printf (" LAZYLOAD"); | |
10540 | val ^= DF_P1_LAZYLOAD; | |
10541 | } | |
10542 | if (val & DF_P1_GROUPPERM) | |
10543 | { | |
10544 | printf (" GROUPPERM"); | |
10545 | val ^= DF_P1_GROUPPERM; | |
10546 | } | |
10547 | if (val != 0) | |
10548 | printf (" %lx", val); | |
10549 | puts (""); | |
10550 | } | |
10551 | } | |
10552 | break; | |
10553 | ||
10554 | case DT_FLAGS_1: | |
10555 | if (do_dynamic) | |
10556 | { | |
10557 | printf (_("Flags:")); | |
10558 | if (entry->d_un.d_val == 0) | |
10559 | printf (_(" None\n")); | |
10560 | else | |
10561 | { | |
10562 | unsigned long int val = entry->d_un.d_val; | |
86f55779 | 10563 | |
252b5132 RH |
10564 | if (val & DF_1_NOW) |
10565 | { | |
10566 | printf (" NOW"); | |
10567 | val ^= DF_1_NOW; | |
10568 | } | |
10569 | if (val & DF_1_GLOBAL) | |
10570 | { | |
10571 | printf (" GLOBAL"); | |
10572 | val ^= DF_1_GLOBAL; | |
10573 | } | |
10574 | if (val & DF_1_GROUP) | |
10575 | { | |
10576 | printf (" GROUP"); | |
10577 | val ^= DF_1_GROUP; | |
10578 | } | |
10579 | if (val & DF_1_NODELETE) | |
10580 | { | |
10581 | printf (" NODELETE"); | |
10582 | val ^= DF_1_NODELETE; | |
10583 | } | |
10584 | if (val & DF_1_LOADFLTR) | |
10585 | { | |
10586 | printf (" LOADFLTR"); | |
10587 | val ^= DF_1_LOADFLTR; | |
10588 | } | |
10589 | if (val & DF_1_INITFIRST) | |
10590 | { | |
10591 | printf (" INITFIRST"); | |
10592 | val ^= DF_1_INITFIRST; | |
10593 | } | |
10594 | if (val & DF_1_NOOPEN) | |
10595 | { | |
10596 | printf (" NOOPEN"); | |
10597 | val ^= DF_1_NOOPEN; | |
10598 | } | |
10599 | if (val & DF_1_ORIGIN) | |
10600 | { | |
10601 | printf (" ORIGIN"); | |
10602 | val ^= DF_1_ORIGIN; | |
10603 | } | |
10604 | if (val & DF_1_DIRECT) | |
10605 | { | |
10606 | printf (" DIRECT"); | |
10607 | val ^= DF_1_DIRECT; | |
10608 | } | |
10609 | if (val & DF_1_TRANS) | |
10610 | { | |
10611 | printf (" TRANS"); | |
10612 | val ^= DF_1_TRANS; | |
10613 | } | |
10614 | if (val & DF_1_INTERPOSE) | |
10615 | { | |
10616 | printf (" INTERPOSE"); | |
10617 | val ^= DF_1_INTERPOSE; | |
10618 | } | |
f7db6139 | 10619 | if (val & DF_1_NODEFLIB) |
dcefbbbd | 10620 | { |
f7db6139 L |
10621 | printf (" NODEFLIB"); |
10622 | val ^= DF_1_NODEFLIB; | |
dcefbbbd L |
10623 | } |
10624 | if (val & DF_1_NODUMP) | |
10625 | { | |
10626 | printf (" NODUMP"); | |
10627 | val ^= DF_1_NODUMP; | |
10628 | } | |
34b60028 | 10629 | if (val & DF_1_CONFALT) |
dcefbbbd | 10630 | { |
34b60028 L |
10631 | printf (" CONFALT"); |
10632 | val ^= DF_1_CONFALT; | |
10633 | } | |
10634 | if (val & DF_1_ENDFILTEE) | |
10635 | { | |
10636 | printf (" ENDFILTEE"); | |
10637 | val ^= DF_1_ENDFILTEE; | |
10638 | } | |
10639 | if (val & DF_1_DISPRELDNE) | |
10640 | { | |
10641 | printf (" DISPRELDNE"); | |
10642 | val ^= DF_1_DISPRELDNE; | |
10643 | } | |
10644 | if (val & DF_1_DISPRELPND) | |
10645 | { | |
10646 | printf (" DISPRELPND"); | |
10647 | val ^= DF_1_DISPRELPND; | |
10648 | } | |
10649 | if (val & DF_1_NODIRECT) | |
10650 | { | |
10651 | printf (" NODIRECT"); | |
10652 | val ^= DF_1_NODIRECT; | |
10653 | } | |
10654 | if (val & DF_1_IGNMULDEF) | |
10655 | { | |
10656 | printf (" IGNMULDEF"); | |
10657 | val ^= DF_1_IGNMULDEF; | |
10658 | } | |
10659 | if (val & DF_1_NOKSYMS) | |
10660 | { | |
10661 | printf (" NOKSYMS"); | |
10662 | val ^= DF_1_NOKSYMS; | |
10663 | } | |
10664 | if (val & DF_1_NOHDR) | |
10665 | { | |
10666 | printf (" NOHDR"); | |
10667 | val ^= DF_1_NOHDR; | |
10668 | } | |
10669 | if (val & DF_1_EDITED) | |
10670 | { | |
10671 | printf (" EDITED"); | |
10672 | val ^= DF_1_EDITED; | |
10673 | } | |
10674 | if (val & DF_1_NORELOC) | |
10675 | { | |
10676 | printf (" NORELOC"); | |
10677 | val ^= DF_1_NORELOC; | |
10678 | } | |
10679 | if (val & DF_1_SYMINTPOSE) | |
10680 | { | |
10681 | printf (" SYMINTPOSE"); | |
10682 | val ^= DF_1_SYMINTPOSE; | |
10683 | } | |
10684 | if (val & DF_1_GLOBAUDIT) | |
10685 | { | |
10686 | printf (" GLOBAUDIT"); | |
10687 | val ^= DF_1_GLOBAUDIT; | |
10688 | } | |
10689 | if (val & DF_1_SINGLETON) | |
10690 | { | |
10691 | printf (" SINGLETON"); | |
10692 | val ^= DF_1_SINGLETON; | |
dcefbbbd | 10693 | } |
5c383f02 RO |
10694 | if (val & DF_1_STUB) |
10695 | { | |
10696 | printf (" STUB"); | |
10697 | val ^= DF_1_STUB; | |
10698 | } | |
10699 | if (val & DF_1_PIE) | |
10700 | { | |
10701 | printf (" PIE"); | |
10702 | val ^= DF_1_PIE; | |
10703 | } | |
b1202ffa L |
10704 | if (val & DF_1_KMOD) |
10705 | { | |
10706 | printf (" KMOD"); | |
10707 | val ^= DF_1_KMOD; | |
10708 | } | |
10709 | if (val & DF_1_WEAKFILTER) | |
10710 | { | |
10711 | printf (" WEAKFILTER"); | |
10712 | val ^= DF_1_WEAKFILTER; | |
10713 | } | |
10714 | if (val & DF_1_NOCOMMON) | |
10715 | { | |
10716 | printf (" NOCOMMON"); | |
10717 | val ^= DF_1_NOCOMMON; | |
10718 | } | |
252b5132 RH |
10719 | if (val != 0) |
10720 | printf (" %lx", val); | |
10721 | puts (""); | |
10722 | } | |
10723 | } | |
10724 | break; | |
10725 | ||
10726 | case DT_PLTREL: | |
978c4450 | 10727 | filedata->dynamic_info[entry->d_tag] = entry->d_un.d_val; |
252b5132 | 10728 | if (do_dynamic) |
dda8d76d | 10729 | puts (get_dynamic_type (filedata, entry->d_un.d_val)); |
252b5132 RH |
10730 | break; |
10731 | ||
10732 | case DT_NULL : | |
10733 | case DT_NEEDED : | |
10734 | case DT_PLTGOT : | |
10735 | case DT_HASH : | |
10736 | case DT_STRTAB : | |
10737 | case DT_SYMTAB : | |
10738 | case DT_RELA : | |
10739 | case DT_INIT : | |
10740 | case DT_FINI : | |
10741 | case DT_SONAME : | |
10742 | case DT_RPATH : | |
10743 | case DT_SYMBOLIC: | |
10744 | case DT_REL : | |
10745 | case DT_DEBUG : | |
10746 | case DT_TEXTREL : | |
10747 | case DT_JMPREL : | |
019148e4 | 10748 | case DT_RUNPATH : |
978c4450 | 10749 | filedata->dynamic_info[entry->d_tag] = entry->d_un.d_val; |
252b5132 RH |
10750 | |
10751 | if (do_dynamic) | |
10752 | { | |
2cf0635d | 10753 | char * name; |
252b5132 | 10754 | |
978c4450 AM |
10755 | if (VALID_DYNAMIC_NAME (filedata, entry->d_un.d_val)) |
10756 | name = GET_DYNAMIC_NAME (filedata, entry->d_un.d_val); | |
252b5132 | 10757 | else |
d79b3d50 | 10758 | name = NULL; |
252b5132 RH |
10759 | |
10760 | if (name) | |
10761 | { | |
10762 | switch (entry->d_tag) | |
10763 | { | |
10764 | case DT_NEEDED: | |
10765 | printf (_("Shared library: [%s]"), name); | |
10766 | ||
978c4450 | 10767 | if (streq (name, filedata->program_interpreter)) |
f7a99963 | 10768 | printf (_(" program interpreter")); |
252b5132 RH |
10769 | break; |
10770 | ||
10771 | case DT_SONAME: | |
f7a99963 | 10772 | printf (_("Library soname: [%s]"), name); |
252b5132 RH |
10773 | break; |
10774 | ||
10775 | case DT_RPATH: | |
f7a99963 | 10776 | printf (_("Library rpath: [%s]"), name); |
252b5132 RH |
10777 | break; |
10778 | ||
019148e4 L |
10779 | case DT_RUNPATH: |
10780 | printf (_("Library runpath: [%s]"), name); | |
10781 | break; | |
10782 | ||
252b5132 | 10783 | default: |
f7a99963 NC |
10784 | print_vma (entry->d_un.d_val, PREFIX_HEX); |
10785 | break; | |
252b5132 RH |
10786 | } |
10787 | } | |
10788 | else | |
f7a99963 NC |
10789 | print_vma (entry->d_un.d_val, PREFIX_HEX); |
10790 | ||
10791 | putchar ('\n'); | |
252b5132 RH |
10792 | } |
10793 | break; | |
10794 | ||
10795 | case DT_PLTRELSZ: | |
10796 | case DT_RELASZ : | |
10797 | case DT_STRSZ : | |
10798 | case DT_RELSZ : | |
10799 | case DT_RELAENT : | |
10800 | case DT_SYMENT : | |
10801 | case DT_RELENT : | |
978c4450 | 10802 | filedata->dynamic_info[entry->d_tag] = entry->d_un.d_val; |
1a0670f3 | 10803 | /* Fall through. */ |
252b5132 RH |
10804 | case DT_PLTPADSZ: |
10805 | case DT_MOVEENT : | |
10806 | case DT_MOVESZ : | |
10807 | case DT_INIT_ARRAYSZ: | |
10808 | case DT_FINI_ARRAYSZ: | |
047b2264 JJ |
10809 | case DT_GNU_CONFLICTSZ: |
10810 | case DT_GNU_LIBLISTSZ: | |
252b5132 | 10811 | if (do_dynamic) |
f7a99963 NC |
10812 | { |
10813 | print_vma (entry->d_un.d_val, UNSIGNED); | |
2b692964 | 10814 | printf (_(" (bytes)\n")); |
f7a99963 | 10815 | } |
252b5132 RH |
10816 | break; |
10817 | ||
10818 | case DT_VERDEFNUM: | |
10819 | case DT_VERNEEDNUM: | |
10820 | case DT_RELACOUNT: | |
10821 | case DT_RELCOUNT: | |
10822 | if (do_dynamic) | |
f7a99963 NC |
10823 | { |
10824 | print_vma (entry->d_un.d_val, UNSIGNED); | |
10825 | putchar ('\n'); | |
10826 | } | |
252b5132 RH |
10827 | break; |
10828 | ||
10829 | case DT_SYMINSZ: | |
10830 | case DT_SYMINENT: | |
10831 | case DT_SYMINFO: | |
10832 | case DT_USED: | |
10833 | case DT_INIT_ARRAY: | |
10834 | case DT_FINI_ARRAY: | |
10835 | if (do_dynamic) | |
10836 | { | |
d79b3d50 | 10837 | if (entry->d_tag == DT_USED |
978c4450 | 10838 | && VALID_DYNAMIC_NAME (filedata, entry->d_un.d_val)) |
252b5132 | 10839 | { |
978c4450 | 10840 | char * name = GET_DYNAMIC_NAME (filedata, entry->d_un.d_val); |
252b5132 | 10841 | |
b34976b6 | 10842 | if (*name) |
252b5132 RH |
10843 | { |
10844 | printf (_("Not needed object: [%s]\n"), name); | |
10845 | break; | |
10846 | } | |
10847 | } | |
103f02d3 | 10848 | |
f7a99963 NC |
10849 | print_vma (entry->d_un.d_val, PREFIX_HEX); |
10850 | putchar ('\n'); | |
252b5132 RH |
10851 | } |
10852 | break; | |
10853 | ||
10854 | case DT_BIND_NOW: | |
10855 | /* The value of this entry is ignored. */ | |
35b1837e AM |
10856 | if (do_dynamic) |
10857 | putchar ('\n'); | |
252b5132 | 10858 | break; |
103f02d3 | 10859 | |
047b2264 JJ |
10860 | case DT_GNU_PRELINKED: |
10861 | if (do_dynamic) | |
10862 | { | |
2cf0635d | 10863 | struct tm * tmp; |
91d6fa6a | 10864 | time_t atime = entry->d_un.d_val; |
047b2264 | 10865 | |
91d6fa6a | 10866 | tmp = gmtime (&atime); |
071436c6 NC |
10867 | /* PR 17533 file: 041-1244816-0.004. */ |
10868 | if (tmp == NULL) | |
5a2cbcf4 L |
10869 | printf (_("<corrupt time val: %lx"), |
10870 | (unsigned long) atime); | |
071436c6 NC |
10871 | else |
10872 | printf ("%04u-%02u-%02uT%02u:%02u:%02u\n", | |
10873 | tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday, | |
10874 | tmp->tm_hour, tmp->tm_min, tmp->tm_sec); | |
047b2264 JJ |
10875 | |
10876 | } | |
10877 | break; | |
10878 | ||
fdc90cb4 | 10879 | case DT_GNU_HASH: |
978c4450 | 10880 | filedata->dynamic_info_DT_GNU_HASH = entry->d_un.d_val; |
fdc90cb4 JJ |
10881 | if (do_dynamic) |
10882 | { | |
10883 | print_vma (entry->d_un.d_val, PREFIX_HEX); | |
10884 | putchar ('\n'); | |
10885 | } | |
10886 | break; | |
10887 | ||
252b5132 RH |
10888 | default: |
10889 | if ((entry->d_tag >= DT_VERSYM) && (entry->d_tag <= DT_VERNEEDNUM)) | |
978c4450 AM |
10890 | filedata->version_info[DT_VERSIONTAGIDX (entry->d_tag)] |
10891 | = entry->d_un.d_val; | |
252b5132 RH |
10892 | |
10893 | if (do_dynamic) | |
10894 | { | |
dda8d76d | 10895 | switch (filedata->file_header.e_machine) |
252b5132 | 10896 | { |
37c18eed SD |
10897 | case EM_AARCH64: |
10898 | dynamic_section_aarch64_val (entry); | |
10899 | break; | |
252b5132 | 10900 | case EM_MIPS: |
4fe85591 | 10901 | case EM_MIPS_RS3_LE: |
978c4450 | 10902 | dynamic_section_mips_val (filedata, entry); |
252b5132 | 10903 | break; |
103f02d3 | 10904 | case EM_PARISC: |
b2d38a17 | 10905 | dynamic_section_parisc_val (entry); |
103f02d3 | 10906 | break; |
ecc51f48 | 10907 | case EM_IA_64: |
b2d38a17 | 10908 | dynamic_section_ia64_val (entry); |
ecc51f48 | 10909 | break; |
252b5132 | 10910 | default: |
f7a99963 NC |
10911 | print_vma (entry->d_un.d_val, PREFIX_HEX); |
10912 | putchar ('\n'); | |
252b5132 RH |
10913 | } |
10914 | } | |
10915 | break; | |
10916 | } | |
10917 | } | |
10918 | ||
32ec8896 | 10919 | return TRUE; |
252b5132 RH |
10920 | } |
10921 | ||
10922 | static char * | |
d3ba0551 | 10923 | get_ver_flags (unsigned int flags) |
252b5132 | 10924 | { |
6d4f21f6 | 10925 | static char buff[128]; |
252b5132 RH |
10926 | |
10927 | buff[0] = 0; | |
10928 | ||
10929 | if (flags == 0) | |
10930 | return _("none"); | |
10931 | ||
10932 | if (flags & VER_FLG_BASE) | |
7bb1ad17 | 10933 | strcat (buff, "BASE"); |
252b5132 RH |
10934 | |
10935 | if (flags & VER_FLG_WEAK) | |
10936 | { | |
10937 | if (flags & VER_FLG_BASE) | |
7bb1ad17 | 10938 | strcat (buff, " | "); |
252b5132 | 10939 | |
7bb1ad17 | 10940 | strcat (buff, "WEAK"); |
252b5132 RH |
10941 | } |
10942 | ||
44ec90b9 RO |
10943 | if (flags & VER_FLG_INFO) |
10944 | { | |
10945 | if (flags & (VER_FLG_BASE|VER_FLG_WEAK)) | |
7bb1ad17 | 10946 | strcat (buff, " | "); |
44ec90b9 | 10947 | |
7bb1ad17 | 10948 | strcat (buff, "INFO"); |
44ec90b9 RO |
10949 | } |
10950 | ||
10951 | if (flags & ~(VER_FLG_BASE | VER_FLG_WEAK | VER_FLG_INFO)) | |
7bb1ad17 MR |
10952 | { |
10953 | if (flags & (VER_FLG_BASE | VER_FLG_WEAK | VER_FLG_INFO)) | |
10954 | strcat (buff, " | "); | |
10955 | ||
10956 | strcat (buff, _("<unknown>")); | |
10957 | } | |
252b5132 RH |
10958 | |
10959 | return buff; | |
10960 | } | |
10961 | ||
10962 | /* Display the contents of the version sections. */ | |
98fb390a | 10963 | |
32ec8896 | 10964 | static bfd_boolean |
dda8d76d | 10965 | process_version_sections (Filedata * filedata) |
252b5132 | 10966 | { |
2cf0635d | 10967 | Elf_Internal_Shdr * section; |
b34976b6 | 10968 | unsigned i; |
32ec8896 | 10969 | bfd_boolean found = FALSE; |
252b5132 RH |
10970 | |
10971 | if (! do_version) | |
32ec8896 | 10972 | return TRUE; |
252b5132 | 10973 | |
dda8d76d NC |
10974 | for (i = 0, section = filedata->section_headers; |
10975 | i < filedata->file_header.e_shnum; | |
b34976b6 | 10976 | i++, section++) |
252b5132 RH |
10977 | { |
10978 | switch (section->sh_type) | |
10979 | { | |
10980 | case SHT_GNU_verdef: | |
10981 | { | |
2cf0635d | 10982 | Elf_External_Verdef * edefs; |
452bf675 AM |
10983 | unsigned long idx; |
10984 | unsigned long cnt; | |
2cf0635d | 10985 | char * endbuf; |
252b5132 | 10986 | |
32ec8896 | 10987 | found = TRUE; |
252b5132 | 10988 | |
d3a49aa8 AM |
10989 | printf (ngettext ("\nVersion definition section '%s' " |
10990 | "contains %u entry:\n", | |
10991 | "\nVersion definition section '%s' " | |
10992 | "contains %u entries:\n", | |
10993 | section->sh_info), | |
dda8d76d | 10994 | printable_section_name (filedata, section), |
74e1a04b | 10995 | section->sh_info); |
252b5132 | 10996 | |
ae9ac79e | 10997 | printf (_(" Addr: 0x")); |
252b5132 | 10998 | printf_vma (section->sh_addr); |
233f82cf | 10999 | printf (_(" Offset: %#08lx Link: %u (%s)\n"), |
1b228002 | 11000 | (unsigned long) section->sh_offset, section->sh_link, |
dda8d76d | 11001 | printable_section_name_from_index (filedata, section->sh_link)); |
252b5132 | 11002 | |
3f5e193b | 11003 | edefs = (Elf_External_Verdef *) |
dda8d76d | 11004 | get_data (NULL, filedata, section->sh_offset, 1,section->sh_size, |
3f5e193b | 11005 | _("version definition section")); |
a6e9f9df AM |
11006 | if (!edefs) |
11007 | break; | |
59245841 | 11008 | endbuf = (char *) edefs + section->sh_size; |
252b5132 | 11009 | |
1445030f | 11010 | for (idx = cnt = 0; cnt < section->sh_info; ++cnt) |
252b5132 | 11011 | { |
2cf0635d NC |
11012 | char * vstart; |
11013 | Elf_External_Verdef * edef; | |
b34976b6 | 11014 | Elf_Internal_Verdef ent; |
2cf0635d | 11015 | Elf_External_Verdaux * eaux; |
b34976b6 | 11016 | Elf_Internal_Verdaux aux; |
452bf675 | 11017 | unsigned long isum; |
b34976b6 | 11018 | int j; |
103f02d3 | 11019 | |
252b5132 | 11020 | vstart = ((char *) edefs) + idx; |
54806181 AM |
11021 | if (vstart + sizeof (*edef) > endbuf) |
11022 | break; | |
252b5132 RH |
11023 | |
11024 | edef = (Elf_External_Verdef *) vstart; | |
11025 | ||
11026 | ent.vd_version = BYTE_GET (edef->vd_version); | |
11027 | ent.vd_flags = BYTE_GET (edef->vd_flags); | |
11028 | ent.vd_ndx = BYTE_GET (edef->vd_ndx); | |
11029 | ent.vd_cnt = BYTE_GET (edef->vd_cnt); | |
11030 | ent.vd_hash = BYTE_GET (edef->vd_hash); | |
11031 | ent.vd_aux = BYTE_GET (edef->vd_aux); | |
11032 | ent.vd_next = BYTE_GET (edef->vd_next); | |
11033 | ||
452bf675 | 11034 | printf (_(" %#06lx: Rev: %d Flags: %s"), |
252b5132 RH |
11035 | idx, ent.vd_version, get_ver_flags (ent.vd_flags)); |
11036 | ||
11037 | printf (_(" Index: %d Cnt: %d "), | |
11038 | ent.vd_ndx, ent.vd_cnt); | |
11039 | ||
452bf675 | 11040 | /* Check for overflow. */ |
1445030f | 11041 | if (ent.vd_aux > (size_t) (endbuf - vstart)) |
dd24e3da NC |
11042 | break; |
11043 | ||
252b5132 RH |
11044 | vstart += ent.vd_aux; |
11045 | ||
1445030f AM |
11046 | if (vstart + sizeof (*eaux) > endbuf) |
11047 | break; | |
252b5132 RH |
11048 | eaux = (Elf_External_Verdaux *) vstart; |
11049 | ||
11050 | aux.vda_name = BYTE_GET (eaux->vda_name); | |
11051 | aux.vda_next = BYTE_GET (eaux->vda_next); | |
11052 | ||
978c4450 AM |
11053 | if (VALID_DYNAMIC_NAME (filedata, aux.vda_name)) |
11054 | printf (_("Name: %s\n"), | |
11055 | GET_DYNAMIC_NAME (filedata, aux.vda_name)); | |
252b5132 RH |
11056 | else |
11057 | printf (_("Name index: %ld\n"), aux.vda_name); | |
11058 | ||
11059 | isum = idx + ent.vd_aux; | |
11060 | ||
b34976b6 | 11061 | for (j = 1; j < ent.vd_cnt; j++) |
252b5132 | 11062 | { |
1445030f AM |
11063 | if (aux.vda_next < sizeof (*eaux) |
11064 | && !(j == ent.vd_cnt - 1 && aux.vda_next == 0)) | |
11065 | { | |
11066 | warn (_("Invalid vda_next field of %lx\n"), | |
11067 | aux.vda_next); | |
11068 | j = ent.vd_cnt; | |
11069 | break; | |
11070 | } | |
dd24e3da | 11071 | /* Check for overflow. */ |
7e26601c | 11072 | if (aux.vda_next > (size_t) (endbuf - vstart)) |
dd24e3da NC |
11073 | break; |
11074 | ||
252b5132 RH |
11075 | isum += aux.vda_next; |
11076 | vstart += aux.vda_next; | |
11077 | ||
54806181 AM |
11078 | if (vstart + sizeof (*eaux) > endbuf) |
11079 | break; | |
1445030f | 11080 | eaux = (Elf_External_Verdaux *) vstart; |
252b5132 RH |
11081 | |
11082 | aux.vda_name = BYTE_GET (eaux->vda_name); | |
11083 | aux.vda_next = BYTE_GET (eaux->vda_next); | |
11084 | ||
978c4450 | 11085 | if (VALID_DYNAMIC_NAME (filedata, aux.vda_name)) |
452bf675 | 11086 | printf (_(" %#06lx: Parent %d: %s\n"), |
978c4450 AM |
11087 | isum, j, |
11088 | GET_DYNAMIC_NAME (filedata, aux.vda_name)); | |
252b5132 | 11089 | else |
452bf675 | 11090 | printf (_(" %#06lx: Parent %d, name index: %ld\n"), |
252b5132 RH |
11091 | isum, j, aux.vda_name); |
11092 | } | |
dd24e3da | 11093 | |
54806181 AM |
11094 | if (j < ent.vd_cnt) |
11095 | printf (_(" Version def aux past end of section\n")); | |
252b5132 | 11096 | |
c9f02c3e MR |
11097 | /* PR 17531: |
11098 | file: id:000001,src:000172+005151,op:splice,rep:2. */ | |
1445030f AM |
11099 | if (ent.vd_next < sizeof (*edef) |
11100 | && !(cnt == section->sh_info - 1 && ent.vd_next == 0)) | |
11101 | { | |
11102 | warn (_("Invalid vd_next field of %lx\n"), ent.vd_next); | |
11103 | cnt = section->sh_info; | |
11104 | break; | |
11105 | } | |
452bf675 | 11106 | if (ent.vd_next > (size_t) (endbuf - ((char *) edefs + idx))) |
5d921cbd NC |
11107 | break; |
11108 | ||
252b5132 RH |
11109 | idx += ent.vd_next; |
11110 | } | |
dd24e3da | 11111 | |
54806181 AM |
11112 | if (cnt < section->sh_info) |
11113 | printf (_(" Version definition past end of section\n")); | |
252b5132 RH |
11114 | |
11115 | free (edefs); | |
11116 | } | |
11117 | break; | |
103f02d3 | 11118 | |
252b5132 RH |
11119 | case SHT_GNU_verneed: |
11120 | { | |
2cf0635d | 11121 | Elf_External_Verneed * eneed; |
452bf675 AM |
11122 | unsigned long idx; |
11123 | unsigned long cnt; | |
2cf0635d | 11124 | char * endbuf; |
252b5132 | 11125 | |
32ec8896 | 11126 | found = TRUE; |
252b5132 | 11127 | |
d3a49aa8 AM |
11128 | printf (ngettext ("\nVersion needs section '%s' " |
11129 | "contains %u entry:\n", | |
11130 | "\nVersion needs section '%s' " | |
11131 | "contains %u entries:\n", | |
11132 | section->sh_info), | |
dda8d76d | 11133 | printable_section_name (filedata, section), section->sh_info); |
252b5132 RH |
11134 | |
11135 | printf (_(" Addr: 0x")); | |
11136 | printf_vma (section->sh_addr); | |
72de5009 | 11137 | printf (_(" Offset: %#08lx Link: %u (%s)\n"), |
1b228002 | 11138 | (unsigned long) section->sh_offset, section->sh_link, |
dda8d76d | 11139 | printable_section_name_from_index (filedata, section->sh_link)); |
252b5132 | 11140 | |
dda8d76d | 11141 | eneed = (Elf_External_Verneed *) get_data (NULL, filedata, |
3f5e193b NC |
11142 | section->sh_offset, 1, |
11143 | section->sh_size, | |
9cf03b7e | 11144 | _("Version Needs section")); |
a6e9f9df AM |
11145 | if (!eneed) |
11146 | break; | |
59245841 | 11147 | endbuf = (char *) eneed + section->sh_size; |
252b5132 RH |
11148 | |
11149 | for (idx = cnt = 0; cnt < section->sh_info; ++cnt) | |
11150 | { | |
2cf0635d | 11151 | Elf_External_Verneed * entry; |
b34976b6 | 11152 | Elf_Internal_Verneed ent; |
452bf675 | 11153 | unsigned long isum; |
b34976b6 | 11154 | int j; |
2cf0635d | 11155 | char * vstart; |
252b5132 RH |
11156 | |
11157 | vstart = ((char *) eneed) + idx; | |
54806181 AM |
11158 | if (vstart + sizeof (*entry) > endbuf) |
11159 | break; | |
252b5132 RH |
11160 | |
11161 | entry = (Elf_External_Verneed *) vstart; | |
11162 | ||
11163 | ent.vn_version = BYTE_GET (entry->vn_version); | |
11164 | ent.vn_cnt = BYTE_GET (entry->vn_cnt); | |
11165 | ent.vn_file = BYTE_GET (entry->vn_file); | |
11166 | ent.vn_aux = BYTE_GET (entry->vn_aux); | |
11167 | ent.vn_next = BYTE_GET (entry->vn_next); | |
11168 | ||
452bf675 | 11169 | printf (_(" %#06lx: Version: %d"), idx, ent.vn_version); |
252b5132 | 11170 | |
978c4450 AM |
11171 | if (VALID_DYNAMIC_NAME (filedata, ent.vn_file)) |
11172 | printf (_(" File: %s"), | |
11173 | GET_DYNAMIC_NAME (filedata, ent.vn_file)); | |
252b5132 RH |
11174 | else |
11175 | printf (_(" File: %lx"), ent.vn_file); | |
11176 | ||
11177 | printf (_(" Cnt: %d\n"), ent.vn_cnt); | |
11178 | ||
dd24e3da | 11179 | /* Check for overflow. */ |
7e26601c | 11180 | if (ent.vn_aux > (size_t) (endbuf - vstart)) |
dd24e3da | 11181 | break; |
252b5132 RH |
11182 | vstart += ent.vn_aux; |
11183 | ||
11184 | for (j = 0, isum = idx + ent.vn_aux; j < ent.vn_cnt; ++j) | |
11185 | { | |
2cf0635d | 11186 | Elf_External_Vernaux * eaux; |
b34976b6 | 11187 | Elf_Internal_Vernaux aux; |
252b5132 | 11188 | |
54806181 AM |
11189 | if (vstart + sizeof (*eaux) > endbuf) |
11190 | break; | |
252b5132 RH |
11191 | eaux = (Elf_External_Vernaux *) vstart; |
11192 | ||
11193 | aux.vna_hash = BYTE_GET (eaux->vna_hash); | |
11194 | aux.vna_flags = BYTE_GET (eaux->vna_flags); | |
11195 | aux.vna_other = BYTE_GET (eaux->vna_other); | |
11196 | aux.vna_name = BYTE_GET (eaux->vna_name); | |
11197 | aux.vna_next = BYTE_GET (eaux->vna_next); | |
11198 | ||
978c4450 | 11199 | if (VALID_DYNAMIC_NAME (filedata, aux.vna_name)) |
452bf675 | 11200 | printf (_(" %#06lx: Name: %s"), |
978c4450 | 11201 | isum, GET_DYNAMIC_NAME (filedata, aux.vna_name)); |
252b5132 | 11202 | else |
452bf675 | 11203 | printf (_(" %#06lx: Name index: %lx"), |
252b5132 RH |
11204 | isum, aux.vna_name); |
11205 | ||
11206 | printf (_(" Flags: %s Version: %d\n"), | |
11207 | get_ver_flags (aux.vna_flags), aux.vna_other); | |
11208 | ||
1445030f AM |
11209 | if (aux.vna_next < sizeof (*eaux) |
11210 | && !(j == ent.vn_cnt - 1 && aux.vna_next == 0)) | |
53774b7e NC |
11211 | { |
11212 | warn (_("Invalid vna_next field of %lx\n"), | |
11213 | aux.vna_next); | |
11214 | j = ent.vn_cnt; | |
11215 | break; | |
11216 | } | |
1445030f AM |
11217 | /* Check for overflow. */ |
11218 | if (aux.vna_next > (size_t) (endbuf - vstart)) | |
11219 | break; | |
252b5132 RH |
11220 | isum += aux.vna_next; |
11221 | vstart += aux.vna_next; | |
11222 | } | |
9cf03b7e | 11223 | |
54806181 | 11224 | if (j < ent.vn_cnt) |
9cf03b7e | 11225 | warn (_("Missing Version Needs auxillary information\n")); |
252b5132 | 11226 | |
1445030f AM |
11227 | if (ent.vn_next < sizeof (*entry) |
11228 | && !(cnt == section->sh_info - 1 && ent.vn_next == 0)) | |
c24cf8b6 | 11229 | { |
452bf675 | 11230 | warn (_("Invalid vn_next field of %lx\n"), ent.vn_next); |
c24cf8b6 NC |
11231 | cnt = section->sh_info; |
11232 | break; | |
11233 | } | |
1445030f AM |
11234 | if (ent.vn_next > (size_t) (endbuf - ((char *) eneed + idx))) |
11235 | break; | |
252b5132 RH |
11236 | idx += ent.vn_next; |
11237 | } | |
9cf03b7e | 11238 | |
54806181 | 11239 | if (cnt < section->sh_info) |
9cf03b7e | 11240 | warn (_("Missing Version Needs information\n")); |
103f02d3 | 11241 | |
252b5132 RH |
11242 | free (eneed); |
11243 | } | |
11244 | break; | |
11245 | ||
11246 | case SHT_GNU_versym: | |
11247 | { | |
2cf0635d | 11248 | Elf_Internal_Shdr * link_section; |
8b73c356 NC |
11249 | size_t total; |
11250 | unsigned int cnt; | |
2cf0635d NC |
11251 | unsigned char * edata; |
11252 | unsigned short * data; | |
11253 | char * strtab; | |
11254 | Elf_Internal_Sym * symbols; | |
11255 | Elf_Internal_Shdr * string_sec; | |
ba5cdace | 11256 | unsigned long num_syms; |
d3ba0551 | 11257 | long off; |
252b5132 | 11258 | |
dda8d76d | 11259 | if (section->sh_link >= filedata->file_header.e_shnum) |
c256ffe7 JJ |
11260 | break; |
11261 | ||
dda8d76d | 11262 | link_section = filedata->section_headers + section->sh_link; |
08d8fa11 | 11263 | total = section->sh_size / sizeof (Elf_External_Versym); |
252b5132 | 11264 | |
dda8d76d | 11265 | if (link_section->sh_link >= filedata->file_header.e_shnum) |
c256ffe7 JJ |
11266 | break; |
11267 | ||
32ec8896 | 11268 | found = TRUE; |
252b5132 | 11269 | |
dda8d76d | 11270 | symbols = GET_ELF_SYMBOLS (filedata, link_section, & num_syms); |
dd24e3da NC |
11271 | if (symbols == NULL) |
11272 | break; | |
252b5132 | 11273 | |
dda8d76d | 11274 | string_sec = filedata->section_headers + link_section->sh_link; |
252b5132 | 11275 | |
dda8d76d | 11276 | strtab = (char *) get_data (NULL, filedata, string_sec->sh_offset, 1, |
3f5e193b NC |
11277 | string_sec->sh_size, |
11278 | _("version string table")); | |
a6e9f9df | 11279 | if (!strtab) |
0429c154 MS |
11280 | { |
11281 | free (symbols); | |
11282 | break; | |
11283 | } | |
252b5132 | 11284 | |
d3a49aa8 AM |
11285 | printf (ngettext ("\nVersion symbols section '%s' " |
11286 | "contains %lu entry:\n", | |
11287 | "\nVersion symbols section '%s' " | |
11288 | "contains %lu entries:\n", | |
11289 | total), | |
dda8d76d | 11290 | printable_section_name (filedata, section), (unsigned long) total); |
252b5132 | 11291 | |
ae9ac79e | 11292 | printf (_(" Addr: 0x")); |
252b5132 | 11293 | printf_vma (section->sh_addr); |
72de5009 | 11294 | printf (_(" Offset: %#08lx Link: %u (%s)\n"), |
1b228002 | 11295 | (unsigned long) section->sh_offset, section->sh_link, |
dda8d76d | 11296 | printable_section_name (filedata, link_section)); |
252b5132 | 11297 | |
dda8d76d | 11298 | off = offset_from_vma (filedata, |
978c4450 | 11299 | filedata->version_info[DT_VERSIONTAGIDX (DT_VERSYM)], |
d3ba0551 | 11300 | total * sizeof (short)); |
95099889 AM |
11301 | edata = (unsigned char *) get_data (NULL, filedata, off, |
11302 | sizeof (short), total, | |
11303 | _("version symbol data")); | |
a6e9f9df AM |
11304 | if (!edata) |
11305 | { | |
11306 | free (strtab); | |
0429c154 | 11307 | free (symbols); |
a6e9f9df AM |
11308 | break; |
11309 | } | |
252b5132 | 11310 | |
3f5e193b | 11311 | data = (short unsigned int *) cmalloc (total, sizeof (short)); |
252b5132 RH |
11312 | |
11313 | for (cnt = total; cnt --;) | |
b34976b6 AM |
11314 | data[cnt] = byte_get (edata + cnt * sizeof (short), |
11315 | sizeof (short)); | |
252b5132 RH |
11316 | |
11317 | free (edata); | |
11318 | ||
11319 | for (cnt = 0; cnt < total; cnt += 4) | |
11320 | { | |
11321 | int j, nn; | |
ab273396 AM |
11322 | char *name; |
11323 | char *invalid = _("*invalid*"); | |
252b5132 RH |
11324 | |
11325 | printf (" %03x:", cnt); | |
11326 | ||
11327 | for (j = 0; (j < 4) && (cnt + j) < total; ++j) | |
b34976b6 | 11328 | switch (data[cnt + j]) |
252b5132 RH |
11329 | { |
11330 | case 0: | |
11331 | fputs (_(" 0 (*local*) "), stdout); | |
11332 | break; | |
11333 | ||
11334 | case 1: | |
11335 | fputs (_(" 1 (*global*) "), stdout); | |
11336 | break; | |
11337 | ||
11338 | default: | |
c244d050 NC |
11339 | nn = printf ("%4x%c", data[cnt + j] & VERSYM_VERSION, |
11340 | data[cnt + j] & VERSYM_HIDDEN ? 'h' : ' '); | |
252b5132 | 11341 | |
dd24e3da | 11342 | /* If this index value is greater than the size of the symbols |
ba5cdace NC |
11343 | array, break to avoid an out-of-bounds read. */ |
11344 | if ((unsigned long)(cnt + j) >= num_syms) | |
dd24e3da NC |
11345 | { |
11346 | warn (_("invalid index into symbol array\n")); | |
11347 | break; | |
11348 | } | |
11349 | ||
ab273396 | 11350 | name = NULL; |
978c4450 | 11351 | if (filedata->version_info[DT_VERSIONTAGIDX (DT_VERNEED)]) |
252b5132 | 11352 | { |
b34976b6 AM |
11353 | Elf_Internal_Verneed ivn; |
11354 | unsigned long offset; | |
252b5132 | 11355 | |
d93f0186 | 11356 | offset = offset_from_vma |
978c4450 AM |
11357 | (filedata, |
11358 | filedata->version_info[DT_VERSIONTAGIDX (DT_VERNEED)], | |
d93f0186 | 11359 | sizeof (Elf_External_Verneed)); |
252b5132 | 11360 | |
b34976b6 | 11361 | do |
252b5132 | 11362 | { |
b34976b6 AM |
11363 | Elf_Internal_Vernaux ivna; |
11364 | Elf_External_Verneed evn; | |
11365 | Elf_External_Vernaux evna; | |
11366 | unsigned long a_off; | |
252b5132 | 11367 | |
dda8d76d | 11368 | if (get_data (&evn, filedata, offset, sizeof (evn), 1, |
59245841 NC |
11369 | _("version need")) == NULL) |
11370 | break; | |
0b4362b0 | 11371 | |
252b5132 RH |
11372 | ivn.vn_aux = BYTE_GET (evn.vn_aux); |
11373 | ivn.vn_next = BYTE_GET (evn.vn_next); | |
11374 | ||
11375 | a_off = offset + ivn.vn_aux; | |
11376 | ||
11377 | do | |
11378 | { | |
dda8d76d | 11379 | if (get_data (&evna, filedata, a_off, sizeof (evna), |
59245841 NC |
11380 | 1, _("version need aux (2)")) == NULL) |
11381 | { | |
11382 | ivna.vna_next = 0; | |
11383 | ivna.vna_other = 0; | |
11384 | } | |
11385 | else | |
11386 | { | |
11387 | ivna.vna_next = BYTE_GET (evna.vna_next); | |
11388 | ivna.vna_other = BYTE_GET (evna.vna_other); | |
11389 | } | |
252b5132 RH |
11390 | |
11391 | a_off += ivna.vna_next; | |
11392 | } | |
b34976b6 | 11393 | while (ivna.vna_other != data[cnt + j] |
252b5132 RH |
11394 | && ivna.vna_next != 0); |
11395 | ||
b34976b6 | 11396 | if (ivna.vna_other == data[cnt + j]) |
252b5132 RH |
11397 | { |
11398 | ivna.vna_name = BYTE_GET (evna.vna_name); | |
11399 | ||
54806181 | 11400 | if (ivna.vna_name >= string_sec->sh_size) |
ab273396 | 11401 | name = invalid; |
54806181 AM |
11402 | else |
11403 | name = strtab + ivna.vna_name; | |
252b5132 RH |
11404 | break; |
11405 | } | |
11406 | ||
11407 | offset += ivn.vn_next; | |
11408 | } | |
11409 | while (ivn.vn_next); | |
11410 | } | |
00d93f34 | 11411 | |
ab273396 | 11412 | if (data[cnt + j] != 0x8001 |
978c4450 | 11413 | && filedata->version_info[DT_VERSIONTAGIDX (DT_VERDEF)]) |
252b5132 | 11414 | { |
b34976b6 AM |
11415 | Elf_Internal_Verdef ivd; |
11416 | Elf_External_Verdef evd; | |
11417 | unsigned long offset; | |
252b5132 | 11418 | |
d93f0186 | 11419 | offset = offset_from_vma |
978c4450 AM |
11420 | (filedata, |
11421 | filedata->version_info[DT_VERSIONTAGIDX (DT_VERDEF)], | |
d93f0186 | 11422 | sizeof evd); |
252b5132 RH |
11423 | |
11424 | do | |
11425 | { | |
dda8d76d | 11426 | if (get_data (&evd, filedata, offset, sizeof (evd), 1, |
59245841 NC |
11427 | _("version def")) == NULL) |
11428 | { | |
11429 | ivd.vd_next = 0; | |
948f632f | 11430 | /* PR 17531: file: 046-1082287-0.004. */ |
3102e897 NC |
11431 | ivd.vd_ndx = (data[cnt + j] & VERSYM_VERSION) + 1; |
11432 | break; | |
59245841 NC |
11433 | } |
11434 | else | |
11435 | { | |
11436 | ivd.vd_next = BYTE_GET (evd.vd_next); | |
11437 | ivd.vd_ndx = BYTE_GET (evd.vd_ndx); | |
11438 | } | |
252b5132 RH |
11439 | |
11440 | offset += ivd.vd_next; | |
11441 | } | |
c244d050 | 11442 | while (ivd.vd_ndx != (data[cnt + j] & VERSYM_VERSION) |
252b5132 RH |
11443 | && ivd.vd_next != 0); |
11444 | ||
c244d050 | 11445 | if (ivd.vd_ndx == (data[cnt + j] & VERSYM_VERSION)) |
252b5132 | 11446 | { |
b34976b6 AM |
11447 | Elf_External_Verdaux evda; |
11448 | Elf_Internal_Verdaux ivda; | |
252b5132 RH |
11449 | |
11450 | ivd.vd_aux = BYTE_GET (evd.vd_aux); | |
11451 | ||
dda8d76d | 11452 | if (get_data (&evda, filedata, |
59245841 NC |
11453 | offset - ivd.vd_next + ivd.vd_aux, |
11454 | sizeof (evda), 1, | |
11455 | _("version def aux")) == NULL) | |
11456 | break; | |
252b5132 RH |
11457 | |
11458 | ivda.vda_name = BYTE_GET (evda.vda_name); | |
11459 | ||
54806181 | 11460 | if (ivda.vda_name >= string_sec->sh_size) |
ab273396 AM |
11461 | name = invalid; |
11462 | else if (name != NULL && name != invalid) | |
11463 | name = _("*both*"); | |
54806181 AM |
11464 | else |
11465 | name = strtab + ivda.vda_name; | |
252b5132 RH |
11466 | } |
11467 | } | |
ab273396 AM |
11468 | if (name != NULL) |
11469 | nn += printf ("(%s%-*s", | |
11470 | name, | |
11471 | 12 - (int) strlen (name), | |
11472 | ")"); | |
252b5132 RH |
11473 | |
11474 | if (nn < 18) | |
11475 | printf ("%*c", 18 - nn, ' '); | |
11476 | } | |
11477 | ||
11478 | putchar ('\n'); | |
11479 | } | |
11480 | ||
11481 | free (data); | |
11482 | free (strtab); | |
11483 | free (symbols); | |
11484 | } | |
11485 | break; | |
103f02d3 | 11486 | |
252b5132 RH |
11487 | default: |
11488 | break; | |
11489 | } | |
11490 | } | |
11491 | ||
11492 | if (! found) | |
11493 | printf (_("\nNo version information found in this file.\n")); | |
11494 | ||
32ec8896 | 11495 | return TRUE; |
252b5132 RH |
11496 | } |
11497 | ||
d1133906 | 11498 | static const char * |
dda8d76d | 11499 | get_symbol_binding (Filedata * filedata, unsigned int binding) |
252b5132 | 11500 | { |
89246a0e | 11501 | static char buff[64]; |
252b5132 RH |
11502 | |
11503 | switch (binding) | |
11504 | { | |
b34976b6 AM |
11505 | case STB_LOCAL: return "LOCAL"; |
11506 | case STB_GLOBAL: return "GLOBAL"; | |
11507 | case STB_WEAK: return "WEAK"; | |
252b5132 RH |
11508 | default: |
11509 | if (binding >= STB_LOPROC && binding <= STB_HIPROC) | |
e9e44622 JJ |
11510 | snprintf (buff, sizeof (buff), _("<processor specific>: %d"), |
11511 | binding); | |
252b5132 | 11512 | else if (binding >= STB_LOOS && binding <= STB_HIOS) |
3e7a7d11 NC |
11513 | { |
11514 | if (binding == STB_GNU_UNIQUE | |
df3a023b | 11515 | && filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_GNU) |
3e7a7d11 NC |
11516 | return "UNIQUE"; |
11517 | snprintf (buff, sizeof (buff), _("<OS specific>: %d"), binding); | |
11518 | } | |
252b5132 | 11519 | else |
e9e44622 | 11520 | snprintf (buff, sizeof (buff), _("<unknown>: %d"), binding); |
252b5132 RH |
11521 | return buff; |
11522 | } | |
11523 | } | |
11524 | ||
d1133906 | 11525 | static const char * |
dda8d76d | 11526 | get_symbol_type (Filedata * filedata, unsigned int type) |
252b5132 | 11527 | { |
89246a0e | 11528 | static char buff[64]; |
252b5132 RH |
11529 | |
11530 | switch (type) | |
11531 | { | |
b34976b6 AM |
11532 | case STT_NOTYPE: return "NOTYPE"; |
11533 | case STT_OBJECT: return "OBJECT"; | |
11534 | case STT_FUNC: return "FUNC"; | |
11535 | case STT_SECTION: return "SECTION"; | |
11536 | case STT_FILE: return "FILE"; | |
11537 | case STT_COMMON: return "COMMON"; | |
11538 | case STT_TLS: return "TLS"; | |
15ab5209 DB |
11539 | case STT_RELC: return "RELC"; |
11540 | case STT_SRELC: return "SRELC"; | |
252b5132 RH |
11541 | default: |
11542 | if (type >= STT_LOPROC && type <= STT_HIPROC) | |
df75f1af | 11543 | { |
dda8d76d | 11544 | if (filedata->file_header.e_machine == EM_ARM && type == STT_ARM_TFUNC) |
3510a7b8 | 11545 | return "THUMB_FUNC"; |
103f02d3 | 11546 | |
dda8d76d | 11547 | if (filedata->file_header.e_machine == EM_SPARCV9 && type == STT_REGISTER) |
103f02d3 UD |
11548 | return "REGISTER"; |
11549 | ||
dda8d76d | 11550 | if (filedata->file_header.e_machine == EM_PARISC && type == STT_PARISC_MILLI) |
103f02d3 UD |
11551 | return "PARISC_MILLI"; |
11552 | ||
e9e44622 | 11553 | snprintf (buff, sizeof (buff), _("<processor specific>: %d"), type); |
df75f1af | 11554 | } |
252b5132 | 11555 | else if (type >= STT_LOOS && type <= STT_HIOS) |
103f02d3 | 11556 | { |
dda8d76d | 11557 | if (filedata->file_header.e_machine == EM_PARISC) |
103f02d3 UD |
11558 | { |
11559 | if (type == STT_HP_OPAQUE) | |
11560 | return "HP_OPAQUE"; | |
11561 | if (type == STT_HP_STUB) | |
11562 | return "HP_STUB"; | |
11563 | } | |
11564 | ||
d8045f23 | 11565 | if (type == STT_GNU_IFUNC |
dda8d76d | 11566 | && (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_GNU |
df3a023b | 11567 | || filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_FREEBSD)) |
d8045f23 NC |
11568 | return "IFUNC"; |
11569 | ||
e9e44622 | 11570 | snprintf (buff, sizeof (buff), _("<OS specific>: %d"), type); |
103f02d3 | 11571 | } |
252b5132 | 11572 | else |
e9e44622 | 11573 | snprintf (buff, sizeof (buff), _("<unknown>: %d"), type); |
252b5132 RH |
11574 | return buff; |
11575 | } | |
11576 | } | |
11577 | ||
d1133906 | 11578 | static const char * |
d3ba0551 | 11579 | get_symbol_visibility (unsigned int visibility) |
d1133906 NC |
11580 | { |
11581 | switch (visibility) | |
11582 | { | |
b34976b6 AM |
11583 | case STV_DEFAULT: return "DEFAULT"; |
11584 | case STV_INTERNAL: return "INTERNAL"; | |
11585 | case STV_HIDDEN: return "HIDDEN"; | |
d1133906 | 11586 | case STV_PROTECTED: return "PROTECTED"; |
bee0ee85 | 11587 | default: |
27a45f42 | 11588 | error (_("Unrecognized visibility value: %u\n"), visibility); |
bee0ee85 | 11589 | return _("<unknown>"); |
d1133906 NC |
11590 | } |
11591 | } | |
11592 | ||
2057d69d CZ |
11593 | static const char * |
11594 | get_alpha_symbol_other (unsigned int other) | |
9abca702 | 11595 | { |
2057d69d CZ |
11596 | switch (other) |
11597 | { | |
11598 | case STO_ALPHA_NOPV: return "NOPV"; | |
11599 | case STO_ALPHA_STD_GPLOAD: return "STD GPLOAD"; | |
11600 | default: | |
27a45f42 | 11601 | error (_("Unrecognized alpha specific other value: %u\n"), other); |
2057d69d | 11602 | return _("<unknown>"); |
9abca702 | 11603 | } |
2057d69d CZ |
11604 | } |
11605 | ||
fd85a6a1 NC |
11606 | static const char * |
11607 | get_solaris_symbol_visibility (unsigned int visibility) | |
11608 | { | |
11609 | switch (visibility) | |
11610 | { | |
11611 | case 4: return "EXPORTED"; | |
11612 | case 5: return "SINGLETON"; | |
11613 | case 6: return "ELIMINATE"; | |
11614 | default: return get_symbol_visibility (visibility); | |
11615 | } | |
11616 | } | |
11617 | ||
2301ed1c SN |
11618 | static const char * |
11619 | get_aarch64_symbol_other (unsigned int other) | |
11620 | { | |
11621 | static char buf[32]; | |
11622 | ||
11623 | if (other & STO_AARCH64_VARIANT_PCS) | |
11624 | { | |
11625 | other &= ~STO_AARCH64_VARIANT_PCS; | |
11626 | if (other == 0) | |
11627 | return "VARIANT_PCS"; | |
11628 | snprintf (buf, sizeof buf, "VARIANT_PCS | %x", other); | |
11629 | return buf; | |
11630 | } | |
11631 | return NULL; | |
11632 | } | |
11633 | ||
5e2b0d47 NC |
11634 | static const char * |
11635 | get_mips_symbol_other (unsigned int other) | |
11636 | { | |
11637 | switch (other) | |
11638 | { | |
32ec8896 NC |
11639 | case STO_OPTIONAL: return "OPTIONAL"; |
11640 | case STO_MIPS_PLT: return "MIPS PLT"; | |
11641 | case STO_MIPS_PIC: return "MIPS PIC"; | |
11642 | case STO_MICROMIPS: return "MICROMIPS"; | |
11643 | case STO_MICROMIPS | STO_MIPS_PIC: return "MICROMIPS, MIPS PIC"; | |
11644 | case STO_MIPS16: return "MIPS16"; | |
11645 | default: return NULL; | |
5e2b0d47 NC |
11646 | } |
11647 | } | |
11648 | ||
28f997cf | 11649 | static const char * |
dda8d76d | 11650 | get_ia64_symbol_other (Filedata * filedata, unsigned int other) |
28f997cf | 11651 | { |
dda8d76d | 11652 | if (is_ia64_vms (filedata)) |
28f997cf TG |
11653 | { |
11654 | static char res[32]; | |
11655 | ||
11656 | res[0] = 0; | |
11657 | ||
11658 | /* Function types is for images and .STB files only. */ | |
dda8d76d | 11659 | switch (filedata->file_header.e_type) |
28f997cf TG |
11660 | { |
11661 | case ET_DYN: | |
11662 | case ET_EXEC: | |
11663 | switch (VMS_ST_FUNC_TYPE (other)) | |
11664 | { | |
11665 | case VMS_SFT_CODE_ADDR: | |
11666 | strcat (res, " CA"); | |
11667 | break; | |
11668 | case VMS_SFT_SYMV_IDX: | |
11669 | strcat (res, " VEC"); | |
11670 | break; | |
11671 | case VMS_SFT_FD: | |
11672 | strcat (res, " FD"); | |
11673 | break; | |
11674 | case VMS_SFT_RESERVE: | |
11675 | strcat (res, " RSV"); | |
11676 | break; | |
11677 | default: | |
bee0ee85 NC |
11678 | warn (_("Unrecognized IA64 VMS ST Function type: %d\n"), |
11679 | VMS_ST_FUNC_TYPE (other)); | |
11680 | strcat (res, " <unknown>"); | |
11681 | break; | |
28f997cf TG |
11682 | } |
11683 | break; | |
11684 | default: | |
11685 | break; | |
11686 | } | |
11687 | switch (VMS_ST_LINKAGE (other)) | |
11688 | { | |
11689 | case VMS_STL_IGNORE: | |
11690 | strcat (res, " IGN"); | |
11691 | break; | |
11692 | case VMS_STL_RESERVE: | |
11693 | strcat (res, " RSV"); | |
11694 | break; | |
11695 | case VMS_STL_STD: | |
11696 | strcat (res, " STD"); | |
11697 | break; | |
11698 | case VMS_STL_LNK: | |
11699 | strcat (res, " LNK"); | |
11700 | break; | |
11701 | default: | |
bee0ee85 NC |
11702 | warn (_("Unrecognized IA64 VMS ST Linkage: %d\n"), |
11703 | VMS_ST_LINKAGE (other)); | |
11704 | strcat (res, " <unknown>"); | |
11705 | break; | |
28f997cf TG |
11706 | } |
11707 | ||
11708 | if (res[0] != 0) | |
11709 | return res + 1; | |
11710 | else | |
11711 | return res; | |
11712 | } | |
11713 | return NULL; | |
11714 | } | |
11715 | ||
6911b7dc AM |
11716 | static const char * |
11717 | get_ppc64_symbol_other (unsigned int other) | |
11718 | { | |
14732552 AM |
11719 | if ((other & ~STO_PPC64_LOCAL_MASK) != 0) |
11720 | return NULL; | |
11721 | ||
11722 | other >>= STO_PPC64_LOCAL_BIT; | |
11723 | if (other <= 6) | |
6911b7dc | 11724 | { |
89246a0e | 11725 | static char buf[64]; |
14732552 AM |
11726 | if (other >= 2) |
11727 | other = ppc64_decode_local_entry (other); | |
11728 | snprintf (buf, sizeof buf, _("<localentry>: %d"), other); | |
6911b7dc AM |
11729 | return buf; |
11730 | } | |
11731 | return NULL; | |
11732 | } | |
11733 | ||
5e2b0d47 | 11734 | static const char * |
dda8d76d | 11735 | get_symbol_other (Filedata * filedata, unsigned int other) |
5e2b0d47 NC |
11736 | { |
11737 | const char * result = NULL; | |
89246a0e | 11738 | static char buff [64]; |
5e2b0d47 NC |
11739 | |
11740 | if (other == 0) | |
11741 | return ""; | |
11742 | ||
dda8d76d | 11743 | switch (filedata->file_header.e_machine) |
5e2b0d47 | 11744 | { |
2057d69d CZ |
11745 | case EM_ALPHA: |
11746 | result = get_alpha_symbol_other (other); | |
11747 | break; | |
2301ed1c SN |
11748 | case EM_AARCH64: |
11749 | result = get_aarch64_symbol_other (other); | |
11750 | break; | |
5e2b0d47 NC |
11751 | case EM_MIPS: |
11752 | result = get_mips_symbol_other (other); | |
28f997cf TG |
11753 | break; |
11754 | case EM_IA_64: | |
dda8d76d | 11755 | result = get_ia64_symbol_other (filedata, other); |
28f997cf | 11756 | break; |
6911b7dc AM |
11757 | case EM_PPC64: |
11758 | result = get_ppc64_symbol_other (other); | |
11759 | break; | |
5e2b0d47 | 11760 | default: |
fd85a6a1 | 11761 | result = NULL; |
5e2b0d47 NC |
11762 | break; |
11763 | } | |
11764 | ||
11765 | if (result) | |
11766 | return result; | |
11767 | ||
11768 | snprintf (buff, sizeof buff, _("<other>: %x"), other); | |
11769 | return buff; | |
11770 | } | |
11771 | ||
d1133906 | 11772 | static const char * |
dda8d76d | 11773 | get_symbol_index_type (Filedata * filedata, unsigned int type) |
252b5132 | 11774 | { |
b34976b6 | 11775 | static char buff[32]; |
5cf1065c | 11776 | |
252b5132 RH |
11777 | switch (type) |
11778 | { | |
b34976b6 AM |
11779 | case SHN_UNDEF: return "UND"; |
11780 | case SHN_ABS: return "ABS"; | |
11781 | case SHN_COMMON: return "COM"; | |
252b5132 | 11782 | default: |
9ce701e2 | 11783 | if (type == SHN_IA_64_ANSI_COMMON |
10ca4b04 L |
11784 | && filedata->file_header.e_machine == EM_IA_64 |
11785 | && filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_HPUX) | |
11786 | return "ANSI_COM"; | |
11787 | else if ((filedata->file_header.e_machine == EM_X86_64 | |
11788 | || filedata->file_header.e_machine == EM_L1OM | |
11789 | || filedata->file_header.e_machine == EM_K1OM) | |
11790 | && type == SHN_X86_64_LCOMMON) | |
11791 | return "LARGE_COM"; | |
11792 | else if ((type == SHN_MIPS_SCOMMON | |
11793 | && filedata->file_header.e_machine == EM_MIPS) | |
11794 | || (type == SHN_TIC6X_SCOMMON | |
11795 | && filedata->file_header.e_machine == EM_TI_C6000)) | |
11796 | return "SCOM"; | |
11797 | else if (type == SHN_MIPS_SUNDEFINED | |
11798 | && filedata->file_header.e_machine == EM_MIPS) | |
11799 | return "SUND"; | |
11800 | else if (type >= SHN_LOPROC && type <= SHN_HIPROC) | |
11801 | sprintf (buff, "PRC[0x%04x]", type & 0xffff); | |
11802 | else if (type >= SHN_LOOS && type <= SHN_HIOS) | |
11803 | sprintf (buff, "OS [0x%04x]", type & 0xffff); | |
11804 | else if (type >= SHN_LORESERVE) | |
11805 | sprintf (buff, "RSV[0x%04x]", type & 0xffff); | |
11806 | else if (filedata->file_header.e_shnum != 0 | |
11807 | && type >= filedata->file_header.e_shnum) | |
11808 | sprintf (buff, _("bad section index[%3d]"), type); | |
11809 | else | |
11810 | sprintf (buff, "%3d", type); | |
11811 | break; | |
fd85a6a1 NC |
11812 | } |
11813 | ||
10ca4b04 | 11814 | return buff; |
6bd1a22c L |
11815 | } |
11816 | ||
bb4d2ac2 | 11817 | static const char * |
dda8d76d | 11818 | get_symbol_version_string (Filedata * filedata, |
1449284b NC |
11819 | bfd_boolean is_dynsym, |
11820 | const char * strtab, | |
11821 | unsigned long int strtab_size, | |
11822 | unsigned int si, | |
11823 | Elf_Internal_Sym * psym, | |
11824 | enum versioned_symbol_info * sym_info, | |
11825 | unsigned short * vna_other) | |
bb4d2ac2 | 11826 | { |
ab273396 AM |
11827 | unsigned char data[2]; |
11828 | unsigned short vers_data; | |
11829 | unsigned long offset; | |
7a815dd5 | 11830 | unsigned short max_vd_ndx; |
bb4d2ac2 | 11831 | |
ab273396 | 11832 | if (!is_dynsym |
978c4450 | 11833 | || filedata->version_info[DT_VERSIONTAGIDX (DT_VERSYM)] == 0) |
ab273396 | 11834 | return NULL; |
bb4d2ac2 | 11835 | |
978c4450 AM |
11836 | offset = offset_from_vma (filedata, |
11837 | filedata->version_info[DT_VERSIONTAGIDX (DT_VERSYM)], | |
ab273396 | 11838 | sizeof data + si * sizeof (vers_data)); |
bb4d2ac2 | 11839 | |
dda8d76d | 11840 | if (get_data (&data, filedata, offset + si * sizeof (vers_data), |
ab273396 AM |
11841 | sizeof (data), 1, _("version data")) == NULL) |
11842 | return NULL; | |
11843 | ||
11844 | vers_data = byte_get (data, 2); | |
bb4d2ac2 | 11845 | |
1f6f5dba | 11846 | if ((vers_data & VERSYM_HIDDEN) == 0 && vers_data == 0) |
ab273396 | 11847 | return NULL; |
bb4d2ac2 | 11848 | |
0b8b7609 | 11849 | *sym_info = (vers_data & VERSYM_HIDDEN) != 0 ? symbol_hidden : symbol_public; |
7a815dd5 L |
11850 | max_vd_ndx = 0; |
11851 | ||
ab273396 AM |
11852 | /* Usually we'd only see verdef for defined symbols, and verneed for |
11853 | undefined symbols. However, symbols defined by the linker in | |
11854 | .dynbss for variables copied from a shared library in order to | |
11855 | avoid text relocations are defined yet have verneed. We could | |
11856 | use a heuristic to detect the special case, for example, check | |
11857 | for verneed first on symbols defined in SHT_NOBITS sections, but | |
11858 | it is simpler and more reliable to just look for both verdef and | |
11859 | verneed. .dynbss might not be mapped to a SHT_NOBITS section. */ | |
bb4d2ac2 | 11860 | |
ab273396 AM |
11861 | if (psym->st_shndx != SHN_UNDEF |
11862 | && vers_data != 0x8001 | |
978c4450 | 11863 | && filedata->version_info[DT_VERSIONTAGIDX (DT_VERDEF)]) |
ab273396 AM |
11864 | { |
11865 | Elf_Internal_Verdef ivd; | |
11866 | Elf_Internal_Verdaux ivda; | |
11867 | Elf_External_Verdaux evda; | |
11868 | unsigned long off; | |
bb4d2ac2 | 11869 | |
dda8d76d | 11870 | off = offset_from_vma (filedata, |
978c4450 | 11871 | filedata->version_info[DT_VERSIONTAGIDX (DT_VERDEF)], |
ab273396 AM |
11872 | sizeof (Elf_External_Verdef)); |
11873 | ||
11874 | do | |
bb4d2ac2 | 11875 | { |
ab273396 AM |
11876 | Elf_External_Verdef evd; |
11877 | ||
dda8d76d | 11878 | if (get_data (&evd, filedata, off, sizeof (evd), 1, |
ab273396 AM |
11879 | _("version def")) == NULL) |
11880 | { | |
11881 | ivd.vd_ndx = 0; | |
11882 | ivd.vd_aux = 0; | |
11883 | ivd.vd_next = 0; | |
1f6f5dba | 11884 | ivd.vd_flags = 0; |
ab273396 AM |
11885 | } |
11886 | else | |
bb4d2ac2 | 11887 | { |
ab273396 AM |
11888 | ivd.vd_ndx = BYTE_GET (evd.vd_ndx); |
11889 | ivd.vd_aux = BYTE_GET (evd.vd_aux); | |
11890 | ivd.vd_next = BYTE_GET (evd.vd_next); | |
1f6f5dba | 11891 | ivd.vd_flags = BYTE_GET (evd.vd_flags); |
ab273396 | 11892 | } |
bb4d2ac2 | 11893 | |
7a815dd5 L |
11894 | if ((ivd.vd_ndx & VERSYM_VERSION) > max_vd_ndx) |
11895 | max_vd_ndx = ivd.vd_ndx & VERSYM_VERSION; | |
11896 | ||
ab273396 AM |
11897 | off += ivd.vd_next; |
11898 | } | |
11899 | while (ivd.vd_ndx != (vers_data & VERSYM_VERSION) && ivd.vd_next != 0); | |
bb4d2ac2 | 11900 | |
ab273396 AM |
11901 | if (ivd.vd_ndx == (vers_data & VERSYM_VERSION)) |
11902 | { | |
9abca702 | 11903 | if (ivd.vd_ndx == 1 && ivd.vd_flags == VER_FLG_BASE) |
1f6f5dba L |
11904 | return NULL; |
11905 | ||
ab273396 AM |
11906 | off -= ivd.vd_next; |
11907 | off += ivd.vd_aux; | |
bb4d2ac2 | 11908 | |
dda8d76d | 11909 | if (get_data (&evda, filedata, off, sizeof (evda), 1, |
ab273396 AM |
11910 | _("version def aux")) != NULL) |
11911 | { | |
11912 | ivda.vda_name = BYTE_GET (evda.vda_name); | |
bb4d2ac2 | 11913 | |
ab273396 | 11914 | if (psym->st_name != ivda.vda_name) |
0b8b7609 AM |
11915 | return (ivda.vda_name < strtab_size |
11916 | ? strtab + ivda.vda_name : _("<corrupt>")); | |
ab273396 AM |
11917 | } |
11918 | } | |
11919 | } | |
bb4d2ac2 | 11920 | |
978c4450 | 11921 | if (filedata->version_info[DT_VERSIONTAGIDX (DT_VERNEED)]) |
ab273396 AM |
11922 | { |
11923 | Elf_External_Verneed evn; | |
11924 | Elf_Internal_Verneed ivn; | |
11925 | Elf_Internal_Vernaux ivna; | |
bb4d2ac2 | 11926 | |
dda8d76d | 11927 | offset = offset_from_vma (filedata, |
978c4450 | 11928 | filedata->version_info[DT_VERSIONTAGIDX (DT_VERNEED)], |
ab273396 AM |
11929 | sizeof evn); |
11930 | do | |
11931 | { | |
11932 | unsigned long vna_off; | |
bb4d2ac2 | 11933 | |
dda8d76d | 11934 | if (get_data (&evn, filedata, offset, sizeof (evn), 1, |
ab273396 AM |
11935 | _("version need")) == NULL) |
11936 | { | |
11937 | ivna.vna_next = 0; | |
11938 | ivna.vna_other = 0; | |
11939 | ivna.vna_name = 0; | |
11940 | break; | |
11941 | } | |
bb4d2ac2 | 11942 | |
ab273396 AM |
11943 | ivn.vn_aux = BYTE_GET (evn.vn_aux); |
11944 | ivn.vn_next = BYTE_GET (evn.vn_next); | |
bb4d2ac2 | 11945 | |
ab273396 | 11946 | vna_off = offset + ivn.vn_aux; |
bb4d2ac2 | 11947 | |
ab273396 AM |
11948 | do |
11949 | { | |
11950 | Elf_External_Vernaux evna; | |
bb4d2ac2 | 11951 | |
dda8d76d | 11952 | if (get_data (&evna, filedata, vna_off, sizeof (evna), 1, |
ab273396 | 11953 | _("version need aux (3)")) == NULL) |
bb4d2ac2 | 11954 | { |
ab273396 AM |
11955 | ivna.vna_next = 0; |
11956 | ivna.vna_other = 0; | |
11957 | ivna.vna_name = 0; | |
bb4d2ac2 | 11958 | } |
bb4d2ac2 | 11959 | else |
bb4d2ac2 | 11960 | { |
ab273396 AM |
11961 | ivna.vna_other = BYTE_GET (evna.vna_other); |
11962 | ivna.vna_next = BYTE_GET (evna.vna_next); | |
11963 | ivna.vna_name = BYTE_GET (evna.vna_name); | |
11964 | } | |
bb4d2ac2 | 11965 | |
ab273396 AM |
11966 | vna_off += ivna.vna_next; |
11967 | } | |
11968 | while (ivna.vna_other != vers_data && ivna.vna_next != 0); | |
bb4d2ac2 | 11969 | |
ab273396 AM |
11970 | if (ivna.vna_other == vers_data) |
11971 | break; | |
bb4d2ac2 | 11972 | |
ab273396 AM |
11973 | offset += ivn.vn_next; |
11974 | } | |
11975 | while (ivn.vn_next != 0); | |
bb4d2ac2 | 11976 | |
ab273396 AM |
11977 | if (ivna.vna_other == vers_data) |
11978 | { | |
11979 | *sym_info = symbol_undefined; | |
11980 | *vna_other = ivna.vna_other; | |
11981 | return (ivna.vna_name < strtab_size | |
11982 | ? strtab + ivna.vna_name : _("<corrupt>")); | |
bb4d2ac2 | 11983 | } |
7a815dd5 L |
11984 | else if ((max_vd_ndx || (vers_data & VERSYM_VERSION) != 1) |
11985 | && (vers_data & VERSYM_VERSION) > max_vd_ndx) | |
11986 | return _("<corrupt>"); | |
bb4d2ac2 | 11987 | } |
ab273396 | 11988 | return NULL; |
bb4d2ac2 L |
11989 | } |
11990 | ||
10ca4b04 L |
11991 | static void |
11992 | print_dynamic_symbol (Filedata *filedata, unsigned long si, | |
11993 | Elf_Internal_Sym *symtab, | |
11994 | Elf_Internal_Shdr *section, | |
11995 | char *strtab, size_t strtab_size) | |
252b5132 | 11996 | { |
10ca4b04 L |
11997 | const char *version_string; |
11998 | enum versioned_symbol_info sym_info; | |
11999 | unsigned short vna_other; | |
12000 | Elf_Internal_Sym *psym = symtab + si; | |
252b5132 | 12001 | |
10ca4b04 L |
12002 | printf ("%6ld: ", si); |
12003 | print_vma (psym->st_value, LONG_HEX); | |
12004 | putchar (' '); | |
12005 | print_vma (psym->st_size, DEC_5); | |
12006 | printf (" %-7s", get_symbol_type (filedata, ELF_ST_TYPE (psym->st_info))); | |
12007 | printf (" %-6s", get_symbol_binding (filedata, ELF_ST_BIND (psym->st_info))); | |
12008 | if (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_SOLARIS) | |
12009 | printf (" %-7s", get_solaris_symbol_visibility (psym->st_other)); | |
12010 | else | |
252b5132 | 12011 | { |
10ca4b04 | 12012 | unsigned int vis = ELF_ST_VISIBILITY (psym->st_other); |
252b5132 | 12013 | |
10ca4b04 L |
12014 | printf (" %-7s", get_symbol_visibility (vis)); |
12015 | /* Check to see if any other bits in the st_other field are set. | |
12016 | Note - displaying this information disrupts the layout of the | |
12017 | table being generated, but for the moment this case is very rare. */ | |
12018 | if (psym->st_other ^ vis) | |
12019 | printf (" [%s] ", get_symbol_other (filedata, psym->st_other ^ vis)); | |
252b5132 | 12020 | } |
10ca4b04 L |
12021 | printf (" %4s ", get_symbol_index_type (filedata, psym->st_shndx)); |
12022 | print_symbol (25, VALID_SYMBOL_NAME (strtab, strtab_size, | |
12023 | psym->st_name) | |
12024 | ? strtab + psym->st_name : _("<corrupt>")); | |
12025 | ||
12026 | version_string | |
12027 | = get_symbol_version_string (filedata, | |
12028 | (section == NULL | |
12029 | || section->sh_type == SHT_DYNSYM), | |
12030 | strtab, strtab_size, si, | |
12031 | psym, &sym_info, &vna_other); | |
12032 | if (version_string) | |
12033 | { | |
12034 | if (sym_info == symbol_undefined) | |
12035 | printf ("@%s (%d)", version_string, vna_other); | |
f7a99963 | 12036 | else |
10ca4b04 L |
12037 | printf (sym_info == symbol_hidden ? "@%s" : "@@%s", |
12038 | version_string); | |
12039 | } | |
6bd1a22c | 12040 | |
10ca4b04 | 12041 | putchar ('\n'); |
6bd1a22c | 12042 | |
10ca4b04 L |
12043 | if (ELF_ST_BIND (psym->st_info) == STB_LOCAL |
12044 | && section != NULL | |
12045 | && si >= section->sh_info | |
12046 | /* Irix 5 and 6 MIPS binaries are known to ignore this requirement. */ | |
12047 | && filedata->file_header.e_machine != EM_MIPS | |
12048 | /* Solaris binaries have been found to violate this requirement as | |
12049 | well. Not sure if this is a bug or an ABI requirement. */ | |
12050 | && filedata->file_header.e_ident[EI_OSABI] != ELFOSABI_SOLARIS) | |
12051 | warn (_("local symbol %lu found at index >= %s's sh_info value of %u\n"), | |
12052 | si, printable_section_name (filedata, section), section->sh_info); | |
12053 | } | |
f16a9783 | 12054 | |
10ca4b04 L |
12055 | /* Dump the symbol table. */ |
12056 | static bfd_boolean | |
12057 | process_symbol_table (Filedata * filedata) | |
12058 | { | |
12059 | Elf_Internal_Shdr * section; | |
f16a9783 | 12060 | |
10ca4b04 L |
12061 | if (!do_syms && !do_dyn_syms && !do_histogram) |
12062 | return TRUE; | |
6bd1a22c | 12063 | |
978c4450 | 12064 | if ((filedata->dynamic_info[DT_HASH] || filedata->dynamic_info_DT_GNU_HASH) |
6bd1a22c L |
12065 | && do_syms |
12066 | && do_using_dynamic | |
978c4450 AM |
12067 | && filedata->dynamic_strings != NULL |
12068 | && filedata->dynamic_symbols != NULL) | |
6bd1a22c | 12069 | { |
10ca4b04 | 12070 | unsigned long si; |
6bd1a22c | 12071 | |
10ca4b04 L |
12072 | printf (ngettext ("\nSymbol table for image contains %lu entry:\n", |
12073 | "\nSymbol table for image contains %lu entries:\n", | |
978c4450 AM |
12074 | filedata->num_dynamic_syms), |
12075 | filedata->num_dynamic_syms); | |
10ca4b04 L |
12076 | if (is_32bit_elf) |
12077 | printf (_(" Num: Value Size Type Bind Vis Ndx Name\n")); | |
12078 | else | |
12079 | printf (_(" Num: Value Size Type Bind Vis Ndx Name\n")); | |
6bd1a22c | 12080 | |
978c4450 AM |
12081 | for (si = 0; si < filedata->num_dynamic_syms; si++) |
12082 | print_dynamic_symbol (filedata, si, filedata->dynamic_symbols, NULL, | |
12083 | filedata->dynamic_strings, | |
12084 | filedata->dynamic_strings_length); | |
252b5132 | 12085 | } |
8b73c356 | 12086 | else if ((do_dyn_syms || (do_syms && !do_using_dynamic)) |
dda8d76d | 12087 | && filedata->section_headers != NULL) |
252b5132 | 12088 | { |
b34976b6 | 12089 | unsigned int i; |
252b5132 | 12090 | |
dda8d76d NC |
12091 | for (i = 0, section = filedata->section_headers; |
12092 | i < filedata->file_header.e_shnum; | |
252b5132 RH |
12093 | i++, section++) |
12094 | { | |
2cf0635d | 12095 | char * strtab = NULL; |
c256ffe7 | 12096 | unsigned long int strtab_size = 0; |
2cf0635d | 12097 | Elf_Internal_Sym * symtab; |
ef3df110 | 12098 | unsigned long si, num_syms; |
252b5132 | 12099 | |
2c610e4b L |
12100 | if ((section->sh_type != SHT_SYMTAB |
12101 | && section->sh_type != SHT_DYNSYM) | |
12102 | || (!do_syms | |
12103 | && section->sh_type == SHT_SYMTAB)) | |
252b5132 RH |
12104 | continue; |
12105 | ||
dd24e3da NC |
12106 | if (section->sh_entsize == 0) |
12107 | { | |
12108 | printf (_("\nSymbol table '%s' has a sh_entsize of zero!\n"), | |
dda8d76d | 12109 | printable_section_name (filedata, section)); |
dd24e3da NC |
12110 | continue; |
12111 | } | |
12112 | ||
d3a49aa8 AM |
12113 | num_syms = section->sh_size / section->sh_entsize; |
12114 | printf (ngettext ("\nSymbol table '%s' contains %lu entry:\n", | |
12115 | "\nSymbol table '%s' contains %lu entries:\n", | |
12116 | num_syms), | |
dda8d76d | 12117 | printable_section_name (filedata, section), |
d3a49aa8 | 12118 | num_syms); |
dd24e3da | 12119 | |
f7a99963 | 12120 | if (is_32bit_elf) |
ca47b30c | 12121 | printf (_(" Num: Value Size Type Bind Vis Ndx Name\n")); |
f7a99963 | 12122 | else |
ca47b30c | 12123 | printf (_(" Num: Value Size Type Bind Vis Ndx Name\n")); |
252b5132 | 12124 | |
dda8d76d | 12125 | symtab = GET_ELF_SYMBOLS (filedata, section, & num_syms); |
252b5132 RH |
12126 | if (symtab == NULL) |
12127 | continue; | |
12128 | ||
dda8d76d | 12129 | if (section->sh_link == filedata->file_header.e_shstrndx) |
c256ffe7 | 12130 | { |
dda8d76d NC |
12131 | strtab = filedata->string_table; |
12132 | strtab_size = filedata->string_table_length; | |
c256ffe7 | 12133 | } |
dda8d76d | 12134 | else if (section->sh_link < filedata->file_header.e_shnum) |
252b5132 | 12135 | { |
2cf0635d | 12136 | Elf_Internal_Shdr * string_sec; |
252b5132 | 12137 | |
dda8d76d | 12138 | string_sec = filedata->section_headers + section->sh_link; |
252b5132 | 12139 | |
dda8d76d | 12140 | strtab = (char *) get_data (NULL, filedata, string_sec->sh_offset, |
3f5e193b NC |
12141 | 1, string_sec->sh_size, |
12142 | _("string table")); | |
c256ffe7 | 12143 | strtab_size = strtab != NULL ? string_sec->sh_size : 0; |
252b5132 RH |
12144 | } |
12145 | ||
10ca4b04 L |
12146 | for (si = 0; si < num_syms; si++) |
12147 | print_dynamic_symbol (filedata, si, symtab, section, | |
12148 | strtab, strtab_size); | |
252b5132 RH |
12149 | |
12150 | free (symtab); | |
dda8d76d | 12151 | if (strtab != filedata->string_table) |
252b5132 RH |
12152 | free (strtab); |
12153 | } | |
12154 | } | |
12155 | else if (do_syms) | |
12156 | printf | |
12157 | (_("\nDynamic symbol information is not available for displaying symbols.\n")); | |
12158 | ||
978c4450 | 12159 | if (do_histogram && filedata->buckets != NULL) |
252b5132 | 12160 | { |
2cf0635d NC |
12161 | unsigned long * lengths; |
12162 | unsigned long * counts; | |
66543521 AM |
12163 | unsigned long hn; |
12164 | bfd_vma si; | |
12165 | unsigned long maxlength = 0; | |
12166 | unsigned long nzero_counts = 0; | |
12167 | unsigned long nsyms = 0; | |
6bd6a03d | 12168 | char *visited; |
252b5132 | 12169 | |
d3a49aa8 AM |
12170 | printf (ngettext ("\nHistogram for bucket list length " |
12171 | "(total of %lu bucket):\n", | |
12172 | "\nHistogram for bucket list length " | |
12173 | "(total of %lu buckets):\n", | |
978c4450 AM |
12174 | (unsigned long) filedata->nbuckets), |
12175 | (unsigned long) filedata->nbuckets); | |
252b5132 | 12176 | |
978c4450 AM |
12177 | lengths = (unsigned long *) calloc (filedata->nbuckets, |
12178 | sizeof (*lengths)); | |
252b5132 RH |
12179 | if (lengths == NULL) |
12180 | { | |
8b73c356 | 12181 | error (_("Out of memory allocating space for histogram buckets\n")); |
fd486f32 | 12182 | goto err_out; |
252b5132 | 12183 | } |
978c4450 AM |
12184 | visited = xcmalloc (filedata->nchains, 1); |
12185 | memset (visited, 0, filedata->nchains); | |
8b73c356 NC |
12186 | |
12187 | printf (_(" Length Number %% of total Coverage\n")); | |
978c4450 | 12188 | for (hn = 0; hn < filedata->nbuckets; ++hn) |
252b5132 | 12189 | { |
978c4450 | 12190 | for (si = filedata->buckets[hn]; si > 0; si = filedata->chains[si]) |
252b5132 | 12191 | { |
b34976b6 | 12192 | ++nsyms; |
252b5132 | 12193 | if (maxlength < ++lengths[hn]) |
b34976b6 | 12194 | ++maxlength; |
978c4450 | 12195 | if (si >= filedata->nchains || visited[si]) |
6bd6a03d AM |
12196 | { |
12197 | error (_("histogram chain is corrupt\n")); | |
12198 | break; | |
12199 | } | |
12200 | visited[si] = 1; | |
252b5132 RH |
12201 | } |
12202 | } | |
6bd6a03d | 12203 | free (visited); |
252b5132 | 12204 | |
3f5e193b | 12205 | counts = (unsigned long *) calloc (maxlength + 1, sizeof (*counts)); |
252b5132 RH |
12206 | if (counts == NULL) |
12207 | { | |
b2e951ec | 12208 | free (lengths); |
8b73c356 | 12209 | error (_("Out of memory allocating space for histogram counts\n")); |
fd486f32 | 12210 | goto err_out; |
252b5132 RH |
12211 | } |
12212 | ||
978c4450 | 12213 | for (hn = 0; hn < filedata->nbuckets; ++hn) |
b34976b6 | 12214 | ++counts[lengths[hn]]; |
252b5132 | 12215 | |
978c4450 | 12216 | if (filedata->nbuckets > 0) |
252b5132 | 12217 | { |
66543521 AM |
12218 | unsigned long i; |
12219 | printf (" 0 %-10lu (%5.1f%%)\n", | |
978c4450 | 12220 | counts[0], (counts[0] * 100.0) / filedata->nbuckets); |
66543521 | 12221 | for (i = 1; i <= maxlength; ++i) |
103f02d3 | 12222 | { |
66543521 AM |
12223 | nzero_counts += counts[i] * i; |
12224 | printf ("%7lu %-10lu (%5.1f%%) %5.1f%%\n", | |
978c4450 | 12225 | i, counts[i], (counts[i] * 100.0) / filedata->nbuckets, |
103f02d3 UD |
12226 | (nzero_counts * 100.0) / nsyms); |
12227 | } | |
252b5132 RH |
12228 | } |
12229 | ||
12230 | free (counts); | |
12231 | free (lengths); | |
12232 | } | |
12233 | ||
978c4450 AM |
12234 | free (filedata->buckets); |
12235 | filedata->buckets = NULL; | |
12236 | filedata->nbuckets = 0; | |
12237 | free (filedata->chains); | |
12238 | filedata->chains = NULL; | |
252b5132 | 12239 | |
978c4450 | 12240 | if (do_histogram && filedata->gnubuckets != NULL) |
fdc90cb4 | 12241 | { |
2cf0635d NC |
12242 | unsigned long * lengths; |
12243 | unsigned long * counts; | |
fdc90cb4 JJ |
12244 | unsigned long hn; |
12245 | unsigned long maxlength = 0; | |
12246 | unsigned long nzero_counts = 0; | |
12247 | unsigned long nsyms = 0; | |
fdc90cb4 | 12248 | |
f16a9783 | 12249 | printf (ngettext ("\nHistogram for `%s' bucket list length " |
d3a49aa8 | 12250 | "(total of %lu bucket):\n", |
f16a9783 | 12251 | "\nHistogram for `%s' bucket list length " |
d3a49aa8 | 12252 | "(total of %lu buckets):\n", |
978c4450 AM |
12253 | (unsigned long) filedata->ngnubuckets), |
12254 | GNU_HASH_SECTION_NAME (filedata), | |
12255 | (unsigned long) filedata->ngnubuckets); | |
8b73c356 | 12256 | |
978c4450 AM |
12257 | lengths = (unsigned long *) calloc (filedata->ngnubuckets, |
12258 | sizeof (*lengths)); | |
fdc90cb4 JJ |
12259 | if (lengths == NULL) |
12260 | { | |
8b73c356 | 12261 | error (_("Out of memory allocating space for gnu histogram buckets\n")); |
fd486f32 | 12262 | goto err_out; |
fdc90cb4 JJ |
12263 | } |
12264 | ||
fdc90cb4 JJ |
12265 | printf (_(" Length Number %% of total Coverage\n")); |
12266 | ||
978c4450 AM |
12267 | for (hn = 0; hn < filedata->ngnubuckets; ++hn) |
12268 | if (filedata->gnubuckets[hn] != 0) | |
fdc90cb4 JJ |
12269 | { |
12270 | bfd_vma off, length = 1; | |
12271 | ||
978c4450 | 12272 | for (off = filedata->gnubuckets[hn] - filedata->gnusymidx; |
071436c6 | 12273 | /* PR 17531 file: 010-77222-0.004. */ |
978c4450 AM |
12274 | off < filedata->ngnuchains |
12275 | && (filedata->gnuchains[off] & 1) == 0; | |
071436c6 | 12276 | ++off) |
fdc90cb4 JJ |
12277 | ++length; |
12278 | lengths[hn] = length; | |
12279 | if (length > maxlength) | |
12280 | maxlength = length; | |
12281 | nsyms += length; | |
12282 | } | |
12283 | ||
3f5e193b | 12284 | counts = (unsigned long *) calloc (maxlength + 1, sizeof (*counts)); |
fdc90cb4 JJ |
12285 | if (counts == NULL) |
12286 | { | |
b2e951ec | 12287 | free (lengths); |
8b73c356 | 12288 | error (_("Out of memory allocating space for gnu histogram counts\n")); |
fd486f32 | 12289 | goto err_out; |
fdc90cb4 JJ |
12290 | } |
12291 | ||
978c4450 | 12292 | for (hn = 0; hn < filedata->ngnubuckets; ++hn) |
fdc90cb4 JJ |
12293 | ++counts[lengths[hn]]; |
12294 | ||
978c4450 | 12295 | if (filedata->ngnubuckets > 0) |
fdc90cb4 JJ |
12296 | { |
12297 | unsigned long j; | |
12298 | printf (" 0 %-10lu (%5.1f%%)\n", | |
978c4450 | 12299 | counts[0], (counts[0] * 100.0) / filedata->ngnubuckets); |
fdc90cb4 JJ |
12300 | for (j = 1; j <= maxlength; ++j) |
12301 | { | |
12302 | nzero_counts += counts[j] * j; | |
12303 | printf ("%7lu %-10lu (%5.1f%%) %5.1f%%\n", | |
978c4450 | 12304 | j, counts[j], (counts[j] * 100.0) / filedata->ngnubuckets, |
fdc90cb4 JJ |
12305 | (nzero_counts * 100.0) / nsyms); |
12306 | } | |
12307 | } | |
12308 | ||
12309 | free (counts); | |
12310 | free (lengths); | |
fdc90cb4 | 12311 | } |
978c4450 AM |
12312 | free (filedata->gnubuckets); |
12313 | filedata->gnubuckets = NULL; | |
12314 | filedata->ngnubuckets = 0; | |
12315 | free (filedata->gnuchains); | |
12316 | filedata->gnuchains = NULL; | |
12317 | filedata->ngnuchains = 0; | |
12318 | free (filedata->mipsxlat); | |
12319 | filedata->mipsxlat = NULL; | |
32ec8896 | 12320 | return TRUE; |
fd486f32 AM |
12321 | |
12322 | err_out: | |
978c4450 AM |
12323 | free (filedata->gnubuckets); |
12324 | filedata->gnubuckets = NULL; | |
12325 | filedata->ngnubuckets = 0; | |
12326 | free (filedata->gnuchains); | |
12327 | filedata->gnuchains = NULL; | |
12328 | filedata->ngnuchains = 0; | |
12329 | free (filedata->mipsxlat); | |
12330 | filedata->mipsxlat = NULL; | |
12331 | free (filedata->buckets); | |
12332 | filedata->buckets = NULL; | |
12333 | filedata->nbuckets = 0; | |
12334 | free (filedata->chains); | |
12335 | filedata->chains = NULL; | |
fd486f32 | 12336 | return FALSE; |
252b5132 RH |
12337 | } |
12338 | ||
32ec8896 | 12339 | static bfd_boolean |
dda8d76d | 12340 | process_syminfo (Filedata * filedata ATTRIBUTE_UNUSED) |
252b5132 | 12341 | { |
b4c96d0d | 12342 | unsigned int i; |
252b5132 | 12343 | |
978c4450 | 12344 | if (filedata->dynamic_syminfo == NULL |
252b5132 RH |
12345 | || !do_dynamic) |
12346 | /* No syminfo, this is ok. */ | |
32ec8896 | 12347 | return TRUE; |
252b5132 RH |
12348 | |
12349 | /* There better should be a dynamic symbol section. */ | |
978c4450 | 12350 | if (filedata->dynamic_symbols == NULL || filedata->dynamic_strings == NULL) |
32ec8896 | 12351 | return FALSE; |
252b5132 | 12352 | |
978c4450 | 12353 | if (filedata->dynamic_addr) |
d3a49aa8 AM |
12354 | printf (ngettext ("\nDynamic info segment at offset 0x%lx " |
12355 | "contains %d entry:\n", | |
12356 | "\nDynamic info segment at offset 0x%lx " | |
12357 | "contains %d entries:\n", | |
978c4450 AM |
12358 | filedata->dynamic_syminfo_nent), |
12359 | filedata->dynamic_syminfo_offset, filedata->dynamic_syminfo_nent); | |
252b5132 RH |
12360 | |
12361 | printf (_(" Num: Name BoundTo Flags\n")); | |
978c4450 | 12362 | for (i = 0; i < filedata->dynamic_syminfo_nent; ++i) |
252b5132 | 12363 | { |
978c4450 | 12364 | unsigned short int flags = filedata->dynamic_syminfo[i].si_flags; |
252b5132 | 12365 | |
31104126 | 12366 | printf ("%4d: ", i); |
978c4450 | 12367 | if (i >= filedata->num_dynamic_syms) |
4082ef84 | 12368 | printf (_("<corrupt index>")); |
978c4450 AM |
12369 | else if (VALID_DYNAMIC_NAME (filedata, filedata->dynamic_symbols[i].st_name)) |
12370 | print_symbol (30, GET_DYNAMIC_NAME (filedata, | |
12371 | filedata->dynamic_symbols[i].st_name)); | |
d79b3d50 | 12372 | else |
978c4450 | 12373 | printf (_("<corrupt: %19ld>"), filedata->dynamic_symbols[i].st_name); |
31104126 | 12374 | putchar (' '); |
252b5132 | 12375 | |
978c4450 | 12376 | switch (filedata->dynamic_syminfo[i].si_boundto) |
252b5132 RH |
12377 | { |
12378 | case SYMINFO_BT_SELF: | |
12379 | fputs ("SELF ", stdout); | |
12380 | break; | |
12381 | case SYMINFO_BT_PARENT: | |
12382 | fputs ("PARENT ", stdout); | |
12383 | break; | |
12384 | default: | |
978c4450 AM |
12385 | if (filedata->dynamic_syminfo[i].si_boundto > 0 |
12386 | && filedata->dynamic_syminfo[i].si_boundto < filedata->dynamic_nent | |
12387 | && VALID_DYNAMIC_NAME (filedata, | |
12388 | filedata->dynamic_section[filedata->dynamic_syminfo[i].si_boundto].d_un.d_val)) | |
31104126 | 12389 | { |
978c4450 AM |
12390 | print_symbol (10, GET_DYNAMIC_NAME (filedata, |
12391 | filedata->dynamic_section[filedata->dynamic_syminfo[i].si_boundto].d_un.d_val)); | |
31104126 NC |
12392 | putchar (' ' ); |
12393 | } | |
252b5132 | 12394 | else |
978c4450 | 12395 | printf ("%-10d ", filedata->dynamic_syminfo[i].si_boundto); |
252b5132 RH |
12396 | break; |
12397 | } | |
12398 | ||
12399 | if (flags & SYMINFO_FLG_DIRECT) | |
12400 | printf (" DIRECT"); | |
12401 | if (flags & SYMINFO_FLG_PASSTHRU) | |
12402 | printf (" PASSTHRU"); | |
12403 | if (flags & SYMINFO_FLG_COPY) | |
12404 | printf (" COPY"); | |
12405 | if (flags & SYMINFO_FLG_LAZYLOAD) | |
12406 | printf (" LAZYLOAD"); | |
12407 | ||
12408 | puts (""); | |
12409 | } | |
12410 | ||
32ec8896 | 12411 | return TRUE; |
252b5132 RH |
12412 | } |
12413 | ||
75802ccb CE |
12414 | /* A macro which evaluates to TRUE if the region ADDR .. ADDR + NELEM |
12415 | is contained by the region START .. END. The types of ADDR, START | |
12416 | and END should all be the same. Note both ADDR + NELEM and END | |
12417 | point to just beyond the end of the regions that are being tested. */ | |
12418 | #define IN_RANGE(START,END,ADDR,NELEM) \ | |
12419 | (((ADDR) >= (START)) && ((ADDR) < (END)) && ((ADDR) + (NELEM) <= (END))) | |
b32e566b | 12420 | |
cf13d699 NC |
12421 | /* Check to see if the given reloc needs to be handled in a target specific |
12422 | manner. If so then process the reloc and return TRUE otherwise return | |
f84ce13b NC |
12423 | FALSE. |
12424 | ||
12425 | If called with reloc == NULL, then this is a signal that reloc processing | |
12426 | for the current section has finished, and any saved state should be | |
12427 | discarded. */ | |
09c11c86 | 12428 | |
cf13d699 | 12429 | static bfd_boolean |
dda8d76d NC |
12430 | target_specific_reloc_handling (Filedata * filedata, |
12431 | Elf_Internal_Rela * reloc, | |
12432 | unsigned char * start, | |
12433 | unsigned char * end, | |
12434 | Elf_Internal_Sym * symtab, | |
12435 | unsigned long num_syms) | |
252b5132 | 12436 | { |
f84ce13b NC |
12437 | unsigned int reloc_type = 0; |
12438 | unsigned long sym_index = 0; | |
12439 | ||
12440 | if (reloc) | |
12441 | { | |
dda8d76d | 12442 | reloc_type = get_reloc_type (filedata, reloc->r_info); |
f84ce13b NC |
12443 | sym_index = get_reloc_symindex (reloc->r_info); |
12444 | } | |
252b5132 | 12445 | |
dda8d76d | 12446 | switch (filedata->file_header.e_machine) |
252b5132 | 12447 | { |
13761a11 NC |
12448 | case EM_MSP430: |
12449 | case EM_MSP430_OLD: | |
12450 | { | |
12451 | static Elf_Internal_Sym * saved_sym = NULL; | |
12452 | ||
f84ce13b NC |
12453 | if (reloc == NULL) |
12454 | { | |
12455 | saved_sym = NULL; | |
12456 | return TRUE; | |
12457 | } | |
12458 | ||
13761a11 NC |
12459 | switch (reloc_type) |
12460 | { | |
12461 | case 10: /* R_MSP430_SYM_DIFF */ | |
dda8d76d | 12462 | if (uses_msp430x_relocs (filedata)) |
13761a11 | 12463 | break; |
1a0670f3 | 12464 | /* Fall through. */ |
13761a11 | 12465 | case 21: /* R_MSP430X_SYM_DIFF */ |
f84ce13b NC |
12466 | /* PR 21139. */ |
12467 | if (sym_index >= num_syms) | |
12468 | error (_("MSP430 SYM_DIFF reloc contains invalid symbol index %lu\n"), | |
12469 | sym_index); | |
12470 | else | |
12471 | saved_sym = symtab + sym_index; | |
13761a11 NC |
12472 | return TRUE; |
12473 | ||
12474 | case 1: /* R_MSP430_32 or R_MSP430_ABS32 */ | |
12475 | case 3: /* R_MSP430_16 or R_MSP430_ABS8 */ | |
12476 | goto handle_sym_diff; | |
0b4362b0 | 12477 | |
13761a11 NC |
12478 | case 5: /* R_MSP430_16_BYTE */ |
12479 | case 9: /* R_MSP430_8 */ | |
dda8d76d | 12480 | if (uses_msp430x_relocs (filedata)) |
13761a11 NC |
12481 | break; |
12482 | goto handle_sym_diff; | |
12483 | ||
12484 | case 2: /* R_MSP430_ABS16 */ | |
12485 | case 15: /* R_MSP430X_ABS16 */ | |
dda8d76d | 12486 | if (! uses_msp430x_relocs (filedata)) |
13761a11 NC |
12487 | break; |
12488 | goto handle_sym_diff; | |
0b4362b0 | 12489 | |
13761a11 NC |
12490 | handle_sym_diff: |
12491 | if (saved_sym != NULL) | |
12492 | { | |
03f7786e | 12493 | int reloc_size = reloc_type == 1 ? 4 : 2; |
13761a11 NC |
12494 | bfd_vma value; |
12495 | ||
f84ce13b NC |
12496 | if (sym_index >= num_syms) |
12497 | error (_("MSP430 reloc contains invalid symbol index %lu\n"), | |
12498 | sym_index); | |
03f7786e | 12499 | else |
f84ce13b NC |
12500 | { |
12501 | value = reloc->r_addend + (symtab[sym_index].st_value | |
12502 | - saved_sym->st_value); | |
12503 | ||
b32e566b | 12504 | if (IN_RANGE (start, end, start + reloc->r_offset, reloc_size)) |
f84ce13b | 12505 | byte_put (start + reloc->r_offset, value, reloc_size); |
b32e566b NC |
12506 | else |
12507 | /* PR 21137 */ | |
12508 | error (_("MSP430 sym diff reloc contains invalid offset: 0x%lx\n"), | |
12509 | (long) reloc->r_offset); | |
f84ce13b | 12510 | } |
13761a11 NC |
12511 | |
12512 | saved_sym = NULL; | |
12513 | return TRUE; | |
12514 | } | |
12515 | break; | |
12516 | ||
12517 | default: | |
12518 | if (saved_sym != NULL) | |
071436c6 | 12519 | error (_("Unhandled MSP430 reloc type found after SYM_DIFF reloc\n")); |
13761a11 NC |
12520 | break; |
12521 | } | |
12522 | break; | |
12523 | } | |
12524 | ||
cf13d699 NC |
12525 | case EM_MN10300: |
12526 | case EM_CYGNUS_MN10300: | |
12527 | { | |
12528 | static Elf_Internal_Sym * saved_sym = NULL; | |
252b5132 | 12529 | |
f84ce13b NC |
12530 | if (reloc == NULL) |
12531 | { | |
12532 | saved_sym = NULL; | |
12533 | return TRUE; | |
12534 | } | |
12535 | ||
cf13d699 NC |
12536 | switch (reloc_type) |
12537 | { | |
12538 | case 34: /* R_MN10300_ALIGN */ | |
12539 | return TRUE; | |
12540 | case 33: /* R_MN10300_SYM_DIFF */ | |
f84ce13b NC |
12541 | if (sym_index >= num_syms) |
12542 | error (_("MN10300_SYM_DIFF reloc contains invalid symbol index %lu\n"), | |
12543 | sym_index); | |
12544 | else | |
12545 | saved_sym = symtab + sym_index; | |
cf13d699 | 12546 | return TRUE; |
f84ce13b | 12547 | |
cf13d699 NC |
12548 | case 1: /* R_MN10300_32 */ |
12549 | case 2: /* R_MN10300_16 */ | |
12550 | if (saved_sym != NULL) | |
12551 | { | |
03f7786e | 12552 | int reloc_size = reloc_type == 1 ? 4 : 2; |
cf13d699 | 12553 | bfd_vma value; |
252b5132 | 12554 | |
f84ce13b NC |
12555 | if (sym_index >= num_syms) |
12556 | error (_("MN10300 reloc contains invalid symbol index %lu\n"), | |
12557 | sym_index); | |
03f7786e | 12558 | else |
f84ce13b NC |
12559 | { |
12560 | value = reloc->r_addend + (symtab[sym_index].st_value | |
12561 | - saved_sym->st_value); | |
12562 | ||
b32e566b | 12563 | if (IN_RANGE (start, end, start + reloc->r_offset, reloc_size)) |
f84ce13b | 12564 | byte_put (start + reloc->r_offset, value, reloc_size); |
b32e566b NC |
12565 | else |
12566 | error (_("MN10300 sym diff reloc contains invalid offset: 0x%lx\n"), | |
12567 | (long) reloc->r_offset); | |
f84ce13b | 12568 | } |
252b5132 | 12569 | |
cf13d699 NC |
12570 | saved_sym = NULL; |
12571 | return TRUE; | |
12572 | } | |
12573 | break; | |
12574 | default: | |
12575 | if (saved_sym != NULL) | |
071436c6 | 12576 | error (_("Unhandled MN10300 reloc type found after SYM_DIFF reloc\n")); |
cf13d699 NC |
12577 | break; |
12578 | } | |
12579 | break; | |
12580 | } | |
6ff71e76 NC |
12581 | |
12582 | case EM_RL78: | |
12583 | { | |
12584 | static bfd_vma saved_sym1 = 0; | |
12585 | static bfd_vma saved_sym2 = 0; | |
12586 | static bfd_vma value; | |
12587 | ||
f84ce13b NC |
12588 | if (reloc == NULL) |
12589 | { | |
12590 | saved_sym1 = saved_sym2 = 0; | |
12591 | return TRUE; | |
12592 | } | |
12593 | ||
6ff71e76 NC |
12594 | switch (reloc_type) |
12595 | { | |
12596 | case 0x80: /* R_RL78_SYM. */ | |
12597 | saved_sym1 = saved_sym2; | |
f84ce13b NC |
12598 | if (sym_index >= num_syms) |
12599 | error (_("RL78_SYM reloc contains invalid symbol index %lu\n"), | |
12600 | sym_index); | |
12601 | else | |
12602 | { | |
12603 | saved_sym2 = symtab[sym_index].st_value; | |
12604 | saved_sym2 += reloc->r_addend; | |
12605 | } | |
6ff71e76 NC |
12606 | return TRUE; |
12607 | ||
12608 | case 0x83: /* R_RL78_OPsub. */ | |
12609 | value = saved_sym1 - saved_sym2; | |
12610 | saved_sym2 = saved_sym1 = 0; | |
12611 | return TRUE; | |
12612 | break; | |
12613 | ||
12614 | case 0x41: /* R_RL78_ABS32. */ | |
b32e566b | 12615 | if (IN_RANGE (start, end, start + reloc->r_offset, 4)) |
03f7786e | 12616 | byte_put (start + reloc->r_offset, value, 4); |
b32e566b NC |
12617 | else |
12618 | error (_("RL78 sym diff reloc contains invalid offset: 0x%lx\n"), | |
12619 | (long) reloc->r_offset); | |
6ff71e76 NC |
12620 | value = 0; |
12621 | return TRUE; | |
12622 | ||
12623 | case 0x43: /* R_RL78_ABS16. */ | |
b32e566b | 12624 | if (IN_RANGE (start, end, start + reloc->r_offset, 2)) |
03f7786e | 12625 | byte_put (start + reloc->r_offset, value, 2); |
b32e566b NC |
12626 | else |
12627 | error (_("RL78 sym diff reloc contains invalid offset: 0x%lx\n"), | |
12628 | (long) reloc->r_offset); | |
6ff71e76 NC |
12629 | value = 0; |
12630 | return TRUE; | |
12631 | ||
12632 | default: | |
12633 | break; | |
12634 | } | |
12635 | break; | |
12636 | } | |
252b5132 RH |
12637 | } |
12638 | ||
cf13d699 | 12639 | return FALSE; |
252b5132 RH |
12640 | } |
12641 | ||
aca88567 NC |
12642 | /* Returns TRUE iff RELOC_TYPE is a 32-bit absolute RELA relocation used in |
12643 | DWARF debug sections. This is a target specific test. Note - we do not | |
12644 | go through the whole including-target-headers-multiple-times route, (as | |
12645 | we have already done with <elf/h8.h>) because this would become very | |
12646 | messy and even then this function would have to contain target specific | |
12647 | information (the names of the relocs instead of their numeric values). | |
12648 | FIXME: This is not the correct way to solve this problem. The proper way | |
12649 | is to have target specific reloc sizing and typing functions created by | |
12650 | the reloc-macros.h header, in the same way that it already creates the | |
12651 | reloc naming functions. */ | |
12652 | ||
12653 | static bfd_boolean | |
dda8d76d | 12654 | is_32bit_abs_reloc (Filedata * filedata, unsigned int reloc_type) |
aca88567 | 12655 | { |
d347c9df | 12656 | /* Please keep this table alpha-sorted for ease of visual lookup. */ |
dda8d76d | 12657 | switch (filedata->file_header.e_machine) |
aca88567 | 12658 | { |
41e92641 | 12659 | case EM_386: |
22abe556 | 12660 | case EM_IAMCU: |
41e92641 | 12661 | return reloc_type == 1; /* R_386_32. */ |
aca88567 NC |
12662 | case EM_68K: |
12663 | return reloc_type == 1; /* R_68K_32. */ | |
f954747f AM |
12664 | case EM_860: |
12665 | return reloc_type == 1; /* R_860_32. */ | |
12666 | case EM_960: | |
12667 | return reloc_type == 2; /* R_960_32. */ | |
a06ea964 | 12668 | case EM_AARCH64: |
9282b95a JW |
12669 | return (reloc_type == 258 |
12670 | || reloc_type == 1); /* R_AARCH64_ABS32 || R_AARCH64_P32_ABS32 */ | |
aca4efc7 JM |
12671 | case EM_BPF: |
12672 | return reloc_type == 11; /* R_BPF_DATA_32 */ | |
d347c9df PS |
12673 | case EM_ADAPTEVA_EPIPHANY: |
12674 | return reloc_type == 3; | |
aca88567 | 12675 | case EM_ALPHA: |
137b6b5f | 12676 | return reloc_type == 1; /* R_ALPHA_REFLONG. */ |
41e92641 NC |
12677 | case EM_ARC: |
12678 | return reloc_type == 1; /* R_ARC_32. */ | |
886a2506 NC |
12679 | case EM_ARC_COMPACT: |
12680 | case EM_ARC_COMPACT2: | |
12681 | return reloc_type == 4; /* R_ARC_32. */ | |
41e92641 NC |
12682 | case EM_ARM: |
12683 | return reloc_type == 2; /* R_ARM_ABS32 */ | |
cb8f3167 | 12684 | case EM_AVR_OLD: |
aca88567 NC |
12685 | case EM_AVR: |
12686 | return reloc_type == 1; | |
12687 | case EM_BLACKFIN: | |
12688 | return reloc_type == 0x12; /* R_byte4_data. */ | |
12689 | case EM_CRIS: | |
12690 | return reloc_type == 3; /* R_CRIS_32. */ | |
12691 | case EM_CR16: | |
12692 | return reloc_type == 3; /* R_CR16_NUM32. */ | |
12693 | case EM_CRX: | |
12694 | return reloc_type == 15; /* R_CRX_NUM32. */ | |
b8891f8d AJ |
12695 | case EM_CSKY: |
12696 | return reloc_type == 1; /* R_CKCORE_ADDR32. */ | |
aca88567 NC |
12697 | case EM_CYGNUS_FRV: |
12698 | return reloc_type == 1; | |
41e92641 NC |
12699 | case EM_CYGNUS_D10V: |
12700 | case EM_D10V: | |
12701 | return reloc_type == 6; /* R_D10V_32. */ | |
aca88567 NC |
12702 | case EM_CYGNUS_D30V: |
12703 | case EM_D30V: | |
12704 | return reloc_type == 12; /* R_D30V_32_NORMAL. */ | |
41e92641 NC |
12705 | case EM_DLX: |
12706 | return reloc_type == 3; /* R_DLX_RELOC_32. */ | |
aca88567 NC |
12707 | case EM_CYGNUS_FR30: |
12708 | case EM_FR30: | |
12709 | return reloc_type == 3; /* R_FR30_32. */ | |
3f8107ab AM |
12710 | case EM_FT32: |
12711 | return reloc_type == 1; /* R_FT32_32. */ | |
aca88567 NC |
12712 | case EM_H8S: |
12713 | case EM_H8_300: | |
12714 | case EM_H8_300H: | |
12715 | return reloc_type == 1; /* R_H8_DIR32. */ | |
3730236a | 12716 | case EM_IA_64: |
262cdac7 AM |
12717 | return (reloc_type == 0x64 /* R_IA64_SECREL32MSB. */ |
12718 | || reloc_type == 0x65 /* R_IA64_SECREL32LSB. */ | |
12719 | || reloc_type == 0x24 /* R_IA64_DIR32MSB. */ | |
12720 | || reloc_type == 0x25 /* R_IA64_DIR32LSB. */); | |
aca88567 NC |
12721 | case EM_IP2K_OLD: |
12722 | case EM_IP2K: | |
12723 | return reloc_type == 2; /* R_IP2K_32. */ | |
12724 | case EM_IQ2000: | |
12725 | return reloc_type == 2; /* R_IQ2000_32. */ | |
84e94c90 NC |
12726 | case EM_LATTICEMICO32: |
12727 | return reloc_type == 3; /* R_LM32_32. */ | |
ff7eeb89 | 12728 | case EM_M32C_OLD: |
aca88567 NC |
12729 | case EM_M32C: |
12730 | return reloc_type == 3; /* R_M32C_32. */ | |
12731 | case EM_M32R: | |
12732 | return reloc_type == 34; /* R_M32R_32_RELA. */ | |
adec12c1 AM |
12733 | case EM_68HC11: |
12734 | case EM_68HC12: | |
12735 | return reloc_type == 6; /* R_M68HC11_32. */ | |
7b4ae824 | 12736 | case EM_S12Z: |
2849d19f JD |
12737 | return reloc_type == 7 || /* R_S12Z_EXT32 */ |
12738 | reloc_type == 6; /* R_S12Z_CW32. */ | |
aca88567 NC |
12739 | case EM_MCORE: |
12740 | return reloc_type == 1; /* R_MCORE_ADDR32. */ | |
12741 | case EM_CYGNUS_MEP: | |
12742 | return reloc_type == 4; /* R_MEP_32. */ | |
a3c62988 NC |
12743 | case EM_METAG: |
12744 | return reloc_type == 2; /* R_METAG_ADDR32. */ | |
137b6b5f AM |
12745 | case EM_MICROBLAZE: |
12746 | return reloc_type == 1; /* R_MICROBLAZE_32. */ | |
aca88567 NC |
12747 | case EM_MIPS: |
12748 | return reloc_type == 2; /* R_MIPS_32. */ | |
12749 | case EM_MMIX: | |
12750 | return reloc_type == 4; /* R_MMIX_32. */ | |
12751 | case EM_CYGNUS_MN10200: | |
12752 | case EM_MN10200: | |
12753 | return reloc_type == 1; /* R_MN10200_32. */ | |
12754 | case EM_CYGNUS_MN10300: | |
12755 | case EM_MN10300: | |
12756 | return reloc_type == 1; /* R_MN10300_32. */ | |
5506d11a AM |
12757 | case EM_MOXIE: |
12758 | return reloc_type == 1; /* R_MOXIE_32. */ | |
aca88567 NC |
12759 | case EM_MSP430_OLD: |
12760 | case EM_MSP430: | |
13761a11 | 12761 | return reloc_type == 1; /* R_MSP430_32 or R_MSP320_ABS32. */ |
aca88567 NC |
12762 | case EM_MT: |
12763 | return reloc_type == 2; /* R_MT_32. */ | |
35c08157 KLC |
12764 | case EM_NDS32: |
12765 | return reloc_type == 20; /* R_NDS32_RELA. */ | |
3e0873ac | 12766 | case EM_ALTERA_NIOS2: |
36591ba1 | 12767 | return reloc_type == 12; /* R_NIOS2_BFD_RELOC_32. */ |
3e0873ac NC |
12768 | case EM_NIOS32: |
12769 | return reloc_type == 1; /* R_NIOS_32. */ | |
73589c9d CS |
12770 | case EM_OR1K: |
12771 | return reloc_type == 1; /* R_OR1K_32. */ | |
aca88567 | 12772 | case EM_PARISC: |
9abca702 | 12773 | return (reloc_type == 1 /* R_PARISC_DIR32. */ |
0df8ad28 | 12774 | || reloc_type == 2 /* R_PARISC_DIR21L. */ |
5fda8eca | 12775 | || reloc_type == 41); /* R_PARISC_SECREL32. */ |
aca88567 NC |
12776 | case EM_PJ: |
12777 | case EM_PJ_OLD: | |
12778 | return reloc_type == 1; /* R_PJ_DATA_DIR32. */ | |
12779 | case EM_PPC64: | |
12780 | return reloc_type == 1; /* R_PPC64_ADDR32. */ | |
12781 | case EM_PPC: | |
12782 | return reloc_type == 1; /* R_PPC_ADDR32. */ | |
2b100bb5 DD |
12783 | case EM_TI_PRU: |
12784 | return reloc_type == 11; /* R_PRU_BFD_RELOC_32. */ | |
e23eba97 NC |
12785 | case EM_RISCV: |
12786 | return reloc_type == 1; /* R_RISCV_32. */ | |
99c513f6 DD |
12787 | case EM_RL78: |
12788 | return reloc_type == 1; /* R_RL78_DIR32. */ | |
c7927a3c NC |
12789 | case EM_RX: |
12790 | return reloc_type == 1; /* R_RX_DIR32. */ | |
f954747f AM |
12791 | case EM_S370: |
12792 | return reloc_type == 1; /* R_I370_ADDR31. */ | |
aca88567 NC |
12793 | case EM_S390_OLD: |
12794 | case EM_S390: | |
12795 | return reloc_type == 4; /* R_S390_32. */ | |
41e92641 NC |
12796 | case EM_SCORE: |
12797 | return reloc_type == 8; /* R_SCORE_ABS32. */ | |
aca88567 NC |
12798 | case EM_SH: |
12799 | return reloc_type == 1; /* R_SH_DIR32. */ | |
12800 | case EM_SPARC32PLUS: | |
12801 | case EM_SPARCV9: | |
12802 | case EM_SPARC: | |
12803 | return reloc_type == 3 /* R_SPARC_32. */ | |
12804 | || reloc_type == 23; /* R_SPARC_UA32. */ | |
a7dd7d05 AM |
12805 | case EM_SPU: |
12806 | return reloc_type == 6; /* R_SPU_ADDR32 */ | |
40b36596 JM |
12807 | case EM_TI_C6000: |
12808 | return reloc_type == 1; /* R_C6000_ABS32. */ | |
aa137e4d NC |
12809 | case EM_TILEGX: |
12810 | return reloc_type == 2; /* R_TILEGX_32. */ | |
12811 | case EM_TILEPRO: | |
12812 | return reloc_type == 1; /* R_TILEPRO_32. */ | |
aca88567 NC |
12813 | case EM_CYGNUS_V850: |
12814 | case EM_V850: | |
12815 | return reloc_type == 6; /* R_V850_ABS32. */ | |
708e2187 NC |
12816 | case EM_V800: |
12817 | return reloc_type == 0x33; /* R_V810_WORD. */ | |
aca88567 NC |
12818 | case EM_VAX: |
12819 | return reloc_type == 1; /* R_VAX_32. */ | |
619ed720 EB |
12820 | case EM_VISIUM: |
12821 | return reloc_type == 3; /* R_VISIUM_32. */ | |
f96bd6c2 PC |
12822 | case EM_WEBASSEMBLY: |
12823 | return reloc_type == 1; /* R_WASM32_32. */ | |
aca88567 | 12824 | case EM_X86_64: |
8a9036a4 | 12825 | case EM_L1OM: |
7a9068fe | 12826 | case EM_K1OM: |
aca88567 | 12827 | return reloc_type == 10; /* R_X86_64_32. */ |
c29aca4a NC |
12828 | case EM_XC16X: |
12829 | case EM_C166: | |
12830 | return reloc_type == 3; /* R_XC16C_ABS_32. */ | |
f6c1a2d5 NC |
12831 | case EM_XGATE: |
12832 | return reloc_type == 4; /* R_XGATE_32. */ | |
aca88567 NC |
12833 | case EM_XSTORMY16: |
12834 | return reloc_type == 1; /* R_XSTROMY16_32. */ | |
12835 | case EM_XTENSA_OLD: | |
12836 | case EM_XTENSA: | |
12837 | return reloc_type == 1; /* R_XTENSA_32. */ | |
6655dba2 SB |
12838 | case EM_Z80: |
12839 | return reloc_type == 6; /* R_Z80_32. */ | |
aca88567 | 12840 | default: |
bee0ee85 NC |
12841 | { |
12842 | static unsigned int prev_warn = 0; | |
12843 | ||
12844 | /* Avoid repeating the same warning multiple times. */ | |
dda8d76d | 12845 | if (prev_warn != filedata->file_header.e_machine) |
bee0ee85 | 12846 | error (_("Missing knowledge of 32-bit reloc types used in DWARF sections of machine number %d\n"), |
dda8d76d NC |
12847 | filedata->file_header.e_machine); |
12848 | prev_warn = filedata->file_header.e_machine; | |
bee0ee85 NC |
12849 | return FALSE; |
12850 | } | |
aca88567 NC |
12851 | } |
12852 | } | |
12853 | ||
12854 | /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is | |
12855 | a 32-bit pc-relative RELA relocation used in DWARF debug sections. */ | |
12856 | ||
12857 | static bfd_boolean | |
dda8d76d | 12858 | is_32bit_pcrel_reloc (Filedata * filedata, unsigned int reloc_type) |
aca88567 | 12859 | { |
dda8d76d | 12860 | switch (filedata->file_header.e_machine) |
d347c9df | 12861 | /* Please keep this table alpha-sorted for ease of visual lookup. */ |
aca88567 | 12862 | { |
41e92641 | 12863 | case EM_386: |
22abe556 | 12864 | case EM_IAMCU: |
3e0873ac | 12865 | return reloc_type == 2; /* R_386_PC32. */ |
aca88567 | 12866 | case EM_68K: |
3e0873ac | 12867 | return reloc_type == 4; /* R_68K_PC32. */ |
a06ea964 NC |
12868 | case EM_AARCH64: |
12869 | return reloc_type == 261; /* R_AARCH64_PREL32 */ | |
cfb8c092 NC |
12870 | case EM_ADAPTEVA_EPIPHANY: |
12871 | return reloc_type == 6; | |
aca88567 NC |
12872 | case EM_ALPHA: |
12873 | return reloc_type == 10; /* R_ALPHA_SREL32. */ | |
726c18e1 CZ |
12874 | case EM_ARC_COMPACT: |
12875 | case EM_ARC_COMPACT2: | |
12876 | return reloc_type == 49; /* R_ARC_32_PCREL. */ | |
41e92641 | 12877 | case EM_ARM: |
3e0873ac | 12878 | return reloc_type == 3; /* R_ARM_REL32 */ |
d347c9df PS |
12879 | case EM_AVR_OLD: |
12880 | case EM_AVR: | |
12881 | return reloc_type == 36; /* R_AVR_32_PCREL. */ | |
137b6b5f AM |
12882 | case EM_MICROBLAZE: |
12883 | return reloc_type == 2; /* R_MICROBLAZE_32_PCREL. */ | |
73589c9d CS |
12884 | case EM_OR1K: |
12885 | return reloc_type == 9; /* R_OR1K_32_PCREL. */ | |
aca88567 | 12886 | case EM_PARISC: |
85acf597 | 12887 | return reloc_type == 9; /* R_PARISC_PCREL32. */ |
aca88567 NC |
12888 | case EM_PPC: |
12889 | return reloc_type == 26; /* R_PPC_REL32. */ | |
12890 | case EM_PPC64: | |
3e0873ac | 12891 | return reloc_type == 26; /* R_PPC64_REL32. */ |
25cbdcbb AS |
12892 | case EM_RISCV: |
12893 | return reloc_type == 57; /* R_RISCV_32_PCREL. */ | |
aca88567 NC |
12894 | case EM_S390_OLD: |
12895 | case EM_S390: | |
3e0873ac | 12896 | return reloc_type == 5; /* R_390_PC32. */ |
aca88567 | 12897 | case EM_SH: |
3e0873ac | 12898 | return reloc_type == 2; /* R_SH_REL32. */ |
aca88567 NC |
12899 | case EM_SPARC32PLUS: |
12900 | case EM_SPARCV9: | |
12901 | case EM_SPARC: | |
3e0873ac | 12902 | return reloc_type == 6; /* R_SPARC_DISP32. */ |
a7dd7d05 AM |
12903 | case EM_SPU: |
12904 | return reloc_type == 13; /* R_SPU_REL32. */ | |
aa137e4d NC |
12905 | case EM_TILEGX: |
12906 | return reloc_type == 6; /* R_TILEGX_32_PCREL. */ | |
12907 | case EM_TILEPRO: | |
12908 | return reloc_type == 4; /* R_TILEPRO_32_PCREL. */ | |
619ed720 EB |
12909 | case EM_VISIUM: |
12910 | return reloc_type == 6; /* R_VISIUM_32_PCREL */ | |
aca88567 | 12911 | case EM_X86_64: |
8a9036a4 | 12912 | case EM_L1OM: |
7a9068fe | 12913 | case EM_K1OM: |
3e0873ac | 12914 | return reloc_type == 2; /* R_X86_64_PC32. */ |
2057d69d CZ |
12915 | case EM_VAX: |
12916 | return reloc_type == 4; /* R_VAX_PCREL32. */ | |
2fcb9706 BW |
12917 | case EM_XTENSA_OLD: |
12918 | case EM_XTENSA: | |
12919 | return reloc_type == 14; /* R_XTENSA_32_PCREL. */ | |
aca88567 NC |
12920 | default: |
12921 | /* Do not abort or issue an error message here. Not all targets use | |
12922 | pc-relative 32-bit relocs in their DWARF debug information and we | |
12923 | have already tested for target coverage in is_32bit_abs_reloc. A | |
cf13d699 NC |
12924 | more helpful warning message will be generated by apply_relocations |
12925 | anyway, so just return. */ | |
aca88567 NC |
12926 | return FALSE; |
12927 | } | |
12928 | } | |
12929 | ||
12930 | /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is | |
12931 | a 64-bit absolute RELA relocation used in DWARF debug sections. */ | |
12932 | ||
12933 | static bfd_boolean | |
dda8d76d | 12934 | is_64bit_abs_reloc (Filedata * filedata, unsigned int reloc_type) |
aca88567 | 12935 | { |
dda8d76d | 12936 | switch (filedata->file_header.e_machine) |
aca88567 | 12937 | { |
a06ea964 NC |
12938 | case EM_AARCH64: |
12939 | return reloc_type == 257; /* R_AARCH64_ABS64. */ | |
aca88567 NC |
12940 | case EM_ALPHA: |
12941 | return reloc_type == 2; /* R_ALPHA_REFQUAD. */ | |
3730236a | 12942 | case EM_IA_64: |
262cdac7 AM |
12943 | return (reloc_type == 0x26 /* R_IA64_DIR64MSB. */ |
12944 | || reloc_type == 0x27 /* R_IA64_DIR64LSB. */); | |
3e0873ac NC |
12945 | case EM_PARISC: |
12946 | return reloc_type == 80; /* R_PARISC_DIR64. */ | |
aca88567 NC |
12947 | case EM_PPC64: |
12948 | return reloc_type == 38; /* R_PPC64_ADDR64. */ | |
e23eba97 NC |
12949 | case EM_RISCV: |
12950 | return reloc_type == 2; /* R_RISCV_64. */ | |
aca88567 NC |
12951 | case EM_SPARC32PLUS: |
12952 | case EM_SPARCV9: | |
12953 | case EM_SPARC: | |
714da62f NC |
12954 | return reloc_type == 32 /* R_SPARC_64. */ |
12955 | || reloc_type == 54; /* R_SPARC_UA64. */ | |
aca88567 | 12956 | case EM_X86_64: |
8a9036a4 | 12957 | case EM_L1OM: |
7a9068fe | 12958 | case EM_K1OM: |
aca88567 | 12959 | return reloc_type == 1; /* R_X86_64_64. */ |
e819ade1 AS |
12960 | case EM_S390_OLD: |
12961 | case EM_S390: | |
aa137e4d NC |
12962 | return reloc_type == 22; /* R_S390_64. */ |
12963 | case EM_TILEGX: | |
12964 | return reloc_type == 1; /* R_TILEGX_64. */ | |
85a82265 | 12965 | case EM_MIPS: |
aa137e4d | 12966 | return reloc_type == 18; /* R_MIPS_64. */ |
aca88567 NC |
12967 | default: |
12968 | return FALSE; | |
12969 | } | |
12970 | } | |
12971 | ||
85acf597 RH |
12972 | /* Like is_32bit_pcrel_reloc except that it returns TRUE iff RELOC_TYPE is |
12973 | a 64-bit pc-relative RELA relocation used in DWARF debug sections. */ | |
12974 | ||
12975 | static bfd_boolean | |
dda8d76d | 12976 | is_64bit_pcrel_reloc (Filedata * filedata, unsigned int reloc_type) |
85acf597 | 12977 | { |
dda8d76d | 12978 | switch (filedata->file_header.e_machine) |
85acf597 | 12979 | { |
a06ea964 NC |
12980 | case EM_AARCH64: |
12981 | return reloc_type == 260; /* R_AARCH64_PREL64. */ | |
85acf597 | 12982 | case EM_ALPHA: |
aa137e4d | 12983 | return reloc_type == 11; /* R_ALPHA_SREL64. */ |
85acf597 | 12984 | case EM_IA_64: |
262cdac7 AM |
12985 | return (reloc_type == 0x4e /* R_IA64_PCREL64MSB. */ |
12986 | || reloc_type == 0x4f /* R_IA64_PCREL64LSB. */); | |
85acf597 | 12987 | case EM_PARISC: |
aa137e4d | 12988 | return reloc_type == 72; /* R_PARISC_PCREL64. */ |
85acf597 | 12989 | case EM_PPC64: |
aa137e4d | 12990 | return reloc_type == 44; /* R_PPC64_REL64. */ |
85acf597 RH |
12991 | case EM_SPARC32PLUS: |
12992 | case EM_SPARCV9: | |
12993 | case EM_SPARC: | |
aa137e4d | 12994 | return reloc_type == 46; /* R_SPARC_DISP64. */ |
85acf597 | 12995 | case EM_X86_64: |
8a9036a4 | 12996 | case EM_L1OM: |
7a9068fe | 12997 | case EM_K1OM: |
aa137e4d | 12998 | return reloc_type == 24; /* R_X86_64_PC64. */ |
85acf597 RH |
12999 | case EM_S390_OLD: |
13000 | case EM_S390: | |
aa137e4d NC |
13001 | return reloc_type == 23; /* R_S390_PC64. */ |
13002 | case EM_TILEGX: | |
13003 | return reloc_type == 5; /* R_TILEGX_64_PCREL. */ | |
85acf597 RH |
13004 | default: |
13005 | return FALSE; | |
13006 | } | |
13007 | } | |
13008 | ||
4dc3c23d AM |
13009 | /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is |
13010 | a 24-bit absolute RELA relocation used in DWARF debug sections. */ | |
13011 | ||
13012 | static bfd_boolean | |
dda8d76d | 13013 | is_24bit_abs_reloc (Filedata * filedata, unsigned int reloc_type) |
4dc3c23d | 13014 | { |
dda8d76d | 13015 | switch (filedata->file_header.e_machine) |
4dc3c23d AM |
13016 | { |
13017 | case EM_CYGNUS_MN10200: | |
13018 | case EM_MN10200: | |
13019 | return reloc_type == 4; /* R_MN10200_24. */ | |
3ee6e4fb NC |
13020 | case EM_FT32: |
13021 | return reloc_type == 5; /* R_FT32_20. */ | |
6655dba2 SB |
13022 | case EM_Z80: |
13023 | return reloc_type == 5; /* R_Z80_24. */ | |
4dc3c23d AM |
13024 | default: |
13025 | return FALSE; | |
13026 | } | |
13027 | } | |
13028 | ||
aca88567 NC |
13029 | /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is |
13030 | a 16-bit absolute RELA relocation used in DWARF debug sections. */ | |
13031 | ||
13032 | static bfd_boolean | |
dda8d76d | 13033 | is_16bit_abs_reloc (Filedata * filedata, unsigned int reloc_type) |
4b78141a | 13034 | { |
d347c9df | 13035 | /* Please keep this table alpha-sorted for ease of visual lookup. */ |
dda8d76d | 13036 | switch (filedata->file_header.e_machine) |
4b78141a | 13037 | { |
886a2506 NC |
13038 | case EM_ARC: |
13039 | case EM_ARC_COMPACT: | |
13040 | case EM_ARC_COMPACT2: | |
13041 | return reloc_type == 2; /* R_ARC_16. */ | |
d347c9df PS |
13042 | case EM_ADAPTEVA_EPIPHANY: |
13043 | return reloc_type == 5; | |
aca88567 NC |
13044 | case EM_AVR_OLD: |
13045 | case EM_AVR: | |
13046 | return reloc_type == 4; /* R_AVR_16. */ | |
41e92641 NC |
13047 | case EM_CYGNUS_D10V: |
13048 | case EM_D10V: | |
13049 | return reloc_type == 3; /* R_D10V_16. */ | |
81b42bca JB |
13050 | case EM_FT32: |
13051 | return reloc_type == 2; /* R_FT32_16. */ | |
4b78141a NC |
13052 | case EM_H8S: |
13053 | case EM_H8_300: | |
13054 | case EM_H8_300H: | |
aca88567 NC |
13055 | return reloc_type == R_H8_DIR16; |
13056 | case EM_IP2K_OLD: | |
13057 | case EM_IP2K: | |
13058 | return reloc_type == 1; /* R_IP2K_16. */ | |
ff7eeb89 | 13059 | case EM_M32C_OLD: |
f4236fe4 DD |
13060 | case EM_M32C: |
13061 | return reloc_type == 1; /* R_M32C_16 */ | |
d347c9df PS |
13062 | case EM_CYGNUS_MN10200: |
13063 | case EM_MN10200: | |
13064 | return reloc_type == 2; /* R_MN10200_16. */ | |
13065 | case EM_CYGNUS_MN10300: | |
13066 | case EM_MN10300: | |
13067 | return reloc_type == 2; /* R_MN10300_16. */ | |
aca88567 | 13068 | case EM_MSP430: |
dda8d76d | 13069 | if (uses_msp430x_relocs (filedata)) |
13761a11 | 13070 | return reloc_type == 2; /* R_MSP430_ABS16. */ |
1a0670f3 | 13071 | /* Fall through. */ |
78c8d46c | 13072 | case EM_MSP430_OLD: |
aca88567 | 13073 | return reloc_type == 5; /* R_MSP430_16_BYTE. */ |
35c08157 KLC |
13074 | case EM_NDS32: |
13075 | return reloc_type == 19; /* R_NDS32_RELA. */ | |
3e0873ac | 13076 | case EM_ALTERA_NIOS2: |
36591ba1 | 13077 | return reloc_type == 13; /* R_NIOS2_BFD_RELOC_16. */ |
3e0873ac NC |
13078 | case EM_NIOS32: |
13079 | return reloc_type == 9; /* R_NIOS_16. */ | |
73589c9d CS |
13080 | case EM_OR1K: |
13081 | return reloc_type == 2; /* R_OR1K_16. */ | |
39e07931 AS |
13082 | case EM_RISCV: |
13083 | return reloc_type == 55; /* R_RISCV_SET16. */ | |
2b100bb5 DD |
13084 | case EM_TI_PRU: |
13085 | return reloc_type == 8; /* R_PRU_BFD_RELOC_16. */ | |
40b36596 JM |
13086 | case EM_TI_C6000: |
13087 | return reloc_type == 2; /* R_C6000_ABS16. */ | |
d347c9df PS |
13088 | case EM_VISIUM: |
13089 | return reloc_type == 2; /* R_VISIUM_16. */ | |
c29aca4a NC |
13090 | case EM_XC16X: |
13091 | case EM_C166: | |
13092 | return reloc_type == 2; /* R_XC16C_ABS_16. */ | |
f6c1a2d5 NC |
13093 | case EM_XGATE: |
13094 | return reloc_type == 3; /* R_XGATE_16. */ | |
6655dba2 SB |
13095 | case EM_Z80: |
13096 | return reloc_type == 4; /* R_Z80_16. */ | |
4b78141a | 13097 | default: |
aca88567 | 13098 | return FALSE; |
4b78141a NC |
13099 | } |
13100 | } | |
13101 | ||
39e07931 AS |
13102 | /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is |
13103 | a 8-bit absolute RELA relocation used in DWARF debug sections. */ | |
13104 | ||
13105 | static bfd_boolean | |
13106 | is_8bit_abs_reloc (Filedata * filedata, unsigned int reloc_type) | |
13107 | { | |
13108 | switch (filedata->file_header.e_machine) | |
13109 | { | |
13110 | case EM_RISCV: | |
13111 | return reloc_type == 54; /* R_RISCV_SET8. */ | |
6655dba2 SB |
13112 | case EM_Z80: |
13113 | return reloc_type == 1; /* R_Z80_8. */ | |
39e07931 AS |
13114 | default: |
13115 | return FALSE; | |
13116 | } | |
13117 | } | |
13118 | ||
13119 | /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is | |
13120 | a 6-bit absolute RELA relocation used in DWARF debug sections. */ | |
13121 | ||
13122 | static bfd_boolean | |
13123 | is_6bit_abs_reloc (Filedata * filedata, unsigned int reloc_type) | |
13124 | { | |
13125 | switch (filedata->file_header.e_machine) | |
13126 | { | |
13127 | case EM_RISCV: | |
13128 | return reloc_type == 53; /* R_RISCV_SET6. */ | |
13129 | default: | |
13130 | return FALSE; | |
13131 | } | |
13132 | } | |
13133 | ||
03336641 JW |
13134 | /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is |
13135 | a 32-bit inplace add RELA relocation used in DWARF debug sections. */ | |
13136 | ||
13137 | static bfd_boolean | |
13138 | is_32bit_inplace_add_reloc (Filedata * filedata, unsigned int reloc_type) | |
13139 | { | |
13140 | /* Please keep this table alpha-sorted for ease of visual lookup. */ | |
13141 | switch (filedata->file_header.e_machine) | |
13142 | { | |
13143 | case EM_RISCV: | |
13144 | return reloc_type == 35; /* R_RISCV_ADD32. */ | |
13145 | default: | |
13146 | return FALSE; | |
13147 | } | |
13148 | } | |
13149 | ||
13150 | /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is | |
13151 | a 32-bit inplace sub RELA relocation used in DWARF debug sections. */ | |
13152 | ||
13153 | static bfd_boolean | |
13154 | is_32bit_inplace_sub_reloc (Filedata * filedata, unsigned int reloc_type) | |
13155 | { | |
13156 | /* Please keep this table alpha-sorted for ease of visual lookup. */ | |
13157 | switch (filedata->file_header.e_machine) | |
13158 | { | |
13159 | case EM_RISCV: | |
13160 | return reloc_type == 39; /* R_RISCV_SUB32. */ | |
13161 | default: | |
13162 | return FALSE; | |
13163 | } | |
13164 | } | |
13165 | ||
13166 | /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is | |
13167 | a 64-bit inplace add RELA relocation used in DWARF debug sections. */ | |
13168 | ||
13169 | static bfd_boolean | |
13170 | is_64bit_inplace_add_reloc (Filedata * filedata, unsigned int reloc_type) | |
13171 | { | |
13172 | /* Please keep this table alpha-sorted for ease of visual lookup. */ | |
13173 | switch (filedata->file_header.e_machine) | |
13174 | { | |
13175 | case EM_RISCV: | |
13176 | return reloc_type == 36; /* R_RISCV_ADD64. */ | |
13177 | default: | |
13178 | return FALSE; | |
13179 | } | |
13180 | } | |
13181 | ||
13182 | /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is | |
13183 | a 64-bit inplace sub RELA relocation used in DWARF debug sections. */ | |
13184 | ||
13185 | static bfd_boolean | |
13186 | is_64bit_inplace_sub_reloc (Filedata * filedata, unsigned int reloc_type) | |
13187 | { | |
13188 | /* Please keep this table alpha-sorted for ease of visual lookup. */ | |
13189 | switch (filedata->file_header.e_machine) | |
13190 | { | |
13191 | case EM_RISCV: | |
13192 | return reloc_type == 40; /* R_RISCV_SUB64. */ | |
13193 | default: | |
13194 | return FALSE; | |
13195 | } | |
13196 | } | |
13197 | ||
13198 | /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is | |
13199 | a 16-bit inplace add RELA relocation used in DWARF debug sections. */ | |
13200 | ||
13201 | static bfd_boolean | |
13202 | is_16bit_inplace_add_reloc (Filedata * filedata, unsigned int reloc_type) | |
13203 | { | |
13204 | /* Please keep this table alpha-sorted for ease of visual lookup. */ | |
13205 | switch (filedata->file_header.e_machine) | |
13206 | { | |
13207 | case EM_RISCV: | |
13208 | return reloc_type == 34; /* R_RISCV_ADD16. */ | |
13209 | default: | |
13210 | return FALSE; | |
13211 | } | |
13212 | } | |
13213 | ||
13214 | /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is | |
13215 | a 16-bit inplace sub RELA relocation used in DWARF debug sections. */ | |
13216 | ||
13217 | static bfd_boolean | |
13218 | is_16bit_inplace_sub_reloc (Filedata * filedata, unsigned int reloc_type) | |
13219 | { | |
13220 | /* Please keep this table alpha-sorted for ease of visual lookup. */ | |
13221 | switch (filedata->file_header.e_machine) | |
13222 | { | |
13223 | case EM_RISCV: | |
13224 | return reloc_type == 38; /* R_RISCV_SUB16. */ | |
13225 | default: | |
13226 | return FALSE; | |
13227 | } | |
13228 | } | |
13229 | ||
13230 | /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is | |
13231 | a 8-bit inplace add RELA relocation used in DWARF debug sections. */ | |
13232 | ||
13233 | static bfd_boolean | |
13234 | is_8bit_inplace_add_reloc (Filedata * filedata, unsigned int reloc_type) | |
13235 | { | |
13236 | /* Please keep this table alpha-sorted for ease of visual lookup. */ | |
13237 | switch (filedata->file_header.e_machine) | |
13238 | { | |
13239 | case EM_RISCV: | |
13240 | return reloc_type == 33; /* R_RISCV_ADD8. */ | |
13241 | default: | |
13242 | return FALSE; | |
13243 | } | |
13244 | } | |
13245 | ||
13246 | /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is | |
13247 | a 8-bit inplace sub RELA relocation used in DWARF debug sections. */ | |
13248 | ||
13249 | static bfd_boolean | |
13250 | is_8bit_inplace_sub_reloc (Filedata * filedata, unsigned int reloc_type) | |
13251 | { | |
13252 | /* Please keep this table alpha-sorted for ease of visual lookup. */ | |
13253 | switch (filedata->file_header.e_machine) | |
13254 | { | |
13255 | case EM_RISCV: | |
13256 | return reloc_type == 37; /* R_RISCV_SUB8. */ | |
13257 | default: | |
13258 | return FALSE; | |
13259 | } | |
13260 | } | |
13261 | ||
39e07931 AS |
13262 | /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is |
13263 | a 6-bit inplace sub RELA relocation used in DWARF debug sections. */ | |
13264 | ||
13265 | static bfd_boolean | |
13266 | is_6bit_inplace_sub_reloc (Filedata * filedata, unsigned int reloc_type) | |
13267 | { | |
13268 | switch (filedata->file_header.e_machine) | |
13269 | { | |
13270 | case EM_RISCV: | |
13271 | return reloc_type == 52; /* R_RISCV_SUB6. */ | |
13272 | default: | |
13273 | return FALSE; | |
13274 | } | |
13275 | } | |
13276 | ||
2a7b2e88 JK |
13277 | /* Returns TRUE iff RELOC_TYPE is a NONE relocation used for discarded |
13278 | relocation entries (possibly formerly used for SHT_GROUP sections). */ | |
13279 | ||
13280 | static bfd_boolean | |
dda8d76d | 13281 | is_none_reloc (Filedata * filedata, unsigned int reloc_type) |
2a7b2e88 | 13282 | { |
dda8d76d | 13283 | switch (filedata->file_header.e_machine) |
2a7b2e88 | 13284 | { |
cb8f3167 | 13285 | case EM_386: /* R_386_NONE. */ |
d347c9df | 13286 | case EM_68K: /* R_68K_NONE. */ |
cfb8c092 | 13287 | case EM_ADAPTEVA_EPIPHANY: |
d347c9df PS |
13288 | case EM_ALPHA: /* R_ALPHA_NONE. */ |
13289 | case EM_ALTERA_NIOS2: /* R_NIOS2_NONE. */ | |
886a2506 | 13290 | case EM_ARC: /* R_ARC_NONE. */ |
886a2506 | 13291 | case EM_ARC_COMPACT2: /* R_ARC_NONE. */ |
d347c9df | 13292 | case EM_ARC_COMPACT: /* R_ARC_NONE. */ |
cb8f3167 | 13293 | case EM_ARM: /* R_ARM_NONE. */ |
d347c9df | 13294 | case EM_C166: /* R_XC16X_NONE. */ |
cb8f3167 | 13295 | case EM_CRIS: /* R_CRIS_NONE. */ |
d347c9df PS |
13296 | case EM_FT32: /* R_FT32_NONE. */ |
13297 | case EM_IA_64: /* R_IA64_NONE. */ | |
7a9068fe | 13298 | case EM_K1OM: /* R_X86_64_NONE. */ |
d347c9df PS |
13299 | case EM_L1OM: /* R_X86_64_NONE. */ |
13300 | case EM_M32R: /* R_M32R_NONE. */ | |
13301 | case EM_MIPS: /* R_MIPS_NONE. */ | |
cb8f3167 | 13302 | case EM_MN10300: /* R_MN10300_NONE. */ |
5506d11a | 13303 | case EM_MOXIE: /* R_MOXIE_NONE. */ |
d347c9df PS |
13304 | case EM_NIOS32: /* R_NIOS_NONE. */ |
13305 | case EM_OR1K: /* R_OR1K_NONE. */ | |
13306 | case EM_PARISC: /* R_PARISC_NONE. */ | |
13307 | case EM_PPC64: /* R_PPC64_NONE. */ | |
13308 | case EM_PPC: /* R_PPC_NONE. */ | |
e23eba97 | 13309 | case EM_RISCV: /* R_RISCV_NONE. */ |
d347c9df PS |
13310 | case EM_S390: /* R_390_NONE. */ |
13311 | case EM_S390_OLD: | |
13312 | case EM_SH: /* R_SH_NONE. */ | |
13313 | case EM_SPARC32PLUS: | |
13314 | case EM_SPARC: /* R_SPARC_NONE. */ | |
13315 | case EM_SPARCV9: | |
aa137e4d NC |
13316 | case EM_TILEGX: /* R_TILEGX_NONE. */ |
13317 | case EM_TILEPRO: /* R_TILEPRO_NONE. */ | |
d347c9df PS |
13318 | case EM_TI_C6000:/* R_C6000_NONE. */ |
13319 | case EM_X86_64: /* R_X86_64_NONE. */ | |
c29aca4a | 13320 | case EM_XC16X: |
6655dba2 | 13321 | case EM_Z80: /* R_Z80_NONE. */ |
f96bd6c2 | 13322 | case EM_WEBASSEMBLY: /* R_WASM32_NONE. */ |
cb8f3167 | 13323 | return reloc_type == 0; |
d347c9df | 13324 | |
a06ea964 NC |
13325 | case EM_AARCH64: |
13326 | return reloc_type == 0 || reloc_type == 256; | |
d347c9df PS |
13327 | case EM_AVR_OLD: |
13328 | case EM_AVR: | |
13329 | return (reloc_type == 0 /* R_AVR_NONE. */ | |
13330 | || reloc_type == 30 /* R_AVR_DIFF8. */ | |
13331 | || reloc_type == 31 /* R_AVR_DIFF16. */ | |
13332 | || reloc_type == 32 /* R_AVR_DIFF32. */); | |
13333 | case EM_METAG: | |
13334 | return reloc_type == 3; /* R_METAG_NONE. */ | |
35c08157 KLC |
13335 | case EM_NDS32: |
13336 | return (reloc_type == 0 /* R_XTENSA_NONE. */ | |
13337 | || reloc_type == 204 /* R_NDS32_DIFF8. */ | |
13338 | || reloc_type == 205 /* R_NDS32_DIFF16. */ | |
13339 | || reloc_type == 206 /* R_NDS32_DIFF32. */ | |
13340 | || reloc_type == 207 /* R_NDS32_ULEB128. */); | |
2b100bb5 DD |
13341 | case EM_TI_PRU: |
13342 | return (reloc_type == 0 /* R_PRU_NONE. */ | |
13343 | || reloc_type == 65 /* R_PRU_DIFF8. */ | |
13344 | || reloc_type == 66 /* R_PRU_DIFF16. */ | |
13345 | || reloc_type == 67 /* R_PRU_DIFF32. */); | |
58332dda JK |
13346 | case EM_XTENSA_OLD: |
13347 | case EM_XTENSA: | |
4dc3c23d AM |
13348 | return (reloc_type == 0 /* R_XTENSA_NONE. */ |
13349 | || reloc_type == 17 /* R_XTENSA_DIFF8. */ | |
13350 | || reloc_type == 18 /* R_XTENSA_DIFF16. */ | |
13351 | || reloc_type == 19 /* R_XTENSA_DIFF32. */); | |
2a7b2e88 JK |
13352 | } |
13353 | return FALSE; | |
13354 | } | |
13355 | ||
d1c4b12b NC |
13356 | /* Returns TRUE if there is a relocation against |
13357 | section NAME at OFFSET bytes. */ | |
13358 | ||
13359 | bfd_boolean | |
13360 | reloc_at (struct dwarf_section * dsec, dwarf_vma offset) | |
13361 | { | |
13362 | Elf_Internal_Rela * relocs; | |
13363 | Elf_Internal_Rela * rp; | |
13364 | ||
13365 | if (dsec == NULL || dsec->reloc_info == NULL) | |
13366 | return FALSE; | |
13367 | ||
13368 | relocs = (Elf_Internal_Rela *) dsec->reloc_info; | |
13369 | ||
13370 | for (rp = relocs; rp < relocs + dsec->num_relocs; ++rp) | |
13371 | if (rp->r_offset == offset) | |
13372 | return TRUE; | |
13373 | ||
13374 | return FALSE; | |
13375 | } | |
13376 | ||
cf13d699 | 13377 | /* Apply relocations to a section. |
32ec8896 NC |
13378 | Returns TRUE upon success, FALSE otherwise. |
13379 | If RELOCS_RETURN is non-NULL then it is set to point to the loaded relocs. | |
13380 | It is then the caller's responsibility to free them. NUM_RELOCS_RETURN | |
13381 | will be set to the number of relocs loaded. | |
13382 | ||
cf13d699 | 13383 | Note: So far support has been added only for those relocations |
32ec8896 NC |
13384 | which can be found in debug sections. FIXME: Add support for |
13385 | more relocations ? */ | |
1b315056 | 13386 | |
32ec8896 | 13387 | static bfd_boolean |
dda8d76d | 13388 | apply_relocations (Filedata * filedata, |
d1c4b12b NC |
13389 | const Elf_Internal_Shdr * section, |
13390 | unsigned char * start, | |
13391 | bfd_size_type size, | |
1449284b | 13392 | void ** relocs_return, |
d1c4b12b | 13393 | unsigned long * num_relocs_return) |
1b315056 | 13394 | { |
cf13d699 | 13395 | Elf_Internal_Shdr * relsec; |
0d2a7a93 | 13396 | unsigned char * end = start + size; |
cb8f3167 | 13397 | |
d1c4b12b NC |
13398 | if (relocs_return != NULL) |
13399 | { | |
13400 | * (Elf_Internal_Rela **) relocs_return = NULL; | |
13401 | * num_relocs_return = 0; | |
13402 | } | |
13403 | ||
dda8d76d | 13404 | if (filedata->file_header.e_type != ET_REL) |
32ec8896 NC |
13405 | /* No relocs to apply. */ |
13406 | return TRUE; | |
1b315056 | 13407 | |
cf13d699 | 13408 | /* Find the reloc section associated with the section. */ |
dda8d76d NC |
13409 | for (relsec = filedata->section_headers; |
13410 | relsec < filedata->section_headers + filedata->file_header.e_shnum; | |
5b18a4bc | 13411 | ++relsec) |
252b5132 | 13412 | { |
41e92641 NC |
13413 | bfd_boolean is_rela; |
13414 | unsigned long num_relocs; | |
2cf0635d NC |
13415 | Elf_Internal_Rela * relocs; |
13416 | Elf_Internal_Rela * rp; | |
13417 | Elf_Internal_Shdr * symsec; | |
13418 | Elf_Internal_Sym * symtab; | |
ba5cdace | 13419 | unsigned long num_syms; |
2cf0635d | 13420 | Elf_Internal_Sym * sym; |
252b5132 | 13421 | |
41e92641 | 13422 | if ((relsec->sh_type != SHT_RELA && relsec->sh_type != SHT_REL) |
dda8d76d NC |
13423 | || relsec->sh_info >= filedata->file_header.e_shnum |
13424 | || filedata->section_headers + relsec->sh_info != section | |
c256ffe7 | 13425 | || relsec->sh_size == 0 |
dda8d76d | 13426 | || relsec->sh_link >= filedata->file_header.e_shnum) |
5b18a4bc | 13427 | continue; |
428409d5 | 13428 | |
a788aedd AM |
13429 | symsec = filedata->section_headers + relsec->sh_link; |
13430 | if (symsec->sh_type != SHT_SYMTAB | |
13431 | && symsec->sh_type != SHT_DYNSYM) | |
13432 | return FALSE; | |
13433 | ||
41e92641 NC |
13434 | is_rela = relsec->sh_type == SHT_RELA; |
13435 | ||
13436 | if (is_rela) | |
13437 | { | |
dda8d76d | 13438 | if (!slurp_rela_relocs (filedata, relsec->sh_offset, |
3f5e193b | 13439 | relsec->sh_size, & relocs, & num_relocs)) |
32ec8896 | 13440 | return FALSE; |
41e92641 NC |
13441 | } |
13442 | else | |
13443 | { | |
dda8d76d | 13444 | if (!slurp_rel_relocs (filedata, relsec->sh_offset, |
3f5e193b | 13445 | relsec->sh_size, & relocs, & num_relocs)) |
32ec8896 | 13446 | return FALSE; |
41e92641 NC |
13447 | } |
13448 | ||
13449 | /* SH uses RELA but uses in place value instead of the addend field. */ | |
dda8d76d | 13450 | if (filedata->file_header.e_machine == EM_SH) |
41e92641 | 13451 | is_rela = FALSE; |
428409d5 | 13452 | |
dda8d76d | 13453 | symtab = GET_ELF_SYMBOLS (filedata, symsec, & num_syms); |
103f02d3 | 13454 | |
41e92641 | 13455 | for (rp = relocs; rp < relocs + num_relocs; ++rp) |
252b5132 | 13456 | { |
41e92641 NC |
13457 | bfd_vma addend; |
13458 | unsigned int reloc_type; | |
13459 | unsigned int reloc_size; | |
03336641 JW |
13460 | bfd_boolean reloc_inplace = FALSE; |
13461 | bfd_boolean reloc_subtract = FALSE; | |
91d6fa6a | 13462 | unsigned char * rloc; |
ba5cdace | 13463 | unsigned long sym_index; |
4b78141a | 13464 | |
dda8d76d | 13465 | reloc_type = get_reloc_type (filedata, rp->r_info); |
41e92641 | 13466 | |
dda8d76d | 13467 | if (target_specific_reloc_handling (filedata, rp, start, end, symtab, num_syms)) |
2a7b2e88 | 13468 | continue; |
dda8d76d | 13469 | else if (is_none_reloc (filedata, reloc_type)) |
98fb390a | 13470 | continue; |
dda8d76d NC |
13471 | else if (is_32bit_abs_reloc (filedata, reloc_type) |
13472 | || is_32bit_pcrel_reloc (filedata, reloc_type)) | |
aca88567 | 13473 | reloc_size = 4; |
dda8d76d NC |
13474 | else if (is_64bit_abs_reloc (filedata, reloc_type) |
13475 | || is_64bit_pcrel_reloc (filedata, reloc_type)) | |
aca88567 | 13476 | reloc_size = 8; |
dda8d76d | 13477 | else if (is_24bit_abs_reloc (filedata, reloc_type)) |
4dc3c23d | 13478 | reloc_size = 3; |
dda8d76d | 13479 | else if (is_16bit_abs_reloc (filedata, reloc_type)) |
aca88567 | 13480 | reloc_size = 2; |
39e07931 AS |
13481 | else if (is_8bit_abs_reloc (filedata, reloc_type) |
13482 | || is_6bit_abs_reloc (filedata, reloc_type)) | |
13483 | reloc_size = 1; | |
03336641 JW |
13484 | else if ((reloc_subtract = is_32bit_inplace_sub_reloc (filedata, |
13485 | reloc_type)) | |
13486 | || is_32bit_inplace_add_reloc (filedata, reloc_type)) | |
13487 | { | |
13488 | reloc_size = 4; | |
13489 | reloc_inplace = TRUE; | |
13490 | } | |
13491 | else if ((reloc_subtract = is_64bit_inplace_sub_reloc (filedata, | |
13492 | reloc_type)) | |
13493 | || is_64bit_inplace_add_reloc (filedata, reloc_type)) | |
13494 | { | |
13495 | reloc_size = 8; | |
13496 | reloc_inplace = TRUE; | |
13497 | } | |
13498 | else if ((reloc_subtract = is_16bit_inplace_sub_reloc (filedata, | |
13499 | reloc_type)) | |
13500 | || is_16bit_inplace_add_reloc (filedata, reloc_type)) | |
13501 | { | |
13502 | reloc_size = 2; | |
13503 | reloc_inplace = TRUE; | |
13504 | } | |
13505 | else if ((reloc_subtract = is_8bit_inplace_sub_reloc (filedata, | |
13506 | reloc_type)) | |
13507 | || is_8bit_inplace_add_reloc (filedata, reloc_type)) | |
13508 | { | |
13509 | reloc_size = 1; | |
13510 | reloc_inplace = TRUE; | |
13511 | } | |
39e07931 AS |
13512 | else if ((reloc_subtract = is_6bit_inplace_sub_reloc (filedata, |
13513 | reloc_type))) | |
13514 | { | |
13515 | reloc_size = 1; | |
13516 | reloc_inplace = TRUE; | |
13517 | } | |
aca88567 | 13518 | else |
4b78141a | 13519 | { |
bee0ee85 | 13520 | static unsigned int prev_reloc = 0; |
dda8d76d | 13521 | |
bee0ee85 NC |
13522 | if (reloc_type != prev_reloc) |
13523 | warn (_("unable to apply unsupported reloc type %d to section %s\n"), | |
dda8d76d | 13524 | reloc_type, printable_section_name (filedata, section)); |
bee0ee85 | 13525 | prev_reloc = reloc_type; |
4b78141a NC |
13526 | continue; |
13527 | } | |
103f02d3 | 13528 | |
91d6fa6a | 13529 | rloc = start + rp->r_offset; |
75802ccb | 13530 | if (!IN_RANGE (start, end, rloc, reloc_size)) |
700dd8b7 L |
13531 | { |
13532 | warn (_("skipping invalid relocation offset 0x%lx in section %s\n"), | |
13533 | (unsigned long) rp->r_offset, | |
dda8d76d | 13534 | printable_section_name (filedata, section)); |
700dd8b7 L |
13535 | continue; |
13536 | } | |
103f02d3 | 13537 | |
ba5cdace NC |
13538 | sym_index = (unsigned long) get_reloc_symindex (rp->r_info); |
13539 | if (sym_index >= num_syms) | |
13540 | { | |
13541 | warn (_("skipping invalid relocation symbol index 0x%lx in section %s\n"), | |
dda8d76d | 13542 | sym_index, printable_section_name (filedata, section)); |
ba5cdace NC |
13543 | continue; |
13544 | } | |
13545 | sym = symtab + sym_index; | |
41e92641 NC |
13546 | |
13547 | /* If the reloc has a symbol associated with it, | |
55f25fc3 L |
13548 | make sure that it is of an appropriate type. |
13549 | ||
13550 | Relocations against symbols without type can happen. | |
13551 | Gcc -feliminate-dwarf2-dups may generate symbols | |
13552 | without type for debug info. | |
13553 | ||
13554 | Icc generates relocations against function symbols | |
13555 | instead of local labels. | |
13556 | ||
13557 | Relocations against object symbols can happen, eg when | |
13558 | referencing a global array. For an example of this see | |
13559 | the _clz.o binary in libgcc.a. */ | |
aca88567 | 13560 | if (sym != symtab |
b8871f35 | 13561 | && ELF_ST_TYPE (sym->st_info) != STT_COMMON |
55f25fc3 | 13562 | && ELF_ST_TYPE (sym->st_info) > STT_SECTION) |
5b18a4bc | 13563 | { |
d3a49aa8 | 13564 | warn (_("skipping unexpected symbol type %s in section %s relocation %ld\n"), |
dda8d76d NC |
13565 | get_symbol_type (filedata, ELF_ST_TYPE (sym->st_info)), |
13566 | printable_section_name (filedata, relsec), | |
d3a49aa8 | 13567 | (long int)(rp - relocs)); |
aca88567 | 13568 | continue; |
5b18a4bc | 13569 | } |
252b5132 | 13570 | |
4dc3c23d AM |
13571 | addend = 0; |
13572 | if (is_rela) | |
13573 | addend += rp->r_addend; | |
c47320c3 AM |
13574 | /* R_XTENSA_32, R_PJ_DATA_DIR32 and R_D30V_32_NORMAL are |
13575 | partial_inplace. */ | |
4dc3c23d | 13576 | if (!is_rela |
dda8d76d | 13577 | || (filedata->file_header.e_machine == EM_XTENSA |
4dc3c23d | 13578 | && reloc_type == 1) |
dda8d76d NC |
13579 | || ((filedata->file_header.e_machine == EM_PJ |
13580 | || filedata->file_header.e_machine == EM_PJ_OLD) | |
c47320c3 | 13581 | && reloc_type == 1) |
dda8d76d NC |
13582 | || ((filedata->file_header.e_machine == EM_D30V |
13583 | || filedata->file_header.e_machine == EM_CYGNUS_D30V) | |
03336641 JW |
13584 | && reloc_type == 12) |
13585 | || reloc_inplace) | |
39e07931 AS |
13586 | { |
13587 | if (is_6bit_inplace_sub_reloc (filedata, reloc_type)) | |
13588 | addend += byte_get (rloc, reloc_size) & 0x3f; | |
13589 | else | |
13590 | addend += byte_get (rloc, reloc_size); | |
13591 | } | |
cb8f3167 | 13592 | |
dda8d76d NC |
13593 | if (is_32bit_pcrel_reloc (filedata, reloc_type) |
13594 | || is_64bit_pcrel_reloc (filedata, reloc_type)) | |
85acf597 RH |
13595 | { |
13596 | /* On HPPA, all pc-relative relocations are biased by 8. */ | |
dda8d76d | 13597 | if (filedata->file_header.e_machine == EM_PARISC) |
85acf597 | 13598 | addend -= 8; |
91d6fa6a | 13599 | byte_put (rloc, (addend + sym->st_value) - rp->r_offset, |
85acf597 RH |
13600 | reloc_size); |
13601 | } | |
39e07931 AS |
13602 | else if (is_6bit_abs_reloc (filedata, reloc_type) |
13603 | || is_6bit_inplace_sub_reloc (filedata, reloc_type)) | |
13604 | { | |
13605 | if (reloc_subtract) | |
13606 | addend -= sym->st_value; | |
13607 | else | |
13608 | addend += sym->st_value; | |
13609 | addend = (addend & 0x3f) | (byte_get (rloc, reloc_size) & 0xc0); | |
13610 | byte_put (rloc, addend, reloc_size); | |
13611 | } | |
03336641 JW |
13612 | else if (reloc_subtract) |
13613 | byte_put (rloc, addend - sym->st_value, reloc_size); | |
41e92641 | 13614 | else |
91d6fa6a | 13615 | byte_put (rloc, addend + sym->st_value, reloc_size); |
5b18a4bc | 13616 | } |
252b5132 | 13617 | |
5b18a4bc | 13618 | free (symtab); |
f84ce13b NC |
13619 | /* Let the target specific reloc processing code know that |
13620 | we have finished with these relocs. */ | |
dda8d76d | 13621 | target_specific_reloc_handling (filedata, NULL, NULL, NULL, NULL, 0); |
d1c4b12b NC |
13622 | |
13623 | if (relocs_return) | |
13624 | { | |
13625 | * (Elf_Internal_Rela **) relocs_return = relocs; | |
13626 | * num_relocs_return = num_relocs; | |
13627 | } | |
13628 | else | |
13629 | free (relocs); | |
13630 | ||
5b18a4bc NC |
13631 | break; |
13632 | } | |
32ec8896 | 13633 | |
dfc616fa | 13634 | return TRUE; |
5b18a4bc | 13635 | } |
103f02d3 | 13636 | |
cf13d699 | 13637 | #ifdef SUPPORT_DISASSEMBLY |
32ec8896 | 13638 | static bfd_boolean |
dda8d76d | 13639 | disassemble_section (Elf_Internal_Shdr * section, Filedata * filedata) |
cf13d699 | 13640 | { |
dda8d76d | 13641 | printf (_("\nAssembly dump of section %s\n"), printable_section_name (filedata, section)); |
cf13d699 | 13642 | |
74e1a04b | 13643 | /* FIXME: XXX -- to be done --- XXX */ |
cf13d699 | 13644 | |
32ec8896 | 13645 | return TRUE; |
cf13d699 NC |
13646 | } |
13647 | #endif | |
13648 | ||
13649 | /* Reads in the contents of SECTION from FILE, returning a pointer | |
13650 | to a malloc'ed buffer or NULL if something went wrong. */ | |
13651 | ||
13652 | static char * | |
dda8d76d | 13653 | get_section_contents (Elf_Internal_Shdr * section, Filedata * filedata) |
cf13d699 | 13654 | { |
dda8d76d | 13655 | bfd_size_type num_bytes = section->sh_size; |
cf13d699 NC |
13656 | |
13657 | if (num_bytes == 0 || section->sh_type == SHT_NOBITS) | |
13658 | { | |
c6b78c96 | 13659 | printf (_("Section '%s' has no data to dump.\n"), |
dda8d76d | 13660 | printable_section_name (filedata, section)); |
cf13d699 NC |
13661 | return NULL; |
13662 | } | |
13663 | ||
dda8d76d | 13664 | return (char *) get_data (NULL, filedata, section->sh_offset, 1, num_bytes, |
3f5e193b | 13665 | _("section contents")); |
cf13d699 NC |
13666 | } |
13667 | ||
0e602686 NC |
13668 | /* Uncompresses a section that was compressed using zlib, in place. */ |
13669 | ||
13670 | static bfd_boolean | |
dda8d76d NC |
13671 | uncompress_section_contents (unsigned char ** buffer, |
13672 | dwarf_size_type uncompressed_size, | |
13673 | dwarf_size_type * size) | |
0e602686 NC |
13674 | { |
13675 | dwarf_size_type compressed_size = *size; | |
13676 | unsigned char * compressed_buffer = *buffer; | |
13677 | unsigned char * uncompressed_buffer; | |
13678 | z_stream strm; | |
13679 | int rc; | |
13680 | ||
13681 | /* It is possible the section consists of several compressed | |
13682 | buffers concatenated together, so we uncompress in a loop. */ | |
13683 | /* PR 18313: The state field in the z_stream structure is supposed | |
13684 | to be invisible to the user (ie us), but some compilers will | |
13685 | still complain about it being used without initialisation. So | |
13686 | we first zero the entire z_stream structure and then set the fields | |
13687 | that we need. */ | |
13688 | memset (& strm, 0, sizeof strm); | |
13689 | strm.avail_in = compressed_size; | |
13690 | strm.next_in = (Bytef *) compressed_buffer; | |
13691 | strm.avail_out = uncompressed_size; | |
13692 | uncompressed_buffer = (unsigned char *) xmalloc (uncompressed_size); | |
13693 | ||
13694 | rc = inflateInit (& strm); | |
13695 | while (strm.avail_in > 0) | |
13696 | { | |
13697 | if (rc != Z_OK) | |
13698 | goto fail; | |
13699 | strm.next_out = ((Bytef *) uncompressed_buffer | |
13700 | + (uncompressed_size - strm.avail_out)); | |
13701 | rc = inflate (&strm, Z_FINISH); | |
13702 | if (rc != Z_STREAM_END) | |
13703 | goto fail; | |
13704 | rc = inflateReset (& strm); | |
13705 | } | |
13706 | rc = inflateEnd (& strm); | |
13707 | if (rc != Z_OK | |
13708 | || strm.avail_out != 0) | |
13709 | goto fail; | |
13710 | ||
13711 | *buffer = uncompressed_buffer; | |
13712 | *size = uncompressed_size; | |
13713 | return TRUE; | |
13714 | ||
13715 | fail: | |
13716 | free (uncompressed_buffer); | |
13717 | /* Indicate decompression failure. */ | |
13718 | *buffer = NULL; | |
13719 | return FALSE; | |
13720 | } | |
dd24e3da | 13721 | |
32ec8896 | 13722 | static bfd_boolean |
dda8d76d | 13723 | dump_section_as_strings (Elf_Internal_Shdr * section, Filedata * filedata) |
cf13d699 | 13724 | { |
0e602686 NC |
13725 | Elf_Internal_Shdr * relsec; |
13726 | bfd_size_type num_bytes; | |
fd8008d8 L |
13727 | unsigned char * data; |
13728 | unsigned char * end; | |
13729 | unsigned char * real_start; | |
13730 | unsigned char * start; | |
0e602686 | 13731 | bfd_boolean some_strings_shown; |
cf13d699 | 13732 | |
dda8d76d | 13733 | real_start = start = (unsigned char *) get_section_contents (section, filedata); |
cf13d699 | 13734 | if (start == NULL) |
c6b78c96 NC |
13735 | /* PR 21820: Do not fail if the section was empty. */ |
13736 | return (section->sh_size == 0 || section->sh_type == SHT_NOBITS) ? TRUE : FALSE; | |
13737 | ||
0e602686 | 13738 | num_bytes = section->sh_size; |
cf13d699 | 13739 | |
dda8d76d | 13740 | printf (_("\nString dump of section '%s':\n"), printable_section_name (filedata, section)); |
cf13d699 | 13741 | |
0e602686 NC |
13742 | if (decompress_dumps) |
13743 | { | |
13744 | dwarf_size_type new_size = num_bytes; | |
13745 | dwarf_size_type uncompressed_size = 0; | |
13746 | ||
13747 | if ((section->sh_flags & SHF_COMPRESSED) != 0) | |
13748 | { | |
13749 | Elf_Internal_Chdr chdr; | |
13750 | unsigned int compression_header_size | |
ebdf1ebf NC |
13751 | = get_compression_header (& chdr, (unsigned char *) start, |
13752 | num_bytes); | |
5844b465 NC |
13753 | if (compression_header_size == 0) |
13754 | /* An error message will have already been generated | |
13755 | by get_compression_header. */ | |
13756 | goto error_out; | |
0e602686 | 13757 | |
813dabb9 | 13758 | if (chdr.ch_type != ELFCOMPRESS_ZLIB) |
0e602686 | 13759 | { |
813dabb9 | 13760 | warn (_("section '%s' has unsupported compress type: %d\n"), |
dda8d76d | 13761 | printable_section_name (filedata, section), chdr.ch_type); |
f761cb13 | 13762 | goto error_out; |
813dabb9 | 13763 | } |
813dabb9 L |
13764 | uncompressed_size = chdr.ch_size; |
13765 | start += compression_header_size; | |
13766 | new_size -= compression_header_size; | |
0e602686 NC |
13767 | } |
13768 | else if (new_size > 12 && streq ((char *) start, "ZLIB")) | |
13769 | { | |
13770 | /* Read the zlib header. In this case, it should be "ZLIB" | |
13771 | followed by the uncompressed section size, 8 bytes in | |
13772 | big-endian order. */ | |
13773 | uncompressed_size = start[4]; uncompressed_size <<= 8; | |
13774 | uncompressed_size += start[5]; uncompressed_size <<= 8; | |
13775 | uncompressed_size += start[6]; uncompressed_size <<= 8; | |
13776 | uncompressed_size += start[7]; uncompressed_size <<= 8; | |
13777 | uncompressed_size += start[8]; uncompressed_size <<= 8; | |
13778 | uncompressed_size += start[9]; uncompressed_size <<= 8; | |
13779 | uncompressed_size += start[10]; uncompressed_size <<= 8; | |
13780 | uncompressed_size += start[11]; | |
13781 | start += 12; | |
13782 | new_size -= 12; | |
13783 | } | |
13784 | ||
1835f746 NC |
13785 | if (uncompressed_size) |
13786 | { | |
13787 | if (uncompress_section_contents (& start, | |
13788 | uncompressed_size, & new_size)) | |
13789 | num_bytes = new_size; | |
13790 | else | |
13791 | { | |
13792 | error (_("Unable to decompress section %s\n"), | |
dda8d76d | 13793 | printable_section_name (filedata, section)); |
f761cb13 | 13794 | goto error_out; |
1835f746 NC |
13795 | } |
13796 | } | |
bc303e5d NC |
13797 | else |
13798 | start = real_start; | |
0e602686 | 13799 | } |
fd8008d8 | 13800 | |
cf13d699 NC |
13801 | /* If the section being dumped has relocations against it the user might |
13802 | be expecting these relocations to have been applied. Check for this | |
13803 | case and issue a warning message in order to avoid confusion. | |
13804 | FIXME: Maybe we ought to have an option that dumps a section with | |
13805 | relocs applied ? */ | |
dda8d76d NC |
13806 | for (relsec = filedata->section_headers; |
13807 | relsec < filedata->section_headers + filedata->file_header.e_shnum; | |
cf13d699 NC |
13808 | ++relsec) |
13809 | { | |
13810 | if ((relsec->sh_type != SHT_RELA && relsec->sh_type != SHT_REL) | |
dda8d76d NC |
13811 | || relsec->sh_info >= filedata->file_header.e_shnum |
13812 | || filedata->section_headers + relsec->sh_info != section | |
cf13d699 | 13813 | || relsec->sh_size == 0 |
dda8d76d | 13814 | || relsec->sh_link >= filedata->file_header.e_shnum) |
cf13d699 NC |
13815 | continue; |
13816 | ||
13817 | printf (_(" Note: This section has relocations against it, but these have NOT been applied to this dump.\n")); | |
13818 | break; | |
13819 | } | |
13820 | ||
cf13d699 NC |
13821 | data = start; |
13822 | end = start + num_bytes; | |
13823 | some_strings_shown = FALSE; | |
13824 | ||
ba3265d0 NC |
13825 | #ifdef HAVE_MBSTATE_T |
13826 | mbstate_t state; | |
13827 | /* Initialise the multibyte conversion state. */ | |
13828 | memset (& state, 0, sizeof (state)); | |
13829 | #endif | |
13830 | ||
13831 | bfd_boolean continuing = FALSE; | |
13832 | ||
cf13d699 NC |
13833 | while (data < end) |
13834 | { | |
13835 | while (!ISPRINT (* data)) | |
13836 | if (++ data >= end) | |
13837 | break; | |
13838 | ||
13839 | if (data < end) | |
13840 | { | |
071436c6 NC |
13841 | size_t maxlen = end - data; |
13842 | ||
ba3265d0 NC |
13843 | if (continuing) |
13844 | { | |
13845 | printf (" "); | |
13846 | continuing = FALSE; | |
13847 | } | |
13848 | else | |
13849 | { | |
cf13d699 | 13850 | #ifndef __MSVCRT__ |
ba3265d0 NC |
13851 | /* PR 11128: Use two separate invocations in order to work |
13852 | around bugs in the Solaris 8 implementation of printf. */ | |
13853 | printf (" [%6tx] ", data - start); | |
cf13d699 | 13854 | #else |
ba3265d0 | 13855 | printf (" [%6Ix] ", (size_t) (data - start)); |
cf13d699 | 13856 | #endif |
ba3265d0 NC |
13857 | } |
13858 | ||
4082ef84 NC |
13859 | if (maxlen > 0) |
13860 | { | |
ba3265d0 NC |
13861 | char c; |
13862 | ||
13863 | while (maxlen) | |
13864 | { | |
13865 | c = *data++; | |
13866 | ||
13867 | if (c == 0) | |
13868 | break; | |
13869 | ||
13870 | /* PR 25543: Treat new-lines as string-ending characters. */ | |
13871 | if (c == '\n') | |
13872 | { | |
13873 | printf ("\\n\n"); | |
13874 | if (*data != 0) | |
13875 | continuing = TRUE; | |
13876 | break; | |
13877 | } | |
13878 | ||
13879 | /* Do not print control characters directly as they can affect terminal | |
13880 | settings. Such characters usually appear in the names generated | |
13881 | by the assembler for local labels. */ | |
13882 | if (ISCNTRL (c)) | |
13883 | { | |
13884 | printf ("^%c", c + 0x40); | |
13885 | } | |
13886 | else if (ISPRINT (c)) | |
13887 | { | |
13888 | putchar (c); | |
13889 | } | |
13890 | else | |
13891 | { | |
13892 | size_t n; | |
13893 | #ifdef HAVE_MBSTATE_T | |
13894 | wchar_t w; | |
13895 | #endif | |
13896 | /* Let printf do the hard work of displaying multibyte characters. */ | |
13897 | printf ("%.1s", data - 1); | |
13898 | #ifdef HAVE_MBSTATE_T | |
13899 | /* Try to find out how many bytes made up the character that was | |
13900 | just printed. Advance the symbol pointer past the bytes that | |
13901 | were displayed. */ | |
13902 | n = mbrtowc (& w, (char *)(data - 1), MB_CUR_MAX, & state); | |
13903 | #else | |
13904 | n = 1; | |
13905 | #endif | |
13906 | if (n != (size_t) -1 && n != (size_t) -2 && n > 0) | |
13907 | data += (n - 1); | |
13908 | } | |
13909 | } | |
13910 | ||
13911 | if (c != '\n') | |
13912 | putchar ('\n'); | |
4082ef84 NC |
13913 | } |
13914 | else | |
13915 | { | |
13916 | printf (_("<corrupt>\n")); | |
13917 | data = end; | |
13918 | } | |
cf13d699 NC |
13919 | some_strings_shown = TRUE; |
13920 | } | |
13921 | } | |
13922 | ||
13923 | if (! some_strings_shown) | |
13924 | printf (_(" No strings found in this section.")); | |
13925 | ||
0e602686 | 13926 | free (real_start); |
cf13d699 NC |
13927 | |
13928 | putchar ('\n'); | |
32ec8896 | 13929 | return TRUE; |
f761cb13 AM |
13930 | |
13931 | error_out: | |
13932 | free (real_start); | |
13933 | return FALSE; | |
cf13d699 NC |
13934 | } |
13935 | ||
32ec8896 | 13936 | static bfd_boolean |
dda8d76d NC |
13937 | dump_section_as_bytes (Elf_Internal_Shdr * section, |
13938 | Filedata * filedata, | |
13939 | bfd_boolean relocate) | |
cf13d699 NC |
13940 | { |
13941 | Elf_Internal_Shdr * relsec; | |
0e602686 NC |
13942 | bfd_size_type bytes; |
13943 | bfd_size_type section_size; | |
13944 | bfd_vma addr; | |
13945 | unsigned char * data; | |
13946 | unsigned char * real_start; | |
13947 | unsigned char * start; | |
13948 | ||
dda8d76d | 13949 | real_start = start = (unsigned char *) get_section_contents (section, filedata); |
cf13d699 | 13950 | if (start == NULL) |
c6b78c96 NC |
13951 | /* PR 21820: Do not fail if the section was empty. */ |
13952 | return (section->sh_size == 0 || section->sh_type == SHT_NOBITS) ? TRUE : FALSE; | |
32ec8896 | 13953 | |
0e602686 | 13954 | section_size = section->sh_size; |
cf13d699 | 13955 | |
dda8d76d | 13956 | printf (_("\nHex dump of section '%s':\n"), printable_section_name (filedata, section)); |
cf13d699 | 13957 | |
0e602686 NC |
13958 | if (decompress_dumps) |
13959 | { | |
13960 | dwarf_size_type new_size = section_size; | |
13961 | dwarf_size_type uncompressed_size = 0; | |
13962 | ||
13963 | if ((section->sh_flags & SHF_COMPRESSED) != 0) | |
13964 | { | |
13965 | Elf_Internal_Chdr chdr; | |
13966 | unsigned int compression_header_size | |
ebdf1ebf | 13967 | = get_compression_header (& chdr, start, section_size); |
0e602686 | 13968 | |
5844b465 NC |
13969 | if (compression_header_size == 0) |
13970 | /* An error message will have already been generated | |
13971 | by get_compression_header. */ | |
13972 | goto error_out; | |
13973 | ||
813dabb9 | 13974 | if (chdr.ch_type != ELFCOMPRESS_ZLIB) |
0e602686 | 13975 | { |
813dabb9 | 13976 | warn (_("section '%s' has unsupported compress type: %d\n"), |
dda8d76d | 13977 | printable_section_name (filedata, section), chdr.ch_type); |
f761cb13 | 13978 | goto error_out; |
0e602686 | 13979 | } |
813dabb9 L |
13980 | uncompressed_size = chdr.ch_size; |
13981 | start += compression_header_size; | |
13982 | new_size -= compression_header_size; | |
0e602686 NC |
13983 | } |
13984 | else if (new_size > 12 && streq ((char *) start, "ZLIB")) | |
13985 | { | |
13986 | /* Read the zlib header. In this case, it should be "ZLIB" | |
13987 | followed by the uncompressed section size, 8 bytes in | |
13988 | big-endian order. */ | |
13989 | uncompressed_size = start[4]; uncompressed_size <<= 8; | |
13990 | uncompressed_size += start[5]; uncompressed_size <<= 8; | |
13991 | uncompressed_size += start[6]; uncompressed_size <<= 8; | |
13992 | uncompressed_size += start[7]; uncompressed_size <<= 8; | |
13993 | uncompressed_size += start[8]; uncompressed_size <<= 8; | |
13994 | uncompressed_size += start[9]; uncompressed_size <<= 8; | |
13995 | uncompressed_size += start[10]; uncompressed_size <<= 8; | |
13996 | uncompressed_size += start[11]; | |
13997 | start += 12; | |
13998 | new_size -= 12; | |
13999 | } | |
14000 | ||
f055032e NC |
14001 | if (uncompressed_size) |
14002 | { | |
14003 | if (uncompress_section_contents (& start, uncompressed_size, | |
14004 | & new_size)) | |
bc303e5d NC |
14005 | { |
14006 | section_size = new_size; | |
14007 | } | |
f055032e NC |
14008 | else |
14009 | { | |
14010 | error (_("Unable to decompress section %s\n"), | |
dda8d76d | 14011 | printable_section_name (filedata, section)); |
bc303e5d | 14012 | /* FIXME: Print the section anyway ? */ |
f761cb13 | 14013 | goto error_out; |
f055032e NC |
14014 | } |
14015 | } | |
bc303e5d NC |
14016 | else |
14017 | start = real_start; | |
0e602686 | 14018 | } |
14ae95f2 | 14019 | |
cf13d699 NC |
14020 | if (relocate) |
14021 | { | |
dda8d76d | 14022 | if (! apply_relocations (filedata, section, start, section_size, NULL, NULL)) |
f761cb13 | 14023 | goto error_out; |
cf13d699 NC |
14024 | } |
14025 | else | |
14026 | { | |
14027 | /* If the section being dumped has relocations against it the user might | |
14028 | be expecting these relocations to have been applied. Check for this | |
14029 | case and issue a warning message in order to avoid confusion. | |
14030 | FIXME: Maybe we ought to have an option that dumps a section with | |
14031 | relocs applied ? */ | |
dda8d76d NC |
14032 | for (relsec = filedata->section_headers; |
14033 | relsec < filedata->section_headers + filedata->file_header.e_shnum; | |
cf13d699 NC |
14034 | ++relsec) |
14035 | { | |
14036 | if ((relsec->sh_type != SHT_RELA && relsec->sh_type != SHT_REL) | |
dda8d76d NC |
14037 | || relsec->sh_info >= filedata->file_header.e_shnum |
14038 | || filedata->section_headers + relsec->sh_info != section | |
cf13d699 | 14039 | || relsec->sh_size == 0 |
dda8d76d | 14040 | || relsec->sh_link >= filedata->file_header.e_shnum) |
cf13d699 NC |
14041 | continue; |
14042 | ||
14043 | printf (_(" NOTE: This section has relocations against it, but these have NOT been applied to this dump.\n")); | |
14044 | break; | |
14045 | } | |
14046 | } | |
14047 | ||
14048 | addr = section->sh_addr; | |
0e602686 | 14049 | bytes = section_size; |
cf13d699 NC |
14050 | data = start; |
14051 | ||
14052 | while (bytes) | |
14053 | { | |
14054 | int j; | |
14055 | int k; | |
14056 | int lbytes; | |
14057 | ||
14058 | lbytes = (bytes > 16 ? 16 : bytes); | |
14059 | ||
14060 | printf (" 0x%8.8lx ", (unsigned long) addr); | |
14061 | ||
14062 | for (j = 0; j < 16; j++) | |
14063 | { | |
14064 | if (j < lbytes) | |
14065 | printf ("%2.2x", data[j]); | |
14066 | else | |
14067 | printf (" "); | |
14068 | ||
14069 | if ((j & 3) == 3) | |
14070 | printf (" "); | |
14071 | } | |
14072 | ||
14073 | for (j = 0; j < lbytes; j++) | |
14074 | { | |
14075 | k = data[j]; | |
14076 | if (k >= ' ' && k < 0x7f) | |
14077 | printf ("%c", k); | |
14078 | else | |
14079 | printf ("."); | |
14080 | } | |
14081 | ||
14082 | putchar ('\n'); | |
14083 | ||
14084 | data += lbytes; | |
14085 | addr += lbytes; | |
14086 | bytes -= lbytes; | |
14087 | } | |
14088 | ||
0e602686 | 14089 | free (real_start); |
cf13d699 NC |
14090 | |
14091 | putchar ('\n'); | |
32ec8896 | 14092 | return TRUE; |
f761cb13 AM |
14093 | |
14094 | error_out: | |
14095 | free (real_start); | |
14096 | return FALSE; | |
cf13d699 NC |
14097 | } |
14098 | ||
7d9813f1 NA |
14099 | static ctf_sect_t * |
14100 | shdr_to_ctf_sect (ctf_sect_t *buf, Elf_Internal_Shdr *shdr, Filedata *filedata) | |
14101 | { | |
90bd5423 | 14102 | buf->cts_name = SECTION_NAME (shdr); |
7d9813f1 NA |
14103 | buf->cts_size = shdr->sh_size; |
14104 | buf->cts_entsize = shdr->sh_entsize; | |
7d9813f1 NA |
14105 | |
14106 | return buf; | |
14107 | } | |
14108 | ||
14109 | /* Formatting callback function passed to ctf_dump. Returns either the pointer | |
14110 | it is passed, or a pointer to newly-allocated storage, in which case | |
14111 | dump_ctf() will free it when it no longer needs it. */ | |
14112 | ||
14113 | static char *dump_ctf_indent_lines (ctf_sect_names_t sect ATTRIBUTE_UNUSED, | |
14114 | char *s, void *arg) | |
14115 | { | |
3e50a591 | 14116 | const char *blanks = arg; |
7d9813f1 NA |
14117 | char *new_s; |
14118 | ||
3e50a591 | 14119 | if (asprintf (&new_s, "%s%s", blanks, s) < 0) |
7d9813f1 NA |
14120 | return s; |
14121 | return new_s; | |
14122 | } | |
14123 | ||
14124 | static bfd_boolean | |
14125 | dump_section_as_ctf (Elf_Internal_Shdr * section, Filedata * filedata) | |
14126 | { | |
14127 | Elf_Internal_Shdr * parent_sec = NULL; | |
14128 | Elf_Internal_Shdr * symtab_sec = NULL; | |
14129 | Elf_Internal_Shdr * strtab_sec = NULL; | |
d344b407 NA |
14130 | void * data = NULL; |
14131 | void * symdata = NULL; | |
14132 | void * strdata = NULL; | |
14133 | void * parentdata = NULL; | |
14134 | ctf_sect_t ctfsect, symsect, strsect, parentsect; | |
14135 | ctf_sect_t * symsectp = NULL; | |
14136 | ctf_sect_t * strsectp = NULL; | |
14137 | ctf_file_t * ctf = NULL; | |
14138 | ctf_file_t * parent = NULL; | |
7d9813f1 | 14139 | |
9b32cba4 NA |
14140 | const char *things[] = {"Header", "Labels", "Data objects", |
14141 | "Function objects", "Variables", "Types", "Strings", | |
14142 | ""}; | |
7d9813f1 NA |
14143 | const char **thing; |
14144 | int err; | |
14145 | bfd_boolean ret = FALSE; | |
14146 | size_t i; | |
14147 | ||
14148 | shdr_to_ctf_sect (&ctfsect, section, filedata); | |
14149 | data = get_section_contents (section, filedata); | |
14150 | ctfsect.cts_data = data; | |
14151 | ||
616febde NA |
14152 | if (!dump_ctf_symtab_name) |
14153 | dump_ctf_symtab_name = strdup (".symtab"); | |
14154 | ||
14155 | if (!dump_ctf_strtab_name) | |
14156 | dump_ctf_strtab_name = strdup (".strtab"); | |
14157 | ||
14158 | if (dump_ctf_symtab_name && dump_ctf_symtab_name[0] != 0) | |
7d9813f1 NA |
14159 | { |
14160 | if ((symtab_sec = find_section (filedata, dump_ctf_symtab_name)) == NULL) | |
14161 | { | |
14162 | error (_("No symbol section named %s\n"), dump_ctf_symtab_name); | |
14163 | goto fail; | |
14164 | } | |
14165 | if ((symdata = (void *) get_data (NULL, filedata, | |
14166 | symtab_sec->sh_offset, 1, | |
14167 | symtab_sec->sh_size, | |
14168 | _("symbols"))) == NULL) | |
14169 | goto fail; | |
14170 | symsectp = shdr_to_ctf_sect (&symsect, symtab_sec, filedata); | |
14171 | symsect.cts_data = symdata; | |
14172 | } | |
616febde | 14173 | if (dump_ctf_strtab_name && dump_ctf_symtab_name[0] != 0) |
7d9813f1 NA |
14174 | { |
14175 | if ((strtab_sec = find_section (filedata, dump_ctf_strtab_name)) == NULL) | |
14176 | { | |
14177 | error (_("No string table section named %s\n"), | |
14178 | dump_ctf_strtab_name); | |
14179 | goto fail; | |
14180 | } | |
14181 | if ((strdata = (void *) get_data (NULL, filedata, | |
14182 | strtab_sec->sh_offset, 1, | |
14183 | strtab_sec->sh_size, | |
14184 | _("strings"))) == NULL) | |
14185 | goto fail; | |
14186 | strsectp = shdr_to_ctf_sect (&strsect, strtab_sec, filedata); | |
14187 | strsect.cts_data = strdata; | |
14188 | } | |
14189 | if (dump_ctf_parent_name) | |
14190 | { | |
14191 | if ((parent_sec = find_section (filedata, dump_ctf_parent_name)) == NULL) | |
14192 | { | |
14193 | error (_("No CTF parent section named %s\n"), dump_ctf_parent_name); | |
14194 | goto fail; | |
14195 | } | |
14196 | if ((parentdata = (void *) get_data (NULL, filedata, | |
14197 | parent_sec->sh_offset, 1, | |
14198 | parent_sec->sh_size, | |
14199 | _("CTF parent"))) == NULL) | |
14200 | goto fail; | |
14201 | shdr_to_ctf_sect (&parentsect, parent_sec, filedata); | |
14202 | parentsect.cts_data = parentdata; | |
14203 | } | |
14204 | ||
14205 | /* Load the CTF file and dump it. */ | |
14206 | ||
14207 | if ((ctf = ctf_bufopen (&ctfsect, symsectp, strsectp, &err)) == NULL) | |
14208 | { | |
14209 | error (_("CTF open failure: %s\n"), ctf_errmsg (err)); | |
14210 | goto fail; | |
14211 | } | |
14212 | ||
14213 | if (parentdata) | |
14214 | { | |
14215 | if ((parent = ctf_bufopen (&parentsect, symsectp, strsectp, &err)) == NULL) | |
14216 | { | |
14217 | error (_("CTF open failure: %s\n"), ctf_errmsg (err)); | |
14218 | goto fail; | |
14219 | } | |
14220 | ||
14221 | ctf_import (ctf, parent); | |
14222 | } | |
14223 | ||
14224 | ret = TRUE; | |
14225 | ||
14226 | printf (_("\nDump of CTF section '%s':\n"), | |
14227 | printable_section_name (filedata, section)); | |
14228 | ||
9b32cba4 | 14229 | for (i = 0, thing = things; *thing[0]; thing++, i++) |
7d9813f1 NA |
14230 | { |
14231 | ctf_dump_state_t *s = NULL; | |
14232 | char *item; | |
14233 | ||
14234 | printf ("\n %s:\n", *thing); | |
14235 | while ((item = ctf_dump (ctf, &s, i, dump_ctf_indent_lines, | |
14236 | (void *) " ")) != NULL) | |
14237 | { | |
14238 | printf ("%s\n", item); | |
14239 | free (item); | |
14240 | } | |
14241 | ||
14242 | if (ctf_errno (ctf)) | |
14243 | { | |
14244 | error (_("Iteration failed: %s, %s\n"), *thing, | |
14245 | ctf_errmsg (ctf_errno (ctf))); | |
14246 | ret = FALSE; | |
14247 | } | |
14248 | } | |
14249 | ||
14250 | fail: | |
14251 | ctf_file_close (ctf); | |
14252 | ctf_file_close (parent); | |
14253 | free (parentdata); | |
14254 | free (data); | |
14255 | free (symdata); | |
14256 | free (strdata); | |
14257 | return ret; | |
14258 | } | |
14259 | ||
32ec8896 | 14260 | static bfd_boolean |
dda8d76d NC |
14261 | load_specific_debug_section (enum dwarf_section_display_enum debug, |
14262 | const Elf_Internal_Shdr * sec, | |
14263 | void * data) | |
1007acb3 | 14264 | { |
2cf0635d | 14265 | struct dwarf_section * section = &debug_displays [debug].section; |
19e6b90e | 14266 | char buf [64]; |
dda8d76d | 14267 | Filedata * filedata = (Filedata *) data; |
9abca702 | 14268 | |
19e6b90e | 14269 | if (section->start != NULL) |
dda8d76d NC |
14270 | { |
14271 | /* If it is already loaded, do nothing. */ | |
14272 | if (streq (section->filename, filedata->file_name)) | |
14273 | return TRUE; | |
14274 | free (section->start); | |
14275 | } | |
1007acb3 | 14276 | |
19e6b90e L |
14277 | snprintf (buf, sizeof (buf), _("%s section data"), section->name); |
14278 | section->address = sec->sh_addr; | |
06614111 | 14279 | section->user_data = NULL; |
dda8d76d NC |
14280 | section->filename = filedata->file_name; |
14281 | section->start = (unsigned char *) get_data (NULL, filedata, | |
3f5e193b NC |
14282 | sec->sh_offset, 1, |
14283 | sec->sh_size, buf); | |
59245841 NC |
14284 | if (section->start == NULL) |
14285 | section->size = 0; | |
14286 | else | |
14287 | { | |
77115a4a L |
14288 | unsigned char *start = section->start; |
14289 | dwarf_size_type size = sec->sh_size; | |
dab394de | 14290 | dwarf_size_type uncompressed_size = 0; |
77115a4a L |
14291 | |
14292 | if ((sec->sh_flags & SHF_COMPRESSED) != 0) | |
14293 | { | |
14294 | Elf_Internal_Chdr chdr; | |
d8024a91 NC |
14295 | unsigned int compression_header_size; |
14296 | ||
f53be977 L |
14297 | if (size < (is_32bit_elf |
14298 | ? sizeof (Elf32_External_Chdr) | |
14299 | : sizeof (Elf64_External_Chdr))) | |
d8024a91 | 14300 | { |
55be8fd0 | 14301 | warn (_("compressed section %s is too small to contain a compression header\n"), |
d8024a91 | 14302 | section->name); |
32ec8896 | 14303 | return FALSE; |
d8024a91 NC |
14304 | } |
14305 | ||
ebdf1ebf | 14306 | compression_header_size = get_compression_header (&chdr, start, size); |
5844b465 NC |
14307 | if (compression_header_size == 0) |
14308 | /* An error message will have already been generated | |
14309 | by get_compression_header. */ | |
14310 | return FALSE; | |
d8024a91 | 14311 | |
813dabb9 L |
14312 | if (chdr.ch_type != ELFCOMPRESS_ZLIB) |
14313 | { | |
14314 | warn (_("section '%s' has unsupported compress type: %d\n"), | |
14315 | section->name, chdr.ch_type); | |
32ec8896 | 14316 | return FALSE; |
813dabb9 | 14317 | } |
dab394de | 14318 | uncompressed_size = chdr.ch_size; |
77115a4a L |
14319 | start += compression_header_size; |
14320 | size -= compression_header_size; | |
14321 | } | |
dab394de L |
14322 | else if (size > 12 && streq ((char *) start, "ZLIB")) |
14323 | { | |
14324 | /* Read the zlib header. In this case, it should be "ZLIB" | |
14325 | followed by the uncompressed section size, 8 bytes in | |
14326 | big-endian order. */ | |
14327 | uncompressed_size = start[4]; uncompressed_size <<= 8; | |
14328 | uncompressed_size += start[5]; uncompressed_size <<= 8; | |
14329 | uncompressed_size += start[6]; uncompressed_size <<= 8; | |
14330 | uncompressed_size += start[7]; uncompressed_size <<= 8; | |
14331 | uncompressed_size += start[8]; uncompressed_size <<= 8; | |
14332 | uncompressed_size += start[9]; uncompressed_size <<= 8; | |
14333 | uncompressed_size += start[10]; uncompressed_size <<= 8; | |
14334 | uncompressed_size += start[11]; | |
14335 | start += 12; | |
14336 | size -= 12; | |
14337 | } | |
14338 | ||
1835f746 | 14339 | if (uncompressed_size) |
77115a4a | 14340 | { |
1835f746 NC |
14341 | if (uncompress_section_contents (&start, uncompressed_size, |
14342 | &size)) | |
14343 | { | |
14344 | /* Free the compressed buffer, update the section buffer | |
14345 | and the section size if uncompress is successful. */ | |
14346 | free (section->start); | |
14347 | section->start = start; | |
14348 | } | |
14349 | else | |
14350 | { | |
14351 | error (_("Unable to decompress section %s\n"), | |
dda8d76d | 14352 | printable_section_name (filedata, sec)); |
32ec8896 | 14353 | return FALSE; |
1835f746 | 14354 | } |
77115a4a | 14355 | } |
bc303e5d | 14356 | |
77115a4a | 14357 | section->size = size; |
59245841 | 14358 | } |
4a114e3e | 14359 | |
1b315056 | 14360 | if (section->start == NULL) |
32ec8896 | 14361 | return FALSE; |
1b315056 | 14362 | |
19e6b90e | 14363 | if (debug_displays [debug].relocate) |
32ec8896 | 14364 | { |
dda8d76d | 14365 | if (! apply_relocations (filedata, sec, section->start, section->size, |
32ec8896 NC |
14366 | & section->reloc_info, & section->num_relocs)) |
14367 | return FALSE; | |
14368 | } | |
d1c4b12b NC |
14369 | else |
14370 | { | |
14371 | section->reloc_info = NULL; | |
14372 | section->num_relocs = 0; | |
14373 | } | |
1007acb3 | 14374 | |
32ec8896 | 14375 | return TRUE; |
1007acb3 L |
14376 | } |
14377 | ||
301a9420 AM |
14378 | #if HAVE_LIBDEBUGINFOD |
14379 | /* Return a hex string representation of the build-id. */ | |
14380 | unsigned char * | |
14381 | get_build_id (void * data) | |
14382 | { | |
14383 | Filedata * filedata = (Filedata *)data; | |
14384 | Elf_Internal_Shdr * shdr; | |
14385 | unsigned long i; | |
14386 | ||
55be8fd0 NC |
14387 | /* Iterate through notes to find note.gnu.build-id. |
14388 | FIXME: Only the first note in any note section is examined. */ | |
301a9420 AM |
14389 | for (i = 0, shdr = filedata->section_headers; |
14390 | i < filedata->file_header.e_shnum && shdr != NULL; | |
14391 | i++, shdr++) | |
14392 | { | |
14393 | if (shdr->sh_type != SHT_NOTE) | |
14394 | continue; | |
14395 | ||
14396 | char * next; | |
14397 | char * end; | |
14398 | size_t data_remaining; | |
14399 | size_t min_notesz; | |
14400 | Elf_External_Note * enote; | |
14401 | Elf_Internal_Note inote; | |
14402 | ||
14403 | bfd_vma offset = shdr->sh_offset; | |
14404 | bfd_vma align = shdr->sh_addralign; | |
14405 | bfd_vma length = shdr->sh_size; | |
14406 | ||
14407 | enote = (Elf_External_Note *) get_section_contents (shdr, filedata); | |
14408 | if (enote == NULL) | |
14409 | continue; | |
14410 | ||
14411 | if (align < 4) | |
14412 | align = 4; | |
14413 | else if (align != 4 && align != 8) | |
f761cb13 AM |
14414 | { |
14415 | free (enote); | |
14416 | continue; | |
14417 | } | |
301a9420 AM |
14418 | |
14419 | end = (char *) enote + length; | |
14420 | data_remaining = end - (char *) enote; | |
14421 | ||
14422 | if (!is_ia64_vms (filedata)) | |
14423 | { | |
14424 | min_notesz = offsetof (Elf_External_Note, name); | |
14425 | if (data_remaining < min_notesz) | |
14426 | { | |
55be8fd0 NC |
14427 | warn (_("\ |
14428 | malformed note encountered in section %s whilst scanning for build-id note\n"), | |
14429 | printable_section_name (filedata, shdr)); | |
f761cb13 | 14430 | free (enote); |
55be8fd0 | 14431 | continue; |
301a9420 AM |
14432 | } |
14433 | data_remaining -= min_notesz; | |
14434 | ||
14435 | inote.type = BYTE_GET (enote->type); | |
14436 | inote.namesz = BYTE_GET (enote->namesz); | |
14437 | inote.namedata = enote->name; | |
14438 | inote.descsz = BYTE_GET (enote->descsz); | |
14439 | inote.descdata = ((char *) enote | |
14440 | + ELF_NOTE_DESC_OFFSET (inote.namesz, align)); | |
14441 | inote.descpos = offset + (inote.descdata - (char *) enote); | |
14442 | next = ((char *) enote | |
14443 | + ELF_NOTE_NEXT_OFFSET (inote.namesz, inote.descsz, align)); | |
14444 | } | |
14445 | else | |
14446 | { | |
14447 | Elf64_External_VMS_Note *vms_enote; | |
14448 | ||
14449 | /* PR binutils/15191 | |
14450 | Make sure that there is enough data to read. */ | |
14451 | min_notesz = offsetof (Elf64_External_VMS_Note, name); | |
14452 | if (data_remaining < min_notesz) | |
14453 | { | |
55be8fd0 NC |
14454 | warn (_("\ |
14455 | malformed note encountered in section %s whilst scanning for build-id note\n"), | |
14456 | printable_section_name (filedata, shdr)); | |
f761cb13 | 14457 | free (enote); |
55be8fd0 | 14458 | continue; |
301a9420 AM |
14459 | } |
14460 | data_remaining -= min_notesz; | |
14461 | ||
14462 | vms_enote = (Elf64_External_VMS_Note *) enote; | |
14463 | inote.type = BYTE_GET (vms_enote->type); | |
14464 | inote.namesz = BYTE_GET (vms_enote->namesz); | |
14465 | inote.namedata = vms_enote->name; | |
14466 | inote.descsz = BYTE_GET (vms_enote->descsz); | |
14467 | inote.descdata = inote.namedata + align_power (inote.namesz, 3); | |
14468 | inote.descpos = offset + (inote.descdata - (char *) enote); | |
14469 | next = inote.descdata + align_power (inote.descsz, 3); | |
14470 | } | |
14471 | ||
14472 | /* Skip malformed notes. */ | |
14473 | if ((size_t) (inote.descdata - inote.namedata) < inote.namesz | |
14474 | || (size_t) (inote.descdata - inote.namedata) > data_remaining | |
14475 | || (size_t) (next - inote.descdata) < inote.descsz | |
14476 | || ((size_t) (next - inote.descdata) | |
14477 | > data_remaining - (size_t) (inote.descdata - inote.namedata))) | |
14478 | { | |
55be8fd0 NC |
14479 | warn (_("\ |
14480 | malformed note encountered in section %s whilst scanning for build-id note\n"), | |
14481 | printable_section_name (filedata, shdr)); | |
f761cb13 | 14482 | free (enote); |
301a9420 AM |
14483 | continue; |
14484 | } | |
14485 | ||
14486 | /* Check if this is the build-id note. If so then convert the build-id | |
14487 | bytes to a hex string. */ | |
14488 | if (inote.namesz > 0 | |
14489 | && const_strneq (inote.namedata, "GNU") | |
14490 | && inote.type == NT_GNU_BUILD_ID) | |
14491 | { | |
14492 | unsigned long j; | |
14493 | char * build_id; | |
14494 | ||
14495 | build_id = malloc (inote.descsz * 2 + 1); | |
14496 | if (build_id == NULL) | |
f761cb13 AM |
14497 | { |
14498 | free (enote); | |
14499 | return NULL; | |
14500 | } | |
301a9420 AM |
14501 | |
14502 | for (j = 0; j < inote.descsz; ++j) | |
14503 | sprintf (build_id + (j * 2), "%02x", inote.descdata[j] & 0xff); | |
14504 | build_id[inote.descsz * 2] = '\0'; | |
f761cb13 | 14505 | free (enote); |
301a9420 | 14506 | |
55be8fd0 | 14507 | return (unsigned char *) build_id; |
301a9420 | 14508 | } |
f761cb13 | 14509 | free (enote); |
301a9420 AM |
14510 | } |
14511 | ||
14512 | return NULL; | |
14513 | } | |
14514 | #endif /* HAVE_LIBDEBUGINFOD */ | |
14515 | ||
657d0d47 CC |
14516 | /* If this is not NULL, load_debug_section will only look for sections |
14517 | within the list of sections given here. */ | |
32ec8896 | 14518 | static unsigned int * section_subset = NULL; |
657d0d47 | 14519 | |
32ec8896 | 14520 | bfd_boolean |
dda8d76d | 14521 | load_debug_section (enum dwarf_section_display_enum debug, void * data) |
d966045b | 14522 | { |
2cf0635d NC |
14523 | struct dwarf_section * section = &debug_displays [debug].section; |
14524 | Elf_Internal_Shdr * sec; | |
dda8d76d NC |
14525 | Filedata * filedata = (Filedata *) data; |
14526 | ||
f425ec66 NC |
14527 | /* Without section headers we cannot find any sections. */ |
14528 | if (filedata->section_headers == NULL) | |
14529 | return FALSE; | |
14530 | ||
9c1ce108 AM |
14531 | if (filedata->string_table == NULL |
14532 | && filedata->file_header.e_shstrndx != SHN_UNDEF | |
14533 | && filedata->file_header.e_shstrndx < filedata->file_header.e_shnum) | |
dda8d76d NC |
14534 | { |
14535 | Elf_Internal_Shdr * strs; | |
14536 | ||
14537 | /* Read in the string table, so that we have section names to scan. */ | |
14538 | strs = filedata->section_headers + filedata->file_header.e_shstrndx; | |
14539 | ||
4dff97b2 | 14540 | if (strs != NULL && strs->sh_size != 0) |
dda8d76d | 14541 | { |
9c1ce108 AM |
14542 | filedata->string_table |
14543 | = (char *) get_data (NULL, filedata, strs->sh_offset, | |
14544 | 1, strs->sh_size, _("string table")); | |
dda8d76d | 14545 | |
9c1ce108 AM |
14546 | filedata->string_table_length |
14547 | = filedata->string_table != NULL ? strs->sh_size : 0; | |
dda8d76d NC |
14548 | } |
14549 | } | |
d966045b DJ |
14550 | |
14551 | /* Locate the debug section. */ | |
dda8d76d | 14552 | sec = find_section_in_set (filedata, section->uncompressed_name, section_subset); |
d966045b DJ |
14553 | if (sec != NULL) |
14554 | section->name = section->uncompressed_name; | |
14555 | else | |
14556 | { | |
dda8d76d | 14557 | sec = find_section_in_set (filedata, section->compressed_name, section_subset); |
d966045b DJ |
14558 | if (sec != NULL) |
14559 | section->name = section->compressed_name; | |
14560 | } | |
14561 | if (sec == NULL) | |
32ec8896 | 14562 | return FALSE; |
d966045b | 14563 | |
657d0d47 CC |
14564 | /* If we're loading from a subset of sections, and we've loaded |
14565 | a section matching this name before, it's likely that it's a | |
14566 | different one. */ | |
14567 | if (section_subset != NULL) | |
14568 | free_debug_section (debug); | |
14569 | ||
dda8d76d | 14570 | return load_specific_debug_section (debug, sec, data); |
d966045b DJ |
14571 | } |
14572 | ||
19e6b90e L |
14573 | void |
14574 | free_debug_section (enum dwarf_section_display_enum debug) | |
1007acb3 | 14575 | { |
2cf0635d | 14576 | struct dwarf_section * section = &debug_displays [debug].section; |
1007acb3 | 14577 | |
19e6b90e L |
14578 | if (section->start == NULL) |
14579 | return; | |
1007acb3 | 14580 | |
19e6b90e L |
14581 | free ((char *) section->start); |
14582 | section->start = NULL; | |
14583 | section->address = 0; | |
14584 | section->size = 0; | |
a788aedd AM |
14585 | |
14586 | if (section->reloc_info != NULL) | |
14587 | { | |
14588 | free (section->reloc_info); | |
14589 | section->reloc_info = NULL; | |
14590 | section->num_relocs = 0; | |
14591 | } | |
1007acb3 L |
14592 | } |
14593 | ||
32ec8896 | 14594 | static bfd_boolean |
dda8d76d | 14595 | display_debug_section (int shndx, Elf_Internal_Shdr * section, Filedata * filedata) |
1007acb3 | 14596 | { |
2cf0635d | 14597 | char * name = SECTION_NAME (section); |
dda8d76d | 14598 | const char * print_name = printable_section_name (filedata, section); |
19e6b90e | 14599 | bfd_size_type length; |
32ec8896 | 14600 | bfd_boolean result = TRUE; |
3f5e193b | 14601 | int i; |
1007acb3 | 14602 | |
19e6b90e L |
14603 | length = section->sh_size; |
14604 | if (length == 0) | |
1007acb3 | 14605 | { |
74e1a04b | 14606 | printf (_("\nSection '%s' has no debugging data.\n"), print_name); |
32ec8896 | 14607 | return TRUE; |
1007acb3 | 14608 | } |
5dff79d8 NC |
14609 | if (section->sh_type == SHT_NOBITS) |
14610 | { | |
14611 | /* There is no point in dumping the contents of a debugging section | |
14612 | which has the NOBITS type - the bits in the file will be random. | |
14613 | This can happen when a file containing a .eh_frame section is | |
14614 | stripped with the --only-keep-debug command line option. */ | |
74e1a04b NC |
14615 | printf (_("section '%s' has the NOBITS type - its contents are unreliable.\n"), |
14616 | print_name); | |
32ec8896 | 14617 | return FALSE; |
5dff79d8 | 14618 | } |
1007acb3 | 14619 | |
0112cd26 | 14620 | if (const_strneq (name, ".gnu.linkonce.wi.")) |
19e6b90e | 14621 | name = ".debug_info"; |
1007acb3 | 14622 | |
19e6b90e L |
14623 | /* See if we know how to display the contents of this section. */ |
14624 | for (i = 0; i < max; i++) | |
d85bf2ba NC |
14625 | { |
14626 | enum dwarf_section_display_enum id = (enum dwarf_section_display_enum) i; | |
14627 | struct dwarf_section_display * display = debug_displays + i; | |
14628 | struct dwarf_section * sec = & display->section; | |
d966045b | 14629 | |
d85bf2ba NC |
14630 | if (streq (sec->uncompressed_name, name) |
14631 | || (id == line && const_strneq (name, ".debug_line.")) | |
14632 | || streq (sec->compressed_name, name)) | |
14633 | { | |
14634 | bfd_boolean secondary = (section != find_section (filedata, name)); | |
1007acb3 | 14635 | |
d85bf2ba NC |
14636 | if (secondary) |
14637 | free_debug_section (id); | |
dda8d76d | 14638 | |
d85bf2ba NC |
14639 | if (i == line && const_strneq (name, ".debug_line.")) |
14640 | sec->name = name; | |
14641 | else if (streq (sec->uncompressed_name, name)) | |
14642 | sec->name = sec->uncompressed_name; | |
14643 | else | |
14644 | sec->name = sec->compressed_name; | |
657d0d47 | 14645 | |
d85bf2ba NC |
14646 | if (load_specific_debug_section (id, section, filedata)) |
14647 | { | |
14648 | /* If this debug section is part of a CU/TU set in a .dwp file, | |
14649 | restrict load_debug_section to the sections in that set. */ | |
14650 | section_subset = find_cu_tu_set (filedata, shndx); | |
1007acb3 | 14651 | |
d85bf2ba | 14652 | result &= display->display (sec, filedata); |
657d0d47 | 14653 | |
d85bf2ba | 14654 | section_subset = NULL; |
1007acb3 | 14655 | |
d85bf2ba NC |
14656 | if (secondary || (id != info && id != abbrev)) |
14657 | free_debug_section (id); | |
14658 | } | |
14659 | break; | |
14660 | } | |
14661 | } | |
1007acb3 | 14662 | |
19e6b90e | 14663 | if (i == max) |
1007acb3 | 14664 | { |
74e1a04b | 14665 | printf (_("Unrecognized debug section: %s\n"), print_name); |
32ec8896 | 14666 | result = FALSE; |
1007acb3 L |
14667 | } |
14668 | ||
19e6b90e | 14669 | return result; |
5b18a4bc | 14670 | } |
103f02d3 | 14671 | |
aef1f6d0 DJ |
14672 | /* Set DUMP_SECTS for all sections where dumps were requested |
14673 | based on section name. */ | |
14674 | ||
14675 | static void | |
dda8d76d | 14676 | initialise_dumps_byname (Filedata * filedata) |
aef1f6d0 | 14677 | { |
2cf0635d | 14678 | struct dump_list_entry * cur; |
aef1f6d0 DJ |
14679 | |
14680 | for (cur = dump_sects_byname; cur; cur = cur->next) | |
14681 | { | |
14682 | unsigned int i; | |
32ec8896 | 14683 | bfd_boolean any = FALSE; |
aef1f6d0 | 14684 | |
dda8d76d NC |
14685 | for (i = 0; i < filedata->file_header.e_shnum; i++) |
14686 | if (streq (SECTION_NAME (filedata->section_headers + i), cur->name)) | |
aef1f6d0 | 14687 | { |
6431e409 | 14688 | request_dump_bynumber (&filedata->dump, i, cur->type); |
32ec8896 | 14689 | any = TRUE; |
aef1f6d0 DJ |
14690 | } |
14691 | ||
14692 | if (!any) | |
14693 | warn (_("Section '%s' was not dumped because it does not exist!\n"), | |
14694 | cur->name); | |
14695 | } | |
14696 | } | |
14697 | ||
32ec8896 | 14698 | static bfd_boolean |
dda8d76d | 14699 | process_section_contents (Filedata * filedata) |
5b18a4bc | 14700 | { |
2cf0635d | 14701 | Elf_Internal_Shdr * section; |
19e6b90e | 14702 | unsigned int i; |
32ec8896 | 14703 | bfd_boolean res = TRUE; |
103f02d3 | 14704 | |
19e6b90e | 14705 | if (! do_dump) |
32ec8896 | 14706 | return TRUE; |
103f02d3 | 14707 | |
dda8d76d | 14708 | initialise_dumps_byname (filedata); |
aef1f6d0 | 14709 | |
dda8d76d | 14710 | for (i = 0, section = filedata->section_headers; |
6431e409 | 14711 | i < filedata->file_header.e_shnum && i < filedata->dump.num_dump_sects; |
19e6b90e L |
14712 | i++, section++) |
14713 | { | |
6431e409 | 14714 | dump_type dump = filedata->dump.dump_sects[i]; |
dda8d76d | 14715 | |
19e6b90e | 14716 | #ifdef SUPPORT_DISASSEMBLY |
dda8d76d NC |
14717 | if (dump & DISASS_DUMP) |
14718 | { | |
14719 | if (! disassemble_section (section, filedata)) | |
14720 | res = FALSE; | |
14721 | } | |
19e6b90e | 14722 | #endif |
dda8d76d | 14723 | if (dump & HEX_DUMP) |
32ec8896 | 14724 | { |
dda8d76d | 14725 | if (! dump_section_as_bytes (section, filedata, FALSE)) |
32ec8896 NC |
14726 | res = FALSE; |
14727 | } | |
103f02d3 | 14728 | |
dda8d76d | 14729 | if (dump & RELOC_DUMP) |
32ec8896 | 14730 | { |
dda8d76d | 14731 | if (! dump_section_as_bytes (section, filedata, TRUE)) |
32ec8896 NC |
14732 | res = FALSE; |
14733 | } | |
09c11c86 | 14734 | |
dda8d76d | 14735 | if (dump & STRING_DUMP) |
32ec8896 | 14736 | { |
dda8d76d | 14737 | if (! dump_section_as_strings (section, filedata)) |
32ec8896 NC |
14738 | res = FALSE; |
14739 | } | |
cf13d699 | 14740 | |
dda8d76d | 14741 | if (dump & DEBUG_DUMP) |
32ec8896 | 14742 | { |
dda8d76d | 14743 | if (! display_debug_section (i, section, filedata)) |
32ec8896 NC |
14744 | res = FALSE; |
14745 | } | |
7d9813f1 NA |
14746 | |
14747 | if (dump & CTF_DUMP) | |
14748 | { | |
14749 | if (! dump_section_as_ctf (section, filedata)) | |
14750 | res = FALSE; | |
14751 | } | |
5b18a4bc | 14752 | } |
103f02d3 | 14753 | |
19e6b90e L |
14754 | /* Check to see if the user requested a |
14755 | dump of a section that does not exist. */ | |
6431e409 | 14756 | while (i < filedata->dump.num_dump_sects) |
0ee3043f | 14757 | { |
6431e409 | 14758 | if (filedata->dump.dump_sects[i]) |
32ec8896 NC |
14759 | { |
14760 | warn (_("Section %d was not dumped because it does not exist!\n"), i); | |
14761 | res = FALSE; | |
14762 | } | |
0ee3043f NC |
14763 | i++; |
14764 | } | |
32ec8896 NC |
14765 | |
14766 | return res; | |
5b18a4bc | 14767 | } |
103f02d3 | 14768 | |
5b18a4bc | 14769 | static void |
19e6b90e | 14770 | process_mips_fpe_exception (int mask) |
5b18a4bc | 14771 | { |
19e6b90e L |
14772 | if (mask) |
14773 | { | |
32ec8896 NC |
14774 | bfd_boolean first = TRUE; |
14775 | ||
19e6b90e | 14776 | if (mask & OEX_FPU_INEX) |
32ec8896 | 14777 | fputs ("INEX", stdout), first = FALSE; |
19e6b90e | 14778 | if (mask & OEX_FPU_UFLO) |
32ec8896 | 14779 | printf ("%sUFLO", first ? "" : "|"), first = FALSE; |
19e6b90e | 14780 | if (mask & OEX_FPU_OFLO) |
32ec8896 | 14781 | printf ("%sOFLO", first ? "" : "|"), first = FALSE; |
19e6b90e | 14782 | if (mask & OEX_FPU_DIV0) |
32ec8896 | 14783 | printf ("%sDIV0", first ? "" : "|"), first = FALSE; |
19e6b90e L |
14784 | if (mask & OEX_FPU_INVAL) |
14785 | printf ("%sINVAL", first ? "" : "|"); | |
14786 | } | |
5b18a4bc | 14787 | else |
19e6b90e | 14788 | fputs ("0", stdout); |
5b18a4bc | 14789 | } |
103f02d3 | 14790 | |
f6f0e17b NC |
14791 | /* Display's the value of TAG at location P. If TAG is |
14792 | greater than 0 it is assumed to be an unknown tag, and | |
14793 | a message is printed to this effect. Otherwise it is | |
14794 | assumed that a message has already been printed. | |
14795 | ||
14796 | If the bottom bit of TAG is set it assumed to have a | |
14797 | string value, otherwise it is assumed to have an integer | |
14798 | value. | |
14799 | ||
14800 | Returns an updated P pointing to the first unread byte | |
14801 | beyond the end of TAG's value. | |
14802 | ||
14803 | Reads at or beyond END will not be made. */ | |
14804 | ||
14805 | static unsigned char * | |
60abdbed | 14806 | display_tag_value (signed int tag, |
f6f0e17b NC |
14807 | unsigned char * p, |
14808 | const unsigned char * const end) | |
14809 | { | |
14810 | unsigned long val; | |
14811 | ||
14812 | if (tag > 0) | |
14813 | printf (" Tag_unknown_%d: ", tag); | |
14814 | ||
14815 | if (p >= end) | |
14816 | { | |
4082ef84 | 14817 | warn (_("<corrupt tag>\n")); |
f6f0e17b NC |
14818 | } |
14819 | else if (tag & 1) | |
14820 | { | |
071436c6 NC |
14821 | /* PR 17531 file: 027-19978-0.004. */ |
14822 | size_t maxlen = (end - p) - 1; | |
14823 | ||
14824 | putchar ('"'); | |
4082ef84 NC |
14825 | if (maxlen > 0) |
14826 | { | |
14827 | print_symbol ((int) maxlen, (const char *) p); | |
14828 | p += strnlen ((char *) p, maxlen) + 1; | |
14829 | } | |
14830 | else | |
14831 | { | |
14832 | printf (_("<corrupt string tag>")); | |
14833 | p = (unsigned char *) end; | |
14834 | } | |
071436c6 | 14835 | printf ("\"\n"); |
f6f0e17b NC |
14836 | } |
14837 | else | |
14838 | { | |
cd30bcef | 14839 | READ_ULEB (val, p, end); |
f6f0e17b NC |
14840 | printf ("%ld (0x%lx)\n", val, val); |
14841 | } | |
14842 | ||
4082ef84 | 14843 | assert (p <= end); |
f6f0e17b NC |
14844 | return p; |
14845 | } | |
14846 | ||
53a346d8 CZ |
14847 | /* ARC ABI attributes section. */ |
14848 | ||
14849 | static unsigned char * | |
14850 | display_arc_attribute (unsigned char * p, | |
14851 | const unsigned char * const end) | |
14852 | { | |
14853 | unsigned int tag; | |
53a346d8 CZ |
14854 | unsigned int val; |
14855 | ||
cd30bcef | 14856 | READ_ULEB (tag, p, end); |
53a346d8 CZ |
14857 | |
14858 | switch (tag) | |
14859 | { | |
14860 | case Tag_ARC_PCS_config: | |
cd30bcef | 14861 | READ_ULEB (val, p, end); |
53a346d8 CZ |
14862 | printf (" Tag_ARC_PCS_config: "); |
14863 | switch (val) | |
14864 | { | |
14865 | case 0: | |
14866 | printf (_("Absent/Non standard\n")); | |
14867 | break; | |
14868 | case 1: | |
14869 | printf (_("Bare metal/mwdt\n")); | |
14870 | break; | |
14871 | case 2: | |
14872 | printf (_("Bare metal/newlib\n")); | |
14873 | break; | |
14874 | case 3: | |
14875 | printf (_("Linux/uclibc\n")); | |
14876 | break; | |
14877 | case 4: | |
14878 | printf (_("Linux/glibc\n")); | |
14879 | break; | |
14880 | default: | |
14881 | printf (_("Unknown\n")); | |
14882 | break; | |
14883 | } | |
14884 | break; | |
14885 | ||
14886 | case Tag_ARC_CPU_base: | |
cd30bcef | 14887 | READ_ULEB (val, p, end); |
53a346d8 CZ |
14888 | printf (" Tag_ARC_CPU_base: "); |
14889 | switch (val) | |
14890 | { | |
14891 | default: | |
14892 | case TAG_CPU_NONE: | |
14893 | printf (_("Absent\n")); | |
14894 | break; | |
14895 | case TAG_CPU_ARC6xx: | |
14896 | printf ("ARC6xx\n"); | |
14897 | break; | |
14898 | case TAG_CPU_ARC7xx: | |
14899 | printf ("ARC7xx\n"); | |
14900 | break; | |
14901 | case TAG_CPU_ARCEM: | |
14902 | printf ("ARCEM\n"); | |
14903 | break; | |
14904 | case TAG_CPU_ARCHS: | |
14905 | printf ("ARCHS\n"); | |
14906 | break; | |
14907 | } | |
14908 | break; | |
14909 | ||
14910 | case Tag_ARC_CPU_variation: | |
cd30bcef | 14911 | READ_ULEB (val, p, end); |
53a346d8 CZ |
14912 | printf (" Tag_ARC_CPU_variation: "); |
14913 | switch (val) | |
14914 | { | |
14915 | default: | |
14916 | if (val > 0 && val < 16) | |
53a346d8 | 14917 | printf ("Core%d\n", val); |
d8cbc93b JL |
14918 | else |
14919 | printf ("Unknown\n"); | |
14920 | break; | |
14921 | ||
53a346d8 CZ |
14922 | case 0: |
14923 | printf (_("Absent\n")); | |
14924 | break; | |
14925 | } | |
14926 | break; | |
14927 | ||
14928 | case Tag_ARC_CPU_name: | |
14929 | printf (" Tag_ARC_CPU_name: "); | |
14930 | p = display_tag_value (-1, p, end); | |
14931 | break; | |
14932 | ||
14933 | case Tag_ARC_ABI_rf16: | |
cd30bcef | 14934 | READ_ULEB (val, p, end); |
53a346d8 CZ |
14935 | printf (" Tag_ARC_ABI_rf16: %s\n", val ? _("yes") : _("no")); |
14936 | break; | |
14937 | ||
14938 | case Tag_ARC_ABI_osver: | |
cd30bcef | 14939 | READ_ULEB (val, p, end); |
53a346d8 CZ |
14940 | printf (" Tag_ARC_ABI_osver: v%d\n", val); |
14941 | break; | |
14942 | ||
14943 | case Tag_ARC_ABI_pic: | |
14944 | case Tag_ARC_ABI_sda: | |
cd30bcef | 14945 | READ_ULEB (val, p, end); |
53a346d8 CZ |
14946 | printf (tag == Tag_ARC_ABI_sda ? " Tag_ARC_ABI_sda: " |
14947 | : " Tag_ARC_ABI_pic: "); | |
14948 | switch (val) | |
14949 | { | |
14950 | case 0: | |
14951 | printf (_("Absent\n")); | |
14952 | break; | |
14953 | case 1: | |
14954 | printf ("MWDT\n"); | |
14955 | break; | |
14956 | case 2: | |
14957 | printf ("GNU\n"); | |
14958 | break; | |
14959 | default: | |
14960 | printf (_("Unknown\n")); | |
14961 | break; | |
14962 | } | |
14963 | break; | |
14964 | ||
14965 | case Tag_ARC_ABI_tls: | |
cd30bcef | 14966 | READ_ULEB (val, p, end); |
53a346d8 CZ |
14967 | printf (" Tag_ARC_ABI_tls: %s\n", val ? "r25": "none"); |
14968 | break; | |
14969 | ||
14970 | case Tag_ARC_ABI_enumsize: | |
cd30bcef | 14971 | READ_ULEB (val, p, end); |
53a346d8 CZ |
14972 | printf (" Tag_ARC_ABI_enumsize: %s\n", val ? _("default") : |
14973 | _("smallest")); | |
14974 | break; | |
14975 | ||
14976 | case Tag_ARC_ABI_exceptions: | |
cd30bcef | 14977 | READ_ULEB (val, p, end); |
53a346d8 CZ |
14978 | printf (" Tag_ARC_ABI_exceptions: %s\n", val ? _("OPTFP") |
14979 | : _("default")); | |
14980 | break; | |
14981 | ||
14982 | case Tag_ARC_ABI_double_size: | |
cd30bcef | 14983 | READ_ULEB (val, p, end); |
53a346d8 CZ |
14984 | printf (" Tag_ARC_ABI_double_size: %d\n", val); |
14985 | break; | |
14986 | ||
14987 | case Tag_ARC_ISA_config: | |
14988 | printf (" Tag_ARC_ISA_config: "); | |
14989 | p = display_tag_value (-1, p, end); | |
14990 | break; | |
14991 | ||
14992 | case Tag_ARC_ISA_apex: | |
14993 | printf (" Tag_ARC_ISA_apex: "); | |
14994 | p = display_tag_value (-1, p, end); | |
14995 | break; | |
14996 | ||
14997 | case Tag_ARC_ISA_mpy_option: | |
cd30bcef | 14998 | READ_ULEB (val, p, end); |
53a346d8 CZ |
14999 | printf (" Tag_ARC_ISA_mpy_option: %d\n", val); |
15000 | break; | |
15001 | ||
db1e1b45 | 15002 | case Tag_ARC_ATR_version: |
cd30bcef | 15003 | READ_ULEB (val, p, end); |
db1e1b45 | 15004 | printf (" Tag_ARC_ATR_version: %d\n", val); |
15005 | break; | |
15006 | ||
53a346d8 CZ |
15007 | default: |
15008 | return display_tag_value (tag & 1, p, end); | |
15009 | } | |
15010 | ||
15011 | return p; | |
15012 | } | |
15013 | ||
11c1ff18 PB |
15014 | /* ARM EABI attributes section. */ |
15015 | typedef struct | |
15016 | { | |
70e99720 | 15017 | unsigned int tag; |
2cf0635d | 15018 | const char * name; |
11c1ff18 | 15019 | /* 0 = special, 1 = string, 2 = uleb123, > 0x80 == table lookup. */ |
70e99720 | 15020 | unsigned int type; |
2cf0635d | 15021 | const char ** table; |
11c1ff18 PB |
15022 | } arm_attr_public_tag; |
15023 | ||
2cf0635d | 15024 | static const char * arm_attr_tag_CPU_arch[] = |
11c1ff18 | 15025 | {"Pre-v4", "v4", "v4T", "v5T", "v5TE", "v5TEJ", "v6", "v6KZ", "v6T2", |
ced40572 | 15026 | "v6K", "v7", "v6-M", "v6S-M", "v7E-M", "v8", "v8-R", "v8-M.baseline", |
031254f2 | 15027 | "v8-M.mainline", "", "", "", "v8.1-M.mainline"}; |
2cf0635d NC |
15028 | static const char * arm_attr_tag_ARM_ISA_use[] = {"No", "Yes"}; |
15029 | static const char * arm_attr_tag_THUMB_ISA_use[] = | |
4ed7ed8d | 15030 | {"No", "Thumb-1", "Thumb-2", "Yes"}; |
75375b3e | 15031 | static const char * arm_attr_tag_FP_arch[] = |
bca38921 | 15032 | {"No", "VFPv1", "VFPv2", "VFPv3", "VFPv3-D16", "VFPv4", "VFPv4-D16", |
a715796b | 15033 | "FP for ARMv8", "FPv5/FP-D16 for ARMv8"}; |
2cf0635d | 15034 | static const char * arm_attr_tag_WMMX_arch[] = {"No", "WMMXv1", "WMMXv2"}; |
dd24e3da | 15035 | static const char * arm_attr_tag_Advanced_SIMD_arch[] = |
9411fd44 MW |
15036 | {"No", "NEONv1", "NEONv1 with Fused-MAC", "NEON for ARMv8", |
15037 | "NEON for ARMv8.1"}; | |
2cf0635d | 15038 | static const char * arm_attr_tag_PCS_config[] = |
11c1ff18 PB |
15039 | {"None", "Bare platform", "Linux application", "Linux DSO", "PalmOS 2004", |
15040 | "PalmOS (reserved)", "SymbianOS 2004", "SymbianOS (reserved)"}; | |
2cf0635d | 15041 | static const char * arm_attr_tag_ABI_PCS_R9_use[] = |
11c1ff18 | 15042 | {"V6", "SB", "TLS", "Unused"}; |
2cf0635d | 15043 | static const char * arm_attr_tag_ABI_PCS_RW_data[] = |
11c1ff18 | 15044 | {"Absolute", "PC-relative", "SB-relative", "None"}; |
2cf0635d | 15045 | static const char * arm_attr_tag_ABI_PCS_RO_data[] = |
11c1ff18 | 15046 | {"Absolute", "PC-relative", "None"}; |
2cf0635d | 15047 | static const char * arm_attr_tag_ABI_PCS_GOT_use[] = |
11c1ff18 | 15048 | {"None", "direct", "GOT-indirect"}; |
2cf0635d | 15049 | static const char * arm_attr_tag_ABI_PCS_wchar_t[] = |
11c1ff18 | 15050 | {"None", "??? 1", "2", "??? 3", "4"}; |
2cf0635d NC |
15051 | static const char * arm_attr_tag_ABI_FP_rounding[] = {"Unused", "Needed"}; |
15052 | static const char * arm_attr_tag_ABI_FP_denormal[] = | |
f5f53991 | 15053 | {"Unused", "Needed", "Sign only"}; |
2cf0635d NC |
15054 | static const char * arm_attr_tag_ABI_FP_exceptions[] = {"Unused", "Needed"}; |
15055 | static const char * arm_attr_tag_ABI_FP_user_exceptions[] = {"Unused", "Needed"}; | |
15056 | static const char * arm_attr_tag_ABI_FP_number_model[] = | |
11c1ff18 | 15057 | {"Unused", "Finite", "RTABI", "IEEE 754"}; |
2cf0635d | 15058 | static const char * arm_attr_tag_ABI_enum_size[] = |
11c1ff18 | 15059 | {"Unused", "small", "int", "forced to int"}; |
2cf0635d | 15060 | static const char * arm_attr_tag_ABI_HardFP_use[] = |
99654aaf | 15061 | {"As Tag_FP_arch", "SP only", "Reserved", "Deprecated"}; |
2cf0635d | 15062 | static const char * arm_attr_tag_ABI_VFP_args[] = |
5c294fee | 15063 | {"AAPCS", "VFP registers", "custom", "compatible"}; |
2cf0635d | 15064 | static const char * arm_attr_tag_ABI_WMMX_args[] = |
11c1ff18 | 15065 | {"AAPCS", "WMMX registers", "custom"}; |
2cf0635d | 15066 | static const char * arm_attr_tag_ABI_optimization_goals[] = |
11c1ff18 PB |
15067 | {"None", "Prefer Speed", "Aggressive Speed", "Prefer Size", |
15068 | "Aggressive Size", "Prefer Debug", "Aggressive Debug"}; | |
2cf0635d | 15069 | static const char * arm_attr_tag_ABI_FP_optimization_goals[] = |
11c1ff18 PB |
15070 | {"None", "Prefer Speed", "Aggressive Speed", "Prefer Size", |
15071 | "Aggressive Size", "Prefer Accuracy", "Aggressive Accuracy"}; | |
2cf0635d | 15072 | static const char * arm_attr_tag_CPU_unaligned_access[] = {"None", "v6"}; |
75375b3e | 15073 | static const char * arm_attr_tag_FP_HP_extension[] = |
8e79c3df | 15074 | {"Not Allowed", "Allowed"}; |
2cf0635d | 15075 | static const char * arm_attr_tag_ABI_FP_16bit_format[] = |
8e79c3df | 15076 | {"None", "IEEE 754", "Alternative Format"}; |
15afaa63 TP |
15077 | static const char * arm_attr_tag_DSP_extension[] = |
15078 | {"Follow architecture", "Allowed"}; | |
dd24e3da | 15079 | static const char * arm_attr_tag_MPextension_use[] = |
cd21e546 MGD |
15080 | {"Not Allowed", "Allowed"}; |
15081 | static const char * arm_attr_tag_DIV_use[] = | |
dd24e3da | 15082 | {"Allowed in Thumb-ISA, v7-R or v7-M", "Not allowed", |
cd21e546 | 15083 | "Allowed in v7-A with integer division extension"}; |
2cf0635d NC |
15084 | static const char * arm_attr_tag_T2EE_use[] = {"Not Allowed", "Allowed"}; |
15085 | static const char * arm_attr_tag_Virtualization_use[] = | |
dd24e3da | 15086 | {"Not Allowed", "TrustZone", "Virtualization Extensions", |
cd21e546 | 15087 | "TrustZone and Virtualization Extensions"}; |
dd24e3da | 15088 | static const char * arm_attr_tag_MPextension_use_legacy[] = |
f5f53991 | 15089 | {"Not Allowed", "Allowed"}; |
11c1ff18 | 15090 | |
a7ad558c AV |
15091 | static const char * arm_attr_tag_MVE_arch[] = |
15092 | {"No MVE", "MVE Integer only", "MVE Integer and FP"}; | |
15093 | ||
11c1ff18 PB |
15094 | #define LOOKUP(id, name) \ |
15095 | {id, #name, 0x80 | ARRAY_SIZE(arm_attr_tag_##name), arm_attr_tag_##name} | |
d70c5fc7 | 15096 | static arm_attr_public_tag arm_attr_public_tags[] = |
11c1ff18 PB |
15097 | { |
15098 | {4, "CPU_raw_name", 1, NULL}, | |
15099 | {5, "CPU_name", 1, NULL}, | |
15100 | LOOKUP(6, CPU_arch), | |
15101 | {7, "CPU_arch_profile", 0, NULL}, | |
15102 | LOOKUP(8, ARM_ISA_use), | |
15103 | LOOKUP(9, THUMB_ISA_use), | |
75375b3e | 15104 | LOOKUP(10, FP_arch), |
11c1ff18 | 15105 | LOOKUP(11, WMMX_arch), |
f5f53991 AS |
15106 | LOOKUP(12, Advanced_SIMD_arch), |
15107 | LOOKUP(13, PCS_config), | |
11c1ff18 PB |
15108 | LOOKUP(14, ABI_PCS_R9_use), |
15109 | LOOKUP(15, ABI_PCS_RW_data), | |
f5f53991 | 15110 | LOOKUP(16, ABI_PCS_RO_data), |
11c1ff18 PB |
15111 | LOOKUP(17, ABI_PCS_GOT_use), |
15112 | LOOKUP(18, ABI_PCS_wchar_t), | |
15113 | LOOKUP(19, ABI_FP_rounding), | |
15114 | LOOKUP(20, ABI_FP_denormal), | |
15115 | LOOKUP(21, ABI_FP_exceptions), | |
15116 | LOOKUP(22, ABI_FP_user_exceptions), | |
15117 | LOOKUP(23, ABI_FP_number_model), | |
75375b3e MGD |
15118 | {24, "ABI_align_needed", 0, NULL}, |
15119 | {25, "ABI_align_preserved", 0, NULL}, | |
11c1ff18 PB |
15120 | LOOKUP(26, ABI_enum_size), |
15121 | LOOKUP(27, ABI_HardFP_use), | |
15122 | LOOKUP(28, ABI_VFP_args), | |
15123 | LOOKUP(29, ABI_WMMX_args), | |
15124 | LOOKUP(30, ABI_optimization_goals), | |
15125 | LOOKUP(31, ABI_FP_optimization_goals), | |
8e79c3df | 15126 | {32, "compatibility", 0, NULL}, |
f5f53991 | 15127 | LOOKUP(34, CPU_unaligned_access), |
75375b3e | 15128 | LOOKUP(36, FP_HP_extension), |
8e79c3df | 15129 | LOOKUP(38, ABI_FP_16bit_format), |
cd21e546 MGD |
15130 | LOOKUP(42, MPextension_use), |
15131 | LOOKUP(44, DIV_use), | |
15afaa63 | 15132 | LOOKUP(46, DSP_extension), |
a7ad558c | 15133 | LOOKUP(48, MVE_arch), |
f5f53991 AS |
15134 | {64, "nodefaults", 0, NULL}, |
15135 | {65, "also_compatible_with", 0, NULL}, | |
15136 | LOOKUP(66, T2EE_use), | |
15137 | {67, "conformance", 1, NULL}, | |
15138 | LOOKUP(68, Virtualization_use), | |
cd21e546 | 15139 | LOOKUP(70, MPextension_use_legacy) |
11c1ff18 PB |
15140 | }; |
15141 | #undef LOOKUP | |
15142 | ||
11c1ff18 | 15143 | static unsigned char * |
f6f0e17b NC |
15144 | display_arm_attribute (unsigned char * p, |
15145 | const unsigned char * const end) | |
11c1ff18 | 15146 | { |
70e99720 | 15147 | unsigned int tag; |
70e99720 | 15148 | unsigned int val; |
2cf0635d | 15149 | arm_attr_public_tag * attr; |
11c1ff18 | 15150 | unsigned i; |
70e99720 | 15151 | unsigned int type; |
11c1ff18 | 15152 | |
cd30bcef | 15153 | READ_ULEB (tag, p, end); |
11c1ff18 | 15154 | attr = NULL; |
2cf0635d | 15155 | for (i = 0; i < ARRAY_SIZE (arm_attr_public_tags); i++) |
11c1ff18 PB |
15156 | { |
15157 | if (arm_attr_public_tags[i].tag == tag) | |
15158 | { | |
15159 | attr = &arm_attr_public_tags[i]; | |
15160 | break; | |
15161 | } | |
15162 | } | |
15163 | ||
15164 | if (attr) | |
15165 | { | |
15166 | printf (" Tag_%s: ", attr->name); | |
15167 | switch (attr->type) | |
15168 | { | |
15169 | case 0: | |
15170 | switch (tag) | |
15171 | { | |
15172 | case 7: /* Tag_CPU_arch_profile. */ | |
cd30bcef | 15173 | READ_ULEB (val, p, end); |
11c1ff18 PB |
15174 | switch (val) |
15175 | { | |
2b692964 NC |
15176 | case 0: printf (_("None\n")); break; |
15177 | case 'A': printf (_("Application\n")); break; | |
15178 | case 'R': printf (_("Realtime\n")); break; | |
15179 | case 'M': printf (_("Microcontroller\n")); break; | |
15180 | case 'S': printf (_("Application or Realtime\n")); break; | |
11c1ff18 PB |
15181 | default: printf ("??? (%d)\n", val); break; |
15182 | } | |
15183 | break; | |
15184 | ||
75375b3e | 15185 | case 24: /* Tag_align_needed. */ |
cd30bcef | 15186 | READ_ULEB (val, p, end); |
75375b3e MGD |
15187 | switch (val) |
15188 | { | |
2b692964 NC |
15189 | case 0: printf (_("None\n")); break; |
15190 | case 1: printf (_("8-byte\n")); break; | |
15191 | case 2: printf (_("4-byte\n")); break; | |
75375b3e MGD |
15192 | case 3: printf ("??? 3\n"); break; |
15193 | default: | |
15194 | if (val <= 12) | |
dd24e3da | 15195 | printf (_("8-byte and up to %d-byte extended\n"), |
75375b3e MGD |
15196 | 1 << val); |
15197 | else | |
15198 | printf ("??? (%d)\n", val); | |
15199 | break; | |
15200 | } | |
15201 | break; | |
15202 | ||
15203 | case 25: /* Tag_align_preserved. */ | |
cd30bcef | 15204 | READ_ULEB (val, p, end); |
75375b3e MGD |
15205 | switch (val) |
15206 | { | |
2b692964 NC |
15207 | case 0: printf (_("None\n")); break; |
15208 | case 1: printf (_("8-byte, except leaf SP\n")); break; | |
15209 | case 2: printf (_("8-byte\n")); break; | |
75375b3e MGD |
15210 | case 3: printf ("??? 3\n"); break; |
15211 | default: | |
15212 | if (val <= 12) | |
dd24e3da | 15213 | printf (_("8-byte and up to %d-byte extended\n"), |
75375b3e MGD |
15214 | 1 << val); |
15215 | else | |
15216 | printf ("??? (%d)\n", val); | |
15217 | break; | |
15218 | } | |
15219 | break; | |
15220 | ||
11c1ff18 | 15221 | case 32: /* Tag_compatibility. */ |
071436c6 | 15222 | { |
cd30bcef | 15223 | READ_ULEB (val, p, end); |
071436c6 | 15224 | printf (_("flag = %d, vendor = "), val); |
4082ef84 NC |
15225 | if (p < end - 1) |
15226 | { | |
15227 | size_t maxlen = (end - p) - 1; | |
15228 | ||
15229 | print_symbol ((int) maxlen, (const char *) p); | |
15230 | p += strnlen ((char *) p, maxlen) + 1; | |
15231 | } | |
15232 | else | |
15233 | { | |
15234 | printf (_("<corrupt>")); | |
15235 | p = (unsigned char *) end; | |
15236 | } | |
071436c6 | 15237 | putchar ('\n'); |
071436c6 | 15238 | } |
11c1ff18 PB |
15239 | break; |
15240 | ||
f5f53991 | 15241 | case 64: /* Tag_nodefaults. */ |
541a3cbd NC |
15242 | /* PR 17531: file: 001-505008-0.01. */ |
15243 | if (p < end) | |
15244 | p++; | |
2b692964 | 15245 | printf (_("True\n")); |
f5f53991 AS |
15246 | break; |
15247 | ||
15248 | case 65: /* Tag_also_compatible_with. */ | |
cd30bcef | 15249 | READ_ULEB (val, p, end); |
f5f53991 AS |
15250 | if (val == 6 /* Tag_CPU_arch. */) |
15251 | { | |
cd30bcef | 15252 | READ_ULEB (val, p, end); |
071436c6 | 15253 | if ((unsigned int) val >= ARRAY_SIZE (arm_attr_tag_CPU_arch)) |
f5f53991 AS |
15254 | printf ("??? (%d)\n", val); |
15255 | else | |
15256 | printf ("%s\n", arm_attr_tag_CPU_arch[val]); | |
15257 | } | |
15258 | else | |
15259 | printf ("???\n"); | |
071436c6 NC |
15260 | while (p < end && *(p++) != '\0' /* NUL terminator. */) |
15261 | ; | |
f5f53991 AS |
15262 | break; |
15263 | ||
11c1ff18 | 15264 | default: |
bee0ee85 NC |
15265 | printf (_("<unknown: %d>\n"), tag); |
15266 | break; | |
11c1ff18 PB |
15267 | } |
15268 | return p; | |
15269 | ||
15270 | case 1: | |
f6f0e17b | 15271 | return display_tag_value (-1, p, end); |
11c1ff18 | 15272 | case 2: |
f6f0e17b | 15273 | return display_tag_value (0, p, end); |
11c1ff18 PB |
15274 | |
15275 | default: | |
15276 | assert (attr->type & 0x80); | |
cd30bcef | 15277 | READ_ULEB (val, p, end); |
11c1ff18 PB |
15278 | type = attr->type & 0x7f; |
15279 | if (val >= type) | |
15280 | printf ("??? (%d)\n", val); | |
15281 | else | |
15282 | printf ("%s\n", attr->table[val]); | |
15283 | return p; | |
15284 | } | |
15285 | } | |
11c1ff18 | 15286 | |
f6f0e17b | 15287 | return display_tag_value (tag, p, end); |
11c1ff18 PB |
15288 | } |
15289 | ||
104d59d1 | 15290 | static unsigned char * |
60bca95a | 15291 | display_gnu_attribute (unsigned char * p, |
60abdbed | 15292 | unsigned char * (* display_proc_gnu_attribute) (unsigned char *, unsigned int, const unsigned char * const), |
f6f0e17b | 15293 | const unsigned char * const end) |
104d59d1 | 15294 | { |
cd30bcef | 15295 | unsigned int tag; |
60abdbed | 15296 | unsigned int val; |
104d59d1 | 15297 | |
cd30bcef | 15298 | READ_ULEB (tag, p, end); |
104d59d1 JM |
15299 | |
15300 | /* Tag_compatibility is the only generic GNU attribute defined at | |
15301 | present. */ | |
15302 | if (tag == 32) | |
15303 | { | |
cd30bcef | 15304 | READ_ULEB (val, p, end); |
071436c6 NC |
15305 | |
15306 | printf (_("flag = %d, vendor = "), val); | |
f6f0e17b NC |
15307 | if (p == end) |
15308 | { | |
071436c6 | 15309 | printf (_("<corrupt>\n")); |
f6f0e17b NC |
15310 | warn (_("corrupt vendor attribute\n")); |
15311 | } | |
15312 | else | |
15313 | { | |
4082ef84 NC |
15314 | if (p < end - 1) |
15315 | { | |
15316 | size_t maxlen = (end - p) - 1; | |
071436c6 | 15317 | |
4082ef84 NC |
15318 | print_symbol ((int) maxlen, (const char *) p); |
15319 | p += strnlen ((char *) p, maxlen) + 1; | |
15320 | } | |
15321 | else | |
15322 | { | |
15323 | printf (_("<corrupt>")); | |
15324 | p = (unsigned char *) end; | |
15325 | } | |
071436c6 | 15326 | putchar ('\n'); |
f6f0e17b | 15327 | } |
104d59d1 JM |
15328 | return p; |
15329 | } | |
15330 | ||
15331 | if ((tag & 2) == 0 && display_proc_gnu_attribute) | |
f6f0e17b | 15332 | return display_proc_gnu_attribute (p, tag, end); |
104d59d1 | 15333 | |
f6f0e17b | 15334 | return display_tag_value (tag, p, end); |
104d59d1 JM |
15335 | } |
15336 | ||
34c8bcba | 15337 | static unsigned char * |
f6f0e17b | 15338 | display_power_gnu_attribute (unsigned char * p, |
60abdbed | 15339 | unsigned int tag, |
f6f0e17b | 15340 | const unsigned char * const end) |
34c8bcba | 15341 | { |
005d79fd | 15342 | unsigned int val; |
34c8bcba JM |
15343 | |
15344 | if (tag == Tag_GNU_Power_ABI_FP) | |
15345 | { | |
34c8bcba | 15346 | printf (" Tag_GNU_Power_ABI_FP: "); |
cd30bcef | 15347 | if (p == end) |
005d79fd AM |
15348 | { |
15349 | printf (_("<corrupt>\n")); | |
15350 | return p; | |
15351 | } | |
cd30bcef | 15352 | READ_ULEB (val, p, end); |
60bca95a | 15353 | |
005d79fd AM |
15354 | if (val > 15) |
15355 | printf ("(%#x), ", val); | |
15356 | ||
15357 | switch (val & 3) | |
34c8bcba JM |
15358 | { |
15359 | case 0: | |
005d79fd | 15360 | printf (_("unspecified hard/soft float, ")); |
34c8bcba JM |
15361 | break; |
15362 | case 1: | |
005d79fd | 15363 | printf (_("hard float, ")); |
34c8bcba JM |
15364 | break; |
15365 | case 2: | |
005d79fd | 15366 | printf (_("soft float, ")); |
34c8bcba | 15367 | break; |
3c7b9897 | 15368 | case 3: |
005d79fd | 15369 | printf (_("single-precision hard float, ")); |
3c7b9897 | 15370 | break; |
005d79fd AM |
15371 | } |
15372 | ||
15373 | switch (val & 0xC) | |
15374 | { | |
15375 | case 0: | |
15376 | printf (_("unspecified long double\n")); | |
15377 | break; | |
15378 | case 4: | |
15379 | printf (_("128-bit IBM long double\n")); | |
15380 | break; | |
15381 | case 8: | |
15382 | printf (_("64-bit long double\n")); | |
15383 | break; | |
15384 | case 12: | |
15385 | printf (_("128-bit IEEE long double\n")); | |
34c8bcba JM |
15386 | break; |
15387 | } | |
15388 | return p; | |
005d79fd | 15389 | } |
34c8bcba | 15390 | |
c6e65352 DJ |
15391 | if (tag == Tag_GNU_Power_ABI_Vector) |
15392 | { | |
c6e65352 | 15393 | printf (" Tag_GNU_Power_ABI_Vector: "); |
cd30bcef | 15394 | if (p == end) |
005d79fd AM |
15395 | { |
15396 | printf (_("<corrupt>\n")); | |
15397 | return p; | |
15398 | } | |
cd30bcef | 15399 | READ_ULEB (val, p, end); |
005d79fd AM |
15400 | |
15401 | if (val > 3) | |
15402 | printf ("(%#x), ", val); | |
15403 | ||
15404 | switch (val & 3) | |
c6e65352 DJ |
15405 | { |
15406 | case 0: | |
005d79fd | 15407 | printf (_("unspecified\n")); |
c6e65352 DJ |
15408 | break; |
15409 | case 1: | |
005d79fd | 15410 | printf (_("generic\n")); |
c6e65352 DJ |
15411 | break; |
15412 | case 2: | |
15413 | printf ("AltiVec\n"); | |
15414 | break; | |
15415 | case 3: | |
15416 | printf ("SPE\n"); | |
15417 | break; | |
c6e65352 DJ |
15418 | } |
15419 | return p; | |
005d79fd | 15420 | } |
c6e65352 | 15421 | |
f82e0623 NF |
15422 | if (tag == Tag_GNU_Power_ABI_Struct_Return) |
15423 | { | |
005d79fd | 15424 | printf (" Tag_GNU_Power_ABI_Struct_Return: "); |
cd30bcef | 15425 | if (p == end) |
f6f0e17b | 15426 | { |
005d79fd | 15427 | printf (_("<corrupt>\n")); |
f6f0e17b NC |
15428 | return p; |
15429 | } | |
cd30bcef | 15430 | READ_ULEB (val, p, end); |
0b4362b0 | 15431 | |
005d79fd AM |
15432 | if (val > 2) |
15433 | printf ("(%#x), ", val); | |
15434 | ||
15435 | switch (val & 3) | |
15436 | { | |
15437 | case 0: | |
15438 | printf (_("unspecified\n")); | |
15439 | break; | |
15440 | case 1: | |
15441 | printf ("r3/r4\n"); | |
15442 | break; | |
15443 | case 2: | |
15444 | printf (_("memory\n")); | |
15445 | break; | |
15446 | case 3: | |
15447 | printf ("???\n"); | |
15448 | break; | |
15449 | } | |
f82e0623 NF |
15450 | return p; |
15451 | } | |
15452 | ||
f6f0e17b | 15453 | return display_tag_value (tag & 1, p, end); |
34c8bcba JM |
15454 | } |
15455 | ||
643f7afb AK |
15456 | static unsigned char * |
15457 | display_s390_gnu_attribute (unsigned char * p, | |
60abdbed | 15458 | unsigned int tag, |
643f7afb AK |
15459 | const unsigned char * const end) |
15460 | { | |
cd30bcef | 15461 | unsigned int val; |
643f7afb AK |
15462 | |
15463 | if (tag == Tag_GNU_S390_ABI_Vector) | |
15464 | { | |
643f7afb | 15465 | printf (" Tag_GNU_S390_ABI_Vector: "); |
cd30bcef | 15466 | READ_ULEB (val, p, end); |
643f7afb AK |
15467 | |
15468 | switch (val) | |
15469 | { | |
15470 | case 0: | |
15471 | printf (_("any\n")); | |
15472 | break; | |
15473 | case 1: | |
15474 | printf (_("software\n")); | |
15475 | break; | |
15476 | case 2: | |
15477 | printf (_("hardware\n")); | |
15478 | break; | |
15479 | default: | |
15480 | printf ("??? (%d)\n", val); | |
15481 | break; | |
15482 | } | |
15483 | return p; | |
15484 | } | |
15485 | ||
15486 | return display_tag_value (tag & 1, p, end); | |
15487 | } | |
15488 | ||
9e8c70f9 | 15489 | static void |
60abdbed | 15490 | display_sparc_hwcaps (unsigned int mask) |
9e8c70f9 DM |
15491 | { |
15492 | if (mask) | |
15493 | { | |
32ec8896 | 15494 | bfd_boolean first = TRUE; |
071436c6 | 15495 | |
9e8c70f9 | 15496 | if (mask & ELF_SPARC_HWCAP_MUL32) |
32ec8896 | 15497 | fputs ("mul32", stdout), first = FALSE; |
9e8c70f9 | 15498 | if (mask & ELF_SPARC_HWCAP_DIV32) |
32ec8896 | 15499 | printf ("%sdiv32", first ? "" : "|"), first = FALSE; |
9e8c70f9 | 15500 | if (mask & ELF_SPARC_HWCAP_FSMULD) |
32ec8896 | 15501 | printf ("%sfsmuld", first ? "" : "|"), first = FALSE; |
9e8c70f9 | 15502 | if (mask & ELF_SPARC_HWCAP_V8PLUS) |
32ec8896 | 15503 | printf ("%sv8plus", first ? "" : "|"), first = FALSE; |
9e8c70f9 | 15504 | if (mask & ELF_SPARC_HWCAP_POPC) |
32ec8896 | 15505 | printf ("%spopc", first ? "" : "|"), first = FALSE; |
9e8c70f9 | 15506 | if (mask & ELF_SPARC_HWCAP_VIS) |
32ec8896 | 15507 | printf ("%svis", first ? "" : "|"), first = FALSE; |
9e8c70f9 | 15508 | if (mask & ELF_SPARC_HWCAP_VIS2) |
32ec8896 | 15509 | printf ("%svis2", first ? "" : "|"), first = FALSE; |
9e8c70f9 | 15510 | if (mask & ELF_SPARC_HWCAP_ASI_BLK_INIT) |
32ec8896 | 15511 | printf ("%sASIBlkInit", first ? "" : "|"), first = FALSE; |
9e8c70f9 | 15512 | if (mask & ELF_SPARC_HWCAP_FMAF) |
32ec8896 | 15513 | printf ("%sfmaf", first ? "" : "|"), first = FALSE; |
9e8c70f9 | 15514 | if (mask & ELF_SPARC_HWCAP_VIS3) |
32ec8896 | 15515 | printf ("%svis3", first ? "" : "|"), first = FALSE; |
9e8c70f9 | 15516 | if (mask & ELF_SPARC_HWCAP_HPC) |
32ec8896 | 15517 | printf ("%shpc", first ? "" : "|"), first = FALSE; |
9e8c70f9 | 15518 | if (mask & ELF_SPARC_HWCAP_RANDOM) |
32ec8896 | 15519 | printf ("%srandom", first ? "" : "|"), first = FALSE; |
9e8c70f9 | 15520 | if (mask & ELF_SPARC_HWCAP_TRANS) |
32ec8896 | 15521 | printf ("%strans", first ? "" : "|"), first = FALSE; |
9e8c70f9 | 15522 | if (mask & ELF_SPARC_HWCAP_FJFMAU) |
32ec8896 | 15523 | printf ("%sfjfmau", first ? "" : "|"), first = FALSE; |
9e8c70f9 | 15524 | if (mask & ELF_SPARC_HWCAP_IMA) |
32ec8896 | 15525 | printf ("%sima", first ? "" : "|"), first = FALSE; |
9e8c70f9 | 15526 | if (mask & ELF_SPARC_HWCAP_ASI_CACHE_SPARING) |
32ec8896 | 15527 | printf ("%scspare", first ? "" : "|"), first = FALSE; |
9e8c70f9 DM |
15528 | } |
15529 | else | |
071436c6 NC |
15530 | fputc ('0', stdout); |
15531 | fputc ('\n', stdout); | |
9e8c70f9 DM |
15532 | } |
15533 | ||
3d68f91c | 15534 | static void |
60abdbed | 15535 | display_sparc_hwcaps2 (unsigned int mask) |
3d68f91c JM |
15536 | { |
15537 | if (mask) | |
15538 | { | |
32ec8896 | 15539 | bfd_boolean first = TRUE; |
071436c6 | 15540 | |
3d68f91c | 15541 | if (mask & ELF_SPARC_HWCAP2_FJATHPLUS) |
32ec8896 | 15542 | fputs ("fjathplus", stdout), first = FALSE; |
3d68f91c | 15543 | if (mask & ELF_SPARC_HWCAP2_VIS3B) |
32ec8896 | 15544 | printf ("%svis3b", first ? "" : "|"), first = FALSE; |
3d68f91c | 15545 | if (mask & ELF_SPARC_HWCAP2_ADP) |
32ec8896 | 15546 | printf ("%sadp", first ? "" : "|"), first = FALSE; |
3d68f91c | 15547 | if (mask & ELF_SPARC_HWCAP2_SPARC5) |
32ec8896 | 15548 | printf ("%ssparc5", first ? "" : "|"), first = FALSE; |
3d68f91c | 15549 | if (mask & ELF_SPARC_HWCAP2_MWAIT) |
32ec8896 | 15550 | printf ("%smwait", first ? "" : "|"), first = FALSE; |
3d68f91c | 15551 | if (mask & ELF_SPARC_HWCAP2_XMPMUL) |
32ec8896 | 15552 | printf ("%sxmpmul", first ? "" : "|"), first = FALSE; |
3d68f91c | 15553 | if (mask & ELF_SPARC_HWCAP2_XMONT) |
32ec8896 | 15554 | printf ("%sxmont2", first ? "" : "|"), first = FALSE; |
3d68f91c | 15555 | if (mask & ELF_SPARC_HWCAP2_NSEC) |
32ec8896 | 15556 | printf ("%snsec", first ? "" : "|"), first = FALSE; |
3d68f91c | 15557 | if (mask & ELF_SPARC_HWCAP2_FJATHHPC) |
32ec8896 | 15558 | printf ("%sfjathhpc", first ? "" : "|"), first = FALSE; |
3d68f91c | 15559 | if (mask & ELF_SPARC_HWCAP2_FJDES) |
32ec8896 | 15560 | printf ("%sfjdes", first ? "" : "|"), first = FALSE; |
3d68f91c | 15561 | if (mask & ELF_SPARC_HWCAP2_FJAES) |
32ec8896 | 15562 | printf ("%sfjaes", first ? "" : "|"), first = FALSE; |
3d68f91c JM |
15563 | } |
15564 | else | |
071436c6 NC |
15565 | fputc ('0', stdout); |
15566 | fputc ('\n', stdout); | |
3d68f91c JM |
15567 | } |
15568 | ||
9e8c70f9 | 15569 | static unsigned char * |
f6f0e17b | 15570 | display_sparc_gnu_attribute (unsigned char * p, |
60abdbed | 15571 | unsigned int tag, |
f6f0e17b | 15572 | const unsigned char * const end) |
9e8c70f9 | 15573 | { |
cd30bcef | 15574 | unsigned int val; |
3d68f91c | 15575 | |
9e8c70f9 DM |
15576 | if (tag == Tag_GNU_Sparc_HWCAPS) |
15577 | { | |
cd30bcef | 15578 | READ_ULEB (val, p, end); |
9e8c70f9 | 15579 | printf (" Tag_GNU_Sparc_HWCAPS: "); |
9e8c70f9 DM |
15580 | display_sparc_hwcaps (val); |
15581 | return p; | |
3d68f91c JM |
15582 | } |
15583 | if (tag == Tag_GNU_Sparc_HWCAPS2) | |
15584 | { | |
cd30bcef | 15585 | READ_ULEB (val, p, end); |
3d68f91c JM |
15586 | printf (" Tag_GNU_Sparc_HWCAPS2: "); |
15587 | display_sparc_hwcaps2 (val); | |
15588 | return p; | |
15589 | } | |
9e8c70f9 | 15590 | |
f6f0e17b | 15591 | return display_tag_value (tag, p, end); |
9e8c70f9 DM |
15592 | } |
15593 | ||
351cdf24 | 15594 | static void |
32ec8896 | 15595 | print_mips_fp_abi_value (unsigned int val) |
351cdf24 MF |
15596 | { |
15597 | switch (val) | |
15598 | { | |
15599 | case Val_GNU_MIPS_ABI_FP_ANY: | |
15600 | printf (_("Hard or soft float\n")); | |
15601 | break; | |
15602 | case Val_GNU_MIPS_ABI_FP_DOUBLE: | |
15603 | printf (_("Hard float (double precision)\n")); | |
15604 | break; | |
15605 | case Val_GNU_MIPS_ABI_FP_SINGLE: | |
15606 | printf (_("Hard float (single precision)\n")); | |
15607 | break; | |
15608 | case Val_GNU_MIPS_ABI_FP_SOFT: | |
15609 | printf (_("Soft float\n")); | |
15610 | break; | |
15611 | case Val_GNU_MIPS_ABI_FP_OLD_64: | |
15612 | printf (_("Hard float (MIPS32r2 64-bit FPU 12 callee-saved)\n")); | |
15613 | break; | |
15614 | case Val_GNU_MIPS_ABI_FP_XX: | |
15615 | printf (_("Hard float (32-bit CPU, Any FPU)\n")); | |
15616 | break; | |
15617 | case Val_GNU_MIPS_ABI_FP_64: | |
15618 | printf (_("Hard float (32-bit CPU, 64-bit FPU)\n")); | |
15619 | break; | |
15620 | case Val_GNU_MIPS_ABI_FP_64A: | |
15621 | printf (_("Hard float compat (32-bit CPU, 64-bit FPU)\n")); | |
15622 | break; | |
3350cc01 CM |
15623 | case Val_GNU_MIPS_ABI_FP_NAN2008: |
15624 | printf (_("NaN 2008 compatibility\n")); | |
15625 | break; | |
351cdf24 MF |
15626 | default: |
15627 | printf ("??? (%d)\n", val); | |
15628 | break; | |
15629 | } | |
15630 | } | |
15631 | ||
2cf19d5c | 15632 | static unsigned char * |
f6f0e17b | 15633 | display_mips_gnu_attribute (unsigned char * p, |
60abdbed | 15634 | unsigned int tag, |
f6f0e17b | 15635 | const unsigned char * const end) |
2cf19d5c | 15636 | { |
2cf19d5c JM |
15637 | if (tag == Tag_GNU_MIPS_ABI_FP) |
15638 | { | |
32ec8896 | 15639 | unsigned int val; |
f6f0e17b | 15640 | |
2cf19d5c | 15641 | printf (" Tag_GNU_MIPS_ABI_FP: "); |
cd30bcef | 15642 | READ_ULEB (val, p, end); |
351cdf24 | 15643 | print_mips_fp_abi_value (val); |
2cf19d5c JM |
15644 | return p; |
15645 | } | |
15646 | ||
a9f58168 CF |
15647 | if (tag == Tag_GNU_MIPS_ABI_MSA) |
15648 | { | |
32ec8896 | 15649 | unsigned int val; |
a9f58168 | 15650 | |
a9f58168 | 15651 | printf (" Tag_GNU_MIPS_ABI_MSA: "); |
cd30bcef | 15652 | READ_ULEB (val, p, end); |
a9f58168 CF |
15653 | |
15654 | switch (val) | |
15655 | { | |
15656 | case Val_GNU_MIPS_ABI_MSA_ANY: | |
15657 | printf (_("Any MSA or not\n")); | |
15658 | break; | |
15659 | case Val_GNU_MIPS_ABI_MSA_128: | |
15660 | printf (_("128-bit MSA\n")); | |
15661 | break; | |
15662 | default: | |
15663 | printf ("??? (%d)\n", val); | |
15664 | break; | |
15665 | } | |
15666 | return p; | |
15667 | } | |
15668 | ||
f6f0e17b | 15669 | return display_tag_value (tag & 1, p, end); |
2cf19d5c JM |
15670 | } |
15671 | ||
59e6276b | 15672 | static unsigned char * |
f6f0e17b NC |
15673 | display_tic6x_attribute (unsigned char * p, |
15674 | const unsigned char * const end) | |
59e6276b | 15675 | { |
60abdbed | 15676 | unsigned int tag; |
cd30bcef | 15677 | unsigned int val; |
59e6276b | 15678 | |
cd30bcef | 15679 | READ_ULEB (tag, p, end); |
59e6276b JM |
15680 | |
15681 | switch (tag) | |
15682 | { | |
75fa6dc1 | 15683 | case Tag_ISA: |
75fa6dc1 | 15684 | printf (" Tag_ISA: "); |
cd30bcef | 15685 | READ_ULEB (val, p, end); |
59e6276b JM |
15686 | |
15687 | switch (val) | |
15688 | { | |
75fa6dc1 | 15689 | case C6XABI_Tag_ISA_none: |
59e6276b JM |
15690 | printf (_("None\n")); |
15691 | break; | |
75fa6dc1 | 15692 | case C6XABI_Tag_ISA_C62X: |
59e6276b JM |
15693 | printf ("C62x\n"); |
15694 | break; | |
75fa6dc1 | 15695 | case C6XABI_Tag_ISA_C67X: |
59e6276b JM |
15696 | printf ("C67x\n"); |
15697 | break; | |
75fa6dc1 | 15698 | case C6XABI_Tag_ISA_C67XP: |
59e6276b JM |
15699 | printf ("C67x+\n"); |
15700 | break; | |
75fa6dc1 | 15701 | case C6XABI_Tag_ISA_C64X: |
59e6276b JM |
15702 | printf ("C64x\n"); |
15703 | break; | |
75fa6dc1 | 15704 | case C6XABI_Tag_ISA_C64XP: |
59e6276b JM |
15705 | printf ("C64x+\n"); |
15706 | break; | |
75fa6dc1 | 15707 | case C6XABI_Tag_ISA_C674X: |
59e6276b JM |
15708 | printf ("C674x\n"); |
15709 | break; | |
15710 | default: | |
15711 | printf ("??? (%d)\n", val); | |
15712 | break; | |
15713 | } | |
15714 | return p; | |
15715 | ||
87779176 | 15716 | case Tag_ABI_wchar_t: |
87779176 | 15717 | printf (" Tag_ABI_wchar_t: "); |
cd30bcef | 15718 | READ_ULEB (val, p, end); |
87779176 JM |
15719 | switch (val) |
15720 | { | |
15721 | case 0: | |
15722 | printf (_("Not used\n")); | |
15723 | break; | |
15724 | case 1: | |
15725 | printf (_("2 bytes\n")); | |
15726 | break; | |
15727 | case 2: | |
15728 | printf (_("4 bytes\n")); | |
15729 | break; | |
15730 | default: | |
15731 | printf ("??? (%d)\n", val); | |
15732 | break; | |
15733 | } | |
15734 | return p; | |
15735 | ||
15736 | case Tag_ABI_stack_align_needed: | |
87779176 | 15737 | printf (" Tag_ABI_stack_align_needed: "); |
cd30bcef | 15738 | READ_ULEB (val, p, end); |
87779176 JM |
15739 | switch (val) |
15740 | { | |
15741 | case 0: | |
15742 | printf (_("8-byte\n")); | |
15743 | break; | |
15744 | case 1: | |
15745 | printf (_("16-byte\n")); | |
15746 | break; | |
15747 | default: | |
15748 | printf ("??? (%d)\n", val); | |
15749 | break; | |
15750 | } | |
15751 | return p; | |
15752 | ||
15753 | case Tag_ABI_stack_align_preserved: | |
cd30bcef | 15754 | READ_ULEB (val, p, end); |
87779176 JM |
15755 | printf (" Tag_ABI_stack_align_preserved: "); |
15756 | switch (val) | |
15757 | { | |
15758 | case 0: | |
15759 | printf (_("8-byte\n")); | |
15760 | break; | |
15761 | case 1: | |
15762 | printf (_("16-byte\n")); | |
15763 | break; | |
15764 | default: | |
15765 | printf ("??? (%d)\n", val); | |
15766 | break; | |
15767 | } | |
15768 | return p; | |
15769 | ||
b5593623 | 15770 | case Tag_ABI_DSBT: |
cd30bcef | 15771 | READ_ULEB (val, p, end); |
b5593623 JM |
15772 | printf (" Tag_ABI_DSBT: "); |
15773 | switch (val) | |
15774 | { | |
15775 | case 0: | |
15776 | printf (_("DSBT addressing not used\n")); | |
15777 | break; | |
15778 | case 1: | |
15779 | printf (_("DSBT addressing used\n")); | |
15780 | break; | |
15781 | default: | |
15782 | printf ("??? (%d)\n", val); | |
15783 | break; | |
15784 | } | |
15785 | return p; | |
15786 | ||
87779176 | 15787 | case Tag_ABI_PID: |
cd30bcef | 15788 | READ_ULEB (val, p, end); |
87779176 JM |
15789 | printf (" Tag_ABI_PID: "); |
15790 | switch (val) | |
15791 | { | |
15792 | case 0: | |
15793 | printf (_("Data addressing position-dependent\n")); | |
15794 | break; | |
15795 | case 1: | |
15796 | printf (_("Data addressing position-independent, GOT near DP\n")); | |
15797 | break; | |
15798 | case 2: | |
15799 | printf (_("Data addressing position-independent, GOT far from DP\n")); | |
15800 | break; | |
15801 | default: | |
15802 | printf ("??? (%d)\n", val); | |
15803 | break; | |
15804 | } | |
15805 | return p; | |
15806 | ||
15807 | case Tag_ABI_PIC: | |
cd30bcef | 15808 | READ_ULEB (val, p, end); |
87779176 JM |
15809 | printf (" Tag_ABI_PIC: "); |
15810 | switch (val) | |
15811 | { | |
15812 | case 0: | |
15813 | printf (_("Code addressing position-dependent\n")); | |
15814 | break; | |
15815 | case 1: | |
15816 | printf (_("Code addressing position-independent\n")); | |
15817 | break; | |
15818 | default: | |
15819 | printf ("??? (%d)\n", val); | |
15820 | break; | |
15821 | } | |
15822 | return p; | |
15823 | ||
15824 | case Tag_ABI_array_object_alignment: | |
cd30bcef | 15825 | READ_ULEB (val, p, end); |
87779176 JM |
15826 | printf (" Tag_ABI_array_object_alignment: "); |
15827 | switch (val) | |
15828 | { | |
15829 | case 0: | |
15830 | printf (_("8-byte\n")); | |
15831 | break; | |
15832 | case 1: | |
15833 | printf (_("4-byte\n")); | |
15834 | break; | |
15835 | case 2: | |
15836 | printf (_("16-byte\n")); | |
15837 | break; | |
15838 | default: | |
15839 | printf ("??? (%d)\n", val); | |
15840 | break; | |
15841 | } | |
15842 | return p; | |
15843 | ||
15844 | case Tag_ABI_array_object_align_expected: | |
cd30bcef | 15845 | READ_ULEB (val, p, end); |
87779176 JM |
15846 | printf (" Tag_ABI_array_object_align_expected: "); |
15847 | switch (val) | |
15848 | { | |
15849 | case 0: | |
15850 | printf (_("8-byte\n")); | |
15851 | break; | |
15852 | case 1: | |
15853 | printf (_("4-byte\n")); | |
15854 | break; | |
15855 | case 2: | |
15856 | printf (_("16-byte\n")); | |
15857 | break; | |
15858 | default: | |
15859 | printf ("??? (%d)\n", val); | |
15860 | break; | |
15861 | } | |
15862 | return p; | |
15863 | ||
3cbd1c06 | 15864 | case Tag_ABI_compatibility: |
071436c6 | 15865 | { |
cd30bcef | 15866 | READ_ULEB (val, p, end); |
071436c6 | 15867 | printf (" Tag_ABI_compatibility: "); |
071436c6 | 15868 | printf (_("flag = %d, vendor = "), val); |
4082ef84 NC |
15869 | if (p < end - 1) |
15870 | { | |
15871 | size_t maxlen = (end - p) - 1; | |
15872 | ||
15873 | print_symbol ((int) maxlen, (const char *) p); | |
15874 | p += strnlen ((char *) p, maxlen) + 1; | |
15875 | } | |
15876 | else | |
15877 | { | |
15878 | printf (_("<corrupt>")); | |
15879 | p = (unsigned char *) end; | |
15880 | } | |
071436c6 | 15881 | putchar ('\n'); |
071436c6 NC |
15882 | return p; |
15883 | } | |
87779176 JM |
15884 | |
15885 | case Tag_ABI_conformance: | |
071436c6 | 15886 | { |
4082ef84 NC |
15887 | printf (" Tag_ABI_conformance: \""); |
15888 | if (p < end - 1) | |
15889 | { | |
15890 | size_t maxlen = (end - p) - 1; | |
071436c6 | 15891 | |
4082ef84 NC |
15892 | print_symbol ((int) maxlen, (const char *) p); |
15893 | p += strnlen ((char *) p, maxlen) + 1; | |
15894 | } | |
15895 | else | |
15896 | { | |
15897 | printf (_("<corrupt>")); | |
15898 | p = (unsigned char *) end; | |
15899 | } | |
071436c6 | 15900 | printf ("\"\n"); |
071436c6 NC |
15901 | return p; |
15902 | } | |
59e6276b JM |
15903 | } |
15904 | ||
f6f0e17b NC |
15905 | return display_tag_value (tag, p, end); |
15906 | } | |
59e6276b | 15907 | |
f6f0e17b | 15908 | static void |
60abdbed | 15909 | display_raw_attribute (unsigned char * p, unsigned char const * const end) |
f6f0e17b NC |
15910 | { |
15911 | unsigned long addr = 0; | |
15912 | size_t bytes = end - p; | |
15913 | ||
feceaa59 | 15914 | assert (end >= p); |
f6f0e17b | 15915 | while (bytes) |
87779176 | 15916 | { |
f6f0e17b NC |
15917 | int j; |
15918 | int k; | |
15919 | int lbytes = (bytes > 16 ? 16 : bytes); | |
15920 | ||
15921 | printf (" 0x%8.8lx ", addr); | |
15922 | ||
15923 | for (j = 0; j < 16; j++) | |
15924 | { | |
15925 | if (j < lbytes) | |
15926 | printf ("%2.2x", p[j]); | |
15927 | else | |
15928 | printf (" "); | |
15929 | ||
15930 | if ((j & 3) == 3) | |
15931 | printf (" "); | |
15932 | } | |
15933 | ||
15934 | for (j = 0; j < lbytes; j++) | |
15935 | { | |
15936 | k = p[j]; | |
15937 | if (k >= ' ' && k < 0x7f) | |
15938 | printf ("%c", k); | |
15939 | else | |
15940 | printf ("."); | |
15941 | } | |
15942 | ||
15943 | putchar ('\n'); | |
15944 | ||
15945 | p += lbytes; | |
15946 | bytes -= lbytes; | |
15947 | addr += lbytes; | |
87779176 | 15948 | } |
59e6276b | 15949 | |
f6f0e17b | 15950 | putchar ('\n'); |
59e6276b JM |
15951 | } |
15952 | ||
13761a11 NC |
15953 | static unsigned char * |
15954 | display_msp430x_attribute (unsigned char * p, | |
15955 | const unsigned char * const end) | |
15956 | { | |
60abdbed NC |
15957 | unsigned int val; |
15958 | unsigned int tag; | |
13761a11 | 15959 | |
cd30bcef | 15960 | READ_ULEB (tag, p, end); |
0b4362b0 | 15961 | |
13761a11 NC |
15962 | switch (tag) |
15963 | { | |
15964 | case OFBA_MSPABI_Tag_ISA: | |
13761a11 | 15965 | printf (" Tag_ISA: "); |
cd30bcef | 15966 | READ_ULEB (val, p, end); |
13761a11 NC |
15967 | switch (val) |
15968 | { | |
15969 | case 0: printf (_("None\n")); break; | |
15970 | case 1: printf (_("MSP430\n")); break; | |
15971 | case 2: printf (_("MSP430X\n")); break; | |
15972 | default: printf ("??? (%d)\n", val); break; | |
15973 | } | |
15974 | break; | |
15975 | ||
15976 | case OFBA_MSPABI_Tag_Code_Model: | |
13761a11 | 15977 | printf (" Tag_Code_Model: "); |
cd30bcef | 15978 | READ_ULEB (val, p, end); |
13761a11 NC |
15979 | switch (val) |
15980 | { | |
15981 | case 0: printf (_("None\n")); break; | |
15982 | case 1: printf (_("Small\n")); break; | |
15983 | case 2: printf (_("Large\n")); break; | |
15984 | default: printf ("??? (%d)\n", val); break; | |
15985 | } | |
15986 | break; | |
15987 | ||
15988 | case OFBA_MSPABI_Tag_Data_Model: | |
13761a11 | 15989 | printf (" Tag_Data_Model: "); |
cd30bcef | 15990 | READ_ULEB (val, p, end); |
13761a11 NC |
15991 | switch (val) |
15992 | { | |
15993 | case 0: printf (_("None\n")); break; | |
15994 | case 1: printf (_("Small\n")); break; | |
15995 | case 2: printf (_("Large\n")); break; | |
15996 | case 3: printf (_("Restricted Large\n")); break; | |
15997 | default: printf ("??? (%d)\n", val); break; | |
15998 | } | |
15999 | break; | |
16000 | ||
16001 | default: | |
16002 | printf (_(" <unknown tag %d>: "), tag); | |
16003 | ||
16004 | if (tag & 1) | |
16005 | { | |
071436c6 | 16006 | putchar ('"'); |
4082ef84 NC |
16007 | if (p < end - 1) |
16008 | { | |
16009 | size_t maxlen = (end - p) - 1; | |
16010 | ||
16011 | print_symbol ((int) maxlen, (const char *) p); | |
16012 | p += strnlen ((char *) p, maxlen) + 1; | |
16013 | } | |
16014 | else | |
16015 | { | |
16016 | printf (_("<corrupt>")); | |
16017 | p = (unsigned char *) end; | |
16018 | } | |
071436c6 | 16019 | printf ("\"\n"); |
13761a11 NC |
16020 | } |
16021 | else | |
16022 | { | |
cd30bcef | 16023 | READ_ULEB (val, p, end); |
13761a11 NC |
16024 | printf ("%d (0x%x)\n", val, val); |
16025 | } | |
16026 | break; | |
16027 | } | |
16028 | ||
4082ef84 | 16029 | assert (p <= end); |
13761a11 NC |
16030 | return p; |
16031 | } | |
16032 | ||
c0ea7c52 JL |
16033 | static unsigned char * |
16034 | display_msp430_gnu_attribute (unsigned char * p, | |
16035 | unsigned int tag, | |
16036 | const unsigned char * const end) | |
16037 | { | |
16038 | if (tag == Tag_GNU_MSP430_Data_Region) | |
16039 | { | |
cd30bcef | 16040 | unsigned int val; |
c0ea7c52 | 16041 | |
c0ea7c52 | 16042 | printf (" Tag_GNU_MSP430_Data_Region: "); |
cd30bcef | 16043 | READ_ULEB (val, p, end); |
c0ea7c52 JL |
16044 | |
16045 | switch (val) | |
16046 | { | |
16047 | case Val_GNU_MSP430_Data_Region_Any: | |
16048 | printf (_("Any Region\n")); | |
16049 | break; | |
16050 | case Val_GNU_MSP430_Data_Region_Lower: | |
16051 | printf (_("Lower Region Only\n")); | |
16052 | break; | |
16053 | default: | |
cd30bcef | 16054 | printf ("??? (%u)\n", val); |
c0ea7c52 JL |
16055 | } |
16056 | return p; | |
16057 | } | |
16058 | return display_tag_value (tag & 1, p, end); | |
16059 | } | |
16060 | ||
2dc8dd17 JW |
16061 | struct riscv_attr_tag_t { |
16062 | const char *name; | |
cd30bcef | 16063 | unsigned int tag; |
2dc8dd17 JW |
16064 | }; |
16065 | ||
16066 | static struct riscv_attr_tag_t riscv_attr_tag[] = | |
16067 | { | |
16068 | #define T(tag) {"Tag_RISCV_" #tag, Tag_RISCV_##tag} | |
16069 | T(arch), | |
16070 | T(priv_spec), | |
16071 | T(priv_spec_minor), | |
16072 | T(priv_spec_revision), | |
16073 | T(unaligned_access), | |
16074 | T(stack_align), | |
16075 | #undef T | |
16076 | }; | |
16077 | ||
16078 | static unsigned char * | |
16079 | display_riscv_attribute (unsigned char *p, | |
16080 | const unsigned char * const end) | |
16081 | { | |
cd30bcef AM |
16082 | unsigned int val; |
16083 | unsigned int tag; | |
2dc8dd17 JW |
16084 | struct riscv_attr_tag_t *attr = NULL; |
16085 | unsigned i; | |
16086 | ||
cd30bcef | 16087 | READ_ULEB (tag, p, end); |
2dc8dd17 JW |
16088 | |
16089 | /* Find the name of attribute. */ | |
16090 | for (i = 0; i < ARRAY_SIZE (riscv_attr_tag); i++) | |
16091 | { | |
16092 | if (riscv_attr_tag[i].tag == tag) | |
16093 | { | |
16094 | attr = &riscv_attr_tag[i]; | |
16095 | break; | |
16096 | } | |
16097 | } | |
16098 | ||
16099 | if (attr) | |
16100 | printf (" %s: ", attr->name); | |
16101 | else | |
16102 | return display_tag_value (tag, p, end); | |
16103 | ||
16104 | switch (tag) | |
16105 | { | |
16106 | case Tag_RISCV_priv_spec: | |
16107 | case Tag_RISCV_priv_spec_minor: | |
16108 | case Tag_RISCV_priv_spec_revision: | |
cd30bcef AM |
16109 | READ_ULEB (val, p, end); |
16110 | printf (_("%u\n"), val); | |
2dc8dd17 JW |
16111 | break; |
16112 | case Tag_RISCV_unaligned_access: | |
cd30bcef | 16113 | READ_ULEB (val, p, end); |
2dc8dd17 JW |
16114 | switch (val) |
16115 | { | |
16116 | case 0: | |
16117 | printf (_("No unaligned access\n")); | |
16118 | break; | |
16119 | case 1: | |
16120 | printf (_("Unaligned access\n")); | |
16121 | break; | |
16122 | } | |
16123 | break; | |
16124 | case Tag_RISCV_stack_align: | |
cd30bcef AM |
16125 | READ_ULEB (val, p, end); |
16126 | printf (_("%u-bytes\n"), val); | |
2dc8dd17 JW |
16127 | break; |
16128 | case Tag_RISCV_arch: | |
16129 | p = display_tag_value (-1, p, end); | |
16130 | break; | |
16131 | default: | |
16132 | return display_tag_value (tag, p, end); | |
16133 | } | |
16134 | ||
16135 | return p; | |
16136 | } | |
16137 | ||
32ec8896 | 16138 | static bfd_boolean |
dda8d76d | 16139 | process_attributes (Filedata * filedata, |
60bca95a | 16140 | const char * public_name, |
104d59d1 | 16141 | unsigned int proc_type, |
f6f0e17b | 16142 | unsigned char * (* display_pub_attribute) (unsigned char *, const unsigned char * const), |
60abdbed | 16143 | unsigned char * (* display_proc_gnu_attribute) (unsigned char *, unsigned int, const unsigned char * const)) |
11c1ff18 | 16144 | { |
2cf0635d | 16145 | Elf_Internal_Shdr * sect; |
11c1ff18 | 16146 | unsigned i; |
32ec8896 | 16147 | bfd_boolean res = TRUE; |
11c1ff18 PB |
16148 | |
16149 | /* Find the section header so that we get the size. */ | |
dda8d76d NC |
16150 | for (i = 0, sect = filedata->section_headers; |
16151 | i < filedata->file_header.e_shnum; | |
11c1ff18 PB |
16152 | i++, sect++) |
16153 | { | |
071436c6 NC |
16154 | unsigned char * contents; |
16155 | unsigned char * p; | |
16156 | ||
104d59d1 | 16157 | if (sect->sh_type != proc_type && sect->sh_type != SHT_GNU_ATTRIBUTES) |
11c1ff18 PB |
16158 | continue; |
16159 | ||
dda8d76d | 16160 | contents = (unsigned char *) get_data (NULL, filedata, sect->sh_offset, 1, |
3f5e193b | 16161 | sect->sh_size, _("attributes")); |
60bca95a | 16162 | if (contents == NULL) |
32ec8896 NC |
16163 | { |
16164 | res = FALSE; | |
16165 | continue; | |
16166 | } | |
60bca95a | 16167 | |
11c1ff18 | 16168 | p = contents; |
60abdbed NC |
16169 | /* The first character is the version of the attributes. |
16170 | Currently only version 1, (aka 'A') is recognised here. */ | |
16171 | if (*p != 'A') | |
32ec8896 NC |
16172 | { |
16173 | printf (_("Unknown attributes version '%c'(%d) - expecting 'A'\n"), *p, *p); | |
16174 | res = FALSE; | |
16175 | } | |
60abdbed | 16176 | else |
11c1ff18 | 16177 | { |
071436c6 NC |
16178 | bfd_vma section_len; |
16179 | ||
16180 | section_len = sect->sh_size - 1; | |
11c1ff18 | 16181 | p++; |
60bca95a | 16182 | |
071436c6 | 16183 | while (section_len > 0) |
11c1ff18 | 16184 | { |
071436c6 | 16185 | bfd_vma attr_len; |
e9847026 | 16186 | unsigned int namelen; |
11c1ff18 | 16187 | bfd_boolean public_section; |
104d59d1 | 16188 | bfd_boolean gnu_section; |
11c1ff18 | 16189 | |
071436c6 | 16190 | if (section_len <= 4) |
e0a31db1 NC |
16191 | { |
16192 | error (_("Tag section ends prematurely\n")); | |
32ec8896 | 16193 | res = FALSE; |
e0a31db1 NC |
16194 | break; |
16195 | } | |
071436c6 | 16196 | attr_len = byte_get (p, 4); |
11c1ff18 | 16197 | p += 4; |
60bca95a | 16198 | |
071436c6 | 16199 | if (attr_len > section_len) |
11c1ff18 | 16200 | { |
071436c6 NC |
16201 | error (_("Bad attribute length (%u > %u)\n"), |
16202 | (unsigned) attr_len, (unsigned) section_len); | |
16203 | attr_len = section_len; | |
32ec8896 | 16204 | res = FALSE; |
11c1ff18 | 16205 | } |
74e1a04b | 16206 | /* PR 17531: file: 001-101425-0.004 */ |
071436c6 | 16207 | else if (attr_len < 5) |
74e1a04b | 16208 | { |
071436c6 | 16209 | error (_("Attribute length of %u is too small\n"), (unsigned) attr_len); |
32ec8896 | 16210 | res = FALSE; |
74e1a04b NC |
16211 | break; |
16212 | } | |
e9847026 | 16213 | |
071436c6 NC |
16214 | section_len -= attr_len; |
16215 | attr_len -= 4; | |
16216 | ||
16217 | namelen = strnlen ((char *) p, attr_len) + 1; | |
16218 | if (namelen == 0 || namelen >= attr_len) | |
e9847026 NC |
16219 | { |
16220 | error (_("Corrupt attribute section name\n")); | |
32ec8896 | 16221 | res = FALSE; |
e9847026 NC |
16222 | break; |
16223 | } | |
16224 | ||
071436c6 NC |
16225 | printf (_("Attribute Section: ")); |
16226 | print_symbol (INT_MAX, (const char *) p); | |
16227 | putchar ('\n'); | |
60bca95a NC |
16228 | |
16229 | if (public_name && streq ((char *) p, public_name)) | |
11c1ff18 PB |
16230 | public_section = TRUE; |
16231 | else | |
16232 | public_section = FALSE; | |
60bca95a NC |
16233 | |
16234 | if (streq ((char *) p, "gnu")) | |
104d59d1 JM |
16235 | gnu_section = TRUE; |
16236 | else | |
16237 | gnu_section = FALSE; | |
60bca95a | 16238 | |
11c1ff18 | 16239 | p += namelen; |
071436c6 | 16240 | attr_len -= namelen; |
e0a31db1 | 16241 | |
071436c6 | 16242 | while (attr_len > 0 && p < contents + sect->sh_size) |
11c1ff18 | 16243 | { |
e0a31db1 | 16244 | int tag; |
cd30bcef | 16245 | unsigned int val; |
11c1ff18 | 16246 | bfd_vma size; |
071436c6 | 16247 | unsigned char * end; |
60bca95a | 16248 | |
e0a31db1 | 16249 | /* PR binutils/17531: Safe handling of corrupt files. */ |
071436c6 | 16250 | if (attr_len < 6) |
e0a31db1 NC |
16251 | { |
16252 | error (_("Unused bytes at end of section\n")); | |
32ec8896 | 16253 | res = FALSE; |
e0a31db1 NC |
16254 | section_len = 0; |
16255 | break; | |
16256 | } | |
16257 | ||
16258 | tag = *(p++); | |
11c1ff18 | 16259 | size = byte_get (p, 4); |
071436c6 | 16260 | if (size > attr_len) |
11c1ff18 | 16261 | { |
e9847026 | 16262 | error (_("Bad subsection length (%u > %u)\n"), |
071436c6 | 16263 | (unsigned) size, (unsigned) attr_len); |
32ec8896 | 16264 | res = FALSE; |
071436c6 | 16265 | size = attr_len; |
11c1ff18 | 16266 | } |
e0a31db1 NC |
16267 | /* PR binutils/17531: Safe handling of corrupt files. */ |
16268 | if (size < 6) | |
16269 | { | |
16270 | error (_("Bad subsection length (%u < 6)\n"), | |
16271 | (unsigned) size); | |
32ec8896 | 16272 | res = FALSE; |
e0a31db1 NC |
16273 | section_len = 0; |
16274 | break; | |
16275 | } | |
60bca95a | 16276 | |
071436c6 | 16277 | attr_len -= size; |
11c1ff18 | 16278 | end = p + size - 1; |
071436c6 | 16279 | assert (end <= contents + sect->sh_size); |
11c1ff18 | 16280 | p += 4; |
60bca95a | 16281 | |
11c1ff18 PB |
16282 | switch (tag) |
16283 | { | |
16284 | case 1: | |
2b692964 | 16285 | printf (_("File Attributes\n")); |
11c1ff18 PB |
16286 | break; |
16287 | case 2: | |
2b692964 | 16288 | printf (_("Section Attributes:")); |
11c1ff18 PB |
16289 | goto do_numlist; |
16290 | case 3: | |
2b692964 | 16291 | printf (_("Symbol Attributes:")); |
1a0670f3 | 16292 | /* Fall through. */ |
11c1ff18 PB |
16293 | do_numlist: |
16294 | for (;;) | |
16295 | { | |
cd30bcef | 16296 | READ_ULEB (val, p, end); |
11c1ff18 PB |
16297 | if (val == 0) |
16298 | break; | |
16299 | printf (" %d", val); | |
16300 | } | |
16301 | printf ("\n"); | |
16302 | break; | |
16303 | default: | |
2b692964 | 16304 | printf (_("Unknown tag: %d\n"), tag); |
11c1ff18 PB |
16305 | public_section = FALSE; |
16306 | break; | |
16307 | } | |
60bca95a | 16308 | |
071436c6 | 16309 | if (public_section && display_pub_attribute != NULL) |
11c1ff18 PB |
16310 | { |
16311 | while (p < end) | |
f6f0e17b | 16312 | p = display_pub_attribute (p, end); |
60abdbed | 16313 | assert (p == end); |
104d59d1 | 16314 | } |
071436c6 | 16315 | else if (gnu_section && display_proc_gnu_attribute != NULL) |
104d59d1 JM |
16316 | { |
16317 | while (p < end) | |
16318 | p = display_gnu_attribute (p, | |
f6f0e17b NC |
16319 | display_proc_gnu_attribute, |
16320 | end); | |
60abdbed | 16321 | assert (p == end); |
11c1ff18 | 16322 | } |
071436c6 | 16323 | else if (p < end) |
11c1ff18 | 16324 | { |
071436c6 | 16325 | printf (_(" Unknown attribute:\n")); |
f6f0e17b | 16326 | display_raw_attribute (p, end); |
11c1ff18 PB |
16327 | p = end; |
16328 | } | |
071436c6 NC |
16329 | else |
16330 | attr_len = 0; | |
11c1ff18 PB |
16331 | } |
16332 | } | |
16333 | } | |
d70c5fc7 | 16334 | |
60bca95a | 16335 | free (contents); |
11c1ff18 | 16336 | } |
32ec8896 NC |
16337 | |
16338 | return res; | |
11c1ff18 PB |
16339 | } |
16340 | ||
ccb4c951 RS |
16341 | /* DATA points to the contents of a MIPS GOT that starts at VMA PLTGOT. |
16342 | Print the Address, Access and Initial fields of an entry at VMA ADDR | |
82b1b41b NC |
16343 | and return the VMA of the next entry, or -1 if there was a problem. |
16344 | Does not read from DATA_END or beyond. */ | |
ccb4c951 RS |
16345 | |
16346 | static bfd_vma | |
82b1b41b NC |
16347 | print_mips_got_entry (unsigned char * data, bfd_vma pltgot, bfd_vma addr, |
16348 | unsigned char * data_end) | |
ccb4c951 RS |
16349 | { |
16350 | printf (" "); | |
16351 | print_vma (addr, LONG_HEX); | |
16352 | printf (" "); | |
16353 | if (addr < pltgot + 0xfff0) | |
16354 | printf ("%6d(gp)", (int) (addr - pltgot - 0x7ff0)); | |
16355 | else | |
16356 | printf ("%10s", ""); | |
16357 | printf (" "); | |
16358 | if (data == NULL) | |
2b692964 | 16359 | printf ("%*s", is_32bit_elf ? 8 : 16, _("<unknown>")); |
ccb4c951 RS |
16360 | else |
16361 | { | |
16362 | bfd_vma entry; | |
82b1b41b | 16363 | unsigned char * from = data + addr - pltgot; |
ccb4c951 | 16364 | |
82b1b41b NC |
16365 | if (from + (is_32bit_elf ? 4 : 8) > data_end) |
16366 | { | |
16367 | warn (_("MIPS GOT entry extends beyond the end of available data\n")); | |
16368 | printf ("%*s", is_32bit_elf ? 8 : 16, _("<corrupt>")); | |
16369 | return (bfd_vma) -1; | |
16370 | } | |
16371 | else | |
16372 | { | |
16373 | entry = byte_get (data + addr - pltgot, is_32bit_elf ? 4 : 8); | |
16374 | print_vma (entry, LONG_HEX); | |
16375 | } | |
ccb4c951 RS |
16376 | } |
16377 | return addr + (is_32bit_elf ? 4 : 8); | |
16378 | } | |
16379 | ||
861fb55a DJ |
16380 | /* DATA points to the contents of a MIPS PLT GOT that starts at VMA |
16381 | PLTGOT. Print the Address and Initial fields of an entry at VMA | |
16382 | ADDR and return the VMA of the next entry. */ | |
16383 | ||
16384 | static bfd_vma | |
2cf0635d | 16385 | print_mips_pltgot_entry (unsigned char * data, bfd_vma pltgot, bfd_vma addr) |
861fb55a DJ |
16386 | { |
16387 | printf (" "); | |
16388 | print_vma (addr, LONG_HEX); | |
16389 | printf (" "); | |
16390 | if (data == NULL) | |
2b692964 | 16391 | printf ("%*s", is_32bit_elf ? 8 : 16, _("<unknown>")); |
861fb55a DJ |
16392 | else |
16393 | { | |
16394 | bfd_vma entry; | |
16395 | ||
16396 | entry = byte_get (data + addr - pltgot, is_32bit_elf ? 4 : 8); | |
16397 | print_vma (entry, LONG_HEX); | |
16398 | } | |
16399 | return addr + (is_32bit_elf ? 4 : 8); | |
16400 | } | |
16401 | ||
351cdf24 MF |
16402 | static void |
16403 | print_mips_ases (unsigned int mask) | |
16404 | { | |
16405 | if (mask & AFL_ASE_DSP) | |
16406 | fputs ("\n\tDSP ASE", stdout); | |
16407 | if (mask & AFL_ASE_DSPR2) | |
16408 | fputs ("\n\tDSP R2 ASE", stdout); | |
8f4f9071 MF |
16409 | if (mask & AFL_ASE_DSPR3) |
16410 | fputs ("\n\tDSP R3 ASE", stdout); | |
351cdf24 MF |
16411 | if (mask & AFL_ASE_EVA) |
16412 | fputs ("\n\tEnhanced VA Scheme", stdout); | |
16413 | if (mask & AFL_ASE_MCU) | |
16414 | fputs ("\n\tMCU (MicroController) ASE", stdout); | |
16415 | if (mask & AFL_ASE_MDMX) | |
16416 | fputs ("\n\tMDMX ASE", stdout); | |
16417 | if (mask & AFL_ASE_MIPS3D) | |
16418 | fputs ("\n\tMIPS-3D ASE", stdout); | |
16419 | if (mask & AFL_ASE_MT) | |
16420 | fputs ("\n\tMT ASE", stdout); | |
16421 | if (mask & AFL_ASE_SMARTMIPS) | |
16422 | fputs ("\n\tSmartMIPS ASE", stdout); | |
16423 | if (mask & AFL_ASE_VIRT) | |
16424 | fputs ("\n\tVZ ASE", stdout); | |
16425 | if (mask & AFL_ASE_MSA) | |
16426 | fputs ("\n\tMSA ASE", stdout); | |
16427 | if (mask & AFL_ASE_MIPS16) | |
16428 | fputs ("\n\tMIPS16 ASE", stdout); | |
16429 | if (mask & AFL_ASE_MICROMIPS) | |
16430 | fputs ("\n\tMICROMIPS ASE", stdout); | |
16431 | if (mask & AFL_ASE_XPA) | |
16432 | fputs ("\n\tXPA ASE", stdout); | |
25499ac7 MR |
16433 | if (mask & AFL_ASE_MIPS16E2) |
16434 | fputs ("\n\tMIPS16e2 ASE", stdout); | |
730c3174 SE |
16435 | if (mask & AFL_ASE_CRC) |
16436 | fputs ("\n\tCRC ASE", stdout); | |
6f20c942 FS |
16437 | if (mask & AFL_ASE_GINV) |
16438 | fputs ("\n\tGINV ASE", stdout); | |
8095d2f7 CX |
16439 | if (mask & AFL_ASE_LOONGSON_MMI) |
16440 | fputs ("\n\tLoongson MMI ASE", stdout); | |
716c08de CX |
16441 | if (mask & AFL_ASE_LOONGSON_CAM) |
16442 | fputs ("\n\tLoongson CAM ASE", stdout); | |
bdc6c06e CX |
16443 | if (mask & AFL_ASE_LOONGSON_EXT) |
16444 | fputs ("\n\tLoongson EXT ASE", stdout); | |
a693765e CX |
16445 | if (mask & AFL_ASE_LOONGSON_EXT2) |
16446 | fputs ("\n\tLoongson EXT2 ASE", stdout); | |
351cdf24 MF |
16447 | if (mask == 0) |
16448 | fprintf (stdout, "\n\t%s", _("None")); | |
00ac7aa0 MF |
16449 | else if ((mask & ~AFL_ASE_MASK) != 0) |
16450 | fprintf (stdout, "\n\t%s (%x)", _("Unknown"), mask & ~AFL_ASE_MASK); | |
351cdf24 MF |
16451 | } |
16452 | ||
16453 | static void | |
16454 | print_mips_isa_ext (unsigned int isa_ext) | |
16455 | { | |
16456 | switch (isa_ext) | |
16457 | { | |
16458 | case 0: | |
16459 | fputs (_("None"), stdout); | |
16460 | break; | |
16461 | case AFL_EXT_XLR: | |
16462 | fputs ("RMI XLR", stdout); | |
16463 | break; | |
2c629856 N |
16464 | case AFL_EXT_OCTEON3: |
16465 | fputs ("Cavium Networks Octeon3", stdout); | |
16466 | break; | |
351cdf24 MF |
16467 | case AFL_EXT_OCTEON2: |
16468 | fputs ("Cavium Networks Octeon2", stdout); | |
16469 | break; | |
16470 | case AFL_EXT_OCTEONP: | |
16471 | fputs ("Cavium Networks OcteonP", stdout); | |
16472 | break; | |
351cdf24 MF |
16473 | case AFL_EXT_OCTEON: |
16474 | fputs ("Cavium Networks Octeon", stdout); | |
16475 | break; | |
16476 | case AFL_EXT_5900: | |
16477 | fputs ("Toshiba R5900", stdout); | |
16478 | break; | |
16479 | case AFL_EXT_4650: | |
16480 | fputs ("MIPS R4650", stdout); | |
16481 | break; | |
16482 | case AFL_EXT_4010: | |
16483 | fputs ("LSI R4010", stdout); | |
16484 | break; | |
16485 | case AFL_EXT_4100: | |
16486 | fputs ("NEC VR4100", stdout); | |
16487 | break; | |
16488 | case AFL_EXT_3900: | |
16489 | fputs ("Toshiba R3900", stdout); | |
16490 | break; | |
16491 | case AFL_EXT_10000: | |
16492 | fputs ("MIPS R10000", stdout); | |
16493 | break; | |
16494 | case AFL_EXT_SB1: | |
16495 | fputs ("Broadcom SB-1", stdout); | |
16496 | break; | |
16497 | case AFL_EXT_4111: | |
16498 | fputs ("NEC VR4111/VR4181", stdout); | |
16499 | break; | |
16500 | case AFL_EXT_4120: | |
16501 | fputs ("NEC VR4120", stdout); | |
16502 | break; | |
16503 | case AFL_EXT_5400: | |
16504 | fputs ("NEC VR5400", stdout); | |
16505 | break; | |
16506 | case AFL_EXT_5500: | |
16507 | fputs ("NEC VR5500", stdout); | |
16508 | break; | |
16509 | case AFL_EXT_LOONGSON_2E: | |
16510 | fputs ("ST Microelectronics Loongson 2E", stdout); | |
16511 | break; | |
16512 | case AFL_EXT_LOONGSON_2F: | |
16513 | fputs ("ST Microelectronics Loongson 2F", stdout); | |
16514 | break; | |
38bf472a MR |
16515 | case AFL_EXT_INTERAPTIV_MR2: |
16516 | fputs ("Imagination interAptiv MR2", stdout); | |
16517 | break; | |
351cdf24 | 16518 | default: |
00ac7aa0 | 16519 | fprintf (stdout, "%s (%d)", _("Unknown"), isa_ext); |
351cdf24 MF |
16520 | } |
16521 | } | |
16522 | ||
32ec8896 | 16523 | static signed int |
351cdf24 MF |
16524 | get_mips_reg_size (int reg_size) |
16525 | { | |
16526 | return (reg_size == AFL_REG_NONE) ? 0 | |
16527 | : (reg_size == AFL_REG_32) ? 32 | |
16528 | : (reg_size == AFL_REG_64) ? 64 | |
16529 | : (reg_size == AFL_REG_128) ? 128 | |
16530 | : -1; | |
16531 | } | |
16532 | ||
32ec8896 | 16533 | static bfd_boolean |
dda8d76d | 16534 | process_mips_specific (Filedata * filedata) |
5b18a4bc | 16535 | { |
2cf0635d | 16536 | Elf_Internal_Dyn * entry; |
351cdf24 | 16537 | Elf_Internal_Shdr *sect = NULL; |
19e6b90e L |
16538 | size_t liblist_offset = 0; |
16539 | size_t liblistno = 0; | |
16540 | size_t conflictsno = 0; | |
16541 | size_t options_offset = 0; | |
16542 | size_t conflicts_offset = 0; | |
861fb55a DJ |
16543 | size_t pltrelsz = 0; |
16544 | size_t pltrel = 0; | |
ccb4c951 | 16545 | bfd_vma pltgot = 0; |
861fb55a DJ |
16546 | bfd_vma mips_pltgot = 0; |
16547 | bfd_vma jmprel = 0; | |
ccb4c951 RS |
16548 | bfd_vma local_gotno = 0; |
16549 | bfd_vma gotsym = 0; | |
16550 | bfd_vma symtabno = 0; | |
32ec8896 | 16551 | bfd_boolean res = TRUE; |
103f02d3 | 16552 | |
dda8d76d | 16553 | if (! process_attributes (filedata, NULL, SHT_GNU_ATTRIBUTES, NULL, |
32ec8896 NC |
16554 | display_mips_gnu_attribute)) |
16555 | res = FALSE; | |
2cf19d5c | 16556 | |
dda8d76d | 16557 | sect = find_section (filedata, ".MIPS.abiflags"); |
351cdf24 MF |
16558 | |
16559 | if (sect != NULL) | |
16560 | { | |
16561 | Elf_External_ABIFlags_v0 *abiflags_ext; | |
16562 | Elf_Internal_ABIFlags_v0 abiflags_in; | |
16563 | ||
16564 | if (sizeof (Elf_External_ABIFlags_v0) != sect->sh_size) | |
32ec8896 NC |
16565 | { |
16566 | error (_("Corrupt MIPS ABI Flags section.\n")); | |
16567 | res = FALSE; | |
16568 | } | |
351cdf24 MF |
16569 | else |
16570 | { | |
dda8d76d | 16571 | abiflags_ext = get_data (NULL, filedata, sect->sh_offset, 1, |
351cdf24 MF |
16572 | sect->sh_size, _("MIPS ABI Flags section")); |
16573 | if (abiflags_ext) | |
16574 | { | |
16575 | abiflags_in.version = BYTE_GET (abiflags_ext->version); | |
16576 | abiflags_in.isa_level = BYTE_GET (abiflags_ext->isa_level); | |
16577 | abiflags_in.isa_rev = BYTE_GET (abiflags_ext->isa_rev); | |
16578 | abiflags_in.gpr_size = BYTE_GET (abiflags_ext->gpr_size); | |
16579 | abiflags_in.cpr1_size = BYTE_GET (abiflags_ext->cpr1_size); | |
16580 | abiflags_in.cpr2_size = BYTE_GET (abiflags_ext->cpr2_size); | |
16581 | abiflags_in.fp_abi = BYTE_GET (abiflags_ext->fp_abi); | |
16582 | abiflags_in.isa_ext = BYTE_GET (abiflags_ext->isa_ext); | |
16583 | abiflags_in.ases = BYTE_GET (abiflags_ext->ases); | |
16584 | abiflags_in.flags1 = BYTE_GET (abiflags_ext->flags1); | |
16585 | abiflags_in.flags2 = BYTE_GET (abiflags_ext->flags2); | |
16586 | ||
16587 | printf ("\nMIPS ABI Flags Version: %d\n", abiflags_in.version); | |
16588 | printf ("\nISA: MIPS%d", abiflags_in.isa_level); | |
16589 | if (abiflags_in.isa_rev > 1) | |
16590 | printf ("r%d", abiflags_in.isa_rev); | |
16591 | printf ("\nGPR size: %d", | |
16592 | get_mips_reg_size (abiflags_in.gpr_size)); | |
16593 | printf ("\nCPR1 size: %d", | |
16594 | get_mips_reg_size (abiflags_in.cpr1_size)); | |
16595 | printf ("\nCPR2 size: %d", | |
16596 | get_mips_reg_size (abiflags_in.cpr2_size)); | |
16597 | fputs ("\nFP ABI: ", stdout); | |
16598 | print_mips_fp_abi_value (abiflags_in.fp_abi); | |
16599 | fputs ("ISA Extension: ", stdout); | |
16600 | print_mips_isa_ext (abiflags_in.isa_ext); | |
16601 | fputs ("\nASEs:", stdout); | |
16602 | print_mips_ases (abiflags_in.ases); | |
16603 | printf ("\nFLAGS 1: %8.8lx", abiflags_in.flags1); | |
16604 | printf ("\nFLAGS 2: %8.8lx", abiflags_in.flags2); | |
16605 | fputc ('\n', stdout); | |
16606 | free (abiflags_ext); | |
16607 | } | |
16608 | } | |
16609 | } | |
16610 | ||
19e6b90e | 16611 | /* We have a lot of special sections. Thanks SGI! */ |
978c4450 | 16612 | if (filedata->dynamic_section == NULL) |
bbdd9a68 MR |
16613 | { |
16614 | /* No dynamic information available. See if there is static GOT. */ | |
dda8d76d | 16615 | sect = find_section (filedata, ".got"); |
bbdd9a68 MR |
16616 | if (sect != NULL) |
16617 | { | |
16618 | unsigned char *data_end; | |
16619 | unsigned char *data; | |
16620 | bfd_vma ent, end; | |
16621 | int addr_size; | |
16622 | ||
16623 | pltgot = sect->sh_addr; | |
16624 | ||
16625 | ent = pltgot; | |
16626 | addr_size = (is_32bit_elf ? 4 : 8); | |
16627 | end = pltgot + sect->sh_size; | |
16628 | ||
dda8d76d | 16629 | data = (unsigned char *) get_data (NULL, filedata, sect->sh_offset, |
bbdd9a68 MR |
16630 | end - pltgot, 1, |
16631 | _("Global Offset Table data")); | |
16632 | /* PR 12855: Null data is handled gracefully throughout. */ | |
16633 | data_end = data + (end - pltgot); | |
16634 | ||
16635 | printf (_("\nStatic GOT:\n")); | |
16636 | printf (_(" Canonical gp value: ")); | |
16637 | print_vma (ent + 0x7ff0, LONG_HEX); | |
16638 | printf ("\n\n"); | |
16639 | ||
16640 | /* In a dynamic binary GOT[0] is reserved for the dynamic | |
16641 | loader to store the lazy resolver pointer, however in | |
16642 | a static binary it may well have been omitted and GOT | |
16643 | reduced to a table of addresses. | |
16644 | PR 21344: Check for the entry being fully available | |
16645 | before fetching it. */ | |
16646 | if (data | |
16647 | && data + ent - pltgot + addr_size <= data_end | |
16648 | && byte_get (data + ent - pltgot, addr_size) == 0) | |
16649 | { | |
16650 | printf (_(" Reserved entries:\n")); | |
16651 | printf (_(" %*s %10s %*s\n"), | |
16652 | addr_size * 2, _("Address"), _("Access"), | |
16653 | addr_size * 2, _("Value")); | |
16654 | ent = print_mips_got_entry (data, pltgot, ent, data_end); | |
16655 | printf ("\n"); | |
16656 | if (ent == (bfd_vma) -1) | |
16657 | goto sgot_print_fail; | |
16658 | ||
16659 | /* Check for the MSB of GOT[1] being set, identifying a | |
16660 | GNU object. This entry will be used by some runtime | |
16661 | loaders, to store the module pointer. Otherwise this | |
16662 | is an ordinary local entry. | |
16663 | PR 21344: Check for the entry being fully available | |
16664 | before fetching it. */ | |
16665 | if (data | |
16666 | && data + ent - pltgot + addr_size <= data_end | |
16667 | && (byte_get (data + ent - pltgot, addr_size) | |
16668 | >> (addr_size * 8 - 1)) != 0) | |
16669 | { | |
16670 | ent = print_mips_got_entry (data, pltgot, ent, data_end); | |
16671 | printf ("\n"); | |
16672 | if (ent == (bfd_vma) -1) | |
16673 | goto sgot_print_fail; | |
16674 | } | |
16675 | printf ("\n"); | |
16676 | } | |
16677 | ||
f17e9d8a | 16678 | if (data != NULL && ent < end) |
bbdd9a68 MR |
16679 | { |
16680 | printf (_(" Local entries:\n")); | |
16681 | printf (" %*s %10s %*s\n", | |
16682 | addr_size * 2, _("Address"), _("Access"), | |
16683 | addr_size * 2, _("Value")); | |
16684 | while (ent < end) | |
16685 | { | |
16686 | ent = print_mips_got_entry (data, pltgot, ent, data_end); | |
16687 | printf ("\n"); | |
16688 | if (ent == (bfd_vma) -1) | |
16689 | goto sgot_print_fail; | |
16690 | } | |
16691 | printf ("\n"); | |
16692 | } | |
16693 | ||
16694 | sgot_print_fail: | |
16695 | if (data) | |
16696 | free (data); | |
16697 | } | |
16698 | return res; | |
16699 | } | |
252b5132 | 16700 | |
978c4450 | 16701 | for (entry = filedata->dynamic_section; |
071436c6 | 16702 | /* PR 17531 file: 012-50589-0.004. */ |
978c4450 AM |
16703 | (entry < filedata->dynamic_section + filedata->dynamic_nent |
16704 | && entry->d_tag != DT_NULL); | |
071436c6 | 16705 | ++entry) |
252b5132 RH |
16706 | switch (entry->d_tag) |
16707 | { | |
16708 | case DT_MIPS_LIBLIST: | |
d93f0186 | 16709 | liblist_offset |
dda8d76d | 16710 | = offset_from_vma (filedata, entry->d_un.d_val, |
d93f0186 | 16711 | liblistno * sizeof (Elf32_External_Lib)); |
252b5132 RH |
16712 | break; |
16713 | case DT_MIPS_LIBLISTNO: | |
16714 | liblistno = entry->d_un.d_val; | |
16715 | break; | |
16716 | case DT_MIPS_OPTIONS: | |
dda8d76d | 16717 | options_offset = offset_from_vma (filedata, entry->d_un.d_val, 0); |
252b5132 RH |
16718 | break; |
16719 | case DT_MIPS_CONFLICT: | |
d93f0186 | 16720 | conflicts_offset |
dda8d76d | 16721 | = offset_from_vma (filedata, entry->d_un.d_val, |
d93f0186 | 16722 | conflictsno * sizeof (Elf32_External_Conflict)); |
252b5132 RH |
16723 | break; |
16724 | case DT_MIPS_CONFLICTNO: | |
16725 | conflictsno = entry->d_un.d_val; | |
16726 | break; | |
ccb4c951 | 16727 | case DT_PLTGOT: |
861fb55a DJ |
16728 | pltgot = entry->d_un.d_ptr; |
16729 | break; | |
ccb4c951 RS |
16730 | case DT_MIPS_LOCAL_GOTNO: |
16731 | local_gotno = entry->d_un.d_val; | |
16732 | break; | |
16733 | case DT_MIPS_GOTSYM: | |
16734 | gotsym = entry->d_un.d_val; | |
16735 | break; | |
16736 | case DT_MIPS_SYMTABNO: | |
16737 | symtabno = entry->d_un.d_val; | |
16738 | break; | |
861fb55a DJ |
16739 | case DT_MIPS_PLTGOT: |
16740 | mips_pltgot = entry->d_un.d_ptr; | |
16741 | break; | |
16742 | case DT_PLTREL: | |
16743 | pltrel = entry->d_un.d_val; | |
16744 | break; | |
16745 | case DT_PLTRELSZ: | |
16746 | pltrelsz = entry->d_un.d_val; | |
16747 | break; | |
16748 | case DT_JMPREL: | |
16749 | jmprel = entry->d_un.d_ptr; | |
16750 | break; | |
252b5132 RH |
16751 | default: |
16752 | break; | |
16753 | } | |
16754 | ||
16755 | if (liblist_offset != 0 && liblistno != 0 && do_dynamic) | |
16756 | { | |
2cf0635d | 16757 | Elf32_External_Lib * elib; |
252b5132 RH |
16758 | size_t cnt; |
16759 | ||
dda8d76d | 16760 | elib = (Elf32_External_Lib *) get_data (NULL, filedata, liblist_offset, |
95099889 AM |
16761 | sizeof (Elf32_External_Lib), |
16762 | liblistno, | |
16763 | _("liblist section data")); | |
a6e9f9df | 16764 | if (elib) |
252b5132 | 16765 | { |
d3a49aa8 AM |
16766 | printf (ngettext ("\nSection '.liblist' contains %lu entry:\n", |
16767 | "\nSection '.liblist' contains %lu entries:\n", | |
16768 | (unsigned long) liblistno), | |
a6e9f9df | 16769 | (unsigned long) liblistno); |
2b692964 | 16770 | fputs (_(" Library Time Stamp Checksum Version Flags\n"), |
a6e9f9df AM |
16771 | stdout); |
16772 | ||
16773 | for (cnt = 0; cnt < liblistno; ++cnt) | |
252b5132 | 16774 | { |
a6e9f9df | 16775 | Elf32_Lib liblist; |
91d6fa6a | 16776 | time_t atime; |
d5b07ef4 | 16777 | char timebuf[128]; |
2cf0635d | 16778 | struct tm * tmp; |
a6e9f9df AM |
16779 | |
16780 | liblist.l_name = BYTE_GET (elib[cnt].l_name); | |
91d6fa6a | 16781 | atime = BYTE_GET (elib[cnt].l_time_stamp); |
a6e9f9df AM |
16782 | liblist.l_checksum = BYTE_GET (elib[cnt].l_checksum); |
16783 | liblist.l_version = BYTE_GET (elib[cnt].l_version); | |
16784 | liblist.l_flags = BYTE_GET (elib[cnt].l_flags); | |
16785 | ||
91d6fa6a | 16786 | tmp = gmtime (&atime); |
e9e44622 JJ |
16787 | snprintf (timebuf, sizeof (timebuf), |
16788 | "%04u-%02u-%02uT%02u:%02u:%02u", | |
16789 | tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday, | |
16790 | tmp->tm_hour, tmp->tm_min, tmp->tm_sec); | |
a6e9f9df | 16791 | |
31104126 | 16792 | printf ("%3lu: ", (unsigned long) cnt); |
978c4450 AM |
16793 | if (VALID_DYNAMIC_NAME (filedata, liblist.l_name)) |
16794 | print_symbol (20, GET_DYNAMIC_NAME (filedata, liblist.l_name)); | |
d79b3d50 | 16795 | else |
2b692964 | 16796 | printf (_("<corrupt: %9ld>"), liblist.l_name); |
31104126 NC |
16797 | printf (" %s %#10lx %-7ld", timebuf, liblist.l_checksum, |
16798 | liblist.l_version); | |
a6e9f9df AM |
16799 | |
16800 | if (liblist.l_flags == 0) | |
2b692964 | 16801 | puts (_(" NONE")); |
a6e9f9df AM |
16802 | else |
16803 | { | |
16804 | static const struct | |
252b5132 | 16805 | { |
2cf0635d | 16806 | const char * name; |
a6e9f9df | 16807 | int bit; |
252b5132 | 16808 | } |
a6e9f9df AM |
16809 | l_flags_vals[] = |
16810 | { | |
16811 | { " EXACT_MATCH", LL_EXACT_MATCH }, | |
16812 | { " IGNORE_INT_VER", LL_IGNORE_INT_VER }, | |
16813 | { " REQUIRE_MINOR", LL_REQUIRE_MINOR }, | |
16814 | { " EXPORTS", LL_EXPORTS }, | |
16815 | { " DELAY_LOAD", LL_DELAY_LOAD }, | |
16816 | { " DELTA", LL_DELTA } | |
16817 | }; | |
16818 | int flags = liblist.l_flags; | |
16819 | size_t fcnt; | |
16820 | ||
60bca95a | 16821 | for (fcnt = 0; fcnt < ARRAY_SIZE (l_flags_vals); ++fcnt) |
a6e9f9df AM |
16822 | if ((flags & l_flags_vals[fcnt].bit) != 0) |
16823 | { | |
16824 | fputs (l_flags_vals[fcnt].name, stdout); | |
16825 | flags ^= l_flags_vals[fcnt].bit; | |
16826 | } | |
16827 | if (flags != 0) | |
16828 | printf (" %#x", (unsigned int) flags); | |
252b5132 | 16829 | |
a6e9f9df AM |
16830 | puts (""); |
16831 | } | |
252b5132 | 16832 | } |
252b5132 | 16833 | |
a6e9f9df AM |
16834 | free (elib); |
16835 | } | |
32ec8896 NC |
16836 | else |
16837 | res = FALSE; | |
252b5132 RH |
16838 | } |
16839 | ||
16840 | if (options_offset != 0) | |
16841 | { | |
2cf0635d | 16842 | Elf_External_Options * eopt; |
252b5132 RH |
16843 | size_t offset; |
16844 | int cnt; | |
dda8d76d | 16845 | sect = filedata->section_headers; |
252b5132 RH |
16846 | |
16847 | /* Find the section header so that we get the size. */ | |
dda8d76d | 16848 | sect = find_section_by_type (filedata, SHT_MIPS_OPTIONS); |
948f632f | 16849 | /* PR 17533 file: 012-277276-0.004. */ |
071436c6 NC |
16850 | if (sect == NULL) |
16851 | { | |
16852 | error (_("No MIPS_OPTIONS header found\n")); | |
32ec8896 | 16853 | return FALSE; |
071436c6 | 16854 | } |
7fc0c668 NC |
16855 | /* PR 24243 */ |
16856 | if (sect->sh_size < sizeof (* eopt)) | |
16857 | { | |
16858 | error (_("The MIPS options section is too small.\n")); | |
16859 | return FALSE; | |
16860 | } | |
252b5132 | 16861 | |
dda8d76d | 16862 | eopt = (Elf_External_Options *) get_data (NULL, filedata, options_offset, 1, |
3f5e193b | 16863 | sect->sh_size, _("options")); |
a6e9f9df | 16864 | if (eopt) |
252b5132 | 16865 | { |
2e6be59c NC |
16866 | Elf_Internal_Options * iopt; |
16867 | Elf_Internal_Options * option; | |
16868 | Elf_Internal_Options * iopt_end; | |
16869 | ||
3f5e193b NC |
16870 | iopt = (Elf_Internal_Options *) |
16871 | cmalloc ((sect->sh_size / sizeof (eopt)), sizeof (* iopt)); | |
a6e9f9df AM |
16872 | if (iopt == NULL) |
16873 | { | |
fb324ee9 | 16874 | error (_("Out of memory allocating space for MIPS options\n")); |
645f43a8 | 16875 | free (eopt); |
32ec8896 | 16876 | return FALSE; |
a6e9f9df | 16877 | } |
76da6bbe | 16878 | |
a6e9f9df AM |
16879 | offset = cnt = 0; |
16880 | option = iopt; | |
2e6be59c NC |
16881 | iopt_end = iopt + (sect->sh_size / sizeof (eopt)); |
16882 | ||
82b1b41b | 16883 | while (offset <= sect->sh_size - sizeof (* eopt)) |
a6e9f9df | 16884 | { |
2cf0635d | 16885 | Elf_External_Options * eoption; |
252b5132 | 16886 | |
a6e9f9df | 16887 | eoption = (Elf_External_Options *) ((char *) eopt + offset); |
252b5132 | 16888 | |
a6e9f9df AM |
16889 | option->kind = BYTE_GET (eoption->kind); |
16890 | option->size = BYTE_GET (eoption->size); | |
16891 | option->section = BYTE_GET (eoption->section); | |
16892 | option->info = BYTE_GET (eoption->info); | |
76da6bbe | 16893 | |
82b1b41b NC |
16894 | /* PR 17531: file: ffa0fa3b. */ |
16895 | if (option->size < sizeof (* eopt) | |
16896 | || offset + option->size > sect->sh_size) | |
16897 | { | |
645f43a8 AM |
16898 | error (_("Invalid size (%u) for MIPS option\n"), |
16899 | option->size); | |
16900 | free (iopt); | |
16901 | free (eopt); | |
32ec8896 | 16902 | return FALSE; |
82b1b41b | 16903 | } |
a6e9f9df | 16904 | offset += option->size; |
14ae95f2 | 16905 | |
a6e9f9df AM |
16906 | ++option; |
16907 | ++cnt; | |
16908 | } | |
252b5132 | 16909 | |
d3a49aa8 AM |
16910 | printf (ngettext ("\nSection '%s' contains %d entry:\n", |
16911 | "\nSection '%s' contains %d entries:\n", | |
16912 | cnt), | |
dda8d76d | 16913 | printable_section_name (filedata, sect), cnt); |
76da6bbe | 16914 | |
a6e9f9df | 16915 | option = iopt; |
82b1b41b | 16916 | offset = 0; |
252b5132 | 16917 | |
a6e9f9df | 16918 | while (cnt-- > 0) |
252b5132 | 16919 | { |
a6e9f9df AM |
16920 | size_t len; |
16921 | ||
16922 | switch (option->kind) | |
252b5132 | 16923 | { |
a6e9f9df AM |
16924 | case ODK_NULL: |
16925 | /* This shouldn't happen. */ | |
16926 | printf (" NULL %d %lx", option->section, option->info); | |
16927 | break; | |
2e6be59c | 16928 | |
a6e9f9df AM |
16929 | case ODK_REGINFO: |
16930 | printf (" REGINFO "); | |
dda8d76d | 16931 | if (filedata->file_header.e_machine == EM_MIPS) |
a6e9f9df | 16932 | { |
2cf0635d | 16933 | Elf32_External_RegInfo * ereg; |
b34976b6 | 16934 | Elf32_RegInfo reginfo; |
a6e9f9df | 16935 | |
2e6be59c NC |
16936 | /* 32bit form. */ |
16937 | if (option + 2 > iopt_end) | |
16938 | { | |
16939 | printf (_("<corrupt>\n")); | |
16940 | error (_("Truncated MIPS REGINFO option\n")); | |
16941 | cnt = 0; | |
16942 | break; | |
16943 | } | |
16944 | ||
a6e9f9df | 16945 | ereg = (Elf32_External_RegInfo *) (option + 1); |
2e6be59c | 16946 | |
a6e9f9df AM |
16947 | reginfo.ri_gprmask = BYTE_GET (ereg->ri_gprmask); |
16948 | reginfo.ri_cprmask[0] = BYTE_GET (ereg->ri_cprmask[0]); | |
16949 | reginfo.ri_cprmask[1] = BYTE_GET (ereg->ri_cprmask[1]); | |
16950 | reginfo.ri_cprmask[2] = BYTE_GET (ereg->ri_cprmask[2]); | |
16951 | reginfo.ri_cprmask[3] = BYTE_GET (ereg->ri_cprmask[3]); | |
16952 | reginfo.ri_gp_value = BYTE_GET (ereg->ri_gp_value); | |
16953 | ||
16954 | printf ("GPR %08lx GP 0x%lx\n", | |
16955 | reginfo.ri_gprmask, | |
16956 | (unsigned long) reginfo.ri_gp_value); | |
16957 | printf (" CPR0 %08lx CPR1 %08lx CPR2 %08lx CPR3 %08lx\n", | |
16958 | reginfo.ri_cprmask[0], reginfo.ri_cprmask[1], | |
16959 | reginfo.ri_cprmask[2], reginfo.ri_cprmask[3]); | |
16960 | } | |
16961 | else | |
16962 | { | |
16963 | /* 64 bit form. */ | |
2cf0635d | 16964 | Elf64_External_RegInfo * ereg; |
a6e9f9df AM |
16965 | Elf64_Internal_RegInfo reginfo; |
16966 | ||
2e6be59c NC |
16967 | if (option + 2 > iopt_end) |
16968 | { | |
16969 | printf (_("<corrupt>\n")); | |
16970 | error (_("Truncated MIPS REGINFO option\n")); | |
16971 | cnt = 0; | |
16972 | break; | |
16973 | } | |
16974 | ||
a6e9f9df AM |
16975 | ereg = (Elf64_External_RegInfo *) (option + 1); |
16976 | reginfo.ri_gprmask = BYTE_GET (ereg->ri_gprmask); | |
16977 | reginfo.ri_cprmask[0] = BYTE_GET (ereg->ri_cprmask[0]); | |
16978 | reginfo.ri_cprmask[1] = BYTE_GET (ereg->ri_cprmask[1]); | |
16979 | reginfo.ri_cprmask[2] = BYTE_GET (ereg->ri_cprmask[2]); | |
16980 | reginfo.ri_cprmask[3] = BYTE_GET (ereg->ri_cprmask[3]); | |
66543521 | 16981 | reginfo.ri_gp_value = BYTE_GET (ereg->ri_gp_value); |
a6e9f9df AM |
16982 | |
16983 | printf ("GPR %08lx GP 0x", | |
16984 | reginfo.ri_gprmask); | |
16985 | printf_vma (reginfo.ri_gp_value); | |
16986 | printf ("\n"); | |
16987 | ||
16988 | printf (" CPR0 %08lx CPR1 %08lx CPR2 %08lx CPR3 %08lx\n", | |
16989 | reginfo.ri_cprmask[0], reginfo.ri_cprmask[1], | |
16990 | reginfo.ri_cprmask[2], reginfo.ri_cprmask[3]); | |
16991 | } | |
16992 | ++option; | |
16993 | continue; | |
2e6be59c | 16994 | |
a6e9f9df AM |
16995 | case ODK_EXCEPTIONS: |
16996 | fputs (" EXCEPTIONS fpe_min(", stdout); | |
16997 | process_mips_fpe_exception (option->info & OEX_FPU_MIN); | |
16998 | fputs (") fpe_max(", stdout); | |
16999 | process_mips_fpe_exception ((option->info & OEX_FPU_MAX) >> 8); | |
17000 | fputs (")", stdout); | |
17001 | ||
17002 | if (option->info & OEX_PAGE0) | |
17003 | fputs (" PAGE0", stdout); | |
17004 | if (option->info & OEX_SMM) | |
17005 | fputs (" SMM", stdout); | |
17006 | if (option->info & OEX_FPDBUG) | |
17007 | fputs (" FPDBUG", stdout); | |
17008 | if (option->info & OEX_DISMISS) | |
17009 | fputs (" DISMISS", stdout); | |
17010 | break; | |
2e6be59c | 17011 | |
a6e9f9df AM |
17012 | case ODK_PAD: |
17013 | fputs (" PAD ", stdout); | |
17014 | if (option->info & OPAD_PREFIX) | |
17015 | fputs (" PREFIX", stdout); | |
17016 | if (option->info & OPAD_POSTFIX) | |
17017 | fputs (" POSTFIX", stdout); | |
17018 | if (option->info & OPAD_SYMBOL) | |
17019 | fputs (" SYMBOL", stdout); | |
17020 | break; | |
2e6be59c | 17021 | |
a6e9f9df AM |
17022 | case ODK_HWPATCH: |
17023 | fputs (" HWPATCH ", stdout); | |
17024 | if (option->info & OHW_R4KEOP) | |
17025 | fputs (" R4KEOP", stdout); | |
17026 | if (option->info & OHW_R8KPFETCH) | |
17027 | fputs (" R8KPFETCH", stdout); | |
17028 | if (option->info & OHW_R5KEOP) | |
17029 | fputs (" R5KEOP", stdout); | |
17030 | if (option->info & OHW_R5KCVTL) | |
17031 | fputs (" R5KCVTL", stdout); | |
17032 | break; | |
2e6be59c | 17033 | |
a6e9f9df AM |
17034 | case ODK_FILL: |
17035 | fputs (" FILL ", stdout); | |
17036 | /* XXX Print content of info word? */ | |
17037 | break; | |
2e6be59c | 17038 | |
a6e9f9df AM |
17039 | case ODK_TAGS: |
17040 | fputs (" TAGS ", stdout); | |
17041 | /* XXX Print content of info word? */ | |
17042 | break; | |
2e6be59c | 17043 | |
a6e9f9df AM |
17044 | case ODK_HWAND: |
17045 | fputs (" HWAND ", stdout); | |
17046 | if (option->info & OHWA0_R4KEOP_CHECKED) | |
17047 | fputs (" R4KEOP_CHECKED", stdout); | |
17048 | if (option->info & OHWA0_R4KEOP_CLEAN) | |
17049 | fputs (" R4KEOP_CLEAN", stdout); | |
17050 | break; | |
2e6be59c | 17051 | |
a6e9f9df AM |
17052 | case ODK_HWOR: |
17053 | fputs (" HWOR ", stdout); | |
17054 | if (option->info & OHWA0_R4KEOP_CHECKED) | |
17055 | fputs (" R4KEOP_CHECKED", stdout); | |
17056 | if (option->info & OHWA0_R4KEOP_CLEAN) | |
17057 | fputs (" R4KEOP_CLEAN", stdout); | |
17058 | break; | |
2e6be59c | 17059 | |
a6e9f9df AM |
17060 | case ODK_GP_GROUP: |
17061 | printf (" GP_GROUP %#06lx self-contained %#06lx", | |
17062 | option->info & OGP_GROUP, | |
17063 | (option->info & OGP_SELF) >> 16); | |
17064 | break; | |
2e6be59c | 17065 | |
a6e9f9df AM |
17066 | case ODK_IDENT: |
17067 | printf (" IDENT %#06lx self-contained %#06lx", | |
17068 | option->info & OGP_GROUP, | |
17069 | (option->info & OGP_SELF) >> 16); | |
17070 | break; | |
2e6be59c | 17071 | |
a6e9f9df AM |
17072 | default: |
17073 | /* This shouldn't happen. */ | |
17074 | printf (" %3d ??? %d %lx", | |
17075 | option->kind, option->section, option->info); | |
17076 | break; | |
252b5132 | 17077 | } |
a6e9f9df | 17078 | |
2cf0635d | 17079 | len = sizeof (* eopt); |
a6e9f9df | 17080 | while (len < option->size) |
82b1b41b | 17081 | { |
7e27a9d5 | 17082 | unsigned char datum = * ((unsigned char *) eopt + offset + len); |
a6e9f9df | 17083 | |
82b1b41b NC |
17084 | if (ISPRINT (datum)) |
17085 | printf ("%c", datum); | |
17086 | else | |
17087 | printf ("\\%03o", datum); | |
17088 | len ++; | |
17089 | } | |
a6e9f9df | 17090 | fputs ("\n", stdout); |
82b1b41b NC |
17091 | |
17092 | offset += option->size; | |
252b5132 | 17093 | ++option; |
252b5132 | 17094 | } |
645f43a8 | 17095 | free (iopt); |
a6e9f9df | 17096 | free (eopt); |
252b5132 | 17097 | } |
32ec8896 NC |
17098 | else |
17099 | res = FALSE; | |
252b5132 RH |
17100 | } |
17101 | ||
17102 | if (conflicts_offset != 0 && conflictsno != 0) | |
17103 | { | |
2cf0635d | 17104 | Elf32_Conflict * iconf; |
252b5132 RH |
17105 | size_t cnt; |
17106 | ||
978c4450 | 17107 | if (filedata->dynamic_symbols == NULL) |
252b5132 | 17108 | { |
591a748a | 17109 | error (_("conflict list found without a dynamic symbol table\n")); |
32ec8896 | 17110 | return FALSE; |
252b5132 RH |
17111 | } |
17112 | ||
7296a62a NC |
17113 | /* PR 21345 - print a slightly more helpful error message |
17114 | if we are sure that the cmalloc will fail. */ | |
645f43a8 | 17115 | if (conflictsno > filedata->file_size / sizeof (* iconf)) |
7296a62a NC |
17116 | { |
17117 | error (_("Overlarge number of conflicts detected: %lx\n"), | |
17118 | (long) conflictsno); | |
17119 | return FALSE; | |
17120 | } | |
17121 | ||
3f5e193b | 17122 | iconf = (Elf32_Conflict *) cmalloc (conflictsno, sizeof (* iconf)); |
252b5132 RH |
17123 | if (iconf == NULL) |
17124 | { | |
8b73c356 | 17125 | error (_("Out of memory allocating space for dynamic conflicts\n")); |
32ec8896 | 17126 | return FALSE; |
252b5132 RH |
17127 | } |
17128 | ||
9ea033b2 | 17129 | if (is_32bit_elf) |
252b5132 | 17130 | { |
2cf0635d | 17131 | Elf32_External_Conflict * econf32; |
a6e9f9df | 17132 | |
3f5e193b | 17133 | econf32 = (Elf32_External_Conflict *) |
95099889 AM |
17134 | get_data (NULL, filedata, conflicts_offset, |
17135 | sizeof (*econf32), conflictsno, _("conflict")); | |
a6e9f9df | 17136 | if (!econf32) |
5a814d6d AM |
17137 | { |
17138 | free (iconf); | |
17139 | return FALSE; | |
17140 | } | |
252b5132 RH |
17141 | |
17142 | for (cnt = 0; cnt < conflictsno; ++cnt) | |
17143 | iconf[cnt] = BYTE_GET (econf32[cnt]); | |
a6e9f9df AM |
17144 | |
17145 | free (econf32); | |
252b5132 RH |
17146 | } |
17147 | else | |
17148 | { | |
2cf0635d | 17149 | Elf64_External_Conflict * econf64; |
a6e9f9df | 17150 | |
3f5e193b | 17151 | econf64 = (Elf64_External_Conflict *) |
95099889 AM |
17152 | get_data (NULL, filedata, conflicts_offset, |
17153 | sizeof (*econf64), conflictsno, _("conflict")); | |
a6e9f9df | 17154 | if (!econf64) |
5a814d6d AM |
17155 | { |
17156 | free (iconf); | |
17157 | return FALSE; | |
17158 | } | |
252b5132 RH |
17159 | |
17160 | for (cnt = 0; cnt < conflictsno; ++cnt) | |
17161 | iconf[cnt] = BYTE_GET (econf64[cnt]); | |
a6e9f9df AM |
17162 | |
17163 | free (econf64); | |
252b5132 RH |
17164 | } |
17165 | ||
d3a49aa8 AM |
17166 | printf (ngettext ("\nSection '.conflict' contains %lu entry:\n", |
17167 | "\nSection '.conflict' contains %lu entries:\n", | |
17168 | (unsigned long) conflictsno), | |
c7e7ca54 | 17169 | (unsigned long) conflictsno); |
252b5132 RH |
17170 | puts (_(" Num: Index Value Name")); |
17171 | ||
17172 | for (cnt = 0; cnt < conflictsno; ++cnt) | |
17173 | { | |
b34976b6 | 17174 | printf ("%5lu: %8lu ", (unsigned long) cnt, iconf[cnt]); |
e0a31db1 | 17175 | |
978c4450 | 17176 | if (iconf[cnt] >= filedata->num_dynamic_syms) |
e0a31db1 | 17177 | printf (_("<corrupt symbol index>")); |
d79b3d50 | 17178 | else |
e0a31db1 NC |
17179 | { |
17180 | Elf_Internal_Sym * psym; | |
17181 | ||
978c4450 | 17182 | psym = & filedata->dynamic_symbols[iconf[cnt]]; |
e0a31db1 NC |
17183 | print_vma (psym->st_value, FULL_HEX); |
17184 | putchar (' '); | |
978c4450 AM |
17185 | if (VALID_DYNAMIC_NAME (filedata, psym->st_name)) |
17186 | print_symbol (25, GET_DYNAMIC_NAME (filedata, psym->st_name)); | |
e0a31db1 NC |
17187 | else |
17188 | printf (_("<corrupt: %14ld>"), psym->st_name); | |
17189 | } | |
31104126 | 17190 | putchar ('\n'); |
252b5132 RH |
17191 | } |
17192 | ||
252b5132 RH |
17193 | free (iconf); |
17194 | } | |
17195 | ||
ccb4c951 RS |
17196 | if (pltgot != 0 && local_gotno != 0) |
17197 | { | |
91d6fa6a | 17198 | bfd_vma ent, local_end, global_end; |
bbeee7ea | 17199 | size_t i, offset; |
2cf0635d | 17200 | unsigned char * data; |
82b1b41b | 17201 | unsigned char * data_end; |
bbeee7ea | 17202 | int addr_size; |
ccb4c951 | 17203 | |
91d6fa6a | 17204 | ent = pltgot; |
ccb4c951 RS |
17205 | addr_size = (is_32bit_elf ? 4 : 8); |
17206 | local_end = pltgot + local_gotno * addr_size; | |
ccb4c951 | 17207 | |
74e1a04b NC |
17208 | /* PR binutils/17533 file: 012-111227-0.004 */ |
17209 | if (symtabno < gotsym) | |
17210 | { | |
17211 | error (_("The GOT symbol offset (%lu) is greater than the symbol table size (%lu)\n"), | |
82b1b41b | 17212 | (unsigned long) gotsym, (unsigned long) symtabno); |
32ec8896 | 17213 | return FALSE; |
74e1a04b | 17214 | } |
82b1b41b | 17215 | |
74e1a04b | 17216 | global_end = local_end + (symtabno - gotsym) * addr_size; |
82b1b41b NC |
17217 | /* PR 17531: file: 54c91a34. */ |
17218 | if (global_end < local_end) | |
17219 | { | |
17220 | error (_("Too many GOT symbols: %lu\n"), (unsigned long) symtabno); | |
32ec8896 | 17221 | return FALSE; |
82b1b41b | 17222 | } |
948f632f | 17223 | |
dda8d76d NC |
17224 | offset = offset_from_vma (filedata, pltgot, global_end - pltgot); |
17225 | data = (unsigned char *) get_data (NULL, filedata, offset, | |
9cf03b7e NC |
17226 | global_end - pltgot, 1, |
17227 | _("Global Offset Table data")); | |
919383ac | 17228 | /* PR 12855: Null data is handled gracefully throughout. */ |
82b1b41b | 17229 | data_end = data + (global_end - pltgot); |
59245841 | 17230 | |
ccb4c951 RS |
17231 | printf (_("\nPrimary GOT:\n")); |
17232 | printf (_(" Canonical gp value: ")); | |
17233 | print_vma (pltgot + 0x7ff0, LONG_HEX); | |
17234 | printf ("\n\n"); | |
17235 | ||
17236 | printf (_(" Reserved entries:\n")); | |
17237 | printf (_(" %*s %10s %*s Purpose\n"), | |
2b692964 NC |
17238 | addr_size * 2, _("Address"), _("Access"), |
17239 | addr_size * 2, _("Initial")); | |
82b1b41b | 17240 | ent = print_mips_got_entry (data, pltgot, ent, data_end); |
2b692964 | 17241 | printf (_(" Lazy resolver\n")); |
82b1b41b NC |
17242 | if (ent == (bfd_vma) -1) |
17243 | goto got_print_fail; | |
75ec1fdb | 17244 | |
c4ab9505 MR |
17245 | /* Check for the MSB of GOT[1] being set, denoting a GNU object. |
17246 | This entry will be used by some runtime loaders, to store the | |
17247 | module pointer. Otherwise this is an ordinary local entry. | |
17248 | PR 21344: Check for the entry being fully available before | |
17249 | fetching it. */ | |
17250 | if (data | |
17251 | && data + ent - pltgot + addr_size <= data_end | |
17252 | && (byte_get (data + ent - pltgot, addr_size) | |
17253 | >> (addr_size * 8 - 1)) != 0) | |
17254 | { | |
17255 | ent = print_mips_got_entry (data, pltgot, ent, data_end); | |
17256 | printf (_(" Module pointer (GNU extension)\n")); | |
17257 | if (ent == (bfd_vma) -1) | |
17258 | goto got_print_fail; | |
ccb4c951 RS |
17259 | } |
17260 | printf ("\n"); | |
17261 | ||
f17e9d8a | 17262 | if (data != NULL && ent < local_end) |
ccb4c951 RS |
17263 | { |
17264 | printf (_(" Local entries:\n")); | |
cc5914eb | 17265 | printf (" %*s %10s %*s\n", |
2b692964 NC |
17266 | addr_size * 2, _("Address"), _("Access"), |
17267 | addr_size * 2, _("Initial")); | |
91d6fa6a | 17268 | while (ent < local_end) |
ccb4c951 | 17269 | { |
82b1b41b | 17270 | ent = print_mips_got_entry (data, pltgot, ent, data_end); |
ccb4c951 | 17271 | printf ("\n"); |
82b1b41b NC |
17272 | if (ent == (bfd_vma) -1) |
17273 | goto got_print_fail; | |
ccb4c951 RS |
17274 | } |
17275 | printf ("\n"); | |
17276 | } | |
17277 | ||
f17e9d8a | 17278 | if (data != NULL && gotsym < symtabno) |
ccb4c951 RS |
17279 | { |
17280 | int sym_width; | |
17281 | ||
17282 | printf (_(" Global entries:\n")); | |
cc5914eb | 17283 | printf (" %*s %10s %*s %*s %-7s %3s %s\n", |
9cf03b7e NC |
17284 | addr_size * 2, _("Address"), |
17285 | _("Access"), | |
2b692964 | 17286 | addr_size * 2, _("Initial"), |
9cf03b7e NC |
17287 | addr_size * 2, _("Sym.Val."), |
17288 | _("Type"), | |
17289 | /* Note for translators: "Ndx" = abbreviated form of "Index". */ | |
17290 | _("Ndx"), _("Name")); | |
0b4362b0 | 17291 | |
ccb4c951 | 17292 | sym_width = (is_32bit_elf ? 80 : 160) - 28 - addr_size * 6 - 1; |
e0a31db1 | 17293 | |
ccb4c951 RS |
17294 | for (i = gotsym; i < symtabno; i++) |
17295 | { | |
82b1b41b | 17296 | ent = print_mips_got_entry (data, pltgot, ent, data_end); |
ccb4c951 | 17297 | printf (" "); |
e0a31db1 | 17298 | |
978c4450 | 17299 | if (filedata->dynamic_symbols == NULL) |
e0a31db1 | 17300 | printf (_("<no dynamic symbols>")); |
978c4450 | 17301 | else if (i < filedata->num_dynamic_syms) |
e0a31db1 | 17302 | { |
978c4450 | 17303 | Elf_Internal_Sym * psym = filedata->dynamic_symbols + i; |
e0a31db1 NC |
17304 | |
17305 | print_vma (psym->st_value, LONG_HEX); | |
17306 | printf (" %-7s %3s ", | |
dda8d76d NC |
17307 | get_symbol_type (filedata, ELF_ST_TYPE (psym->st_info)), |
17308 | get_symbol_index_type (filedata, psym->st_shndx)); | |
e0a31db1 | 17309 | |
978c4450 AM |
17310 | if (VALID_DYNAMIC_NAME (filedata, psym->st_name)) |
17311 | print_symbol (sym_width, | |
17312 | GET_DYNAMIC_NAME (filedata, psym->st_name)); | |
e0a31db1 NC |
17313 | else |
17314 | printf (_("<corrupt: %14ld>"), psym->st_name); | |
17315 | } | |
ccb4c951 | 17316 | else |
7fc5ac57 JBG |
17317 | printf (_("<symbol index %lu exceeds number of dynamic symbols>"), |
17318 | (unsigned long) i); | |
e0a31db1 | 17319 | |
ccb4c951 | 17320 | printf ("\n"); |
82b1b41b NC |
17321 | if (ent == (bfd_vma) -1) |
17322 | break; | |
ccb4c951 RS |
17323 | } |
17324 | printf ("\n"); | |
17325 | } | |
17326 | ||
82b1b41b | 17327 | got_print_fail: |
ccb4c951 RS |
17328 | if (data) |
17329 | free (data); | |
17330 | } | |
17331 | ||
861fb55a DJ |
17332 | if (mips_pltgot != 0 && jmprel != 0 && pltrel != 0 && pltrelsz != 0) |
17333 | { | |
91d6fa6a | 17334 | bfd_vma ent, end; |
861fb55a DJ |
17335 | size_t offset, rel_offset; |
17336 | unsigned long count, i; | |
2cf0635d | 17337 | unsigned char * data; |
861fb55a | 17338 | int addr_size, sym_width; |
2cf0635d | 17339 | Elf_Internal_Rela * rels; |
861fb55a | 17340 | |
dda8d76d | 17341 | rel_offset = offset_from_vma (filedata, jmprel, pltrelsz); |
861fb55a DJ |
17342 | if (pltrel == DT_RELA) |
17343 | { | |
dda8d76d | 17344 | if (!slurp_rela_relocs (filedata, rel_offset, pltrelsz, &rels, &count)) |
32ec8896 | 17345 | return FALSE; |
861fb55a DJ |
17346 | } |
17347 | else | |
17348 | { | |
dda8d76d | 17349 | if (!slurp_rel_relocs (filedata, rel_offset, pltrelsz, &rels, &count)) |
32ec8896 | 17350 | return FALSE; |
861fb55a DJ |
17351 | } |
17352 | ||
91d6fa6a | 17353 | ent = mips_pltgot; |
861fb55a DJ |
17354 | addr_size = (is_32bit_elf ? 4 : 8); |
17355 | end = mips_pltgot + (2 + count) * addr_size; | |
17356 | ||
dda8d76d NC |
17357 | offset = offset_from_vma (filedata, mips_pltgot, end - mips_pltgot); |
17358 | data = (unsigned char *) get_data (NULL, filedata, offset, end - mips_pltgot, | |
9cf03b7e | 17359 | 1, _("Procedure Linkage Table data")); |
59245841 | 17360 | if (data == NULL) |
32ec8896 | 17361 | return FALSE; |
59245841 | 17362 | |
9cf03b7e | 17363 | printf ("\nPLT GOT:\n\n"); |
861fb55a DJ |
17364 | printf (_(" Reserved entries:\n")); |
17365 | printf (_(" %*s %*s Purpose\n"), | |
2b692964 | 17366 | addr_size * 2, _("Address"), addr_size * 2, _("Initial")); |
91d6fa6a | 17367 | ent = print_mips_pltgot_entry (data, mips_pltgot, ent); |
2b692964 | 17368 | printf (_(" PLT lazy resolver\n")); |
91d6fa6a | 17369 | ent = print_mips_pltgot_entry (data, mips_pltgot, ent); |
2b692964 | 17370 | printf (_(" Module pointer\n")); |
861fb55a DJ |
17371 | printf ("\n"); |
17372 | ||
17373 | printf (_(" Entries:\n")); | |
cc5914eb | 17374 | printf (" %*s %*s %*s %-7s %3s %s\n", |
2b692964 NC |
17375 | addr_size * 2, _("Address"), |
17376 | addr_size * 2, _("Initial"), | |
17377 | addr_size * 2, _("Sym.Val."), _("Type"), _("Ndx"), _("Name")); | |
861fb55a DJ |
17378 | sym_width = (is_32bit_elf ? 80 : 160) - 17 - addr_size * 6 - 1; |
17379 | for (i = 0; i < count; i++) | |
17380 | { | |
df97ab2a | 17381 | unsigned long idx = get_reloc_symindex (rels[i].r_info); |
861fb55a | 17382 | |
91d6fa6a | 17383 | ent = print_mips_pltgot_entry (data, mips_pltgot, ent); |
861fb55a | 17384 | printf (" "); |
e0a31db1 | 17385 | |
978c4450 | 17386 | if (idx >= filedata->num_dynamic_syms) |
df97ab2a | 17387 | printf (_("<corrupt symbol index: %lu>"), idx); |
861fb55a | 17388 | else |
e0a31db1 | 17389 | { |
978c4450 | 17390 | Elf_Internal_Sym * psym = filedata->dynamic_symbols + idx; |
e0a31db1 NC |
17391 | |
17392 | print_vma (psym->st_value, LONG_HEX); | |
17393 | printf (" %-7s %3s ", | |
dda8d76d NC |
17394 | get_symbol_type (filedata, ELF_ST_TYPE (psym->st_info)), |
17395 | get_symbol_index_type (filedata, psym->st_shndx)); | |
978c4450 AM |
17396 | if (VALID_DYNAMIC_NAME (filedata, psym->st_name)) |
17397 | print_symbol (sym_width, | |
17398 | GET_DYNAMIC_NAME (filedata, psym->st_name)); | |
e0a31db1 NC |
17399 | else |
17400 | printf (_("<corrupt: %14ld>"), psym->st_name); | |
17401 | } | |
861fb55a DJ |
17402 | printf ("\n"); |
17403 | } | |
17404 | printf ("\n"); | |
17405 | ||
17406 | if (data) | |
17407 | free (data); | |
17408 | free (rels); | |
17409 | } | |
17410 | ||
32ec8896 | 17411 | return res; |
252b5132 RH |
17412 | } |
17413 | ||
32ec8896 | 17414 | static bfd_boolean |
dda8d76d | 17415 | process_nds32_specific (Filedata * filedata) |
35c08157 KLC |
17416 | { |
17417 | Elf_Internal_Shdr *sect = NULL; | |
17418 | ||
dda8d76d | 17419 | sect = find_section (filedata, ".nds32_e_flags"); |
35c08157 KLC |
17420 | if (sect != NULL) |
17421 | { | |
17422 | unsigned int *flag; | |
17423 | ||
17424 | printf ("\nNDS32 elf flags section:\n"); | |
dda8d76d | 17425 | flag = get_data (NULL, filedata, sect->sh_offset, 1, |
35c08157 KLC |
17426 | sect->sh_size, _("NDS32 elf flags section")); |
17427 | ||
32ec8896 NC |
17428 | if (! flag) |
17429 | return FALSE; | |
17430 | ||
35c08157 KLC |
17431 | switch ((*flag) & 0x3) |
17432 | { | |
17433 | case 0: | |
17434 | printf ("(VEC_SIZE):\tNo entry.\n"); | |
17435 | break; | |
17436 | case 1: | |
17437 | printf ("(VEC_SIZE):\t4 bytes\n"); | |
17438 | break; | |
17439 | case 2: | |
17440 | printf ("(VEC_SIZE):\t16 bytes\n"); | |
17441 | break; | |
17442 | case 3: | |
17443 | printf ("(VEC_SIZE):\treserved\n"); | |
17444 | break; | |
17445 | } | |
17446 | } | |
17447 | ||
17448 | return TRUE; | |
17449 | } | |
17450 | ||
32ec8896 | 17451 | static bfd_boolean |
dda8d76d | 17452 | process_gnu_liblist (Filedata * filedata) |
047b2264 | 17453 | { |
2cf0635d NC |
17454 | Elf_Internal_Shdr * section; |
17455 | Elf_Internal_Shdr * string_sec; | |
17456 | Elf32_External_Lib * elib; | |
17457 | char * strtab; | |
c256ffe7 | 17458 | size_t strtab_size; |
047b2264 | 17459 | size_t cnt; |
d3a49aa8 | 17460 | unsigned long num_liblist; |
047b2264 | 17461 | unsigned i; |
32ec8896 | 17462 | bfd_boolean res = TRUE; |
047b2264 JJ |
17463 | |
17464 | if (! do_arch) | |
32ec8896 | 17465 | return TRUE; |
047b2264 | 17466 | |
dda8d76d NC |
17467 | for (i = 0, section = filedata->section_headers; |
17468 | i < filedata->file_header.e_shnum; | |
b34976b6 | 17469 | i++, section++) |
047b2264 JJ |
17470 | { |
17471 | switch (section->sh_type) | |
17472 | { | |
17473 | case SHT_GNU_LIBLIST: | |
dda8d76d | 17474 | if (section->sh_link >= filedata->file_header.e_shnum) |
c256ffe7 JJ |
17475 | break; |
17476 | ||
3f5e193b | 17477 | elib = (Elf32_External_Lib *) |
dda8d76d | 17478 | get_data (NULL, filedata, section->sh_offset, 1, section->sh_size, |
9cf03b7e | 17479 | _("liblist section data")); |
047b2264 JJ |
17480 | |
17481 | if (elib == NULL) | |
32ec8896 NC |
17482 | { |
17483 | res = FALSE; | |
17484 | break; | |
17485 | } | |
047b2264 | 17486 | |
dda8d76d NC |
17487 | string_sec = filedata->section_headers + section->sh_link; |
17488 | strtab = (char *) get_data (NULL, filedata, string_sec->sh_offset, 1, | |
3f5e193b NC |
17489 | string_sec->sh_size, |
17490 | _("liblist string table")); | |
047b2264 JJ |
17491 | if (strtab == NULL |
17492 | || section->sh_entsize != sizeof (Elf32_External_Lib)) | |
17493 | { | |
17494 | free (elib); | |
2842702f | 17495 | free (strtab); |
32ec8896 | 17496 | res = FALSE; |
047b2264 JJ |
17497 | break; |
17498 | } | |
59245841 | 17499 | strtab_size = string_sec->sh_size; |
047b2264 | 17500 | |
d3a49aa8 AM |
17501 | num_liblist = section->sh_size / sizeof (Elf32_External_Lib); |
17502 | printf (ngettext ("\nLibrary list section '%s' contains %lu entries:\n", | |
17503 | "\nLibrary list section '%s' contains %lu entries:\n", | |
17504 | num_liblist), | |
dda8d76d | 17505 | printable_section_name (filedata, section), |
d3a49aa8 | 17506 | num_liblist); |
047b2264 | 17507 | |
2b692964 | 17508 | puts (_(" Library Time Stamp Checksum Version Flags")); |
047b2264 JJ |
17509 | |
17510 | for (cnt = 0; cnt < section->sh_size / sizeof (Elf32_External_Lib); | |
17511 | ++cnt) | |
17512 | { | |
17513 | Elf32_Lib liblist; | |
91d6fa6a | 17514 | time_t atime; |
d5b07ef4 | 17515 | char timebuf[128]; |
2cf0635d | 17516 | struct tm * tmp; |
047b2264 JJ |
17517 | |
17518 | liblist.l_name = BYTE_GET (elib[cnt].l_name); | |
91d6fa6a | 17519 | atime = BYTE_GET (elib[cnt].l_time_stamp); |
047b2264 JJ |
17520 | liblist.l_checksum = BYTE_GET (elib[cnt].l_checksum); |
17521 | liblist.l_version = BYTE_GET (elib[cnt].l_version); | |
17522 | liblist.l_flags = BYTE_GET (elib[cnt].l_flags); | |
17523 | ||
91d6fa6a | 17524 | tmp = gmtime (&atime); |
e9e44622 JJ |
17525 | snprintf (timebuf, sizeof (timebuf), |
17526 | "%04u-%02u-%02uT%02u:%02u:%02u", | |
17527 | tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday, | |
17528 | tmp->tm_hour, tmp->tm_min, tmp->tm_sec); | |
047b2264 JJ |
17529 | |
17530 | printf ("%3lu: ", (unsigned long) cnt); | |
17531 | if (do_wide) | |
c256ffe7 | 17532 | printf ("%-20s", liblist.l_name < strtab_size |
2b692964 | 17533 | ? strtab + liblist.l_name : _("<corrupt>")); |
047b2264 | 17534 | else |
c256ffe7 | 17535 | printf ("%-20.20s", liblist.l_name < strtab_size |
2b692964 | 17536 | ? strtab + liblist.l_name : _("<corrupt>")); |
047b2264 JJ |
17537 | printf (" %s %#010lx %-7ld %-7ld\n", timebuf, liblist.l_checksum, |
17538 | liblist.l_version, liblist.l_flags); | |
17539 | } | |
17540 | ||
17541 | free (elib); | |
2842702f | 17542 | free (strtab); |
047b2264 JJ |
17543 | } |
17544 | } | |
17545 | ||
32ec8896 | 17546 | return res; |
047b2264 JJ |
17547 | } |
17548 | ||
9437c45b | 17549 | static const char * |
dda8d76d | 17550 | get_note_type (Filedata * filedata, unsigned e_type) |
779fe533 NC |
17551 | { |
17552 | static char buff[64]; | |
103f02d3 | 17553 | |
dda8d76d | 17554 | if (filedata->file_header.e_type == ET_CORE) |
1ec5cd37 NC |
17555 | switch (e_type) |
17556 | { | |
57346661 | 17557 | case NT_AUXV: |
1ec5cd37 | 17558 | return _("NT_AUXV (auxiliary vector)"); |
57346661 | 17559 | case NT_PRSTATUS: |
1ec5cd37 | 17560 | return _("NT_PRSTATUS (prstatus structure)"); |
57346661 | 17561 | case NT_FPREGSET: |
1ec5cd37 | 17562 | return _("NT_FPREGSET (floating point registers)"); |
57346661 | 17563 | case NT_PRPSINFO: |
1ec5cd37 | 17564 | return _("NT_PRPSINFO (prpsinfo structure)"); |
57346661 | 17565 | case NT_TASKSTRUCT: |
1ec5cd37 | 17566 | return _("NT_TASKSTRUCT (task structure)"); |
57346661 | 17567 | case NT_PRXFPREG: |
1ec5cd37 | 17568 | return _("NT_PRXFPREG (user_xfpregs structure)"); |
e1e95dec AM |
17569 | case NT_PPC_VMX: |
17570 | return _("NT_PPC_VMX (ppc Altivec registers)"); | |
89eeb0bc LM |
17571 | case NT_PPC_VSX: |
17572 | return _("NT_PPC_VSX (ppc VSX registers)"); | |
66c3b5f8 GR |
17573 | case NT_PPC_TAR: |
17574 | return _("NT_PPC_TAR (ppc TAR register)"); | |
17575 | case NT_PPC_PPR: | |
17576 | return _("NT_PPC_PPR (ppc PPR register)"); | |
17577 | case NT_PPC_DSCR: | |
17578 | return _("NT_PPC_DSCR (ppc DSCR register)"); | |
17579 | case NT_PPC_EBB: | |
17580 | return _("NT_PPC_EBB (ppc EBB registers)"); | |
17581 | case NT_PPC_PMU: | |
17582 | return _("NT_PPC_PMU (ppc PMU registers)"); | |
17583 | case NT_PPC_TM_CGPR: | |
17584 | return _("NT_PPC_TM_CGPR (ppc checkpointed GPR registers)"); | |
17585 | case NT_PPC_TM_CFPR: | |
17586 | return _("NT_PPC_TM_CFPR (ppc checkpointed floating point registers)"); | |
17587 | case NT_PPC_TM_CVMX: | |
17588 | return _("NT_PPC_TM_CVMX (ppc checkpointed Altivec registers)"); | |
17589 | case NT_PPC_TM_CVSX: | |
3fd21718 | 17590 | return _("NT_PPC_TM_CVSX (ppc checkpointed VSX registers)"); |
66c3b5f8 GR |
17591 | case NT_PPC_TM_SPR: |
17592 | return _("NT_PPC_TM_SPR (ppc TM special purpose registers)"); | |
17593 | case NT_PPC_TM_CTAR: | |
17594 | return _("NT_PPC_TM_CTAR (ppc checkpointed TAR register)"); | |
17595 | case NT_PPC_TM_CPPR: | |
17596 | return _("NT_PPC_TM_CPPR (ppc checkpointed PPR register)"); | |
17597 | case NT_PPC_TM_CDSCR: | |
17598 | return _("NT_PPC_TM_CDSCR (ppc checkpointed DSCR register)"); | |
ff826ef3 TT |
17599 | case NT_386_TLS: |
17600 | return _("NT_386_TLS (x86 TLS information)"); | |
17601 | case NT_386_IOPERM: | |
17602 | return _("NT_386_IOPERM (x86 I/O permissions)"); | |
4339cae0 L |
17603 | case NT_X86_XSTATE: |
17604 | return _("NT_X86_XSTATE (x86 XSAVE extended state)"); | |
0675e188 UW |
17605 | case NT_S390_HIGH_GPRS: |
17606 | return _("NT_S390_HIGH_GPRS (s390 upper register halves)"); | |
d7eeb400 MS |
17607 | case NT_S390_TIMER: |
17608 | return _("NT_S390_TIMER (s390 timer register)"); | |
17609 | case NT_S390_TODCMP: | |
17610 | return _("NT_S390_TODCMP (s390 TOD comparator register)"); | |
17611 | case NT_S390_TODPREG: | |
17612 | return _("NT_S390_TODPREG (s390 TOD programmable register)"); | |
17613 | case NT_S390_CTRS: | |
17614 | return _("NT_S390_CTRS (s390 control registers)"); | |
17615 | case NT_S390_PREFIX: | |
17616 | return _("NT_S390_PREFIX (s390 prefix register)"); | |
a367d729 AK |
17617 | case NT_S390_LAST_BREAK: |
17618 | return _("NT_S390_LAST_BREAK (s390 last breaking event address)"); | |
17619 | case NT_S390_SYSTEM_CALL: | |
17620 | return _("NT_S390_SYSTEM_CALL (s390 system call restart data)"); | |
abb3f6cc NC |
17621 | case NT_S390_TDB: |
17622 | return _("NT_S390_TDB (s390 transaction diagnostic block)"); | |
4ef9f41a AA |
17623 | case NT_S390_VXRS_LOW: |
17624 | return _("NT_S390_VXRS_LOW (s390 vector registers 0-15 upper half)"); | |
17625 | case NT_S390_VXRS_HIGH: | |
17626 | return _("NT_S390_VXRS_HIGH (s390 vector registers 16-31)"); | |
88ab90e8 AA |
17627 | case NT_S390_GS_CB: |
17628 | return _("NT_S390_GS_CB (s390 guarded-storage registers)"); | |
17629 | case NT_S390_GS_BC: | |
17630 | return _("NT_S390_GS_BC (s390 guarded-storage broadcast control)"); | |
faa9a424 UW |
17631 | case NT_ARM_VFP: |
17632 | return _("NT_ARM_VFP (arm VFP registers)"); | |
652451f8 YZ |
17633 | case NT_ARM_TLS: |
17634 | return _("NT_ARM_TLS (AArch TLS registers)"); | |
17635 | case NT_ARM_HW_BREAK: | |
17636 | return _("NT_ARM_HW_BREAK (AArch hardware breakpoint registers)"); | |
17637 | case NT_ARM_HW_WATCH: | |
17638 | return _("NT_ARM_HW_WATCH (AArch hardware watchpoint registers)"); | |
57346661 | 17639 | case NT_PSTATUS: |
1ec5cd37 | 17640 | return _("NT_PSTATUS (pstatus structure)"); |
57346661 | 17641 | case NT_FPREGS: |
1ec5cd37 | 17642 | return _("NT_FPREGS (floating point registers)"); |
57346661 | 17643 | case NT_PSINFO: |
1ec5cd37 | 17644 | return _("NT_PSINFO (psinfo structure)"); |
57346661 | 17645 | case NT_LWPSTATUS: |
1ec5cd37 | 17646 | return _("NT_LWPSTATUS (lwpstatus_t structure)"); |
57346661 | 17647 | case NT_LWPSINFO: |
1ec5cd37 | 17648 | return _("NT_LWPSINFO (lwpsinfo_t structure)"); |
57346661 | 17649 | case NT_WIN32PSTATUS: |
1ec5cd37 | 17650 | return _("NT_WIN32PSTATUS (win32_pstatus structure)"); |
9ece1fa9 TT |
17651 | case NT_SIGINFO: |
17652 | return _("NT_SIGINFO (siginfo_t data)"); | |
17653 | case NT_FILE: | |
17654 | return _("NT_FILE (mapped files)"); | |
1ec5cd37 NC |
17655 | default: |
17656 | break; | |
17657 | } | |
17658 | else | |
17659 | switch (e_type) | |
17660 | { | |
17661 | case NT_VERSION: | |
17662 | return _("NT_VERSION (version)"); | |
17663 | case NT_ARCH: | |
17664 | return _("NT_ARCH (architecture)"); | |
9ef920e9 | 17665 | case NT_GNU_BUILD_ATTRIBUTE_OPEN: |
6f156d7a | 17666 | return _("OPEN"); |
9ef920e9 | 17667 | case NT_GNU_BUILD_ATTRIBUTE_FUNC: |
6f156d7a | 17668 | return _("func"); |
1ec5cd37 NC |
17669 | default: |
17670 | break; | |
17671 | } | |
17672 | ||
e9e44622 | 17673 | snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type); |
1ec5cd37 | 17674 | return buff; |
779fe533 NC |
17675 | } |
17676 | ||
32ec8896 | 17677 | static bfd_boolean |
9ece1fa9 TT |
17678 | print_core_note (Elf_Internal_Note *pnote) |
17679 | { | |
17680 | unsigned int addr_size = is_32bit_elf ? 4 : 8; | |
17681 | bfd_vma count, page_size; | |
17682 | unsigned char *descdata, *filenames, *descend; | |
17683 | ||
17684 | if (pnote->type != NT_FILE) | |
04ac15ab AS |
17685 | { |
17686 | if (do_wide) | |
17687 | printf ("\n"); | |
17688 | return TRUE; | |
17689 | } | |
9ece1fa9 TT |
17690 | |
17691 | #ifndef BFD64 | |
17692 | if (!is_32bit_elf) | |
17693 | { | |
17694 | printf (_(" Cannot decode 64-bit note in 32-bit build\n")); | |
17695 | /* Still "successful". */ | |
32ec8896 | 17696 | return TRUE; |
9ece1fa9 TT |
17697 | } |
17698 | #endif | |
17699 | ||
17700 | if (pnote->descsz < 2 * addr_size) | |
17701 | { | |
32ec8896 NC |
17702 | error (_(" Malformed note - too short for header\n")); |
17703 | return FALSE; | |
9ece1fa9 TT |
17704 | } |
17705 | ||
17706 | descdata = (unsigned char *) pnote->descdata; | |
17707 | descend = descdata + pnote->descsz; | |
17708 | ||
17709 | if (descdata[pnote->descsz - 1] != '\0') | |
17710 | { | |
32ec8896 NC |
17711 | error (_(" Malformed note - does not end with \\0\n")); |
17712 | return FALSE; | |
9ece1fa9 TT |
17713 | } |
17714 | ||
17715 | count = byte_get (descdata, addr_size); | |
17716 | descdata += addr_size; | |
17717 | ||
17718 | page_size = byte_get (descdata, addr_size); | |
17719 | descdata += addr_size; | |
17720 | ||
5396a86e AM |
17721 | if (count > ((bfd_vma) -1 - 2 * addr_size) / (3 * addr_size) |
17722 | || pnote->descsz < 2 * addr_size + count * 3 * addr_size) | |
9ece1fa9 | 17723 | { |
32ec8896 NC |
17724 | error (_(" Malformed note - too short for supplied file count\n")); |
17725 | return FALSE; | |
9ece1fa9 TT |
17726 | } |
17727 | ||
17728 | printf (_(" Page size: ")); | |
17729 | print_vma (page_size, DEC); | |
17730 | printf ("\n"); | |
17731 | ||
17732 | printf (_(" %*s%*s%*s\n"), | |
17733 | (int) (2 + 2 * addr_size), _("Start"), | |
17734 | (int) (4 + 2 * addr_size), _("End"), | |
17735 | (int) (4 + 2 * addr_size), _("Page Offset")); | |
17736 | filenames = descdata + count * 3 * addr_size; | |
595712bb | 17737 | while (count-- > 0) |
9ece1fa9 TT |
17738 | { |
17739 | bfd_vma start, end, file_ofs; | |
17740 | ||
17741 | if (filenames == descend) | |
17742 | { | |
32ec8896 NC |
17743 | error (_(" Malformed note - filenames end too early\n")); |
17744 | return FALSE; | |
9ece1fa9 TT |
17745 | } |
17746 | ||
17747 | start = byte_get (descdata, addr_size); | |
17748 | descdata += addr_size; | |
17749 | end = byte_get (descdata, addr_size); | |
17750 | descdata += addr_size; | |
17751 | file_ofs = byte_get (descdata, addr_size); | |
17752 | descdata += addr_size; | |
17753 | ||
17754 | printf (" "); | |
17755 | print_vma (start, FULL_HEX); | |
17756 | printf (" "); | |
17757 | print_vma (end, FULL_HEX); | |
17758 | printf (" "); | |
17759 | print_vma (file_ofs, FULL_HEX); | |
17760 | printf ("\n %s\n", filenames); | |
17761 | ||
17762 | filenames += 1 + strlen ((char *) filenames); | |
17763 | } | |
17764 | ||
32ec8896 | 17765 | return TRUE; |
9ece1fa9 TT |
17766 | } |
17767 | ||
1118d252 RM |
17768 | static const char * |
17769 | get_gnu_elf_note_type (unsigned e_type) | |
17770 | { | |
1449284b | 17771 | /* NB/ Keep this switch statement in sync with print_gnu_note (). */ |
1118d252 RM |
17772 | switch (e_type) |
17773 | { | |
17774 | case NT_GNU_ABI_TAG: | |
17775 | return _("NT_GNU_ABI_TAG (ABI version tag)"); | |
17776 | case NT_GNU_HWCAP: | |
17777 | return _("NT_GNU_HWCAP (DSO-supplied software HWCAP info)"); | |
17778 | case NT_GNU_BUILD_ID: | |
17779 | return _("NT_GNU_BUILD_ID (unique build ID bitstring)"); | |
0297aed6 DM |
17780 | case NT_GNU_GOLD_VERSION: |
17781 | return _("NT_GNU_GOLD_VERSION (gold version)"); | |
9ef920e9 NC |
17782 | case NT_GNU_PROPERTY_TYPE_0: |
17783 | return _("NT_GNU_PROPERTY_TYPE_0"); | |
17784 | case NT_GNU_BUILD_ATTRIBUTE_OPEN: | |
17785 | return _("NT_GNU_BUILD_ATTRIBUTE_OPEN"); | |
17786 | case NT_GNU_BUILD_ATTRIBUTE_FUNC: | |
17787 | return _("NT_GNU_BUILD_ATTRIBUTE_FUNC"); | |
1118d252 | 17788 | default: |
1449284b NC |
17789 | { |
17790 | static char buff[64]; | |
1118d252 | 17791 | |
1449284b NC |
17792 | snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type); |
17793 | return buff; | |
17794 | } | |
17795 | } | |
1118d252 RM |
17796 | } |
17797 | ||
a9eafb08 L |
17798 | static void |
17799 | decode_x86_compat_isa (unsigned int bitmask) | |
17800 | { | |
17801 | while (bitmask) | |
17802 | { | |
17803 | unsigned int bit = bitmask & (- bitmask); | |
17804 | ||
17805 | bitmask &= ~ bit; | |
17806 | switch (bit) | |
17807 | { | |
17808 | case GNU_PROPERTY_X86_COMPAT_ISA_1_486: | |
17809 | printf ("i486"); | |
17810 | break; | |
17811 | case GNU_PROPERTY_X86_COMPAT_ISA_1_586: | |
17812 | printf ("586"); | |
17813 | break; | |
17814 | case GNU_PROPERTY_X86_COMPAT_ISA_1_686: | |
17815 | printf ("686"); | |
17816 | break; | |
17817 | case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE: | |
17818 | printf ("SSE"); | |
17819 | break; | |
17820 | case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE2: | |
17821 | printf ("SSE2"); | |
17822 | break; | |
17823 | case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE3: | |
17824 | printf ("SSE3"); | |
17825 | break; | |
17826 | case GNU_PROPERTY_X86_COMPAT_ISA_1_SSSE3: | |
17827 | printf ("SSSE3"); | |
17828 | break; | |
17829 | case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE4_1: | |
17830 | printf ("SSE4_1"); | |
17831 | break; | |
17832 | case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE4_2: | |
17833 | printf ("SSE4_2"); | |
17834 | break; | |
17835 | case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX: | |
17836 | printf ("AVX"); | |
17837 | break; | |
17838 | case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX2: | |
17839 | printf ("AVX2"); | |
17840 | break; | |
17841 | case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512F: | |
17842 | printf ("AVX512F"); | |
17843 | break; | |
17844 | case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512CD: | |
17845 | printf ("AVX512CD"); | |
17846 | break; | |
17847 | case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512ER: | |
17848 | printf ("AVX512ER"); | |
17849 | break; | |
17850 | case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512PF: | |
17851 | printf ("AVX512PF"); | |
17852 | break; | |
17853 | case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512VL: | |
17854 | printf ("AVX512VL"); | |
17855 | break; | |
17856 | case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512DQ: | |
17857 | printf ("AVX512DQ"); | |
17858 | break; | |
17859 | case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512BW: | |
17860 | printf ("AVX512BW"); | |
17861 | break; | |
65b3d26e L |
17862 | default: |
17863 | printf (_("<unknown: %x>"), bit); | |
17864 | break; | |
a9eafb08 L |
17865 | } |
17866 | if (bitmask) | |
17867 | printf (", "); | |
17868 | } | |
17869 | } | |
17870 | ||
9ef920e9 | 17871 | static void |
1fc87489 | 17872 | decode_x86_isa (unsigned int bitmask) |
9ef920e9 | 17873 | { |
0a59decb | 17874 | if (!bitmask) |
90c745dc L |
17875 | { |
17876 | printf (_("<None>")); | |
17877 | return; | |
17878 | } | |
90c745dc | 17879 | |
9ef920e9 NC |
17880 | while (bitmask) |
17881 | { | |
1fc87489 | 17882 | unsigned int bit = bitmask & (- bitmask); |
9ef920e9 NC |
17883 | |
17884 | bitmask &= ~ bit; | |
17885 | switch (bit) | |
17886 | { | |
a9eafb08 L |
17887 | case GNU_PROPERTY_X86_ISA_1_CMOV: |
17888 | printf ("CMOV"); | |
17889 | break; | |
17890 | case GNU_PROPERTY_X86_ISA_1_SSE: | |
17891 | printf ("SSE"); | |
17892 | break; | |
17893 | case GNU_PROPERTY_X86_ISA_1_SSE2: | |
17894 | printf ("SSE2"); | |
17895 | break; | |
17896 | case GNU_PROPERTY_X86_ISA_1_SSE3: | |
17897 | printf ("SSE3"); | |
17898 | break; | |
17899 | case GNU_PROPERTY_X86_ISA_1_SSSE3: | |
17900 | printf ("SSSE3"); | |
17901 | break; | |
17902 | case GNU_PROPERTY_X86_ISA_1_SSE4_1: | |
17903 | printf ("SSE4_1"); | |
17904 | break; | |
17905 | case GNU_PROPERTY_X86_ISA_1_SSE4_2: | |
17906 | printf ("SSE4_2"); | |
17907 | break; | |
17908 | case GNU_PROPERTY_X86_ISA_1_AVX: | |
17909 | printf ("AVX"); | |
17910 | break; | |
17911 | case GNU_PROPERTY_X86_ISA_1_AVX2: | |
17912 | printf ("AVX2"); | |
17913 | break; | |
17914 | case GNU_PROPERTY_X86_ISA_1_FMA: | |
17915 | printf ("FMA"); | |
17916 | break; | |
17917 | case GNU_PROPERTY_X86_ISA_1_AVX512F: | |
17918 | printf ("AVX512F"); | |
17919 | break; | |
17920 | case GNU_PROPERTY_X86_ISA_1_AVX512CD: | |
17921 | printf ("AVX512CD"); | |
17922 | break; | |
17923 | case GNU_PROPERTY_X86_ISA_1_AVX512ER: | |
17924 | printf ("AVX512ER"); | |
17925 | break; | |
17926 | case GNU_PROPERTY_X86_ISA_1_AVX512PF: | |
17927 | printf ("AVX512PF"); | |
17928 | break; | |
17929 | case GNU_PROPERTY_X86_ISA_1_AVX512VL: | |
17930 | printf ("AVX512VL"); | |
17931 | break; | |
17932 | case GNU_PROPERTY_X86_ISA_1_AVX512DQ: | |
17933 | printf ("AVX512DQ"); | |
17934 | break; | |
17935 | case GNU_PROPERTY_X86_ISA_1_AVX512BW: | |
17936 | printf ("AVX512BW"); | |
17937 | break; | |
17938 | case GNU_PROPERTY_X86_ISA_1_AVX512_4FMAPS: | |
17939 | printf ("AVX512_4FMAPS"); | |
17940 | break; | |
17941 | case GNU_PROPERTY_X86_ISA_1_AVX512_4VNNIW: | |
17942 | printf ("AVX512_4VNNIW"); | |
17943 | break; | |
17944 | case GNU_PROPERTY_X86_ISA_1_AVX512_BITALG: | |
17945 | printf ("AVX512_BITALG"); | |
17946 | break; | |
17947 | case GNU_PROPERTY_X86_ISA_1_AVX512_IFMA: | |
17948 | printf ("AVX512_IFMA"); | |
17949 | break; | |
17950 | case GNU_PROPERTY_X86_ISA_1_AVX512_VBMI: | |
17951 | printf ("AVX512_VBMI"); | |
17952 | break; | |
17953 | case GNU_PROPERTY_X86_ISA_1_AVX512_VBMI2: | |
17954 | printf ("AVX512_VBMI2"); | |
17955 | break; | |
17956 | case GNU_PROPERTY_X86_ISA_1_AVX512_VNNI: | |
17957 | printf ("AVX512_VNNI"); | |
17958 | break; | |
462cac58 L |
17959 | case GNU_PROPERTY_X86_ISA_1_AVX512_BF16: |
17960 | printf ("AVX512_BF16"); | |
17961 | break; | |
65b3d26e L |
17962 | default: |
17963 | printf (_("<unknown: %x>"), bit); | |
17964 | break; | |
9ef920e9 NC |
17965 | } |
17966 | if (bitmask) | |
17967 | printf (", "); | |
17968 | } | |
17969 | } | |
17970 | ||
ee2fdd6f | 17971 | static void |
a9eafb08 | 17972 | decode_x86_feature_1 (unsigned int bitmask) |
ee2fdd6f | 17973 | { |
0a59decb | 17974 | if (!bitmask) |
90c745dc L |
17975 | { |
17976 | printf (_("<None>")); | |
17977 | return; | |
17978 | } | |
90c745dc | 17979 | |
ee2fdd6f L |
17980 | while (bitmask) |
17981 | { | |
17982 | unsigned int bit = bitmask & (- bitmask); | |
17983 | ||
17984 | bitmask &= ~ bit; | |
17985 | switch (bit) | |
17986 | { | |
17987 | case GNU_PROPERTY_X86_FEATURE_1_IBT: | |
a9eafb08 | 17988 | printf ("IBT"); |
ee2fdd6f | 17989 | break; |
48580982 | 17990 | case GNU_PROPERTY_X86_FEATURE_1_SHSTK: |
a9eafb08 | 17991 | printf ("SHSTK"); |
48580982 | 17992 | break; |
ee2fdd6f L |
17993 | default: |
17994 | printf (_("<unknown: %x>"), bit); | |
17995 | break; | |
17996 | } | |
17997 | if (bitmask) | |
17998 | printf (", "); | |
17999 | } | |
18000 | } | |
18001 | ||
a9eafb08 L |
18002 | static void |
18003 | decode_x86_feature_2 (unsigned int bitmask) | |
18004 | { | |
0a59decb | 18005 | if (!bitmask) |
90c745dc L |
18006 | { |
18007 | printf (_("<None>")); | |
18008 | return; | |
18009 | } | |
90c745dc | 18010 | |
a9eafb08 L |
18011 | while (bitmask) |
18012 | { | |
18013 | unsigned int bit = bitmask & (- bitmask); | |
18014 | ||
18015 | bitmask &= ~ bit; | |
18016 | switch (bit) | |
18017 | { | |
18018 | case GNU_PROPERTY_X86_FEATURE_2_X86: | |
18019 | printf ("x86"); | |
18020 | break; | |
18021 | case GNU_PROPERTY_X86_FEATURE_2_X87: | |
18022 | printf ("x87"); | |
18023 | break; | |
18024 | case GNU_PROPERTY_X86_FEATURE_2_MMX: | |
18025 | printf ("MMX"); | |
18026 | break; | |
18027 | case GNU_PROPERTY_X86_FEATURE_2_XMM: | |
18028 | printf ("XMM"); | |
18029 | break; | |
18030 | case GNU_PROPERTY_X86_FEATURE_2_YMM: | |
18031 | printf ("YMM"); | |
18032 | break; | |
18033 | case GNU_PROPERTY_X86_FEATURE_2_ZMM: | |
18034 | printf ("ZMM"); | |
18035 | break; | |
18036 | case GNU_PROPERTY_X86_FEATURE_2_FXSR: | |
18037 | printf ("FXSR"); | |
18038 | break; | |
18039 | case GNU_PROPERTY_X86_FEATURE_2_XSAVE: | |
18040 | printf ("XSAVE"); | |
18041 | break; | |
18042 | case GNU_PROPERTY_X86_FEATURE_2_XSAVEOPT: | |
18043 | printf ("XSAVEOPT"); | |
18044 | break; | |
18045 | case GNU_PROPERTY_X86_FEATURE_2_XSAVEC: | |
18046 | printf ("XSAVEC"); | |
18047 | break; | |
65b3d26e L |
18048 | default: |
18049 | printf (_("<unknown: %x>"), bit); | |
18050 | break; | |
a9eafb08 L |
18051 | } |
18052 | if (bitmask) | |
18053 | printf (", "); | |
18054 | } | |
18055 | } | |
18056 | ||
cd702818 SD |
18057 | static void |
18058 | decode_aarch64_feature_1_and (unsigned int bitmask) | |
18059 | { | |
18060 | while (bitmask) | |
18061 | { | |
18062 | unsigned int bit = bitmask & (- bitmask); | |
18063 | ||
18064 | bitmask &= ~ bit; | |
18065 | switch (bit) | |
18066 | { | |
18067 | case GNU_PROPERTY_AARCH64_FEATURE_1_BTI: | |
18068 | printf ("BTI"); | |
18069 | break; | |
18070 | ||
18071 | case GNU_PROPERTY_AARCH64_FEATURE_1_PAC: | |
18072 | printf ("PAC"); | |
18073 | break; | |
18074 | ||
18075 | default: | |
18076 | printf (_("<unknown: %x>"), bit); | |
18077 | break; | |
18078 | } | |
18079 | if (bitmask) | |
18080 | printf (", "); | |
18081 | } | |
18082 | } | |
18083 | ||
9ef920e9 | 18084 | static void |
dda8d76d | 18085 | print_gnu_property_note (Filedata * filedata, Elf_Internal_Note * pnote) |
9ef920e9 NC |
18086 | { |
18087 | unsigned char * ptr = (unsigned char *) pnote->descdata; | |
18088 | unsigned char * ptr_end = ptr + pnote->descsz; | |
18089 | unsigned int size = is_32bit_elf ? 4 : 8; | |
18090 | ||
18091 | printf (_(" Properties: ")); | |
18092 | ||
1fc87489 | 18093 | if (pnote->descsz < 8 || (pnote->descsz % size) != 0) |
9ef920e9 NC |
18094 | { |
18095 | printf (_("<corrupt GNU_PROPERTY_TYPE, size = %#lx>\n"), pnote->descsz); | |
18096 | return; | |
18097 | } | |
18098 | ||
6ab2c4ed | 18099 | while (ptr < ptr_end) |
9ef920e9 | 18100 | { |
1fc87489 | 18101 | unsigned int j; |
6ab2c4ed MC |
18102 | unsigned int type; |
18103 | unsigned int datasz; | |
18104 | ||
18105 | if ((size_t) (ptr_end - ptr) < 8) | |
18106 | { | |
18107 | printf (_("<corrupt descsz: %#lx>\n"), pnote->descsz); | |
18108 | break; | |
18109 | } | |
18110 | ||
18111 | type = byte_get (ptr, 4); | |
18112 | datasz = byte_get (ptr + 4, 4); | |
9ef920e9 | 18113 | |
1fc87489 | 18114 | ptr += 8; |
9ef920e9 | 18115 | |
6ab2c4ed | 18116 | if (datasz > (size_t) (ptr_end - ptr)) |
9ef920e9 | 18117 | { |
1fc87489 L |
18118 | printf (_("<corrupt type (%#x) datasz: %#x>\n"), |
18119 | type, datasz); | |
9ef920e9 | 18120 | break; |
1fc87489 | 18121 | } |
9ef920e9 | 18122 | |
1fc87489 L |
18123 | if (type >= GNU_PROPERTY_LOPROC && type <= GNU_PROPERTY_HIPROC) |
18124 | { | |
dda8d76d NC |
18125 | if (filedata->file_header.e_machine == EM_X86_64 |
18126 | || filedata->file_header.e_machine == EM_IAMCU | |
18127 | || filedata->file_header.e_machine == EM_386) | |
1fc87489 | 18128 | { |
aa7bca9b L |
18129 | unsigned int bitmask; |
18130 | ||
18131 | if (datasz == 4) | |
0a59decb | 18132 | bitmask = byte_get (ptr, 4); |
aa7bca9b L |
18133 | else |
18134 | bitmask = 0; | |
18135 | ||
1fc87489 L |
18136 | switch (type) |
18137 | { | |
18138 | case GNU_PROPERTY_X86_ISA_1_USED: | |
1fc87489 | 18139 | if (datasz != 4) |
aa7bca9b L |
18140 | printf (_("x86 ISA used: <corrupt length: %#x> "), |
18141 | datasz); | |
1fc87489 | 18142 | else |
aa7bca9b L |
18143 | { |
18144 | printf ("x86 ISA used: "); | |
18145 | decode_x86_isa (bitmask); | |
18146 | } | |
1fc87489 | 18147 | goto next; |
9ef920e9 | 18148 | |
1fc87489 | 18149 | case GNU_PROPERTY_X86_ISA_1_NEEDED: |
1fc87489 | 18150 | if (datasz != 4) |
aa7bca9b L |
18151 | printf (_("x86 ISA needed: <corrupt length: %#x> "), |
18152 | datasz); | |
1fc87489 | 18153 | else |
aa7bca9b L |
18154 | { |
18155 | printf ("x86 ISA needed: "); | |
18156 | decode_x86_isa (bitmask); | |
18157 | } | |
1fc87489 | 18158 | goto next; |
9ef920e9 | 18159 | |
ee2fdd6f | 18160 | case GNU_PROPERTY_X86_FEATURE_1_AND: |
ee2fdd6f | 18161 | if (datasz != 4) |
aa7bca9b L |
18162 | printf (_("x86 feature: <corrupt length: %#x> "), |
18163 | datasz); | |
ee2fdd6f | 18164 | else |
aa7bca9b L |
18165 | { |
18166 | printf ("x86 feature: "); | |
a9eafb08 L |
18167 | decode_x86_feature_1 (bitmask); |
18168 | } | |
18169 | goto next; | |
18170 | ||
18171 | case GNU_PROPERTY_X86_FEATURE_2_USED: | |
18172 | if (datasz != 4) | |
18173 | printf (_("x86 feature used: <corrupt length: %#x> "), | |
18174 | datasz); | |
18175 | else | |
18176 | { | |
18177 | printf ("x86 feature used: "); | |
18178 | decode_x86_feature_2 (bitmask); | |
18179 | } | |
18180 | goto next; | |
18181 | ||
18182 | case GNU_PROPERTY_X86_FEATURE_2_NEEDED: | |
18183 | if (datasz != 4) | |
18184 | printf (_("x86 feature needed: <corrupt length: %#x> "), datasz); | |
18185 | else | |
18186 | { | |
18187 | printf ("x86 feature needed: "); | |
18188 | decode_x86_feature_2 (bitmask); | |
18189 | } | |
18190 | goto next; | |
18191 | ||
18192 | case GNU_PROPERTY_X86_COMPAT_ISA_1_USED: | |
18193 | if (datasz != 4) | |
18194 | printf (_("x86 ISA used: <corrupt length: %#x> "), | |
18195 | datasz); | |
18196 | else | |
18197 | { | |
18198 | printf ("x86 ISA used: "); | |
18199 | decode_x86_compat_isa (bitmask); | |
18200 | } | |
18201 | goto next; | |
18202 | ||
18203 | case GNU_PROPERTY_X86_COMPAT_ISA_1_NEEDED: | |
18204 | if (datasz != 4) | |
18205 | printf (_("x86 ISA needed: <corrupt length: %#x> "), | |
18206 | datasz); | |
18207 | else | |
18208 | { | |
18209 | printf ("x86 ISA needed: "); | |
18210 | decode_x86_compat_isa (bitmask); | |
aa7bca9b | 18211 | } |
ee2fdd6f L |
18212 | goto next; |
18213 | ||
1fc87489 L |
18214 | default: |
18215 | break; | |
18216 | } | |
18217 | } | |
cd702818 SD |
18218 | else if (filedata->file_header.e_machine == EM_AARCH64) |
18219 | { | |
18220 | if (type == GNU_PROPERTY_AARCH64_FEATURE_1_AND) | |
18221 | { | |
18222 | printf ("AArch64 feature: "); | |
18223 | if (datasz != 4) | |
18224 | printf (_("<corrupt length: %#x> "), datasz); | |
18225 | else | |
18226 | decode_aarch64_feature_1_and (byte_get (ptr, 4)); | |
18227 | goto next; | |
18228 | } | |
18229 | } | |
1fc87489 L |
18230 | } |
18231 | else | |
18232 | { | |
18233 | switch (type) | |
9ef920e9 | 18234 | { |
1fc87489 L |
18235 | case GNU_PROPERTY_STACK_SIZE: |
18236 | printf (_("stack size: ")); | |
18237 | if (datasz != size) | |
18238 | printf (_("<corrupt length: %#x> "), datasz); | |
18239 | else | |
18240 | printf ("%#lx", (unsigned long) byte_get (ptr, size)); | |
18241 | goto next; | |
18242 | ||
18243 | case GNU_PROPERTY_NO_COPY_ON_PROTECTED: | |
18244 | printf ("no copy on protected "); | |
18245 | if (datasz) | |
18246 | printf (_("<corrupt length: %#x> "), datasz); | |
18247 | goto next; | |
18248 | ||
18249 | default: | |
9ef920e9 NC |
18250 | break; |
18251 | } | |
9ef920e9 NC |
18252 | } |
18253 | ||
1fc87489 L |
18254 | if (type < GNU_PROPERTY_LOPROC) |
18255 | printf (_("<unknown type %#x data: "), type); | |
18256 | else if (type < GNU_PROPERTY_LOUSER) | |
18257 | printf (_("<procesor-specific type %#x data: "), type); | |
18258 | else | |
18259 | printf (_("<application-specific type %#x data: "), type); | |
18260 | for (j = 0; j < datasz; ++j) | |
18261 | printf ("%02x ", ptr[j] & 0xff); | |
18262 | printf (">"); | |
18263 | ||
dc1e8a47 | 18264 | next: |
9ef920e9 | 18265 | ptr += ((datasz + (size - 1)) & ~ (size - 1)); |
1fc87489 L |
18266 | if (ptr == ptr_end) |
18267 | break; | |
1fc87489 | 18268 | |
6ab2c4ed MC |
18269 | if (do_wide) |
18270 | printf (", "); | |
18271 | else | |
18272 | printf ("\n\t"); | |
9ef920e9 NC |
18273 | } |
18274 | ||
18275 | printf ("\n"); | |
18276 | } | |
18277 | ||
32ec8896 | 18278 | static bfd_boolean |
dda8d76d | 18279 | print_gnu_note (Filedata * filedata, Elf_Internal_Note *pnote) |
664f90a3 | 18280 | { |
1449284b | 18281 | /* NB/ Keep this switch statement in sync with get_gnu_elf_note_type (). */ |
664f90a3 TT |
18282 | switch (pnote->type) |
18283 | { | |
18284 | case NT_GNU_BUILD_ID: | |
18285 | { | |
18286 | unsigned long i; | |
18287 | ||
18288 | printf (_(" Build ID: ")); | |
18289 | for (i = 0; i < pnote->descsz; ++i) | |
18290 | printf ("%02x", pnote->descdata[i] & 0xff); | |
9cf03b7e | 18291 | printf ("\n"); |
664f90a3 TT |
18292 | } |
18293 | break; | |
18294 | ||
18295 | case NT_GNU_ABI_TAG: | |
18296 | { | |
18297 | unsigned long os, major, minor, subminor; | |
18298 | const char *osname; | |
18299 | ||
3102e897 NC |
18300 | /* PR 17531: file: 030-599401-0.004. */ |
18301 | if (pnote->descsz < 16) | |
18302 | { | |
18303 | printf (_(" <corrupt GNU_ABI_TAG>\n")); | |
18304 | break; | |
18305 | } | |
18306 | ||
664f90a3 TT |
18307 | os = byte_get ((unsigned char *) pnote->descdata, 4); |
18308 | major = byte_get ((unsigned char *) pnote->descdata + 4, 4); | |
18309 | minor = byte_get ((unsigned char *) pnote->descdata + 8, 4); | |
18310 | subminor = byte_get ((unsigned char *) pnote->descdata + 12, 4); | |
18311 | ||
18312 | switch (os) | |
18313 | { | |
18314 | case GNU_ABI_TAG_LINUX: | |
18315 | osname = "Linux"; | |
18316 | break; | |
18317 | case GNU_ABI_TAG_HURD: | |
18318 | osname = "Hurd"; | |
18319 | break; | |
18320 | case GNU_ABI_TAG_SOLARIS: | |
18321 | osname = "Solaris"; | |
18322 | break; | |
18323 | case GNU_ABI_TAG_FREEBSD: | |
18324 | osname = "FreeBSD"; | |
18325 | break; | |
18326 | case GNU_ABI_TAG_NETBSD: | |
18327 | osname = "NetBSD"; | |
18328 | break; | |
14ae95f2 RM |
18329 | case GNU_ABI_TAG_SYLLABLE: |
18330 | osname = "Syllable"; | |
18331 | break; | |
18332 | case GNU_ABI_TAG_NACL: | |
18333 | osname = "NaCl"; | |
18334 | break; | |
664f90a3 TT |
18335 | default: |
18336 | osname = "Unknown"; | |
18337 | break; | |
18338 | } | |
18339 | ||
18340 | printf (_(" OS: %s, ABI: %ld.%ld.%ld\n"), osname, | |
18341 | major, minor, subminor); | |
18342 | } | |
18343 | break; | |
926c5385 CC |
18344 | |
18345 | case NT_GNU_GOLD_VERSION: | |
18346 | { | |
18347 | unsigned long i; | |
18348 | ||
18349 | printf (_(" Version: ")); | |
18350 | for (i = 0; i < pnote->descsz && pnote->descdata[i] != '\0'; ++i) | |
18351 | printf ("%c", pnote->descdata[i]); | |
18352 | printf ("\n"); | |
18353 | } | |
18354 | break; | |
1449284b NC |
18355 | |
18356 | case NT_GNU_HWCAP: | |
18357 | { | |
18358 | unsigned long num_entries, mask; | |
18359 | ||
18360 | /* Hardware capabilities information. Word 0 is the number of entries. | |
18361 | Word 1 is a bitmask of enabled entries. The rest of the descriptor | |
18362 | is a series of entries, where each entry is a single byte followed | |
18363 | by a nul terminated string. The byte gives the bit number to test | |
18364 | if enabled in the bitmask. */ | |
18365 | printf (_(" Hardware Capabilities: ")); | |
18366 | if (pnote->descsz < 8) | |
18367 | { | |
32ec8896 NC |
18368 | error (_("<corrupt GNU_HWCAP>\n")); |
18369 | return FALSE; | |
1449284b NC |
18370 | } |
18371 | num_entries = byte_get ((unsigned char *) pnote->descdata, 4); | |
18372 | mask = byte_get ((unsigned char *) pnote->descdata + 4, 4); | |
18373 | printf (_("num entries: %ld, enabled mask: %lx\n"), num_entries, mask); | |
18374 | /* FIXME: Add code to display the entries... */ | |
18375 | } | |
18376 | break; | |
18377 | ||
9ef920e9 | 18378 | case NT_GNU_PROPERTY_TYPE_0: |
dda8d76d | 18379 | print_gnu_property_note (filedata, pnote); |
9ef920e9 | 18380 | break; |
9abca702 | 18381 | |
1449284b NC |
18382 | default: |
18383 | /* Handle unrecognised types. An error message should have already been | |
18384 | created by get_gnu_elf_note_type(), so all that we need to do is to | |
18385 | display the data. */ | |
18386 | { | |
18387 | unsigned long i; | |
18388 | ||
18389 | printf (_(" Description data: ")); | |
18390 | for (i = 0; i < pnote->descsz; ++i) | |
18391 | printf ("%02x ", pnote->descdata[i] & 0xff); | |
18392 | printf ("\n"); | |
18393 | } | |
18394 | break; | |
664f90a3 TT |
18395 | } |
18396 | ||
32ec8896 | 18397 | return TRUE; |
664f90a3 TT |
18398 | } |
18399 | ||
685080f2 NC |
18400 | static const char * |
18401 | get_v850_elf_note_type (enum v850_notes n_type) | |
18402 | { | |
18403 | static char buff[64]; | |
18404 | ||
18405 | switch (n_type) | |
18406 | { | |
18407 | case V850_NOTE_ALIGNMENT: return _("Alignment of 8-byte objects"); | |
18408 | case V850_NOTE_DATA_SIZE: return _("Sizeof double and long double"); | |
18409 | case V850_NOTE_FPU_INFO: return _("Type of FPU support needed"); | |
18410 | case V850_NOTE_SIMD_INFO: return _("Use of SIMD instructions"); | |
18411 | case V850_NOTE_CACHE_INFO: return _("Use of cache"); | |
18412 | case V850_NOTE_MMU_INFO: return _("Use of MMU"); | |
18413 | default: | |
18414 | snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), n_type); | |
18415 | return buff; | |
18416 | } | |
18417 | } | |
18418 | ||
32ec8896 | 18419 | static bfd_boolean |
685080f2 NC |
18420 | print_v850_note (Elf_Internal_Note * pnote) |
18421 | { | |
18422 | unsigned int val; | |
18423 | ||
18424 | if (pnote->descsz != 4) | |
32ec8896 NC |
18425 | return FALSE; |
18426 | ||
685080f2 NC |
18427 | val = byte_get ((unsigned char *) pnote->descdata, pnote->descsz); |
18428 | ||
18429 | if (val == 0) | |
18430 | { | |
18431 | printf (_("not set\n")); | |
32ec8896 | 18432 | return TRUE; |
685080f2 NC |
18433 | } |
18434 | ||
18435 | switch (pnote->type) | |
18436 | { | |
18437 | case V850_NOTE_ALIGNMENT: | |
18438 | switch (val) | |
18439 | { | |
32ec8896 NC |
18440 | case EF_RH850_DATA_ALIGN4: printf (_("4-byte\n")); return TRUE; |
18441 | case EF_RH850_DATA_ALIGN8: printf (_("8-byte\n")); return TRUE; | |
685080f2 NC |
18442 | } |
18443 | break; | |
14ae95f2 | 18444 | |
685080f2 NC |
18445 | case V850_NOTE_DATA_SIZE: |
18446 | switch (val) | |
18447 | { | |
32ec8896 NC |
18448 | case EF_RH850_DOUBLE32: printf (_("4-bytes\n")); return TRUE; |
18449 | case EF_RH850_DOUBLE64: printf (_("8-bytes\n")); return TRUE; | |
685080f2 NC |
18450 | } |
18451 | break; | |
14ae95f2 | 18452 | |
685080f2 NC |
18453 | case V850_NOTE_FPU_INFO: |
18454 | switch (val) | |
18455 | { | |
32ec8896 NC |
18456 | case EF_RH850_FPU20: printf (_("FPU-2.0\n")); return TRUE; |
18457 | case EF_RH850_FPU30: printf (_("FPU-3.0\n")); return TRUE; | |
685080f2 NC |
18458 | } |
18459 | break; | |
14ae95f2 | 18460 | |
685080f2 NC |
18461 | case V850_NOTE_MMU_INFO: |
18462 | case V850_NOTE_CACHE_INFO: | |
18463 | case V850_NOTE_SIMD_INFO: | |
18464 | if (val == EF_RH850_SIMD) | |
18465 | { | |
18466 | printf (_("yes\n")); | |
32ec8896 | 18467 | return TRUE; |
685080f2 NC |
18468 | } |
18469 | break; | |
18470 | ||
18471 | default: | |
18472 | /* An 'unknown note type' message will already have been displayed. */ | |
18473 | break; | |
18474 | } | |
18475 | ||
18476 | printf (_("unknown value: %x\n"), val); | |
32ec8896 | 18477 | return FALSE; |
685080f2 NC |
18478 | } |
18479 | ||
32ec8896 | 18480 | static bfd_boolean |
c6056a74 SF |
18481 | process_netbsd_elf_note (Elf_Internal_Note * pnote) |
18482 | { | |
18483 | unsigned int version; | |
18484 | ||
18485 | switch (pnote->type) | |
18486 | { | |
18487 | case NT_NETBSD_IDENT: | |
b966f55f AM |
18488 | if (pnote->descsz < 1) |
18489 | break; | |
c6056a74 SF |
18490 | version = byte_get ((unsigned char *) pnote->descdata, sizeof (version)); |
18491 | if ((version / 10000) % 100) | |
b966f55f | 18492 | printf (" NetBSD\t\t0x%08lx\tIDENT %u (%u.%u%s%c)\n", pnote->descsz, |
c6056a74 SF |
18493 | version, version / 100000000, (version / 1000000) % 100, |
18494 | (version / 10000) % 100 > 26 ? "Z" : "", | |
15f205b1 | 18495 | 'A' + (version / 10000) % 26); |
c6056a74 SF |
18496 | else |
18497 | printf (" NetBSD\t\t0x%08lx\tIDENT %u (%u.%u.%u)\n", pnote->descsz, | |
b966f55f | 18498 | version, version / 100000000, (version / 1000000) % 100, |
15f205b1 | 18499 | (version / 100) % 100); |
32ec8896 | 18500 | return TRUE; |
c6056a74 SF |
18501 | |
18502 | case NT_NETBSD_MARCH: | |
9abca702 | 18503 | printf (" NetBSD\t\t0x%08lx\tMARCH <%s>\n", pnote->descsz, |
c6056a74 | 18504 | pnote->descdata); |
32ec8896 | 18505 | return TRUE; |
c6056a74 | 18506 | |
9abca702 CZ |
18507 | #ifdef NT_NETBSD_PAX |
18508 | case NT_NETBSD_PAX: | |
b966f55f AM |
18509 | if (pnote->descsz < 1) |
18510 | break; | |
9abca702 CZ |
18511 | version = byte_get ((unsigned char *) pnote->descdata, sizeof (version)); |
18512 | printf (" NetBSD\t\t0x%08lx\tPaX <%s%s%s%s%s%s>\n", pnote->descsz, | |
18513 | ((version & NT_NETBSD_PAX_MPROTECT) ? "+mprotect" : ""), | |
18514 | ((version & NT_NETBSD_PAX_NOMPROTECT) ? "-mprotect" : ""), | |
18515 | ((version & NT_NETBSD_PAX_GUARD) ? "+guard" : ""), | |
18516 | ((version & NT_NETBSD_PAX_NOGUARD) ? "-guard" : ""), | |
18517 | ((version & NT_NETBSD_PAX_ASLR) ? "+ASLR" : ""), | |
18518 | ((version & NT_NETBSD_PAX_NOASLR) ? "-ASLR" : "")); | |
18519 | return TRUE; | |
18520 | #endif | |
c6056a74 | 18521 | } |
b966f55f AM |
18522 | |
18523 | printf (" NetBSD\t0x%08lx\tUnknown note type: (0x%08lx)\n", | |
18524 | pnote->descsz, pnote->type); | |
18525 | return FALSE; | |
c6056a74 SF |
18526 | } |
18527 | ||
f4ddf30f | 18528 | static const char * |
dda8d76d | 18529 | get_freebsd_elfcore_note_type (Filedata * filedata, unsigned e_type) |
f4ddf30f | 18530 | { |
f4ddf30f JB |
18531 | switch (e_type) |
18532 | { | |
18533 | case NT_FREEBSD_THRMISC: | |
18534 | return _("NT_THRMISC (thrmisc structure)"); | |
18535 | case NT_FREEBSD_PROCSTAT_PROC: | |
18536 | return _("NT_PROCSTAT_PROC (proc data)"); | |
18537 | case NT_FREEBSD_PROCSTAT_FILES: | |
18538 | return _("NT_PROCSTAT_FILES (files data)"); | |
18539 | case NT_FREEBSD_PROCSTAT_VMMAP: | |
18540 | return _("NT_PROCSTAT_VMMAP (vmmap data)"); | |
18541 | case NT_FREEBSD_PROCSTAT_GROUPS: | |
18542 | return _("NT_PROCSTAT_GROUPS (groups data)"); | |
18543 | case NT_FREEBSD_PROCSTAT_UMASK: | |
18544 | return _("NT_PROCSTAT_UMASK (umask data)"); | |
18545 | case NT_FREEBSD_PROCSTAT_RLIMIT: | |
18546 | return _("NT_PROCSTAT_RLIMIT (rlimit data)"); | |
18547 | case NT_FREEBSD_PROCSTAT_OSREL: | |
18548 | return _("NT_PROCSTAT_OSREL (osreldate data)"); | |
18549 | case NT_FREEBSD_PROCSTAT_PSSTRINGS: | |
18550 | return _("NT_PROCSTAT_PSSTRINGS (ps_strings data)"); | |
18551 | case NT_FREEBSD_PROCSTAT_AUXV: | |
18552 | return _("NT_PROCSTAT_AUXV (auxv data)"); | |
0b9305ed JB |
18553 | case NT_FREEBSD_PTLWPINFO: |
18554 | return _("NT_PTLWPINFO (ptrace_lwpinfo structure)"); | |
f4ddf30f | 18555 | } |
dda8d76d | 18556 | return get_note_type (filedata, e_type); |
f4ddf30f JB |
18557 | } |
18558 | ||
9437c45b | 18559 | static const char * |
dda8d76d | 18560 | get_netbsd_elfcore_note_type (Filedata * filedata, unsigned e_type) |
9437c45b JT |
18561 | { |
18562 | static char buff[64]; | |
18563 | ||
540e6170 CZ |
18564 | switch (e_type) |
18565 | { | |
18566 | case NT_NETBSDCORE_PROCINFO: | |
18567 | /* NetBSD core "procinfo" structure. */ | |
18568 | return _("NetBSD procinfo structure"); | |
9437c45b | 18569 | |
540e6170 CZ |
18570 | #ifdef NT_NETBSDCORE_AUXV |
18571 | case NT_NETBSDCORE_AUXV: | |
18572 | return _("NetBSD ELF auxiliary vector data"); | |
18573 | #endif | |
9437c45b | 18574 | |
06d949ec KR |
18575 | #ifdef NT_NETBSDCORE_LWPSTATUS |
18576 | case NT_NETBSDCORE_LWPSTATUS: | |
18577 | return _("PT_LWPSTATUS (ptrace_lwpstatus structure)"); | |
18578 | #endif | |
18579 | ||
540e6170 | 18580 | default: |
06d949ec | 18581 | /* As of Jan 2020 there are no other machine-independent notes |
540e6170 CZ |
18582 | defined for NetBSD core files. If the note type is less |
18583 | than the start of the machine-dependent note types, we don't | |
18584 | understand it. */ | |
18585 | ||
18586 | if (e_type < NT_NETBSDCORE_FIRSTMACH) | |
18587 | { | |
18588 | snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type); | |
18589 | return buff; | |
18590 | } | |
18591 | break; | |
9437c45b JT |
18592 | } |
18593 | ||
dda8d76d | 18594 | switch (filedata->file_header.e_machine) |
9437c45b JT |
18595 | { |
18596 | /* On the Alpha, SPARC (32-bit and 64-bit), PT_GETREGS == mach+0 | |
18597 | and PT_GETFPREGS == mach+2. */ | |
18598 | ||
18599 | case EM_OLD_ALPHA: | |
18600 | case EM_ALPHA: | |
18601 | case EM_SPARC: | |
18602 | case EM_SPARC32PLUS: | |
18603 | case EM_SPARCV9: | |
18604 | switch (e_type) | |
18605 | { | |
2b692964 | 18606 | case NT_NETBSDCORE_FIRSTMACH + 0: |
b4db1224 | 18607 | return _("PT_GETREGS (reg structure)"); |
2b692964 | 18608 | case NT_NETBSDCORE_FIRSTMACH + 2: |
b4db1224 | 18609 | return _("PT_GETFPREGS (fpreg structure)"); |
9437c45b JT |
18610 | default: |
18611 | break; | |
18612 | } | |
18613 | break; | |
18614 | ||
c0d38b0e CZ |
18615 | /* On SuperH, PT_GETREGS == mach+3 and PT_GETFPREGS == mach+5. |
18616 | There's also old PT___GETREGS40 == mach + 1 for old reg | |
18617 | structure which lacks GBR. */ | |
18618 | case EM_SH: | |
18619 | switch (e_type) | |
18620 | { | |
18621 | case NT_NETBSDCORE_FIRSTMACH + 1: | |
18622 | return _("PT___GETREGS40 (old reg structure)"); | |
18623 | case NT_NETBSDCORE_FIRSTMACH + 3: | |
18624 | return _("PT_GETREGS (reg structure)"); | |
18625 | case NT_NETBSDCORE_FIRSTMACH + 5: | |
18626 | return _("PT_GETFPREGS (fpreg structure)"); | |
18627 | default: | |
18628 | break; | |
18629 | } | |
18630 | break; | |
18631 | ||
9437c45b JT |
18632 | /* On all other arch's, PT_GETREGS == mach+1 and |
18633 | PT_GETFPREGS == mach+3. */ | |
18634 | default: | |
18635 | switch (e_type) | |
18636 | { | |
2b692964 | 18637 | case NT_NETBSDCORE_FIRSTMACH + 1: |
b4db1224 | 18638 | return _("PT_GETREGS (reg structure)"); |
2b692964 | 18639 | case NT_NETBSDCORE_FIRSTMACH + 3: |
b4db1224 | 18640 | return _("PT_GETFPREGS (fpreg structure)"); |
9437c45b JT |
18641 | default: |
18642 | break; | |
18643 | } | |
18644 | } | |
18645 | ||
9cf03b7e | 18646 | snprintf (buff, sizeof (buff), "PT_FIRSTMACH+%d", |
e9e44622 | 18647 | e_type - NT_NETBSDCORE_FIRSTMACH); |
9437c45b JT |
18648 | return buff; |
18649 | } | |
18650 | ||
70616151 TT |
18651 | static const char * |
18652 | get_stapsdt_note_type (unsigned e_type) | |
18653 | { | |
18654 | static char buff[64]; | |
18655 | ||
18656 | switch (e_type) | |
18657 | { | |
18658 | case NT_STAPSDT: | |
18659 | return _("NT_STAPSDT (SystemTap probe descriptors)"); | |
18660 | ||
18661 | default: | |
18662 | break; | |
18663 | } | |
18664 | ||
18665 | snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type); | |
18666 | return buff; | |
18667 | } | |
18668 | ||
32ec8896 | 18669 | static bfd_boolean |
c6a9fc58 TT |
18670 | print_stapsdt_note (Elf_Internal_Note *pnote) |
18671 | { | |
3ca60c57 NC |
18672 | size_t len, maxlen; |
18673 | unsigned long addr_size = is_32bit_elf ? 4 : 8; | |
c6a9fc58 TT |
18674 | char *data = pnote->descdata; |
18675 | char *data_end = pnote->descdata + pnote->descsz; | |
18676 | bfd_vma pc, base_addr, semaphore; | |
18677 | char *provider, *probe, *arg_fmt; | |
18678 | ||
3ca60c57 NC |
18679 | if (pnote->descsz < (addr_size * 3)) |
18680 | goto stapdt_note_too_small; | |
18681 | ||
c6a9fc58 TT |
18682 | pc = byte_get ((unsigned char *) data, addr_size); |
18683 | data += addr_size; | |
3ca60c57 | 18684 | |
c6a9fc58 TT |
18685 | base_addr = byte_get ((unsigned char *) data, addr_size); |
18686 | data += addr_size; | |
3ca60c57 | 18687 | |
c6a9fc58 TT |
18688 | semaphore = byte_get ((unsigned char *) data, addr_size); |
18689 | data += addr_size; | |
18690 | ||
3ca60c57 NC |
18691 | if (data >= data_end) |
18692 | goto stapdt_note_too_small; | |
18693 | maxlen = data_end - data; | |
18694 | len = strnlen (data, maxlen); | |
18695 | if (len < maxlen) | |
18696 | { | |
18697 | provider = data; | |
18698 | data += len + 1; | |
18699 | } | |
18700 | else | |
18701 | goto stapdt_note_too_small; | |
18702 | ||
18703 | if (data >= data_end) | |
18704 | goto stapdt_note_too_small; | |
18705 | maxlen = data_end - data; | |
18706 | len = strnlen (data, maxlen); | |
18707 | if (len < maxlen) | |
18708 | { | |
18709 | probe = data; | |
18710 | data += len + 1; | |
18711 | } | |
18712 | else | |
18713 | goto stapdt_note_too_small; | |
9abca702 | 18714 | |
3ca60c57 NC |
18715 | if (data >= data_end) |
18716 | goto stapdt_note_too_small; | |
18717 | maxlen = data_end - data; | |
18718 | len = strnlen (data, maxlen); | |
18719 | if (len < maxlen) | |
18720 | { | |
18721 | arg_fmt = data; | |
18722 | data += len + 1; | |
18723 | } | |
18724 | else | |
18725 | goto stapdt_note_too_small; | |
c6a9fc58 TT |
18726 | |
18727 | printf (_(" Provider: %s\n"), provider); | |
18728 | printf (_(" Name: %s\n"), probe); | |
18729 | printf (_(" Location: ")); | |
18730 | print_vma (pc, FULL_HEX); | |
18731 | printf (_(", Base: ")); | |
18732 | print_vma (base_addr, FULL_HEX); | |
18733 | printf (_(", Semaphore: ")); | |
18734 | print_vma (semaphore, FULL_HEX); | |
9cf03b7e | 18735 | printf ("\n"); |
c6a9fc58 TT |
18736 | printf (_(" Arguments: %s\n"), arg_fmt); |
18737 | ||
18738 | return data == data_end; | |
3ca60c57 NC |
18739 | |
18740 | stapdt_note_too_small: | |
18741 | printf (_(" <corrupt - note is too small>\n")); | |
18742 | error (_("corrupt stapdt note - the data size is too small\n")); | |
18743 | return FALSE; | |
c6a9fc58 TT |
18744 | } |
18745 | ||
00e98fc7 TG |
18746 | static const char * |
18747 | get_ia64_vms_note_type (unsigned e_type) | |
18748 | { | |
18749 | static char buff[64]; | |
18750 | ||
18751 | switch (e_type) | |
18752 | { | |
18753 | case NT_VMS_MHD: | |
18754 | return _("NT_VMS_MHD (module header)"); | |
18755 | case NT_VMS_LNM: | |
18756 | return _("NT_VMS_LNM (language name)"); | |
18757 | case NT_VMS_SRC: | |
18758 | return _("NT_VMS_SRC (source files)"); | |
18759 | case NT_VMS_TITLE: | |
9cf03b7e | 18760 | return "NT_VMS_TITLE"; |
00e98fc7 TG |
18761 | case NT_VMS_EIDC: |
18762 | return _("NT_VMS_EIDC (consistency check)"); | |
18763 | case NT_VMS_FPMODE: | |
18764 | return _("NT_VMS_FPMODE (FP mode)"); | |
18765 | case NT_VMS_LINKTIME: | |
9cf03b7e | 18766 | return "NT_VMS_LINKTIME"; |
00e98fc7 TG |
18767 | case NT_VMS_IMGNAM: |
18768 | return _("NT_VMS_IMGNAM (image name)"); | |
18769 | case NT_VMS_IMGID: | |
18770 | return _("NT_VMS_IMGID (image id)"); | |
18771 | case NT_VMS_LINKID: | |
18772 | return _("NT_VMS_LINKID (link id)"); | |
18773 | case NT_VMS_IMGBID: | |
18774 | return _("NT_VMS_IMGBID (build id)"); | |
18775 | case NT_VMS_GSTNAM: | |
18776 | return _("NT_VMS_GSTNAM (sym table name)"); | |
18777 | case NT_VMS_ORIG_DYN: | |
9cf03b7e | 18778 | return "NT_VMS_ORIG_DYN"; |
00e98fc7 | 18779 | case NT_VMS_PATCHTIME: |
9cf03b7e | 18780 | return "NT_VMS_PATCHTIME"; |
00e98fc7 TG |
18781 | default: |
18782 | snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type); | |
18783 | return buff; | |
18784 | } | |
18785 | } | |
18786 | ||
32ec8896 | 18787 | static bfd_boolean |
00e98fc7 TG |
18788 | print_ia64_vms_note (Elf_Internal_Note * pnote) |
18789 | { | |
8d18bf79 NC |
18790 | int maxlen = pnote->descsz; |
18791 | ||
18792 | if (maxlen < 2 || (unsigned long) maxlen != pnote->descsz) | |
18793 | goto desc_size_fail; | |
18794 | ||
00e98fc7 TG |
18795 | switch (pnote->type) |
18796 | { | |
18797 | case NT_VMS_MHD: | |
8d18bf79 NC |
18798 | if (maxlen <= 36) |
18799 | goto desc_size_fail; | |
18800 | ||
18801 | int l = (int) strnlen (pnote->descdata + 34, maxlen - 34); | |
18802 | ||
18803 | printf (_(" Creation date : %.17s\n"), pnote->descdata); | |
18804 | printf (_(" Last patch date: %.17s\n"), pnote->descdata + 17); | |
18805 | if (l + 34 < maxlen) | |
18806 | { | |
18807 | printf (_(" Module name : %s\n"), pnote->descdata + 34); | |
18808 | if (l + 35 < maxlen) | |
18809 | printf (_(" Module version : %s\n"), pnote->descdata + 34 + l + 1); | |
18810 | else | |
18811 | printf (_(" Module version : <missing>\n")); | |
18812 | } | |
00e98fc7 | 18813 | else |
8d18bf79 NC |
18814 | { |
18815 | printf (_(" Module name : <missing>\n")); | |
18816 | printf (_(" Module version : <missing>\n")); | |
18817 | } | |
00e98fc7 | 18818 | break; |
8d18bf79 | 18819 | |
00e98fc7 | 18820 | case NT_VMS_LNM: |
8d18bf79 | 18821 | printf (_(" Language: %.*s\n"), maxlen, pnote->descdata); |
00e98fc7 | 18822 | break; |
8d18bf79 | 18823 | |
00e98fc7 TG |
18824 | #ifdef BFD64 |
18825 | case NT_VMS_FPMODE: | |
9cf03b7e | 18826 | printf (_(" Floating Point mode: ")); |
8d18bf79 NC |
18827 | if (maxlen < 8) |
18828 | goto desc_size_fail; | |
18829 | /* FIXME: Generate an error if descsz > 8 ? */ | |
18830 | ||
4a5cb34f | 18831 | printf ("0x%016" BFD_VMA_FMT "x\n", |
8d18bf79 | 18832 | (bfd_vma) byte_get ((unsigned char *)pnote->descdata, 8)); |
00e98fc7 | 18833 | break; |
8d18bf79 | 18834 | |
00e98fc7 TG |
18835 | case NT_VMS_LINKTIME: |
18836 | printf (_(" Link time: ")); | |
8d18bf79 NC |
18837 | if (maxlen < 8) |
18838 | goto desc_size_fail; | |
18839 | /* FIXME: Generate an error if descsz > 8 ? */ | |
18840 | ||
00e98fc7 | 18841 | print_vms_time |
8d18bf79 | 18842 | ((bfd_int64_t) byte_get ((unsigned char *)pnote->descdata, 8)); |
00e98fc7 TG |
18843 | printf ("\n"); |
18844 | break; | |
8d18bf79 | 18845 | |
00e98fc7 TG |
18846 | case NT_VMS_PATCHTIME: |
18847 | printf (_(" Patch time: ")); | |
8d18bf79 NC |
18848 | if (maxlen < 8) |
18849 | goto desc_size_fail; | |
18850 | /* FIXME: Generate an error if descsz > 8 ? */ | |
18851 | ||
00e98fc7 | 18852 | print_vms_time |
8d18bf79 | 18853 | ((bfd_int64_t) byte_get ((unsigned char *)pnote->descdata, 8)); |
00e98fc7 TG |
18854 | printf ("\n"); |
18855 | break; | |
8d18bf79 | 18856 | |
00e98fc7 | 18857 | case NT_VMS_ORIG_DYN: |
8d18bf79 NC |
18858 | if (maxlen < 34) |
18859 | goto desc_size_fail; | |
18860 | ||
00e98fc7 TG |
18861 | printf (_(" Major id: %u, minor id: %u\n"), |
18862 | (unsigned) byte_get ((unsigned char *)pnote->descdata, 4), | |
18863 | (unsigned) byte_get ((unsigned char *)pnote->descdata + 4, 4)); | |
9cf03b7e | 18864 | printf (_(" Last modified : ")); |
00e98fc7 TG |
18865 | print_vms_time |
18866 | ((bfd_int64_t) byte_get ((unsigned char *)pnote->descdata + 8, 8)); | |
9cf03b7e | 18867 | printf (_("\n Link flags : ")); |
4a5cb34f | 18868 | printf ("0x%016" BFD_VMA_FMT "x\n", |
948f632f | 18869 | (bfd_vma) byte_get ((unsigned char *)pnote->descdata + 16, 8)); |
00e98fc7 | 18870 | printf (_(" Header flags: 0x%08x\n"), |
948f632f | 18871 | (unsigned) byte_get ((unsigned char *)pnote->descdata + 24, 4)); |
8d18bf79 | 18872 | printf (_(" Image id : %.*s\n"), maxlen - 32, pnote->descdata + 32); |
00e98fc7 TG |
18873 | break; |
18874 | #endif | |
8d18bf79 | 18875 | |
00e98fc7 | 18876 | case NT_VMS_IMGNAM: |
8d18bf79 | 18877 | printf (_(" Image name: %.*s\n"), maxlen, pnote->descdata); |
00e98fc7 | 18878 | break; |
8d18bf79 | 18879 | |
00e98fc7 | 18880 | case NT_VMS_GSTNAM: |
8d18bf79 | 18881 | printf (_(" Global symbol table name: %.*s\n"), maxlen, pnote->descdata); |
00e98fc7 | 18882 | break; |
8d18bf79 | 18883 | |
00e98fc7 | 18884 | case NT_VMS_IMGID: |
8d18bf79 | 18885 | printf (_(" Image id: %.*s\n"), maxlen, pnote->descdata); |
00e98fc7 | 18886 | break; |
8d18bf79 | 18887 | |
00e98fc7 | 18888 | case NT_VMS_LINKID: |
8d18bf79 | 18889 | printf (_(" Linker id: %.*s\n"), maxlen, pnote->descdata); |
00e98fc7 | 18890 | break; |
8d18bf79 | 18891 | |
00e98fc7 | 18892 | default: |
32ec8896 | 18893 | return FALSE; |
00e98fc7 | 18894 | } |
8d18bf79 | 18895 | |
32ec8896 | 18896 | return TRUE; |
8d18bf79 NC |
18897 | |
18898 | desc_size_fail: | |
18899 | printf (_(" <corrupt - data size is too small>\n")); | |
18900 | error (_("corrupt IA64 note: data size is too small\n")); | |
18901 | return FALSE; | |
00e98fc7 TG |
18902 | } |
18903 | ||
fd486f32 AM |
18904 | struct build_attr_cache { |
18905 | Filedata *filedata; | |
18906 | char *strtab; | |
18907 | unsigned long strtablen; | |
18908 | Elf_Internal_Sym *symtab; | |
18909 | unsigned long nsyms; | |
18910 | } ba_cache; | |
18911 | ||
6f156d7a NC |
18912 | /* Find the symbol associated with a build attribute that is attached |
18913 | to address OFFSET. If PNAME is non-NULL then store the name of | |
18914 | the symbol (if found) in the provided pointer, Returns NULL if a | |
18915 | symbol could not be found. */ | |
c799a79d | 18916 | |
6f156d7a NC |
18917 | static Elf_Internal_Sym * |
18918 | get_symbol_for_build_attribute (Filedata * filedata, | |
18919 | unsigned long offset, | |
18920 | bfd_boolean is_open_attr, | |
18921 | const char ** pname) | |
9ef920e9 | 18922 | { |
fd486f32 AM |
18923 | Elf_Internal_Sym *saved_sym = NULL; |
18924 | Elf_Internal_Sym *sym; | |
9ef920e9 | 18925 | |
dda8d76d | 18926 | if (filedata->section_headers != NULL |
fd486f32 | 18927 | && (ba_cache.filedata == NULL || filedata != ba_cache.filedata)) |
9ef920e9 | 18928 | { |
c799a79d | 18929 | Elf_Internal_Shdr * symsec; |
9ef920e9 | 18930 | |
fd486f32 AM |
18931 | free (ba_cache.strtab); |
18932 | ba_cache.strtab = NULL; | |
18933 | free (ba_cache.symtab); | |
18934 | ba_cache.symtab = NULL; | |
18935 | ||
c799a79d | 18936 | /* Load the symbol and string sections. */ |
dda8d76d NC |
18937 | for (symsec = filedata->section_headers; |
18938 | symsec < filedata->section_headers + filedata->file_header.e_shnum; | |
c799a79d | 18939 | symsec ++) |
9ef920e9 | 18940 | { |
28d13567 AM |
18941 | if (symsec->sh_type == SHT_SYMTAB |
18942 | && get_symtab (filedata, symsec, | |
18943 | &ba_cache.symtab, &ba_cache.nsyms, | |
18944 | &ba_cache.strtab, &ba_cache.strtablen)) | |
18945 | break; | |
9ef920e9 | 18946 | } |
fd486f32 | 18947 | ba_cache.filedata = filedata; |
9ef920e9 NC |
18948 | } |
18949 | ||
fd486f32 | 18950 | if (ba_cache.symtab == NULL) |
6f156d7a | 18951 | return NULL; |
9ef920e9 | 18952 | |
c799a79d | 18953 | /* Find a symbol whose value matches offset. */ |
fd486f32 | 18954 | for (sym = ba_cache.symtab; sym < ba_cache.symtab + ba_cache.nsyms; sym ++) |
c799a79d NC |
18955 | if (sym->st_value == offset) |
18956 | { | |
fd486f32 | 18957 | if (sym->st_name >= ba_cache.strtablen) |
c799a79d NC |
18958 | /* Huh ? This should not happen. */ |
18959 | continue; | |
9ef920e9 | 18960 | |
fd486f32 | 18961 | if (ba_cache.strtab[sym->st_name] == 0) |
c799a79d | 18962 | continue; |
9ef920e9 | 18963 | |
8fd75781 NC |
18964 | /* The AArch64 and ARM architectures define mapping symbols |
18965 | (eg $d, $x, $t) which we want to ignore. */ | |
fd486f32 AM |
18966 | if (ba_cache.strtab[sym->st_name] == '$' |
18967 | && ba_cache.strtab[sym->st_name + 1] != 0 | |
18968 | && ba_cache.strtab[sym->st_name + 2] == 0) | |
8fd75781 NC |
18969 | continue; |
18970 | ||
c799a79d NC |
18971 | if (is_open_attr) |
18972 | { | |
18973 | /* For OPEN attributes we prefer GLOBAL over LOCAL symbols | |
18974 | and FILE or OBJECT symbols over NOTYPE symbols. We skip | |
18975 | FUNC symbols entirely. */ | |
18976 | switch (ELF_ST_TYPE (sym->st_info)) | |
18977 | { | |
c799a79d | 18978 | case STT_OBJECT: |
6f156d7a | 18979 | case STT_FILE: |
c799a79d | 18980 | saved_sym = sym; |
6f156d7a NC |
18981 | if (sym->st_size) |
18982 | { | |
18983 | /* If the symbol has a size associated | |
18984 | with it then we can stop searching. */ | |
fd486f32 | 18985 | sym = ba_cache.symtab + ba_cache.nsyms; |
6f156d7a | 18986 | } |
c799a79d | 18987 | continue; |
9ef920e9 | 18988 | |
c799a79d NC |
18989 | case STT_FUNC: |
18990 | /* Ignore function symbols. */ | |
18991 | continue; | |
18992 | ||
18993 | default: | |
18994 | break; | |
18995 | } | |
18996 | ||
18997 | switch (ELF_ST_BIND (sym->st_info)) | |
9ef920e9 | 18998 | { |
c799a79d NC |
18999 | case STB_GLOBAL: |
19000 | if (saved_sym == NULL | |
19001 | || ELF_ST_TYPE (saved_sym->st_info) != STT_OBJECT) | |
19002 | saved_sym = sym; | |
19003 | break; | |
c871dade | 19004 | |
c799a79d NC |
19005 | case STB_LOCAL: |
19006 | if (saved_sym == NULL) | |
19007 | saved_sym = sym; | |
19008 | break; | |
19009 | ||
19010 | default: | |
9ef920e9 NC |
19011 | break; |
19012 | } | |
19013 | } | |
c799a79d NC |
19014 | else |
19015 | { | |
19016 | if (ELF_ST_TYPE (sym->st_info) != STT_FUNC) | |
19017 | continue; | |
19018 | ||
19019 | saved_sym = sym; | |
19020 | break; | |
19021 | } | |
19022 | } | |
19023 | ||
6f156d7a | 19024 | if (saved_sym && pname) |
fd486f32 | 19025 | * pname = ba_cache.strtab + saved_sym->st_name; |
6f156d7a NC |
19026 | |
19027 | return saved_sym; | |
c799a79d NC |
19028 | } |
19029 | ||
d20e98ab NC |
19030 | /* Returns true iff addr1 and addr2 are in the same section. */ |
19031 | ||
19032 | static bfd_boolean | |
19033 | same_section (Filedata * filedata, unsigned long addr1, unsigned long addr2) | |
19034 | { | |
19035 | Elf_Internal_Shdr * a1; | |
19036 | Elf_Internal_Shdr * a2; | |
19037 | ||
19038 | a1 = find_section_by_address (filedata, addr1); | |
19039 | a2 = find_section_by_address (filedata, addr2); | |
9abca702 | 19040 | |
d20e98ab NC |
19041 | return a1 == a2 && a1 != NULL; |
19042 | } | |
19043 | ||
c799a79d | 19044 | static bfd_boolean |
dda8d76d NC |
19045 | print_gnu_build_attribute_description (Elf_Internal_Note * pnote, |
19046 | Filedata * filedata) | |
c799a79d | 19047 | { |
6f156d7a NC |
19048 | static unsigned long global_offset = 0; |
19049 | static unsigned long global_end = 0; | |
19050 | static unsigned long func_offset = 0; | |
19051 | static unsigned long func_end = 0; | |
c871dade | 19052 | |
6f156d7a NC |
19053 | Elf_Internal_Sym * sym; |
19054 | const char * name; | |
19055 | unsigned long start; | |
19056 | unsigned long end; | |
19057 | bfd_boolean is_open_attr = pnote->type == NT_GNU_BUILD_ATTRIBUTE_OPEN; | |
19058 | ||
19059 | switch (pnote->descsz) | |
c799a79d | 19060 | { |
6f156d7a NC |
19061 | case 0: |
19062 | /* A zero-length description means that the range of | |
19063 | the previous note of the same type should be used. */ | |
c799a79d | 19064 | if (is_open_attr) |
c871dade | 19065 | { |
6f156d7a NC |
19066 | if (global_end > global_offset) |
19067 | printf (_(" Applies to region from %#lx to %#lx\n"), | |
19068 | global_offset, global_end); | |
19069 | else | |
19070 | printf (_(" Applies to region from %#lx\n"), global_offset); | |
c799a79d NC |
19071 | } |
19072 | else | |
19073 | { | |
6f156d7a NC |
19074 | if (func_end > func_offset) |
19075 | printf (_(" Applies to region from %#lx to %#lx\n"), func_offset, func_end); | |
19076 | else | |
19077 | printf (_(" Applies to region from %#lx\n"), func_offset); | |
c871dade | 19078 | } |
6f156d7a | 19079 | return TRUE; |
9ef920e9 | 19080 | |
6f156d7a NC |
19081 | case 4: |
19082 | start = byte_get ((unsigned char *) pnote->descdata, 4); | |
19083 | end = 0; | |
19084 | break; | |
19085 | ||
19086 | case 8: | |
19087 | if (is_32bit_elf) | |
19088 | { | |
19089 | /* FIXME: We should check that version 3+ notes are being used here... */ | |
19090 | start = byte_get ((unsigned char *) pnote->descdata, 4); | |
19091 | end = byte_get ((unsigned char *) pnote->descdata + 4, 4); | |
19092 | } | |
19093 | else | |
19094 | { | |
19095 | start = byte_get ((unsigned char *) pnote->descdata, 8); | |
19096 | end = 0; | |
19097 | } | |
19098 | break; | |
19099 | ||
19100 | case 16: | |
19101 | start = byte_get ((unsigned char *) pnote->descdata, 8); | |
19102 | end = byte_get ((unsigned char *) pnote->descdata + 8, 8); | |
19103 | break; | |
9abca702 | 19104 | |
6f156d7a | 19105 | default: |
c799a79d NC |
19106 | error (_(" <invalid description size: %lx>\n"), pnote->descsz); |
19107 | printf (_(" <invalid descsz>")); | |
19108 | return FALSE; | |
19109 | } | |
19110 | ||
6f156d7a NC |
19111 | name = NULL; |
19112 | sym = get_symbol_for_build_attribute (filedata, start, is_open_attr, & name); | |
8fd75781 NC |
19113 | /* As of version 5 of the annobin plugin, filename symbols are biased by 2 |
19114 | in order to avoid them being confused with the start address of the | |
19115 | first function in the file... */ | |
19116 | if (sym == NULL && is_open_attr) | |
19117 | sym = get_symbol_for_build_attribute (filedata, start + 2, is_open_attr, | |
19118 | & name); | |
6f156d7a NC |
19119 | |
19120 | if (end == 0 && sym != NULL && sym->st_size > 0) | |
19121 | end = start + sym->st_size; | |
c799a79d NC |
19122 | |
19123 | if (is_open_attr) | |
19124 | { | |
d20e98ab NC |
19125 | /* FIXME: Need to properly allow for section alignment. |
19126 | 16 is just the alignment used on x86_64. */ | |
19127 | if (global_end > 0 | |
19128 | && start > BFD_ALIGN (global_end, 16) | |
19129 | /* Build notes are not guaranteed to be organised in order of | |
19130 | increasing address, but we should find the all of the notes | |
19131 | for one section in the same place. */ | |
19132 | && same_section (filedata, start, global_end)) | |
6f156d7a NC |
19133 | warn (_("Gap in build notes detected from %#lx to %#lx\n"), |
19134 | global_end + 1, start - 1); | |
19135 | ||
19136 | printf (_(" Applies to region from %#lx"), start); | |
19137 | global_offset = start; | |
19138 | ||
19139 | if (end) | |
19140 | { | |
19141 | printf (_(" to %#lx"), end); | |
19142 | global_end = end; | |
19143 | } | |
c799a79d NC |
19144 | } |
19145 | else | |
19146 | { | |
6f156d7a NC |
19147 | printf (_(" Applies to region from %#lx"), start); |
19148 | func_offset = start; | |
19149 | ||
19150 | if (end) | |
19151 | { | |
19152 | printf (_(" to %#lx"), end); | |
19153 | func_end = end; | |
19154 | } | |
c799a79d NC |
19155 | } |
19156 | ||
6f156d7a NC |
19157 | if (sym && name) |
19158 | printf (_(" (%s)"), name); | |
19159 | ||
19160 | printf ("\n"); | |
19161 | return TRUE; | |
9ef920e9 NC |
19162 | } |
19163 | ||
19164 | static bfd_boolean | |
19165 | print_gnu_build_attribute_name (Elf_Internal_Note * pnote) | |
19166 | { | |
1d15e434 NC |
19167 | static const char string_expected [2] = { GNU_BUILD_ATTRIBUTE_TYPE_STRING, 0 }; |
19168 | static const char number_expected [2] = { GNU_BUILD_ATTRIBUTE_TYPE_NUMERIC, 0 }; | |
19169 | static const char bool_expected [3] = { GNU_BUILD_ATTRIBUTE_TYPE_BOOL_TRUE, GNU_BUILD_ATTRIBUTE_TYPE_BOOL_FALSE, 0 }; | |
9ef920e9 NC |
19170 | char name_type; |
19171 | char name_attribute; | |
1d15e434 | 19172 | const char * expected_types; |
9ef920e9 NC |
19173 | const char * name = pnote->namedata; |
19174 | const char * text; | |
88305e1b | 19175 | signed int left; |
9ef920e9 NC |
19176 | |
19177 | if (name == NULL || pnote->namesz < 2) | |
19178 | { | |
19179 | error (_("corrupt name field in GNU build attribute note: size = %ld\n"), pnote->namesz); | |
7296a62a | 19180 | print_symbol (-20, _(" <corrupt name>")); |
9ef920e9 NC |
19181 | return FALSE; |
19182 | } | |
19183 | ||
6f156d7a NC |
19184 | if (do_wide) |
19185 | left = 28; | |
19186 | else | |
19187 | left = 20; | |
88305e1b NC |
19188 | |
19189 | /* Version 2 of the spec adds a "GA" prefix to the name field. */ | |
19190 | if (name[0] == 'G' && name[1] == 'A') | |
19191 | { | |
6f156d7a NC |
19192 | if (pnote->namesz < 4) |
19193 | { | |
19194 | error (_("corrupt name field in GNU build attribute note: size = %ld\n"), pnote->namesz); | |
19195 | print_symbol (-20, _(" <corrupt name>")); | |
19196 | return FALSE; | |
19197 | } | |
19198 | ||
88305e1b NC |
19199 | printf ("GA"); |
19200 | name += 2; | |
19201 | left -= 2; | |
19202 | } | |
19203 | ||
9ef920e9 NC |
19204 | switch ((name_type = * name)) |
19205 | { | |
19206 | case GNU_BUILD_ATTRIBUTE_TYPE_NUMERIC: | |
19207 | case GNU_BUILD_ATTRIBUTE_TYPE_STRING: | |
19208 | case GNU_BUILD_ATTRIBUTE_TYPE_BOOL_TRUE: | |
19209 | case GNU_BUILD_ATTRIBUTE_TYPE_BOOL_FALSE: | |
19210 | printf ("%c", * name); | |
88305e1b | 19211 | left --; |
9ef920e9 NC |
19212 | break; |
19213 | default: | |
19214 | error (_("unrecognised attribute type in name field: %d\n"), name_type); | |
19215 | print_symbol (-20, _("<unknown name type>")); | |
19216 | return FALSE; | |
19217 | } | |
19218 | ||
9ef920e9 NC |
19219 | ++ name; |
19220 | text = NULL; | |
19221 | ||
19222 | switch ((name_attribute = * name)) | |
19223 | { | |
19224 | case GNU_BUILD_ATTRIBUTE_VERSION: | |
19225 | text = _("<version>"); | |
1d15e434 | 19226 | expected_types = string_expected; |
9ef920e9 NC |
19227 | ++ name; |
19228 | break; | |
19229 | case GNU_BUILD_ATTRIBUTE_STACK_PROT: | |
19230 | text = _("<stack prot>"); | |
75d7d298 | 19231 | expected_types = "!+*"; |
9ef920e9 NC |
19232 | ++ name; |
19233 | break; | |
19234 | case GNU_BUILD_ATTRIBUTE_RELRO: | |
19235 | text = _("<relro>"); | |
1d15e434 | 19236 | expected_types = bool_expected; |
9ef920e9 NC |
19237 | ++ name; |
19238 | break; | |
19239 | case GNU_BUILD_ATTRIBUTE_STACK_SIZE: | |
19240 | text = _("<stack size>"); | |
1d15e434 | 19241 | expected_types = number_expected; |
9ef920e9 NC |
19242 | ++ name; |
19243 | break; | |
19244 | case GNU_BUILD_ATTRIBUTE_TOOL: | |
19245 | text = _("<tool>"); | |
1d15e434 | 19246 | expected_types = string_expected; |
9ef920e9 NC |
19247 | ++ name; |
19248 | break; | |
19249 | case GNU_BUILD_ATTRIBUTE_ABI: | |
19250 | text = _("<ABI>"); | |
19251 | expected_types = "$*"; | |
19252 | ++ name; | |
19253 | break; | |
19254 | case GNU_BUILD_ATTRIBUTE_PIC: | |
19255 | text = _("<PIC>"); | |
1d15e434 | 19256 | expected_types = number_expected; |
9ef920e9 NC |
19257 | ++ name; |
19258 | break; | |
a8be5506 NC |
19259 | case GNU_BUILD_ATTRIBUTE_SHORT_ENUM: |
19260 | text = _("<short enum>"); | |
1d15e434 | 19261 | expected_types = bool_expected; |
a8be5506 NC |
19262 | ++ name; |
19263 | break; | |
9ef920e9 NC |
19264 | default: |
19265 | if (ISPRINT (* name)) | |
19266 | { | |
19267 | int len = strnlen (name, pnote->namesz - (name - pnote->namedata)) + 1; | |
19268 | ||
19269 | if (len > left && ! do_wide) | |
19270 | len = left; | |
75d7d298 | 19271 | printf ("%.*s:", len, name); |
9ef920e9 | 19272 | left -= len; |
0dd6ae21 | 19273 | name += len; |
9ef920e9 NC |
19274 | } |
19275 | else | |
19276 | { | |
3e6b6445 | 19277 | static char tmpbuf [128]; |
88305e1b | 19278 | |
3e6b6445 NC |
19279 | error (_("unrecognised byte in name field: %d\n"), * name); |
19280 | sprintf (tmpbuf, _("<unknown:_%d>"), * name); | |
19281 | text = tmpbuf; | |
19282 | name ++; | |
9ef920e9 NC |
19283 | } |
19284 | expected_types = "*$!+"; | |
19285 | break; | |
19286 | } | |
19287 | ||
19288 | if (text) | |
88305e1b | 19289 | left -= printf ("%s", text); |
9ef920e9 NC |
19290 | |
19291 | if (strchr (expected_types, name_type) == NULL) | |
75d7d298 | 19292 | warn (_("attribute does not have an expected type (%c)\n"), name_type); |
9ef920e9 NC |
19293 | |
19294 | if ((unsigned long)(name - pnote->namedata) > pnote->namesz) | |
19295 | { | |
19296 | error (_("corrupt name field: namesz: %lu but parsing gets to %ld\n"), | |
19297 | (unsigned long) pnote->namesz, | |
19298 | (long) (name - pnote->namedata)); | |
19299 | return FALSE; | |
19300 | } | |
19301 | ||
19302 | if (left < 1 && ! do_wide) | |
19303 | return TRUE; | |
19304 | ||
19305 | switch (name_type) | |
19306 | { | |
19307 | case GNU_BUILD_ATTRIBUTE_TYPE_NUMERIC: | |
19308 | { | |
b06b2c92 | 19309 | unsigned int bytes; |
ddef72cd NC |
19310 | unsigned long long val = 0; |
19311 | unsigned int shift = 0; | |
19312 | char * decoded = NULL; | |
19313 | ||
b06b2c92 NC |
19314 | bytes = pnote->namesz - (name - pnote->namedata); |
19315 | if (bytes > 0) | |
19316 | /* The -1 is because the name field is always 0 terminated, and we | |
19317 | want to be able to ensure that the shift in the while loop below | |
19318 | will not overflow. */ | |
19319 | -- bytes; | |
19320 | ||
ddef72cd NC |
19321 | if (bytes > sizeof (val)) |
19322 | { | |
3e6b6445 NC |
19323 | error (_("corrupt numeric name field: too many bytes in the value: %x\n"), |
19324 | bytes); | |
19325 | bytes = sizeof (val); | |
ddef72cd | 19326 | } |
3e6b6445 NC |
19327 | /* We do not bother to warn if bytes == 0 as this can |
19328 | happen with some early versions of the gcc plugin. */ | |
9ef920e9 NC |
19329 | |
19330 | while (bytes --) | |
19331 | { | |
79a964dc NC |
19332 | unsigned long byte = (* name ++) & 0xff; |
19333 | ||
19334 | val |= byte << shift; | |
9ef920e9 NC |
19335 | shift += 8; |
19336 | } | |
19337 | ||
75d7d298 | 19338 | switch (name_attribute) |
9ef920e9 | 19339 | { |
75d7d298 | 19340 | case GNU_BUILD_ATTRIBUTE_PIC: |
9ef920e9 NC |
19341 | switch (val) |
19342 | { | |
75d7d298 NC |
19343 | case 0: decoded = "static"; break; |
19344 | case 1: decoded = "pic"; break; | |
19345 | case 2: decoded = "PIC"; break; | |
19346 | case 3: decoded = "pie"; break; | |
19347 | case 4: decoded = "PIE"; break; | |
19348 | default: break; | |
9ef920e9 | 19349 | } |
75d7d298 NC |
19350 | break; |
19351 | case GNU_BUILD_ATTRIBUTE_STACK_PROT: | |
19352 | switch (val) | |
9ef920e9 | 19353 | { |
75d7d298 NC |
19354 | /* Based upon the SPCT_FLAG_xxx enum values in gcc/cfgexpand.c. */ |
19355 | case 0: decoded = "off"; break; | |
19356 | case 1: decoded = "on"; break; | |
19357 | case 2: decoded = "all"; break; | |
19358 | case 3: decoded = "strong"; break; | |
19359 | case 4: decoded = "explicit"; break; | |
19360 | default: break; | |
9ef920e9 | 19361 | } |
75d7d298 NC |
19362 | break; |
19363 | default: | |
19364 | break; | |
9ef920e9 NC |
19365 | } |
19366 | ||
75d7d298 | 19367 | if (decoded != NULL) |
3e6b6445 NC |
19368 | { |
19369 | print_symbol (-left, decoded); | |
19370 | left = 0; | |
19371 | } | |
19372 | else if (val == 0) | |
19373 | { | |
19374 | printf ("0x0"); | |
19375 | left -= 3; | |
19376 | } | |
9ef920e9 | 19377 | else |
75d7d298 NC |
19378 | { |
19379 | if (do_wide) | |
ddef72cd | 19380 | left -= printf ("0x%llx", val); |
75d7d298 | 19381 | else |
ddef72cd | 19382 | left -= printf ("0x%-.*llx", left, val); |
75d7d298 | 19383 | } |
9ef920e9 NC |
19384 | } |
19385 | break; | |
19386 | case GNU_BUILD_ATTRIBUTE_TYPE_STRING: | |
19387 | left -= print_symbol (- left, name); | |
19388 | break; | |
19389 | case GNU_BUILD_ATTRIBUTE_TYPE_BOOL_TRUE: | |
19390 | left -= print_symbol (- left, "true"); | |
19391 | break; | |
19392 | case GNU_BUILD_ATTRIBUTE_TYPE_BOOL_FALSE: | |
19393 | left -= print_symbol (- left, "false"); | |
19394 | break; | |
19395 | } | |
19396 | ||
19397 | if (do_wide && left > 0) | |
19398 | printf ("%-*s", left, " "); | |
9abca702 | 19399 | |
9ef920e9 NC |
19400 | return TRUE; |
19401 | } | |
19402 | ||
6d118b09 NC |
19403 | /* Note that by the ELF standard, the name field is already null byte |
19404 | terminated, and namesz includes the terminating null byte. | |
19405 | I.E. the value of namesz for the name "FSF" is 4. | |
19406 | ||
e3c8793a | 19407 | If the value of namesz is zero, there is no name present. */ |
9ef920e9 | 19408 | |
32ec8896 | 19409 | static bfd_boolean |
9ef920e9 | 19410 | process_note (Elf_Internal_Note * pnote, |
dda8d76d | 19411 | Filedata * filedata) |
779fe533 | 19412 | { |
2cf0635d NC |
19413 | const char * name = pnote->namesz ? pnote->namedata : "(NONE)"; |
19414 | const char * nt; | |
9437c45b JT |
19415 | |
19416 | if (pnote->namesz == 0) | |
1ec5cd37 NC |
19417 | /* If there is no note name, then use the default set of |
19418 | note type strings. */ | |
dda8d76d | 19419 | nt = get_note_type (filedata, pnote->type); |
1ec5cd37 | 19420 | |
1118d252 RM |
19421 | else if (const_strneq (pnote->namedata, "GNU")) |
19422 | /* GNU-specific object file notes. */ | |
19423 | nt = get_gnu_elf_note_type (pnote->type); | |
f4ddf30f JB |
19424 | |
19425 | else if (const_strneq (pnote->namedata, "FreeBSD")) | |
19426 | /* FreeBSD-specific core file notes. */ | |
dda8d76d | 19427 | nt = get_freebsd_elfcore_note_type (filedata, pnote->type); |
1118d252 | 19428 | |
0112cd26 | 19429 | else if (const_strneq (pnote->namedata, "NetBSD-CORE")) |
1ec5cd37 | 19430 | /* NetBSD-specific core file notes. */ |
dda8d76d | 19431 | nt = get_netbsd_elfcore_note_type (filedata, pnote->type); |
1ec5cd37 | 19432 | |
c6056a74 SF |
19433 | else if (const_strneq (pnote->namedata, "NetBSD")) |
19434 | /* NetBSD-specific core file notes. */ | |
19435 | return process_netbsd_elf_note (pnote); | |
19436 | ||
9abca702 CZ |
19437 | else if (const_strneq (pnote->namedata, "PaX")) |
19438 | /* NetBSD-specific core file notes. */ | |
19439 | return process_netbsd_elf_note (pnote); | |
19440 | ||
b15fa79e AM |
19441 | else if (strneq (pnote->namedata, "SPU/", 4)) |
19442 | { | |
19443 | /* SPU-specific core file notes. */ | |
19444 | nt = pnote->namedata + 4; | |
19445 | name = "SPU"; | |
19446 | } | |
19447 | ||
00e98fc7 TG |
19448 | else if (const_strneq (pnote->namedata, "IPF/VMS")) |
19449 | /* VMS/ia64-specific file notes. */ | |
19450 | nt = get_ia64_vms_note_type (pnote->type); | |
19451 | ||
70616151 TT |
19452 | else if (const_strneq (pnote->namedata, "stapsdt")) |
19453 | nt = get_stapsdt_note_type (pnote->type); | |
19454 | ||
9437c45b | 19455 | else |
1ec5cd37 NC |
19456 | /* Don't recognize this note name; just use the default set of |
19457 | note type strings. */ | |
dda8d76d | 19458 | nt = get_note_type (filedata, pnote->type); |
9437c45b | 19459 | |
1449284b | 19460 | printf (" "); |
9ef920e9 | 19461 | |
483767a3 AM |
19462 | if (((const_strneq (pnote->namedata, "GA") |
19463 | && strchr ("*$!+", pnote->namedata[2]) != NULL) | |
19464 | || strchr ("*$!+", pnote->namedata[0]) != NULL) | |
19465 | && (pnote->type == NT_GNU_BUILD_ATTRIBUTE_OPEN | |
19466 | || pnote->type == NT_GNU_BUILD_ATTRIBUTE_FUNC)) | |
9ef920e9 NC |
19467 | print_gnu_build_attribute_name (pnote); |
19468 | else | |
19469 | print_symbol (-20, name); | |
19470 | ||
19471 | if (do_wide) | |
19472 | printf (" 0x%08lx\t%s\t", pnote->descsz, nt); | |
19473 | else | |
19474 | printf (" 0x%08lx\t%s\n", pnote->descsz, nt); | |
00e98fc7 TG |
19475 | |
19476 | if (const_strneq (pnote->namedata, "IPF/VMS")) | |
19477 | return print_ia64_vms_note (pnote); | |
664f90a3 | 19478 | else if (const_strneq (pnote->namedata, "GNU")) |
dda8d76d | 19479 | return print_gnu_note (filedata, pnote); |
c6a9fc58 TT |
19480 | else if (const_strneq (pnote->namedata, "stapsdt")) |
19481 | return print_stapsdt_note (pnote); | |
9ece1fa9 TT |
19482 | else if (const_strneq (pnote->namedata, "CORE")) |
19483 | return print_core_note (pnote); | |
483767a3 AM |
19484 | else if (((const_strneq (pnote->namedata, "GA") |
19485 | && strchr ("*$!+", pnote->namedata[2]) != NULL) | |
19486 | || strchr ("*$!+", pnote->namedata[0]) != NULL) | |
19487 | && (pnote->type == NT_GNU_BUILD_ATTRIBUTE_OPEN | |
19488 | || pnote->type == NT_GNU_BUILD_ATTRIBUTE_FUNC)) | |
dda8d76d | 19489 | return print_gnu_build_attribute_description (pnote, filedata); |
779fe533 | 19490 | |
9ef920e9 | 19491 | if (pnote->descsz) |
1449284b NC |
19492 | { |
19493 | unsigned long i; | |
19494 | ||
19495 | printf (_(" description data: ")); | |
19496 | for (i = 0; i < pnote->descsz; i++) | |
178d8719 | 19497 | printf ("%02x ", pnote->descdata[i] & 0xff); |
04ac15ab AS |
19498 | if (!do_wide) |
19499 | printf ("\n"); | |
1449284b NC |
19500 | } |
19501 | ||
9ef920e9 NC |
19502 | if (do_wide) |
19503 | printf ("\n"); | |
19504 | ||
32ec8896 | 19505 | return TRUE; |
1449284b | 19506 | } |
6d118b09 | 19507 | |
32ec8896 | 19508 | static bfd_boolean |
dda8d76d NC |
19509 | process_notes_at (Filedata * filedata, |
19510 | Elf_Internal_Shdr * section, | |
19511 | bfd_vma offset, | |
82ed9683 L |
19512 | bfd_vma length, |
19513 | bfd_vma align) | |
779fe533 | 19514 | { |
2cf0635d NC |
19515 | Elf_External_Note * pnotes; |
19516 | Elf_External_Note * external; | |
4dff97b2 NC |
19517 | char * end; |
19518 | bfd_boolean res = TRUE; | |
103f02d3 | 19519 | |
779fe533 | 19520 | if (length <= 0) |
32ec8896 | 19521 | return FALSE; |
103f02d3 | 19522 | |
1449284b NC |
19523 | if (section) |
19524 | { | |
dda8d76d | 19525 | pnotes = (Elf_External_Note *) get_section_contents (section, filedata); |
1449284b | 19526 | if (pnotes) |
32ec8896 | 19527 | { |
dda8d76d | 19528 | if (! apply_relocations (filedata, section, (unsigned char *) pnotes, length, NULL, NULL)) |
f761cb13 AM |
19529 | { |
19530 | free (pnotes); | |
19531 | return FALSE; | |
19532 | } | |
32ec8896 | 19533 | } |
1449284b NC |
19534 | } |
19535 | else | |
82ed9683 | 19536 | pnotes = (Elf_External_Note *) get_data (NULL, filedata, offset, 1, length, |
1449284b | 19537 | _("notes")); |
4dff97b2 | 19538 | |
dd24e3da | 19539 | if (pnotes == NULL) |
32ec8896 | 19540 | return FALSE; |
779fe533 | 19541 | |
103f02d3 | 19542 | external = pnotes; |
103f02d3 | 19543 | |
1449284b | 19544 | if (section) |
dda8d76d | 19545 | printf (_("\nDisplaying notes found in: %s\n"), printable_section_name (filedata, section)); |
1449284b NC |
19546 | else |
19547 | printf (_("\nDisplaying notes found at file offset 0x%08lx with length 0x%08lx:\n"), | |
19548 | (unsigned long) offset, (unsigned long) length); | |
19549 | ||
82ed9683 L |
19550 | /* NB: Some note sections may have alignment value of 0 or 1. gABI |
19551 | specifies that notes should be aligned to 4 bytes in 32-bit | |
19552 | objects and to 8 bytes in 64-bit objects. As a Linux extension, | |
19553 | we also support 4 byte alignment in 64-bit objects. If section | |
19554 | alignment is less than 4, we treate alignment as 4 bytes. */ | |
19555 | if (align < 4) | |
19556 | align = 4; | |
19557 | else if (align != 4 && align != 8) | |
19558 | { | |
19559 | warn (_("Corrupt note: alignment %ld, expecting 4 or 8\n"), | |
19560 | (long) align); | |
a788aedd | 19561 | free (pnotes); |
82ed9683 L |
19562 | return FALSE; |
19563 | } | |
19564 | ||
dbe15e4e | 19565 | printf (_(" %-20s %-10s\tDescription\n"), _("Owner"), _("Data size")); |
103f02d3 | 19566 | |
c8071705 NC |
19567 | end = (char *) pnotes + length; |
19568 | while ((char *) external < end) | |
779fe533 | 19569 | { |
b34976b6 | 19570 | Elf_Internal_Note inote; |
15b42fb0 | 19571 | size_t min_notesz; |
4dff97b2 | 19572 | char * next; |
2cf0635d | 19573 | char * temp = NULL; |
c8071705 | 19574 | size_t data_remaining = end - (char *) external; |
6d118b09 | 19575 | |
dda8d76d | 19576 | if (!is_ia64_vms (filedata)) |
15b42fb0 | 19577 | { |
9dd3a467 NC |
19578 | /* PR binutils/15191 |
19579 | Make sure that there is enough data to read. */ | |
15b42fb0 AM |
19580 | min_notesz = offsetof (Elf_External_Note, name); |
19581 | if (data_remaining < min_notesz) | |
9dd3a467 | 19582 | { |
d3a49aa8 AM |
19583 | warn (ngettext ("Corrupt note: only %ld byte remains, " |
19584 | "not enough for a full note\n", | |
19585 | "Corrupt note: only %ld bytes remain, " | |
19586 | "not enough for a full note\n", | |
19587 | data_remaining), | |
19588 | (long) data_remaining); | |
9dd3a467 NC |
19589 | break; |
19590 | } | |
5396a86e AM |
19591 | data_remaining -= min_notesz; |
19592 | ||
15b42fb0 AM |
19593 | inote.type = BYTE_GET (external->type); |
19594 | inote.namesz = BYTE_GET (external->namesz); | |
19595 | inote.namedata = external->name; | |
19596 | inote.descsz = BYTE_GET (external->descsz); | |
276da9b3 | 19597 | inote.descdata = ((char *) external |
4dff97b2 | 19598 | + ELF_NOTE_DESC_OFFSET (inote.namesz, align)); |
15b42fb0 | 19599 | inote.descpos = offset + (inote.descdata - (char *) pnotes); |
276da9b3 | 19600 | next = ((char *) external |
4dff97b2 | 19601 | + ELF_NOTE_NEXT_OFFSET (inote.namesz, inote.descsz, align)); |
15b42fb0 | 19602 | } |
00e98fc7 | 19603 | else |
15b42fb0 AM |
19604 | { |
19605 | Elf64_External_VMS_Note *vms_external; | |
00e98fc7 | 19606 | |
9dd3a467 NC |
19607 | /* PR binutils/15191 |
19608 | Make sure that there is enough data to read. */ | |
15b42fb0 AM |
19609 | min_notesz = offsetof (Elf64_External_VMS_Note, name); |
19610 | if (data_remaining < min_notesz) | |
9dd3a467 | 19611 | { |
d3a49aa8 AM |
19612 | warn (ngettext ("Corrupt note: only %ld byte remains, " |
19613 | "not enough for a full note\n", | |
19614 | "Corrupt note: only %ld bytes remain, " | |
19615 | "not enough for a full note\n", | |
19616 | data_remaining), | |
19617 | (long) data_remaining); | |
9dd3a467 NC |
19618 | break; |
19619 | } | |
5396a86e | 19620 | data_remaining -= min_notesz; |
3e55a963 | 19621 | |
15b42fb0 AM |
19622 | vms_external = (Elf64_External_VMS_Note *) external; |
19623 | inote.type = BYTE_GET (vms_external->type); | |
19624 | inote.namesz = BYTE_GET (vms_external->namesz); | |
19625 | inote.namedata = vms_external->name; | |
19626 | inote.descsz = BYTE_GET (vms_external->descsz); | |
19627 | inote.descdata = inote.namedata + align_power (inote.namesz, 3); | |
19628 | inote.descpos = offset + (inote.descdata - (char *) pnotes); | |
19629 | next = inote.descdata + align_power (inote.descsz, 3); | |
19630 | } | |
19631 | ||
5396a86e AM |
19632 | /* PR 17531: file: 3443835e. */ |
19633 | /* PR 17531: file: id:000000,sig:11,src:006986,op:havoc,rep:4. */ | |
19634 | if ((size_t) (inote.descdata - inote.namedata) < inote.namesz | |
19635 | || (size_t) (inote.descdata - inote.namedata) > data_remaining | |
19636 | || (size_t) (next - inote.descdata) < inote.descsz | |
19637 | || ((size_t) (next - inote.descdata) | |
19638 | > data_remaining - (size_t) (inote.descdata - inote.namedata))) | |
3e55a963 | 19639 | { |
15b42fb0 | 19640 | warn (_("note with invalid namesz and/or descsz found at offset 0x%lx\n"), |
0af1713e | 19641 | (unsigned long) ((char *) external - (char *) pnotes)); |
4dff97b2 NC |
19642 | warn (_(" type: 0x%lx, namesize: 0x%08lx, descsize: 0x%08lx, alignment: %u\n"), |
19643 | inote.type, inote.namesz, inote.descsz, (int) align); | |
3e55a963 NC |
19644 | break; |
19645 | } | |
19646 | ||
15b42fb0 | 19647 | external = (Elf_External_Note *) next; |
dd24e3da | 19648 | |
6d118b09 NC |
19649 | /* Verify that name is null terminated. It appears that at least |
19650 | one version of Linux (RedHat 6.0) generates corefiles that don't | |
19651 | comply with the ELF spec by failing to include the null byte in | |
19652 | namesz. */ | |
18344509 | 19653 | if (inote.namesz > 0 && inote.namedata[inote.namesz - 1] != '\0') |
6d118b09 | 19654 | { |
5396a86e | 19655 | if ((size_t) (inote.descdata - inote.namedata) == inote.namesz) |
6d118b09 | 19656 | { |
5396a86e AM |
19657 | temp = (char *) malloc (inote.namesz + 1); |
19658 | if (temp == NULL) | |
19659 | { | |
19660 | error (_("Out of memory allocating space for inote name\n")); | |
19661 | res = FALSE; | |
19662 | break; | |
19663 | } | |
76da6bbe | 19664 | |
5396a86e AM |
19665 | memcpy (temp, inote.namedata, inote.namesz); |
19666 | inote.namedata = temp; | |
19667 | } | |
19668 | inote.namedata[inote.namesz] = 0; | |
6d118b09 NC |
19669 | } |
19670 | ||
dda8d76d | 19671 | if (! process_note (& inote, filedata)) |
6b4bf3bc | 19672 | res = FALSE; |
103f02d3 | 19673 | |
6d118b09 NC |
19674 | if (temp != NULL) |
19675 | { | |
19676 | free (temp); | |
19677 | temp = NULL; | |
19678 | } | |
779fe533 NC |
19679 | } |
19680 | ||
19681 | free (pnotes); | |
103f02d3 | 19682 | |
779fe533 NC |
19683 | return res; |
19684 | } | |
19685 | ||
32ec8896 | 19686 | static bfd_boolean |
dda8d76d | 19687 | process_corefile_note_segments (Filedata * filedata) |
779fe533 | 19688 | { |
2cf0635d | 19689 | Elf_Internal_Phdr * segment; |
b34976b6 | 19690 | unsigned int i; |
32ec8896 | 19691 | bfd_boolean res = TRUE; |
103f02d3 | 19692 | |
dda8d76d | 19693 | if (! get_program_headers (filedata)) |
6b4bf3bc | 19694 | return TRUE; |
103f02d3 | 19695 | |
dda8d76d NC |
19696 | for (i = 0, segment = filedata->program_headers; |
19697 | i < filedata->file_header.e_phnum; | |
b34976b6 | 19698 | i++, segment++) |
779fe533 NC |
19699 | { |
19700 | if (segment->p_type == PT_NOTE) | |
dda8d76d | 19701 | if (! process_notes_at (filedata, NULL, |
32ec8896 | 19702 | (bfd_vma) segment->p_offset, |
82ed9683 L |
19703 | (bfd_vma) segment->p_filesz, |
19704 | (bfd_vma) segment->p_align)) | |
32ec8896 | 19705 | res = FALSE; |
779fe533 | 19706 | } |
103f02d3 | 19707 | |
779fe533 NC |
19708 | return res; |
19709 | } | |
19710 | ||
32ec8896 | 19711 | static bfd_boolean |
dda8d76d | 19712 | process_v850_notes (Filedata * filedata, bfd_vma offset, bfd_vma length) |
685080f2 NC |
19713 | { |
19714 | Elf_External_Note * pnotes; | |
19715 | Elf_External_Note * external; | |
c8071705 | 19716 | char * end; |
32ec8896 | 19717 | bfd_boolean res = TRUE; |
685080f2 NC |
19718 | |
19719 | if (length <= 0) | |
32ec8896 | 19720 | return FALSE; |
685080f2 | 19721 | |
dda8d76d | 19722 | pnotes = (Elf_External_Note *) get_data (NULL, filedata, offset, 1, length, |
685080f2 NC |
19723 | _("v850 notes")); |
19724 | if (pnotes == NULL) | |
32ec8896 | 19725 | return FALSE; |
685080f2 NC |
19726 | |
19727 | external = pnotes; | |
c8071705 | 19728 | end = (char*) pnotes + length; |
685080f2 NC |
19729 | |
19730 | printf (_("\nDisplaying contents of Renesas V850 notes section at offset 0x%lx with length 0x%lx:\n"), | |
19731 | (unsigned long) offset, (unsigned long) length); | |
19732 | ||
c8071705 | 19733 | while ((char *) external + sizeof (Elf_External_Note) < end) |
685080f2 NC |
19734 | { |
19735 | Elf_External_Note * next; | |
19736 | Elf_Internal_Note inote; | |
19737 | ||
19738 | inote.type = BYTE_GET (external->type); | |
19739 | inote.namesz = BYTE_GET (external->namesz); | |
19740 | inote.namedata = external->name; | |
19741 | inote.descsz = BYTE_GET (external->descsz); | |
19742 | inote.descdata = inote.namedata + align_power (inote.namesz, 2); | |
19743 | inote.descpos = offset + (inote.descdata - (char *) pnotes); | |
19744 | ||
c8071705 NC |
19745 | if (inote.descdata < (char *) pnotes || inote.descdata >= end) |
19746 | { | |
19747 | warn (_("Corrupt note: name size is too big: %lx\n"), inote.namesz); | |
19748 | inote.descdata = inote.namedata; | |
19749 | inote.namesz = 0; | |
19750 | } | |
19751 | ||
685080f2 NC |
19752 | next = (Elf_External_Note *) (inote.descdata + align_power (inote.descsz, 2)); |
19753 | ||
c8071705 | 19754 | if ( ((char *) next > end) |
685080f2 NC |
19755 | || ((char *) next < (char *) pnotes)) |
19756 | { | |
19757 | warn (_("corrupt descsz found in note at offset 0x%lx\n"), | |
19758 | (unsigned long) ((char *) external - (char *) pnotes)); | |
19759 | warn (_(" type: 0x%lx, namesize: 0x%lx, descsize: 0x%lx\n"), | |
19760 | inote.type, inote.namesz, inote.descsz); | |
19761 | break; | |
19762 | } | |
19763 | ||
19764 | external = next; | |
19765 | ||
19766 | /* Prevent out-of-bounds indexing. */ | |
c8071705 | 19767 | if ( inote.namedata + inote.namesz > end |
685080f2 NC |
19768 | || inote.namedata + inote.namesz < inote.namedata) |
19769 | { | |
19770 | warn (_("corrupt namesz found in note at offset 0x%lx\n"), | |
19771 | (unsigned long) ((char *) external - (char *) pnotes)); | |
19772 | warn (_(" type: 0x%lx, namesize: 0x%lx, descsize: 0x%lx\n"), | |
19773 | inote.type, inote.namesz, inote.descsz); | |
19774 | break; | |
19775 | } | |
19776 | ||
19777 | printf (" %s: ", get_v850_elf_note_type (inote.type)); | |
19778 | ||
19779 | if (! print_v850_note (& inote)) | |
19780 | { | |
32ec8896 | 19781 | res = FALSE; |
685080f2 NC |
19782 | printf ("<corrupt sizes: namesz: %lx, descsz: %lx>\n", |
19783 | inote.namesz, inote.descsz); | |
19784 | } | |
19785 | } | |
19786 | ||
19787 | free (pnotes); | |
19788 | ||
19789 | return res; | |
19790 | } | |
19791 | ||
32ec8896 | 19792 | static bfd_boolean |
dda8d76d | 19793 | process_note_sections (Filedata * filedata) |
1ec5cd37 | 19794 | { |
2cf0635d | 19795 | Elf_Internal_Shdr * section; |
1ec5cd37 | 19796 | unsigned long i; |
32ec8896 NC |
19797 | unsigned int n = 0; |
19798 | bfd_boolean res = TRUE; | |
1ec5cd37 | 19799 | |
dda8d76d NC |
19800 | for (i = 0, section = filedata->section_headers; |
19801 | i < filedata->file_header.e_shnum && section != NULL; | |
1ec5cd37 | 19802 | i++, section++) |
685080f2 NC |
19803 | { |
19804 | if (section->sh_type == SHT_NOTE) | |
19805 | { | |
dda8d76d | 19806 | if (! process_notes_at (filedata, section, |
32ec8896 | 19807 | (bfd_vma) section->sh_offset, |
82ed9683 L |
19808 | (bfd_vma) section->sh_size, |
19809 | (bfd_vma) section->sh_addralign)) | |
32ec8896 | 19810 | res = FALSE; |
685080f2 NC |
19811 | n++; |
19812 | } | |
19813 | ||
dda8d76d NC |
19814 | if (( filedata->file_header.e_machine == EM_V800 |
19815 | || filedata->file_header.e_machine == EM_V850 | |
19816 | || filedata->file_header.e_machine == EM_CYGNUS_V850) | |
685080f2 NC |
19817 | && section->sh_type == SHT_RENESAS_INFO) |
19818 | { | |
dda8d76d | 19819 | if (! process_v850_notes (filedata, |
32ec8896 NC |
19820 | (bfd_vma) section->sh_offset, |
19821 | (bfd_vma) section->sh_size)) | |
19822 | res = FALSE; | |
685080f2 NC |
19823 | n++; |
19824 | } | |
19825 | } | |
df565f32 NC |
19826 | |
19827 | if (n == 0) | |
19828 | /* Try processing NOTE segments instead. */ | |
dda8d76d | 19829 | return process_corefile_note_segments (filedata); |
1ec5cd37 NC |
19830 | |
19831 | return res; | |
19832 | } | |
19833 | ||
32ec8896 | 19834 | static bfd_boolean |
dda8d76d | 19835 | process_notes (Filedata * filedata) |
779fe533 NC |
19836 | { |
19837 | /* If we have not been asked to display the notes then do nothing. */ | |
19838 | if (! do_notes) | |
32ec8896 | 19839 | return TRUE; |
103f02d3 | 19840 | |
dda8d76d NC |
19841 | if (filedata->file_header.e_type != ET_CORE) |
19842 | return process_note_sections (filedata); | |
103f02d3 | 19843 | |
779fe533 | 19844 | /* No program headers means no NOTE segment. */ |
dda8d76d NC |
19845 | if (filedata->file_header.e_phnum > 0) |
19846 | return process_corefile_note_segments (filedata); | |
779fe533 | 19847 | |
1ec5cd37 | 19848 | printf (_("No note segments present in the core file.\n")); |
32ec8896 | 19849 | return TRUE; |
779fe533 NC |
19850 | } |
19851 | ||
60abdbed NC |
19852 | static unsigned char * |
19853 | display_public_gnu_attributes (unsigned char * start, | |
19854 | const unsigned char * const end) | |
19855 | { | |
19856 | printf (_(" Unknown GNU attribute: %s\n"), start); | |
19857 | ||
19858 | start += strnlen ((char *) start, end - start); | |
19859 | display_raw_attribute (start, end); | |
19860 | ||
19861 | return (unsigned char *) end; | |
19862 | } | |
19863 | ||
19864 | static unsigned char * | |
19865 | display_generic_attribute (unsigned char * start, | |
19866 | unsigned int tag, | |
19867 | const unsigned char * const end) | |
19868 | { | |
19869 | if (tag == 0) | |
19870 | return (unsigned char *) end; | |
19871 | ||
19872 | return display_tag_value (tag, start, end); | |
19873 | } | |
19874 | ||
32ec8896 | 19875 | static bfd_boolean |
dda8d76d | 19876 | process_arch_specific (Filedata * filedata) |
252b5132 | 19877 | { |
a952a375 | 19878 | if (! do_arch) |
32ec8896 | 19879 | return TRUE; |
a952a375 | 19880 | |
dda8d76d | 19881 | switch (filedata->file_header.e_machine) |
252b5132 | 19882 | { |
53a346d8 CZ |
19883 | case EM_ARC: |
19884 | case EM_ARC_COMPACT: | |
19885 | case EM_ARC_COMPACT2: | |
dda8d76d | 19886 | return process_attributes (filedata, "ARC", SHT_ARC_ATTRIBUTES, |
53a346d8 CZ |
19887 | display_arc_attribute, |
19888 | display_generic_attribute); | |
11c1ff18 | 19889 | case EM_ARM: |
dda8d76d | 19890 | return process_attributes (filedata, "aeabi", SHT_ARM_ATTRIBUTES, |
60abdbed NC |
19891 | display_arm_attribute, |
19892 | display_generic_attribute); | |
19893 | ||
252b5132 | 19894 | case EM_MIPS: |
4fe85591 | 19895 | case EM_MIPS_RS3_LE: |
dda8d76d | 19896 | return process_mips_specific (filedata); |
60abdbed NC |
19897 | |
19898 | case EM_MSP430: | |
dda8d76d NC |
19899 | return process_attributes (filedata, "mspabi", SHT_MSP430_ATTRIBUTES, |
19900 | display_msp430x_attribute, | |
c0ea7c52 | 19901 | display_msp430_gnu_attribute); |
60abdbed | 19902 | |
2dc8dd17 JW |
19903 | case EM_RISCV: |
19904 | return process_attributes (filedata, "riscv", SHT_RISCV_ATTRIBUTES, | |
19905 | display_riscv_attribute, | |
19906 | display_generic_attribute); | |
19907 | ||
35c08157 | 19908 | case EM_NDS32: |
dda8d76d | 19909 | return process_nds32_specific (filedata); |
60abdbed | 19910 | |
34c8bcba | 19911 | case EM_PPC: |
b82317dd | 19912 | case EM_PPC64: |
dda8d76d | 19913 | return process_attributes (filedata, NULL, SHT_GNU_ATTRIBUTES, NULL, |
60abdbed NC |
19914 | display_power_gnu_attribute); |
19915 | ||
643f7afb AK |
19916 | case EM_S390: |
19917 | case EM_S390_OLD: | |
dda8d76d | 19918 | return process_attributes (filedata, NULL, SHT_GNU_ATTRIBUTES, NULL, |
60abdbed NC |
19919 | display_s390_gnu_attribute); |
19920 | ||
9e8c70f9 DM |
19921 | case EM_SPARC: |
19922 | case EM_SPARC32PLUS: | |
19923 | case EM_SPARCV9: | |
dda8d76d | 19924 | return process_attributes (filedata, NULL, SHT_GNU_ATTRIBUTES, NULL, |
60abdbed NC |
19925 | display_sparc_gnu_attribute); |
19926 | ||
59e6276b | 19927 | case EM_TI_C6000: |
dda8d76d | 19928 | return process_attributes (filedata, "c6xabi", SHT_C6000_ATTRIBUTES, |
60abdbed NC |
19929 | display_tic6x_attribute, |
19930 | display_generic_attribute); | |
19931 | ||
252b5132 | 19932 | default: |
dda8d76d | 19933 | return process_attributes (filedata, "gnu", SHT_GNU_ATTRIBUTES, |
60abdbed NC |
19934 | display_public_gnu_attributes, |
19935 | display_generic_attribute); | |
252b5132 | 19936 | } |
252b5132 RH |
19937 | } |
19938 | ||
32ec8896 | 19939 | static bfd_boolean |
dda8d76d | 19940 | get_file_header (Filedata * filedata) |
252b5132 | 19941 | { |
9ea033b2 | 19942 | /* Read in the identity array. */ |
dda8d76d | 19943 | if (fread (filedata->file_header.e_ident, EI_NIDENT, 1, filedata->handle) != 1) |
32ec8896 | 19944 | return FALSE; |
252b5132 | 19945 | |
9ea033b2 | 19946 | /* Determine how to read the rest of the header. */ |
dda8d76d | 19947 | switch (filedata->file_header.e_ident[EI_DATA]) |
9ea033b2 | 19948 | { |
1a0670f3 AM |
19949 | default: |
19950 | case ELFDATANONE: | |
adab8cdc AO |
19951 | case ELFDATA2LSB: |
19952 | byte_get = byte_get_little_endian; | |
19953 | byte_put = byte_put_little_endian; | |
19954 | break; | |
19955 | case ELFDATA2MSB: | |
19956 | byte_get = byte_get_big_endian; | |
19957 | byte_put = byte_put_big_endian; | |
19958 | break; | |
9ea033b2 NC |
19959 | } |
19960 | ||
19961 | /* For now we only support 32 bit and 64 bit ELF files. */ | |
dda8d76d | 19962 | is_32bit_elf = (filedata->file_header.e_ident[EI_CLASS] != ELFCLASS64); |
9ea033b2 NC |
19963 | |
19964 | /* Read in the rest of the header. */ | |
19965 | if (is_32bit_elf) | |
19966 | { | |
19967 | Elf32_External_Ehdr ehdr32; | |
252b5132 | 19968 | |
dda8d76d | 19969 | if (fread (ehdr32.e_type, sizeof (ehdr32) - EI_NIDENT, 1, filedata->handle) != 1) |
32ec8896 | 19970 | return FALSE; |
103f02d3 | 19971 | |
dda8d76d NC |
19972 | filedata->file_header.e_type = BYTE_GET (ehdr32.e_type); |
19973 | filedata->file_header.e_machine = BYTE_GET (ehdr32.e_machine); | |
19974 | filedata->file_header.e_version = BYTE_GET (ehdr32.e_version); | |
19975 | filedata->file_header.e_entry = BYTE_GET (ehdr32.e_entry); | |
19976 | filedata->file_header.e_phoff = BYTE_GET (ehdr32.e_phoff); | |
19977 | filedata->file_header.e_shoff = BYTE_GET (ehdr32.e_shoff); | |
19978 | filedata->file_header.e_flags = BYTE_GET (ehdr32.e_flags); | |
19979 | filedata->file_header.e_ehsize = BYTE_GET (ehdr32.e_ehsize); | |
19980 | filedata->file_header.e_phentsize = BYTE_GET (ehdr32.e_phentsize); | |
19981 | filedata->file_header.e_phnum = BYTE_GET (ehdr32.e_phnum); | |
19982 | filedata->file_header.e_shentsize = BYTE_GET (ehdr32.e_shentsize); | |
19983 | filedata->file_header.e_shnum = BYTE_GET (ehdr32.e_shnum); | |
19984 | filedata->file_header.e_shstrndx = BYTE_GET (ehdr32.e_shstrndx); | |
9ea033b2 | 19985 | } |
252b5132 | 19986 | else |
9ea033b2 NC |
19987 | { |
19988 | Elf64_External_Ehdr ehdr64; | |
a952a375 NC |
19989 | |
19990 | /* If we have been compiled with sizeof (bfd_vma) == 4, then | |
19991 | we will not be able to cope with the 64bit data found in | |
19992 | 64 ELF files. Detect this now and abort before we start | |
50c2245b | 19993 | overwriting things. */ |
a952a375 NC |
19994 | if (sizeof (bfd_vma) < 8) |
19995 | { | |
e3c8793a NC |
19996 | error (_("This instance of readelf has been built without support for a\n\ |
19997 | 64 bit data type and so it cannot read 64 bit ELF files.\n")); | |
32ec8896 | 19998 | return FALSE; |
a952a375 | 19999 | } |
103f02d3 | 20000 | |
dda8d76d | 20001 | if (fread (ehdr64.e_type, sizeof (ehdr64) - EI_NIDENT, 1, filedata->handle) != 1) |
32ec8896 | 20002 | return FALSE; |
103f02d3 | 20003 | |
dda8d76d NC |
20004 | filedata->file_header.e_type = BYTE_GET (ehdr64.e_type); |
20005 | filedata->file_header.e_machine = BYTE_GET (ehdr64.e_machine); | |
20006 | filedata->file_header.e_version = BYTE_GET (ehdr64.e_version); | |
20007 | filedata->file_header.e_entry = BYTE_GET (ehdr64.e_entry); | |
20008 | filedata->file_header.e_phoff = BYTE_GET (ehdr64.e_phoff); | |
20009 | filedata->file_header.e_shoff = BYTE_GET (ehdr64.e_shoff); | |
20010 | filedata->file_header.e_flags = BYTE_GET (ehdr64.e_flags); | |
20011 | filedata->file_header.e_ehsize = BYTE_GET (ehdr64.e_ehsize); | |
20012 | filedata->file_header.e_phentsize = BYTE_GET (ehdr64.e_phentsize); | |
20013 | filedata->file_header.e_phnum = BYTE_GET (ehdr64.e_phnum); | |
20014 | filedata->file_header.e_shentsize = BYTE_GET (ehdr64.e_shentsize); | |
20015 | filedata->file_header.e_shnum = BYTE_GET (ehdr64.e_shnum); | |
20016 | filedata->file_header.e_shstrndx = BYTE_GET (ehdr64.e_shstrndx); | |
9ea033b2 | 20017 | } |
252b5132 | 20018 | |
dda8d76d | 20019 | if (filedata->file_header.e_shoff) |
7ece0d85 JJ |
20020 | { |
20021 | /* There may be some extensions in the first section header. Don't | |
20022 | bomb if we can't read it. */ | |
20023 | if (is_32bit_elf) | |
dda8d76d | 20024 | get_32bit_section_headers (filedata, TRUE); |
7ece0d85 | 20025 | else |
dda8d76d | 20026 | get_64bit_section_headers (filedata, TRUE); |
7ece0d85 | 20027 | } |
560f3c1c | 20028 | |
32ec8896 | 20029 | return TRUE; |
252b5132 RH |
20030 | } |
20031 | ||
dda8d76d NC |
20032 | static void |
20033 | close_file (Filedata * filedata) | |
20034 | { | |
20035 | if (filedata) | |
20036 | { | |
20037 | if (filedata->handle) | |
20038 | fclose (filedata->handle); | |
20039 | free (filedata); | |
20040 | } | |
20041 | } | |
20042 | ||
20043 | void | |
20044 | close_debug_file (void * data) | |
20045 | { | |
20046 | close_file ((Filedata *) data); | |
20047 | } | |
20048 | ||
20049 | static Filedata * | |
20050 | open_file (const char * pathname) | |
20051 | { | |
20052 | struct stat statbuf; | |
20053 | Filedata * filedata = NULL; | |
20054 | ||
20055 | if (stat (pathname, & statbuf) < 0 | |
20056 | || ! S_ISREG (statbuf.st_mode)) | |
20057 | goto fail; | |
20058 | ||
20059 | filedata = calloc (1, sizeof * filedata); | |
20060 | if (filedata == NULL) | |
20061 | goto fail; | |
20062 | ||
20063 | filedata->handle = fopen (pathname, "rb"); | |
20064 | if (filedata->handle == NULL) | |
20065 | goto fail; | |
20066 | ||
20067 | filedata->file_size = (bfd_size_type) statbuf.st_size; | |
20068 | filedata->file_name = pathname; | |
20069 | ||
20070 | if (! get_file_header (filedata)) | |
20071 | goto fail; | |
20072 | ||
20073 | if (filedata->file_header.e_shoff) | |
20074 | { | |
20075 | bfd_boolean res; | |
20076 | ||
20077 | /* Read the section headers again, this time for real. */ | |
20078 | if (is_32bit_elf) | |
20079 | res = get_32bit_section_headers (filedata, FALSE); | |
20080 | else | |
20081 | res = get_64bit_section_headers (filedata, FALSE); | |
20082 | ||
20083 | if (!res) | |
20084 | goto fail; | |
20085 | } | |
20086 | ||
20087 | return filedata; | |
20088 | ||
20089 | fail: | |
20090 | if (filedata) | |
20091 | { | |
20092 | if (filedata->handle) | |
20093 | fclose (filedata->handle); | |
20094 | free (filedata); | |
20095 | } | |
20096 | return NULL; | |
20097 | } | |
20098 | ||
20099 | void * | |
20100 | open_debug_file (const char * pathname) | |
20101 | { | |
20102 | return open_file (pathname); | |
20103 | } | |
20104 | ||
fb52b2f4 NC |
20105 | /* Process one ELF object file according to the command line options. |
20106 | This file may actually be stored in an archive. The file is | |
32ec8896 NC |
20107 | positioned at the start of the ELF object. Returns TRUE if no |
20108 | problems were encountered, FALSE otherwise. */ | |
fb52b2f4 | 20109 | |
32ec8896 | 20110 | static bfd_boolean |
dda8d76d | 20111 | process_object (Filedata * filedata) |
252b5132 | 20112 | { |
24841daa | 20113 | bfd_boolean have_separate_files; |
252b5132 | 20114 | unsigned int i; |
32ec8896 | 20115 | bfd_boolean res = TRUE; |
252b5132 | 20116 | |
dda8d76d | 20117 | if (! get_file_header (filedata)) |
252b5132 | 20118 | { |
dda8d76d | 20119 | error (_("%s: Failed to read file header\n"), filedata->file_name); |
32ec8896 | 20120 | return FALSE; |
252b5132 RH |
20121 | } |
20122 | ||
20123 | /* Initialise per file variables. */ | |
978c4450 AM |
20124 | for (i = ARRAY_SIZE (filedata->version_info); i--;) |
20125 | filedata->version_info[i] = 0; | |
252b5132 | 20126 | |
978c4450 AM |
20127 | for (i = ARRAY_SIZE (filedata->dynamic_info); i--;) |
20128 | filedata->dynamic_info[i] = 0; | |
20129 | filedata->dynamic_info_DT_GNU_HASH = 0; | |
20130 | filedata->dynamic_info_DT_MIPS_XHASH = 0; | |
252b5132 RH |
20131 | |
20132 | /* Process the file. */ | |
20133 | if (show_name) | |
dda8d76d | 20134 | printf (_("\nFile: %s\n"), filedata->file_name); |
252b5132 | 20135 | |
18bd398b NC |
20136 | /* Initialise the dump_sects array from the cmdline_dump_sects array. |
20137 | Note we do this even if cmdline_dump_sects is empty because we | |
20138 | must make sure that the dump_sets array is zeroed out before each | |
20139 | object file is processed. */ | |
6431e409 AM |
20140 | if (filedata->dump.num_dump_sects > cmdline.num_dump_sects) |
20141 | memset (filedata->dump.dump_sects, 0, | |
20142 | filedata->dump.num_dump_sects * sizeof (*filedata->dump.dump_sects)); | |
18bd398b | 20143 | |
dda8d76d | 20144 | if (cmdline.num_dump_sects > 0) |
18bd398b | 20145 | { |
6431e409 | 20146 | if (filedata->dump.num_dump_sects == 0) |
18bd398b | 20147 | /* A sneaky way of allocating the dump_sects array. */ |
6431e409 | 20148 | request_dump_bynumber (&filedata->dump, cmdline.num_dump_sects, 0); |
18bd398b | 20149 | |
6431e409 AM |
20150 | assert (filedata->dump.num_dump_sects >= cmdline.num_dump_sects); |
20151 | memcpy (filedata->dump.dump_sects, cmdline.dump_sects, | |
20152 | cmdline.num_dump_sects * sizeof (*filedata->dump.dump_sects)); | |
18bd398b | 20153 | } |
d70c5fc7 | 20154 | |
dda8d76d | 20155 | if (! process_file_header (filedata)) |
32ec8896 | 20156 | return FALSE; |
252b5132 | 20157 | |
dda8d76d | 20158 | if (! process_section_headers (filedata)) |
2f62977e | 20159 | { |
32ec8896 NC |
20160 | /* Without loaded section headers we cannot process lots of things. */ |
20161 | do_unwind = do_version = do_dump = do_arch = FALSE; | |
252b5132 | 20162 | |
2f62977e | 20163 | if (! do_using_dynamic) |
32ec8896 | 20164 | do_syms = do_dyn_syms = do_reloc = FALSE; |
2f62977e | 20165 | } |
252b5132 | 20166 | |
dda8d76d | 20167 | if (! process_section_groups (filedata)) |
32ec8896 NC |
20168 | /* Without loaded section groups we cannot process unwind. */ |
20169 | do_unwind = FALSE; | |
d1f5c6e3 | 20170 | |
dda8d76d NC |
20171 | if (process_program_headers (filedata)) |
20172 | process_dynamic_section (filedata); | |
32ec8896 NC |
20173 | else |
20174 | res = FALSE; | |
252b5132 | 20175 | |
dda8d76d | 20176 | if (! process_relocs (filedata)) |
32ec8896 | 20177 | res = FALSE; |
252b5132 | 20178 | |
dda8d76d | 20179 | if (! process_unwind (filedata)) |
32ec8896 | 20180 | res = FALSE; |
4d6ed7c8 | 20181 | |
dda8d76d | 20182 | if (! process_symbol_table (filedata)) |
32ec8896 | 20183 | res = FALSE; |
252b5132 | 20184 | |
dda8d76d | 20185 | if (! process_syminfo (filedata)) |
32ec8896 | 20186 | res = FALSE; |
252b5132 | 20187 | |
dda8d76d | 20188 | if (! process_version_sections (filedata)) |
32ec8896 | 20189 | res = FALSE; |
252b5132 | 20190 | |
82ed9683 | 20191 | if (filedata->file_header.e_shstrndx != SHN_UNDEF) |
24841daa | 20192 | have_separate_files = load_separate_debug_files (filedata, filedata->file_name); |
82ed9683 | 20193 | else |
24841daa | 20194 | have_separate_files = FALSE; |
dda8d76d NC |
20195 | |
20196 | if (! process_section_contents (filedata)) | |
32ec8896 | 20197 | res = FALSE; |
f5842774 | 20198 | |
24841daa | 20199 | if (have_separate_files) |
dda8d76d | 20200 | { |
24841daa NC |
20201 | separate_info * d; |
20202 | ||
20203 | for (d = first_separate_info; d != NULL; d = d->next) | |
20204 | { | |
20205 | if (! process_section_headers (d->handle)) | |
20206 | res = FALSE; | |
20207 | else if (! process_section_contents (d->handle)) | |
20208 | res = FALSE; | |
20209 | } | |
20210 | ||
20211 | /* The file handles are closed by the call to free_debug_memory() below. */ | |
dda8d76d NC |
20212 | } |
20213 | ||
20214 | if (! process_notes (filedata)) | |
32ec8896 | 20215 | res = FALSE; |
103f02d3 | 20216 | |
dda8d76d | 20217 | if (! process_gnu_liblist (filedata)) |
32ec8896 | 20218 | res = FALSE; |
047b2264 | 20219 | |
dda8d76d | 20220 | if (! process_arch_specific (filedata)) |
32ec8896 | 20221 | res = FALSE; |
252b5132 | 20222 | |
dda8d76d NC |
20223 | free (filedata->program_headers); |
20224 | filedata->program_headers = NULL; | |
d93f0186 | 20225 | |
dda8d76d NC |
20226 | free (filedata->section_headers); |
20227 | filedata->section_headers = NULL; | |
252b5132 | 20228 | |
dda8d76d NC |
20229 | free (filedata->string_table); |
20230 | filedata->string_table = NULL; | |
20231 | filedata->string_table_length = 0; | |
252b5132 | 20232 | |
6431e409 | 20233 | if (filedata->dump.dump_sects != NULL) |
a788aedd | 20234 | { |
6431e409 AM |
20235 | free (filedata->dump.dump_sects); |
20236 | filedata->dump.dump_sects = NULL; | |
20237 | filedata->dump.num_dump_sects = 0; | |
a788aedd AM |
20238 | } |
20239 | ||
978c4450 | 20240 | if (filedata->dynamic_strings) |
252b5132 | 20241 | { |
978c4450 AM |
20242 | free (filedata->dynamic_strings); |
20243 | filedata->dynamic_strings = NULL; | |
20244 | filedata->dynamic_strings_length = 0; | |
252b5132 RH |
20245 | } |
20246 | ||
978c4450 | 20247 | if (filedata->dynamic_symbols) |
252b5132 | 20248 | { |
978c4450 AM |
20249 | free (filedata->dynamic_symbols); |
20250 | filedata->dynamic_symbols = NULL; | |
20251 | filedata->num_dynamic_syms = 0; | |
252b5132 RH |
20252 | } |
20253 | ||
978c4450 | 20254 | if (filedata->dynamic_syminfo) |
252b5132 | 20255 | { |
978c4450 AM |
20256 | free (filedata->dynamic_syminfo); |
20257 | filedata->dynamic_syminfo = NULL; | |
252b5132 | 20258 | } |
ff78d6d6 | 20259 | |
978c4450 | 20260 | if (filedata->dynamic_section) |
293c573e | 20261 | { |
978c4450 AM |
20262 | free (filedata->dynamic_section); |
20263 | filedata->dynamic_section = NULL; | |
293c573e MR |
20264 | } |
20265 | ||
978c4450 | 20266 | while (filedata->symtab_shndx_list != NULL) |
8fb879cd | 20267 | { |
978c4450 AM |
20268 | elf_section_list *next = filedata->symtab_shndx_list->next; |
20269 | free (filedata->symtab_shndx_list); | |
20270 | filedata->symtab_shndx_list = next; | |
8fb879cd AM |
20271 | } |
20272 | ||
978c4450 | 20273 | if (filedata->section_headers_groups) |
e4b17d5c | 20274 | { |
978c4450 AM |
20275 | free (filedata->section_headers_groups); |
20276 | filedata->section_headers_groups = NULL; | |
e4b17d5c L |
20277 | } |
20278 | ||
978c4450 | 20279 | if (filedata->section_groups) |
e4b17d5c | 20280 | { |
2cf0635d NC |
20281 | struct group_list * g; |
20282 | struct group_list * next; | |
e4b17d5c | 20283 | |
978c4450 | 20284 | for (i = 0; i < filedata->group_count; i++) |
e4b17d5c | 20285 | { |
978c4450 | 20286 | for (g = filedata->section_groups [i].root; g != NULL; g = next) |
e4b17d5c L |
20287 | { |
20288 | next = g->next; | |
20289 | free (g); | |
20290 | } | |
20291 | } | |
20292 | ||
978c4450 AM |
20293 | free (filedata->section_groups); |
20294 | filedata->section_groups = NULL; | |
e4b17d5c L |
20295 | } |
20296 | ||
19e6b90e | 20297 | free_debug_memory (); |
18bd398b | 20298 | |
32ec8896 | 20299 | return res; |
252b5132 RH |
20300 | } |
20301 | ||
2cf0635d | 20302 | /* Process an ELF archive. |
32ec8896 NC |
20303 | On entry the file is positioned just after the ARMAG string. |
20304 | Returns TRUE upon success, FALSE otherwise. */ | |
2cf0635d | 20305 | |
32ec8896 | 20306 | static bfd_boolean |
dda8d76d | 20307 | process_archive (Filedata * filedata, bfd_boolean is_thin_archive) |
2cf0635d NC |
20308 | { |
20309 | struct archive_info arch; | |
20310 | struct archive_info nested_arch; | |
20311 | size_t got; | |
32ec8896 | 20312 | bfd_boolean ret = TRUE; |
2cf0635d | 20313 | |
32ec8896 | 20314 | show_name = TRUE; |
2cf0635d NC |
20315 | |
20316 | /* The ARCH structure is used to hold information about this archive. */ | |
20317 | arch.file_name = NULL; | |
20318 | arch.file = NULL; | |
20319 | arch.index_array = NULL; | |
20320 | arch.sym_table = NULL; | |
20321 | arch.longnames = NULL; | |
20322 | ||
20323 | /* The NESTED_ARCH structure is used as a single-item cache of information | |
20324 | about a nested archive (when members of a thin archive reside within | |
20325 | another regular archive file). */ | |
20326 | nested_arch.file_name = NULL; | |
20327 | nested_arch.file = NULL; | |
20328 | nested_arch.index_array = NULL; | |
20329 | nested_arch.sym_table = NULL; | |
20330 | nested_arch.longnames = NULL; | |
20331 | ||
dda8d76d | 20332 | if (setup_archive (&arch, filedata->file_name, filedata->handle, |
780f96ae AM |
20333 | filedata->file_size, is_thin_archive, |
20334 | do_archive_index) != 0) | |
2cf0635d | 20335 | { |
32ec8896 | 20336 | ret = FALSE; |
2cf0635d | 20337 | goto out; |
4145f1d5 | 20338 | } |
fb52b2f4 | 20339 | |
4145f1d5 NC |
20340 | if (do_archive_index) |
20341 | { | |
2cf0635d | 20342 | if (arch.sym_table == NULL) |
1cb7d8b1 AM |
20343 | error (_("%s: unable to dump the index as none was found\n"), |
20344 | filedata->file_name); | |
4145f1d5 NC |
20345 | else |
20346 | { | |
591f7597 | 20347 | unsigned long i, l; |
4145f1d5 NC |
20348 | unsigned long current_pos; |
20349 | ||
1cb7d8b1 AM |
20350 | printf (_("Index of archive %s: (%lu entries, 0x%lx bytes " |
20351 | "in the symbol table)\n"), | |
20352 | filedata->file_name, (unsigned long) arch.index_num, | |
20353 | arch.sym_size); | |
dda8d76d NC |
20354 | |
20355 | current_pos = ftell (filedata->handle); | |
4145f1d5 | 20356 | |
2cf0635d | 20357 | for (i = l = 0; i < arch.index_num; i++) |
4145f1d5 | 20358 | { |
1cb7d8b1 AM |
20359 | if (i == 0 |
20360 | || (i > 0 && arch.index_array[i] != arch.index_array[i - 1])) | |
20361 | { | |
20362 | char * member_name | |
20363 | = get_archive_member_name_at (&arch, arch.index_array[i], | |
20364 | &nested_arch); | |
2cf0635d | 20365 | |
1cb7d8b1 AM |
20366 | if (member_name != NULL) |
20367 | { | |
20368 | char * qualified_name | |
20369 | = make_qualified_name (&arch, &nested_arch, | |
20370 | member_name); | |
2cf0635d | 20371 | |
1cb7d8b1 AM |
20372 | if (qualified_name != NULL) |
20373 | { | |
20374 | printf (_("Contents of binary %s at offset "), | |
20375 | qualified_name); | |
c2a7d3f5 NC |
20376 | (void) print_vma (arch.index_array[i], PREFIX_HEX); |
20377 | putchar ('\n'); | |
1cb7d8b1 AM |
20378 | free (qualified_name); |
20379 | } | |
fd486f32 | 20380 | free (member_name); |
4145f1d5 NC |
20381 | } |
20382 | } | |
2cf0635d NC |
20383 | |
20384 | if (l >= arch.sym_size) | |
4145f1d5 | 20385 | { |
1cb7d8b1 AM |
20386 | error (_("%s: end of the symbol table reached " |
20387 | "before the end of the index\n"), | |
dda8d76d | 20388 | filedata->file_name); |
32ec8896 | 20389 | ret = FALSE; |
cb8f3167 | 20390 | break; |
4145f1d5 | 20391 | } |
591f7597 | 20392 | /* PR 17531: file: 0b6630b2. */ |
1cb7d8b1 AM |
20393 | printf ("\t%.*s\n", |
20394 | (int) (arch.sym_size - l), arch.sym_table + l); | |
591f7597 | 20395 | l += strnlen (arch.sym_table + l, arch.sym_size - l) + 1; |
4145f1d5 NC |
20396 | } |
20397 | ||
67ce483b | 20398 | if (arch.uses_64bit_indices) |
c2a7d3f5 NC |
20399 | l = (l + 7) & ~ 7; |
20400 | else | |
20401 | l += l & 1; | |
20402 | ||
2cf0635d | 20403 | if (l < arch.sym_size) |
32ec8896 | 20404 | { |
d3a49aa8 AM |
20405 | error (ngettext ("%s: %ld byte remains in the symbol table, " |
20406 | "but without corresponding entries in " | |
20407 | "the index table\n", | |
20408 | "%s: %ld bytes remain in the symbol table, " | |
20409 | "but without corresponding entries in " | |
20410 | "the index table\n", | |
20411 | arch.sym_size - l), | |
dda8d76d | 20412 | filedata->file_name, arch.sym_size - l); |
32ec8896 NC |
20413 | ret = FALSE; |
20414 | } | |
4145f1d5 | 20415 | |
dda8d76d | 20416 | if (fseek (filedata->handle, current_pos, SEEK_SET) != 0) |
4145f1d5 | 20417 | { |
1cb7d8b1 AM |
20418 | error (_("%s: failed to seek back to start of object files " |
20419 | "in the archive\n"), | |
dda8d76d | 20420 | filedata->file_name); |
32ec8896 | 20421 | ret = FALSE; |
2cf0635d | 20422 | goto out; |
4145f1d5 | 20423 | } |
fb52b2f4 | 20424 | } |
4145f1d5 NC |
20425 | |
20426 | if (!do_dynamic && !do_syms && !do_reloc && !do_unwind && !do_sections | |
20427 | && !do_segments && !do_header && !do_dump && !do_version | |
20428 | && !do_histogram && !do_debugging && !do_arch && !do_notes | |
2c610e4b | 20429 | && !do_section_groups && !do_dyn_syms) |
2cf0635d | 20430 | { |
32ec8896 | 20431 | ret = TRUE; /* Archive index only. */ |
2cf0635d NC |
20432 | goto out; |
20433 | } | |
fb52b2f4 NC |
20434 | } |
20435 | ||
fb52b2f4 NC |
20436 | while (1) |
20437 | { | |
2cf0635d NC |
20438 | char * name; |
20439 | size_t namelen; | |
20440 | char * qualified_name; | |
20441 | ||
20442 | /* Read the next archive header. */ | |
dda8d76d | 20443 | if (fseek (filedata->handle, arch.next_arhdr_offset, SEEK_SET) != 0) |
1cb7d8b1 AM |
20444 | { |
20445 | error (_("%s: failed to seek to next archive header\n"), | |
20446 | arch.file_name); | |
20447 | ret = FALSE; | |
20448 | break; | |
20449 | } | |
dda8d76d | 20450 | got = fread (&arch.arhdr, 1, sizeof arch.arhdr, filedata->handle); |
2cf0635d | 20451 | if (got != sizeof arch.arhdr) |
1cb7d8b1 AM |
20452 | { |
20453 | if (got == 0) | |
2cf0635d | 20454 | break; |
28e817cc NC |
20455 | /* PR 24049 - we cannot use filedata->file_name as this will |
20456 | have already been freed. */ | |
20457 | error (_("%s: failed to read archive header\n"), arch.file_name); | |
9abca702 | 20458 | |
1cb7d8b1 AM |
20459 | ret = FALSE; |
20460 | break; | |
20461 | } | |
2cf0635d | 20462 | if (memcmp (arch.arhdr.ar_fmag, ARFMAG, 2) != 0) |
1cb7d8b1 AM |
20463 | { |
20464 | error (_("%s: did not find a valid archive header\n"), | |
20465 | arch.file_name); | |
20466 | ret = FALSE; | |
20467 | break; | |
20468 | } | |
2cf0635d NC |
20469 | |
20470 | arch.next_arhdr_offset += sizeof arch.arhdr; | |
20471 | ||
978c4450 AM |
20472 | filedata->archive_file_size = strtoul (arch.arhdr.ar_size, NULL, 10); |
20473 | if (filedata->archive_file_size & 01) | |
20474 | ++filedata->archive_file_size; | |
2cf0635d NC |
20475 | |
20476 | name = get_archive_member_name (&arch, &nested_arch); | |
20477 | if (name == NULL) | |
fb52b2f4 | 20478 | { |
28e817cc | 20479 | error (_("%s: bad archive file name\n"), arch.file_name); |
32ec8896 | 20480 | ret = FALSE; |
d989285c | 20481 | break; |
fb52b2f4 | 20482 | } |
2cf0635d | 20483 | namelen = strlen (name); |
fb52b2f4 | 20484 | |
2cf0635d NC |
20485 | qualified_name = make_qualified_name (&arch, &nested_arch, name); |
20486 | if (qualified_name == NULL) | |
fb52b2f4 | 20487 | { |
28e817cc | 20488 | error (_("%s: bad archive file name\n"), arch.file_name); |
fd486f32 | 20489 | free (name); |
32ec8896 | 20490 | ret = FALSE; |
d989285c | 20491 | break; |
fb52b2f4 NC |
20492 | } |
20493 | ||
2cf0635d | 20494 | if (is_thin_archive && arch.nested_member_origin == 0) |
1cb7d8b1 AM |
20495 | { |
20496 | /* This is a proxy for an external member of a thin archive. */ | |
20497 | Filedata * member_filedata; | |
20498 | char * member_file_name = adjust_relative_path | |
dda8d76d | 20499 | (filedata->file_name, name, namelen); |
32ec8896 | 20500 | |
fd486f32 | 20501 | free (name); |
1cb7d8b1 AM |
20502 | if (member_file_name == NULL) |
20503 | { | |
fd486f32 | 20504 | free (qualified_name); |
1cb7d8b1 AM |
20505 | ret = FALSE; |
20506 | break; | |
20507 | } | |
2cf0635d | 20508 | |
1cb7d8b1 AM |
20509 | member_filedata = open_file (member_file_name); |
20510 | if (member_filedata == NULL) | |
20511 | { | |
20512 | error (_("Input file '%s' is not readable.\n"), member_file_name); | |
20513 | free (member_file_name); | |
fd486f32 | 20514 | free (qualified_name); |
1cb7d8b1 AM |
20515 | ret = FALSE; |
20516 | break; | |
20517 | } | |
2cf0635d | 20518 | |
978c4450 | 20519 | filedata->archive_file_offset = arch.nested_member_origin; |
dda8d76d | 20520 | member_filedata->file_name = qualified_name; |
2cf0635d | 20521 | |
1cb7d8b1 | 20522 | if (! process_object (member_filedata)) |
32ec8896 | 20523 | ret = FALSE; |
2cf0635d | 20524 | |
1cb7d8b1 AM |
20525 | close_file (member_filedata); |
20526 | free (member_file_name); | |
1cb7d8b1 | 20527 | } |
2cf0635d | 20528 | else if (is_thin_archive) |
1cb7d8b1 AM |
20529 | { |
20530 | Filedata thin_filedata; | |
eb02c04d | 20531 | |
1cb7d8b1 | 20532 | memset (&thin_filedata, 0, sizeof (thin_filedata)); |
dda8d76d | 20533 | |
a043396b NC |
20534 | /* PR 15140: Allow for corrupt thin archives. */ |
20535 | if (nested_arch.file == NULL) | |
20536 | { | |
20537 | error (_("%s: contains corrupt thin archive: %s\n"), | |
28e817cc | 20538 | qualified_name, name); |
fd486f32 AM |
20539 | free (qualified_name); |
20540 | free (name); | |
32ec8896 | 20541 | ret = FALSE; |
a043396b NC |
20542 | break; |
20543 | } | |
fd486f32 | 20544 | free (name); |
a043396b | 20545 | |
1cb7d8b1 | 20546 | /* This is a proxy for a member of a nested archive. */ |
978c4450 AM |
20547 | filedata->archive_file_offset |
20548 | = arch.nested_member_origin + sizeof arch.arhdr; | |
2cf0635d | 20549 | |
1cb7d8b1 AM |
20550 | /* The nested archive file will have been opened and setup by |
20551 | get_archive_member_name. */ | |
978c4450 AM |
20552 | if (fseek (nested_arch.file, filedata->archive_file_offset, |
20553 | SEEK_SET) != 0) | |
1cb7d8b1 AM |
20554 | { |
20555 | error (_("%s: failed to seek to archive member.\n"), | |
20556 | nested_arch.file_name); | |
fd486f32 | 20557 | free (qualified_name); |
1cb7d8b1 AM |
20558 | ret = FALSE; |
20559 | break; | |
20560 | } | |
2cf0635d | 20561 | |
dda8d76d NC |
20562 | thin_filedata.handle = nested_arch.file; |
20563 | thin_filedata.file_name = qualified_name; | |
9abca702 | 20564 | |
1cb7d8b1 | 20565 | if (! process_object (& thin_filedata)) |
32ec8896 | 20566 | ret = FALSE; |
1cb7d8b1 | 20567 | } |
2cf0635d | 20568 | else |
1cb7d8b1 | 20569 | { |
fd486f32 | 20570 | free (name); |
978c4450 | 20571 | filedata->archive_file_offset = arch.next_arhdr_offset; |
6a6196fc | 20572 | filedata->file_name = qualified_name; |
1cb7d8b1 | 20573 | if (! process_object (filedata)) |
32ec8896 | 20574 | ret = FALSE; |
978c4450 | 20575 | arch.next_arhdr_offset += filedata->archive_file_size; |
4c836627 | 20576 | /* Stop looping with "negative" archive_file_size. */ |
978c4450 | 20577 | if (arch.next_arhdr_offset < filedata->archive_file_size) |
80e2a3b6 | 20578 | arch.next_arhdr_offset = -1ul; |
1cb7d8b1 | 20579 | } |
fb52b2f4 | 20580 | |
2cf0635d | 20581 | free (qualified_name); |
fb52b2f4 NC |
20582 | } |
20583 | ||
4145f1d5 | 20584 | out: |
2cf0635d NC |
20585 | if (nested_arch.file != NULL) |
20586 | fclose (nested_arch.file); | |
20587 | release_archive (&nested_arch); | |
20588 | release_archive (&arch); | |
fb52b2f4 | 20589 | |
d989285c | 20590 | return ret; |
fb52b2f4 NC |
20591 | } |
20592 | ||
32ec8896 | 20593 | static bfd_boolean |
2cf0635d | 20594 | process_file (char * file_name) |
fb52b2f4 | 20595 | { |
dda8d76d | 20596 | Filedata * filedata = NULL; |
fb52b2f4 NC |
20597 | struct stat statbuf; |
20598 | char armag[SARMAG]; | |
32ec8896 | 20599 | bfd_boolean ret = TRUE; |
fb52b2f4 NC |
20600 | |
20601 | if (stat (file_name, &statbuf) < 0) | |
20602 | { | |
f24ddbdd NC |
20603 | if (errno == ENOENT) |
20604 | error (_("'%s': No such file\n"), file_name); | |
20605 | else | |
20606 | error (_("Could not locate '%s'. System error message: %s\n"), | |
20607 | file_name, strerror (errno)); | |
32ec8896 | 20608 | return FALSE; |
f24ddbdd NC |
20609 | } |
20610 | ||
20611 | if (! S_ISREG (statbuf.st_mode)) | |
20612 | { | |
20613 | error (_("'%s' is not an ordinary file\n"), file_name); | |
32ec8896 | 20614 | return FALSE; |
fb52b2f4 NC |
20615 | } |
20616 | ||
dda8d76d NC |
20617 | filedata = calloc (1, sizeof * filedata); |
20618 | if (filedata == NULL) | |
20619 | { | |
20620 | error (_("Out of memory allocating file data structure\n")); | |
20621 | return FALSE; | |
20622 | } | |
20623 | ||
20624 | filedata->file_name = file_name; | |
20625 | filedata->handle = fopen (file_name, "rb"); | |
20626 | if (filedata->handle == NULL) | |
fb52b2f4 | 20627 | { |
f24ddbdd | 20628 | error (_("Input file '%s' is not readable.\n"), file_name); |
dda8d76d | 20629 | free (filedata); |
32ec8896 | 20630 | return FALSE; |
fb52b2f4 NC |
20631 | } |
20632 | ||
dda8d76d | 20633 | if (fread (armag, SARMAG, 1, filedata->handle) != 1) |
fb52b2f4 | 20634 | { |
4145f1d5 | 20635 | error (_("%s: Failed to read file's magic number\n"), file_name); |
dda8d76d NC |
20636 | fclose (filedata->handle); |
20637 | free (filedata); | |
32ec8896 | 20638 | return FALSE; |
fb52b2f4 NC |
20639 | } |
20640 | ||
dda8d76d | 20641 | filedata->file_size = (bfd_size_type) statbuf.st_size; |
f54498b4 | 20642 | |
fb52b2f4 | 20643 | if (memcmp (armag, ARMAG, SARMAG) == 0) |
32ec8896 | 20644 | { |
dda8d76d | 20645 | if (! process_archive (filedata, FALSE)) |
32ec8896 NC |
20646 | ret = FALSE; |
20647 | } | |
2cf0635d | 20648 | else if (memcmp (armag, ARMAGT, SARMAG) == 0) |
32ec8896 | 20649 | { |
dda8d76d | 20650 | if ( ! process_archive (filedata, TRUE)) |
32ec8896 NC |
20651 | ret = FALSE; |
20652 | } | |
fb52b2f4 NC |
20653 | else |
20654 | { | |
4145f1d5 NC |
20655 | if (do_archive_index) |
20656 | error (_("File %s is not an archive so its index cannot be displayed.\n"), | |
20657 | file_name); | |
20658 | ||
dda8d76d | 20659 | rewind (filedata->handle); |
978c4450 | 20660 | filedata->archive_file_size = filedata->archive_file_offset = 0; |
32ec8896 | 20661 | |
dda8d76d | 20662 | if (! process_object (filedata)) |
32ec8896 | 20663 | ret = FALSE; |
fb52b2f4 NC |
20664 | } |
20665 | ||
dda8d76d | 20666 | fclose (filedata->handle); |
8fb879cd AM |
20667 | free (filedata->section_headers); |
20668 | free (filedata->program_headers); | |
20669 | free (filedata->string_table); | |
6431e409 | 20670 | free (filedata->dump.dump_sects); |
dda8d76d | 20671 | free (filedata); |
32ec8896 | 20672 | |
fd486f32 | 20673 | free (ba_cache.strtab); |
1bd6175a | 20674 | ba_cache.strtab = NULL; |
fd486f32 | 20675 | free (ba_cache.symtab); |
1bd6175a | 20676 | ba_cache.symtab = NULL; |
fd486f32 AM |
20677 | ba_cache.filedata = NULL; |
20678 | ||
fb52b2f4 NC |
20679 | return ret; |
20680 | } | |
20681 | ||
252b5132 RH |
20682 | #ifdef SUPPORT_DISASSEMBLY |
20683 | /* Needed by the i386 disassembler. For extra credit, someone could | |
9ea033b2 | 20684 | fix this so that we insert symbolic addresses here, esp for GOT/PLT |
e3c8793a | 20685 | symbols. */ |
252b5132 RH |
20686 | |
20687 | void | |
2cf0635d | 20688 | print_address (unsigned int addr, FILE * outfile) |
252b5132 RH |
20689 | { |
20690 | fprintf (outfile,"0x%8.8x", addr); | |
20691 | } | |
20692 | ||
e3c8793a | 20693 | /* Needed by the i386 disassembler. */ |
dda8d76d | 20694 | |
252b5132 RH |
20695 | void |
20696 | db_task_printsym (unsigned int addr) | |
20697 | { | |
20698 | print_address (addr, stderr); | |
20699 | } | |
20700 | #endif | |
20701 | ||
20702 | int | |
2cf0635d | 20703 | main (int argc, char ** argv) |
252b5132 | 20704 | { |
ff78d6d6 L |
20705 | int err; |
20706 | ||
252b5132 RH |
20707 | #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES) |
20708 | setlocale (LC_MESSAGES, ""); | |
3882b010 L |
20709 | #endif |
20710 | #if defined (HAVE_SETLOCALE) | |
20711 | setlocale (LC_CTYPE, ""); | |
252b5132 RH |
20712 | #endif |
20713 | bindtextdomain (PACKAGE, LOCALEDIR); | |
20714 | textdomain (PACKAGE); | |
20715 | ||
869b9d07 MM |
20716 | expandargv (&argc, &argv); |
20717 | ||
dda8d76d | 20718 | parse_args (& cmdline, argc, argv); |
59f14fc0 | 20719 | |
18bd398b | 20720 | if (optind < (argc - 1)) |
32ec8896 | 20721 | show_name = TRUE; |
5656ba2c L |
20722 | else if (optind >= argc) |
20723 | { | |
20724 | warn (_("Nothing to do.\n")); | |
20725 | usage (stderr); | |
20726 | } | |
18bd398b | 20727 | |
32ec8896 | 20728 | err = FALSE; |
252b5132 | 20729 | while (optind < argc) |
32ec8896 NC |
20730 | if (! process_file (argv[optind++])) |
20731 | err = TRUE; | |
252b5132 | 20732 | |
dda8d76d NC |
20733 | if (cmdline.dump_sects != NULL) |
20734 | free (cmdline.dump_sects); | |
252b5132 | 20735 | |
7d9813f1 NA |
20736 | free (dump_ctf_symtab_name); |
20737 | free (dump_ctf_strtab_name); | |
20738 | free (dump_ctf_parent_name); | |
20739 | ||
32ec8896 | 20740 | return err ? EXIT_FAILURE : EXIT_SUCCESS; |
252b5132 | 20741 | } |