]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - binutils/readelf.c
Re: PR27723, Internal error in select_cie_for_fde
[thirdparty/binutils-gdb.git] / binutils / readelf.c
CommitLineData
252b5132 1/* readelf.c -- display contents of an ELF format file
250d07de 2 Copyright (C) 1998-2021 Free Software Foundation, Inc.
252b5132
RH
3
4 Originally developed by Eric Youngdale <eric@andante.jic.com>
12ab83a9 5 Modifications by Nick Clifton <nickc@redhat.com>
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>
7bfd842d 47#include <wchar.h>
252b5132 48
a952a375 49#if __GNUC__ >= 2
19936277 50/* Define BFD64 here, even if our default architecture is 32 bit ELF
a952a375 51 as this will allow us to read in and parse 64bit and 32bit ELF files.
b34976b6 52 Only do this if we believe that the compiler can support a 64 bit
a952a375 53 data type. For now we only rely on GCC being able to do this. */
19936277 54#define BFD64
a952a375
NC
55#endif
56
3db64b00
AM
57#include "bfd.h"
58#include "bucomm.h"
3284fe0c 59#include "elfcomm.h"
19e6b90e 60#include "dwarf.h"
7d9813f1 61#include "ctf-api.h"
79bc120c 62#include "demangle.h"
252b5132
RH
63
64#include "elf/common.h"
65#include "elf/external.h"
66#include "elf/internal.h"
252b5132 67
4b78141a
NC
68
69/* Included here, before RELOC_MACROS_GEN_FUNC is defined, so that
70 we can obtain the H8 reloc numbers. We need these for the
71 get_reloc_size() function. We include h8.h again after defining
72 RELOC_MACROS_GEN_FUNC so that we get the naming function as well. */
73
74#include "elf/h8.h"
75#undef _ELF_H8_H
76
77/* Undo the effects of #including reloc-macros.h. */
78
79#undef START_RELOC_NUMBERS
80#undef RELOC_NUMBER
81#undef FAKE_RELOC
82#undef EMPTY_RELOC
83#undef END_RELOC_NUMBERS
84#undef _RELOC_MACROS_H
85
252b5132
RH
86/* The following headers use the elf/reloc-macros.h file to
87 automatically generate relocation recognition functions
88 such as elf_mips_reloc_type() */
89
90#define RELOC_MACROS_GEN_FUNC
91
a06ea964 92#include "elf/aarch64.h"
252b5132 93#include "elf/alpha.h"
3b16e843 94#include "elf/arc.h"
252b5132 95#include "elf/arm.h"
3b16e843 96#include "elf/avr.h"
1d65ded4 97#include "elf/bfin.h"
60bca95a 98#include "elf/cr16.h"
3b16e843 99#include "elf/cris.h"
1c0d3aa6 100#include "elf/crx.h"
b8891f8d 101#include "elf/csky.h"
252b5132
RH
102#include "elf/d10v.h"
103#include "elf/d30v.h"
d172d4ba 104#include "elf/dlx.h"
aca4efc7 105#include "elf/bpf.h"
cfb8c092 106#include "elf/epiphany.h"
252b5132 107#include "elf/fr30.h"
5c70f934 108#include "elf/frv.h"
3f8107ab 109#include "elf/ft32.h"
3b16e843
NC
110#include "elf/h8.h"
111#include "elf/hppa.h"
112#include "elf/i386.h"
f954747f
AM
113#include "elf/i370.h"
114#include "elf/i860.h"
115#include "elf/i960.h"
3b16e843 116#include "elf/ia64.h"
1e4cf259 117#include "elf/ip2k.h"
84e94c90 118#include "elf/lm32.h"
1c0d3aa6 119#include "elf/iq2000.h"
49f58d10 120#include "elf/m32c.h"
3b16e843
NC
121#include "elf/m32r.h"
122#include "elf/m68k.h"
75751cd9 123#include "elf/m68hc11.h"
7b4ae824 124#include "elf/s12z.h"
252b5132 125#include "elf/mcore.h"
15ab5209 126#include "elf/mep.h"
a3c62988 127#include "elf/metag.h"
7ba29e2a 128#include "elf/microblaze.h"
3b16e843 129#include "elf/mips.h"
3c3bdf30 130#include "elf/mmix.h"
3b16e843
NC
131#include "elf/mn10200.h"
132#include "elf/mn10300.h"
5506d11a 133#include "elf/moxie.h"
4970f871 134#include "elf/mt.h"
2469cfa2 135#include "elf/msp430.h"
35c08157 136#include "elf/nds32.h"
fe944acf 137#include "elf/nfp.h"
13761a11 138#include "elf/nios2.h"
73589c9d 139#include "elf/or1k.h"
7d466069 140#include "elf/pj.h"
3b16e843 141#include "elf/ppc.h"
c833c019 142#include "elf/ppc64.h"
2b100bb5 143#include "elf/pru.h"
03336641 144#include "elf/riscv.h"
99c513f6 145#include "elf/rl78.h"
c7927a3c 146#include "elf/rx.h"
a85d7ed0 147#include "elf/s390.h"
1c0d3aa6 148#include "elf/score.h"
3b16e843
NC
149#include "elf/sh.h"
150#include "elf/sparc.h"
e9f53129 151#include "elf/spu.h"
40b36596 152#include "elf/tic6x.h"
aa137e4d
NC
153#include "elf/tilegx.h"
154#include "elf/tilepro.h"
3b16e843 155#include "elf/v850.h"
179d3252 156#include "elf/vax.h"
619ed720 157#include "elf/visium.h"
f96bd6c2 158#include "elf/wasm32.h"
3b16e843 159#include "elf/x86-64.h"
c29aca4a 160#include "elf/xc16x.h"
f6c1a2d5 161#include "elf/xgate.h"
93fbbb04 162#include "elf/xstormy16.h"
88da6820 163#include "elf/xtensa.h"
6655dba2 164#include "elf/z80.h"
252b5132 165
252b5132 166#include "getopt.h"
566b0d53 167#include "libiberty.h"
09c11c86 168#include "safe-ctype.h"
2cf0635d 169#include "filenames.h"
252b5132 170
15b42fb0
AM
171#ifndef offsetof
172#define offsetof(TYPE, MEMBER) ((size_t) &(((TYPE *) 0)->MEMBER))
173#endif
174
6a40cf0c
NC
175typedef struct elf_section_list
176{
dda8d76d
NC
177 Elf_Internal_Shdr * hdr;
178 struct elf_section_list * next;
6a40cf0c
NC
179} elf_section_list;
180
dda8d76d
NC
181/* Flag bits indicating particular types of dump. */
182#define HEX_DUMP (1 << 0) /* The -x command line switch. */
183#define DISASS_DUMP (1 << 1) /* The -i command line switch. */
184#define DEBUG_DUMP (1 << 2) /* The -w command line switch. */
185#define STRING_DUMP (1 << 3) /* The -p command line switch. */
186#define RELOC_DUMP (1 << 4) /* The -R command line switch. */
d344b407 187#define CTF_DUMP (1 << 5) /* The --ctf command line switch. */
dda8d76d
NC
188
189typedef unsigned char dump_type;
190
191/* A linked list of the section names for which dumps were requested. */
192struct dump_list_entry
193{
194 char * name;
195 dump_type type;
196 struct dump_list_entry * next;
197};
198
6431e409
AM
199/* A dynamic array of flags indicating for which sections a dump
200 has been requested via command line switches. */
1b513401
NC
201struct dump_data
202{
6431e409
AM
203 dump_type * dump_sects;
204 unsigned int num_dump_sects;
205};
206
207static struct dump_data cmdline;
208
209static struct dump_list_entry * dump_sects_byname;
210
2cf0635d 211char * program_name = "readelf";
dda8d76d 212
015dc7e1
AM
213static bool show_name = false;
214static bool do_dynamic = false;
215static bool do_syms = false;
216static bool do_dyn_syms = false;
217static bool do_lto_syms = false;
218static bool do_reloc = false;
219static bool do_sections = false;
220static bool do_section_groups = false;
221static bool do_section_details = false;
222static bool do_segments = false;
223static bool do_unwind = false;
224static bool do_using_dynamic = false;
225static bool do_header = false;
226static bool do_dump = false;
227static bool do_version = false;
228static bool do_histogram = false;
229static bool do_debugging = false;
230static bool do_ctf = false;
231static bool do_arch = false;
232static bool do_notes = false;
233static bool do_archive_index = false;
234static bool check_all = false;
235static bool is_32bit_elf = false;
236static bool decompress_dumps = false;
237static bool do_not_show_symbol_truncation = false;
238static bool do_demangle = false; /* Pretty print C++ symbol names. */
239static bool process_links = false;
79bc120c 240static int demangle_flags = DMGL_ANSI | DMGL_PARAMS;
252b5132 241
7d9813f1
NA
242static char *dump_ctf_parent_name;
243static char *dump_ctf_symtab_name;
244static char *dump_ctf_strtab_name;
245
e4b17d5c
L
246struct group_list
247{
dda8d76d
NC
248 struct group_list * next;
249 unsigned int section_index;
e4b17d5c
L
250};
251
252struct group
253{
dda8d76d
NC
254 struct group_list * root;
255 unsigned int group_index;
e4b17d5c
L
256};
257
978c4450
AM
258typedef struct filedata
259{
260 const char * file_name;
015dc7e1 261 bool is_separate;
978c4450
AM
262 FILE * handle;
263 bfd_size_type file_size;
264 Elf_Internal_Ehdr file_header;
265 Elf_Internal_Shdr * section_headers;
266 Elf_Internal_Phdr * program_headers;
267 char * string_table;
268 unsigned long string_table_length;
269 unsigned long archive_file_offset;
270 unsigned long archive_file_size;
271 unsigned long dynamic_addr;
272 bfd_size_type dynamic_size;
273 size_t dynamic_nent;
274 Elf_Internal_Dyn * dynamic_section;
8ac10c5b 275 Elf_Internal_Shdr * dynamic_strtab_section;
978c4450
AM
276 char * dynamic_strings;
277 unsigned long dynamic_strings_length;
8ac10c5b 278 Elf_Internal_Shdr * dynamic_symtab_section;
978c4450
AM
279 unsigned long num_dynamic_syms;
280 Elf_Internal_Sym * dynamic_symbols;
281 bfd_vma version_info[16];
282 unsigned int dynamic_syminfo_nent;
283 Elf_Internal_Syminfo * dynamic_syminfo;
284 unsigned long dynamic_syminfo_offset;
285 bfd_size_type nbuckets;
286 bfd_size_type nchains;
287 bfd_vma * buckets;
288 bfd_vma * chains;
289 bfd_size_type ngnubuckets;
290 bfd_size_type ngnuchains;
291 bfd_vma * gnubuckets;
292 bfd_vma * gnuchains;
293 bfd_vma * mipsxlat;
294 bfd_vma gnusymidx;
295 char program_interpreter[PATH_MAX];
296 bfd_vma dynamic_info[DT_ENCODING];
297 bfd_vma dynamic_info_DT_GNU_HASH;
298 bfd_vma dynamic_info_DT_MIPS_XHASH;
299 elf_section_list * symtab_shndx_list;
300 size_t group_count;
301 struct group * section_groups;
302 struct group ** section_headers_groups;
303 /* A dynamic array of flags indicating for which sections a dump of
304 some kind has been requested. It is reset on a per-object file
305 basis and then initialised from the cmdline_dump_sects array,
306 the results of interpreting the -w switch, and the
307 dump_sects_byname list. */
308 struct dump_data dump;
309} Filedata;
aef1f6d0 310
c256ffe7 311/* How to print a vma value. */
843dd992
NC
312typedef enum print_mode
313{
314 HEX,
315 DEC,
316 DEC_5,
317 UNSIGNED,
318 PREFIX_HEX,
319 FULL_HEX,
320 LONG_HEX
321}
322print_mode;
323
bb4d2ac2
L
324/* Versioned symbol info. */
325enum versioned_symbol_info
326{
327 symbol_undefined,
328 symbol_hidden,
329 symbol_public
330};
331
32ec8896 332static const char * get_symbol_version_string
015dc7e1 333 (Filedata *, bool, const char *, unsigned long, unsigned,
32ec8896 334 Elf_Internal_Sym *, enum versioned_symbol_info *, unsigned short *);
bb4d2ac2 335
9c19a809
NC
336#define UNKNOWN -1
337
b9e920ec
AM
338#define SECTION_NAME(X) \
339 (filedata->string_table + (X)->sh_name)
340
341#define SECTION_NAME_VALID(X) \
342 ((X) != NULL \
343 && filedata->string_table != NULL \
344 && (X)->sh_name < filedata->string_table_length)
345
346#define SECTION_NAME_PRINT(X) \
347 ((X) == NULL ? _("<none>") \
348 : filedata->string_table == NULL ? _("<no-strings>") \
349 : (X)->sh_name >= filedata->string_table_length ? _("<corrupt>") \
350 : filedata->string_table + (X)->sh_name)
252b5132 351
ee42cf8c 352#define DT_VERSIONTAGIDX(tag) (DT_VERNEEDNUM - (tag)) /* Reverse order! */
252b5132 353
ba5cdace
NC
354#define GET_ELF_SYMBOLS(file, section, sym_count) \
355 (is_32bit_elf ? get_32bit_elf_symbols (file, section, sym_count) \
356 : get_64bit_elf_symbols (file, section, sym_count))
9ea033b2 357
10ca4b04
L
358#define VALID_SYMBOL_NAME(strtab, strtab_size, offset) \
359 (strtab != NULL && offset < strtab_size)
978c4450
AM
360#define VALID_DYNAMIC_NAME(filedata, offset) \
361 VALID_SYMBOL_NAME (filedata->dynamic_strings, \
362 filedata->dynamic_strings_length, offset)
d79b3d50
NC
363/* GET_DYNAMIC_NAME asssumes that VALID_DYNAMIC_NAME has
364 already been called and verified that the string exists. */
978c4450
AM
365#define GET_DYNAMIC_NAME(filedata, offset) \
366 (filedata->dynamic_strings + offset)
18bd398b 367
61865e30
NC
368#define REMOVE_ARCH_BITS(ADDR) \
369 do \
370 { \
dda8d76d 371 if (filedata->file_header.e_machine == EM_ARM) \
61865e30
NC
372 (ADDR) &= ~1; \
373 } \
374 while (0)
f16a9783
MS
375
376/* Get the correct GNU hash section name. */
978c4450
AM
377#define GNU_HASH_SECTION_NAME(filedata) \
378 filedata->dynamic_info_DT_MIPS_XHASH ? ".MIPS.xhash" : ".gnu.hash"
d79b3d50 379\f
66cfc0fd
AM
380/* Print a BFD_VMA to an internal buffer, for use in error messages.
381 BFD_FMA_FMT can't be used in translated strings. */
382
383static const char *
384bfd_vmatoa (char *fmtch, bfd_vma value)
385{
386 /* bfd_vmatoa is used more then once in a printf call for output.
387 Cycle through an array of buffers. */
388 static int buf_pos = 0;
389 static struct bfd_vmatoa_buf
390 {
391 char place[64];
392 } buf[4];
393 char *ret;
394 char fmt[32];
395
396 ret = buf[buf_pos++].place;
397 buf_pos %= ARRAY_SIZE (buf);
398
399 sprintf (fmt, "%%%s%s", BFD_VMA_FMT, fmtch);
400 snprintf (ret, sizeof (buf[0].place), fmt, value);
401 return ret;
402}
403
dda8d76d
NC
404/* Retrieve NMEMB structures, each SIZE bytes long from FILEDATA starting at
405 OFFSET + the offset of the current archive member, if we are examining an
406 archive. Put the retrieved data into VAR, if it is not NULL. Otherwise
407 allocate a buffer using malloc and fill that. In either case return the
408 pointer to the start of the retrieved data or NULL if something went wrong.
409 If something does go wrong and REASON is not NULL then emit an error
410 message using REASON as part of the context. */
59245841 411
c256ffe7 412static void *
dda8d76d
NC
413get_data (void * var,
414 Filedata * filedata,
415 unsigned long offset,
416 bfd_size_type size,
417 bfd_size_type nmemb,
418 const char * reason)
a6e9f9df 419{
2cf0635d 420 void * mvar;
57028622 421 bfd_size_type amt = size * nmemb;
a6e9f9df 422
c256ffe7 423 if (size == 0 || nmemb == 0)
a6e9f9df
AM
424 return NULL;
425
57028622
NC
426 /* If the size_t type is smaller than the bfd_size_type, eg because
427 you are building a 32-bit tool on a 64-bit host, then make sure
428 that when the sizes are cast to (size_t) no information is lost. */
7c1c1904
AM
429 if ((size_t) size != size
430 || (size_t) nmemb != nmemb
431 || (size_t) amt != amt)
57028622
NC
432 {
433 if (reason)
66cfc0fd
AM
434 error (_("Size truncation prevents reading %s"
435 " elements of size %s for %s\n"),
436 bfd_vmatoa ("u", nmemb), bfd_vmatoa ("u", size), reason);
57028622
NC
437 return NULL;
438 }
439
440 /* Check for size overflow. */
7c1c1904 441 if (amt / size != nmemb || (size_t) amt + 1 == 0)
57028622
NC
442 {
443 if (reason)
66cfc0fd
AM
444 error (_("Size overflow prevents reading %s"
445 " elements of size %s for %s\n"),
446 bfd_vmatoa ("u", nmemb), bfd_vmatoa ("u", size), reason);
57028622
NC
447 return NULL;
448 }
449
c22b42ce 450 /* Be kind to memory checkers (eg valgrind, address sanitizer) by not
c9c1d674 451 attempting to allocate memory when the read is bound to fail. */
978c4450
AM
452 if (filedata->archive_file_offset > filedata->file_size
453 || offset > filedata->file_size - filedata->archive_file_offset
454 || amt > filedata->file_size - filedata->archive_file_offset - offset)
a6e9f9df 455 {
049b0c3a 456 if (reason)
66cfc0fd
AM
457 error (_("Reading %s bytes extends past end of file for %s\n"),
458 bfd_vmatoa ("u", amt), reason);
a6e9f9df
AM
459 return NULL;
460 }
461
978c4450
AM
462 if (fseek (filedata->handle, filedata->archive_file_offset + offset,
463 SEEK_SET))
071436c6
NC
464 {
465 if (reason)
c9c1d674 466 error (_("Unable to seek to 0x%lx for %s\n"),
978c4450 467 filedata->archive_file_offset + offset, reason);
071436c6
NC
468 return NULL;
469 }
470
a6e9f9df
AM
471 mvar = var;
472 if (mvar == NULL)
473 {
7c1c1904
AM
474 /* + 1 so that we can '\0' terminate invalid string table sections. */
475 mvar = malloc ((size_t) amt + 1);
a6e9f9df
AM
476
477 if (mvar == NULL)
478 {
049b0c3a 479 if (reason)
66cfc0fd
AM
480 error (_("Out of memory allocating %s bytes for %s\n"),
481 bfd_vmatoa ("u", amt), reason);
a6e9f9df
AM
482 return NULL;
483 }
c256ffe7 484
c9c1d674 485 ((char *) mvar)[amt] = '\0';
a6e9f9df
AM
486 }
487
dda8d76d 488 if (fread (mvar, (size_t) size, (size_t) nmemb, filedata->handle) != nmemb)
a6e9f9df 489 {
049b0c3a 490 if (reason)
66cfc0fd
AM
491 error (_("Unable to read in %s bytes of %s\n"),
492 bfd_vmatoa ("u", amt), reason);
a6e9f9df
AM
493 if (mvar != var)
494 free (mvar);
495 return NULL;
496 }
497
498 return mvar;
499}
500
32ec8896
NC
501/* Print a VMA value in the MODE specified.
502 Returns the number of characters displayed. */
cb8f3167 503
32ec8896 504static unsigned int
14a91970 505print_vma (bfd_vma vma, print_mode mode)
66543521 506{
32ec8896 507 unsigned int nc = 0;
66543521 508
14a91970 509 switch (mode)
66543521 510 {
14a91970
AM
511 case FULL_HEX:
512 nc = printf ("0x");
1a0670f3 513 /* Fall through. */
14a91970 514 case LONG_HEX:
f7a99963 515#ifdef BFD64
14a91970 516 if (is_32bit_elf)
437c2fb7 517 return nc + printf ("%8.8" BFD_VMA_FMT "x", vma);
f7a99963 518#endif
14a91970
AM
519 printf_vma (vma);
520 return nc + 16;
b19aac67 521
14a91970
AM
522 case DEC_5:
523 if (vma <= 99999)
524 return printf ("%5" BFD_VMA_FMT "d", vma);
1a0670f3 525 /* Fall through. */
14a91970
AM
526 case PREFIX_HEX:
527 nc = printf ("0x");
1a0670f3 528 /* Fall through. */
14a91970
AM
529 case HEX:
530 return nc + printf ("%" BFD_VMA_FMT "x", vma);
b19aac67 531
14a91970
AM
532 case DEC:
533 return printf ("%" BFD_VMA_FMT "d", vma);
b19aac67 534
14a91970
AM
535 case UNSIGNED:
536 return printf ("%" BFD_VMA_FMT "u", vma);
32ec8896
NC
537
538 default:
539 /* FIXME: Report unrecognised mode ? */
540 return 0;
f7a99963 541 }
f7a99963
NC
542}
543
7bfd842d 544/* Display a symbol on stdout. Handles the display of control characters and
3bfcb652 545 multibye characters (assuming the host environment supports them).
31104126 546
7bfd842d
NC
547 Display at most abs(WIDTH) characters, truncating as necessary, unless do_wide is true.
548
0942c7ab
NC
549 If truncation will happen and do_not_show_symbol_truncation is FALSE then display
550 abs(WIDTH) - 5 characters followed by "[...]".
551
7bfd842d
NC
552 If WIDTH is negative then ensure that the output is at least (- WIDTH) characters,
553 padding as necessary.
171191ba
NC
554
555 Returns the number of emitted characters. */
556
557static unsigned int
0942c7ab 558print_symbol (signed int width, const char * symbol)
31104126 559{
015dc7e1
AM
560 bool extra_padding = false;
561 bool do_dots = false;
32ec8896 562 signed int num_printed = 0;
3bfcb652 563#ifdef HAVE_MBSTATE_T
7bfd842d 564 mbstate_t state;
3bfcb652 565#endif
32ec8896 566 unsigned int width_remaining;
79bc120c 567 const void * alloced_symbol = NULL;
961c521f 568
7bfd842d 569 if (width < 0)
961c521f 570 {
88305e1b 571 /* Keep the width positive. This helps the code below. */
961c521f 572 width = - width;
015dc7e1 573 extra_padding = true;
0b4362b0 574 }
56d8f8a9
NC
575 else if (width == 0)
576 return 0;
961c521f 577
7bfd842d
NC
578 if (do_wide)
579 /* Set the remaining width to a very large value.
580 This simplifies the code below. */
581 width_remaining = INT_MAX;
582 else
0942c7ab
NC
583 {
584 width_remaining = width;
585 if (! do_not_show_symbol_truncation
586 && (int) strlen (symbol) > width)
587 {
588 width_remaining -= 5;
589 if ((int) width_remaining < 0)
590 width_remaining = 0;
015dc7e1 591 do_dots = true;
0942c7ab
NC
592 }
593 }
cb8f3167 594
3bfcb652 595#ifdef HAVE_MBSTATE_T
7bfd842d
NC
596 /* Initialise the multibyte conversion state. */
597 memset (& state, 0, sizeof (state));
3bfcb652 598#endif
961c521f 599
79bc120c
NC
600 if (do_demangle && *symbol)
601 {
602 const char * res = cplus_demangle (symbol, demangle_flags);
603
604 if (res != NULL)
605 alloced_symbol = symbol = res;
606 }
607
7bfd842d
NC
608 while (width_remaining)
609 {
610 size_t n;
7bfd842d 611 const char c = *symbol++;
961c521f 612
7bfd842d 613 if (c == 0)
961c521f
NC
614 break;
615
7bfd842d
NC
616 /* Do not print control characters directly as they can affect terminal
617 settings. Such characters usually appear in the names generated
618 by the assembler for local labels. */
619 if (ISCNTRL (c))
961c521f 620 {
7bfd842d 621 if (width_remaining < 2)
961c521f
NC
622 break;
623
7bfd842d
NC
624 printf ("^%c", c + 0x40);
625 width_remaining -= 2;
171191ba 626 num_printed += 2;
961c521f 627 }
7bfd842d
NC
628 else if (ISPRINT (c))
629 {
630 putchar (c);
631 width_remaining --;
632 num_printed ++;
633 }
961c521f
NC
634 else
635 {
3bfcb652
NC
636#ifdef HAVE_MBSTATE_T
637 wchar_t w;
638#endif
7bfd842d
NC
639 /* Let printf do the hard work of displaying multibyte characters. */
640 printf ("%.1s", symbol - 1);
641 width_remaining --;
642 num_printed ++;
643
3bfcb652 644#ifdef HAVE_MBSTATE_T
7bfd842d
NC
645 /* Try to find out how many bytes made up the character that was
646 just printed. Advance the symbol pointer past the bytes that
647 were displayed. */
648 n = mbrtowc (& w, symbol - 1, MB_CUR_MAX, & state);
3bfcb652
NC
649#else
650 n = 1;
651#endif
7bfd842d
NC
652 if (n != (size_t) -1 && n != (size_t) -2 && n > 0)
653 symbol += (n - 1);
961c521f 654 }
961c521f 655 }
171191ba 656
0942c7ab
NC
657 if (do_dots)
658 num_printed += printf ("[...]");
659
7bfd842d 660 if (extra_padding && num_printed < width)
171191ba
NC
661 {
662 /* Fill in the remaining spaces. */
7bfd842d
NC
663 printf ("%-*s", width - num_printed, " ");
664 num_printed = width;
171191ba
NC
665 }
666
79bc120c 667 free ((void *) alloced_symbol);
171191ba 668 return num_printed;
31104126
NC
669}
670
1449284b 671/* Returns a pointer to a static buffer containing a printable version of
74e1a04b
NC
672 the given section's name. Like print_symbol, except that it does not try
673 to print multibyte characters, it just interprets them as hex values. */
674
675static const char *
dda8d76d 676printable_section_name (Filedata * filedata, const Elf_Internal_Shdr * sec)
74e1a04b 677{
ca0e11aa 678#define MAX_PRINT_SEC_NAME_LEN 256
74e1a04b 679 static char sec_name_buf [MAX_PRINT_SEC_NAME_LEN + 1];
b9e920ec 680 const char * name = SECTION_NAME_PRINT (sec);
74e1a04b
NC
681 char * buf = sec_name_buf;
682 char c;
683 unsigned int remaining = MAX_PRINT_SEC_NAME_LEN;
684
685 while ((c = * name ++) != 0)
686 {
687 if (ISCNTRL (c))
688 {
689 if (remaining < 2)
690 break;
948f632f 691
74e1a04b
NC
692 * buf ++ = '^';
693 * buf ++ = c + 0x40;
694 remaining -= 2;
695 }
696 else if (ISPRINT (c))
697 {
698 * buf ++ = c;
699 remaining -= 1;
700 }
701 else
702 {
703 static char hex[17] = "0123456789ABCDEF";
704
705 if (remaining < 4)
706 break;
707 * buf ++ = '<';
708 * buf ++ = hex[(c & 0xf0) >> 4];
709 * buf ++ = hex[c & 0x0f];
710 * buf ++ = '>';
711 remaining -= 4;
712 }
713
714 if (remaining == 0)
715 break;
716 }
717
718 * buf = 0;
719 return sec_name_buf;
720}
721
722static const char *
dda8d76d 723printable_section_name_from_index (Filedata * filedata, unsigned long ndx)
74e1a04b 724{
dda8d76d 725 if (ndx >= filedata->file_header.e_shnum)
74e1a04b
NC
726 return _("<corrupt>");
727
dda8d76d 728 return printable_section_name (filedata, filedata->section_headers + ndx);
74e1a04b
NC
729}
730
89fac5e3
RS
731/* Return a pointer to section NAME, or NULL if no such section exists. */
732
733static Elf_Internal_Shdr *
dda8d76d 734find_section (Filedata * filedata, const char * name)
89fac5e3
RS
735{
736 unsigned int i;
737
68807c3c
NC
738 if (filedata->section_headers == NULL)
739 return NULL;
dda8d76d
NC
740
741 for (i = 0; i < filedata->file_header.e_shnum; i++)
b9e920ec
AM
742 if (SECTION_NAME_VALID (filedata->section_headers + i)
743 && streq (SECTION_NAME (filedata->section_headers + i), name))
dda8d76d 744 return filedata->section_headers + i;
89fac5e3
RS
745
746 return NULL;
747}
748
0b6ae522
DJ
749/* Return a pointer to a section containing ADDR, or NULL if no such
750 section exists. */
751
752static Elf_Internal_Shdr *
dda8d76d 753find_section_by_address (Filedata * filedata, bfd_vma addr)
0b6ae522
DJ
754{
755 unsigned int i;
756
68807c3c
NC
757 if (filedata->section_headers == NULL)
758 return NULL;
759
dda8d76d 760 for (i = 0; i < filedata->file_header.e_shnum; i++)
0b6ae522 761 {
dda8d76d
NC
762 Elf_Internal_Shdr *sec = filedata->section_headers + i;
763
0b6ae522
DJ
764 if (addr >= sec->sh_addr && addr < sec->sh_addr + sec->sh_size)
765 return sec;
766 }
767
768 return NULL;
769}
770
071436c6 771static Elf_Internal_Shdr *
dda8d76d 772find_section_by_type (Filedata * filedata, unsigned int type)
071436c6
NC
773{
774 unsigned int i;
775
68807c3c
NC
776 if (filedata->section_headers == NULL)
777 return NULL;
778
dda8d76d 779 for (i = 0; i < filedata->file_header.e_shnum; i++)
071436c6 780 {
dda8d76d
NC
781 Elf_Internal_Shdr *sec = filedata->section_headers + i;
782
071436c6
NC
783 if (sec->sh_type == type)
784 return sec;
785 }
786
787 return NULL;
788}
789
657d0d47
CC
790/* Return a pointer to section NAME, or NULL if no such section exists,
791 restricted to the list of sections given in SET. */
792
793static Elf_Internal_Shdr *
dda8d76d 794find_section_in_set (Filedata * filedata, const char * name, unsigned int * set)
657d0d47
CC
795{
796 unsigned int i;
797
68807c3c
NC
798 if (filedata->section_headers == NULL)
799 return NULL;
800
657d0d47
CC
801 if (set != NULL)
802 {
803 while ((i = *set++) > 0)
b814a36d
NC
804 {
805 /* See PR 21156 for a reproducer. */
dda8d76d 806 if (i >= filedata->file_header.e_shnum)
b814a36d
NC
807 continue; /* FIXME: Should we issue an error message ? */
808
b9e920ec
AM
809 if (SECTION_NAME_VALID (filedata->section_headers + i)
810 && streq (SECTION_NAME (filedata->section_headers + i), name))
dda8d76d 811 return filedata->section_headers + i;
b814a36d 812 }
657d0d47
CC
813 }
814
dda8d76d 815 return find_section (filedata, name);
657d0d47
CC
816}
817
32ec8896 818/* Return TRUE if the current file is for IA-64 machine and OpenVMS ABI.
28f997cf
TG
819 This OS has so many departures from the ELF standard that we test it at
820 many places. */
821
015dc7e1 822static inline bool
dda8d76d 823is_ia64_vms (Filedata * filedata)
28f997cf 824{
dda8d76d
NC
825 return filedata->file_header.e_machine == EM_IA_64
826 && filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_OPENVMS;
28f997cf
TG
827}
828
bcedfee6 829/* Guess the relocation size commonly used by the specific machines. */
252b5132 830
015dc7e1 831static bool
2dc4cec1 832guess_is_rela (unsigned int e_machine)
252b5132 833{
9c19a809 834 switch (e_machine)
252b5132
RH
835 {
836 /* Targets that use REL relocations. */
252b5132 837 case EM_386:
22abe556 838 case EM_IAMCU:
f954747f 839 case EM_960:
e9f53129 840 case EM_ARM:
2b0337b0 841 case EM_D10V:
252b5132 842 case EM_CYGNUS_D10V:
e9f53129 843 case EM_DLX:
252b5132 844 case EM_MIPS:
4fe85591 845 case EM_MIPS_RS3_LE:
e9f53129 846 case EM_CYGNUS_M32R:
1c0d3aa6 847 case EM_SCORE:
f6c1a2d5 848 case EM_XGATE:
fe944acf 849 case EM_NFP:
aca4efc7 850 case EM_BPF:
015dc7e1 851 return false;
103f02d3 852
252b5132
RH
853 /* Targets that use RELA relocations. */
854 case EM_68K:
f954747f 855 case EM_860:
a06ea964 856 case EM_AARCH64:
cfb8c092 857 case EM_ADAPTEVA_EPIPHANY:
e9f53129
AM
858 case EM_ALPHA:
859 case EM_ALTERA_NIOS2:
886a2506
NC
860 case EM_ARC:
861 case EM_ARC_COMPACT:
862 case EM_ARC_COMPACT2:
e9f53129
AM
863 case EM_AVR:
864 case EM_AVR_OLD:
865 case EM_BLACKFIN:
60bca95a 866 case EM_CR16:
e9f53129
AM
867 case EM_CRIS:
868 case EM_CRX:
b8891f8d 869 case EM_CSKY:
2b0337b0 870 case EM_D30V:
252b5132 871 case EM_CYGNUS_D30V:
2b0337b0 872 case EM_FR30:
3f8107ab 873 case EM_FT32:
252b5132 874 case EM_CYGNUS_FR30:
5c70f934 875 case EM_CYGNUS_FRV:
e9f53129
AM
876 case EM_H8S:
877 case EM_H8_300:
878 case EM_H8_300H:
800eeca4 879 case EM_IA_64:
1e4cf259
NC
880 case EM_IP2K:
881 case EM_IP2K_OLD:
3b36097d 882 case EM_IQ2000:
84e94c90 883 case EM_LATTICEMICO32:
ff7eeb89 884 case EM_M32C_OLD:
49f58d10 885 case EM_M32C:
e9f53129
AM
886 case EM_M32R:
887 case EM_MCORE:
15ab5209 888 case EM_CYGNUS_MEP:
a3c62988 889 case EM_METAG:
e9f53129
AM
890 case EM_MMIX:
891 case EM_MN10200:
892 case EM_CYGNUS_MN10200:
893 case EM_MN10300:
894 case EM_CYGNUS_MN10300:
5506d11a 895 case EM_MOXIE:
e9f53129
AM
896 case EM_MSP430:
897 case EM_MSP430_OLD:
d031aafb 898 case EM_MT:
35c08157 899 case EM_NDS32:
64fd6348 900 case EM_NIOS32:
73589c9d 901 case EM_OR1K:
e9f53129
AM
902 case EM_PPC64:
903 case EM_PPC:
2b100bb5 904 case EM_TI_PRU:
e23eba97 905 case EM_RISCV:
99c513f6 906 case EM_RL78:
c7927a3c 907 case EM_RX:
e9f53129
AM
908 case EM_S390:
909 case EM_S390_OLD:
910 case EM_SH:
911 case EM_SPARC:
912 case EM_SPARC32PLUS:
913 case EM_SPARCV9:
914 case EM_SPU:
40b36596 915 case EM_TI_C6000:
aa137e4d
NC
916 case EM_TILEGX:
917 case EM_TILEPRO:
708e2187 918 case EM_V800:
e9f53129
AM
919 case EM_V850:
920 case EM_CYGNUS_V850:
921 case EM_VAX:
619ed720 922 case EM_VISIUM:
e9f53129 923 case EM_X86_64:
8a9036a4 924 case EM_L1OM:
7a9068fe 925 case EM_K1OM:
e9f53129
AM
926 case EM_XSTORMY16:
927 case EM_XTENSA:
928 case EM_XTENSA_OLD:
7ba29e2a
NC
929 case EM_MICROBLAZE:
930 case EM_MICROBLAZE_OLD:
f96bd6c2 931 case EM_WEBASSEMBLY:
015dc7e1 932 return true;
103f02d3 933
e9f53129
AM
934 case EM_68HC05:
935 case EM_68HC08:
936 case EM_68HC11:
937 case EM_68HC16:
938 case EM_FX66:
939 case EM_ME16:
d1133906 940 case EM_MMA:
d1133906
NC
941 case EM_NCPU:
942 case EM_NDR1:
e9f53129 943 case EM_PCP:
d1133906 944 case EM_ST100:
e9f53129 945 case EM_ST19:
d1133906 946 case EM_ST7:
e9f53129
AM
947 case EM_ST9PLUS:
948 case EM_STARCORE:
d1133906 949 case EM_SVX:
e9f53129 950 case EM_TINYJ:
9c19a809
NC
951 default:
952 warn (_("Don't know about relocations on this machine architecture\n"));
015dc7e1 953 return false;
9c19a809
NC
954 }
955}
252b5132 956
dda8d76d 957/* Load RELA type relocations from FILEDATA at REL_OFFSET extending for REL_SIZE bytes.
32ec8896
NC
958 Returns TRUE upon success, FALSE otherwise. If successful then a
959 pointer to a malloc'ed buffer containing the relocs is placed in *RELASP,
960 and the number of relocs loaded is placed in *NRELASP. It is the caller's
961 responsibility to free the allocated buffer. */
962
015dc7e1 963static bool
dda8d76d
NC
964slurp_rela_relocs (Filedata * filedata,
965 unsigned long rel_offset,
966 unsigned long rel_size,
967 Elf_Internal_Rela ** relasp,
968 unsigned long * nrelasp)
9c19a809 969{
2cf0635d 970 Elf_Internal_Rela * relas;
8b73c356 971 size_t nrelas;
4d6ed7c8 972 unsigned int i;
252b5132 973
4d6ed7c8
NC
974 if (is_32bit_elf)
975 {
2cf0635d 976 Elf32_External_Rela * erelas;
103f02d3 977
dda8d76d 978 erelas = (Elf32_External_Rela *) get_data (NULL, filedata, rel_offset, 1,
9cf03b7e 979 rel_size, _("32-bit relocation data"));
a6e9f9df 980 if (!erelas)
015dc7e1 981 return false;
252b5132 982
4d6ed7c8 983 nrelas = rel_size / sizeof (Elf32_External_Rela);
103f02d3 984
3f5e193b
NC
985 relas = (Elf_Internal_Rela *) cmalloc (nrelas,
986 sizeof (Elf_Internal_Rela));
103f02d3 987
4d6ed7c8
NC
988 if (relas == NULL)
989 {
c256ffe7 990 free (erelas);
591a748a 991 error (_("out of memory parsing relocs\n"));
015dc7e1 992 return false;
4d6ed7c8 993 }
103f02d3 994
4d6ed7c8
NC
995 for (i = 0; i < nrelas; i++)
996 {
997 relas[i].r_offset = BYTE_GET (erelas[i].r_offset);
998 relas[i].r_info = BYTE_GET (erelas[i].r_info);
598aaa76 999 relas[i].r_addend = BYTE_GET_SIGNED (erelas[i].r_addend);
4d6ed7c8 1000 }
103f02d3 1001
4d6ed7c8
NC
1002 free (erelas);
1003 }
1004 else
1005 {
2cf0635d 1006 Elf64_External_Rela * erelas;
103f02d3 1007
dda8d76d 1008 erelas = (Elf64_External_Rela *) get_data (NULL, filedata, rel_offset, 1,
9cf03b7e 1009 rel_size, _("64-bit relocation data"));
a6e9f9df 1010 if (!erelas)
015dc7e1 1011 return false;
4d6ed7c8
NC
1012
1013 nrelas = rel_size / sizeof (Elf64_External_Rela);
103f02d3 1014
3f5e193b
NC
1015 relas = (Elf_Internal_Rela *) cmalloc (nrelas,
1016 sizeof (Elf_Internal_Rela));
103f02d3 1017
4d6ed7c8
NC
1018 if (relas == NULL)
1019 {
c256ffe7 1020 free (erelas);
591a748a 1021 error (_("out of memory parsing relocs\n"));
015dc7e1 1022 return false;
9c19a809 1023 }
4d6ed7c8
NC
1024
1025 for (i = 0; i < nrelas; i++)
9c19a809 1026 {
66543521
AM
1027 relas[i].r_offset = BYTE_GET (erelas[i].r_offset);
1028 relas[i].r_info = BYTE_GET (erelas[i].r_info);
598aaa76 1029 relas[i].r_addend = BYTE_GET_SIGNED (erelas[i].r_addend);
861fb55a
DJ
1030
1031 /* The #ifdef BFD64 below is to prevent a compile time
1032 warning. We know that if we do not have a 64 bit data
1033 type that we will never execute this code anyway. */
1034#ifdef BFD64
dda8d76d
NC
1035 if (filedata->file_header.e_machine == EM_MIPS
1036 && filedata->file_header.e_ident[EI_DATA] != ELFDATA2MSB)
861fb55a
DJ
1037 {
1038 /* In little-endian objects, r_info isn't really a
1039 64-bit little-endian value: it has a 32-bit
1040 little-endian symbol index followed by four
1041 individual byte fields. Reorder INFO
1042 accordingly. */
91d6fa6a
NC
1043 bfd_vma inf = relas[i].r_info;
1044 inf = (((inf & 0xffffffff) << 32)
1045 | ((inf >> 56) & 0xff)
1046 | ((inf >> 40) & 0xff00)
1047 | ((inf >> 24) & 0xff0000)
1048 | ((inf >> 8) & 0xff000000));
1049 relas[i].r_info = inf;
861fb55a
DJ
1050 }
1051#endif /* BFD64 */
4d6ed7c8 1052 }
103f02d3 1053
4d6ed7c8
NC
1054 free (erelas);
1055 }
32ec8896 1056
4d6ed7c8
NC
1057 *relasp = relas;
1058 *nrelasp = nrelas;
015dc7e1 1059 return true;
4d6ed7c8 1060}
103f02d3 1061
dda8d76d 1062/* Load REL type relocations from FILEDATA at REL_OFFSET extending for REL_SIZE bytes.
32ec8896
NC
1063 Returns TRUE upon success, FALSE otherwise. If successful then a
1064 pointer to a malloc'ed buffer containing the relocs is placed in *RELSP,
1065 and the number of relocs loaded is placed in *NRELSP. It is the caller's
1066 responsibility to free the allocated buffer. */
1067
015dc7e1 1068static bool
dda8d76d
NC
1069slurp_rel_relocs (Filedata * filedata,
1070 unsigned long rel_offset,
1071 unsigned long rel_size,
1072 Elf_Internal_Rela ** relsp,
1073 unsigned long * nrelsp)
4d6ed7c8 1074{
2cf0635d 1075 Elf_Internal_Rela * rels;
8b73c356 1076 size_t nrels;
4d6ed7c8 1077 unsigned int i;
103f02d3 1078
4d6ed7c8
NC
1079 if (is_32bit_elf)
1080 {
2cf0635d 1081 Elf32_External_Rel * erels;
103f02d3 1082
dda8d76d 1083 erels = (Elf32_External_Rel *) get_data (NULL, filedata, rel_offset, 1,
9cf03b7e 1084 rel_size, _("32-bit relocation data"));
a6e9f9df 1085 if (!erels)
015dc7e1 1086 return false;
103f02d3 1087
4d6ed7c8 1088 nrels = rel_size / sizeof (Elf32_External_Rel);
103f02d3 1089
3f5e193b 1090 rels = (Elf_Internal_Rela *) cmalloc (nrels, sizeof (Elf_Internal_Rela));
103f02d3 1091
4d6ed7c8
NC
1092 if (rels == NULL)
1093 {
c256ffe7 1094 free (erels);
591a748a 1095 error (_("out of memory parsing relocs\n"));
015dc7e1 1096 return false;
4d6ed7c8
NC
1097 }
1098
1099 for (i = 0; i < nrels; i++)
1100 {
1101 rels[i].r_offset = BYTE_GET (erels[i].r_offset);
1102 rels[i].r_info = BYTE_GET (erels[i].r_info);
c8286bd1 1103 rels[i].r_addend = 0;
9ea033b2 1104 }
4d6ed7c8
NC
1105
1106 free (erels);
9c19a809
NC
1107 }
1108 else
1109 {
2cf0635d 1110 Elf64_External_Rel * erels;
9ea033b2 1111
dda8d76d 1112 erels = (Elf64_External_Rel *) get_data (NULL, filedata, rel_offset, 1,
9cf03b7e 1113 rel_size, _("64-bit relocation data"));
a6e9f9df 1114 if (!erels)
015dc7e1 1115 return false;
103f02d3 1116
4d6ed7c8 1117 nrels = rel_size / sizeof (Elf64_External_Rel);
103f02d3 1118
3f5e193b 1119 rels = (Elf_Internal_Rela *) cmalloc (nrels, sizeof (Elf_Internal_Rela));
103f02d3 1120
4d6ed7c8 1121 if (rels == NULL)
9c19a809 1122 {
c256ffe7 1123 free (erels);
591a748a 1124 error (_("out of memory parsing relocs\n"));
015dc7e1 1125 return false;
4d6ed7c8 1126 }
103f02d3 1127
4d6ed7c8
NC
1128 for (i = 0; i < nrels; i++)
1129 {
66543521
AM
1130 rels[i].r_offset = BYTE_GET (erels[i].r_offset);
1131 rels[i].r_info = BYTE_GET (erels[i].r_info);
c8286bd1 1132 rels[i].r_addend = 0;
861fb55a
DJ
1133
1134 /* The #ifdef BFD64 below is to prevent a compile time
1135 warning. We know that if we do not have a 64 bit data
1136 type that we will never execute this code anyway. */
1137#ifdef BFD64
dda8d76d
NC
1138 if (filedata->file_header.e_machine == EM_MIPS
1139 && filedata->file_header.e_ident[EI_DATA] != ELFDATA2MSB)
861fb55a
DJ
1140 {
1141 /* In little-endian objects, r_info isn't really a
1142 64-bit little-endian value: it has a 32-bit
1143 little-endian symbol index followed by four
1144 individual byte fields. Reorder INFO
1145 accordingly. */
91d6fa6a
NC
1146 bfd_vma inf = rels[i].r_info;
1147 inf = (((inf & 0xffffffff) << 32)
1148 | ((inf >> 56) & 0xff)
1149 | ((inf >> 40) & 0xff00)
1150 | ((inf >> 24) & 0xff0000)
1151 | ((inf >> 8) & 0xff000000));
1152 rels[i].r_info = inf;
861fb55a
DJ
1153 }
1154#endif /* BFD64 */
4d6ed7c8 1155 }
103f02d3 1156
4d6ed7c8
NC
1157 free (erels);
1158 }
32ec8896 1159
4d6ed7c8
NC
1160 *relsp = rels;
1161 *nrelsp = nrels;
015dc7e1 1162 return true;
4d6ed7c8 1163}
103f02d3 1164
aca88567
NC
1165/* Returns the reloc type extracted from the reloc info field. */
1166
1167static unsigned int
dda8d76d 1168get_reloc_type (Filedata * filedata, bfd_vma reloc_info)
aca88567
NC
1169{
1170 if (is_32bit_elf)
1171 return ELF32_R_TYPE (reloc_info);
1172
dda8d76d 1173 switch (filedata->file_header.e_machine)
aca88567
NC
1174 {
1175 case EM_MIPS:
1176 /* Note: We assume that reloc_info has already been adjusted for us. */
1177 return ELF64_MIPS_R_TYPE (reloc_info);
1178
1179 case EM_SPARCV9:
1180 return ELF64_R_TYPE_ID (reloc_info);
1181
1182 default:
1183 return ELF64_R_TYPE (reloc_info);
1184 }
1185}
1186
1187/* Return the symbol index extracted from the reloc info field. */
1188
1189static bfd_vma
1190get_reloc_symindex (bfd_vma reloc_info)
1191{
1192 return is_32bit_elf ? ELF32_R_SYM (reloc_info) : ELF64_R_SYM (reloc_info);
1193}
1194
015dc7e1 1195static inline bool
dda8d76d 1196uses_msp430x_relocs (Filedata * filedata)
13761a11
NC
1197{
1198 return
dda8d76d 1199 filedata->file_header.e_machine == EM_MSP430 /* Paranoia. */
13761a11 1200 /* GCC uses osabi == ELFOSBI_STANDALONE. */
dda8d76d 1201 && (((filedata->file_header.e_flags & EF_MSP430_MACH) == E_MSP430_MACH_MSP430X)
13761a11 1202 /* TI compiler uses ELFOSABI_NONE. */
dda8d76d 1203 || (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_NONE));
13761a11
NC
1204}
1205
d3ba0551
AM
1206/* Display the contents of the relocation data found at the specified
1207 offset. */
ee42cf8c 1208
015dc7e1 1209static bool
dda8d76d
NC
1210dump_relocations (Filedata * filedata,
1211 unsigned long rel_offset,
1212 unsigned long rel_size,
1213 Elf_Internal_Sym * symtab,
1214 unsigned long nsyms,
1215 char * strtab,
1216 unsigned long strtablen,
1217 int is_rela,
015dc7e1 1218 bool is_dynsym)
4d6ed7c8 1219{
32ec8896 1220 unsigned long i;
2cf0635d 1221 Elf_Internal_Rela * rels;
015dc7e1 1222 bool res = true;
103f02d3 1223
4d6ed7c8 1224 if (is_rela == UNKNOWN)
dda8d76d 1225 is_rela = guess_is_rela (filedata->file_header.e_machine);
103f02d3 1226
4d6ed7c8
NC
1227 if (is_rela)
1228 {
dda8d76d 1229 if (!slurp_rela_relocs (filedata, rel_offset, rel_size, &rels, &rel_size))
015dc7e1 1230 return false;
4d6ed7c8
NC
1231 }
1232 else
1233 {
dda8d76d 1234 if (!slurp_rel_relocs (filedata, rel_offset, rel_size, &rels, &rel_size))
015dc7e1 1235 return false;
252b5132
RH
1236 }
1237
410f7a12
L
1238 if (is_32bit_elf)
1239 {
1240 if (is_rela)
2c71103e
NC
1241 {
1242 if (do_wide)
1243 printf (_(" Offset Info Type Sym. Value Symbol's Name + Addend\n"));
1244 else
1245 printf (_(" Offset Info Type Sym.Value Sym. Name + Addend\n"));
1246 }
410f7a12 1247 else
2c71103e
NC
1248 {
1249 if (do_wide)
1250 printf (_(" Offset Info Type Sym. Value Symbol's Name\n"));
1251 else
1252 printf (_(" Offset Info Type Sym.Value Sym. Name\n"));
1253 }
410f7a12 1254 }
252b5132 1255 else
410f7a12
L
1256 {
1257 if (is_rela)
2c71103e
NC
1258 {
1259 if (do_wide)
8beeaeb7 1260 printf (_(" Offset Info Type Symbol's Value Symbol's Name + Addend\n"));
2c71103e
NC
1261 else
1262 printf (_(" Offset Info Type Sym. Value Sym. Name + Addend\n"));
1263 }
410f7a12 1264 else
2c71103e
NC
1265 {
1266 if (do_wide)
8beeaeb7 1267 printf (_(" Offset Info Type Symbol's Value Symbol's Name\n"));
2c71103e
NC
1268 else
1269 printf (_(" Offset Info Type Sym. Value Sym. Name\n"));
1270 }
410f7a12 1271 }
252b5132
RH
1272
1273 for (i = 0; i < rel_size; i++)
1274 {
2cf0635d 1275 const char * rtype;
b34976b6 1276 bfd_vma offset;
91d6fa6a 1277 bfd_vma inf;
b34976b6
AM
1278 bfd_vma symtab_index;
1279 bfd_vma type;
103f02d3 1280
b34976b6 1281 offset = rels[i].r_offset;
91d6fa6a 1282 inf = rels[i].r_info;
103f02d3 1283
dda8d76d 1284 type = get_reloc_type (filedata, inf);
91d6fa6a 1285 symtab_index = get_reloc_symindex (inf);
252b5132 1286
410f7a12
L
1287 if (is_32bit_elf)
1288 {
39dbeff8
AM
1289 printf ("%8.8lx %8.8lx ",
1290 (unsigned long) offset & 0xffffffff,
91d6fa6a 1291 (unsigned long) inf & 0xffffffff);
410f7a12
L
1292 }
1293 else
1294 {
39dbeff8 1295 printf (do_wide
d1ce973e
AM
1296 ? "%16.16" BFD_VMA_FMT "x %16.16" BFD_VMA_FMT "x "
1297 : "%12.12" BFD_VMA_FMT "x %12.12" BFD_VMA_FMT "x ",
91d6fa6a 1298 offset, inf);
410f7a12 1299 }
103f02d3 1300
dda8d76d 1301 switch (filedata->file_header.e_machine)
252b5132
RH
1302 {
1303 default:
1304 rtype = NULL;
1305 break;
1306
a06ea964
NC
1307 case EM_AARCH64:
1308 rtype = elf_aarch64_reloc_type (type);
1309 break;
1310
2b0337b0 1311 case EM_M32R:
252b5132 1312 case EM_CYGNUS_M32R:
9ea033b2 1313 rtype = elf_m32r_reloc_type (type);
252b5132
RH
1314 break;
1315
1316 case EM_386:
22abe556 1317 case EM_IAMCU:
9ea033b2 1318 rtype = elf_i386_reloc_type (type);
252b5132
RH
1319 break;
1320
ba2685cc
AM
1321 case EM_68HC11:
1322 case EM_68HC12:
1323 rtype = elf_m68hc11_reloc_type (type);
1324 break;
75751cd9 1325
7b4ae824
JD
1326 case EM_S12Z:
1327 rtype = elf_s12z_reloc_type (type);
1328 break;
1329
252b5132 1330 case EM_68K:
9ea033b2 1331 rtype = elf_m68k_reloc_type (type);
252b5132
RH
1332 break;
1333
f954747f
AM
1334 case EM_960:
1335 rtype = elf_i960_reloc_type (type);
1336 break;
1337
adde6300 1338 case EM_AVR:
2b0337b0 1339 case EM_AVR_OLD:
adde6300
AM
1340 rtype = elf_avr_reloc_type (type);
1341 break;
1342
9ea033b2
NC
1343 case EM_OLD_SPARCV9:
1344 case EM_SPARC32PLUS:
1345 case EM_SPARCV9:
252b5132 1346 case EM_SPARC:
9ea033b2 1347 rtype = elf_sparc_reloc_type (type);
252b5132
RH
1348 break;
1349
e9f53129
AM
1350 case EM_SPU:
1351 rtype = elf_spu_reloc_type (type);
1352 break;
1353
708e2187
NC
1354 case EM_V800:
1355 rtype = v800_reloc_type (type);
1356 break;
2b0337b0 1357 case EM_V850:
252b5132 1358 case EM_CYGNUS_V850:
9ea033b2 1359 rtype = v850_reloc_type (type);
252b5132
RH
1360 break;
1361
2b0337b0 1362 case EM_D10V:
252b5132 1363 case EM_CYGNUS_D10V:
9ea033b2 1364 rtype = elf_d10v_reloc_type (type);
252b5132
RH
1365 break;
1366
2b0337b0 1367 case EM_D30V:
252b5132 1368 case EM_CYGNUS_D30V:
9ea033b2 1369 rtype = elf_d30v_reloc_type (type);
252b5132
RH
1370 break;
1371
d172d4ba
NC
1372 case EM_DLX:
1373 rtype = elf_dlx_reloc_type (type);
1374 break;
1375
252b5132 1376 case EM_SH:
9ea033b2 1377 rtype = elf_sh_reloc_type (type);
252b5132
RH
1378 break;
1379
2b0337b0 1380 case EM_MN10300:
252b5132 1381 case EM_CYGNUS_MN10300:
9ea033b2 1382 rtype = elf_mn10300_reloc_type (type);
252b5132
RH
1383 break;
1384
2b0337b0 1385 case EM_MN10200:
252b5132 1386 case EM_CYGNUS_MN10200:
9ea033b2 1387 rtype = elf_mn10200_reloc_type (type);
252b5132
RH
1388 break;
1389
2b0337b0 1390 case EM_FR30:
252b5132 1391 case EM_CYGNUS_FR30:
9ea033b2 1392 rtype = elf_fr30_reloc_type (type);
252b5132
RH
1393 break;
1394
ba2685cc
AM
1395 case EM_CYGNUS_FRV:
1396 rtype = elf_frv_reloc_type (type);
1397 break;
5c70f934 1398
b8891f8d
AJ
1399 case EM_CSKY:
1400 rtype = elf_csky_reloc_type (type);
1401 break;
1402
3f8107ab
AM
1403 case EM_FT32:
1404 rtype = elf_ft32_reloc_type (type);
1405 break;
1406
252b5132 1407 case EM_MCORE:
9ea033b2 1408 rtype = elf_mcore_reloc_type (type);
252b5132
RH
1409 break;
1410
3c3bdf30
NC
1411 case EM_MMIX:
1412 rtype = elf_mmix_reloc_type (type);
1413 break;
1414
5506d11a
AM
1415 case EM_MOXIE:
1416 rtype = elf_moxie_reloc_type (type);
1417 break;
1418
2469cfa2 1419 case EM_MSP430:
dda8d76d 1420 if (uses_msp430x_relocs (filedata))
13761a11
NC
1421 {
1422 rtype = elf_msp430x_reloc_type (type);
1423 break;
1424 }
1a0670f3 1425 /* Fall through. */
2469cfa2
NC
1426 case EM_MSP430_OLD:
1427 rtype = elf_msp430_reloc_type (type);
1428 break;
1429
35c08157
KLC
1430 case EM_NDS32:
1431 rtype = elf_nds32_reloc_type (type);
1432 break;
1433
252b5132 1434 case EM_PPC:
9ea033b2 1435 rtype = elf_ppc_reloc_type (type);
252b5132
RH
1436 break;
1437
c833c019
AM
1438 case EM_PPC64:
1439 rtype = elf_ppc64_reloc_type (type);
1440 break;
1441
252b5132 1442 case EM_MIPS:
4fe85591 1443 case EM_MIPS_RS3_LE:
9ea033b2 1444 rtype = elf_mips_reloc_type (type);
252b5132
RH
1445 break;
1446
e23eba97
NC
1447 case EM_RISCV:
1448 rtype = elf_riscv_reloc_type (type);
1449 break;
1450
252b5132 1451 case EM_ALPHA:
9ea033b2 1452 rtype = elf_alpha_reloc_type (type);
252b5132
RH
1453 break;
1454
1455 case EM_ARM:
9ea033b2 1456 rtype = elf_arm_reloc_type (type);
252b5132
RH
1457 break;
1458
584da044 1459 case EM_ARC:
886a2506
NC
1460 case EM_ARC_COMPACT:
1461 case EM_ARC_COMPACT2:
9ea033b2 1462 rtype = elf_arc_reloc_type (type);
252b5132
RH
1463 break;
1464
1465 case EM_PARISC:
69e617ca 1466 rtype = elf_hppa_reloc_type (type);
252b5132 1467 break;
7d466069 1468
b8720f9d
JL
1469 case EM_H8_300:
1470 case EM_H8_300H:
1471 case EM_H8S:
1472 rtype = elf_h8_reloc_type (type);
1473 break;
1474
73589c9d
CS
1475 case EM_OR1K:
1476 rtype = elf_or1k_reloc_type (type);
3b16e843
NC
1477 break;
1478
7d466069 1479 case EM_PJ:
2b0337b0 1480 case EM_PJ_OLD:
7d466069
ILT
1481 rtype = elf_pj_reloc_type (type);
1482 break;
800eeca4
JW
1483 case EM_IA_64:
1484 rtype = elf_ia64_reloc_type (type);
1485 break;
1b61cf92
HPN
1486
1487 case EM_CRIS:
1488 rtype = elf_cris_reloc_type (type);
1489 break;
535c37ff 1490
f954747f
AM
1491 case EM_860:
1492 rtype = elf_i860_reloc_type (type);
1493 break;
1494
bcedfee6 1495 case EM_X86_64:
8a9036a4 1496 case EM_L1OM:
7a9068fe 1497 case EM_K1OM:
bcedfee6
NC
1498 rtype = elf_x86_64_reloc_type (type);
1499 break;
a85d7ed0 1500
f954747f
AM
1501 case EM_S370:
1502 rtype = i370_reloc_type (type);
1503 break;
1504
53c7db4b
KH
1505 case EM_S390_OLD:
1506 case EM_S390:
1507 rtype = elf_s390_reloc_type (type);
1508 break;
93fbbb04 1509
1c0d3aa6
NC
1510 case EM_SCORE:
1511 rtype = elf_score_reloc_type (type);
1512 break;
1513
93fbbb04
GK
1514 case EM_XSTORMY16:
1515 rtype = elf_xstormy16_reloc_type (type);
1516 break;
179d3252 1517
1fe1f39c
NC
1518 case EM_CRX:
1519 rtype = elf_crx_reloc_type (type);
1520 break;
1521
179d3252
JT
1522 case EM_VAX:
1523 rtype = elf_vax_reloc_type (type);
1524 break;
1e4cf259 1525
619ed720
EB
1526 case EM_VISIUM:
1527 rtype = elf_visium_reloc_type (type);
1528 break;
1529
aca4efc7
JM
1530 case EM_BPF:
1531 rtype = elf_bpf_reloc_type (type);
1532 break;
1533
cfb8c092
NC
1534 case EM_ADAPTEVA_EPIPHANY:
1535 rtype = elf_epiphany_reloc_type (type);
1536 break;
1537
1e4cf259
NC
1538 case EM_IP2K:
1539 case EM_IP2K_OLD:
1540 rtype = elf_ip2k_reloc_type (type);
1541 break;
3b36097d
SC
1542
1543 case EM_IQ2000:
1544 rtype = elf_iq2000_reloc_type (type);
1545 break;
88da6820
NC
1546
1547 case EM_XTENSA_OLD:
1548 case EM_XTENSA:
1549 rtype = elf_xtensa_reloc_type (type);
1550 break;
a34e3ecb 1551
84e94c90
NC
1552 case EM_LATTICEMICO32:
1553 rtype = elf_lm32_reloc_type (type);
1554 break;
1555
ff7eeb89 1556 case EM_M32C_OLD:
49f58d10
JB
1557 case EM_M32C:
1558 rtype = elf_m32c_reloc_type (type);
1559 break;
1560
d031aafb
NS
1561 case EM_MT:
1562 rtype = elf_mt_reloc_type (type);
a34e3ecb 1563 break;
1d65ded4
CM
1564
1565 case EM_BLACKFIN:
1566 rtype = elf_bfin_reloc_type (type);
1567 break;
15ab5209
DB
1568
1569 case EM_CYGNUS_MEP:
1570 rtype = elf_mep_reloc_type (type);
1571 break;
60bca95a
NC
1572
1573 case EM_CR16:
1574 rtype = elf_cr16_reloc_type (type);
1575 break;
dd24e3da 1576
7ba29e2a
NC
1577 case EM_MICROBLAZE:
1578 case EM_MICROBLAZE_OLD:
1579 rtype = elf_microblaze_reloc_type (type);
1580 break;
c7927a3c 1581
99c513f6
DD
1582 case EM_RL78:
1583 rtype = elf_rl78_reloc_type (type);
1584 break;
1585
c7927a3c
NC
1586 case EM_RX:
1587 rtype = elf_rx_reloc_type (type);
1588 break;
c29aca4a 1589
a3c62988
NC
1590 case EM_METAG:
1591 rtype = elf_metag_reloc_type (type);
1592 break;
1593
c29aca4a
NC
1594 case EM_XC16X:
1595 case EM_C166:
1596 rtype = elf_xc16x_reloc_type (type);
1597 break;
40b36596
JM
1598
1599 case EM_TI_C6000:
1600 rtype = elf_tic6x_reloc_type (type);
1601 break;
aa137e4d
NC
1602
1603 case EM_TILEGX:
1604 rtype = elf_tilegx_reloc_type (type);
1605 break;
1606
1607 case EM_TILEPRO:
1608 rtype = elf_tilepro_reloc_type (type);
1609 break;
f6c1a2d5 1610
f96bd6c2
PC
1611 case EM_WEBASSEMBLY:
1612 rtype = elf_wasm32_reloc_type (type);
1613 break;
1614
f6c1a2d5
NC
1615 case EM_XGATE:
1616 rtype = elf_xgate_reloc_type (type);
1617 break;
36591ba1
SL
1618
1619 case EM_ALTERA_NIOS2:
1620 rtype = elf_nios2_reloc_type (type);
1621 break;
2b100bb5
DD
1622
1623 case EM_TI_PRU:
1624 rtype = elf_pru_reloc_type (type);
1625 break;
fe944acf
FT
1626
1627 case EM_NFP:
1628 if (EF_NFP_MACH (filedata->file_header.e_flags) == E_NFP_MACH_3200)
1629 rtype = elf_nfp3200_reloc_type (type);
1630 else
1631 rtype = elf_nfp_reloc_type (type);
1632 break;
6655dba2
SB
1633
1634 case EM_Z80:
1635 rtype = elf_z80_reloc_type (type);
1636 break;
252b5132
RH
1637 }
1638
1639 if (rtype == NULL)
39dbeff8 1640 printf (_("unrecognized: %-7lx"), (unsigned long) type & 0xffffffff);
252b5132 1641 else
5c144731 1642 printf (do_wide ? "%-22s" : "%-17.17s", rtype);
252b5132 1643
dda8d76d 1644 if (filedata->file_header.e_machine == EM_ALPHA
157c2599 1645 && rtype != NULL
7ace3541
RH
1646 && streq (rtype, "R_ALPHA_LITUSE")
1647 && is_rela)
1648 {
1649 switch (rels[i].r_addend)
1650 {
1651 case LITUSE_ALPHA_ADDR: rtype = "ADDR"; break;
1652 case LITUSE_ALPHA_BASE: rtype = "BASE"; break;
1653 case LITUSE_ALPHA_BYTOFF: rtype = "BYTOFF"; break;
1654 case LITUSE_ALPHA_JSR: rtype = "JSR"; break;
1655 case LITUSE_ALPHA_TLSGD: rtype = "TLSGD"; break;
1656 case LITUSE_ALPHA_TLSLDM: rtype = "TLSLDM"; break;
1657 case LITUSE_ALPHA_JSRDIRECT: rtype = "JSRDIRECT"; break;
1658 default: rtype = NULL;
1659 }
32ec8896 1660
7ace3541
RH
1661 if (rtype)
1662 printf (" (%s)", rtype);
1663 else
1664 {
1665 putchar (' ');
1666 printf (_("<unknown addend: %lx>"),
1667 (unsigned long) rels[i].r_addend);
015dc7e1 1668 res = false;
7ace3541
RH
1669 }
1670 }
1671 else if (symtab_index)
252b5132 1672 {
af3fc3bc 1673 if (symtab == NULL || symtab_index >= nsyms)
32ec8896 1674 {
27a45f42
AS
1675 error (_(" bad symbol index: %08lx in reloc\n"),
1676 (unsigned long) symtab_index);
015dc7e1 1677 res = false;
32ec8896 1678 }
af3fc3bc 1679 else
19936277 1680 {
2cf0635d 1681 Elf_Internal_Sym * psym;
bb4d2ac2
L
1682 const char * version_string;
1683 enum versioned_symbol_info sym_info;
1684 unsigned short vna_other;
19936277 1685
af3fc3bc 1686 psym = symtab + symtab_index;
103f02d3 1687
bb4d2ac2 1688 version_string
dda8d76d 1689 = get_symbol_version_string (filedata, is_dynsym,
bb4d2ac2
L
1690 strtab, strtablen,
1691 symtab_index,
1692 psym,
1693 &sym_info,
1694 &vna_other);
1695
af3fc3bc 1696 printf (" ");
171191ba 1697
d8045f23
NC
1698 if (ELF_ST_TYPE (psym->st_info) == STT_GNU_IFUNC)
1699 {
1700 const char * name;
1701 unsigned int len;
1702 unsigned int width = is_32bit_elf ? 8 : 14;
1703
1704 /* Relocations against GNU_IFUNC symbols do not use the value
1705 of the symbol as the address to relocate against. Instead
1706 they invoke the function named by the symbol and use its
1707 result as the address for relocation.
1708
1709 To indicate this to the user, do not display the value of
1710 the symbol in the "Symbols's Value" field. Instead show
1711 its name followed by () as a hint that the symbol is
1712 invoked. */
1713
1714 if (strtab == NULL
1715 || psym->st_name == 0
1716 || psym->st_name >= strtablen)
1717 name = "??";
1718 else
1719 name = strtab + psym->st_name;
1720
1721 len = print_symbol (width, name);
bb4d2ac2
L
1722 if (version_string)
1723 printf (sym_info == symbol_public ? "@@%s" : "@%s",
1724 version_string);
d8045f23
NC
1725 printf ("()%-*s", len <= width ? (width + 1) - len : 1, " ");
1726 }
1727 else
1728 {
1729 print_vma (psym->st_value, LONG_HEX);
171191ba 1730
d8045f23
NC
1731 printf (is_32bit_elf ? " " : " ");
1732 }
103f02d3 1733
af3fc3bc 1734 if (psym->st_name == 0)
f1ef08cb 1735 {
2cf0635d 1736 const char * sec_name = "<null>";
f1ef08cb
AM
1737 char name_buf[40];
1738
1739 if (ELF_ST_TYPE (psym->st_info) == STT_SECTION)
1740 {
dda8d76d 1741 if (psym->st_shndx < filedata->file_header.e_shnum)
b9e920ec
AM
1742 sec_name = SECTION_NAME_PRINT (filedata->section_headers
1743 + psym->st_shndx);
f1ef08cb
AM
1744 else if (psym->st_shndx == SHN_ABS)
1745 sec_name = "ABS";
1746 else if (psym->st_shndx == SHN_COMMON)
1747 sec_name = "COMMON";
dda8d76d 1748 else if ((filedata->file_header.e_machine == EM_MIPS
ac145307 1749 && psym->st_shndx == SHN_MIPS_SCOMMON)
dda8d76d 1750 || (filedata->file_header.e_machine == EM_TI_C6000
ac145307 1751 && psym->st_shndx == SHN_TIC6X_SCOMMON))
172553c7 1752 sec_name = "SCOMMON";
dda8d76d 1753 else if (filedata->file_header.e_machine == EM_MIPS
172553c7
TS
1754 && psym->st_shndx == SHN_MIPS_SUNDEFINED)
1755 sec_name = "SUNDEF";
dda8d76d
NC
1756 else if ((filedata->file_header.e_machine == EM_X86_64
1757 || filedata->file_header.e_machine == EM_L1OM
1758 || filedata->file_header.e_machine == EM_K1OM)
3b22753a
L
1759 && psym->st_shndx == SHN_X86_64_LCOMMON)
1760 sec_name = "LARGE_COMMON";
dda8d76d
NC
1761 else if (filedata->file_header.e_machine == EM_IA_64
1762 && filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_HPUX
9ce701e2
L
1763 && psym->st_shndx == SHN_IA_64_ANSI_COMMON)
1764 sec_name = "ANSI_COM";
dda8d76d 1765 else if (is_ia64_vms (filedata)
148b93f2
NC
1766 && psym->st_shndx == SHN_IA_64_VMS_SYMVEC)
1767 sec_name = "VMS_SYMVEC";
f1ef08cb
AM
1768 else
1769 {
1770 sprintf (name_buf, "<section 0x%x>",
1771 (unsigned int) psym->st_shndx);
1772 sec_name = name_buf;
1773 }
1774 }
1775 print_symbol (22, sec_name);
1776 }
af3fc3bc 1777 else if (strtab == NULL)
d79b3d50 1778 printf (_("<string table index: %3ld>"), psym->st_name);
c256ffe7 1779 else if (psym->st_name >= strtablen)
32ec8896 1780 {
27a45f42
AS
1781 error (_("<corrupt string table index: %3ld>\n"),
1782 psym->st_name);
015dc7e1 1783 res = false;
32ec8896 1784 }
af3fc3bc 1785 else
bb4d2ac2
L
1786 {
1787 print_symbol (22, strtab + psym->st_name);
1788 if (version_string)
1789 printf (sym_info == symbol_public ? "@@%s" : "@%s",
1790 version_string);
1791 }
103f02d3 1792
af3fc3bc 1793 if (is_rela)
171191ba 1794 {
7360e63f 1795 bfd_vma off = rels[i].r_addend;
171191ba 1796
7360e63f 1797 if ((bfd_signed_vma) off < 0)
598aaa76 1798 printf (" - %" BFD_VMA_FMT "x", - off);
171191ba 1799 else
598aaa76 1800 printf (" + %" BFD_VMA_FMT "x", off);
171191ba 1801 }
19936277 1802 }
252b5132 1803 }
1b228002 1804 else if (is_rela)
f7a99963 1805 {
7360e63f 1806 bfd_vma off = rels[i].r_addend;
e04d7088
L
1807
1808 printf ("%*c", is_32bit_elf ? 12 : 20, ' ');
7360e63f 1809 if ((bfd_signed_vma) off < 0)
e04d7088
L
1810 printf ("-%" BFD_VMA_FMT "x", - off);
1811 else
1812 printf ("%" BFD_VMA_FMT "x", off);
f7a99963 1813 }
252b5132 1814
dda8d76d 1815 if (filedata->file_header.e_machine == EM_SPARCV9
157c2599
NC
1816 && rtype != NULL
1817 && streq (rtype, "R_SPARC_OLO10"))
91d6fa6a 1818 printf (" + %lx", (unsigned long) ELF64_R_TYPE_DATA (inf));
351b4b40 1819
252b5132 1820 putchar ('\n');
2c71103e 1821
aca88567 1822#ifdef BFD64
dda8d76d 1823 if (! is_32bit_elf && filedata->file_header.e_machine == EM_MIPS)
2c71103e 1824 {
91d6fa6a
NC
1825 bfd_vma type2 = ELF64_MIPS_R_TYPE2 (inf);
1826 bfd_vma type3 = ELF64_MIPS_R_TYPE3 (inf);
2cf0635d
NC
1827 const char * rtype2 = elf_mips_reloc_type (type2);
1828 const char * rtype3 = elf_mips_reloc_type (type3);
aca88567 1829
2c71103e
NC
1830 printf (" Type2: ");
1831
1832 if (rtype2 == NULL)
39dbeff8
AM
1833 printf (_("unrecognized: %-7lx"),
1834 (unsigned long) type2 & 0xffffffff);
2c71103e
NC
1835 else
1836 printf ("%-17.17s", rtype2);
1837
18bd398b 1838 printf ("\n Type3: ");
2c71103e
NC
1839
1840 if (rtype3 == NULL)
39dbeff8
AM
1841 printf (_("unrecognized: %-7lx"),
1842 (unsigned long) type3 & 0xffffffff);
2c71103e
NC
1843 else
1844 printf ("%-17.17s", rtype3);
1845
53c7db4b 1846 putchar ('\n');
2c71103e 1847 }
aca88567 1848#endif /* BFD64 */
252b5132
RH
1849 }
1850
c8286bd1 1851 free (rels);
32ec8896
NC
1852
1853 return res;
252b5132
RH
1854}
1855
37c18eed
SD
1856static const char *
1857get_aarch64_dynamic_type (unsigned long type)
1858{
1859 switch (type)
1860 {
1861 case DT_AARCH64_BTI_PLT: return "AARCH64_BTI_PLT";
1dbade74 1862 case DT_AARCH64_PAC_PLT: return "AARCH64_PAC_PLT";
2301ed1c 1863 case DT_AARCH64_VARIANT_PCS: return "AARCH64_VARIANT_PCS";
37c18eed
SD
1864 default:
1865 return NULL;
1866 }
1867}
1868
252b5132 1869static const char *
d3ba0551 1870get_mips_dynamic_type (unsigned long type)
252b5132
RH
1871{
1872 switch (type)
1873 {
1874 case DT_MIPS_RLD_VERSION: return "MIPS_RLD_VERSION";
1875 case DT_MIPS_TIME_STAMP: return "MIPS_TIME_STAMP";
1876 case DT_MIPS_ICHECKSUM: return "MIPS_ICHECKSUM";
1877 case DT_MIPS_IVERSION: return "MIPS_IVERSION";
1878 case DT_MIPS_FLAGS: return "MIPS_FLAGS";
1879 case DT_MIPS_BASE_ADDRESS: return "MIPS_BASE_ADDRESS";
1880 case DT_MIPS_MSYM: return "MIPS_MSYM";
1881 case DT_MIPS_CONFLICT: return "MIPS_CONFLICT";
1882 case DT_MIPS_LIBLIST: return "MIPS_LIBLIST";
1883 case DT_MIPS_LOCAL_GOTNO: return "MIPS_LOCAL_GOTNO";
1884 case DT_MIPS_CONFLICTNO: return "MIPS_CONFLICTNO";
1885 case DT_MIPS_LIBLISTNO: return "MIPS_LIBLISTNO";
1886 case DT_MIPS_SYMTABNO: return "MIPS_SYMTABNO";
1887 case DT_MIPS_UNREFEXTNO: return "MIPS_UNREFEXTNO";
1888 case DT_MIPS_GOTSYM: return "MIPS_GOTSYM";
1889 case DT_MIPS_HIPAGENO: return "MIPS_HIPAGENO";
1890 case DT_MIPS_RLD_MAP: return "MIPS_RLD_MAP";
a5499fa4 1891 case DT_MIPS_RLD_MAP_REL: return "MIPS_RLD_MAP_REL";
252b5132
RH
1892 case DT_MIPS_DELTA_CLASS: return "MIPS_DELTA_CLASS";
1893 case DT_MIPS_DELTA_CLASS_NO: return "MIPS_DELTA_CLASS_NO";
1894 case DT_MIPS_DELTA_INSTANCE: return "MIPS_DELTA_INSTANCE";
1895 case DT_MIPS_DELTA_INSTANCE_NO: return "MIPS_DELTA_INSTANCE_NO";
1896 case DT_MIPS_DELTA_RELOC: return "MIPS_DELTA_RELOC";
1897 case DT_MIPS_DELTA_RELOC_NO: return "MIPS_DELTA_RELOC_NO";
1898 case DT_MIPS_DELTA_SYM: return "MIPS_DELTA_SYM";
1899 case DT_MIPS_DELTA_SYM_NO: return "MIPS_DELTA_SYM_NO";
1900 case DT_MIPS_DELTA_CLASSSYM: return "MIPS_DELTA_CLASSSYM";
1901 case DT_MIPS_DELTA_CLASSSYM_NO: return "MIPS_DELTA_CLASSSYM_NO";
1902 case DT_MIPS_CXX_FLAGS: return "MIPS_CXX_FLAGS";
1903 case DT_MIPS_PIXIE_INIT: return "MIPS_PIXIE_INIT";
1904 case DT_MIPS_SYMBOL_LIB: return "MIPS_SYMBOL_LIB";
1905 case DT_MIPS_LOCALPAGE_GOTIDX: return "MIPS_LOCALPAGE_GOTIDX";
1906 case DT_MIPS_LOCAL_GOTIDX: return "MIPS_LOCAL_GOTIDX";
1907 case DT_MIPS_HIDDEN_GOTIDX: return "MIPS_HIDDEN_GOTIDX";
1908 case DT_MIPS_PROTECTED_GOTIDX: return "MIPS_PROTECTED_GOTIDX";
1909 case DT_MIPS_OPTIONS: return "MIPS_OPTIONS";
1910 case DT_MIPS_INTERFACE: return "MIPS_INTERFACE";
1911 case DT_MIPS_DYNSTR_ALIGN: return "MIPS_DYNSTR_ALIGN";
1912 case DT_MIPS_INTERFACE_SIZE: return "MIPS_INTERFACE_SIZE";
1913 case DT_MIPS_RLD_TEXT_RESOLVE_ADDR: return "MIPS_RLD_TEXT_RESOLVE_ADDR";
1914 case DT_MIPS_PERF_SUFFIX: return "MIPS_PERF_SUFFIX";
1915 case DT_MIPS_COMPACT_SIZE: return "MIPS_COMPACT_SIZE";
1916 case DT_MIPS_GP_VALUE: return "MIPS_GP_VALUE";
1917 case DT_MIPS_AUX_DYNAMIC: return "MIPS_AUX_DYNAMIC";
861fb55a
DJ
1918 case DT_MIPS_PLTGOT: return "MIPS_PLTGOT";
1919 case DT_MIPS_RWPLT: return "MIPS_RWPLT";
f16a9783 1920 case DT_MIPS_XHASH: return "MIPS_XHASH";
252b5132
RH
1921 default:
1922 return NULL;
1923 }
1924}
1925
9a097730 1926static const char *
d3ba0551 1927get_sparc64_dynamic_type (unsigned long type)
9a097730
RH
1928{
1929 switch (type)
1930 {
1931 case DT_SPARC_REGISTER: return "SPARC_REGISTER";
1932 default:
1933 return NULL;
1934 }
103f02d3
UD
1935}
1936
7490d522
AM
1937static const char *
1938get_ppc_dynamic_type (unsigned long type)
1939{
1940 switch (type)
1941 {
a7f2871e 1942 case DT_PPC_GOT: return "PPC_GOT";
e8910a83 1943 case DT_PPC_OPT: return "PPC_OPT";
7490d522
AM
1944 default:
1945 return NULL;
1946 }
1947}
1948
f1cb7e17 1949static const char *
d3ba0551 1950get_ppc64_dynamic_type (unsigned long type)
f1cb7e17
AM
1951{
1952 switch (type)
1953 {
a7f2871e
AM
1954 case DT_PPC64_GLINK: return "PPC64_GLINK";
1955 case DT_PPC64_OPD: return "PPC64_OPD";
1956 case DT_PPC64_OPDSZ: return "PPC64_OPDSZ";
e8910a83 1957 case DT_PPC64_OPT: return "PPC64_OPT";
f1cb7e17
AM
1958 default:
1959 return NULL;
1960 }
1961}
1962
103f02d3 1963static const char *
d3ba0551 1964get_parisc_dynamic_type (unsigned long type)
103f02d3
UD
1965{
1966 switch (type)
1967 {
1968 case DT_HP_LOAD_MAP: return "HP_LOAD_MAP";
1969 case DT_HP_DLD_FLAGS: return "HP_DLD_FLAGS";
1970 case DT_HP_DLD_HOOK: return "HP_DLD_HOOK";
1971 case DT_HP_UX10_INIT: return "HP_UX10_INIT";
1972 case DT_HP_UX10_INITSZ: return "HP_UX10_INITSZ";
1973 case DT_HP_PREINIT: return "HP_PREINIT";
1974 case DT_HP_PREINITSZ: return "HP_PREINITSZ";
1975 case DT_HP_NEEDED: return "HP_NEEDED";
1976 case DT_HP_TIME_STAMP: return "HP_TIME_STAMP";
1977 case DT_HP_CHECKSUM: return "HP_CHECKSUM";
1978 case DT_HP_GST_SIZE: return "HP_GST_SIZE";
1979 case DT_HP_GST_VERSION: return "HP_GST_VERSION";
1980 case DT_HP_GST_HASHVAL: return "HP_GST_HASHVAL";
eec8f817
DA
1981 case DT_HP_EPLTREL: return "HP_GST_EPLTREL";
1982 case DT_HP_EPLTRELSZ: return "HP_GST_EPLTRELSZ";
1983 case DT_HP_FILTERED: return "HP_FILTERED";
1984 case DT_HP_FILTER_TLS: return "HP_FILTER_TLS";
1985 case DT_HP_COMPAT_FILTERED: return "HP_COMPAT_FILTERED";
1986 case DT_HP_LAZYLOAD: return "HP_LAZYLOAD";
1987 case DT_HP_BIND_NOW_COUNT: return "HP_BIND_NOW_COUNT";
1988 case DT_PLT: return "PLT";
1989 case DT_PLT_SIZE: return "PLT_SIZE";
1990 case DT_DLT: return "DLT";
1991 case DT_DLT_SIZE: return "DLT_SIZE";
103f02d3
UD
1992 default:
1993 return NULL;
1994 }
1995}
9a097730 1996
ecc51f48 1997static const char *
d3ba0551 1998get_ia64_dynamic_type (unsigned long type)
ecc51f48
NC
1999{
2000 switch (type)
2001 {
148b93f2
NC
2002 case DT_IA_64_PLT_RESERVE: return "IA_64_PLT_RESERVE";
2003 case DT_IA_64_VMS_SUBTYPE: return "VMS_SUBTYPE";
2004 case DT_IA_64_VMS_IMGIOCNT: return "VMS_IMGIOCNT";
2005 case DT_IA_64_VMS_LNKFLAGS: return "VMS_LNKFLAGS";
2006 case DT_IA_64_VMS_VIR_MEM_BLK_SIZ: return "VMS_VIR_MEM_BLK_SIZ";
2007 case DT_IA_64_VMS_IDENT: return "VMS_IDENT";
2008 case DT_IA_64_VMS_NEEDED_IDENT: return "VMS_NEEDED_IDENT";
2009 case DT_IA_64_VMS_IMG_RELA_CNT: return "VMS_IMG_RELA_CNT";
2010 case DT_IA_64_VMS_SEG_RELA_CNT: return "VMS_SEG_RELA_CNT";
2011 case DT_IA_64_VMS_FIXUP_RELA_CNT: return "VMS_FIXUP_RELA_CNT";
2012 case DT_IA_64_VMS_FIXUP_NEEDED: return "VMS_FIXUP_NEEDED";
2013 case DT_IA_64_VMS_SYMVEC_CNT: return "VMS_SYMVEC_CNT";
2014 case DT_IA_64_VMS_XLATED: return "VMS_XLATED";
2015 case DT_IA_64_VMS_STACKSIZE: return "VMS_STACKSIZE";
2016 case DT_IA_64_VMS_UNWINDSZ: return "VMS_UNWINDSZ";
2017 case DT_IA_64_VMS_UNWIND_CODSEG: return "VMS_UNWIND_CODSEG";
2018 case DT_IA_64_VMS_UNWIND_INFOSEG: return "VMS_UNWIND_INFOSEG";
2019 case DT_IA_64_VMS_LINKTIME: return "VMS_LINKTIME";
2020 case DT_IA_64_VMS_SEG_NO: return "VMS_SEG_NO";
2021 case DT_IA_64_VMS_SYMVEC_OFFSET: return "VMS_SYMVEC_OFFSET";
2022 case DT_IA_64_VMS_SYMVEC_SEG: return "VMS_SYMVEC_SEG";
2023 case DT_IA_64_VMS_UNWIND_OFFSET: return "VMS_UNWIND_OFFSET";
2024 case DT_IA_64_VMS_UNWIND_SEG: return "VMS_UNWIND_SEG";
2025 case DT_IA_64_VMS_STRTAB_OFFSET: return "VMS_STRTAB_OFFSET";
2026 case DT_IA_64_VMS_SYSVER_OFFSET: return "VMS_SYSVER_OFFSET";
2027 case DT_IA_64_VMS_IMG_RELA_OFF: return "VMS_IMG_RELA_OFF";
2028 case DT_IA_64_VMS_SEG_RELA_OFF: return "VMS_SEG_RELA_OFF";
2029 case DT_IA_64_VMS_FIXUP_RELA_OFF: return "VMS_FIXUP_RELA_OFF";
2030 case DT_IA_64_VMS_PLTGOT_OFFSET: return "VMS_PLTGOT_OFFSET";
2031 case DT_IA_64_VMS_PLTGOT_SEG: return "VMS_PLTGOT_SEG";
2032 case DT_IA_64_VMS_FPMODE: return "VMS_FPMODE";
ecc51f48
NC
2033 default:
2034 return NULL;
2035 }
2036}
2037
fd85a6a1
NC
2038static const char *
2039get_solaris_section_type (unsigned long type)
2040{
2041 switch (type)
2042 {
2043 case 0x6fffffee: return "SUNW_ancillary";
2044 case 0x6fffffef: return "SUNW_capchain";
2045 case 0x6ffffff0: return "SUNW_capinfo";
2046 case 0x6ffffff1: return "SUNW_symsort";
2047 case 0x6ffffff2: return "SUNW_tlssort";
2048 case 0x6ffffff3: return "SUNW_LDYNSYM";
2049 case 0x6ffffff4: return "SUNW_dof";
2050 case 0x6ffffff5: return "SUNW_cap";
2051 case 0x6ffffff6: return "SUNW_SIGNATURE";
2052 case 0x6ffffff7: return "SUNW_ANNOTATE";
2053 case 0x6ffffff8: return "SUNW_DEBUGSTR";
2054 case 0x6ffffff9: return "SUNW_DEBUG";
2055 case 0x6ffffffa: return "SUNW_move";
2056 case 0x6ffffffb: return "SUNW_COMDAT";
2057 case 0x6ffffffc: return "SUNW_syminfo";
2058 case 0x6ffffffd: return "SUNW_verdef";
2059 case 0x6ffffffe: return "SUNW_verneed";
2060 case 0x6fffffff: return "SUNW_versym";
2061 case 0x70000000: return "SPARC_GOTDATA";
2062 default: return NULL;
2063 }
2064}
2065
fabcb361
RH
2066static const char *
2067get_alpha_dynamic_type (unsigned long type)
2068{
2069 switch (type)
2070 {
2071 case DT_ALPHA_PLTRO: return "ALPHA_PLTRO";
32ec8896 2072 default: return NULL;
fabcb361
RH
2073 }
2074}
2075
1c0d3aa6
NC
2076static const char *
2077get_score_dynamic_type (unsigned long type)
2078{
2079 switch (type)
2080 {
2081 case DT_SCORE_BASE_ADDRESS: return "SCORE_BASE_ADDRESS";
2082 case DT_SCORE_LOCAL_GOTNO: return "SCORE_LOCAL_GOTNO";
2083 case DT_SCORE_SYMTABNO: return "SCORE_SYMTABNO";
2084 case DT_SCORE_GOTSYM: return "SCORE_GOTSYM";
2085 case DT_SCORE_UNREFEXTNO: return "SCORE_UNREFEXTNO";
2086 case DT_SCORE_HIPAGENO: return "SCORE_HIPAGENO";
32ec8896 2087 default: return NULL;
1c0d3aa6
NC
2088 }
2089}
2090
40b36596
JM
2091static const char *
2092get_tic6x_dynamic_type (unsigned long type)
2093{
2094 switch (type)
2095 {
2096 case DT_C6000_GSYM_OFFSET: return "C6000_GSYM_OFFSET";
2097 case DT_C6000_GSTR_OFFSET: return "C6000_GSTR_OFFSET";
2098 case DT_C6000_DSBT_BASE: return "C6000_DSBT_BASE";
2099 case DT_C6000_DSBT_SIZE: return "C6000_DSBT_SIZE";
2100 case DT_C6000_PREEMPTMAP: return "C6000_PREEMPTMAP";
2101 case DT_C6000_DSBT_INDEX: return "C6000_DSBT_INDEX";
32ec8896 2102 default: return NULL;
40b36596
JM
2103 }
2104}
1c0d3aa6 2105
36591ba1
SL
2106static const char *
2107get_nios2_dynamic_type (unsigned long type)
2108{
2109 switch (type)
2110 {
2111 case DT_NIOS2_GP: return "NIOS2_GP";
32ec8896 2112 default: return NULL;
36591ba1
SL
2113 }
2114}
2115
fd85a6a1
NC
2116static const char *
2117get_solaris_dynamic_type (unsigned long type)
2118{
2119 switch (type)
2120 {
2121 case 0x6000000d: return "SUNW_AUXILIARY";
2122 case 0x6000000e: return "SUNW_RTLDINF";
2123 case 0x6000000f: return "SUNW_FILTER";
2124 case 0x60000010: return "SUNW_CAP";
2125 case 0x60000011: return "SUNW_SYMTAB";
2126 case 0x60000012: return "SUNW_SYMSZ";
2127 case 0x60000013: return "SUNW_SORTENT";
2128 case 0x60000014: return "SUNW_SYMSORT";
2129 case 0x60000015: return "SUNW_SYMSORTSZ";
2130 case 0x60000016: return "SUNW_TLSSORT";
2131 case 0x60000017: return "SUNW_TLSSORTSZ";
2132 case 0x60000018: return "SUNW_CAPINFO";
2133 case 0x60000019: return "SUNW_STRPAD";
2134 case 0x6000001a: return "SUNW_CAPCHAIN";
2135 case 0x6000001b: return "SUNW_LDMACH";
2136 case 0x6000001d: return "SUNW_CAPCHAINENT";
2137 case 0x6000001f: return "SUNW_CAPCHAINSZ";
2138 case 0x60000021: return "SUNW_PARENT";
2139 case 0x60000023: return "SUNW_ASLR";
2140 case 0x60000025: return "SUNW_RELAX";
2141 case 0x60000029: return "SUNW_NXHEAP";
2142 case 0x6000002b: return "SUNW_NXSTACK";
2143
2144 case 0x70000001: return "SPARC_REGISTER";
2145 case 0x7ffffffd: return "AUXILIARY";
2146 case 0x7ffffffe: return "USED";
2147 case 0x7fffffff: return "FILTER";
2148
15f205b1 2149 default: return NULL;
fd85a6a1
NC
2150 }
2151}
2152
252b5132 2153static const char *
dda8d76d 2154get_dynamic_type (Filedata * filedata, unsigned long type)
252b5132 2155{
e9e44622 2156 static char buff[64];
252b5132
RH
2157
2158 switch (type)
2159 {
2160 case DT_NULL: return "NULL";
2161 case DT_NEEDED: return "NEEDED";
2162 case DT_PLTRELSZ: return "PLTRELSZ";
2163 case DT_PLTGOT: return "PLTGOT";
2164 case DT_HASH: return "HASH";
2165 case DT_STRTAB: return "STRTAB";
2166 case DT_SYMTAB: return "SYMTAB";
2167 case DT_RELA: return "RELA";
2168 case DT_RELASZ: return "RELASZ";
2169 case DT_RELAENT: return "RELAENT";
2170 case DT_STRSZ: return "STRSZ";
2171 case DT_SYMENT: return "SYMENT";
2172 case DT_INIT: return "INIT";
2173 case DT_FINI: return "FINI";
2174 case DT_SONAME: return "SONAME";
2175 case DT_RPATH: return "RPATH";
2176 case DT_SYMBOLIC: return "SYMBOLIC";
2177 case DT_REL: return "REL";
2178 case DT_RELSZ: return "RELSZ";
2179 case DT_RELENT: return "RELENT";
2180 case DT_PLTREL: return "PLTREL";
2181 case DT_DEBUG: return "DEBUG";
2182 case DT_TEXTREL: return "TEXTREL";
2183 case DT_JMPREL: return "JMPREL";
2184 case DT_BIND_NOW: return "BIND_NOW";
2185 case DT_INIT_ARRAY: return "INIT_ARRAY";
2186 case DT_FINI_ARRAY: return "FINI_ARRAY";
2187 case DT_INIT_ARRAYSZ: return "INIT_ARRAYSZ";
2188 case DT_FINI_ARRAYSZ: return "FINI_ARRAYSZ";
d1133906
NC
2189 case DT_RUNPATH: return "RUNPATH";
2190 case DT_FLAGS: return "FLAGS";
2d0e6f43 2191
d1133906
NC
2192 case DT_PREINIT_ARRAY: return "PREINIT_ARRAY";
2193 case DT_PREINIT_ARRAYSZ: return "PREINIT_ARRAYSZ";
6d913794 2194 case DT_SYMTAB_SHNDX: return "SYMTAB_SHNDX";
103f02d3 2195
05107a46 2196 case DT_CHECKSUM: return "CHECKSUM";
252b5132
RH
2197 case DT_PLTPADSZ: return "PLTPADSZ";
2198 case DT_MOVEENT: return "MOVEENT";
2199 case DT_MOVESZ: return "MOVESZ";
dcefbbbd 2200 case DT_FEATURE: return "FEATURE";
252b5132
RH
2201 case DT_POSFLAG_1: return "POSFLAG_1";
2202 case DT_SYMINSZ: return "SYMINSZ";
2203 case DT_SYMINENT: return "SYMINENT"; /* aka VALRNGHI */
103f02d3 2204
252b5132 2205 case DT_ADDRRNGLO: return "ADDRRNGLO";
dcefbbbd
L
2206 case DT_CONFIG: return "CONFIG";
2207 case DT_DEPAUDIT: return "DEPAUDIT";
2208 case DT_AUDIT: return "AUDIT";
2209 case DT_PLTPAD: return "PLTPAD";
2210 case DT_MOVETAB: return "MOVETAB";
252b5132 2211 case DT_SYMINFO: return "SYMINFO"; /* aka ADDRRNGHI */
103f02d3 2212
252b5132 2213 case DT_VERSYM: return "VERSYM";
103f02d3 2214
67a4f2b7
AO
2215 case DT_TLSDESC_GOT: return "TLSDESC_GOT";
2216 case DT_TLSDESC_PLT: return "TLSDESC_PLT";
252b5132
RH
2217 case DT_RELACOUNT: return "RELACOUNT";
2218 case DT_RELCOUNT: return "RELCOUNT";
2219 case DT_FLAGS_1: return "FLAGS_1";
2220 case DT_VERDEF: return "VERDEF";
2221 case DT_VERDEFNUM: return "VERDEFNUM";
2222 case DT_VERNEED: return "VERNEED";
2223 case DT_VERNEEDNUM: return "VERNEEDNUM";
103f02d3 2224
019148e4 2225 case DT_AUXILIARY: return "AUXILIARY";
252b5132
RH
2226 case DT_USED: return "USED";
2227 case DT_FILTER: return "FILTER";
103f02d3 2228
047b2264
JJ
2229 case DT_GNU_PRELINKED: return "GNU_PRELINKED";
2230 case DT_GNU_CONFLICT: return "GNU_CONFLICT";
2231 case DT_GNU_CONFLICTSZ: return "GNU_CONFLICTSZ";
2232 case DT_GNU_LIBLIST: return "GNU_LIBLIST";
2233 case DT_GNU_LIBLISTSZ: return "GNU_LIBLISTSZ";
fdc90cb4 2234 case DT_GNU_HASH: return "GNU_HASH";
a5da3dee 2235 case DT_GNU_FLAGS_1: return "GNU_FLAGS_1";
047b2264 2236
252b5132
RH
2237 default:
2238 if ((type >= DT_LOPROC) && (type <= DT_HIPROC))
2239 {
2cf0635d 2240 const char * result;
103f02d3 2241
dda8d76d 2242 switch (filedata->file_header.e_machine)
252b5132 2243 {
37c18eed
SD
2244 case EM_AARCH64:
2245 result = get_aarch64_dynamic_type (type);
2246 break;
252b5132 2247 case EM_MIPS:
4fe85591 2248 case EM_MIPS_RS3_LE:
252b5132
RH
2249 result = get_mips_dynamic_type (type);
2250 break;
9a097730
RH
2251 case EM_SPARCV9:
2252 result = get_sparc64_dynamic_type (type);
2253 break;
7490d522
AM
2254 case EM_PPC:
2255 result = get_ppc_dynamic_type (type);
2256 break;
f1cb7e17
AM
2257 case EM_PPC64:
2258 result = get_ppc64_dynamic_type (type);
2259 break;
ecc51f48
NC
2260 case EM_IA_64:
2261 result = get_ia64_dynamic_type (type);
2262 break;
fabcb361
RH
2263 case EM_ALPHA:
2264 result = get_alpha_dynamic_type (type);
2265 break;
1c0d3aa6
NC
2266 case EM_SCORE:
2267 result = get_score_dynamic_type (type);
2268 break;
40b36596
JM
2269 case EM_TI_C6000:
2270 result = get_tic6x_dynamic_type (type);
2271 break;
36591ba1
SL
2272 case EM_ALTERA_NIOS2:
2273 result = get_nios2_dynamic_type (type);
2274 break;
252b5132 2275 default:
dda8d76d 2276 if (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_SOLARIS)
fd85a6a1
NC
2277 result = get_solaris_dynamic_type (type);
2278 else
2279 result = NULL;
252b5132
RH
2280 break;
2281 }
2282
2283 if (result != NULL)
2284 return result;
2285
e9e44622 2286 snprintf (buff, sizeof (buff), _("Processor Specific: %lx"), type);
252b5132 2287 }
eec8f817 2288 else if (((type >= DT_LOOS) && (type <= DT_HIOS))
dda8d76d 2289 || (filedata->file_header.e_machine == EM_PARISC
eec8f817 2290 && (type >= OLD_DT_LOOS) && (type <= OLD_DT_HIOS)))
103f02d3 2291 {
2cf0635d 2292 const char * result;
103f02d3 2293
dda8d76d 2294 switch (filedata->file_header.e_machine)
103f02d3
UD
2295 {
2296 case EM_PARISC:
2297 result = get_parisc_dynamic_type (type);
2298 break;
148b93f2
NC
2299 case EM_IA_64:
2300 result = get_ia64_dynamic_type (type);
2301 break;
103f02d3 2302 default:
dda8d76d 2303 if (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_SOLARIS)
fd85a6a1
NC
2304 result = get_solaris_dynamic_type (type);
2305 else
2306 result = NULL;
103f02d3
UD
2307 break;
2308 }
2309
2310 if (result != NULL)
2311 return result;
2312
e9e44622
JJ
2313 snprintf (buff, sizeof (buff), _("Operating System specific: %lx"),
2314 type);
103f02d3 2315 }
252b5132 2316 else
e9e44622 2317 snprintf (buff, sizeof (buff), _("<unknown>: %lx"), type);
103f02d3 2318
252b5132
RH
2319 return buff;
2320 }
2321}
2322
2323static char *
d3ba0551 2324get_file_type (unsigned e_type)
252b5132 2325{
89246a0e 2326 static char buff[64];
252b5132
RH
2327
2328 switch (e_type)
2329 {
32ec8896
NC
2330 case ET_NONE: return _("NONE (None)");
2331 case ET_REL: return _("REL (Relocatable file)");
2332 case ET_EXEC: return _("EXEC (Executable file)");
2333 case ET_DYN: return _("DYN (Shared object file)");
2334 case ET_CORE: return _("CORE (Core file)");
252b5132
RH
2335
2336 default:
2337 if ((e_type >= ET_LOPROC) && (e_type <= ET_HIPROC))
e9e44622 2338 snprintf (buff, sizeof (buff), _("Processor Specific: (%x)"), e_type);
252b5132 2339 else if ((e_type >= ET_LOOS) && (e_type <= ET_HIOS))
e9e44622 2340 snprintf (buff, sizeof (buff), _("OS Specific: (%x)"), e_type);
252b5132 2341 else
e9e44622 2342 snprintf (buff, sizeof (buff), _("<unknown>: %x"), e_type);
252b5132
RH
2343 return buff;
2344 }
2345}
2346
2347static char *
d3ba0551 2348get_machine_name (unsigned e_machine)
252b5132 2349{
b34976b6 2350 static char buff[64]; /* XXX */
252b5132
RH
2351
2352 switch (e_machine)
2353 {
55e22ca8
NC
2354 /* Please keep this switch table sorted by increasing EM_ value. */
2355 /* 0 */
c45021f2
NC
2356 case EM_NONE: return _("None");
2357 case EM_M32: return "WE32100";
2358 case EM_SPARC: return "Sparc";
2359 case EM_386: return "Intel 80386";
2360 case EM_68K: return "MC68000";
2361 case EM_88K: return "MC88000";
22abe556 2362 case EM_IAMCU: return "Intel MCU";
fb70ec17 2363 case EM_860: return "Intel 80860";
c45021f2
NC
2364 case EM_MIPS: return "MIPS R3000";
2365 case EM_S370: return "IBM System/370";
55e22ca8 2366 /* 10 */
7036c0e1 2367 case EM_MIPS_RS3_LE: return "MIPS R4000 big-endian";
252b5132 2368 case EM_OLD_SPARCV9: return "Sparc v9 (old)";
c45021f2 2369 case EM_PARISC: return "HPPA";
55e22ca8 2370 case EM_VPP550: return "Fujitsu VPP500";
7036c0e1 2371 case EM_SPARC32PLUS: return "Sparc v8+" ;
d7867d17 2372 case EM_960: return "Intel 80960";
c45021f2 2373 case EM_PPC: return "PowerPC";
55e22ca8 2374 /* 20 */
285d1771 2375 case EM_PPC64: return "PowerPC64";
55e22ca8
NC
2376 case EM_S390_OLD:
2377 case EM_S390: return "IBM S/390";
2378 case EM_SPU: return "SPU";
2379 /* 30 */
2380 case EM_V800: return "Renesas V850 (using RH850 ABI)";
c45021f2
NC
2381 case EM_FR20: return "Fujitsu FR20";
2382 case EM_RH32: return "TRW RH32";
b34976b6 2383 case EM_MCORE: return "MCORE";
55e22ca8 2384 /* 40 */
7036c0e1
AJ
2385 case EM_ARM: return "ARM";
2386 case EM_OLD_ALPHA: return "Digital Alpha (old)";
ef230218 2387 case EM_SH: return "Renesas / SuperH SH";
c45021f2
NC
2388 case EM_SPARCV9: return "Sparc v9";
2389 case EM_TRICORE: return "Siemens Tricore";
584da044 2390 case EM_ARC: return "ARC";
c2dcd04e
NC
2391 case EM_H8_300: return "Renesas H8/300";
2392 case EM_H8_300H: return "Renesas H8/300H";
2393 case EM_H8S: return "Renesas H8S";
2394 case EM_H8_500: return "Renesas H8/500";
55e22ca8 2395 /* 50 */
30800947 2396 case EM_IA_64: return "Intel IA-64";
252b5132
RH
2397 case EM_MIPS_X: return "Stanford MIPS-X";
2398 case EM_COLDFIRE: return "Motorola Coldfire";
55e22ca8 2399 case EM_68HC12: return "Motorola MC68HC12 Microcontroller";
7036c0e1
AJ
2400 case EM_MMA: return "Fujitsu Multimedia Accelerator";
2401 case EM_PCP: return "Siemens PCP";
2402 case EM_NCPU: return "Sony nCPU embedded RISC processor";
2403 case EM_NDR1: return "Denso NDR1 microprocesspr";
2404 case EM_STARCORE: return "Motorola Star*Core processor";
2405 case EM_ME16: return "Toyota ME16 processor";
55e22ca8 2406 /* 60 */
7036c0e1
AJ
2407 case EM_ST100: return "STMicroelectronics ST100 processor";
2408 case EM_TINYJ: return "Advanced Logic Corp. TinyJ embedded processor";
55e22ca8 2409 case EM_X86_64: return "Advanced Micro Devices X86-64";
11636f9e
JM
2410 case EM_PDSP: return "Sony DSP processor";
2411 case EM_PDP10: return "Digital Equipment Corp. PDP-10";
2412 case EM_PDP11: return "Digital Equipment Corp. PDP-11";
7036c0e1
AJ
2413 case EM_FX66: return "Siemens FX66 microcontroller";
2414 case EM_ST9PLUS: return "STMicroelectronics ST9+ 8/16 bit microcontroller";
2415 case EM_ST7: return "STMicroelectronics ST7 8-bit microcontroller";
2416 case EM_68HC16: return "Motorola MC68HC16 Microcontroller";
55e22ca8 2417 /* 70 */
7036c0e1
AJ
2418 case EM_68HC11: return "Motorola MC68HC11 Microcontroller";
2419 case EM_68HC08: return "Motorola MC68HC08 Microcontroller";
2420 case EM_68HC05: return "Motorola MC68HC05 Microcontroller";
2421 case EM_SVX: return "Silicon Graphics SVx";
2422 case EM_ST19: return "STMicroelectronics ST19 8-bit microcontroller";
2423 case EM_VAX: return "Digital VAX";
1b61cf92 2424 case EM_CRIS: return "Axis Communications 32-bit embedded processor";
c45021f2
NC
2425 case EM_JAVELIN: return "Infineon Technologies 32-bit embedded cpu";
2426 case EM_FIREPATH: return "Element 14 64-bit DSP processor";
2427 case EM_ZSP: return "LSI Logic's 16-bit DSP processor";
55e22ca8 2428 /* 80 */
b34976b6 2429 case EM_MMIX: return "Donald Knuth's educational 64-bit processor";
c45021f2 2430 case EM_HUANY: return "Harvard Universitys's machine-independent object format";
3b36097d 2431 case EM_PRISM: return "Vitesse Prism";
55e22ca8
NC
2432 case EM_AVR_OLD:
2433 case EM_AVR: return "Atmel AVR 8-bit microcontroller";
2434 case EM_CYGNUS_FR30:
2435 case EM_FR30: return "Fujitsu FR30";
2436 case EM_CYGNUS_D10V:
2437 case EM_D10V: return "d10v";
2438 case EM_CYGNUS_D30V:
2439 case EM_D30V: return "d30v";
2440 case EM_CYGNUS_V850:
2441 case EM_V850: return "Renesas V850";
2442 case EM_CYGNUS_M32R:
2443 case EM_M32R: return "Renesas M32R (formerly Mitsubishi M32r)";
2444 case EM_CYGNUS_MN10300:
2445 case EM_MN10300: return "mn10300";
2446 /* 90 */
2447 case EM_CYGNUS_MN10200:
2448 case EM_MN10200: return "mn10200";
2449 case EM_PJ: return "picoJava";
73589c9d 2450 case EM_OR1K: return "OpenRISC 1000";
55e22ca8 2451 case EM_ARC_COMPACT: return "ARCompact";
88da6820
NC
2452 case EM_XTENSA_OLD:
2453 case EM_XTENSA: return "Tensilica Xtensa Processor";
11636f9e
JM
2454 case EM_VIDEOCORE: return "Alphamosaic VideoCore processor";
2455 case EM_TMM_GPP: return "Thompson Multimedia General Purpose Processor";
2456 case EM_NS32K: return "National Semiconductor 32000 series";
2457 case EM_TPC: return "Tenor Network TPC processor";
55e22ca8
NC
2458 case EM_SNP1K: return "Trebia SNP 1000 processor";
2459 /* 100 */
9abca702 2460 case EM_ST200: return "STMicroelectronics ST200 microcontroller";
55e22ca8
NC
2461 case EM_IP2K_OLD:
2462 case EM_IP2K: return "Ubicom IP2xxx 8-bit microcontrollers";
11636f9e
JM
2463 case EM_MAX: return "MAX Processor";
2464 case EM_CR: return "National Semiconductor CompactRISC";
2465 case EM_F2MC16: return "Fujitsu F2MC16";
2466 case EM_MSP430: return "Texas Instruments msp430 microcontroller";
7bbe5bc5 2467 case EM_BLACKFIN: return "Analog Devices Blackfin";
11636f9e
JM
2468 case EM_SE_C33: return "S1C33 Family of Seiko Epson processors";
2469 case EM_SEP: return "Sharp embedded microprocessor";
2470 case EM_ARCA: return "Arca RISC microprocessor";
55e22ca8 2471 /* 110 */
11636f9e
JM
2472 case EM_UNICORE: return "Unicore";
2473 case EM_EXCESS: return "eXcess 16/32/64-bit configurable embedded CPU";
2474 case EM_DXP: return "Icera Semiconductor Inc. Deep Execution Processor";
64fd6348 2475 case EM_ALTERA_NIOS2: return "Altera Nios II";
55e22ca8
NC
2476 case EM_CRX: return "National Semiconductor CRX microprocessor";
2477 case EM_XGATE: return "Motorola XGATE embedded processor";
c29aca4a 2478 case EM_C166:
d70c5fc7 2479 case EM_XC16X: return "Infineon Technologies xc16x";
11636f9e
JM
2480 case EM_M16C: return "Renesas M16C series microprocessors";
2481 case EM_DSPIC30F: return "Microchip Technology dsPIC30F Digital Signal Controller";
2482 case EM_CE: return "Freescale Communication Engine RISC core";
55e22ca8
NC
2483 /* 120 */
2484 case EM_M32C: return "Renesas M32c";
2485 /* 130 */
11636f9e
JM
2486 case EM_TSK3000: return "Altium TSK3000 core";
2487 case EM_RS08: return "Freescale RS08 embedded processor";
2488 case EM_ECOG2: return "Cyan Technology eCOG2 microprocessor";
55e22ca8 2489 case EM_SCORE: return "SUNPLUS S+Core";
11636f9e
JM
2490 case EM_DSP24: return "New Japan Radio (NJR) 24-bit DSP Processor";
2491 case EM_VIDEOCORE3: return "Broadcom VideoCore III processor";
55e22ca8 2492 case EM_LATTICEMICO32: return "Lattice Mico32";
11636f9e 2493 case EM_SE_C17: return "Seiko Epson C17 family";
55e22ca8 2494 /* 140 */
11636f9e
JM
2495 case EM_TI_C6000: return "Texas Instruments TMS320C6000 DSP family";
2496 case EM_TI_C2000: return "Texas Instruments TMS320C2000 DSP family";
2497 case EM_TI_C5500: return "Texas Instruments TMS320C55x DSP family";
55e22ca8
NC
2498 case EM_TI_PRU: return "TI PRU I/O processor";
2499 /* 160 */
11636f9e
JM
2500 case EM_MMDSP_PLUS: return "STMicroelectronics 64bit VLIW Data Signal Processor";
2501 case EM_CYPRESS_M8C: return "Cypress M8C microprocessor";
2502 case EM_R32C: return "Renesas R32C series microprocessors";
2503 case EM_TRIMEDIA: return "NXP Semiconductors TriMedia architecture family";
2504 case EM_QDSP6: return "QUALCOMM DSP6 Processor";
2505 case EM_8051: return "Intel 8051 and variants";
2506 case EM_STXP7X: return "STMicroelectronics STxP7x family";
2507 case EM_NDS32: return "Andes Technology compact code size embedded RISC processor family";
2508 case EM_ECOG1X: return "Cyan Technology eCOG1X family";
2509 case EM_MAXQ30: return "Dallas Semiconductor MAXQ30 Core microcontrollers";
55e22ca8 2510 /* 170 */
11636f9e
JM
2511 case EM_XIMO16: return "New Japan Radio (NJR) 16-bit DSP Processor";
2512 case EM_MANIK: return "M2000 Reconfigurable RISC Microprocessor";
2513 case EM_CRAYNV2: return "Cray Inc. NV2 vector architecture";
c7927a3c 2514 case EM_RX: return "Renesas RX";
a3c62988 2515 case EM_METAG: return "Imagination Technologies Meta processor architecture";
11636f9e
JM
2516 case EM_MCST_ELBRUS: return "MCST Elbrus general purpose hardware architecture";
2517 case EM_ECOG16: return "Cyan Technology eCOG16 family";
55e22ca8
NC
2518 case EM_CR16:
2519 case EM_MICROBLAZE:
2520 case EM_MICROBLAZE_OLD: return "Xilinx MicroBlaze";
11636f9e
JM
2521 case EM_ETPU: return "Freescale Extended Time Processing Unit";
2522 case EM_SLE9X: return "Infineon Technologies SLE9X core";
55e22ca8
NC
2523 /* 180 */
2524 case EM_L1OM: return "Intel L1OM";
2525 case EM_K1OM: return "Intel K1OM";
2526 case EM_INTEL182: return "Intel (reserved)";
2527 case EM_AARCH64: return "AArch64";
2528 case EM_ARM184: return "ARM (reserved)";
2529 case EM_AVR32: return "Atmel Corporation 32-bit microprocessor";
11636f9e
JM
2530 case EM_STM8: return "STMicroeletronics STM8 8-bit microcontroller";
2531 case EM_TILE64: return "Tilera TILE64 multicore architecture family";
2532 case EM_TILEPRO: return "Tilera TILEPro multicore architecture family";
55e22ca8 2533 /* 190 */
11636f9e 2534 case EM_CUDA: return "NVIDIA CUDA architecture";
55e22ca8 2535 case EM_TILEGX: return "Tilera TILE-Gx multicore architecture family";
6d913794
NC
2536 case EM_CLOUDSHIELD: return "CloudShield architecture family";
2537 case EM_COREA_1ST: return "KIPO-KAIST Core-A 1st generation processor family";
2538 case EM_COREA_2ND: return "KIPO-KAIST Core-A 2nd generation processor family";
55e22ca8 2539 case EM_ARC_COMPACT2: return "ARCv2";
6d913794 2540 case EM_OPEN8: return "Open8 8-bit RISC soft processor core";
55e22ca8 2541 case EM_RL78: return "Renesas RL78";
6d913794 2542 case EM_VIDEOCORE5: return "Broadcom VideoCore V processor";
55e22ca8
NC
2543 case EM_78K0R: return "Renesas 78K0R";
2544 /* 200 */
6d913794 2545 case EM_56800EX: return "Freescale 56800EX Digital Signal Controller (DSC)";
15f205b1
NC
2546 case EM_BA1: return "Beyond BA1 CPU architecture";
2547 case EM_BA2: return "Beyond BA2 CPU architecture";
6d913794
NC
2548 case EM_XCORE: return "XMOS xCORE processor family";
2549 case EM_MCHP_PIC: return "Microchip 8-bit PIC(r) family";
7b9f9859 2550 case EM_INTELGT: return "Intel Graphics Technology";
55e22ca8 2551 /* 210 */
6d913794
NC
2552 case EM_KM32: return "KM211 KM32 32-bit processor";
2553 case EM_KMX32: return "KM211 KMX32 32-bit processor";
2554 case EM_KMX16: return "KM211 KMX16 16-bit processor";
2555 case EM_KMX8: return "KM211 KMX8 8-bit processor";
2556 case EM_KVARC: return "KM211 KVARC processor";
15f205b1 2557 case EM_CDP: return "Paneve CDP architecture family";
6d913794
NC
2558 case EM_COGE: return "Cognitive Smart Memory Processor";
2559 case EM_COOL: return "Bluechip Systems CoolEngine";
2560 case EM_NORC: return "Nanoradio Optimized RISC";
2561 case EM_CSR_KALIMBA: return "CSR Kalimba architecture family";
55e22ca8 2562 /* 220 */
15f205b1 2563 case EM_Z80: return "Zilog Z80";
55e22ca8
NC
2564 case EM_VISIUM: return "CDS VISIUMcore processor";
2565 case EM_FT32: return "FTDI Chip FT32";
2566 case EM_MOXIE: return "Moxie";
2567 case EM_AMDGPU: return "AMD GPU";
4cf2ad72
CC
2568 /* 230 (all reserved) */
2569 /* 240 */
55e22ca8
NC
2570 case EM_RISCV: return "RISC-V";
2571 case EM_LANAI: return "Lanai 32-bit processor";
4cf2ad72
CC
2572 case EM_CEVA: return "CEVA Processor Architecture Family";
2573 case EM_CEVA_X2: return "CEVA X2 Processor Family";
55e22ca8 2574 case EM_BPF: return "Linux BPF";
4cf2ad72
CC
2575 case EM_GRAPHCORE_IPU: return "Graphcore Intelligent Processing Unit";
2576 case EM_IMG1: return "Imagination Technologies";
2577 /* 250 */
fe944acf 2578 case EM_NFP: return "Netronome Flow Processor";
4cf2ad72
CC
2579 case EM_VE: return "NEC Vector Engine";
2580 case EM_CSKY: return "C-SKY";
2581 case EM_ARC_COMPACT3_64: return "Synopsys ARCv2.3 64-bit";
2582 case EM_MCS6502: return "MOS Technology MCS 6502 processor";
2583 case EM_ARC_COMPACT3: return "Synopsys ARCv2.3 32-bit";
2584 case EM_KVX: return "Kalray VLIW core of the MPPA processor family";
2585 case EM_65816: return "WDC 65816/65C816";
2586 case EM_LOONGARCH: return "Loongson Loongarch";
2587 case EM_KF32: return "ChipON KungFu32";
55e22ca8
NC
2588
2589 /* Large numbers... */
2590 case EM_MT: return "Morpho Techologies MT processor";
2591 case EM_ALPHA: return "Alpha";
2592 case EM_WEBASSEMBLY: return "Web Assembly";
9abca702 2593 case EM_DLX: return "OpenDLX";
55e22ca8
NC
2594 case EM_XSTORMY16: return "Sanyo XStormy16 CPU core";
2595 case EM_IQ2000: return "Vitesse IQ2000";
2596 case EM_M32C_OLD:
2597 case EM_NIOS32: return "Altera Nios";
2598 case EM_CYGNUS_MEP: return "Toshiba MeP Media Engine";
2599 case EM_ADAPTEVA_EPIPHANY: return "Adapteva EPIPHANY";
2600 case EM_CYGNUS_FRV: return "Fujitsu FR-V";
637b1970 2601 case EM_S12Z: return "Freescale S12Z";
55e22ca8 2602
252b5132 2603 default:
35d9dd2f 2604 snprintf (buff, sizeof (buff), _("<unknown>: 0x%x"), e_machine);
252b5132
RH
2605 return buff;
2606 }
2607}
2608
a9522a21
AB
2609static void
2610decode_ARC_machine_flags (unsigned e_flags, unsigned e_machine, char buf[])
2611{
2612 /* ARC has two machine types EM_ARC_COMPACT and EM_ARC_COMPACT2. Some
6987d5a1 2613 other compilers don't specify an architecture type in the e_flags, and
a9522a21
AB
2614 instead use EM_ARC_COMPACT for old ARC600, ARC601, and ARC700
2615 architectures, and switch to EM_ARC_COMPACT2 for newer ARCEM and ARCHS
2616 architectures.
2617
2618 Th GNU tools follows this use of EM_ARC_COMPACT and EM_ARC_COMPACT2,
2619 but also sets a specific architecture type in the e_flags field.
2620
2621 However, when decoding the flags we don't worry if we see an
2622 unexpected pairing, for example EM_ARC_COMPACT machine type, with
2623 ARCEM architecture type. */
2624
2625 switch (e_flags & EF_ARC_MACH_MSK)
2626 {
2627 /* We only expect these to occur for EM_ARC_COMPACT2. */
2628 case EF_ARC_CPU_ARCV2EM:
2629 strcat (buf, ", ARC EM");
2630 break;
2631 case EF_ARC_CPU_ARCV2HS:
2632 strcat (buf, ", ARC HS");
2633 break;
2634
2635 /* We only expect these to occur for EM_ARC_COMPACT. */
2636 case E_ARC_MACH_ARC600:
2637 strcat (buf, ", ARC600");
2638 break;
2639 case E_ARC_MACH_ARC601:
2640 strcat (buf, ", ARC601");
2641 break;
2642 case E_ARC_MACH_ARC700:
2643 strcat (buf, ", ARC700");
2644 break;
2645
2646 /* The only times we should end up here are (a) A corrupt ELF, (b) A
2647 new ELF with new architecture being read by an old version of
2648 readelf, or (c) An ELF built with non-GNU compiler that does not
2649 set the architecture in the e_flags. */
2650 default:
2651 if (e_machine == EM_ARC_COMPACT)
2652 strcat (buf, ", Unknown ARCompact");
2653 else
2654 strcat (buf, ", Unknown ARC");
2655 break;
2656 }
2657
2658 switch (e_flags & EF_ARC_OSABI_MSK)
2659 {
2660 case E_ARC_OSABI_ORIG:
2661 strcat (buf, ", (ABI:legacy)");
2662 break;
2663 case E_ARC_OSABI_V2:
2664 strcat (buf, ", (ABI:v2)");
2665 break;
2666 /* Only upstream 3.9+ kernels will support ARCv2 ISA. */
2667 case E_ARC_OSABI_V3:
2668 strcat (buf, ", v3 no-legacy-syscalls ABI");
2669 break;
53a346d8
CZ
2670 case E_ARC_OSABI_V4:
2671 strcat (buf, ", v4 ABI");
2672 break;
a9522a21
AB
2673 default:
2674 strcat (buf, ", unrecognised ARC OSABI flag");
2675 break;
2676 }
2677}
2678
f3485b74 2679static void
d3ba0551 2680decode_ARM_machine_flags (unsigned e_flags, char buf[])
f3485b74
NC
2681{
2682 unsigned eabi;
015dc7e1 2683 bool unknown = false;
f3485b74
NC
2684
2685 eabi = EF_ARM_EABI_VERSION (e_flags);
2686 e_flags &= ~ EF_ARM_EABIMASK;
2687
2688 /* Handle "generic" ARM flags. */
2689 if (e_flags & EF_ARM_RELEXEC)
2690 {
2691 strcat (buf, ", relocatable executable");
2692 e_flags &= ~ EF_ARM_RELEXEC;
2693 }
76da6bbe 2694
18a20338
CL
2695 if (e_flags & EF_ARM_PIC)
2696 {
2697 strcat (buf, ", position independent");
2698 e_flags &= ~ EF_ARM_PIC;
2699 }
2700
f3485b74
NC
2701 /* Now handle EABI specific flags. */
2702 switch (eabi)
2703 {
2704 default:
2c71103e 2705 strcat (buf, ", <unrecognized EABI>");
f3485b74 2706 if (e_flags)
015dc7e1 2707 unknown = true;
f3485b74
NC
2708 break;
2709
2710 case EF_ARM_EABI_VER1:
a5bcd848 2711 strcat (buf, ", Version1 EABI");
f3485b74
NC
2712 while (e_flags)
2713 {
2714 unsigned flag;
76da6bbe 2715
f3485b74
NC
2716 /* Process flags one bit at a time. */
2717 flag = e_flags & - e_flags;
2718 e_flags &= ~ flag;
76da6bbe 2719
f3485b74
NC
2720 switch (flag)
2721 {
a5bcd848 2722 case EF_ARM_SYMSARESORTED: /* Conflicts with EF_ARM_INTERWORK. */
f3485b74
NC
2723 strcat (buf, ", sorted symbol tables");
2724 break;
76da6bbe 2725
f3485b74 2726 default:
015dc7e1 2727 unknown = true;
f3485b74
NC
2728 break;
2729 }
2730 }
2731 break;
76da6bbe 2732
a5bcd848
PB
2733 case EF_ARM_EABI_VER2:
2734 strcat (buf, ", Version2 EABI");
2735 while (e_flags)
2736 {
2737 unsigned flag;
2738
2739 /* Process flags one bit at a time. */
2740 flag = e_flags & - e_flags;
2741 e_flags &= ~ flag;
2742
2743 switch (flag)
2744 {
2745 case EF_ARM_SYMSARESORTED: /* Conflicts with EF_ARM_INTERWORK. */
2746 strcat (buf, ", sorted symbol tables");
2747 break;
2748
2749 case EF_ARM_DYNSYMSUSESEGIDX:
2750 strcat (buf, ", dynamic symbols use segment index");
2751 break;
2752
2753 case EF_ARM_MAPSYMSFIRST:
2754 strcat (buf, ", mapping symbols precede others");
2755 break;
2756
2757 default:
015dc7e1 2758 unknown = true;
a5bcd848
PB
2759 break;
2760 }
2761 }
2762 break;
2763
d507cf36
PB
2764 case EF_ARM_EABI_VER3:
2765 strcat (buf, ", Version3 EABI");
8cb51566
PB
2766 break;
2767
2768 case EF_ARM_EABI_VER4:
2769 strcat (buf, ", Version4 EABI");
3bfcb652
NC
2770 while (e_flags)
2771 {
2772 unsigned flag;
2773
2774 /* Process flags one bit at a time. */
2775 flag = e_flags & - e_flags;
2776 e_flags &= ~ flag;
2777
2778 switch (flag)
2779 {
2780 case EF_ARM_BE8:
2781 strcat (buf, ", BE8");
2782 break;
2783
2784 case EF_ARM_LE8:
2785 strcat (buf, ", LE8");
2786 break;
2787
2788 default:
015dc7e1 2789 unknown = true;
3bfcb652
NC
2790 break;
2791 }
3bfcb652
NC
2792 }
2793 break;
3a4a14e9
PB
2794
2795 case EF_ARM_EABI_VER5:
2796 strcat (buf, ", Version5 EABI");
d507cf36
PB
2797 while (e_flags)
2798 {
2799 unsigned flag;
2800
2801 /* Process flags one bit at a time. */
2802 flag = e_flags & - e_flags;
2803 e_flags &= ~ flag;
2804
2805 switch (flag)
2806 {
2807 case EF_ARM_BE8:
2808 strcat (buf, ", BE8");
2809 break;
2810
2811 case EF_ARM_LE8:
2812 strcat (buf, ", LE8");
2813 break;
2814
3bfcb652
NC
2815 case EF_ARM_ABI_FLOAT_SOFT: /* Conflicts with EF_ARM_SOFT_FLOAT. */
2816 strcat (buf, ", soft-float ABI");
2817 break;
2818
2819 case EF_ARM_ABI_FLOAT_HARD: /* Conflicts with EF_ARM_VFP_FLOAT. */
2820 strcat (buf, ", hard-float ABI");
2821 break;
2822
d507cf36 2823 default:
015dc7e1 2824 unknown = true;
d507cf36
PB
2825 break;
2826 }
2827 }
2828 break;
2829
f3485b74 2830 case EF_ARM_EABI_UNKNOWN:
a5bcd848 2831 strcat (buf, ", GNU EABI");
f3485b74
NC
2832 while (e_flags)
2833 {
2834 unsigned flag;
76da6bbe 2835
f3485b74
NC
2836 /* Process flags one bit at a time. */
2837 flag = e_flags & - e_flags;
2838 e_flags &= ~ flag;
76da6bbe 2839
f3485b74
NC
2840 switch (flag)
2841 {
a5bcd848 2842 case EF_ARM_INTERWORK:
f3485b74
NC
2843 strcat (buf, ", interworking enabled");
2844 break;
76da6bbe 2845
a5bcd848 2846 case EF_ARM_APCS_26:
f3485b74
NC
2847 strcat (buf, ", uses APCS/26");
2848 break;
76da6bbe 2849
a5bcd848 2850 case EF_ARM_APCS_FLOAT:
f3485b74
NC
2851 strcat (buf, ", uses APCS/float");
2852 break;
76da6bbe 2853
a5bcd848 2854 case EF_ARM_PIC:
f3485b74
NC
2855 strcat (buf, ", position independent");
2856 break;
76da6bbe 2857
a5bcd848 2858 case EF_ARM_ALIGN8:
f3485b74
NC
2859 strcat (buf, ", 8 bit structure alignment");
2860 break;
76da6bbe 2861
a5bcd848 2862 case EF_ARM_NEW_ABI:
f3485b74
NC
2863 strcat (buf, ", uses new ABI");
2864 break;
76da6bbe 2865
a5bcd848 2866 case EF_ARM_OLD_ABI:
f3485b74
NC
2867 strcat (buf, ", uses old ABI");
2868 break;
76da6bbe 2869
a5bcd848 2870 case EF_ARM_SOFT_FLOAT:
f3485b74
NC
2871 strcat (buf, ", software FP");
2872 break;
76da6bbe 2873
90e01f86
ILT
2874 case EF_ARM_VFP_FLOAT:
2875 strcat (buf, ", VFP");
2876 break;
2877
fde78edd
NC
2878 case EF_ARM_MAVERICK_FLOAT:
2879 strcat (buf, ", Maverick FP");
2880 break;
2881
f3485b74 2882 default:
015dc7e1 2883 unknown = true;
f3485b74
NC
2884 break;
2885 }
2886 }
2887 }
f3485b74
NC
2888
2889 if (unknown)
2b692964 2890 strcat (buf,_(", <unknown>"));
f3485b74
NC
2891}
2892
343433df
AB
2893static void
2894decode_AVR_machine_flags (unsigned e_flags, char buf[], size_t size)
2895{
2896 --size; /* Leave space for null terminator. */
2897
2898 switch (e_flags & EF_AVR_MACH)
2899 {
2900 case E_AVR_MACH_AVR1:
2901 strncat (buf, ", avr:1", size);
2902 break;
2903 case E_AVR_MACH_AVR2:
2904 strncat (buf, ", avr:2", size);
2905 break;
2906 case E_AVR_MACH_AVR25:
2907 strncat (buf, ", avr:25", size);
2908 break;
2909 case E_AVR_MACH_AVR3:
2910 strncat (buf, ", avr:3", size);
2911 break;
2912 case E_AVR_MACH_AVR31:
2913 strncat (buf, ", avr:31", size);
2914 break;
2915 case E_AVR_MACH_AVR35:
2916 strncat (buf, ", avr:35", size);
2917 break;
2918 case E_AVR_MACH_AVR4:
2919 strncat (buf, ", avr:4", size);
2920 break;
2921 case E_AVR_MACH_AVR5:
2922 strncat (buf, ", avr:5", size);
2923 break;
2924 case E_AVR_MACH_AVR51:
2925 strncat (buf, ", avr:51", size);
2926 break;
2927 case E_AVR_MACH_AVR6:
2928 strncat (buf, ", avr:6", size);
2929 break;
2930 case E_AVR_MACH_AVRTINY:
2931 strncat (buf, ", avr:100", size);
2932 break;
2933 case E_AVR_MACH_XMEGA1:
2934 strncat (buf, ", avr:101", size);
2935 break;
2936 case E_AVR_MACH_XMEGA2:
2937 strncat (buf, ", avr:102", size);
2938 break;
2939 case E_AVR_MACH_XMEGA3:
2940 strncat (buf, ", avr:103", size);
2941 break;
2942 case E_AVR_MACH_XMEGA4:
2943 strncat (buf, ", avr:104", size);
2944 break;
2945 case E_AVR_MACH_XMEGA5:
2946 strncat (buf, ", avr:105", size);
2947 break;
2948 case E_AVR_MACH_XMEGA6:
2949 strncat (buf, ", avr:106", size);
2950 break;
2951 case E_AVR_MACH_XMEGA7:
2952 strncat (buf, ", avr:107", size);
2953 break;
2954 default:
2955 strncat (buf, ", avr:<unknown>", size);
2956 break;
2957 }
2958
2959 size -= strlen (buf);
2960 if (e_flags & EF_AVR_LINKRELAX_PREPARED)
2961 strncat (buf, ", link-relax", size);
2962}
2963
35c08157
KLC
2964static void
2965decode_NDS32_machine_flags (unsigned e_flags, char buf[], size_t size)
2966{
2967 unsigned abi;
2968 unsigned arch;
2969 unsigned config;
2970 unsigned version;
015dc7e1 2971 bool has_fpu = false;
32ec8896 2972 unsigned int r = 0;
35c08157
KLC
2973
2974 static const char *ABI_STRINGS[] =
2975 {
2976 "ABI v0", /* use r5 as return register; only used in N1213HC */
2977 "ABI v1", /* use r0 as return register */
2978 "ABI v2", /* use r0 as return register and don't reserve 24 bytes for arguments */
2979 "ABI v2fp", /* for FPU */
40c7a7cb
KLC
2980 "AABI",
2981 "ABI2 FP+"
35c08157
KLC
2982 };
2983 static const char *VER_STRINGS[] =
2984 {
2985 "Andes ELF V1.3 or older",
2986 "Andes ELF V1.3.1",
2987 "Andes ELF V1.4"
2988 };
2989 static const char *ARCH_STRINGS[] =
2990 {
2991 "",
2992 "Andes Star v1.0",
2993 "Andes Star v2.0",
2994 "Andes Star v3.0",
2995 "Andes Star v3.0m"
2996 };
2997
2998 abi = EF_NDS_ABI & e_flags;
2999 arch = EF_NDS_ARCH & e_flags;
3000 config = EF_NDS_INST & e_flags;
3001 version = EF_NDS32_ELF_VERSION & e_flags;
3002
3003 memset (buf, 0, size);
3004
3005 switch (abi)
3006 {
3007 case E_NDS_ABI_V0:
3008 case E_NDS_ABI_V1:
3009 case E_NDS_ABI_V2:
3010 case E_NDS_ABI_V2FP:
3011 case E_NDS_ABI_AABI:
40c7a7cb 3012 case E_NDS_ABI_V2FP_PLUS:
35c08157
KLC
3013 /* In case there are holes in the array. */
3014 r += snprintf (buf + r, size - r, ", %s", ABI_STRINGS[abi >> EF_NDS_ABI_SHIFT]);
3015 break;
3016
3017 default:
3018 r += snprintf (buf + r, size - r, ", <unrecognized ABI>");
3019 break;
3020 }
3021
3022 switch (version)
3023 {
3024 case E_NDS32_ELF_VER_1_2:
3025 case E_NDS32_ELF_VER_1_3:
3026 case E_NDS32_ELF_VER_1_4:
3027 r += snprintf (buf + r, size - r, ", %s", VER_STRINGS[version >> EF_NDS32_ELF_VERSION_SHIFT]);
3028 break;
3029
3030 default:
3031 r += snprintf (buf + r, size - r, ", <unrecognized ELF version number>");
3032 break;
3033 }
3034
3035 if (E_NDS_ABI_V0 == abi)
3036 {
3037 /* OLD ABI; only used in N1213HC, has performance extension 1. */
3038 r += snprintf (buf + r, size - r, ", Andes Star v1.0, N1213HC, MAC, PERF1");
3039 if (arch == E_NDS_ARCH_STAR_V1_0)
3040 r += snprintf (buf + r, size -r, ", 16b"); /* has 16-bit instructions */
3041 return;
3042 }
3043
3044 switch (arch)
3045 {
3046 case E_NDS_ARCH_STAR_V1_0:
3047 case E_NDS_ARCH_STAR_V2_0:
3048 case E_NDS_ARCH_STAR_V3_0:
3049 case E_NDS_ARCH_STAR_V3_M:
3050 r += snprintf (buf + r, size - r, ", %s", ARCH_STRINGS[arch >> EF_NDS_ARCH_SHIFT]);
3051 break;
3052
3053 default:
3054 r += snprintf (buf + r, size - r, ", <unrecognized architecture>");
3055 /* ARCH version determines how the e_flags are interpreted.
3056 If it is unknown, we cannot proceed. */
3057 return;
3058 }
3059
3060 /* Newer ABI; Now handle architecture specific flags. */
3061 if (arch == E_NDS_ARCH_STAR_V1_0)
3062 {
3063 if (config & E_NDS32_HAS_MFUSR_PC_INST)
3064 r += snprintf (buf + r, size -r, ", MFUSR_PC");
3065
3066 if (!(config & E_NDS32_HAS_NO_MAC_INST))
3067 r += snprintf (buf + r, size -r, ", MAC");
3068
3069 if (config & E_NDS32_HAS_DIV_INST)
3070 r += snprintf (buf + r, size -r, ", DIV");
3071
3072 if (config & E_NDS32_HAS_16BIT_INST)
3073 r += snprintf (buf + r, size -r, ", 16b");
3074 }
3075 else
3076 {
3077 if (config & E_NDS32_HAS_MFUSR_PC_INST)
3078 {
3079 if (version <= E_NDS32_ELF_VER_1_3)
3080 r += snprintf (buf + r, size -r, ", [B8]");
3081 else
3082 r += snprintf (buf + r, size -r, ", EX9");
3083 }
3084
3085 if (config & E_NDS32_HAS_MAC_DX_INST)
3086 r += snprintf (buf + r, size -r, ", MAC_DX");
3087
3088 if (config & E_NDS32_HAS_DIV_DX_INST)
3089 r += snprintf (buf + r, size -r, ", DIV_DX");
3090
3091 if (config & E_NDS32_HAS_16BIT_INST)
3092 {
3093 if (version <= E_NDS32_ELF_VER_1_3)
3094 r += snprintf (buf + r, size -r, ", 16b");
3095 else
3096 r += snprintf (buf + r, size -r, ", IFC");
3097 }
3098 }
3099
3100 if (config & E_NDS32_HAS_EXT_INST)
3101 r += snprintf (buf + r, size -r, ", PERF1");
3102
3103 if (config & E_NDS32_HAS_EXT2_INST)
3104 r += snprintf (buf + r, size -r, ", PERF2");
3105
3106 if (config & E_NDS32_HAS_FPU_INST)
3107 {
015dc7e1 3108 has_fpu = true;
35c08157
KLC
3109 r += snprintf (buf + r, size -r, ", FPU_SP");
3110 }
3111
3112 if (config & E_NDS32_HAS_FPU_DP_INST)
3113 {
015dc7e1 3114 has_fpu = true;
35c08157
KLC
3115 r += snprintf (buf + r, size -r, ", FPU_DP");
3116 }
3117
3118 if (config & E_NDS32_HAS_FPU_MAC_INST)
3119 {
015dc7e1 3120 has_fpu = true;
35c08157
KLC
3121 r += snprintf (buf + r, size -r, ", FPU_MAC");
3122 }
3123
3124 if (has_fpu)
3125 {
3126 switch ((config & E_NDS32_FPU_REG_CONF) >> E_NDS32_FPU_REG_CONF_SHIFT)
3127 {
3128 case E_NDS32_FPU_REG_8SP_4DP:
3129 r += snprintf (buf + r, size -r, ", FPU_REG:8/4");
3130 break;
3131 case E_NDS32_FPU_REG_16SP_8DP:
3132 r += snprintf (buf + r, size -r, ", FPU_REG:16/8");
3133 break;
3134 case E_NDS32_FPU_REG_32SP_16DP:
3135 r += snprintf (buf + r, size -r, ", FPU_REG:32/16");
3136 break;
3137 case E_NDS32_FPU_REG_32SP_32DP:
3138 r += snprintf (buf + r, size -r, ", FPU_REG:32/32");
3139 break;
3140 }
3141 }
3142
3143 if (config & E_NDS32_HAS_AUDIO_INST)
3144 r += snprintf (buf + r, size -r, ", AUDIO");
3145
3146 if (config & E_NDS32_HAS_STRING_INST)
3147 r += snprintf (buf + r, size -r, ", STR");
3148
3149 if (config & E_NDS32_HAS_REDUCED_REGS)
3150 r += snprintf (buf + r, size -r, ", 16REG");
3151
3152 if (config & E_NDS32_HAS_VIDEO_INST)
3153 {
3154 if (version <= E_NDS32_ELF_VER_1_3)
3155 r += snprintf (buf + r, size -r, ", VIDEO");
3156 else
3157 r += snprintf (buf + r, size -r, ", SATURATION");
3158 }
3159
3160 if (config & E_NDS32_HAS_ENCRIPT_INST)
3161 r += snprintf (buf + r, size -r, ", ENCRP");
3162
3163 if (config & E_NDS32_HAS_L2C_INST)
3164 r += snprintf (buf + r, size -r, ", L2C");
3165}
3166
252b5132 3167static char *
dda8d76d 3168get_machine_flags (Filedata * filedata, unsigned e_flags, unsigned e_machine)
252b5132 3169{
b34976b6 3170 static char buf[1024];
252b5132
RH
3171
3172 buf[0] = '\0';
76da6bbe 3173
252b5132
RH
3174 if (e_flags)
3175 {
3176 switch (e_machine)
3177 {
3178 default:
3179 break;
3180
886a2506 3181 case EM_ARC_COMPACT2:
886a2506 3182 case EM_ARC_COMPACT:
a9522a21
AB
3183 decode_ARC_machine_flags (e_flags, e_machine, buf);
3184 break;
886a2506 3185
f3485b74
NC
3186 case EM_ARM:
3187 decode_ARM_machine_flags (e_flags, buf);
3188 break;
76da6bbe 3189
343433df
AB
3190 case EM_AVR:
3191 decode_AVR_machine_flags (e_flags, buf, sizeof buf);
3192 break;
3193
781303ce
MF
3194 case EM_BLACKFIN:
3195 if (e_flags & EF_BFIN_PIC)
3196 strcat (buf, ", PIC");
3197
3198 if (e_flags & EF_BFIN_FDPIC)
3199 strcat (buf, ", FDPIC");
3200
3201 if (e_flags & EF_BFIN_CODE_IN_L1)
3202 strcat (buf, ", code in L1");
3203
3204 if (e_flags & EF_BFIN_DATA_IN_L1)
3205 strcat (buf, ", data in L1");
3206
3207 break;
3208
ec2dfb42
AO
3209 case EM_CYGNUS_FRV:
3210 switch (e_flags & EF_FRV_CPU_MASK)
3211 {
3212 case EF_FRV_CPU_GENERIC:
3213 break;
3214
3215 default:
3216 strcat (buf, ", fr???");
3217 break;
57346661 3218
ec2dfb42
AO
3219 case EF_FRV_CPU_FR300:
3220 strcat (buf, ", fr300");
3221 break;
3222
3223 case EF_FRV_CPU_FR400:
3224 strcat (buf, ", fr400");
3225 break;
3226 case EF_FRV_CPU_FR405:
3227 strcat (buf, ", fr405");
3228 break;
3229
3230 case EF_FRV_CPU_FR450:
3231 strcat (buf, ", fr450");
3232 break;
3233
3234 case EF_FRV_CPU_FR500:
3235 strcat (buf, ", fr500");
3236 break;
3237 case EF_FRV_CPU_FR550:
3238 strcat (buf, ", fr550");
3239 break;
3240
3241 case EF_FRV_CPU_SIMPLE:
3242 strcat (buf, ", simple");
3243 break;
3244 case EF_FRV_CPU_TOMCAT:
3245 strcat (buf, ", tomcat");
3246 break;
3247 }
1c877e87 3248 break;
ec2dfb42 3249
53c7db4b 3250 case EM_68K:
425c6cb0 3251 if ((e_flags & EF_M68K_ARCH_MASK) == EF_M68K_M68000)
76f57f3a 3252 strcat (buf, ", m68000");
425c6cb0 3253 else if ((e_flags & EF_M68K_ARCH_MASK) == EF_M68K_CPU32)
3bdcfdf4
KH
3254 strcat (buf, ", cpu32");
3255 else if ((e_flags & EF_M68K_ARCH_MASK) == EF_M68K_FIDO)
3256 strcat (buf, ", fido_a");
425c6cb0 3257 else
266abb8f 3258 {
2cf0635d
NC
3259 char const * isa = _("unknown");
3260 char const * mac = _("unknown mac");
3261 char const * additional = NULL;
0112cd26 3262
c694fd50 3263 switch (e_flags & EF_M68K_CF_ISA_MASK)
266abb8f 3264 {
c694fd50 3265 case EF_M68K_CF_ISA_A_NODIV:
0b2e31dc
NS
3266 isa = "A";
3267 additional = ", nodiv";
3268 break;
c694fd50 3269 case EF_M68K_CF_ISA_A:
266abb8f
NS
3270 isa = "A";
3271 break;
c694fd50 3272 case EF_M68K_CF_ISA_A_PLUS:
266abb8f
NS
3273 isa = "A+";
3274 break;
c694fd50 3275 case EF_M68K_CF_ISA_B_NOUSP:
0b2e31dc
NS
3276 isa = "B";
3277 additional = ", nousp";
3278 break;
c694fd50 3279 case EF_M68K_CF_ISA_B:
266abb8f
NS
3280 isa = "B";
3281 break;
f608cd77
NS
3282 case EF_M68K_CF_ISA_C:
3283 isa = "C";
3284 break;
3285 case EF_M68K_CF_ISA_C_NODIV:
3286 isa = "C";
3287 additional = ", nodiv";
3288 break;
266abb8f
NS
3289 }
3290 strcat (buf, ", cf, isa ");
3291 strcat (buf, isa);
0b2e31dc
NS
3292 if (additional)
3293 strcat (buf, additional);
c694fd50 3294 if (e_flags & EF_M68K_CF_FLOAT)
0b2e31dc 3295 strcat (buf, ", float");
c694fd50 3296 switch (e_flags & EF_M68K_CF_MAC_MASK)
266abb8f
NS
3297 {
3298 case 0:
3299 mac = NULL;
3300 break;
c694fd50 3301 case EF_M68K_CF_MAC:
266abb8f
NS
3302 mac = "mac";
3303 break;
c694fd50 3304 case EF_M68K_CF_EMAC:
266abb8f
NS
3305 mac = "emac";
3306 break;
f608cd77
NS
3307 case EF_M68K_CF_EMAC_B:
3308 mac = "emac_b";
3309 break;
266abb8f
NS
3310 }
3311 if (mac)
3312 {
3313 strcat (buf, ", ");
3314 strcat (buf, mac);
3315 }
266abb8f 3316 }
53c7db4b 3317 break;
33c63f9d 3318
153a2776
NC
3319 case EM_CYGNUS_MEP:
3320 switch (e_flags & EF_MEP_CPU_MASK)
3321 {
3322 case EF_MEP_CPU_MEP: strcat (buf, ", generic MeP"); break;
3323 case EF_MEP_CPU_C2: strcat (buf, ", MeP C2"); break;
3324 case EF_MEP_CPU_C3: strcat (buf, ", MeP C3"); break;
3325 case EF_MEP_CPU_C4: strcat (buf, ", MeP C4"); break;
3326 case EF_MEP_CPU_C5: strcat (buf, ", MeP C5"); break;
3327 case EF_MEP_CPU_H1: strcat (buf, ", MeP H1"); break;
3328 default: strcat (buf, _(", <unknown MeP cpu type>")); break;
3329 }
3330
3331 switch (e_flags & EF_MEP_COP_MASK)
3332 {
3333 case EF_MEP_COP_NONE: break;
3334 case EF_MEP_COP_AVC: strcat (buf, ", AVC coprocessor"); break;
3335 case EF_MEP_COP_AVC2: strcat (buf, ", AVC2 coprocessor"); break;
3336 case EF_MEP_COP_FMAX: strcat (buf, ", FMAX coprocessor"); break;
3337 case EF_MEP_COP_IVC2: strcat (buf, ", IVC2 coprocessor"); break;
3338 default: strcat (buf, _("<unknown MeP copro type>")); break;
3339 }
3340
3341 if (e_flags & EF_MEP_LIBRARY)
3342 strcat (buf, ", Built for Library");
3343
3344 if (e_flags & EF_MEP_INDEX_MASK)
3345 sprintf (buf + strlen (buf), ", Configuration Index: %#x",
3346 e_flags & EF_MEP_INDEX_MASK);
3347
3348 if (e_flags & ~ EF_MEP_ALL_FLAGS)
3349 sprintf (buf + strlen (buf), _(", unknown flags bits: %#x"),
3350 e_flags & ~ EF_MEP_ALL_FLAGS);
3351 break;
3352
252b5132
RH
3353 case EM_PPC:
3354 if (e_flags & EF_PPC_EMB)
3355 strcat (buf, ", emb");
3356
3357 if (e_flags & EF_PPC_RELOCATABLE)
2b692964 3358 strcat (buf, _(", relocatable"));
252b5132
RH
3359
3360 if (e_flags & EF_PPC_RELOCATABLE_LIB)
2b692964 3361 strcat (buf, _(", relocatable-lib"));
252b5132
RH
3362 break;
3363
ee67d69a
AM
3364 case EM_PPC64:
3365 if (e_flags & EF_PPC64_ABI)
3366 {
3367 char abi[] = ", abiv0";
3368
3369 abi[6] += e_flags & EF_PPC64_ABI;
3370 strcat (buf, abi);
3371 }
3372 break;
3373
708e2187
NC
3374 case EM_V800:
3375 if ((e_flags & EF_RH850_ABI) == EF_RH850_ABI)
3376 strcat (buf, ", RH850 ABI");
0b4362b0 3377
708e2187
NC
3378 if (e_flags & EF_V800_850E3)
3379 strcat (buf, ", V3 architecture");
3380
3381 if ((e_flags & (EF_RH850_FPU_DOUBLE | EF_RH850_FPU_SINGLE)) == 0)
3382 strcat (buf, ", FPU not used");
3383
3384 if ((e_flags & (EF_RH850_REGMODE22 | EF_RH850_REGMODE32)) == 0)
3385 strcat (buf, ", regmode: COMMON");
3386
3387 if ((e_flags & (EF_RH850_GP_FIX | EF_RH850_GP_NOFIX)) == 0)
3388 strcat (buf, ", r4 not used");
3389
3390 if ((e_flags & (EF_RH850_EP_FIX | EF_RH850_EP_NOFIX)) == 0)
3391 strcat (buf, ", r30 not used");
3392
3393 if ((e_flags & (EF_RH850_TP_FIX | EF_RH850_TP_NOFIX)) == 0)
3394 strcat (buf, ", r5 not used");
3395
3396 if ((e_flags & (EF_RH850_REG2_RESERVE | EF_RH850_REG2_NORESERVE)) == 0)
3397 strcat (buf, ", r2 not used");
3398
3399 for (e_flags &= 0xFFFF; e_flags; e_flags &= ~ (e_flags & - e_flags))
3400 {
3401 switch (e_flags & - e_flags)
3402 {
3403 case EF_RH850_FPU_DOUBLE: strcat (buf, ", double precision FPU"); break;
3404 case EF_RH850_FPU_SINGLE: strcat (buf, ", single precision FPU"); break;
708e2187
NC
3405 case EF_RH850_REGMODE22: strcat (buf, ", regmode:22"); break;
3406 case EF_RH850_REGMODE32: strcat (buf, ", regmode:23"); break;
708e2187
NC
3407 case EF_RH850_GP_FIX: strcat (buf, ", r4 fixed"); break;
3408 case EF_RH850_GP_NOFIX: strcat (buf, ", r4 free"); break;
3409 case EF_RH850_EP_FIX: strcat (buf, ", r30 fixed"); break;
3410 case EF_RH850_EP_NOFIX: strcat (buf, ", r30 free"); break;
3411 case EF_RH850_TP_FIX: strcat (buf, ", r5 fixed"); break;
3412 case EF_RH850_TP_NOFIX: strcat (buf, ", r5 free"); break;
3413 case EF_RH850_REG2_RESERVE: strcat (buf, ", r2 fixed"); break;
3414 case EF_RH850_REG2_NORESERVE: strcat (buf, ", r2 free"); break;
3415 default: break;
3416 }
3417 }
3418 break;
3419
2b0337b0 3420 case EM_V850:
252b5132
RH
3421 case EM_CYGNUS_V850:
3422 switch (e_flags & EF_V850_ARCH)
3423 {
78c8d46c
NC
3424 case E_V850E3V5_ARCH:
3425 strcat (buf, ", v850e3v5");
3426 break;
1cd986c5
NC
3427 case E_V850E2V3_ARCH:
3428 strcat (buf, ", v850e2v3");
3429 break;
3430 case E_V850E2_ARCH:
3431 strcat (buf, ", v850e2");
3432 break;
3433 case E_V850E1_ARCH:
3434 strcat (buf, ", v850e1");
8ad30312 3435 break;
252b5132
RH
3436 case E_V850E_ARCH:
3437 strcat (buf, ", v850e");
3438 break;
252b5132
RH
3439 case E_V850_ARCH:
3440 strcat (buf, ", v850");
3441 break;
3442 default:
2b692964 3443 strcat (buf, _(", unknown v850 architecture variant"));
252b5132
RH
3444 break;
3445 }
3446 break;
3447
2b0337b0 3448 case EM_M32R:
252b5132
RH
3449 case EM_CYGNUS_M32R:
3450 if ((e_flags & EF_M32R_ARCH) == E_M32R_ARCH)
3451 strcat (buf, ", m32r");
252b5132
RH
3452 break;
3453
3454 case EM_MIPS:
4fe85591 3455 case EM_MIPS_RS3_LE:
252b5132
RH
3456 if (e_flags & EF_MIPS_NOREORDER)
3457 strcat (buf, ", noreorder");
3458
3459 if (e_flags & EF_MIPS_PIC)
3460 strcat (buf, ", pic");
3461
3462 if (e_flags & EF_MIPS_CPIC)
3463 strcat (buf, ", cpic");
3464
d1bdd336
TS
3465 if (e_flags & EF_MIPS_UCODE)
3466 strcat (buf, ", ugen_reserved");
3467
252b5132
RH
3468 if (e_flags & EF_MIPS_ABI2)
3469 strcat (buf, ", abi2");
3470
43521d43
TS
3471 if (e_flags & EF_MIPS_OPTIONS_FIRST)
3472 strcat (buf, ", odk first");
3473
a5d22d2a
TS
3474 if (e_flags & EF_MIPS_32BITMODE)
3475 strcat (buf, ", 32bitmode");
3476
ba92f887
MR
3477 if (e_flags & EF_MIPS_NAN2008)
3478 strcat (buf, ", nan2008");
3479
fef1b0b3
SE
3480 if (e_flags & EF_MIPS_FP64)
3481 strcat (buf, ", fp64");
3482
156c2f8b
NC
3483 switch ((e_flags & EF_MIPS_MACH))
3484 {
3485 case E_MIPS_MACH_3900: strcat (buf, ", 3900"); break;
3486 case E_MIPS_MACH_4010: strcat (buf, ", 4010"); break;
3487 case E_MIPS_MACH_4100: strcat (buf, ", 4100"); break;
156c2f8b 3488 case E_MIPS_MACH_4111: strcat (buf, ", 4111"); break;
810dfa6e
L
3489 case E_MIPS_MACH_4120: strcat (buf, ", 4120"); break;
3490 case E_MIPS_MACH_4650: strcat (buf, ", 4650"); break;
3491 case E_MIPS_MACH_5400: strcat (buf, ", 5400"); break;
3492 case E_MIPS_MACH_5500: strcat (buf, ", 5500"); break;
ef272caa 3493 case E_MIPS_MACH_5900: strcat (buf, ", 5900"); break;
c6c98b38 3494 case E_MIPS_MACH_SB1: strcat (buf, ", sb1"); break;
ebcb91b7 3495 case E_MIPS_MACH_9000: strcat (buf, ", 9000"); break;
350cc38d
MS
3496 case E_MIPS_MACH_LS2E: strcat (buf, ", loongson-2e"); break;
3497 case E_MIPS_MACH_LS2F: strcat (buf, ", loongson-2f"); break;
ac8cb70f 3498 case E_MIPS_MACH_GS464: strcat (buf, ", gs464"); break;
bd782c07 3499 case E_MIPS_MACH_GS464E: strcat (buf, ", gs464e"); break;
9108bc33 3500 case E_MIPS_MACH_GS264E: strcat (buf, ", gs264e"); break;
05c6f050 3501 case E_MIPS_MACH_OCTEON: strcat (buf, ", octeon"); break;
67c2a3e8 3502 case E_MIPS_MACH_OCTEON2: strcat (buf, ", octeon2"); break;
d32e5c54 3503 case E_MIPS_MACH_OCTEON3: strcat (buf, ", octeon3"); break;
52b6b6b9 3504 case E_MIPS_MACH_XLR: strcat (buf, ", xlr"); break;
38bf472a 3505 case E_MIPS_MACH_IAMR2: strcat (buf, ", interaptiv-mr2"); break;
43521d43
TS
3506 case 0:
3507 /* We simply ignore the field in this case to avoid confusion:
3508 MIPS ELF does not specify EF_MIPS_MACH, it is a GNU
3509 extension. */
3510 break;
2b692964 3511 default: strcat (buf, _(", unknown CPU")); break;
156c2f8b 3512 }
43521d43
TS
3513
3514 switch ((e_flags & EF_MIPS_ABI))
3515 {
3516 case E_MIPS_ABI_O32: strcat (buf, ", o32"); break;
3517 case E_MIPS_ABI_O64: strcat (buf, ", o64"); break;
3518 case E_MIPS_ABI_EABI32: strcat (buf, ", eabi32"); break;
3519 case E_MIPS_ABI_EABI64: strcat (buf, ", eabi64"); break;
3520 case 0:
3521 /* We simply ignore the field in this case to avoid confusion:
3522 MIPS ELF does not specify EF_MIPS_ABI, it is a GNU extension.
3523 This means it is likely to be an o32 file, but not for
3524 sure. */
3525 break;
2b692964 3526 default: strcat (buf, _(", unknown ABI")); break;
43521d43
TS
3527 }
3528
3529 if (e_flags & EF_MIPS_ARCH_ASE_MDMX)
3530 strcat (buf, ", mdmx");
3531
3532 if (e_flags & EF_MIPS_ARCH_ASE_M16)
3533 strcat (buf, ", mips16");
3534
df58fc94
RS
3535 if (e_flags & EF_MIPS_ARCH_ASE_MICROMIPS)
3536 strcat (buf, ", micromips");
3537
43521d43
TS
3538 switch ((e_flags & EF_MIPS_ARCH))
3539 {
3540 case E_MIPS_ARCH_1: strcat (buf, ", mips1"); break;
3541 case E_MIPS_ARCH_2: strcat (buf, ", mips2"); break;
3542 case E_MIPS_ARCH_3: strcat (buf, ", mips3"); break;
3543 case E_MIPS_ARCH_4: strcat (buf, ", mips4"); break;
3544 case E_MIPS_ARCH_5: strcat (buf, ", mips5"); break;
3545 case E_MIPS_ARCH_32: strcat (buf, ", mips32"); break;
cb44e358 3546 case E_MIPS_ARCH_32R2: strcat (buf, ", mips32r2"); break;
7361da2c 3547 case E_MIPS_ARCH_32R6: strcat (buf, ", mips32r6"); break;
43521d43 3548 case E_MIPS_ARCH_64: strcat (buf, ", mips64"); break;
5f74bc13 3549 case E_MIPS_ARCH_64R2: strcat (buf, ", mips64r2"); break;
7361da2c 3550 case E_MIPS_ARCH_64R6: strcat (buf, ", mips64r6"); break;
2b692964 3551 default: strcat (buf, _(", unknown ISA")); break;
43521d43 3552 }
252b5132 3553 break;
351b4b40 3554
35c08157
KLC
3555 case EM_NDS32:
3556 decode_NDS32_machine_flags (e_flags, buf, sizeof buf);
3557 break;
3558
fe944acf
FT
3559 case EM_NFP:
3560 switch (EF_NFP_MACH (e_flags))
3561 {
3562 case E_NFP_MACH_3200:
3563 strcat (buf, ", NFP-32xx");
3564 break;
3565 case E_NFP_MACH_6000:
3566 strcat (buf, ", NFP-6xxx");
3567 break;
3568 }
3569 break;
3570
e23eba97
NC
3571 case EM_RISCV:
3572 if (e_flags & EF_RISCV_RVC)
3573 strcat (buf, ", RVC");
2922d21d 3574
7f999549
JW
3575 if (e_flags & EF_RISCV_RVE)
3576 strcat (buf, ", RVE");
3577
2922d21d
AW
3578 switch (e_flags & EF_RISCV_FLOAT_ABI)
3579 {
3580 case EF_RISCV_FLOAT_ABI_SOFT:
3581 strcat (buf, ", soft-float ABI");
3582 break;
3583
3584 case EF_RISCV_FLOAT_ABI_SINGLE:
3585 strcat (buf, ", single-float ABI");
3586 break;
3587
3588 case EF_RISCV_FLOAT_ABI_DOUBLE:
3589 strcat (buf, ", double-float ABI");
3590 break;
3591
3592 case EF_RISCV_FLOAT_ABI_QUAD:
3593 strcat (buf, ", quad-float ABI");
3594 break;
3595 }
e23eba97
NC
3596 break;
3597
ccde1100
AO
3598 case EM_SH:
3599 switch ((e_flags & EF_SH_MACH_MASK))
3600 {
3601 case EF_SH1: strcat (buf, ", sh1"); break;
3602 case EF_SH2: strcat (buf, ", sh2"); break;
3603 case EF_SH3: strcat (buf, ", sh3"); break;
3604 case EF_SH_DSP: strcat (buf, ", sh-dsp"); break;
3605 case EF_SH3_DSP: strcat (buf, ", sh3-dsp"); break;
3606 case EF_SH4AL_DSP: strcat (buf, ", sh4al-dsp"); break;
3607 case EF_SH3E: strcat (buf, ", sh3e"); break;
3608 case EF_SH4: strcat (buf, ", sh4"); break;
3609 case EF_SH5: strcat (buf, ", sh5"); break;
3610 case EF_SH2E: strcat (buf, ", sh2e"); break;
3611 case EF_SH4A: strcat (buf, ", sh4a"); break;
1d70c7fb 3612 case EF_SH2A: strcat (buf, ", sh2a"); break;
ccde1100
AO
3613 case EF_SH4_NOFPU: strcat (buf, ", sh4-nofpu"); break;
3614 case EF_SH4A_NOFPU: strcat (buf, ", sh4a-nofpu"); break;
1d70c7fb 3615 case EF_SH2A_NOFPU: strcat (buf, ", sh2a-nofpu"); break;
0b92ab21
NH
3616 case EF_SH3_NOMMU: strcat (buf, ", sh3-nommu"); break;
3617 case EF_SH4_NOMMU_NOFPU: strcat (buf, ", sh4-nommu-nofpu"); break;
3618 case EF_SH2A_SH4_NOFPU: strcat (buf, ", sh2a-nofpu-or-sh4-nommu-nofpu"); break;
3619 case EF_SH2A_SH3_NOFPU: strcat (buf, ", sh2a-nofpu-or-sh3-nommu"); break;
3620 case EF_SH2A_SH4: strcat (buf, ", sh2a-or-sh4"); break;
3621 case EF_SH2A_SH3E: strcat (buf, ", sh2a-or-sh3e"); break;
2b692964 3622 default: strcat (buf, _(", unknown ISA")); break;
ccde1100
AO
3623 }
3624
cec6a5b8
MR
3625 if (e_flags & EF_SH_PIC)
3626 strcat (buf, ", pic");
3627
3628 if (e_flags & EF_SH_FDPIC)
3629 strcat (buf, ", fdpic");
ccde1100 3630 break;
948f632f 3631
73589c9d
CS
3632 case EM_OR1K:
3633 if (e_flags & EF_OR1K_NODELAY)
3634 strcat (buf, ", no delay");
3635 break;
57346661 3636
351b4b40
RH
3637 case EM_SPARCV9:
3638 if (e_flags & EF_SPARC_32PLUS)
3639 strcat (buf, ", v8+");
3640
3641 if (e_flags & EF_SPARC_SUN_US1)
d07faca2
RH
3642 strcat (buf, ", ultrasparcI");
3643
3644 if (e_flags & EF_SPARC_SUN_US3)
3645 strcat (buf, ", ultrasparcIII");
351b4b40
RH
3646
3647 if (e_flags & EF_SPARC_HAL_R1)
3648 strcat (buf, ", halr1");
3649
3650 if (e_flags & EF_SPARC_LEDATA)
3651 strcat (buf, ", ledata");
3652
3653 if ((e_flags & EF_SPARCV9_MM) == EF_SPARCV9_TSO)
3654 strcat (buf, ", tso");
3655
3656 if ((e_flags & EF_SPARCV9_MM) == EF_SPARCV9_PSO)
3657 strcat (buf, ", pso");
3658
3659 if ((e_flags & EF_SPARCV9_MM) == EF_SPARCV9_RMO)
3660 strcat (buf, ", rmo");
3661 break;
7d466069 3662
103f02d3
UD
3663 case EM_PARISC:
3664 switch (e_flags & EF_PARISC_ARCH)
3665 {
3666 case EFA_PARISC_1_0:
3667 strcpy (buf, ", PA-RISC 1.0");
3668 break;
3669 case EFA_PARISC_1_1:
3670 strcpy (buf, ", PA-RISC 1.1");
3671 break;
3672 case EFA_PARISC_2_0:
3673 strcpy (buf, ", PA-RISC 2.0");
3674 break;
3675 default:
3676 break;
3677 }
3678 if (e_flags & EF_PARISC_TRAPNIL)
3679 strcat (buf, ", trapnil");
3680 if (e_flags & EF_PARISC_EXT)
3681 strcat (buf, ", ext");
3682 if (e_flags & EF_PARISC_LSB)
3683 strcat (buf, ", lsb");
3684 if (e_flags & EF_PARISC_WIDE)
3685 strcat (buf, ", wide");
3686 if (e_flags & EF_PARISC_NO_KABP)
3687 strcat (buf, ", no kabp");
3688 if (e_flags & EF_PARISC_LAZYSWAP)
3689 strcat (buf, ", lazyswap");
30800947 3690 break;
76da6bbe 3691
7d466069 3692 case EM_PJ:
2b0337b0 3693 case EM_PJ_OLD:
7d466069
ILT
3694 if ((e_flags & EF_PICOJAVA_NEWCALLS) == EF_PICOJAVA_NEWCALLS)
3695 strcat (buf, ", new calling convention");
3696
3697 if ((e_flags & EF_PICOJAVA_GNUCALLS) == EF_PICOJAVA_GNUCALLS)
3698 strcat (buf, ", gnu calling convention");
3699 break;
4d6ed7c8
NC
3700
3701 case EM_IA_64:
3702 if ((e_flags & EF_IA_64_ABI64))
3703 strcat (buf, ", 64-bit");
3704 else
3705 strcat (buf, ", 32-bit");
3706 if ((e_flags & EF_IA_64_REDUCEDFP))
3707 strcat (buf, ", reduced fp model");
3708 if ((e_flags & EF_IA_64_NOFUNCDESC_CONS_GP))
3709 strcat (buf, ", no function descriptors, constant gp");
3710 else if ((e_flags & EF_IA_64_CONS_GP))
3711 strcat (buf, ", constant gp");
3712 if ((e_flags & EF_IA_64_ABSOLUTE))
3713 strcat (buf, ", absolute");
dda8d76d 3714 if (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_OPENVMS)
28f997cf
TG
3715 {
3716 if ((e_flags & EF_IA_64_VMS_LINKAGES))
3717 strcat (buf, ", vms_linkages");
3718 switch ((e_flags & EF_IA_64_VMS_COMCOD))
3719 {
3720 case EF_IA_64_VMS_COMCOD_SUCCESS:
3721 break;
3722 case EF_IA_64_VMS_COMCOD_WARNING:
3723 strcat (buf, ", warning");
3724 break;
3725 case EF_IA_64_VMS_COMCOD_ERROR:
3726 strcat (buf, ", error");
3727 break;
3728 case EF_IA_64_VMS_COMCOD_ABORT:
3729 strcat (buf, ", abort");
3730 break;
3731 default:
bee0ee85
NC
3732 warn (_("Unrecognised IA64 VMS Command Code: %x\n"),
3733 e_flags & EF_IA_64_VMS_COMCOD);
3734 strcat (buf, ", <unknown>");
28f997cf
TG
3735 }
3736 }
4d6ed7c8 3737 break;
179d3252
JT
3738
3739 case EM_VAX:
3740 if ((e_flags & EF_VAX_NONPIC))
3741 strcat (buf, ", non-PIC");
3742 if ((e_flags & EF_VAX_DFLOAT))
3743 strcat (buf, ", D-Float");
3744 if ((e_flags & EF_VAX_GFLOAT))
3745 strcat (buf, ", G-Float");
3746 break;
c7927a3c 3747
619ed720
EB
3748 case EM_VISIUM:
3749 if (e_flags & EF_VISIUM_ARCH_MCM)
3750 strcat (buf, ", mcm");
3751 else if (e_flags & EF_VISIUM_ARCH_MCM24)
3752 strcat (buf, ", mcm24");
3753 if (e_flags & EF_VISIUM_ARCH_GR6)
3754 strcat (buf, ", gr6");
3755 break;
3756
4046d87a 3757 case EM_RL78:
1740ba0c
NC
3758 switch (e_flags & E_FLAG_RL78_CPU_MASK)
3759 {
3760 case E_FLAG_RL78_ANY_CPU: break;
3761 case E_FLAG_RL78_G10: strcat (buf, ", G10"); break;
3762 case E_FLAG_RL78_G13: strcat (buf, ", G13"); break;
3763 case E_FLAG_RL78_G14: strcat (buf, ", G14"); break;
3764 }
856ea05c
KP
3765 if (e_flags & E_FLAG_RL78_64BIT_DOUBLES)
3766 strcat (buf, ", 64-bit doubles");
4046d87a 3767 break;
0b4362b0 3768
c7927a3c
NC
3769 case EM_RX:
3770 if (e_flags & E_FLAG_RX_64BIT_DOUBLES)
3771 strcat (buf, ", 64-bit doubles");
3772 if (e_flags & E_FLAG_RX_DSP)
dd24e3da 3773 strcat (buf, ", dsp");
d4cb0ea0 3774 if (e_flags & E_FLAG_RX_PID)
0b4362b0 3775 strcat (buf, ", pid");
708e2187
NC
3776 if (e_flags & E_FLAG_RX_ABI)
3777 strcat (buf, ", RX ABI");
3525236c
NC
3778 if (e_flags & E_FLAG_RX_SINSNS_SET)
3779 strcat (buf, e_flags & E_FLAG_RX_SINSNS_YES
3780 ? ", uses String instructions" : ", bans String instructions");
a117b0a5
YS
3781 if (e_flags & E_FLAG_RX_V2)
3782 strcat (buf, ", V2");
f87673e0
YS
3783 if (e_flags & E_FLAG_RX_V3)
3784 strcat (buf, ", V3");
d4cb0ea0 3785 break;
55786da2
AK
3786
3787 case EM_S390:
3788 if (e_flags & EF_S390_HIGH_GPRS)
3789 strcat (buf, ", highgprs");
d4cb0ea0 3790 break;
40b36596
JM
3791
3792 case EM_TI_C6000:
3793 if ((e_flags & EF_C6000_REL))
3794 strcat (buf, ", relocatable module");
d4cb0ea0 3795 break;
13761a11
NC
3796
3797 case EM_MSP430:
3798 strcat (buf, _(": architecture variant: "));
3799 switch (e_flags & EF_MSP430_MACH)
3800 {
3801 case E_MSP430_MACH_MSP430x11: strcat (buf, "MSP430x11"); break;
3802 case E_MSP430_MACH_MSP430x11x1 : strcat (buf, "MSP430x11x1 "); break;
3803 case E_MSP430_MACH_MSP430x12: strcat (buf, "MSP430x12"); break;
3804 case E_MSP430_MACH_MSP430x13: strcat (buf, "MSP430x13"); break;
3805 case E_MSP430_MACH_MSP430x14: strcat (buf, "MSP430x14"); break;
3806 case E_MSP430_MACH_MSP430x15: strcat (buf, "MSP430x15"); break;
3807 case E_MSP430_MACH_MSP430x16: strcat (buf, "MSP430x16"); break;
3808 case E_MSP430_MACH_MSP430x31: strcat (buf, "MSP430x31"); break;
3809 case E_MSP430_MACH_MSP430x32: strcat (buf, "MSP430x32"); break;
3810 case E_MSP430_MACH_MSP430x33: strcat (buf, "MSP430x33"); break;
3811 case E_MSP430_MACH_MSP430x41: strcat (buf, "MSP430x41"); break;
3812 case E_MSP430_MACH_MSP430x42: strcat (buf, "MSP430x42"); break;
3813 case E_MSP430_MACH_MSP430x43: strcat (buf, "MSP430x43"); break;
3814 case E_MSP430_MACH_MSP430x44: strcat (buf, "MSP430x44"); break;
3815 case E_MSP430_MACH_MSP430X : strcat (buf, "MSP430X"); break;
3816 default:
3817 strcat (buf, _(": unknown")); break;
3818 }
3819
3820 if (e_flags & ~ EF_MSP430_MACH)
3821 strcat (buf, _(": unknown extra flag bits also present"));
6655dba2
SB
3822 break;
3823
3824 case EM_Z80:
3825 switch (e_flags & EF_Z80_MACH_MSK)
3826 {
3827 case EF_Z80_MACH_Z80: strcat (buf, ", Z80"); break;
3828 case EF_Z80_MACH_Z180: strcat (buf, ", Z180"); break;
3829 case EF_Z80_MACH_R800: strcat (buf, ", R800"); break;
3830 case EF_Z80_MACH_EZ80_Z80: strcat (buf, ", EZ80"); break;
3831 case EF_Z80_MACH_EZ80_ADL: strcat (buf, ", EZ80, ADL"); break;
3832 case EF_Z80_MACH_GBZ80: strcat (buf, ", GBZ80"); break;
9fc0b501 3833 case EF_Z80_MACH_Z80N: strcat (buf, ", Z80N"); break;
6655dba2
SB
3834 default:
3835 strcat (buf, _(", unknown")); break;
3836 }
3837 break;
252b5132
RH
3838 }
3839 }
3840
3841 return buf;
3842}
3843
252b5132 3844static const char *
dda8d76d 3845get_osabi_name (Filedata * filedata, unsigned int osabi)
d3ba0551
AM
3846{
3847 static char buff[32];
3848
3849 switch (osabi)
3850 {
3851 case ELFOSABI_NONE: return "UNIX - System V";
3852 case ELFOSABI_HPUX: return "UNIX - HP-UX";
3853 case ELFOSABI_NETBSD: return "UNIX - NetBSD";
9c55345c 3854 case ELFOSABI_GNU: return "UNIX - GNU";
d3ba0551
AM
3855 case ELFOSABI_SOLARIS: return "UNIX - Solaris";
3856 case ELFOSABI_AIX: return "UNIX - AIX";
3857 case ELFOSABI_IRIX: return "UNIX - IRIX";
3858 case ELFOSABI_FREEBSD: return "UNIX - FreeBSD";
3859 case ELFOSABI_TRU64: return "UNIX - TRU64";
3860 case ELFOSABI_MODESTO: return "Novell - Modesto";
3861 case ELFOSABI_OPENBSD: return "UNIX - OpenBSD";
3862 case ELFOSABI_OPENVMS: return "VMS - OpenVMS";
3863 case ELFOSABI_NSK: return "HP - Non-Stop Kernel";
3b26c801 3864 case ELFOSABI_AROS: return "AROS";
11636f9e 3865 case ELFOSABI_FENIXOS: return "FenixOS";
6d913794
NC
3866 case ELFOSABI_CLOUDABI: return "Nuxi CloudABI";
3867 case ELFOSABI_OPENVOS: return "Stratus Technologies OpenVOS";
d3ba0551 3868 default:
40b36596 3869 if (osabi >= 64)
dda8d76d 3870 switch (filedata->file_header.e_machine)
40b36596
JM
3871 {
3872 case EM_ARM:
3873 switch (osabi)
3874 {
3875 case ELFOSABI_ARM: return "ARM";
18a20338 3876 case ELFOSABI_ARM_FDPIC: return "ARM FDPIC";
40b36596
JM
3877 default:
3878 break;
3879 }
3880 break;
3881
3882 case EM_MSP430:
3883 case EM_MSP430_OLD:
619ed720 3884 case EM_VISIUM:
40b36596
JM
3885 switch (osabi)
3886 {
3887 case ELFOSABI_STANDALONE: return _("Standalone App");
3888 default:
3889 break;
3890 }
3891 break;
3892
3893 case EM_TI_C6000:
3894 switch (osabi)
3895 {
3896 case ELFOSABI_C6000_ELFABI: return _("Bare-metal C6000");
3897 case ELFOSABI_C6000_LINUX: return "Linux C6000";
3898 default:
3899 break;
3900 }
3901 break;
3902
3903 default:
3904 break;
3905 }
e9e44622 3906 snprintf (buff, sizeof (buff), _("<unknown: %x>"), osabi);
d3ba0551
AM
3907 return buff;
3908 }
3909}
3910
a06ea964
NC
3911static const char *
3912get_aarch64_segment_type (unsigned long type)
3913{
3914 switch (type)
3915 {
32ec8896
NC
3916 case PT_AARCH64_ARCHEXT: return "AARCH64_ARCHEXT";
3917 default: return NULL;
a06ea964 3918 }
a06ea964
NC
3919}
3920
b294bdf8
MM
3921static const char *
3922get_arm_segment_type (unsigned long type)
3923{
3924 switch (type)
3925 {
32ec8896
NC
3926 case PT_ARM_EXIDX: return "EXIDX";
3927 default: return NULL;
b294bdf8 3928 }
b294bdf8
MM
3929}
3930
b4cbbe8f
AK
3931static const char *
3932get_s390_segment_type (unsigned long type)
3933{
3934 switch (type)
3935 {
3936 case PT_S390_PGSTE: return "S390_PGSTE";
3937 default: return NULL;
3938 }
3939}
3940
d3ba0551
AM
3941static const char *
3942get_mips_segment_type (unsigned long type)
252b5132
RH
3943{
3944 switch (type)
3945 {
32ec8896
NC
3946 case PT_MIPS_REGINFO: return "REGINFO";
3947 case PT_MIPS_RTPROC: return "RTPROC";
3948 case PT_MIPS_OPTIONS: return "OPTIONS";
3949 case PT_MIPS_ABIFLAGS: return "ABIFLAGS";
3950 default: return NULL;
252b5132 3951 }
252b5132
RH
3952}
3953
103f02d3 3954static const char *
d3ba0551 3955get_parisc_segment_type (unsigned long type)
103f02d3
UD
3956{
3957 switch (type)
3958 {
103f02d3
UD
3959 case PT_PARISC_ARCHEXT: return "PARISC_ARCHEXT";
3960 case PT_PARISC_UNWIND: return "PARISC_UNWIND";
61472819 3961 case PT_PARISC_WEAKORDER: return "PARISC_WEAKORDER";
32ec8896 3962 default: return NULL;
103f02d3 3963 }
103f02d3
UD
3964}
3965
4d6ed7c8 3966static const char *
d3ba0551 3967get_ia64_segment_type (unsigned long type)
4d6ed7c8
NC
3968{
3969 switch (type)
3970 {
3971 case PT_IA_64_ARCHEXT: return "IA_64_ARCHEXT";
3972 case PT_IA_64_UNWIND: return "IA_64_UNWIND";
32ec8896 3973 default: return NULL;
4d6ed7c8 3974 }
4d6ed7c8
NC
3975}
3976
40b36596
JM
3977static const char *
3978get_tic6x_segment_type (unsigned long type)
3979{
3980 switch (type)
3981 {
32ec8896
NC
3982 case PT_C6000_PHATTR: return "C6000_PHATTR";
3983 default: return NULL;
40b36596 3984 }
40b36596
JM
3985}
3986
df3a023b
AM
3987static const char *
3988get_hpux_segment_type (unsigned long type, unsigned e_machine)
3989{
3990 if (e_machine == EM_PARISC)
3991 switch (type)
3992 {
3993 case PT_HP_TLS: return "HP_TLS";
3994 case PT_HP_CORE_NONE: return "HP_CORE_NONE";
3995 case PT_HP_CORE_VERSION: return "HP_CORE_VERSION";
3996 case PT_HP_CORE_KERNEL: return "HP_CORE_KERNEL";
3997 case PT_HP_CORE_COMM: return "HP_CORE_COMM";
3998 case PT_HP_CORE_PROC: return "HP_CORE_PROC";
3999 case PT_HP_CORE_LOADABLE: return "HP_CORE_LOADABLE";
4000 case PT_HP_CORE_STACK: return "HP_CORE_STACK";
4001 case PT_HP_CORE_SHM: return "HP_CORE_SHM";
4002 case PT_HP_CORE_MMF: return "HP_CORE_MMF";
4003 case PT_HP_PARALLEL: return "HP_PARALLEL";
4004 case PT_HP_FASTBIND: return "HP_FASTBIND";
4005 case PT_HP_OPT_ANNOT: return "HP_OPT_ANNOT";
4006 case PT_HP_HSL_ANNOT: return "HP_HSL_ANNOT";
4007 case PT_HP_STACK: return "HP_STACK";
4008 case PT_HP_CORE_UTSNAME: return "HP_CORE_UTSNAME";
4009 default: return NULL;
4010 }
4011
4012 if (e_machine == EM_IA_64)
4013 switch (type)
4014 {
4015 case PT_HP_TLS: return "HP_TLS";
4016 case PT_IA_64_HP_OPT_ANOT: return "HP_OPT_ANNOT";
4017 case PT_IA_64_HP_HSL_ANOT: return "HP_HSL_ANNOT";
4018 case PT_IA_64_HP_STACK: return "HP_STACK";
4019 default: return NULL;
4020 }
4021
4022 return NULL;
4023}
4024
5522f910
NC
4025static const char *
4026get_solaris_segment_type (unsigned long type)
4027{
4028 switch (type)
4029 {
4030 case 0x6464e550: return "PT_SUNW_UNWIND";
4031 case 0x6474e550: return "PT_SUNW_EH_FRAME";
4032 case 0x6ffffff7: return "PT_LOSUNW";
4033 case 0x6ffffffa: return "PT_SUNWBSS";
4034 case 0x6ffffffb: return "PT_SUNWSTACK";
4035 case 0x6ffffffc: return "PT_SUNWDTRACE";
4036 case 0x6ffffffd: return "PT_SUNWCAP";
4037 case 0x6fffffff: return "PT_HISUNW";
32ec8896 4038 default: return NULL;
5522f910
NC
4039 }
4040}
4041
252b5132 4042static const char *
dda8d76d 4043get_segment_type (Filedata * filedata, unsigned long p_type)
252b5132 4044{
b34976b6 4045 static char buff[32];
252b5132
RH
4046
4047 switch (p_type)
4048 {
b34976b6
AM
4049 case PT_NULL: return "NULL";
4050 case PT_LOAD: return "LOAD";
252b5132 4051 case PT_DYNAMIC: return "DYNAMIC";
b34976b6
AM
4052 case PT_INTERP: return "INTERP";
4053 case PT_NOTE: return "NOTE";
4054 case PT_SHLIB: return "SHLIB";
4055 case PT_PHDR: return "PHDR";
13ae64f3 4056 case PT_TLS: return "TLS";
32ec8896 4057 case PT_GNU_EH_FRAME: return "GNU_EH_FRAME";
2b05f1b7 4058 case PT_GNU_STACK: return "GNU_STACK";
8c37241b 4059 case PT_GNU_RELRO: return "GNU_RELRO";
0a59decb 4060 case PT_GNU_PROPERTY: return "GNU_PROPERTY";
65765700 4061
3eba3ef3
NC
4062 case PT_OPENBSD_RANDOMIZE: return "OPENBSD_RANDOMIZE";
4063 case PT_OPENBSD_WXNEEDED: return "OPENBSD_WXNEEDED";
4064 case PT_OPENBSD_BOOTDATA: return "OPENBSD_BOOTDATA";
b9e920ec 4065
252b5132 4066 default:
df3a023b 4067 if ((p_type >= PT_LOPROC) && (p_type <= PT_HIPROC))
252b5132 4068 {
2cf0635d 4069 const char * result;
103f02d3 4070
dda8d76d 4071 switch (filedata->file_header.e_machine)
252b5132 4072 {
a06ea964
NC
4073 case EM_AARCH64:
4074 result = get_aarch64_segment_type (p_type);
4075 break;
b294bdf8
MM
4076 case EM_ARM:
4077 result = get_arm_segment_type (p_type);
4078 break;
252b5132 4079 case EM_MIPS:
4fe85591 4080 case EM_MIPS_RS3_LE:
252b5132
RH
4081 result = get_mips_segment_type (p_type);
4082 break;
103f02d3
UD
4083 case EM_PARISC:
4084 result = get_parisc_segment_type (p_type);
4085 break;
4d6ed7c8
NC
4086 case EM_IA_64:
4087 result = get_ia64_segment_type (p_type);
4088 break;
40b36596
JM
4089 case EM_TI_C6000:
4090 result = get_tic6x_segment_type (p_type);
4091 break;
b4cbbe8f
AK
4092 case EM_S390:
4093 case EM_S390_OLD:
4094 result = get_s390_segment_type (p_type);
4095 break;
252b5132
RH
4096 default:
4097 result = NULL;
4098 break;
4099 }
103f02d3 4100
252b5132
RH
4101 if (result != NULL)
4102 return result;
103f02d3 4103
1a9ccd70 4104 sprintf (buff, "LOPROC+%#lx", p_type - PT_LOPROC);
252b5132
RH
4105 }
4106 else if ((p_type >= PT_LOOS) && (p_type <= PT_HIOS))
103f02d3 4107 {
df3a023b 4108 const char * result = NULL;
103f02d3 4109
df3a023b 4110 switch (filedata->file_header.e_ident[EI_OSABI])
103f02d3 4111 {
df3a023b
AM
4112 case ELFOSABI_GNU:
4113 case ELFOSABI_FREEBSD:
4114 if (p_type >= PT_GNU_MBIND_LO && p_type <= PT_GNU_MBIND_HI)
4115 {
4116 sprintf (buff, "GNU_MBIND+%#lx", p_type - PT_GNU_MBIND_LO);
4117 result = buff;
4118 }
103f02d3 4119 break;
df3a023b
AM
4120 case ELFOSABI_HPUX:
4121 result = get_hpux_segment_type (p_type,
4122 filedata->file_header.e_machine);
4123 break;
4124 case ELFOSABI_SOLARIS:
4125 result = get_solaris_segment_type (p_type);
00428cca 4126 break;
103f02d3 4127 default:
103f02d3
UD
4128 break;
4129 }
103f02d3
UD
4130 if (result != NULL)
4131 return result;
4132
1a9ccd70 4133 sprintf (buff, "LOOS+%#lx", p_type - PT_LOOS);
103f02d3 4134 }
252b5132 4135 else
e9e44622 4136 snprintf (buff, sizeof (buff), _("<unknown>: %lx"), p_type);
252b5132
RH
4137
4138 return buff;
4139 }
4140}
4141
53a346d8
CZ
4142static const char *
4143get_arc_section_type_name (unsigned int sh_type)
4144{
4145 switch (sh_type)
4146 {
4147 case SHT_ARC_ATTRIBUTES: return "ARC_ATTRIBUTES";
4148 default:
4149 break;
4150 }
4151 return NULL;
4152}
4153
252b5132 4154static const char *
d3ba0551 4155get_mips_section_type_name (unsigned int sh_type)
252b5132
RH
4156{
4157 switch (sh_type)
4158 {
b34976b6
AM
4159 case SHT_MIPS_LIBLIST: return "MIPS_LIBLIST";
4160 case SHT_MIPS_MSYM: return "MIPS_MSYM";
4161 case SHT_MIPS_CONFLICT: return "MIPS_CONFLICT";
4162 case SHT_MIPS_GPTAB: return "MIPS_GPTAB";
4163 case SHT_MIPS_UCODE: return "MIPS_UCODE";
4164 case SHT_MIPS_DEBUG: return "MIPS_DEBUG";
4165 case SHT_MIPS_REGINFO: return "MIPS_REGINFO";
4166 case SHT_MIPS_PACKAGE: return "MIPS_PACKAGE";
4167 case SHT_MIPS_PACKSYM: return "MIPS_PACKSYM";
4168 case SHT_MIPS_RELD: return "MIPS_RELD";
4169 case SHT_MIPS_IFACE: return "MIPS_IFACE";
4170 case SHT_MIPS_CONTENT: return "MIPS_CONTENT";
4171 case SHT_MIPS_OPTIONS: return "MIPS_OPTIONS";
4172 case SHT_MIPS_SHDR: return "MIPS_SHDR";
4173 case SHT_MIPS_FDESC: return "MIPS_FDESC";
4174 case SHT_MIPS_EXTSYM: return "MIPS_EXTSYM";
4175 case SHT_MIPS_DENSE: return "MIPS_DENSE";
4176 case SHT_MIPS_PDESC: return "MIPS_PDESC";
4177 case SHT_MIPS_LOCSYM: return "MIPS_LOCSYM";
4178 case SHT_MIPS_AUXSYM: return "MIPS_AUXSYM";
4179 case SHT_MIPS_OPTSYM: return "MIPS_OPTSYM";
4180 case SHT_MIPS_LOCSTR: return "MIPS_LOCSTR";
4181 case SHT_MIPS_LINE: return "MIPS_LINE";
4182 case SHT_MIPS_RFDESC: return "MIPS_RFDESC";
4183 case SHT_MIPS_DELTASYM: return "MIPS_DELTASYM";
4184 case SHT_MIPS_DELTAINST: return "MIPS_DELTAINST";
4185 case SHT_MIPS_DELTACLASS: return "MIPS_DELTACLASS";
4186 case SHT_MIPS_DWARF: return "MIPS_DWARF";
4187 case SHT_MIPS_DELTADECL: return "MIPS_DELTADECL";
4188 case SHT_MIPS_SYMBOL_LIB: return "MIPS_SYMBOL_LIB";
4189 case SHT_MIPS_EVENTS: return "MIPS_EVENTS";
4190 case SHT_MIPS_TRANSLATE: return "MIPS_TRANSLATE";
4191 case SHT_MIPS_PIXIE: return "MIPS_PIXIE";
4192 case SHT_MIPS_XLATE: return "MIPS_XLATE";
4193 case SHT_MIPS_XLATE_DEBUG: return "MIPS_XLATE_DEBUG";
4194 case SHT_MIPS_WHIRL: return "MIPS_WHIRL";
4195 case SHT_MIPS_EH_REGION: return "MIPS_EH_REGION";
4196 case SHT_MIPS_XLATE_OLD: return "MIPS_XLATE_OLD";
252b5132 4197 case SHT_MIPS_PDR_EXCEPTION: return "MIPS_PDR_EXCEPTION";
351cdf24 4198 case SHT_MIPS_ABIFLAGS: return "MIPS_ABIFLAGS";
f16a9783 4199 case SHT_MIPS_XHASH: return "MIPS_XHASH";
252b5132
RH
4200 default:
4201 break;
4202 }
4203 return NULL;
4204}
4205
103f02d3 4206static const char *
d3ba0551 4207get_parisc_section_type_name (unsigned int sh_type)
103f02d3
UD
4208{
4209 switch (sh_type)
4210 {
4211 case SHT_PARISC_EXT: return "PARISC_EXT";
4212 case SHT_PARISC_UNWIND: return "PARISC_UNWIND";
4213 case SHT_PARISC_DOC: return "PARISC_DOC";
eec8f817
DA
4214 case SHT_PARISC_ANNOT: return "PARISC_ANNOT";
4215 case SHT_PARISC_SYMEXTN: return "PARISC_SYMEXTN";
4216 case SHT_PARISC_STUBS: return "PARISC_STUBS";
61472819 4217 case SHT_PARISC_DLKM: return "PARISC_DLKM";
32ec8896 4218 default: return NULL;
103f02d3 4219 }
103f02d3
UD
4220}
4221
4d6ed7c8 4222static const char *
dda8d76d 4223get_ia64_section_type_name (Filedata * filedata, unsigned int sh_type)
4d6ed7c8 4224{
18bd398b 4225 /* If the top 8 bits are 0x78 the next 8 are the os/abi ID. */
ecc51f48 4226 if ((sh_type & 0xFF000000) == SHT_IA_64_LOPSREG)
dda8d76d 4227 return get_osabi_name (filedata, (sh_type & 0x00FF0000) >> 16);
0de14b54 4228
4d6ed7c8
NC
4229 switch (sh_type)
4230 {
148b93f2
NC
4231 case SHT_IA_64_EXT: return "IA_64_EXT";
4232 case SHT_IA_64_UNWIND: return "IA_64_UNWIND";
4233 case SHT_IA_64_PRIORITY_INIT: return "IA_64_PRIORITY_INIT";
4234 case SHT_IA_64_VMS_TRACE: return "VMS_TRACE";
4235 case SHT_IA_64_VMS_TIE_SIGNATURES: return "VMS_TIE_SIGNATURES";
4236 case SHT_IA_64_VMS_DEBUG: return "VMS_DEBUG";
4237 case SHT_IA_64_VMS_DEBUG_STR: return "VMS_DEBUG_STR";
4238 case SHT_IA_64_VMS_LINKAGES: return "VMS_LINKAGES";
4239 case SHT_IA_64_VMS_SYMBOL_VECTOR: return "VMS_SYMBOL_VECTOR";
4240 case SHT_IA_64_VMS_FIXUP: return "VMS_FIXUP";
4d6ed7c8
NC
4241 default:
4242 break;
4243 }
4244 return NULL;
4245}
4246
d2b2c203
DJ
4247static const char *
4248get_x86_64_section_type_name (unsigned int sh_type)
4249{
4250 switch (sh_type)
4251 {
4252 case SHT_X86_64_UNWIND: return "X86_64_UNWIND";
32ec8896 4253 default: return NULL;
d2b2c203 4254 }
d2b2c203
DJ
4255}
4256
a06ea964
NC
4257static const char *
4258get_aarch64_section_type_name (unsigned int sh_type)
4259{
4260 switch (sh_type)
4261 {
32ec8896
NC
4262 case SHT_AARCH64_ATTRIBUTES: return "AARCH64_ATTRIBUTES";
4263 default: return NULL;
a06ea964 4264 }
a06ea964
NC
4265}
4266
40a18ebd
NC
4267static const char *
4268get_arm_section_type_name (unsigned int sh_type)
4269{
4270 switch (sh_type)
4271 {
7f6fed87
NC
4272 case SHT_ARM_EXIDX: return "ARM_EXIDX";
4273 case SHT_ARM_PREEMPTMAP: return "ARM_PREEMPTMAP";
4274 case SHT_ARM_ATTRIBUTES: return "ARM_ATTRIBUTES";
4275 case SHT_ARM_DEBUGOVERLAY: return "ARM_DEBUGOVERLAY";
4276 case SHT_ARM_OVERLAYSECTION: return "ARM_OVERLAYSECTION";
32ec8896 4277 default: return NULL;
40a18ebd 4278 }
40a18ebd
NC
4279}
4280
40b36596
JM
4281static const char *
4282get_tic6x_section_type_name (unsigned int sh_type)
4283{
4284 switch (sh_type)
4285 {
32ec8896
NC
4286 case SHT_C6000_UNWIND: return "C6000_UNWIND";
4287 case SHT_C6000_PREEMPTMAP: return "C6000_PREEMPTMAP";
4288 case SHT_C6000_ATTRIBUTES: return "C6000_ATTRIBUTES";
4289 case SHT_TI_ICODE: return "TI_ICODE";
4290 case SHT_TI_XREF: return "TI_XREF";
4291 case SHT_TI_HANDLER: return "TI_HANDLER";
4292 case SHT_TI_INITINFO: return "TI_INITINFO";
4293 case SHT_TI_PHATTRS: return "TI_PHATTRS";
4294 default: return NULL;
40b36596 4295 }
40b36596
JM
4296}
4297
13761a11 4298static const char *
b0191216 4299get_msp430_section_type_name (unsigned int sh_type)
13761a11
NC
4300{
4301 switch (sh_type)
4302 {
32ec8896
NC
4303 case SHT_MSP430_SEC_FLAGS: return "MSP430_SEC_FLAGS";
4304 case SHT_MSP430_SYM_ALIASES: return "MSP430_SYM_ALIASES";
4305 case SHT_MSP430_ATTRIBUTES: return "MSP430_ATTRIBUTES";
4306 default: return NULL;
13761a11
NC
4307 }
4308}
4309
fe944acf
FT
4310static const char *
4311get_nfp_section_type_name (unsigned int sh_type)
4312{
4313 switch (sh_type)
4314 {
4315 case SHT_NFP_MECONFIG: return "NFP_MECONFIG";
4316 case SHT_NFP_INITREG: return "NFP_INITREG";
4317 case SHT_NFP_UDEBUG: return "NFP_UDEBUG";
4318 default: return NULL;
4319 }
4320}
4321
685080f2
NC
4322static const char *
4323get_v850_section_type_name (unsigned int sh_type)
4324{
4325 switch (sh_type)
4326 {
32ec8896
NC
4327 case SHT_V850_SCOMMON: return "V850 Small Common";
4328 case SHT_V850_TCOMMON: return "V850 Tiny Common";
4329 case SHT_V850_ZCOMMON: return "V850 Zero Common";
4330 case SHT_RENESAS_IOP: return "RENESAS IOP";
4331 case SHT_RENESAS_INFO: return "RENESAS INFO";
4332 default: return NULL;
685080f2
NC
4333 }
4334}
4335
2dc8dd17
JW
4336static const char *
4337get_riscv_section_type_name (unsigned int sh_type)
4338{
4339 switch (sh_type)
4340 {
4341 case SHT_RISCV_ATTRIBUTES: return "RISCV_ATTRIBUTES";
4342 default: return NULL;
4343 }
4344}
4345
0861f561
CQ
4346static const char *
4347get_csky_section_type_name (unsigned int sh_type)
4348{
4349 switch (sh_type)
4350 {
4351 case SHT_CSKY_ATTRIBUTES: return "CSKY_ATTRIBUTES";
4352 default: return NULL;
4353 }
4354}
4355
252b5132 4356static const char *
dda8d76d 4357get_section_type_name (Filedata * filedata, unsigned int sh_type)
252b5132 4358{
b34976b6 4359 static char buff[32];
9fb71ee4 4360 const char * result;
252b5132
RH
4361
4362 switch (sh_type)
4363 {
4364 case SHT_NULL: return "NULL";
4365 case SHT_PROGBITS: return "PROGBITS";
4366 case SHT_SYMTAB: return "SYMTAB";
4367 case SHT_STRTAB: return "STRTAB";
4368 case SHT_RELA: return "RELA";
4369 case SHT_HASH: return "HASH";
4370 case SHT_DYNAMIC: return "DYNAMIC";
4371 case SHT_NOTE: return "NOTE";
4372 case SHT_NOBITS: return "NOBITS";
4373 case SHT_REL: return "REL";
4374 case SHT_SHLIB: return "SHLIB";
4375 case SHT_DYNSYM: return "DYNSYM";
d1133906
NC
4376 case SHT_INIT_ARRAY: return "INIT_ARRAY";
4377 case SHT_FINI_ARRAY: return "FINI_ARRAY";
4378 case SHT_PREINIT_ARRAY: return "PREINIT_ARRAY";
fdc90cb4 4379 case SHT_GNU_HASH: return "GNU_HASH";
93ebe586 4380 case SHT_GROUP: return "GROUP";
67ce483b 4381 case SHT_SYMTAB_SHNDX: return "SYMTAB SECTION INDICES";
252b5132
RH
4382 case SHT_GNU_verdef: return "VERDEF";
4383 case SHT_GNU_verneed: return "VERNEED";
4384 case SHT_GNU_versym: return "VERSYM";
b34976b6
AM
4385 case 0x6ffffff0: return "VERSYM";
4386 case 0x6ffffffc: return "VERDEF";
252b5132
RH
4387 case 0x7ffffffd: return "AUXILIARY";
4388 case 0x7fffffff: return "FILTER";
047b2264 4389 case SHT_GNU_LIBLIST: return "GNU_LIBLIST";
252b5132
RH
4390
4391 default:
4392 if ((sh_type >= SHT_LOPROC) && (sh_type <= SHT_HIPROC))
4393 {
dda8d76d 4394 switch (filedata->file_header.e_machine)
252b5132 4395 {
53a346d8
CZ
4396 case EM_ARC:
4397 case EM_ARC_COMPACT:
4398 case EM_ARC_COMPACT2:
4399 result = get_arc_section_type_name (sh_type);
4400 break;
252b5132 4401 case EM_MIPS:
4fe85591 4402 case EM_MIPS_RS3_LE:
252b5132
RH
4403 result = get_mips_section_type_name (sh_type);
4404 break;
103f02d3
UD
4405 case EM_PARISC:
4406 result = get_parisc_section_type_name (sh_type);
4407 break;
4d6ed7c8 4408 case EM_IA_64:
dda8d76d 4409 result = get_ia64_section_type_name (filedata, sh_type);
4d6ed7c8 4410 break;
d2b2c203 4411 case EM_X86_64:
8a9036a4 4412 case EM_L1OM:
7a9068fe 4413 case EM_K1OM:
d2b2c203
DJ
4414 result = get_x86_64_section_type_name (sh_type);
4415 break;
a06ea964
NC
4416 case EM_AARCH64:
4417 result = get_aarch64_section_type_name (sh_type);
4418 break;
40a18ebd
NC
4419 case EM_ARM:
4420 result = get_arm_section_type_name (sh_type);
4421 break;
40b36596
JM
4422 case EM_TI_C6000:
4423 result = get_tic6x_section_type_name (sh_type);
4424 break;
13761a11 4425 case EM_MSP430:
b0191216 4426 result = get_msp430_section_type_name (sh_type);
13761a11 4427 break;
fe944acf
FT
4428 case EM_NFP:
4429 result = get_nfp_section_type_name (sh_type);
4430 break;
685080f2
NC
4431 case EM_V800:
4432 case EM_V850:
4433 case EM_CYGNUS_V850:
4434 result = get_v850_section_type_name (sh_type);
4435 break;
2dc8dd17
JW
4436 case EM_RISCV:
4437 result = get_riscv_section_type_name (sh_type);
4438 break;
0861f561
CQ
4439 case EM_CSKY:
4440 result = get_csky_section_type_name (sh_type);
4441 break;
252b5132
RH
4442 default:
4443 result = NULL;
4444 break;
4445 }
4446
4447 if (result != NULL)
4448 return result;
4449
9fb71ee4 4450 sprintf (buff, "LOPROC+%#x", sh_type - SHT_LOPROC);
252b5132
RH
4451 }
4452 else if ((sh_type >= SHT_LOOS) && (sh_type <= SHT_HIOS))
148b93f2 4453 {
dda8d76d 4454 switch (filedata->file_header.e_machine)
148b93f2
NC
4455 {
4456 case EM_IA_64:
dda8d76d 4457 result = get_ia64_section_type_name (filedata, sh_type);
148b93f2
NC
4458 break;
4459 default:
dda8d76d 4460 if (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_SOLARIS)
fd85a6a1
NC
4461 result = get_solaris_section_type (sh_type);
4462 else
1b4b80bf
NC
4463 {
4464 switch (sh_type)
4465 {
4466 case SHT_GNU_INCREMENTAL_INPUTS: result = "GNU_INCREMENTAL_INPUTS"; break;
4467 case SHT_GNU_ATTRIBUTES: result = "GNU_ATTRIBUTES"; break;
4468 case SHT_GNU_HASH: result = "GNU_HASH"; break;
4469 case SHT_GNU_LIBLIST: result = "GNU_LIBLIST"; break;
4470 default:
4471 result = NULL;
4472 break;
4473 }
4474 }
148b93f2
NC
4475 break;
4476 }
4477
4478 if (result != NULL)
4479 return result;
4480
9fb71ee4 4481 sprintf (buff, "LOOS+%#x", sh_type - SHT_LOOS);
148b93f2 4482 }
252b5132 4483 else if ((sh_type >= SHT_LOUSER) && (sh_type <= SHT_HIUSER))
685080f2 4484 {
dda8d76d 4485 switch (filedata->file_header.e_machine)
685080f2
NC
4486 {
4487 case EM_V800:
4488 case EM_V850:
4489 case EM_CYGNUS_V850:
9fb71ee4 4490 result = get_v850_section_type_name (sh_type);
a9fb83be 4491 break;
685080f2 4492 default:
9fb71ee4 4493 result = NULL;
685080f2
NC
4494 break;
4495 }
4496
9fb71ee4
NC
4497 if (result != NULL)
4498 return result;
4499
4500 sprintf (buff, "LOUSER+%#x", sh_type - SHT_LOUSER);
685080f2 4501 }
252b5132 4502 else
a7dbfd1c
NC
4503 /* This message is probably going to be displayed in a 15
4504 character wide field, so put the hex value first. */
4505 snprintf (buff, sizeof (buff), _("%08x: <unknown>"), sh_type);
103f02d3 4506
252b5132
RH
4507 return buff;
4508 }
4509}
4510
79bc120c
NC
4511enum long_option_values
4512{
4513 OPTION_DEBUG_DUMP = 512,
4514 OPTION_DYN_SYMS,
0f03783c 4515 OPTION_LTO_SYMS,
79bc120c
NC
4516 OPTION_DWARF_DEPTH,
4517 OPTION_DWARF_START,
4518 OPTION_DWARF_CHECK,
4519 OPTION_CTF_DUMP,
4520 OPTION_CTF_PARENT,
4521 OPTION_CTF_SYMBOLS,
4522 OPTION_CTF_STRINGS,
4523 OPTION_WITH_SYMBOL_VERSIONS,
4524 OPTION_RECURSE_LIMIT,
4525 OPTION_NO_RECURSE_LIMIT,
4526 OPTION_NO_DEMANGLING
4527};
2979dc34 4528
85b1c36d 4529static struct option options[] =
252b5132 4530{
79bc120c
NC
4531 /* Note - This table is alpha-sorted on the 'val'
4532 field in order to make adding new options easier. */
4533 {"arch-specific", no_argument, 0, 'A'},
b34976b6 4534 {"all", no_argument, 0, 'a'},
79bc120c
NC
4535 {"demangle", optional_argument, 0, 'C'},
4536 {"archive-index", no_argument, 0, 'c'},
4537 {"use-dynamic", no_argument, 0, 'D'},
4538 {"dynamic", no_argument, 0, 'd'},
b34976b6 4539 {"headers", no_argument, 0, 'e'},
79bc120c
NC
4540 {"section-groups", no_argument, 0, 'g'},
4541 {"help", no_argument, 0, 'H'},
4542 {"file-header", no_argument, 0, 'h'},
b34976b6 4543 {"histogram", no_argument, 0, 'I'},
79bc120c
NC
4544 {"lint", no_argument, 0, 'L'},
4545 {"enable-checks", no_argument, 0, 'L'},
4546 {"program-headers", no_argument, 0, 'l'},
b34976b6 4547 {"segments", no_argument, 0, 'l'},
595cf52e 4548 {"full-section-name",no_argument, 0, 'N'},
79bc120c 4549 {"notes", no_argument, 0, 'n'},
ca0e11aa 4550 {"process-links", no_argument, 0, 'P'},
79bc120c
NC
4551 {"string-dump", required_argument, 0, 'p'},
4552 {"relocated-dump", required_argument, 0, 'R'},
4553 {"relocs", no_argument, 0, 'r'},
4554 {"section-headers", no_argument, 0, 'S'},
4555 {"sections", no_argument, 0, 'S'},
b34976b6
AM
4556 {"symbols", no_argument, 0, 's'},
4557 {"syms", no_argument, 0, 's'},
79bc120c
NC
4558 {"silent-truncation",no_argument, 0, 'T'},
4559 {"section-details", no_argument, 0, 't'},
09c11c86 4560 {"unwind", no_argument, 0, 'u'},
79bc120c
NC
4561 {"version-info", no_argument, 0, 'V'},
4562 {"version", no_argument, 0, 'v'},
4563 {"wide", no_argument, 0, 'W'},
b34976b6 4564 {"hex-dump", required_argument, 0, 'x'},
0e602686 4565 {"decompress", no_argument, 0, 'z'},
252b5132 4566
79bc120c
NC
4567 {"no-demangle", no_argument, 0, OPTION_NO_DEMANGLING},
4568 {"recurse-limit", no_argument, NULL, OPTION_RECURSE_LIMIT},
4569 {"no-recurse-limit", no_argument, NULL, OPTION_NO_RECURSE_LIMIT},
4570 {"no-recursion-limit", no_argument, NULL, OPTION_NO_RECURSE_LIMIT},
4571 {"dyn-syms", no_argument, 0, OPTION_DYN_SYMS},
0f03783c 4572 {"lto-syms", no_argument, 0, OPTION_LTO_SYMS},
79bc120c 4573 {"debug-dump", optional_argument, 0, OPTION_DEBUG_DUMP},
fd2f0033
TT
4574 {"dwarf-depth", required_argument, 0, OPTION_DWARF_DEPTH},
4575 {"dwarf-start", required_argument, 0, OPTION_DWARF_START},
4723351a 4576 {"dwarf-check", no_argument, 0, OPTION_DWARF_CHECK},
094e34f2 4577#ifdef ENABLE_LIBCTF
d344b407 4578 {"ctf", required_argument, 0, OPTION_CTF_DUMP},
7d9813f1
NA
4579 {"ctf-symbols", required_argument, 0, OPTION_CTF_SYMBOLS},
4580 {"ctf-strings", required_argument, 0, OPTION_CTF_STRINGS},
4581 {"ctf-parent", required_argument, 0, OPTION_CTF_PARENT},
094e34f2 4582#endif
7d9813f1 4583
b34976b6 4584 {0, no_argument, 0, 0}
252b5132
RH
4585};
4586
4587static void
2cf0635d 4588usage (FILE * stream)
252b5132 4589{
92f01d61
JM
4590 fprintf (stream, _("Usage: readelf <option(s)> elf-file(s)\n"));
4591 fprintf (stream, _(" Display information about the contents of ELF format files\n"));
4592 fprintf (stream, _(" Options are:\n\
8b53311e
NC
4593 -a --all Equivalent to: -h -l -S -s -r -d -V -A -I\n\
4594 -h --file-header Display the ELF file header\n\
4595 -l --program-headers Display the program headers\n\
4596 --segments An alias for --program-headers\n\
4597 -S --section-headers Display the sections' header\n\
4598 --sections An alias for --section-headers\n\
f5842774 4599 -g --section-groups Display the section groups\n\
5477e8a0 4600 -t --section-details Display the section details\n\
8b53311e
NC
4601 -e --headers Equivalent to: -h -l -S\n\
4602 -s --syms Display the symbol table\n\
3f08eb35 4603 --symbols An alias for --syms\n\
1b513401 4604 --dyn-syms Display the dynamic symbol table\n\
0f03783c 4605 --lto-syms Display LTO symbol tables\n\
79bc120c
NC
4606 -C --demangle[=STYLE] Decode low-level symbol names into user-level names\n\
4607 The STYLE, if specified, can be `auto' (the default),\n\
4608 `gnu', `lucid', `arm', `hp', `edg', `gnu-v3', `java'\n\
4609 or `gnat'\n\
4610 --no-demangle Do not demangle low-level symbol names. (This is the default)\n\
4611 --recurse-limit Enable a demangling recursion limit. (This is the default)\n\
4612 --no-recurse-limit Disable a demangling recursion limit\n\
8b53311e
NC
4613 -n --notes Display the core notes (if present)\n\
4614 -r --relocs Display the relocations (if present)\n\
4615 -u --unwind Display the unwind info (if present)\n\
b2d38a17 4616 -d --dynamic Display the dynamic section (if present)\n\
8b53311e 4617 -V --version-info Display the version sections (if present)\n\
1b31d05e 4618 -A --arch-specific Display architecture specific information (if any)\n\
4145f1d5 4619 -c --archive-index Display the symbol/file index in an archive\n\
8b53311e 4620 -D --use-dynamic Use the dynamic section info when displaying symbols\n\
1b513401 4621 -L --lint|--enable-checks Display warning messages for possible problems\n\
09c11c86
NC
4622 -x --hex-dump=<number|name>\n\
4623 Dump the contents of section <number|name> as bytes\n\
4624 -p --string-dump=<number|name>\n\
4625 Dump the contents of section <number|name> as strings\n\
cf13d699
NC
4626 -R --relocated-dump=<number|name>\n\
4627 Dump the contents of section <number|name> as relocated bytes\n\
0e602686 4628 -z --decompress Decompress section before dumping it\n\
ca0e11aa 4629 -w[lLiaprmfFsoORtUuTgAc] or\n\
1ed06042 4630 --debug-dump[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,\n\
e4b7104b 4631 =frames-interp,=str,=str-offsets,=loc,=Ranges,=pubtypes,\n\
657d0d47 4632 =gdb_index,=trace_info,=trace_abbrev,=trace_aranges,\n\
ca0e11aa
NC
4633 =addr,=cu_index]\n\
4634 Display the contents of DWARF debug sections\n\
4635 -wk,--debug-dump=links Display the contents of sections that link to separate debuginfo files\n\
4636 -P,--process-links Display the contents of non-debug sections in separate debuginfo files. (Implies -wK)\n"));
c46b7066
NC
4637#if DEFAULT_FOR_FOLLOW_LINKS
4638 fprintf (stream, _("\
4639 -wK,--debug-dump=follow-links Follow links to separate debug info files (default)\n\
4640 -wN,--debug-dump=no-follow-links Do not follow links to separate debug info files\n\
4641"));
4642#else
4643 fprintf (stream, _("\
4644 -wK,--debug-dump=follow-links Follow links to separate debug info files\n\
4645 -wN,--debug-dump=no-follow-links Do not follow links to separate debug info files (default)\n\
4646"));
4647#endif
fd2f0033
TT
4648 fprintf (stream, _("\
4649 --dwarf-depth=N Do not display DIEs at depth N or greater\n\
4650 --dwarf-start=N Display DIEs starting with N, at the same depth\n\
4651 or deeper\n"));
094e34f2 4652#ifdef ENABLE_LIBCTF
7d9813f1
NA
4653 fprintf (stream, _("\
4654 --ctf=<number|name> Display CTF info from section <number|name>\n\
4655 --ctf-parent=<number|name>\n\
4656 Use section <number|name> as the CTF parent\n\n\
4657 --ctf-symbols=<number|name>\n\
4658 Use section <number|name> as the CTF external symtab\n\n\
4659 --ctf-strings=<number|name>\n\
4660 Use section <number|name> as the CTF external strtab\n\n"));
094e34f2 4661#endif
7d9813f1 4662
252b5132 4663#ifdef SUPPORT_DISASSEMBLY
92f01d61 4664 fprintf (stream, _("\
09c11c86
NC
4665 -i --instruction-dump=<number|name>\n\
4666 Disassemble the contents of section <number|name>\n"));
252b5132 4667#endif
92f01d61 4668 fprintf (stream, _("\
8b53311e
NC
4669 -I --histogram Display histogram of bucket list lengths\n\
4670 -W --wide Allow output width to exceed 80 characters\n\
0942c7ab 4671 -T --silent-truncation If a symbol name is truncated, do not add a suffix [...]\n\
07012eee 4672 @<file> Read options from <file>\n\
8b53311e
NC
4673 -H --help Display this information\n\
4674 -v --version Display the version number of readelf\n"));
1118d252 4675
92f01d61
JM
4676 if (REPORT_BUGS_TO[0] && stream == stdout)
4677 fprintf (stdout, _("Report bugs to %s\n"), REPORT_BUGS_TO);
252b5132 4678
92f01d61 4679 exit (stream == stdout ? 0 : 1);
252b5132
RH
4680}
4681
18bd398b
NC
4682/* Record the fact that the user wants the contents of section number
4683 SECTION to be displayed using the method(s) encoded as flags bits
4684 in TYPE. Note, TYPE can be zero if we are creating the array for
4685 the first time. */
4686
252b5132 4687static void
6431e409
AM
4688request_dump_bynumber (struct dump_data *dumpdata,
4689 unsigned int section, dump_type type)
252b5132 4690{
6431e409 4691 if (section >= dumpdata->num_dump_sects)
252b5132 4692 {
2cf0635d 4693 dump_type * new_dump_sects;
252b5132 4694
3f5e193b 4695 new_dump_sects = (dump_type *) calloc (section + 1,
dda8d76d 4696 sizeof (* new_dump_sects));
252b5132
RH
4697
4698 if (new_dump_sects == NULL)
591a748a 4699 error (_("Out of memory allocating dump request table.\n"));
252b5132
RH
4700 else
4701 {
6431e409 4702 if (dumpdata->dump_sects)
21b65bac
NC
4703 {
4704 /* Copy current flag settings. */
6431e409
AM
4705 memcpy (new_dump_sects, dumpdata->dump_sects,
4706 dumpdata->num_dump_sects * sizeof (* new_dump_sects));
252b5132 4707
6431e409 4708 free (dumpdata->dump_sects);
21b65bac 4709 }
252b5132 4710
6431e409
AM
4711 dumpdata->dump_sects = new_dump_sects;
4712 dumpdata->num_dump_sects = section + 1;
252b5132
RH
4713 }
4714 }
4715
6431e409
AM
4716 if (dumpdata->dump_sects)
4717 dumpdata->dump_sects[section] |= type;
252b5132
RH
4718}
4719
aef1f6d0
DJ
4720/* Request a dump by section name. */
4721
4722static void
2cf0635d 4723request_dump_byname (const char * section, dump_type type)
aef1f6d0 4724{
2cf0635d 4725 struct dump_list_entry * new_request;
aef1f6d0 4726
3f5e193b
NC
4727 new_request = (struct dump_list_entry *)
4728 malloc (sizeof (struct dump_list_entry));
aef1f6d0 4729 if (!new_request)
591a748a 4730 error (_("Out of memory allocating dump request table.\n"));
aef1f6d0
DJ
4731
4732 new_request->name = strdup (section);
4733 if (!new_request->name)
591a748a 4734 error (_("Out of memory allocating dump request table.\n"));
aef1f6d0
DJ
4735
4736 new_request->type = type;
4737
4738 new_request->next = dump_sects_byname;
4739 dump_sects_byname = new_request;
4740}
4741
cf13d699 4742static inline void
6431e409 4743request_dump (struct dump_data *dumpdata, dump_type type)
cf13d699
NC
4744{
4745 int section;
4746 char * cp;
4747
015dc7e1 4748 do_dump = true;
cf13d699
NC
4749 section = strtoul (optarg, & cp, 0);
4750
4751 if (! *cp && section >= 0)
6431e409 4752 request_dump_bynumber (dumpdata, section, type);
cf13d699
NC
4753 else
4754 request_dump_byname (optarg, type);
4755}
4756
252b5132 4757static void
6431e409 4758parse_args (struct dump_data *dumpdata, int argc, char ** argv)
252b5132
RH
4759{
4760 int c;
4761
4762 if (argc < 2)
92f01d61 4763 usage (stderr);
252b5132
RH
4764
4765 while ((c = getopt_long
ca0e11aa 4766 (argc, argv, "ACDHILNPR:STVWacdeghi:lnp:rstuvw::x:z", options, NULL)) != EOF)
252b5132 4767 {
252b5132
RH
4768 switch (c)
4769 {
4770 case 0:
4771 /* Long options. */
4772 break;
4773 case 'H':
92f01d61 4774 usage (stdout);
252b5132
RH
4775 break;
4776
4777 case 'a':
015dc7e1
AM
4778 do_syms = true;
4779 do_reloc = true;
4780 do_unwind = true;
4781 do_dynamic = true;
4782 do_header = true;
4783 do_sections = true;
4784 do_section_groups = true;
4785 do_segments = true;
4786 do_version = true;
4787 do_histogram = true;
4788 do_arch = true;
4789 do_notes = true;
252b5132 4790 break;
79bc120c 4791
f5842774 4792 case 'g':
015dc7e1 4793 do_section_groups = true;
f5842774 4794 break;
5477e8a0 4795 case 't':
595cf52e 4796 case 'N':
015dc7e1
AM
4797 do_sections = true;
4798 do_section_details = true;
595cf52e 4799 break;
252b5132 4800 case 'e':
015dc7e1
AM
4801 do_header = true;
4802 do_sections = true;
4803 do_segments = true;
252b5132 4804 break;
a952a375 4805 case 'A':
015dc7e1 4806 do_arch = true;
a952a375 4807 break;
252b5132 4808 case 'D':
015dc7e1 4809 do_using_dynamic = true;
252b5132
RH
4810 break;
4811 case 'r':
015dc7e1 4812 do_reloc = true;
252b5132 4813 break;
4d6ed7c8 4814 case 'u':
015dc7e1 4815 do_unwind = true;
4d6ed7c8 4816 break;
252b5132 4817 case 'h':
015dc7e1 4818 do_header = true;
252b5132
RH
4819 break;
4820 case 'l':
015dc7e1 4821 do_segments = true;
252b5132
RH
4822 break;
4823 case 's':
015dc7e1 4824 do_syms = true;
252b5132
RH
4825 break;
4826 case 'S':
015dc7e1 4827 do_sections = true;
252b5132
RH
4828 break;
4829 case 'd':
015dc7e1 4830 do_dynamic = true;
252b5132 4831 break;
a952a375 4832 case 'I':
015dc7e1 4833 do_histogram = true;
a952a375 4834 break;
779fe533 4835 case 'n':
015dc7e1 4836 do_notes = true;
779fe533 4837 break;
4145f1d5 4838 case 'c':
015dc7e1 4839 do_archive_index = true;
4145f1d5 4840 break;
1b513401 4841 case 'L':
015dc7e1 4842 do_checks = true;
1b513401 4843 break;
ca0e11aa 4844 case 'P':
015dc7e1
AM
4845 process_links = true;
4846 do_follow_links = true;
ca0e11aa 4847 break;
252b5132 4848 case 'x':
6431e409 4849 request_dump (dumpdata, HEX_DUMP);
aef1f6d0 4850 break;
09c11c86 4851 case 'p':
6431e409 4852 request_dump (dumpdata, STRING_DUMP);
cf13d699
NC
4853 break;
4854 case 'R':
6431e409 4855 request_dump (dumpdata, RELOC_DUMP);
09c11c86 4856 break;
0e602686 4857 case 'z':
015dc7e1 4858 decompress_dumps = true;
0e602686 4859 break;
252b5132 4860 case 'w':
015dc7e1 4861 do_dump = true;
0f03783c 4862 if (optarg == NULL)
613ff48b 4863 {
015dc7e1 4864 do_debugging = true;
613ff48b
CC
4865 dwarf_select_sections_all ();
4866 }
252b5132
RH
4867 else
4868 {
015dc7e1 4869 do_debugging = false;
4cb93e3b 4870 dwarf_select_sections_by_letters (optarg);
252b5132
RH
4871 }
4872 break;
2979dc34 4873 case OPTION_DEBUG_DUMP:
015dc7e1 4874 do_dump = true;
0f03783c 4875 if (optarg == NULL)
015dc7e1 4876 do_debugging = true;
2979dc34
JJ
4877 else
4878 {
015dc7e1 4879 do_debugging = false;
4cb93e3b 4880 dwarf_select_sections_by_names (optarg);
2979dc34
JJ
4881 }
4882 break;
fd2f0033
TT
4883 case OPTION_DWARF_DEPTH:
4884 {
4885 char *cp;
4886
4887 dwarf_cutoff_level = strtoul (optarg, & cp, 0);
4888 }
4889 break;
4890 case OPTION_DWARF_START:
4891 {
4892 char *cp;
4893
4894 dwarf_start_die = strtoul (optarg, & cp, 0);
4895 }
4896 break;
4723351a 4897 case OPTION_DWARF_CHECK:
015dc7e1 4898 dwarf_check = true;
4723351a 4899 break;
7d9813f1 4900 case OPTION_CTF_DUMP:
015dc7e1 4901 do_ctf = true;
6431e409 4902 request_dump (dumpdata, CTF_DUMP);
7d9813f1
NA
4903 break;
4904 case OPTION_CTF_SYMBOLS:
df16e041 4905 free (dump_ctf_symtab_name);
7d9813f1
NA
4906 dump_ctf_symtab_name = strdup (optarg);
4907 break;
4908 case OPTION_CTF_STRINGS:
df16e041 4909 free (dump_ctf_strtab_name);
7d9813f1
NA
4910 dump_ctf_strtab_name = strdup (optarg);
4911 break;
4912 case OPTION_CTF_PARENT:
df16e041 4913 free (dump_ctf_parent_name);
7d9813f1
NA
4914 dump_ctf_parent_name = strdup (optarg);
4915 break;
2c610e4b 4916 case OPTION_DYN_SYMS:
015dc7e1 4917 do_dyn_syms = true;
2c610e4b 4918 break;
0f03783c 4919 case OPTION_LTO_SYMS:
015dc7e1 4920 do_lto_syms = true;
0f03783c 4921 break;
252b5132
RH
4922#ifdef SUPPORT_DISASSEMBLY
4923 case 'i':
6431e409 4924 request_dump (dumpdata, DISASS_DUMP);
cf13d699 4925 break;
252b5132
RH
4926#endif
4927 case 'v':
4928 print_version (program_name);
4929 break;
4930 case 'V':
015dc7e1 4931 do_version = true;
252b5132 4932 break;
d974e256 4933 case 'W':
015dc7e1 4934 do_wide = true;
d974e256 4935 break;
0942c7ab 4936 case 'T':
015dc7e1 4937 do_not_show_symbol_truncation = true;
0942c7ab 4938 break;
79bc120c 4939 case 'C':
015dc7e1 4940 do_demangle = true;
79bc120c
NC
4941 if (optarg != NULL)
4942 {
4943 enum demangling_styles style;
4944
4945 style = cplus_demangle_name_to_style (optarg);
4946 if (style == unknown_demangling)
4947 error (_("unknown demangling style `%s'"), optarg);
4948
4949 cplus_demangle_set_style (style);
4950 }
4951 break;
4952 case OPTION_NO_DEMANGLING:
015dc7e1 4953 do_demangle = false;
79bc120c
NC
4954 break;
4955 case OPTION_RECURSE_LIMIT:
4956 demangle_flags &= ~ DMGL_NO_RECURSE_LIMIT;
4957 break;
4958 case OPTION_NO_RECURSE_LIMIT:
4959 demangle_flags |= DMGL_NO_RECURSE_LIMIT;
4960 break;
4961 case OPTION_WITH_SYMBOL_VERSIONS:
4962 /* Ignored for backward compatibility. */
4963 break;
b9e920ec 4964
252b5132 4965 default:
252b5132
RH
4966 /* xgettext:c-format */
4967 error (_("Invalid option '-%c'\n"), c);
1a0670f3 4968 /* Fall through. */
252b5132 4969 case '?':
92f01d61 4970 usage (stderr);
252b5132
RH
4971 }
4972 }
4973
4d6ed7c8 4974 if (!do_dynamic && !do_syms && !do_reloc && !do_unwind && !do_sections
252b5132 4975 && !do_segments && !do_header && !do_dump && !do_version
f5842774 4976 && !do_histogram && !do_debugging && !do_arch && !do_notes
2c610e4b 4977 && !do_section_groups && !do_archive_index
0f03783c 4978 && !do_dyn_syms && !do_lto_syms)
1b513401
NC
4979 {
4980 if (do_checks)
4981 {
015dc7e1
AM
4982 check_all = true;
4983 do_dynamic = do_syms = do_reloc = do_unwind = do_sections = true;
4984 do_segments = do_header = do_dump = do_version = true;
4985 do_histogram = do_debugging = do_arch = do_notes = true;
4986 do_section_groups = do_archive_index = do_dyn_syms = true;
4987 do_lto_syms = true;
1b513401
NC
4988 }
4989 else
4990 usage (stderr);
4991 }
252b5132
RH
4992}
4993
4994static const char *
d3ba0551 4995get_elf_class (unsigned int elf_class)
252b5132 4996{
b34976b6 4997 static char buff[32];
103f02d3 4998
252b5132
RH
4999 switch (elf_class)
5000 {
5001 case ELFCLASSNONE: return _("none");
e3c8793a
NC
5002 case ELFCLASS32: return "ELF32";
5003 case ELFCLASS64: return "ELF64";
ab5e7794 5004 default:
e9e44622 5005 snprintf (buff, sizeof (buff), _("<unknown: %x>"), elf_class);
ab5e7794 5006 return buff;
252b5132
RH
5007 }
5008}
5009
5010static const char *
d3ba0551 5011get_data_encoding (unsigned int encoding)
252b5132 5012{
b34976b6 5013 static char buff[32];
103f02d3 5014
252b5132
RH
5015 switch (encoding)
5016 {
5017 case ELFDATANONE: return _("none");
33c63f9d
CM
5018 case ELFDATA2LSB: return _("2's complement, little endian");
5019 case ELFDATA2MSB: return _("2's complement, big endian");
103f02d3 5020 default:
e9e44622 5021 snprintf (buff, sizeof (buff), _("<unknown: %x>"), encoding);
ab5e7794 5022 return buff;
252b5132
RH
5023 }
5024}
5025
dda8d76d 5026/* Decode the data held in 'filedata->file_header'. */
ee42cf8c 5027
015dc7e1 5028static bool
dda8d76d 5029process_file_header (Filedata * filedata)
252b5132 5030{
dda8d76d
NC
5031 Elf_Internal_Ehdr * header = & filedata->file_header;
5032
5033 if ( header->e_ident[EI_MAG0] != ELFMAG0
5034 || header->e_ident[EI_MAG1] != ELFMAG1
5035 || header->e_ident[EI_MAG2] != ELFMAG2
5036 || header->e_ident[EI_MAG3] != ELFMAG3)
252b5132
RH
5037 {
5038 error
5039 (_("Not an ELF file - it has the wrong magic bytes at the start\n"));
015dc7e1 5040 return false;
252b5132
RH
5041 }
5042
ca0e11aa
NC
5043 if (! filedata->is_separate)
5044 init_dwarf_regnames_by_elf_machine_code (header->e_machine);
2dc4cec1 5045
252b5132
RH
5046 if (do_header)
5047 {
32ec8896 5048 unsigned i;
252b5132 5049
ca0e11aa
NC
5050 if (filedata->is_separate)
5051 printf (_("ELF Header in linked file '%s':\n"), filedata->file_name);
5052 else
5053 printf (_("ELF Header:\n"));
252b5132 5054 printf (_(" Magic: "));
b34976b6 5055 for (i = 0; i < EI_NIDENT; i++)
dda8d76d 5056 printf ("%2.2x ", header->e_ident[i]);
252b5132
RH
5057 printf ("\n");
5058 printf (_(" Class: %s\n"),
dda8d76d 5059 get_elf_class (header->e_ident[EI_CLASS]));
252b5132 5060 printf (_(" Data: %s\n"),
dda8d76d 5061 get_data_encoding (header->e_ident[EI_DATA]));
e8a64888 5062 printf (_(" Version: %d%s\n"),
dda8d76d
NC
5063 header->e_ident[EI_VERSION],
5064 (header->e_ident[EI_VERSION] == EV_CURRENT
e8a64888 5065 ? _(" (current)")
dda8d76d 5066 : (header->e_ident[EI_VERSION] != EV_NONE
e8a64888 5067 ? _(" <unknown>")
789be9f7 5068 : "")));
252b5132 5069 printf (_(" OS/ABI: %s\n"),
dda8d76d 5070 get_osabi_name (filedata, header->e_ident[EI_OSABI]));
252b5132 5071 printf (_(" ABI Version: %d\n"),
dda8d76d 5072 header->e_ident[EI_ABIVERSION]);
252b5132 5073 printf (_(" Type: %s\n"),
dda8d76d 5074 get_file_type (header->e_type));
252b5132 5075 printf (_(" Machine: %s\n"),
dda8d76d 5076 get_machine_name (header->e_machine));
252b5132 5077 printf (_(" Version: 0x%lx\n"),
e8a64888 5078 header->e_version);
76da6bbe 5079
f7a99963 5080 printf (_(" Entry point address: "));
e8a64888 5081 print_vma (header->e_entry, PREFIX_HEX);
f7a99963 5082 printf (_("\n Start of program headers: "));
e8a64888 5083 print_vma (header->e_phoff, DEC);
f7a99963 5084 printf (_(" (bytes into file)\n Start of section headers: "));
e8a64888 5085 print_vma (header->e_shoff, DEC);
f7a99963 5086 printf (_(" (bytes into file)\n"));
76da6bbe 5087
252b5132 5088 printf (_(" Flags: 0x%lx%s\n"),
e8a64888 5089 header->e_flags,
dda8d76d 5090 get_machine_flags (filedata, header->e_flags, header->e_machine));
e8a64888
AM
5091 printf (_(" Size of this header: %u (bytes)\n"),
5092 header->e_ehsize);
5093 printf (_(" Size of program headers: %u (bytes)\n"),
5094 header->e_phentsize);
5095 printf (_(" Number of program headers: %u"),
5096 header->e_phnum);
dda8d76d
NC
5097 if (filedata->section_headers != NULL
5098 && header->e_phnum == PN_XNUM
5099 && filedata->section_headers[0].sh_info != 0)
e8a64888
AM
5100 {
5101 header->e_phnum = filedata->section_headers[0].sh_info;
5102 printf (" (%u)", header->e_phnum);
5103 }
2046a35d 5104 putc ('\n', stdout);
e8a64888
AM
5105 printf (_(" Size of section headers: %u (bytes)\n"),
5106 header->e_shentsize);
5107 printf (_(" Number of section headers: %u"),
5108 header->e_shnum);
dda8d76d 5109 if (filedata->section_headers != NULL && header->e_shnum == SHN_UNDEF)
e8a64888
AM
5110 {
5111 header->e_shnum = filedata->section_headers[0].sh_size;
5112 printf (" (%u)", header->e_shnum);
5113 }
560f3c1c 5114 putc ('\n', stdout);
e8a64888
AM
5115 printf (_(" Section header string table index: %u"),
5116 header->e_shstrndx);
dda8d76d
NC
5117 if (filedata->section_headers != NULL
5118 && header->e_shstrndx == (SHN_XINDEX & 0xffff))
e8a64888
AM
5119 {
5120 header->e_shstrndx = filedata->section_headers[0].sh_link;
5121 printf (" (%u)", header->e_shstrndx);
5122 }
5123 if (header->e_shstrndx != SHN_UNDEF
5124 && header->e_shstrndx >= header->e_shnum)
5125 {
5126 header->e_shstrndx = SHN_UNDEF;
5127 printf (_(" <corrupt: out of range>"));
5128 }
560f3c1c
AM
5129 putc ('\n', stdout);
5130 }
5131
dda8d76d 5132 if (filedata->section_headers != NULL)
560f3c1c 5133 {
dda8d76d
NC
5134 if (header->e_phnum == PN_XNUM
5135 && filedata->section_headers[0].sh_info != 0)
5136 header->e_phnum = filedata->section_headers[0].sh_info;
5137 if (header->e_shnum == SHN_UNDEF)
5138 header->e_shnum = filedata->section_headers[0].sh_size;
5139 if (header->e_shstrndx == (SHN_XINDEX & 0xffff))
5140 header->e_shstrndx = filedata->section_headers[0].sh_link;
9c1ce108 5141 if (header->e_shstrndx >= header->e_shnum)
dda8d76d
NC
5142 header->e_shstrndx = SHN_UNDEF;
5143 free (filedata->section_headers);
5144 filedata->section_headers = NULL;
252b5132 5145 }
103f02d3 5146
015dc7e1 5147 return true;
9ea033b2
NC
5148}
5149
dda8d76d
NC
5150/* Read in the program headers from FILEDATA and store them in PHEADERS.
5151 Returns TRUE upon success, FALSE otherwise. Loads 32-bit headers. */
5152
015dc7e1 5153static bool
dda8d76d 5154get_32bit_program_headers (Filedata * filedata, Elf_Internal_Phdr * pheaders)
9ea033b2 5155{
2cf0635d
NC
5156 Elf32_External_Phdr * phdrs;
5157 Elf32_External_Phdr * external;
5158 Elf_Internal_Phdr * internal;
b34976b6 5159 unsigned int i;
dda8d76d
NC
5160 unsigned int size = filedata->file_header.e_phentsize;
5161 unsigned int num = filedata->file_header.e_phnum;
e0a31db1
NC
5162
5163 /* PR binutils/17531: Cope with unexpected section header sizes. */
5164 if (size == 0 || num == 0)
015dc7e1 5165 return false;
e0a31db1
NC
5166 if (size < sizeof * phdrs)
5167 {
5168 error (_("The e_phentsize field in the ELF header is less than the size of an ELF program header\n"));
015dc7e1 5169 return false;
e0a31db1
NC
5170 }
5171 if (size > sizeof * phdrs)
5172 warn (_("The e_phentsize field in the ELF header is larger than the size of an ELF program header\n"));
103f02d3 5173
dda8d76d 5174 phdrs = (Elf32_External_Phdr *) get_data (NULL, filedata, filedata->file_header.e_phoff,
e0a31db1
NC
5175 size, num, _("program headers"));
5176 if (phdrs == NULL)
015dc7e1 5177 return false;
9ea033b2 5178
91d6fa6a 5179 for (i = 0, internal = pheaders, external = phdrs;
dda8d76d 5180 i < filedata->file_header.e_phnum;
b34976b6 5181 i++, internal++, external++)
252b5132 5182 {
9ea033b2
NC
5183 internal->p_type = BYTE_GET (external->p_type);
5184 internal->p_offset = BYTE_GET (external->p_offset);
5185 internal->p_vaddr = BYTE_GET (external->p_vaddr);
5186 internal->p_paddr = BYTE_GET (external->p_paddr);
5187 internal->p_filesz = BYTE_GET (external->p_filesz);
5188 internal->p_memsz = BYTE_GET (external->p_memsz);
5189 internal->p_flags = BYTE_GET (external->p_flags);
5190 internal->p_align = BYTE_GET (external->p_align);
252b5132
RH
5191 }
5192
9ea033b2 5193 free (phdrs);
015dc7e1 5194 return true;
252b5132
RH
5195}
5196
dda8d76d
NC
5197/* Read in the program headers from FILEDATA and store them in PHEADERS.
5198 Returns TRUE upon success, FALSE otherwise. Loads 64-bit headers. */
5199
015dc7e1 5200static bool
dda8d76d 5201get_64bit_program_headers (Filedata * filedata, Elf_Internal_Phdr * pheaders)
9ea033b2 5202{
2cf0635d
NC
5203 Elf64_External_Phdr * phdrs;
5204 Elf64_External_Phdr * external;
5205 Elf_Internal_Phdr * internal;
b34976b6 5206 unsigned int i;
dda8d76d
NC
5207 unsigned int size = filedata->file_header.e_phentsize;
5208 unsigned int num = filedata->file_header.e_phnum;
e0a31db1
NC
5209
5210 /* PR binutils/17531: Cope with unexpected section header sizes. */
5211 if (size == 0 || num == 0)
015dc7e1 5212 return false;
e0a31db1
NC
5213 if (size < sizeof * phdrs)
5214 {
5215 error (_("The e_phentsize field in the ELF header is less than the size of an ELF program header\n"));
015dc7e1 5216 return false;
e0a31db1
NC
5217 }
5218 if (size > sizeof * phdrs)
5219 warn (_("The e_phentsize field in the ELF header is larger than the size of an ELF program header\n"));
103f02d3 5220
dda8d76d 5221 phdrs = (Elf64_External_Phdr *) get_data (NULL, filedata, filedata->file_header.e_phoff,
e0a31db1 5222 size, num, _("program headers"));
a6e9f9df 5223 if (!phdrs)
015dc7e1 5224 return false;
9ea033b2 5225
91d6fa6a 5226 for (i = 0, internal = pheaders, external = phdrs;
dda8d76d 5227 i < filedata->file_header.e_phnum;
b34976b6 5228 i++, internal++, external++)
9ea033b2
NC
5229 {
5230 internal->p_type = BYTE_GET (external->p_type);
5231 internal->p_flags = BYTE_GET (external->p_flags);
66543521
AM
5232 internal->p_offset = BYTE_GET (external->p_offset);
5233 internal->p_vaddr = BYTE_GET (external->p_vaddr);
5234 internal->p_paddr = BYTE_GET (external->p_paddr);
5235 internal->p_filesz = BYTE_GET (external->p_filesz);
5236 internal->p_memsz = BYTE_GET (external->p_memsz);
5237 internal->p_align = BYTE_GET (external->p_align);
9ea033b2
NC
5238 }
5239
5240 free (phdrs);
015dc7e1 5241 return true;
9ea033b2 5242}
252b5132 5243
32ec8896 5244/* Returns TRUE if the program headers were read into `program_headers'. */
d93f0186 5245
015dc7e1 5246static bool
dda8d76d 5247get_program_headers (Filedata * filedata)
d93f0186 5248{
2cf0635d 5249 Elf_Internal_Phdr * phdrs;
d93f0186
NC
5250
5251 /* Check cache of prior read. */
dda8d76d 5252 if (filedata->program_headers != NULL)
015dc7e1 5253 return true;
d93f0186 5254
82156ab7
NC
5255 /* Be kind to memory checkers by looking for
5256 e_phnum values which we know must be invalid. */
dda8d76d 5257 if (filedata->file_header.e_phnum
82156ab7 5258 * (is_32bit_elf ? sizeof (Elf32_External_Phdr) : sizeof (Elf64_External_Phdr))
dda8d76d 5259 >= filedata->file_size)
82156ab7
NC
5260 {
5261 error (_("Too many program headers - %#x - the file is not that big\n"),
dda8d76d 5262 filedata->file_header.e_phnum);
015dc7e1 5263 return false;
82156ab7 5264 }
d93f0186 5265
dda8d76d 5266 phdrs = (Elf_Internal_Phdr *) cmalloc (filedata->file_header.e_phnum,
82156ab7 5267 sizeof (Elf_Internal_Phdr));
d93f0186
NC
5268 if (phdrs == NULL)
5269 {
8b73c356 5270 error (_("Out of memory reading %u program headers\n"),
dda8d76d 5271 filedata->file_header.e_phnum);
015dc7e1 5272 return false;
d93f0186
NC
5273 }
5274
5275 if (is_32bit_elf
dda8d76d
NC
5276 ? get_32bit_program_headers (filedata, phdrs)
5277 : get_64bit_program_headers (filedata, phdrs))
d93f0186 5278 {
dda8d76d 5279 filedata->program_headers = phdrs;
015dc7e1 5280 return true;
d93f0186
NC
5281 }
5282
5283 free (phdrs);
015dc7e1 5284 return false;
d93f0186
NC
5285}
5286
32ec8896 5287/* Returns TRUE if the program headers were loaded. */
2f62977e 5288
015dc7e1 5289static bool
dda8d76d 5290process_program_headers (Filedata * filedata)
252b5132 5291{
2cf0635d 5292 Elf_Internal_Phdr * segment;
b34976b6 5293 unsigned int i;
1a9ccd70 5294 Elf_Internal_Phdr * previous_load = NULL;
252b5132 5295
978c4450
AM
5296 filedata->dynamic_addr = 0;
5297 filedata->dynamic_size = 0;
663f67df 5298
dda8d76d 5299 if (filedata->file_header.e_phnum == 0)
252b5132 5300 {
82f2dbf7 5301 /* PR binutils/12467. */
dda8d76d 5302 if (filedata->file_header.e_phoff != 0)
32ec8896
NC
5303 {
5304 warn (_("possibly corrupt ELF header - it has a non-zero program"
5305 " header offset, but no program headers\n"));
015dc7e1 5306 return false;
32ec8896 5307 }
82f2dbf7 5308 else if (do_segments)
ca0e11aa
NC
5309 {
5310 if (filedata->is_separate)
5311 printf (_("\nThere are no program headers in linked file '%s'.\n"),
5312 filedata->file_name);
5313 else
5314 printf (_("\nThere are no program headers in this file.\n"));
5315 }
015dc7e1 5316 return true;
252b5132
RH
5317 }
5318
5319 if (do_segments && !do_header)
5320 {
ca0e11aa
NC
5321 if (filedata->is_separate)
5322 printf ("\nIn linked file '%s' the ELF file type is %s\n",
5323 filedata->file_name,
5324 get_file_type (filedata->file_header.e_type));
5325 else
5326 printf (_("\nElf file type is %s\n"), get_file_type (filedata->file_header.e_type));
dda8d76d 5327 printf (_("Entry point 0x%s\n"), bfd_vmatoa ("x", filedata->file_header.e_entry));
d3a49aa8
AM
5328 printf (ngettext ("There is %d program header, starting at offset %s\n",
5329 "There are %d program headers, starting at offset %s\n",
dda8d76d
NC
5330 filedata->file_header.e_phnum),
5331 filedata->file_header.e_phnum,
5332 bfd_vmatoa ("u", filedata->file_header.e_phoff));
252b5132
RH
5333 }
5334
dda8d76d 5335 if (! get_program_headers (filedata))
015dc7e1 5336 return true;
103f02d3 5337
252b5132
RH
5338 if (do_segments)
5339 {
dda8d76d 5340 if (filedata->file_header.e_phnum > 1)
3a1a2036
NC
5341 printf (_("\nProgram Headers:\n"));
5342 else
5343 printf (_("\nProgram Headers:\n"));
76da6bbe 5344
f7a99963
NC
5345 if (is_32bit_elf)
5346 printf
5347 (_(" Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align\n"));
d974e256
JJ
5348 else if (do_wide)
5349 printf
5350 (_(" Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align\n"));
f7a99963
NC
5351 else
5352 {
5353 printf
5354 (_(" Type Offset VirtAddr PhysAddr\n"));
5355 printf
5356 (_(" FileSiz MemSiz Flags Align\n"));
5357 }
252b5132
RH
5358 }
5359
dda8d76d
NC
5360 for (i = 0, segment = filedata->program_headers;
5361 i < filedata->file_header.e_phnum;
b34976b6 5362 i++, segment++)
252b5132
RH
5363 {
5364 if (do_segments)
5365 {
dda8d76d 5366 printf (" %-14.14s ", get_segment_type (filedata, segment->p_type));
f7a99963
NC
5367
5368 if (is_32bit_elf)
5369 {
5370 printf ("0x%6.6lx ", (unsigned long) segment->p_offset);
5371 printf ("0x%8.8lx ", (unsigned long) segment->p_vaddr);
5372 printf ("0x%8.8lx ", (unsigned long) segment->p_paddr);
5373 printf ("0x%5.5lx ", (unsigned long) segment->p_filesz);
5374 printf ("0x%5.5lx ", (unsigned long) segment->p_memsz);
5375 printf ("%c%c%c ",
5376 (segment->p_flags & PF_R ? 'R' : ' '),
5377 (segment->p_flags & PF_W ? 'W' : ' '),
5378 (segment->p_flags & PF_X ? 'E' : ' '));
5379 printf ("%#lx", (unsigned long) segment->p_align);
5380 }
d974e256
JJ
5381 else if (do_wide)
5382 {
5383 if ((unsigned long) segment->p_offset == segment->p_offset)
5384 printf ("0x%6.6lx ", (unsigned long) segment->p_offset);
5385 else
5386 {
5387 print_vma (segment->p_offset, FULL_HEX);
5388 putchar (' ');
5389 }
5390
5391 print_vma (segment->p_vaddr, FULL_HEX);
5392 putchar (' ');
5393 print_vma (segment->p_paddr, FULL_HEX);
5394 putchar (' ');
5395
5396 if ((unsigned long) segment->p_filesz == segment->p_filesz)
5397 printf ("0x%6.6lx ", (unsigned long) segment->p_filesz);
5398 else
5399 {
5400 print_vma (segment->p_filesz, FULL_HEX);
5401 putchar (' ');
5402 }
5403
5404 if ((unsigned long) segment->p_memsz == segment->p_memsz)
5405 printf ("0x%6.6lx", (unsigned long) segment->p_memsz);
5406 else
5407 {
f48e6c45 5408 print_vma (segment->p_memsz, FULL_HEX);
d974e256
JJ
5409 }
5410
5411 printf (" %c%c%c ",
5412 (segment->p_flags & PF_R ? 'R' : ' '),
5413 (segment->p_flags & PF_W ? 'W' : ' '),
5414 (segment->p_flags & PF_X ? 'E' : ' '));
5415
5416 if ((unsigned long) segment->p_align == segment->p_align)
5417 printf ("%#lx", (unsigned long) segment->p_align);
5418 else
5419 {
5420 print_vma (segment->p_align, PREFIX_HEX);
5421 }
5422 }
f7a99963
NC
5423 else
5424 {
5425 print_vma (segment->p_offset, FULL_HEX);
5426 putchar (' ');
5427 print_vma (segment->p_vaddr, FULL_HEX);
5428 putchar (' ');
5429 print_vma (segment->p_paddr, FULL_HEX);
5430 printf ("\n ");
5431 print_vma (segment->p_filesz, FULL_HEX);
5432 putchar (' ');
5433 print_vma (segment->p_memsz, FULL_HEX);
5434 printf (" %c%c%c ",
5435 (segment->p_flags & PF_R ? 'R' : ' '),
5436 (segment->p_flags & PF_W ? 'W' : ' '),
5437 (segment->p_flags & PF_X ? 'E' : ' '));
1d262527 5438 print_vma (segment->p_align, PREFIX_HEX);
f7a99963 5439 }
252b5132 5440
1a9ccd70
NC
5441 putc ('\n', stdout);
5442 }
f54498b4 5443
252b5132
RH
5444 switch (segment->p_type)
5445 {
1a9ccd70 5446 case PT_LOAD:
502d895c
NC
5447#if 0 /* Do not warn about out of order PT_LOAD segments. Although officially
5448 required by the ELF standard, several programs, including the Linux
5449 kernel, make use of non-ordered segments. */
1a9ccd70
NC
5450 if (previous_load
5451 && previous_load->p_vaddr > segment->p_vaddr)
5452 error (_("LOAD segments must be sorted in order of increasing VirtAddr\n"));
502d895c 5453#endif
1a9ccd70
NC
5454 if (segment->p_memsz < segment->p_filesz)
5455 error (_("the segment's file size is larger than its memory size\n"));
5456 previous_load = segment;
5457 break;
5458
5459 case PT_PHDR:
5460 /* PR 20815 - Verify that the program header is loaded into memory. */
5461 if (i > 0 && previous_load != NULL)
5462 error (_("the PHDR segment must occur before any LOAD segment\n"));
dda8d76d 5463 if (filedata->file_header.e_machine != EM_PARISC)
1a9ccd70
NC
5464 {
5465 unsigned int j;
5466
dda8d76d 5467 for (j = 1; j < filedata->file_header.e_phnum; j++)
c0c121b0
AM
5468 {
5469 Elf_Internal_Phdr *load = filedata->program_headers + j;
5470 if (load->p_type == PT_LOAD
5471 && load->p_offset <= segment->p_offset
5472 && (load->p_offset + load->p_filesz
5473 >= segment->p_offset + segment->p_filesz)
5474 && load->p_vaddr <= segment->p_vaddr
5475 && (load->p_vaddr + load->p_filesz
5476 >= segment->p_vaddr + segment->p_filesz))
5477 break;
5478 }
dda8d76d 5479 if (j == filedata->file_header.e_phnum)
1a9ccd70
NC
5480 error (_("the PHDR segment is not covered by a LOAD segment\n"));
5481 }
5482 break;
5483
252b5132 5484 case PT_DYNAMIC:
978c4450 5485 if (filedata->dynamic_addr)
252b5132
RH
5486 error (_("more than one dynamic segment\n"));
5487
20737c13
AM
5488 /* By default, assume that the .dynamic section is the first
5489 section in the DYNAMIC segment. */
978c4450
AM
5490 filedata->dynamic_addr = segment->p_offset;
5491 filedata->dynamic_size = segment->p_filesz;
20737c13 5492
b2d38a17
NC
5493 /* Try to locate the .dynamic section. If there is
5494 a section header table, we can easily locate it. */
dda8d76d 5495 if (filedata->section_headers != NULL)
b2d38a17 5496 {
2cf0635d 5497 Elf_Internal_Shdr * sec;
b2d38a17 5498
dda8d76d 5499 sec = find_section (filedata, ".dynamic");
89fac5e3 5500 if (sec == NULL || sec->sh_size == 0)
b2d38a17 5501 {
28f997cf
TG
5502 /* A corresponding .dynamic section is expected, but on
5503 IA-64/OpenVMS it is OK for it to be missing. */
dda8d76d 5504 if (!is_ia64_vms (filedata))
28f997cf 5505 error (_("no .dynamic section in the dynamic segment\n"));
b2d38a17
NC
5506 break;
5507 }
5508
42bb2e33 5509 if (sec->sh_type == SHT_NOBITS)
20737c13 5510 {
978c4450 5511 filedata->dynamic_size = 0;
20737c13
AM
5512 break;
5513 }
42bb2e33 5514
978c4450
AM
5515 filedata->dynamic_addr = sec->sh_offset;
5516 filedata->dynamic_size = sec->sh_size;
b2d38a17 5517
8ac10c5b
L
5518 /* The PT_DYNAMIC segment, which is used by the run-time
5519 loader, should exactly match the .dynamic section. */
5520 if (do_checks
5521 && (filedata->dynamic_addr != segment->p_offset
5522 || filedata->dynamic_size != segment->p_filesz))
5523 warn (_("\
5524the .dynamic section is not the same as the dynamic segment\n"));
b2d38a17 5525 }
39e224f6
MW
5526
5527 /* PR binutils/17512: Avoid corrupt dynamic section info in the
5528 segment. Check this after matching against the section headers
5529 so we don't warn on debuginfo file (which have NOBITS .dynamic
5530 sections). */
978c4450
AM
5531 if (filedata->dynamic_addr > filedata->file_size
5532 || (filedata->dynamic_size
5533 > filedata->file_size - filedata->dynamic_addr))
39e224f6
MW
5534 {
5535 error (_("the dynamic segment offset + size exceeds the size of the file\n"));
978c4450 5536 filedata->dynamic_addr = filedata->dynamic_size = 0;
39e224f6 5537 }
252b5132
RH
5538 break;
5539
5540 case PT_INTERP:
978c4450
AM
5541 if (fseek (filedata->handle,
5542 filedata->archive_file_offset + (long) segment->p_offset,
fb52b2f4 5543 SEEK_SET))
252b5132
RH
5544 error (_("Unable to find program interpreter name\n"));
5545 else
5546 {
f8eae8b2 5547 char fmt [32];
9495b2e6 5548 int ret = snprintf (fmt, sizeof (fmt), "%%%ds", PATH_MAX - 1);
f8eae8b2
L
5549
5550 if (ret >= (int) sizeof (fmt) || ret < 0)
591a748a 5551 error (_("Internal error: failed to create format string to display program interpreter\n"));
f8eae8b2 5552
978c4450
AM
5553 filedata->program_interpreter[0] = 0;
5554 if (fscanf (filedata->handle, fmt,
5555 filedata->program_interpreter) <= 0)
7bd7b3ef 5556 error (_("Unable to read program interpreter name\n"));
252b5132
RH
5557
5558 if (do_segments)
f54498b4 5559 printf (_(" [Requesting program interpreter: %s]\n"),
978c4450 5560 filedata->program_interpreter);
252b5132
RH
5561 }
5562 break;
5563 }
252b5132
RH
5564 }
5565
dda8d76d
NC
5566 if (do_segments
5567 && filedata->section_headers != NULL
5568 && filedata->string_table != NULL)
252b5132
RH
5569 {
5570 printf (_("\n Section to Segment mapping:\n"));
5571 printf (_(" Segment Sections...\n"));
5572
dda8d76d 5573 for (i = 0; i < filedata->file_header.e_phnum; i++)
252b5132 5574 {
9ad5cbcf 5575 unsigned int j;
2cf0635d 5576 Elf_Internal_Shdr * section;
252b5132 5577
dda8d76d
NC
5578 segment = filedata->program_headers + i;
5579 section = filedata->section_headers + 1;
252b5132
RH
5580
5581 printf (" %2.2d ", i);
5582
dda8d76d 5583 for (j = 1; j < filedata->file_header.e_shnum; j++, section++)
252b5132 5584 {
f4638467
AM
5585 if (!ELF_TBSS_SPECIAL (section, segment)
5586 && ELF_SECTION_IN_SEGMENT_STRICT (section, segment))
dda8d76d 5587 printf ("%s ", printable_section_name (filedata, section));
252b5132
RH
5588 }
5589
5590 putc ('\n',stdout);
5591 }
5592 }
5593
015dc7e1 5594 return true;
252b5132
RH
5595}
5596
5597
d93f0186
NC
5598/* Find the file offset corresponding to VMA by using the program headers. */
5599
5600static long
dda8d76d 5601offset_from_vma (Filedata * filedata, bfd_vma vma, bfd_size_type size)
d93f0186 5602{
2cf0635d 5603 Elf_Internal_Phdr * seg;
d93f0186 5604
dda8d76d 5605 if (! get_program_headers (filedata))
d93f0186
NC
5606 {
5607 warn (_("Cannot interpret virtual addresses without program headers.\n"));
5608 return (long) vma;
5609 }
5610
dda8d76d
NC
5611 for (seg = filedata->program_headers;
5612 seg < filedata->program_headers + filedata->file_header.e_phnum;
d93f0186
NC
5613 ++seg)
5614 {
5615 if (seg->p_type != PT_LOAD)
5616 continue;
5617
5618 if (vma >= (seg->p_vaddr & -seg->p_align)
5619 && vma + size <= seg->p_vaddr + seg->p_filesz)
5620 return vma - seg->p_vaddr + seg->p_offset;
5621 }
5622
5623 warn (_("Virtual address 0x%lx not located in any PT_LOAD segment.\n"),
0af1713e 5624 (unsigned long) vma);
d93f0186
NC
5625 return (long) vma;
5626}
5627
5628
dda8d76d
NC
5629/* Allocate memory and load the sections headers into FILEDATA->filedata->section_headers.
5630 If PROBE is true, this is just a probe and we do not generate any error
5631 messages if the load fails. */
049b0c3a 5632
015dc7e1
AM
5633static bool
5634get_32bit_section_headers (Filedata * filedata, bool probe)
252b5132 5635{
2cf0635d
NC
5636 Elf32_External_Shdr * shdrs;
5637 Elf_Internal_Shdr * internal;
dda8d76d
NC
5638 unsigned int i;
5639 unsigned int size = filedata->file_header.e_shentsize;
5640 unsigned int num = probe ? 1 : filedata->file_header.e_shnum;
049b0c3a
NC
5641
5642 /* PR binutils/17531: Cope with unexpected section header sizes. */
5643 if (size == 0 || num == 0)
015dc7e1 5644 return false;
049b0c3a
NC
5645 if (size < sizeof * shdrs)
5646 {
5647 if (! probe)
5648 error (_("The e_shentsize field in the ELF header is less than the size of an ELF section header\n"));
015dc7e1 5649 return false;
049b0c3a
NC
5650 }
5651 if (!probe && size > sizeof * shdrs)
5652 warn (_("The e_shentsize field in the ELF header is larger than the size of an ELF section header\n"));
252b5132 5653
dda8d76d 5654 shdrs = (Elf32_External_Shdr *) get_data (NULL, filedata, filedata->file_header.e_shoff,
049b0c3a
NC
5655 size, num,
5656 probe ? NULL : _("section headers"));
5657 if (shdrs == NULL)
015dc7e1 5658 return false;
252b5132 5659
dda8d76d
NC
5660 free (filedata->section_headers);
5661 filedata->section_headers = (Elf_Internal_Shdr *)
5662 cmalloc (num, sizeof (Elf_Internal_Shdr));
5663 if (filedata->section_headers == NULL)
252b5132 5664 {
049b0c3a 5665 if (!probe)
8b73c356 5666 error (_("Out of memory reading %u section headers\n"), num);
e3d39609 5667 free (shdrs);
015dc7e1 5668 return false;
252b5132
RH
5669 }
5670
dda8d76d 5671 for (i = 0, internal = filedata->section_headers;
560f3c1c 5672 i < num;
b34976b6 5673 i++, internal++)
252b5132
RH
5674 {
5675 internal->sh_name = BYTE_GET (shdrs[i].sh_name);
5676 internal->sh_type = BYTE_GET (shdrs[i].sh_type);
5677 internal->sh_flags = BYTE_GET (shdrs[i].sh_flags);
5678 internal->sh_addr = BYTE_GET (shdrs[i].sh_addr);
5679 internal->sh_offset = BYTE_GET (shdrs[i].sh_offset);
5680 internal->sh_size = BYTE_GET (shdrs[i].sh_size);
5681 internal->sh_link = BYTE_GET (shdrs[i].sh_link);
5682 internal->sh_info = BYTE_GET (shdrs[i].sh_info);
5683 internal->sh_addralign = BYTE_GET (shdrs[i].sh_addralign);
5684 internal->sh_entsize = BYTE_GET (shdrs[i].sh_entsize);
315350be
NC
5685 if (!probe && internal->sh_link > num)
5686 warn (_("Section %u has an out of range sh_link value of %u\n"), i, internal->sh_link);
5687 if (!probe && internal->sh_flags & SHF_INFO_LINK && internal->sh_info > num)
5688 warn (_("Section %u has an out of range sh_info value of %u\n"), i, internal->sh_info);
252b5132
RH
5689 }
5690
5691 free (shdrs);
015dc7e1 5692 return true;
252b5132
RH
5693}
5694
dda8d76d
NC
5695/* Like get_32bit_section_headers, except that it fetches 64-bit headers. */
5696
015dc7e1
AM
5697static bool
5698get_64bit_section_headers (Filedata * filedata, bool probe)
9ea033b2 5699{
dda8d76d
NC
5700 Elf64_External_Shdr * shdrs;
5701 Elf_Internal_Shdr * internal;
5702 unsigned int i;
5703 unsigned int size = filedata->file_header.e_shentsize;
5704 unsigned int num = probe ? 1 : filedata->file_header.e_shnum;
049b0c3a
NC
5705
5706 /* PR binutils/17531: Cope with unexpected section header sizes. */
5707 if (size == 0 || num == 0)
015dc7e1 5708 return false;
dda8d76d 5709
049b0c3a
NC
5710 if (size < sizeof * shdrs)
5711 {
5712 if (! probe)
5713 error (_("The e_shentsize field in the ELF header is less than the size of an ELF section header\n"));
015dc7e1 5714 return false;
049b0c3a 5715 }
dda8d76d 5716
049b0c3a
NC
5717 if (! probe && size > sizeof * shdrs)
5718 warn (_("The e_shentsize field in the ELF header is larger than the size of an ELF section header\n"));
9ea033b2 5719
dda8d76d
NC
5720 shdrs = (Elf64_External_Shdr *) get_data (NULL, filedata,
5721 filedata->file_header.e_shoff,
049b0c3a
NC
5722 size, num,
5723 probe ? NULL : _("section headers"));
5724 if (shdrs == NULL)
015dc7e1 5725 return false;
9ea033b2 5726
dda8d76d
NC
5727 free (filedata->section_headers);
5728 filedata->section_headers = (Elf_Internal_Shdr *)
5729 cmalloc (num, sizeof (Elf_Internal_Shdr));
5730 if (filedata->section_headers == NULL)
9ea033b2 5731 {
049b0c3a 5732 if (! probe)
8b73c356 5733 error (_("Out of memory reading %u section headers\n"), num);
e3d39609 5734 free (shdrs);
015dc7e1 5735 return false;
9ea033b2
NC
5736 }
5737
dda8d76d 5738 for (i = 0, internal = filedata->section_headers;
560f3c1c 5739 i < num;
b34976b6 5740 i++, internal++)
9ea033b2
NC
5741 {
5742 internal->sh_name = BYTE_GET (shdrs[i].sh_name);
5743 internal->sh_type = BYTE_GET (shdrs[i].sh_type);
66543521
AM
5744 internal->sh_flags = BYTE_GET (shdrs[i].sh_flags);
5745 internal->sh_addr = BYTE_GET (shdrs[i].sh_addr);
5746 internal->sh_size = BYTE_GET (shdrs[i].sh_size);
5747 internal->sh_entsize = BYTE_GET (shdrs[i].sh_entsize);
9ea033b2
NC
5748 internal->sh_link = BYTE_GET (shdrs[i].sh_link);
5749 internal->sh_info = BYTE_GET (shdrs[i].sh_info);
5750 internal->sh_offset = BYTE_GET (shdrs[i].sh_offset);
5751 internal->sh_addralign = BYTE_GET (shdrs[i].sh_addralign);
315350be
NC
5752 if (!probe && internal->sh_link > num)
5753 warn (_("Section %u has an out of range sh_link value of %u\n"), i, internal->sh_link);
5754 if (!probe && internal->sh_flags & SHF_INFO_LINK && internal->sh_info > num)
5755 warn (_("Section %u has an out of range sh_info value of %u\n"), i, internal->sh_info);
9ea033b2
NC
5756 }
5757
5758 free (shdrs);
015dc7e1 5759 return true;
9ea033b2
NC
5760}
5761
252b5132 5762static Elf_Internal_Sym *
dda8d76d
NC
5763get_32bit_elf_symbols (Filedata * filedata,
5764 Elf_Internal_Shdr * section,
5765 unsigned long * num_syms_return)
252b5132 5766{
ba5cdace 5767 unsigned long number = 0;
dd24e3da 5768 Elf32_External_Sym * esyms = NULL;
ba5cdace 5769 Elf_External_Sym_Shndx * shndx = NULL;
dd24e3da 5770 Elf_Internal_Sym * isyms = NULL;
2cf0635d 5771 Elf_Internal_Sym * psym;
b34976b6 5772 unsigned int j;
e3d39609 5773 elf_section_list * entry;
252b5132 5774
c9c1d674
EG
5775 if (section->sh_size == 0)
5776 {
5777 if (num_syms_return != NULL)
5778 * num_syms_return = 0;
5779 return NULL;
5780 }
5781
dd24e3da 5782 /* Run some sanity checks first. */
c9c1d674 5783 if (section->sh_entsize == 0 || section->sh_entsize > section->sh_size)
dd24e3da 5784 {
c9c1d674 5785 error (_("Section %s has an invalid sh_entsize of 0x%lx\n"),
dda8d76d
NC
5786 printable_section_name (filedata, section),
5787 (unsigned long) section->sh_entsize);
ba5cdace 5788 goto exit_point;
dd24e3da
NC
5789 }
5790
dda8d76d 5791 if (section->sh_size > filedata->file_size)
f54498b4
NC
5792 {
5793 error (_("Section %s has an invalid sh_size of 0x%lx\n"),
dda8d76d
NC
5794 printable_section_name (filedata, section),
5795 (unsigned long) section->sh_size);
f54498b4
NC
5796 goto exit_point;
5797 }
5798
dd24e3da
NC
5799 number = section->sh_size / section->sh_entsize;
5800
5801 if (number * sizeof (Elf32_External_Sym) > section->sh_size + 1)
5802 {
c9c1d674 5803 error (_("Size (0x%lx) of section %s is not a multiple of its sh_entsize (0x%lx)\n"),
8066deb1 5804 (unsigned long) section->sh_size,
dda8d76d 5805 printable_section_name (filedata, section),
8066deb1 5806 (unsigned long) section->sh_entsize);
ba5cdace 5807 goto exit_point;
dd24e3da
NC
5808 }
5809
dda8d76d 5810 esyms = (Elf32_External_Sym *) get_data (NULL, filedata, section->sh_offset, 1,
3f5e193b 5811 section->sh_size, _("symbols"));
dd24e3da 5812 if (esyms == NULL)
ba5cdace 5813 goto exit_point;
252b5132 5814
e3d39609 5815 shndx = NULL;
978c4450 5816 for (entry = filedata->symtab_shndx_list; entry != NULL; entry = entry->next)
e3d39609
NC
5817 {
5818 if (entry->hdr->sh_link != (unsigned long) (section - filedata->section_headers))
5819 continue;
5820
5821 if (shndx != NULL)
5822 {
5823 error (_("Multiple symbol table index sections associated with the same symbol section\n"));
5824 free (shndx);
5825 }
5826
5827 shndx = (Elf_External_Sym_Shndx *) get_data (NULL, filedata,
5828 entry->hdr->sh_offset,
5829 1, entry->hdr->sh_size,
5830 _("symbol table section indices"));
5831 if (shndx == NULL)
5832 goto exit_point;
5833
5834 /* PR17531: file: heap-buffer-overflow */
5835 if (entry->hdr->sh_size / sizeof (Elf_External_Sym_Shndx) < number)
5836 {
5837 error (_("Index section %s has an sh_size of 0x%lx - expected 0x%lx\n"),
5838 printable_section_name (filedata, entry->hdr),
5839 (unsigned long) entry->hdr->sh_size,
5840 (unsigned long) section->sh_size);
5841 goto exit_point;
c9c1d674 5842 }
e3d39609 5843 }
9ad5cbcf 5844
3f5e193b 5845 isyms = (Elf_Internal_Sym *) cmalloc (number, sizeof (Elf_Internal_Sym));
252b5132
RH
5846
5847 if (isyms == NULL)
5848 {
8b73c356
NC
5849 error (_("Out of memory reading %lu symbols\n"),
5850 (unsigned long) number);
dd24e3da 5851 goto exit_point;
252b5132
RH
5852 }
5853
dd24e3da 5854 for (j = 0, psym = isyms; j < number; j++, psym++)
252b5132
RH
5855 {
5856 psym->st_name = BYTE_GET (esyms[j].st_name);
5857 psym->st_value = BYTE_GET (esyms[j].st_value);
5858 psym->st_size = BYTE_GET (esyms[j].st_size);
5859 psym->st_shndx = BYTE_GET (esyms[j].st_shndx);
4fbb74a6 5860 if (psym->st_shndx == (SHN_XINDEX & 0xffff) && shndx != NULL)
9ad5cbcf
AM
5861 psym->st_shndx
5862 = byte_get ((unsigned char *) &shndx[j], sizeof (shndx[j]));
4fbb74a6
AM
5863 else if (psym->st_shndx >= (SHN_LORESERVE & 0xffff))
5864 psym->st_shndx += SHN_LORESERVE - (SHN_LORESERVE & 0xffff);
252b5132
RH
5865 psym->st_info = BYTE_GET (esyms[j].st_info);
5866 psym->st_other = BYTE_GET (esyms[j].st_other);
5867 }
5868
dd24e3da 5869 exit_point:
e3d39609
NC
5870 free (shndx);
5871 free (esyms);
252b5132 5872
ba5cdace
NC
5873 if (num_syms_return != NULL)
5874 * num_syms_return = isyms == NULL ? 0 : number;
5875
252b5132
RH
5876 return isyms;
5877}
5878
9ea033b2 5879static Elf_Internal_Sym *
dda8d76d
NC
5880get_64bit_elf_symbols (Filedata * filedata,
5881 Elf_Internal_Shdr * section,
5882 unsigned long * num_syms_return)
9ea033b2 5883{
ba5cdace
NC
5884 unsigned long number = 0;
5885 Elf64_External_Sym * esyms = NULL;
5886 Elf_External_Sym_Shndx * shndx = NULL;
5887 Elf_Internal_Sym * isyms = NULL;
2cf0635d 5888 Elf_Internal_Sym * psym;
b34976b6 5889 unsigned int j;
e3d39609 5890 elf_section_list * entry;
9ea033b2 5891
c9c1d674
EG
5892 if (section->sh_size == 0)
5893 {
5894 if (num_syms_return != NULL)
5895 * num_syms_return = 0;
5896 return NULL;
5897 }
5898
dd24e3da 5899 /* Run some sanity checks first. */
c9c1d674 5900 if (section->sh_entsize == 0 || section->sh_entsize > section->sh_size)
dd24e3da 5901 {
c9c1d674 5902 error (_("Section %s has an invalid sh_entsize of 0x%lx\n"),
dda8d76d 5903 printable_section_name (filedata, section),
8066deb1 5904 (unsigned long) section->sh_entsize);
ba5cdace 5905 goto exit_point;
dd24e3da
NC
5906 }
5907
dda8d76d 5908 if (section->sh_size > filedata->file_size)
f54498b4
NC
5909 {
5910 error (_("Section %s has an invalid sh_size of 0x%lx\n"),
dda8d76d 5911 printable_section_name (filedata, section),
8066deb1 5912 (unsigned long) section->sh_size);
f54498b4
NC
5913 goto exit_point;
5914 }
5915
dd24e3da
NC
5916 number = section->sh_size / section->sh_entsize;
5917
5918 if (number * sizeof (Elf64_External_Sym) > section->sh_size + 1)
5919 {
c9c1d674 5920 error (_("Size (0x%lx) of section %s is not a multiple of its sh_entsize (0x%lx)\n"),
8066deb1 5921 (unsigned long) section->sh_size,
dda8d76d 5922 printable_section_name (filedata, section),
8066deb1 5923 (unsigned long) section->sh_entsize);
ba5cdace 5924 goto exit_point;
dd24e3da
NC
5925 }
5926
dda8d76d 5927 esyms = (Elf64_External_Sym *) get_data (NULL, filedata, section->sh_offset, 1,
3f5e193b 5928 section->sh_size, _("symbols"));
a6e9f9df 5929 if (!esyms)
ba5cdace 5930 goto exit_point;
9ea033b2 5931
e3d39609 5932 shndx = NULL;
978c4450 5933 for (entry = filedata->symtab_shndx_list; entry != NULL; entry = entry->next)
e3d39609
NC
5934 {
5935 if (entry->hdr->sh_link != (unsigned long) (section - filedata->section_headers))
5936 continue;
5937
5938 if (shndx != NULL)
5939 {
5940 error (_("Multiple symbol table index sections associated with the same symbol section\n"));
5941 free (shndx);
c9c1d674 5942 }
e3d39609
NC
5943
5944 shndx = (Elf_External_Sym_Shndx *) get_data (NULL, filedata,
5945 entry->hdr->sh_offset,
5946 1, entry->hdr->sh_size,
5947 _("symbol table section indices"));
5948 if (shndx == NULL)
5949 goto exit_point;
5950
5951 /* PR17531: file: heap-buffer-overflow */
5952 if (entry->hdr->sh_size / sizeof (Elf_External_Sym_Shndx) < number)
5953 {
5954 error (_("Index section %s has an sh_size of 0x%lx - expected 0x%lx\n"),
5955 printable_section_name (filedata, entry->hdr),
5956 (unsigned long) entry->hdr->sh_size,
5957 (unsigned long) section->sh_size);
5958 goto exit_point;
5959 }
5960 }
9ad5cbcf 5961
3f5e193b 5962 isyms = (Elf_Internal_Sym *) cmalloc (number, sizeof (Elf_Internal_Sym));
9ea033b2
NC
5963
5964 if (isyms == NULL)
5965 {
8b73c356
NC
5966 error (_("Out of memory reading %lu symbols\n"),
5967 (unsigned long) number);
ba5cdace 5968 goto exit_point;
9ea033b2
NC
5969 }
5970
ba5cdace 5971 for (j = 0, psym = isyms; j < number; j++, psym++)
9ea033b2
NC
5972 {
5973 psym->st_name = BYTE_GET (esyms[j].st_name);
5974 psym->st_info = BYTE_GET (esyms[j].st_info);
5975 psym->st_other = BYTE_GET (esyms[j].st_other);
5976 psym->st_shndx = BYTE_GET (esyms[j].st_shndx);
ba5cdace 5977
4fbb74a6 5978 if (psym->st_shndx == (SHN_XINDEX & 0xffff) && shndx != NULL)
9ad5cbcf
AM
5979 psym->st_shndx
5980 = byte_get ((unsigned char *) &shndx[j], sizeof (shndx[j]));
4fbb74a6
AM
5981 else if (psym->st_shndx >= (SHN_LORESERVE & 0xffff))
5982 psym->st_shndx += SHN_LORESERVE - (SHN_LORESERVE & 0xffff);
ba5cdace 5983
66543521
AM
5984 psym->st_value = BYTE_GET (esyms[j].st_value);
5985 psym->st_size = BYTE_GET (esyms[j].st_size);
9ea033b2
NC
5986 }
5987
ba5cdace 5988 exit_point:
e3d39609
NC
5989 free (shndx);
5990 free (esyms);
ba5cdace
NC
5991
5992 if (num_syms_return != NULL)
5993 * num_syms_return = isyms == NULL ? 0 : number;
9ea033b2
NC
5994
5995 return isyms;
5996}
5997
d1133906 5998static const char *
dda8d76d 5999get_elf_section_flags (Filedata * filedata, bfd_vma sh_flags)
d1133906 6000{
5477e8a0 6001 static char buff[1024];
2cf0635d 6002 char * p = buff;
32ec8896
NC
6003 unsigned int field_size = is_32bit_elf ? 8 : 16;
6004 signed int sindex;
6005 unsigned int size = sizeof (buff) - (field_size + 4 + 1);
8d5ff12c
L
6006 bfd_vma os_flags = 0;
6007 bfd_vma proc_flags = 0;
6008 bfd_vma unknown_flags = 0;
148b93f2 6009 static const struct
5477e8a0 6010 {
2cf0635d 6011 const char * str;
32ec8896 6012 unsigned int len;
5477e8a0
L
6013 }
6014 flags [] =
6015 {
cfcac11d
NC
6016 /* 0 */ { STRING_COMMA_LEN ("WRITE") },
6017 /* 1 */ { STRING_COMMA_LEN ("ALLOC") },
6018 /* 2 */ { STRING_COMMA_LEN ("EXEC") },
6019 /* 3 */ { STRING_COMMA_LEN ("MERGE") },
6020 /* 4 */ { STRING_COMMA_LEN ("STRINGS") },
6021 /* 5 */ { STRING_COMMA_LEN ("INFO LINK") },
6022 /* 6 */ { STRING_COMMA_LEN ("LINK ORDER") },
6023 /* 7 */ { STRING_COMMA_LEN ("OS NONCONF") },
6024 /* 8 */ { STRING_COMMA_LEN ("GROUP") },
6025 /* 9 */ { STRING_COMMA_LEN ("TLS") },
6026 /* IA-64 specific. */
6027 /* 10 */ { STRING_COMMA_LEN ("SHORT") },
6028 /* 11 */ { STRING_COMMA_LEN ("NORECOV") },
6029 /* IA-64 OpenVMS specific. */
6030 /* 12 */ { STRING_COMMA_LEN ("VMS_GLOBAL") },
6031 /* 13 */ { STRING_COMMA_LEN ("VMS_OVERLAID") },
6032 /* 14 */ { STRING_COMMA_LEN ("VMS_SHARED") },
6033 /* 15 */ { STRING_COMMA_LEN ("VMS_VECTOR") },
6034 /* 16 */ { STRING_COMMA_LEN ("VMS_ALLOC_64BIT") },
6035 /* 17 */ { STRING_COMMA_LEN ("VMS_PROTECTED") },
18ae9cc1 6036 /* Generic. */
cfcac11d 6037 /* 18 */ { STRING_COMMA_LEN ("EXCLUDE") },
18ae9cc1 6038 /* SPARC specific. */
77115a4a 6039 /* 19 */ { STRING_COMMA_LEN ("ORDERED") },
ac4c9b04
MG
6040 /* 20 */ { STRING_COMMA_LEN ("COMPRESSED") },
6041 /* ARM specific. */
6042 /* 21 */ { STRING_COMMA_LEN ("ENTRYSECT") },
f0728ee3 6043 /* 22 */ { STRING_COMMA_LEN ("ARM_PURECODE") },
a91e1603
L
6044 /* 23 */ { STRING_COMMA_LEN ("COMDEF") },
6045 /* GNU specific. */
6046 /* 24 */ { STRING_COMMA_LEN ("GNU_MBIND") },
83eef883
AFB
6047 /* VLE specific. */
6048 /* 25 */ { STRING_COMMA_LEN ("VLE") },
99fabbc9
JL
6049 /* GNU specific. */
6050 /* 26 */ { STRING_COMMA_LEN ("GNU_RETAIN") },
5477e8a0
L
6051 };
6052
6053 if (do_section_details)
6054 {
8d5ff12c
L
6055 sprintf (buff, "[%*.*lx]: ",
6056 field_size, field_size, (unsigned long) sh_flags);
6057 p += field_size + 4;
5477e8a0 6058 }
76da6bbe 6059
d1133906
NC
6060 while (sh_flags)
6061 {
6062 bfd_vma flag;
6063
6064 flag = sh_flags & - sh_flags;
6065 sh_flags &= ~ flag;
76da6bbe 6066
5477e8a0 6067 if (do_section_details)
d1133906 6068 {
5477e8a0
L
6069 switch (flag)
6070 {
91d6fa6a
NC
6071 case SHF_WRITE: sindex = 0; break;
6072 case SHF_ALLOC: sindex = 1; break;
6073 case SHF_EXECINSTR: sindex = 2; break;
6074 case SHF_MERGE: sindex = 3; break;
6075 case SHF_STRINGS: sindex = 4; break;
6076 case SHF_INFO_LINK: sindex = 5; break;
6077 case SHF_LINK_ORDER: sindex = 6; break;
6078 case SHF_OS_NONCONFORMING: sindex = 7; break;
6079 case SHF_GROUP: sindex = 8; break;
6080 case SHF_TLS: sindex = 9; break;
18ae9cc1 6081 case SHF_EXCLUDE: sindex = 18; break;
77115a4a 6082 case SHF_COMPRESSED: sindex = 20; break;
76da6bbe 6083
5477e8a0 6084 default:
91d6fa6a 6085 sindex = -1;
dda8d76d 6086 switch (filedata->file_header.e_machine)
148b93f2 6087 {
cfcac11d 6088 case EM_IA_64:
148b93f2 6089 if (flag == SHF_IA_64_SHORT)
91d6fa6a 6090 sindex = 10;
148b93f2 6091 else if (flag == SHF_IA_64_NORECOV)
91d6fa6a 6092 sindex = 11;
148b93f2 6093#ifdef BFD64
dda8d76d 6094 else if (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_OPENVMS)
148b93f2
NC
6095 switch (flag)
6096 {
91d6fa6a
NC
6097 case SHF_IA_64_VMS_GLOBAL: sindex = 12; break;
6098 case SHF_IA_64_VMS_OVERLAID: sindex = 13; break;
6099 case SHF_IA_64_VMS_SHARED: sindex = 14; break;
6100 case SHF_IA_64_VMS_VECTOR: sindex = 15; break;
6101 case SHF_IA_64_VMS_ALLOC_64BIT: sindex = 16; break;
6102 case SHF_IA_64_VMS_PROTECTED: sindex = 17; break;
148b93f2
NC
6103 default: break;
6104 }
6105#endif
cfcac11d
NC
6106 break;
6107
caa83f8b 6108 case EM_386:
22abe556 6109 case EM_IAMCU:
caa83f8b 6110 case EM_X86_64:
7f502d6c 6111 case EM_L1OM:
7a9068fe 6112 case EM_K1OM:
cfcac11d
NC
6113 case EM_OLD_SPARCV9:
6114 case EM_SPARC32PLUS:
6115 case EM_SPARCV9:
6116 case EM_SPARC:
18ae9cc1 6117 if (flag == SHF_ORDERED)
91d6fa6a 6118 sindex = 19;
cfcac11d 6119 break;
ac4c9b04
MG
6120
6121 case EM_ARM:
6122 switch (flag)
6123 {
6124 case SHF_ENTRYSECT: sindex = 21; break;
f0728ee3 6125 case SHF_ARM_PURECODE: sindex = 22; break;
ac4c9b04
MG
6126 case SHF_COMDEF: sindex = 23; break;
6127 default: break;
6128 }
6129 break;
83eef883
AFB
6130 case EM_PPC:
6131 if (flag == SHF_PPC_VLE)
6132 sindex = 25;
6133 break;
99fabbc9
JL
6134 default:
6135 break;
6136 }
ac4c9b04 6137
99fabbc9
JL
6138 switch (filedata->file_header.e_ident[EI_OSABI])
6139 {
6140 case ELFOSABI_GNU:
6141 case ELFOSABI_FREEBSD:
6142 if (flag == SHF_GNU_RETAIN)
6143 sindex = 26;
6144 /* Fall through */
6145 case ELFOSABI_NONE:
6146 if (flag == SHF_GNU_MBIND)
6147 /* We should not recognize SHF_GNU_MBIND for
6148 ELFOSABI_NONE, but binutils as of 2019-07-23 did
6149 not set the EI_OSABI header byte. */
6150 sindex = 24;
6151 break;
cfcac11d
NC
6152 default:
6153 break;
148b93f2 6154 }
99fabbc9 6155 break;
5477e8a0
L
6156 }
6157
91d6fa6a 6158 if (sindex != -1)
5477e8a0 6159 {
8d5ff12c
L
6160 if (p != buff + field_size + 4)
6161 {
6162 if (size < (10 + 2))
bee0ee85
NC
6163 {
6164 warn (_("Internal error: not enough buffer room for section flag info"));
6165 return _("<unknown>");
6166 }
8d5ff12c
L
6167 size -= 2;
6168 *p++ = ',';
6169 *p++ = ' ';
6170 }
6171
91d6fa6a
NC
6172 size -= flags [sindex].len;
6173 p = stpcpy (p, flags [sindex].str);
5477e8a0 6174 }
3b22753a 6175 else if (flag & SHF_MASKOS)
8d5ff12c 6176 os_flags |= flag;
d1133906 6177 else if (flag & SHF_MASKPROC)
8d5ff12c 6178 proc_flags |= flag;
d1133906 6179 else
8d5ff12c 6180 unknown_flags |= flag;
5477e8a0
L
6181 }
6182 else
6183 {
6184 switch (flag)
6185 {
6186 case SHF_WRITE: *p = 'W'; break;
6187 case SHF_ALLOC: *p = 'A'; break;
6188 case SHF_EXECINSTR: *p = 'X'; break;
6189 case SHF_MERGE: *p = 'M'; break;
6190 case SHF_STRINGS: *p = 'S'; break;
6191 case SHF_INFO_LINK: *p = 'I'; break;
6192 case SHF_LINK_ORDER: *p = 'L'; break;
6193 case SHF_OS_NONCONFORMING: *p = 'O'; break;
6194 case SHF_GROUP: *p = 'G'; break;
6195 case SHF_TLS: *p = 'T'; break;
18ae9cc1 6196 case SHF_EXCLUDE: *p = 'E'; break;
77115a4a 6197 case SHF_COMPRESSED: *p = 'C'; break;
5477e8a0
L
6198
6199 default:
dda8d76d
NC
6200 if ((filedata->file_header.e_machine == EM_X86_64
6201 || filedata->file_header.e_machine == EM_L1OM
6202 || filedata->file_header.e_machine == EM_K1OM)
5477e8a0
L
6203 && flag == SHF_X86_64_LARGE)
6204 *p = 'l';
dda8d76d 6205 else if (filedata->file_header.e_machine == EM_ARM
f0728ee3 6206 && flag == SHF_ARM_PURECODE)
99fabbc9 6207 *p = 'y';
dda8d76d 6208 else if (filedata->file_header.e_machine == EM_PPC
83eef883 6209 && flag == SHF_PPC_VLE)
99fabbc9 6210 *p = 'v';
5477e8a0
L
6211 else if (flag & SHF_MASKOS)
6212 {
99fabbc9
JL
6213 switch (filedata->file_header.e_ident[EI_OSABI])
6214 {
6215 case ELFOSABI_GNU:
6216 case ELFOSABI_FREEBSD:
6217 if (flag == SHF_GNU_RETAIN)
6218 {
6219 *p = 'R';
6220 break;
6221 }
6222 /* Fall through */
6223 case ELFOSABI_NONE:
6224 if (flag == SHF_GNU_MBIND)
6225 {
6226 /* We should not recognize SHF_GNU_MBIND for
6227 ELFOSABI_NONE, but binutils as of 2019-07-23 did
6228 not set the EI_OSABI header byte. */
6229 *p = 'D';
6230 break;
6231 }
6232 /* Fall through */
6233 default:
6234 *p = 'o';
6235 sh_flags &= ~SHF_MASKOS;
6236 break;
6237 }
5477e8a0
L
6238 }
6239 else if (flag & SHF_MASKPROC)
6240 {
6241 *p = 'p';
6242 sh_flags &= ~ SHF_MASKPROC;
6243 }
6244 else
6245 *p = 'x';
6246 break;
6247 }
6248 p++;
d1133906
NC
6249 }
6250 }
76da6bbe 6251
8d5ff12c
L
6252 if (do_section_details)
6253 {
6254 if (os_flags)
6255 {
6256 size -= 5 + field_size;
6257 if (p != buff + field_size + 4)
6258 {
6259 if (size < (2 + 1))
bee0ee85
NC
6260 {
6261 warn (_("Internal error: not enough buffer room for section flag info"));
6262 return _("<unknown>");
6263 }
8d5ff12c
L
6264 size -= 2;
6265 *p++ = ',';
6266 *p++ = ' ';
6267 }
6268 sprintf (p, "OS (%*.*lx)", field_size, field_size,
6269 (unsigned long) os_flags);
6270 p += 5 + field_size;
6271 }
6272 if (proc_flags)
6273 {
6274 size -= 7 + field_size;
6275 if (p != buff + field_size + 4)
6276 {
6277 if (size < (2 + 1))
bee0ee85
NC
6278 {
6279 warn (_("Internal error: not enough buffer room for section flag info"));
6280 return _("<unknown>");
6281 }
8d5ff12c
L
6282 size -= 2;
6283 *p++ = ',';
6284 *p++ = ' ';
6285 }
6286 sprintf (p, "PROC (%*.*lx)", field_size, field_size,
6287 (unsigned long) proc_flags);
6288 p += 7 + field_size;
6289 }
6290 if (unknown_flags)
6291 {
6292 size -= 10 + field_size;
6293 if (p != buff + field_size + 4)
6294 {
6295 if (size < (2 + 1))
bee0ee85
NC
6296 {
6297 warn (_("Internal error: not enough buffer room for section flag info"));
6298 return _("<unknown>");
6299 }
8d5ff12c
L
6300 size -= 2;
6301 *p++ = ',';
6302 *p++ = ' ';
6303 }
2b692964 6304 sprintf (p, _("UNKNOWN (%*.*lx)"), field_size, field_size,
8d5ff12c
L
6305 (unsigned long) unknown_flags);
6306 p += 10 + field_size;
6307 }
6308 }
6309
e9e44622 6310 *p = '\0';
d1133906
NC
6311 return buff;
6312}
6313
5844b465 6314static unsigned int ATTRIBUTE_WARN_UNUSED_RESULT
ebdf1ebf 6315get_compression_header (Elf_Internal_Chdr *chdr, unsigned char *buf, bfd_size_type size)
77115a4a
L
6316{
6317 if (is_32bit_elf)
6318 {
6319 Elf32_External_Chdr *echdr = (Elf32_External_Chdr *) buf;
d8024a91 6320
ebdf1ebf
NC
6321 if (size < sizeof (* echdr))
6322 {
6323 error (_("Compressed section is too small even for a compression header\n"));
6324 return 0;
6325 }
6326
77115a4a
L
6327 chdr->ch_type = BYTE_GET (echdr->ch_type);
6328 chdr->ch_size = BYTE_GET (echdr->ch_size);
6329 chdr->ch_addralign = BYTE_GET (echdr->ch_addralign);
6330 return sizeof (*echdr);
6331 }
6332 else
6333 {
6334 Elf64_External_Chdr *echdr = (Elf64_External_Chdr *) buf;
d8024a91 6335
ebdf1ebf
NC
6336 if (size < sizeof (* echdr))
6337 {
6338 error (_("Compressed section is too small even for a compression header\n"));
6339 return 0;
6340 }
6341
77115a4a
L
6342 chdr->ch_type = BYTE_GET (echdr->ch_type);
6343 chdr->ch_size = BYTE_GET (echdr->ch_size);
6344 chdr->ch_addralign = BYTE_GET (echdr->ch_addralign);
6345 return sizeof (*echdr);
6346 }
6347}
6348
015dc7e1 6349static bool
dda8d76d 6350process_section_headers (Filedata * filedata)
252b5132 6351{
2cf0635d 6352 Elf_Internal_Shdr * section;
b34976b6 6353 unsigned int i;
252b5132 6354
8fb879cd 6355 free (filedata->section_headers);
dda8d76d 6356 filedata->section_headers = NULL;
978c4450
AM
6357 free (filedata->dynamic_symbols);
6358 filedata->dynamic_symbols = NULL;
6359 filedata->num_dynamic_syms = 0;
6360 free (filedata->dynamic_strings);
6361 filedata->dynamic_strings = NULL;
6362 filedata->dynamic_strings_length = 0;
6363 free (filedata->dynamic_syminfo);
6364 filedata->dynamic_syminfo = NULL;
6365 while (filedata->symtab_shndx_list != NULL)
8ff66993 6366 {
978c4450
AM
6367 elf_section_list *next = filedata->symtab_shndx_list->next;
6368 free (filedata->symtab_shndx_list);
6369 filedata->symtab_shndx_list = next;
8ff66993 6370 }
252b5132 6371
dda8d76d 6372 if (filedata->file_header.e_shnum == 0)
252b5132 6373 {
82f2dbf7 6374 /* PR binutils/12467. */
dda8d76d 6375 if (filedata->file_header.e_shoff != 0)
32ec8896
NC
6376 {
6377 warn (_("possibly corrupt ELF file header - it has a non-zero"
6378 " section header offset, but no section headers\n"));
015dc7e1 6379 return false;
32ec8896 6380 }
82f2dbf7 6381 else if (do_sections)
252b5132
RH
6382 printf (_("\nThere are no sections in this file.\n"));
6383
015dc7e1 6384 return true;
252b5132
RH
6385 }
6386
6387 if (do_sections && !do_header)
ca0e11aa
NC
6388 {
6389 if (filedata->is_separate && process_links)
6390 printf (_("In linked file '%s': "), filedata->file_name);
6391 if (! filedata->is_separate || process_links)
6392 printf (ngettext ("There is %d section header, "
6393 "starting at offset 0x%lx:\n",
6394 "There are %d section headers, "
6395 "starting at offset 0x%lx:\n",
6396 filedata->file_header.e_shnum),
6397 filedata->file_header.e_shnum,
6398 (unsigned long) filedata->file_header.e_shoff);
6399 }
252b5132 6400
9ea033b2
NC
6401 if (is_32bit_elf)
6402 {
015dc7e1
AM
6403 if (! get_32bit_section_headers (filedata, false))
6404 return false;
32ec8896
NC
6405 }
6406 else
6407 {
015dc7e1
AM
6408 if (! get_64bit_section_headers (filedata, false))
6409 return false;
9ea033b2 6410 }
252b5132
RH
6411
6412 /* Read in the string table, so that we have names to display. */
dda8d76d
NC
6413 if (filedata->file_header.e_shstrndx != SHN_UNDEF
6414 && filedata->file_header.e_shstrndx < filedata->file_header.e_shnum)
252b5132 6415 {
dda8d76d 6416 section = filedata->section_headers + filedata->file_header.e_shstrndx;
d40ac9bd 6417
c256ffe7
JJ
6418 if (section->sh_size != 0)
6419 {
dda8d76d
NC
6420 filedata->string_table = (char *) get_data (NULL, filedata, section->sh_offset,
6421 1, section->sh_size,
6422 _("string table"));
0de14b54 6423
dda8d76d 6424 filedata->string_table_length = filedata->string_table != NULL ? section->sh_size : 0;
c256ffe7 6425 }
252b5132
RH
6426 }
6427
6428 /* Scan the sections for the dynamic symbol table
e3c8793a 6429 and dynamic string table and debug sections. */
89fac5e3 6430 eh_addr_size = is_32bit_elf ? 4 : 8;
dda8d76d 6431 switch (filedata->file_header.e_machine)
89fac5e3
RS
6432 {
6433 case EM_MIPS:
6434 case EM_MIPS_RS3_LE:
6435 /* The 64-bit MIPS EABI uses a combination of 32-bit ELF and 64-bit
6436 FDE addresses. However, the ABI also has a semi-official ILP32
6437 variant for which the normal FDE address size rules apply.
6438
6439 GCC 4.0 marks EABI64 objects with a dummy .gcc_compiled_longXX
6440 section, where XX is the size of longs in bits. Unfortunately,
6441 earlier compilers provided no way of distinguishing ILP32 objects
6442 from LP64 objects, so if there's any doubt, we should assume that
6443 the official LP64 form is being used. */
dda8d76d
NC
6444 if ((filedata->file_header.e_flags & EF_MIPS_ABI) == E_MIPS_ABI_EABI64
6445 && find_section (filedata, ".gcc_compiled_long32") == NULL)
89fac5e3
RS
6446 eh_addr_size = 8;
6447 break;
0f56a26a
DD
6448
6449 case EM_H8_300:
6450 case EM_H8_300H:
dda8d76d 6451 switch (filedata->file_header.e_flags & EF_H8_MACH)
0f56a26a
DD
6452 {
6453 case E_H8_MACH_H8300:
6454 case E_H8_MACH_H8300HN:
6455 case E_H8_MACH_H8300SN:
6456 case E_H8_MACH_H8300SXN:
6457 eh_addr_size = 2;
6458 break;
6459 case E_H8_MACH_H8300H:
6460 case E_H8_MACH_H8300S:
6461 case E_H8_MACH_H8300SX:
6462 eh_addr_size = 4;
6463 break;
6464 }
f4236fe4
DD
6465 break;
6466
ff7eeb89 6467 case EM_M32C_OLD:
f4236fe4 6468 case EM_M32C:
dda8d76d 6469 switch (filedata->file_header.e_flags & EF_M32C_CPU_MASK)
f4236fe4
DD
6470 {
6471 case EF_M32C_CPU_M16C:
6472 eh_addr_size = 2;
6473 break;
6474 }
6475 break;
89fac5e3
RS
6476 }
6477
76ca31c0
NC
6478#define CHECK_ENTSIZE_VALUES(section, i, size32, size64) \
6479 do \
6480 { \
6481 bfd_size_type expected_entsize = is_32bit_elf ? size32 : size64; \
6482 if (section->sh_entsize != expected_entsize) \
9dd3a467 6483 { \
76ca31c0
NC
6484 char buf[40]; \
6485 sprintf_vma (buf, section->sh_entsize); \
6486 /* Note: coded this way so that there is a single string for \
6487 translation. */ \
6488 error (_("Section %d has invalid sh_entsize of %s\n"), i, buf); \
6489 error (_("(Using the expected size of %u for the rest of this dump)\n"), \
6490 (unsigned) expected_entsize); \
9dd3a467 6491 section->sh_entsize = expected_entsize; \
76ca31c0
NC
6492 } \
6493 } \
08d8fa11 6494 while (0)
9dd3a467
NC
6495
6496#define CHECK_ENTSIZE(section, i, type) \
1b513401 6497 CHECK_ENTSIZE_VALUES (section, i, sizeof (Elf32_External_##type), \
08d8fa11
JJ
6498 sizeof (Elf64_External_##type))
6499
dda8d76d
NC
6500 for (i = 0, section = filedata->section_headers;
6501 i < filedata->file_header.e_shnum;
b34976b6 6502 i++, section++)
252b5132 6503 {
b9e920ec 6504 char * name = SECTION_NAME_PRINT (section);
252b5132 6505
1b513401
NC
6506 /* Run some sanity checks on the headers and
6507 possibly fill in some file data as well. */
6508 switch (section->sh_type)
252b5132 6509 {
1b513401 6510 case SHT_DYNSYM:
978c4450 6511 if (filedata->dynamic_symbols != NULL)
252b5132
RH
6512 {
6513 error (_("File contains multiple dynamic symbol tables\n"));
6514 continue;
6515 }
6516
08d8fa11 6517 CHECK_ENTSIZE (section, i, Sym);
978c4450
AM
6518 filedata->dynamic_symbols
6519 = GET_ELF_SYMBOLS (filedata, section, &filedata->num_dynamic_syms);
8ac10c5b 6520 filedata->dynamic_symtab_section = section;
1b513401
NC
6521 break;
6522
6523 case SHT_STRTAB:
6524 if (streq (name, ".dynstr"))
252b5132 6525 {
1b513401
NC
6526 if (filedata->dynamic_strings != NULL)
6527 {
6528 error (_("File contains multiple dynamic string tables\n"));
6529 continue;
6530 }
6531
6532 filedata->dynamic_strings
6533 = (char *) get_data (NULL, filedata, section->sh_offset,
6534 1, section->sh_size, _("dynamic strings"));
6535 filedata->dynamic_strings_length
6536 = filedata->dynamic_strings == NULL ? 0 : section->sh_size;
8ac10c5b 6537 filedata->dynamic_strtab_section = section;
252b5132 6538 }
1b513401
NC
6539 break;
6540
6541 case SHT_SYMTAB_SHNDX:
6542 {
6543 elf_section_list * entry = xmalloc (sizeof * entry);
6544
6545 entry->hdr = section;
6546 entry->next = filedata->symtab_shndx_list;
6547 filedata->symtab_shndx_list = entry;
6548 }
6549 break;
6550
6551 case SHT_SYMTAB:
6552 CHECK_ENTSIZE (section, i, Sym);
6553 break;
6554
6555 case SHT_GROUP:
6556 CHECK_ENTSIZE_VALUES (section, i, GRP_ENTRY_SIZE, GRP_ENTRY_SIZE);
6557 break;
252b5132 6558
1b513401
NC
6559 case SHT_REL:
6560 CHECK_ENTSIZE (section, i, Rel);
546cb2d8 6561 if (do_checks && section->sh_size == 0)
1b513401
NC
6562 warn (_("Section '%s': zero-sized relocation section\n"), name);
6563 break;
6564
6565 case SHT_RELA:
6566 CHECK_ENTSIZE (section, i, Rela);
546cb2d8 6567 if (do_checks && section->sh_size == 0)
1b513401
NC
6568 warn (_("Section '%s': zero-sized relocation section\n"), name);
6569 break;
6570
6571 case SHT_NOTE:
6572 case SHT_PROGBITS:
546cb2d8
NC
6573 /* Having a zero sized section is not illegal according to the
6574 ELF standard, but it might be an indication that something
6575 is wrong. So issue a warning if we are running in lint mode. */
6576 if (do_checks && section->sh_size == 0)
1b513401
NC
6577 warn (_("Section '%s': has a size of zero - is this intended ?\n"), name);
6578 break;
6579
6580 default:
6581 break;
6582 }
6583
6584 if ((do_debugging || do_debug_info || do_debug_abbrevs
6585 || do_debug_lines || do_debug_pubnames || do_debug_pubtypes
6586 || do_debug_aranges || do_debug_frames || do_debug_macinfo
e38332c2
NC
6587 || do_debug_str || do_debug_str_offsets || do_debug_loc
6588 || do_debug_ranges
1b513401 6589 || do_debug_addr || do_debug_cu_index || do_debug_links)
24d127aa
ML
6590 && (startswith (name, ".debug_")
6591 || startswith (name, ".zdebug_")))
252b5132 6592 {
1b315056
CS
6593 if (name[1] == 'z')
6594 name += sizeof (".zdebug_") - 1;
6595 else
6596 name += sizeof (".debug_") - 1;
252b5132
RH
6597
6598 if (do_debugging
24d127aa
ML
6599 || (do_debug_info && startswith (name, "info"))
6600 || (do_debug_info && startswith (name, "types"))
6601 || (do_debug_abbrevs && startswith (name, "abbrev"))
b40bf0a2 6602 || (do_debug_lines && strcmp (name, "line") == 0)
24d127aa
ML
6603 || (do_debug_lines && startswith (name, "line."))
6604 || (do_debug_pubnames && startswith (name, "pubnames"))
6605 || (do_debug_pubtypes && startswith (name, "pubtypes"))
6606 || (do_debug_pubnames && startswith (name, "gnu_pubnames"))
6607 || (do_debug_pubtypes && startswith (name, "gnu_pubtypes"))
6608 || (do_debug_aranges && startswith (name, "aranges"))
6609 || (do_debug_ranges && startswith (name, "ranges"))
6610 || (do_debug_ranges && startswith (name, "rnglists"))
6611 || (do_debug_frames && startswith (name, "frame"))
6612 || (do_debug_macinfo && startswith (name, "macinfo"))
6613 || (do_debug_macinfo && startswith (name, "macro"))
6614 || (do_debug_str && startswith (name, "str"))
6615 || (do_debug_links && startswith (name, "sup"))
6616 || (do_debug_str_offsets && startswith (name, "str_offsets"))
6617 || (do_debug_loc && startswith (name, "loc"))
6618 || (do_debug_loc && startswith (name, "loclists"))
6619 || (do_debug_addr && startswith (name, "addr"))
6620 || (do_debug_cu_index && startswith (name, "cu_index"))
6621 || (do_debug_cu_index && startswith (name, "tu_index"))
252b5132 6622 )
6431e409 6623 request_dump_bynumber (&filedata->dump, i, DEBUG_DUMP);
252b5132 6624 }
a262ae96 6625 /* Linkonce section to be combined with .debug_info at link time. */
09fd7e38 6626 else if ((do_debugging || do_debug_info)
24d127aa 6627 && startswith (name, ".gnu.linkonce.wi."))
6431e409 6628 request_dump_bynumber (&filedata->dump, i, DEBUG_DUMP);
18bd398b 6629 else if (do_debug_frames && streq (name, ".eh_frame"))
6431e409 6630 request_dump_bynumber (&filedata->dump, i, DEBUG_DUMP);
61364358
JK
6631 else if (do_gdb_index && (streq (name, ".gdb_index")
6632 || streq (name, ".debug_names")))
6431e409 6633 request_dump_bynumber (&filedata->dump, i, DEBUG_DUMP);
6f875884
TG
6634 /* Trace sections for Itanium VMS. */
6635 else if ((do_debugging || do_trace_info || do_trace_abbrevs
6636 || do_trace_aranges)
24d127aa 6637 && startswith (name, ".trace_"))
6f875884
TG
6638 {
6639 name += sizeof (".trace_") - 1;
6640
6641 if (do_debugging
6642 || (do_trace_info && streq (name, "info"))
6643 || (do_trace_abbrevs && streq (name, "abbrev"))
6644 || (do_trace_aranges && streq (name, "aranges"))
6645 )
6431e409 6646 request_dump_bynumber (&filedata->dump, i, DEBUG_DUMP);
6f875884 6647 }
dda8d76d 6648 else if ((do_debugging || do_debug_links)
24d127aa
ML
6649 && (startswith (name, ".gnu_debuglink")
6650 || startswith (name, ".gnu_debugaltlink")))
6431e409 6651 request_dump_bynumber (&filedata->dump, i, DEBUG_DUMP);
252b5132
RH
6652 }
6653
6654 if (! do_sections)
015dc7e1 6655 return true;
252b5132 6656
ca0e11aa 6657 if (filedata->is_separate && ! process_links)
015dc7e1 6658 return true;
ca0e11aa
NC
6659
6660 if (filedata->is_separate)
6661 printf (_("\nSection Headers in linked file '%s':\n"), filedata->file_name);
6662 else if (filedata->file_header.e_shnum > 1)
3a1a2036
NC
6663 printf (_("\nSection Headers:\n"));
6664 else
6665 printf (_("\nSection Header:\n"));
76da6bbe 6666
f7a99963 6667 if (is_32bit_elf)
595cf52e 6668 {
5477e8a0 6669 if (do_section_details)
595cf52e
L
6670 {
6671 printf (_(" [Nr] Name\n"));
5477e8a0 6672 printf (_(" Type Addr Off Size ES Lk Inf Al\n"));
595cf52e
L
6673 }
6674 else
6675 printf
6676 (_(" [Nr] Name Type Addr Off Size ES Flg Lk Inf Al\n"));
6677 }
d974e256 6678 else if (do_wide)
595cf52e 6679 {
5477e8a0 6680 if (do_section_details)
595cf52e
L
6681 {
6682 printf (_(" [Nr] Name\n"));
5477e8a0 6683 printf (_(" Type Address Off Size ES Lk Inf Al\n"));
595cf52e
L
6684 }
6685 else
6686 printf
6687 (_(" [Nr] Name Type Address Off Size ES Flg Lk Inf Al\n"));
6688 }
f7a99963
NC
6689 else
6690 {
5477e8a0 6691 if (do_section_details)
595cf52e
L
6692 {
6693 printf (_(" [Nr] Name\n"));
5477e8a0
L
6694 printf (_(" Type Address Offset Link\n"));
6695 printf (_(" Size EntSize Info Align\n"));
595cf52e
L
6696 }
6697 else
6698 {
6699 printf (_(" [Nr] Name Type Address Offset\n"));
6700 printf (_(" Size EntSize Flags Link Info Align\n"));
6701 }
f7a99963 6702 }
252b5132 6703
5477e8a0
L
6704 if (do_section_details)
6705 printf (_(" Flags\n"));
6706
dda8d76d
NC
6707 for (i = 0, section = filedata->section_headers;
6708 i < filedata->file_header.e_shnum;
b34976b6 6709 i++, section++)
252b5132 6710 {
dd905818
NC
6711 /* Run some sanity checks on the section header. */
6712
6713 /* Check the sh_link field. */
6714 switch (section->sh_type)
6715 {
285e3f99
AM
6716 case SHT_REL:
6717 case SHT_RELA:
6718 if (section->sh_link == 0
6719 && (filedata->file_header.e_type == ET_EXEC
6720 || filedata->file_header.e_type == ET_DYN))
6721 /* A dynamic relocation section where all entries use a
6722 zero symbol index need not specify a symtab section. */
6723 break;
6724 /* Fall through. */
dd905818
NC
6725 case SHT_SYMTAB_SHNDX:
6726 case SHT_GROUP:
6727 case SHT_HASH:
6728 case SHT_GNU_HASH:
6729 case SHT_GNU_versym:
285e3f99 6730 if (section->sh_link == 0
dda8d76d
NC
6731 || section->sh_link >= filedata->file_header.e_shnum
6732 || (filedata->section_headers[section->sh_link].sh_type != SHT_SYMTAB
6733 && filedata->section_headers[section->sh_link].sh_type != SHT_DYNSYM))
dd905818
NC
6734 warn (_("[%2u]: Link field (%u) should index a symtab section.\n"),
6735 i, section->sh_link);
6736 break;
6737
6738 case SHT_DYNAMIC:
6739 case SHT_SYMTAB:
6740 case SHT_DYNSYM:
6741 case SHT_GNU_verneed:
6742 case SHT_GNU_verdef:
6743 case SHT_GNU_LIBLIST:
285e3f99 6744 if (section->sh_link == 0
dda8d76d
NC
6745 || section->sh_link >= filedata->file_header.e_shnum
6746 || filedata->section_headers[section->sh_link].sh_type != SHT_STRTAB)
dd905818
NC
6747 warn (_("[%2u]: Link field (%u) should index a string section.\n"),
6748 i, section->sh_link);
6749 break;
6750
6751 case SHT_INIT_ARRAY:
6752 case SHT_FINI_ARRAY:
6753 case SHT_PREINIT_ARRAY:
6754 if (section->sh_type < SHT_LOOS && section->sh_link != 0)
6755 warn (_("[%2u]: Unexpected value (%u) in link field.\n"),
6756 i, section->sh_link);
6757 break;
6758
6759 default:
6760 /* FIXME: Add support for target specific section types. */
6761#if 0 /* Currently we do not check other section types as there are too
6762 many special cases. Stab sections for example have a type
6763 of SHT_PROGBITS but an sh_link field that links to the .stabstr
6764 section. */
6765 if (section->sh_type < SHT_LOOS && section->sh_link != 0)
6766 warn (_("[%2u]: Unexpected value (%u) in link field.\n"),
6767 i, section->sh_link);
6768#endif
6769 break;
6770 }
6771
6772 /* Check the sh_info field. */
6773 switch (section->sh_type)
6774 {
6775 case SHT_REL:
6776 case SHT_RELA:
285e3f99
AM
6777 if (section->sh_info == 0
6778 && (filedata->file_header.e_type == ET_EXEC
6779 || filedata->file_header.e_type == ET_DYN))
6780 /* Dynamic relocations apply to segments, so they do not
6781 need to specify the section they relocate. */
6782 break;
6783 if (section->sh_info == 0
dda8d76d
NC
6784 || section->sh_info >= filedata->file_header.e_shnum
6785 || (filedata->section_headers[section->sh_info].sh_type != SHT_PROGBITS
6786 && filedata->section_headers[section->sh_info].sh_type != SHT_NOBITS
6787 && filedata->section_headers[section->sh_info].sh_type != SHT_NOTE
6788 && filedata->section_headers[section->sh_info].sh_type != SHT_INIT_ARRAY
385e5b90
L
6789 && filedata->section_headers[section->sh_info].sh_type != SHT_FINI_ARRAY
6790 && filedata->section_headers[section->sh_info].sh_type != SHT_PREINIT_ARRAY
dd905818 6791 /* FIXME: Are other section types valid ? */
dda8d76d 6792 && filedata->section_headers[section->sh_info].sh_type < SHT_LOOS))
285e3f99
AM
6793 warn (_("[%2u]: Info field (%u) should index a relocatable section.\n"),
6794 i, section->sh_info);
dd905818
NC
6795 break;
6796
6797 case SHT_DYNAMIC:
6798 case SHT_HASH:
6799 case SHT_SYMTAB_SHNDX:
6800 case SHT_INIT_ARRAY:
6801 case SHT_FINI_ARRAY:
6802 case SHT_PREINIT_ARRAY:
6803 if (section->sh_info != 0)
6804 warn (_("[%2u]: Unexpected value (%u) in info field.\n"),
6805 i, section->sh_info);
6806 break;
6807
6808 case SHT_GROUP:
6809 case SHT_SYMTAB:
6810 case SHT_DYNSYM:
6811 /* A symbol index - we assume that it is valid. */
6812 break;
6813
6814 default:
6815 /* FIXME: Add support for target specific section types. */
6816 if (section->sh_type == SHT_NOBITS)
6817 /* NOBITS section headers with non-zero sh_info fields can be
6818 created when a binary is stripped of everything but its debug
1a9ccd70
NC
6819 information. The stripped sections have their headers
6820 preserved but their types set to SHT_NOBITS. So do not check
6821 this type of section. */
dd905818
NC
6822 ;
6823 else if (section->sh_flags & SHF_INFO_LINK)
6824 {
dda8d76d 6825 if (section->sh_info < 1 || section->sh_info >= filedata->file_header.e_shnum)
dd905818
NC
6826 warn (_("[%2u]: Expected link to another section in info field"), i);
6827 }
a91e1603
L
6828 else if (section->sh_type < SHT_LOOS
6829 && (section->sh_flags & SHF_GNU_MBIND) == 0
6830 && section->sh_info != 0)
dd905818
NC
6831 warn (_("[%2u]: Unexpected value (%u) in info field.\n"),
6832 i, section->sh_info);
6833 break;
6834 }
6835
3e6b6445 6836 /* Check the sh_size field. */
dda8d76d 6837 if (section->sh_size > filedata->file_size
3e6b6445
NC
6838 && section->sh_type != SHT_NOBITS
6839 && section->sh_type != SHT_NULL
6840 && section->sh_type < SHT_LOOS)
6841 warn (_("Size of section %u is larger than the entire file!\n"), i);
6842
7bfd842d 6843 printf (" [%2u] ", i);
5477e8a0 6844 if (do_section_details)
dda8d76d 6845 printf ("%s\n ", printable_section_name (filedata, section));
595cf52e 6846 else
b9e920ec 6847 print_symbol (-17, SECTION_NAME_PRINT (section));
0b4362b0 6848
ea52a088 6849 printf (do_wide ? " %-15s " : " %-15.15s ",
dda8d76d 6850 get_section_type_name (filedata, section->sh_type));
0b4362b0 6851
f7a99963
NC
6852 if (is_32bit_elf)
6853 {
cfcac11d
NC
6854 const char * link_too_big = NULL;
6855
f7a99963 6856 print_vma (section->sh_addr, LONG_HEX);
76da6bbe 6857
f7a99963
NC
6858 printf ( " %6.6lx %6.6lx %2.2lx",
6859 (unsigned long) section->sh_offset,
6860 (unsigned long) section->sh_size,
6861 (unsigned long) section->sh_entsize);
d1133906 6862
5477e8a0
L
6863 if (do_section_details)
6864 fputs (" ", stdout);
6865 else
dda8d76d 6866 printf (" %3s ", get_elf_section_flags (filedata, section->sh_flags));
76da6bbe 6867
dda8d76d 6868 if (section->sh_link >= filedata->file_header.e_shnum)
cfcac11d
NC
6869 {
6870 link_too_big = "";
6871 /* The sh_link value is out of range. Normally this indicates
caa83f8b 6872 an error but it can have special values in Solaris binaries. */
dda8d76d 6873 switch (filedata->file_header.e_machine)
cfcac11d 6874 {
caa83f8b 6875 case EM_386:
22abe556 6876 case EM_IAMCU:
caa83f8b 6877 case EM_X86_64:
7f502d6c 6878 case EM_L1OM:
7a9068fe 6879 case EM_K1OM:
cfcac11d
NC
6880 case EM_OLD_SPARCV9:
6881 case EM_SPARC32PLUS:
6882 case EM_SPARCV9:
6883 case EM_SPARC:
6884 if (section->sh_link == (SHN_BEFORE & 0xffff))
6885 link_too_big = "BEFORE";
6886 else if (section->sh_link == (SHN_AFTER & 0xffff))
6887 link_too_big = "AFTER";
6888 break;
6889 default:
6890 break;
6891 }
6892 }
6893
6894 if (do_section_details)
6895 {
6896 if (link_too_big != NULL && * link_too_big)
6897 printf ("<%s> ", link_too_big);
6898 else
6899 printf ("%2u ", section->sh_link);
6900 printf ("%3u %2lu\n", section->sh_info,
6901 (unsigned long) section->sh_addralign);
6902 }
6903 else
6904 printf ("%2u %3u %2lu\n",
6905 section->sh_link,
6906 section->sh_info,
6907 (unsigned long) section->sh_addralign);
6908
6909 if (link_too_big && ! * link_too_big)
6910 warn (_("section %u: sh_link value of %u is larger than the number of sections\n"),
6911 i, section->sh_link);
f7a99963 6912 }
d974e256
JJ
6913 else if (do_wide)
6914 {
6915 print_vma (section->sh_addr, LONG_HEX);
6916
6917 if ((long) section->sh_offset == section->sh_offset)
6918 printf (" %6.6lx", (unsigned long) section->sh_offset);
6919 else
6920 {
6921 putchar (' ');
6922 print_vma (section->sh_offset, LONG_HEX);
6923 }
6924
6925 if ((unsigned long) section->sh_size == section->sh_size)
6926 printf (" %6.6lx", (unsigned long) section->sh_size);
6927 else
6928 {
6929 putchar (' ');
6930 print_vma (section->sh_size, LONG_HEX);
6931 }
6932
6933 if ((unsigned long) section->sh_entsize == section->sh_entsize)
6934 printf (" %2.2lx", (unsigned long) section->sh_entsize);
6935 else
6936 {
6937 putchar (' ');
6938 print_vma (section->sh_entsize, LONG_HEX);
6939 }
6940
5477e8a0
L
6941 if (do_section_details)
6942 fputs (" ", stdout);
6943 else
dda8d76d 6944 printf (" %3s ", get_elf_section_flags (filedata, section->sh_flags));
d974e256 6945
72de5009 6946 printf ("%2u %3u ", section->sh_link, section->sh_info);
d974e256
JJ
6947
6948 if ((unsigned long) section->sh_addralign == section->sh_addralign)
72de5009 6949 printf ("%2lu\n", (unsigned long) section->sh_addralign);
d974e256
JJ
6950 else
6951 {
6952 print_vma (section->sh_addralign, DEC);
6953 putchar ('\n');
6954 }
6955 }
5477e8a0 6956 else if (do_section_details)
595cf52e 6957 {
55cc53e9 6958 putchar (' ');
595cf52e
L
6959 print_vma (section->sh_addr, LONG_HEX);
6960 if ((long) section->sh_offset == section->sh_offset)
5477e8a0 6961 printf (" %16.16lx", (unsigned long) section->sh_offset);
595cf52e
L
6962 else
6963 {
6964 printf (" ");
6965 print_vma (section->sh_offset, LONG_HEX);
6966 }
72de5009 6967 printf (" %u\n ", section->sh_link);
595cf52e 6968 print_vma (section->sh_size, LONG_HEX);
5477e8a0 6969 putchar (' ');
595cf52e
L
6970 print_vma (section->sh_entsize, LONG_HEX);
6971
72de5009
AM
6972 printf (" %-16u %lu\n",
6973 section->sh_info,
595cf52e
L
6974 (unsigned long) section->sh_addralign);
6975 }
f7a99963
NC
6976 else
6977 {
6978 putchar (' ');
6979 print_vma (section->sh_addr, LONG_HEX);
53c7db4b
KH
6980 if ((long) section->sh_offset == section->sh_offset)
6981 printf (" %8.8lx", (unsigned long) section->sh_offset);
6982 else
6983 {
6984 printf (" ");
6985 print_vma (section->sh_offset, LONG_HEX);
6986 }
f7a99963
NC
6987 printf ("\n ");
6988 print_vma (section->sh_size, LONG_HEX);
6989 printf (" ");
6990 print_vma (section->sh_entsize, LONG_HEX);
76da6bbe 6991
dda8d76d 6992 printf (" %3s ", get_elf_section_flags (filedata, section->sh_flags));
76da6bbe 6993
72de5009
AM
6994 printf (" %2u %3u %lu\n",
6995 section->sh_link,
6996 section->sh_info,
f7a99963
NC
6997 (unsigned long) section->sh_addralign);
6998 }
5477e8a0
L
6999
7000 if (do_section_details)
77115a4a 7001 {
dda8d76d 7002 printf (" %s\n", get_elf_section_flags (filedata, section->sh_flags));
77115a4a
L
7003 if ((section->sh_flags & SHF_COMPRESSED) != 0)
7004 {
7005 /* Minimum section size is 12 bytes for 32-bit compression
7006 header + 12 bytes for compressed data header. */
7007 unsigned char buf[24];
d8024a91 7008
77115a4a 7009 assert (sizeof (buf) >= sizeof (Elf64_External_Chdr));
dda8d76d 7010 if (get_data (&buf, filedata, section->sh_offset, 1,
77115a4a
L
7011 sizeof (buf), _("compression header")))
7012 {
7013 Elf_Internal_Chdr chdr;
d8024a91 7014
5844b465
NC
7015 if (get_compression_header (&chdr, buf, sizeof (buf)) == 0)
7016 printf (_(" [<corrupt>]\n"));
77115a4a 7017 else
5844b465
NC
7018 {
7019 if (chdr.ch_type == ELFCOMPRESS_ZLIB)
7020 printf (" ZLIB, ");
7021 else
7022 printf (_(" [<unknown>: 0x%x], "),
7023 chdr.ch_type);
7024 print_vma (chdr.ch_size, LONG_HEX);
7025 printf (", %lu\n", (unsigned long) chdr.ch_addralign);
7026 }
77115a4a
L
7027 }
7028 }
7029 }
252b5132
RH
7030 }
7031
5477e8a0 7032 if (!do_section_details)
3dbcc61d 7033 {
9fb71ee4
NC
7034 /* The ordering of the letters shown here matches the ordering of the
7035 corresponding SHF_xxx values, and hence the order in which these
7036 letters will be displayed to the user. */
7037 printf (_("Key to Flags:\n\
7038 W (write), A (alloc), X (execute), M (merge), S (strings), I (info),\n\
7039 L (link order), O (extra OS processing required), G (group), T (TLS),\n\
fd85a6a1 7040 C (compressed), x (unknown), o (OS specific), E (exclude),\n "));
5424d7ed
L
7041 switch (filedata->file_header.e_ident[EI_OSABI])
7042 {
7043 case ELFOSABI_GNU:
7044 case ELFOSABI_FREEBSD:
7045 printf (_("R (retain), "));
7046 /* Fall through */
7047 case ELFOSABI_NONE:
7048 printf (_("D (mbind), "));
7049 break;
7050 default:
7051 break;
7052 }
dda8d76d
NC
7053 if (filedata->file_header.e_machine == EM_X86_64
7054 || filedata->file_header.e_machine == EM_L1OM
7055 || filedata->file_header.e_machine == EM_K1OM)
9fb71ee4 7056 printf (_("l (large), "));
dda8d76d 7057 else if (filedata->file_header.e_machine == EM_ARM)
f0728ee3 7058 printf (_("y (purecode), "));
dda8d76d 7059 else if (filedata->file_header.e_machine == EM_PPC)
83eef883 7060 printf (_("v (VLE), "));
9fb71ee4 7061 printf ("p (processor specific)\n");
0b4362b0 7062 }
d1133906 7063
015dc7e1 7064 return true;
252b5132
RH
7065}
7066
015dc7e1 7067static bool
28d13567
AM
7068get_symtab (Filedata *filedata, Elf_Internal_Shdr *symsec,
7069 Elf_Internal_Sym **symtab, unsigned long *nsyms,
7070 char **strtab, unsigned long *strtablen)
7071{
7072 *strtab = NULL;
7073 *strtablen = 0;
7074 *symtab = GET_ELF_SYMBOLS (filedata, symsec, nsyms);
7075
7076 if (*symtab == NULL)
015dc7e1 7077 return false;
28d13567
AM
7078
7079 if (symsec->sh_link != 0)
7080 {
7081 Elf_Internal_Shdr *strsec;
7082
7083 if (symsec->sh_link >= filedata->file_header.e_shnum)
7084 {
7085 error (_("Bad sh_link in symbol table section\n"));
7086 free (*symtab);
7087 *symtab = NULL;
7088 *nsyms = 0;
015dc7e1 7089 return false;
28d13567
AM
7090 }
7091
7092 strsec = filedata->section_headers + symsec->sh_link;
7093
7094 *strtab = (char *) get_data (NULL, filedata, strsec->sh_offset,
7095 1, strsec->sh_size, _("string table"));
7096 if (*strtab == NULL)
7097 {
7098 free (*symtab);
7099 *symtab = NULL;
7100 *nsyms = 0;
015dc7e1 7101 return false;
28d13567
AM
7102 }
7103 *strtablen = strsec->sh_size;
7104 }
015dc7e1 7105 return true;
28d13567
AM
7106}
7107
f5842774
L
7108static const char *
7109get_group_flags (unsigned int flags)
7110{
1449284b 7111 static char buff[128];
220453ec 7112
6d913794
NC
7113 if (flags == 0)
7114 return "";
7115 else if (flags == GRP_COMDAT)
7116 return "COMDAT ";
f5842774 7117
89246a0e
AM
7118 snprintf (buff, sizeof buff, "[0x%x: %s%s%s]",
7119 flags,
7120 flags & GRP_MASKOS ? _("<OS specific>") : "",
7121 flags & GRP_MASKPROC ? _("<PROC specific>") : "",
7122 (flags & ~(GRP_COMDAT | GRP_MASKOS | GRP_MASKPROC)
7123 ? _("<unknown>") : ""));
6d913794 7124
f5842774
L
7125 return buff;
7126}
7127
015dc7e1 7128static bool
dda8d76d 7129process_section_groups (Filedata * filedata)
f5842774 7130{
2cf0635d 7131 Elf_Internal_Shdr * section;
f5842774 7132 unsigned int i;
2cf0635d
NC
7133 struct group * group;
7134 Elf_Internal_Shdr * symtab_sec;
7135 Elf_Internal_Shdr * strtab_sec;
7136 Elf_Internal_Sym * symtab;
ba5cdace 7137 unsigned long num_syms;
2cf0635d 7138 char * strtab;
c256ffe7 7139 size_t strtab_size;
d1f5c6e3
L
7140
7141 /* Don't process section groups unless needed. */
7142 if (!do_unwind && !do_section_groups)
015dc7e1 7143 return true;
f5842774 7144
dda8d76d 7145 if (filedata->file_header.e_shnum == 0)
f5842774
L
7146 {
7147 if (do_section_groups)
ca0e11aa
NC
7148 {
7149 if (filedata->is_separate)
7150 printf (_("\nThere are no sections group in linked file '%s'.\n"),
7151 filedata->file_name);
7152 else
7153 printf (_("\nThere are no section groups in this file.\n"));
7154 }
015dc7e1 7155 return true;
f5842774
L
7156 }
7157
dda8d76d 7158 if (filedata->section_headers == NULL)
f5842774
L
7159 {
7160 error (_("Section headers are not available!\n"));
fa1908fd 7161 /* PR 13622: This can happen with a corrupt ELF header. */
015dc7e1 7162 return false;
f5842774
L
7163 }
7164
978c4450
AM
7165 filedata->section_headers_groups
7166 = (struct group **) calloc (filedata->file_header.e_shnum,
7167 sizeof (struct group *));
e4b17d5c 7168
978c4450 7169 if (filedata->section_headers_groups == NULL)
e4b17d5c 7170 {
8b73c356 7171 error (_("Out of memory reading %u section group headers\n"),
dda8d76d 7172 filedata->file_header.e_shnum);
015dc7e1 7173 return false;
e4b17d5c
L
7174 }
7175
f5842774 7176 /* Scan the sections for the group section. */
978c4450 7177 filedata->group_count = 0;
dda8d76d
NC
7178 for (i = 0, section = filedata->section_headers;
7179 i < filedata->file_header.e_shnum;
f5842774 7180 i++, section++)
e4b17d5c 7181 if (section->sh_type == SHT_GROUP)
978c4450 7182 filedata->group_count++;
e4b17d5c 7183
978c4450 7184 if (filedata->group_count == 0)
d1f5c6e3
L
7185 {
7186 if (do_section_groups)
ca0e11aa
NC
7187 {
7188 if (filedata->is_separate)
7189 printf (_("\nThere are no section groups in linked file '%s'.\n"),
7190 filedata->file_name);
7191 else
7192 printf (_("\nThere are no section groups in this file.\n"));
7193 }
d1f5c6e3 7194
015dc7e1 7195 return true;
d1f5c6e3
L
7196 }
7197
978c4450
AM
7198 filedata->section_groups = (struct group *) calloc (filedata->group_count,
7199 sizeof (struct group));
e4b17d5c 7200
978c4450 7201 if (filedata->section_groups == NULL)
e4b17d5c 7202 {
8b73c356 7203 error (_("Out of memory reading %lu groups\n"),
978c4450 7204 (unsigned long) filedata->group_count);
015dc7e1 7205 return false;
e4b17d5c
L
7206 }
7207
d1f5c6e3
L
7208 symtab_sec = NULL;
7209 strtab_sec = NULL;
7210 symtab = NULL;
ba5cdace 7211 num_syms = 0;
d1f5c6e3 7212 strtab = NULL;
c256ffe7 7213 strtab_size = 0;
ca0e11aa
NC
7214
7215 if (filedata->is_separate)
7216 printf (_("Section groups in linked file '%s'\n"), filedata->file_name);
7217
978c4450 7218 for (i = 0, section = filedata->section_headers, group = filedata->section_groups;
dda8d76d 7219 i < filedata->file_header.e_shnum;
e4b17d5c 7220 i++, section++)
f5842774
L
7221 {
7222 if (section->sh_type == SHT_GROUP)
7223 {
dda8d76d 7224 const char * name = printable_section_name (filedata, section);
74e1a04b 7225 const char * group_name;
2cf0635d
NC
7226 unsigned char * start;
7227 unsigned char * indices;
f5842774 7228 unsigned int entry, j, size;
2cf0635d
NC
7229 Elf_Internal_Shdr * sec;
7230 Elf_Internal_Sym * sym;
f5842774
L
7231
7232 /* Get the symbol table. */
dda8d76d
NC
7233 if (section->sh_link >= filedata->file_header.e_shnum
7234 || ((sec = filedata->section_headers + section->sh_link)->sh_type
c256ffe7 7235 != SHT_SYMTAB))
f5842774
L
7236 {
7237 error (_("Bad sh_link in group section `%s'\n"), name);
7238 continue;
7239 }
d1f5c6e3
L
7240
7241 if (symtab_sec != sec)
7242 {
7243 symtab_sec = sec;
9db70fc3 7244 free (symtab);
dda8d76d 7245 symtab = GET_ELF_SYMBOLS (filedata, symtab_sec, & num_syms);
d1f5c6e3 7246 }
f5842774 7247
dd24e3da
NC
7248 if (symtab == NULL)
7249 {
7250 error (_("Corrupt header in group section `%s'\n"), name);
7251 continue;
7252 }
7253
ba5cdace
NC
7254 if (section->sh_info >= num_syms)
7255 {
7256 error (_("Bad sh_info in group section `%s'\n"), name);
7257 continue;
7258 }
7259
f5842774
L
7260 sym = symtab + section->sh_info;
7261
7262 if (ELF_ST_TYPE (sym->st_info) == STT_SECTION)
7263 {
4fbb74a6 7264 if (sym->st_shndx == 0
dda8d76d 7265 || sym->st_shndx >= filedata->file_header.e_shnum)
f5842774
L
7266 {
7267 error (_("Bad sh_info in group section `%s'\n"), name);
7268 continue;
7269 }
ba2685cc 7270
b9e920ec
AM
7271 group_name = SECTION_NAME_PRINT (filedata->section_headers
7272 + sym->st_shndx);
c256ffe7 7273 strtab_sec = NULL;
9db70fc3 7274 free (strtab);
f5842774 7275 strtab = NULL;
c256ffe7 7276 strtab_size = 0;
f5842774
L
7277 }
7278 else
7279 {
7280 /* Get the string table. */
dda8d76d 7281 if (symtab_sec->sh_link >= filedata->file_header.e_shnum)
c256ffe7
JJ
7282 {
7283 strtab_sec = NULL;
9db70fc3 7284 free (strtab);
c256ffe7
JJ
7285 strtab = NULL;
7286 strtab_size = 0;
7287 }
7288 else if (strtab_sec
dda8d76d 7289 != (sec = filedata->section_headers + symtab_sec->sh_link))
d1f5c6e3
L
7290 {
7291 strtab_sec = sec;
9db70fc3 7292 free (strtab);
071436c6 7293
dda8d76d 7294 strtab = (char *) get_data (NULL, filedata, strtab_sec->sh_offset,
071436c6
NC
7295 1, strtab_sec->sh_size,
7296 _("string table"));
c256ffe7 7297 strtab_size = strtab != NULL ? strtab_sec->sh_size : 0;
d1f5c6e3 7298 }
c256ffe7 7299 group_name = sym->st_name < strtab_size
2b692964 7300 ? strtab + sym->st_name : _("<corrupt>");
f5842774
L
7301 }
7302
c9c1d674
EG
7303 /* PR 17531: file: loop. */
7304 if (section->sh_entsize > section->sh_size)
7305 {
7306 error (_("Section %s has sh_entsize (0x%lx) which is larger than its size (0x%lx)\n"),
dda8d76d 7307 printable_section_name (filedata, section),
8066deb1
AM
7308 (unsigned long) section->sh_entsize,
7309 (unsigned long) section->sh_size);
61dd8e19 7310 continue;
c9c1d674
EG
7311 }
7312
dda8d76d 7313 start = (unsigned char *) get_data (NULL, filedata, section->sh_offset,
3f5e193b
NC
7314 1, section->sh_size,
7315 _("section data"));
59245841
NC
7316 if (start == NULL)
7317 continue;
f5842774
L
7318
7319 indices = start;
7320 size = (section->sh_size / section->sh_entsize) - 1;
7321 entry = byte_get (indices, 4);
7322 indices += 4;
e4b17d5c
L
7323
7324 if (do_section_groups)
7325 {
2b692964 7326 printf (_("\n%sgroup section [%5u] `%s' [%s] contains %u sections:\n"),
391cb864 7327 get_group_flags (entry), i, name, group_name, size);
ba2685cc 7328
e4b17d5c
L
7329 printf (_(" [Index] Name\n"));
7330 }
7331
7332 group->group_index = i;
7333
f5842774
L
7334 for (j = 0; j < size; j++)
7335 {
2cf0635d 7336 struct group_list * g;
e4b17d5c 7337
f5842774
L
7338 entry = byte_get (indices, 4);
7339 indices += 4;
7340
dda8d76d 7341 if (entry >= filedata->file_header.e_shnum)
391cb864 7342 {
57028622
NC
7343 static unsigned num_group_errors = 0;
7344
7345 if (num_group_errors ++ < 10)
7346 {
7347 error (_("section [%5u] in group section [%5u] > maximum section [%5u]\n"),
dda8d76d 7348 entry, i, filedata->file_header.e_shnum - 1);
57028622 7349 if (num_group_errors == 10)
67ce483b 7350 warn (_("Further error messages about overlarge group section indices suppressed\n"));
57028622 7351 }
391cb864
L
7352 continue;
7353 }
391cb864 7354
978c4450 7355 if (filedata->section_headers_groups [entry] != NULL)
e4b17d5c 7356 {
d1f5c6e3
L
7357 if (entry)
7358 {
57028622
NC
7359 static unsigned num_errs = 0;
7360
7361 if (num_errs ++ < 10)
7362 {
7363 error (_("section [%5u] in group section [%5u] already in group section [%5u]\n"),
7364 entry, i,
978c4450 7365 filedata->section_headers_groups [entry]->group_index);
57028622
NC
7366 if (num_errs == 10)
7367 warn (_("Further error messages about already contained group sections suppressed\n"));
7368 }
d1f5c6e3
L
7369 continue;
7370 }
7371 else
7372 {
7373 /* Intel C/C++ compiler may put section 0 in a
32ec8896 7374 section group. We just warn it the first time
d1f5c6e3 7375 and ignore it afterwards. */
015dc7e1 7376 static bool warned = false;
d1f5c6e3
L
7377 if (!warned)
7378 {
7379 error (_("section 0 in group section [%5u]\n"),
978c4450 7380 filedata->section_headers_groups [entry]->group_index);
015dc7e1 7381 warned = true;
d1f5c6e3
L
7382 }
7383 }
e4b17d5c
L
7384 }
7385
978c4450 7386 filedata->section_headers_groups [entry] = group;
e4b17d5c
L
7387
7388 if (do_section_groups)
7389 {
dda8d76d
NC
7390 sec = filedata->section_headers + entry;
7391 printf (" [%5u] %s\n", entry, printable_section_name (filedata, sec));
ba2685cc
AM
7392 }
7393
3f5e193b 7394 g = (struct group_list *) xmalloc (sizeof (struct group_list));
e4b17d5c
L
7395 g->section_index = entry;
7396 g->next = group->root;
7397 group->root = g;
f5842774
L
7398 }
7399
9db70fc3 7400 free (start);
e4b17d5c
L
7401
7402 group++;
f5842774
L
7403 }
7404 }
7405
9db70fc3
AM
7406 free (symtab);
7407 free (strtab);
015dc7e1 7408 return true;
f5842774
L
7409}
7410
28f997cf
TG
7411/* Data used to display dynamic fixups. */
7412
7413struct ia64_vms_dynfixup
7414{
7415 bfd_vma needed_ident; /* Library ident number. */
7416 bfd_vma needed; /* Index in the dstrtab of the library name. */
7417 bfd_vma fixup_needed; /* Index of the library. */
7418 bfd_vma fixup_rela_cnt; /* Number of fixups. */
7419 bfd_vma fixup_rela_off; /* Fixups offset in the dynamic segment. */
7420};
7421
7422/* Data used to display dynamic relocations. */
7423
7424struct ia64_vms_dynimgrela
7425{
7426 bfd_vma img_rela_cnt; /* Number of relocations. */
7427 bfd_vma img_rela_off; /* Reloc offset in the dynamic segment. */
7428};
7429
7430/* Display IA-64 OpenVMS dynamic fixups (used to dynamically link a shared
7431 library). */
7432
015dc7e1 7433static bool
dda8d76d
NC
7434dump_ia64_vms_dynamic_fixups (Filedata * filedata,
7435 struct ia64_vms_dynfixup * fixup,
7436 const char * strtab,
7437 unsigned int strtab_sz)
28f997cf 7438{
32ec8896 7439 Elf64_External_VMS_IMAGE_FIXUP * imfs;
28f997cf 7440 long i;
32ec8896 7441 const char * lib_name;
28f997cf 7442
978c4450
AM
7443 imfs = get_data (NULL, filedata,
7444 filedata->dynamic_addr + fixup->fixup_rela_off,
95099889 7445 sizeof (*imfs), fixup->fixup_rela_cnt,
28f997cf
TG
7446 _("dynamic section image fixups"));
7447 if (!imfs)
015dc7e1 7448 return false;
28f997cf
TG
7449
7450 if (fixup->needed < strtab_sz)
7451 lib_name = strtab + fixup->needed;
7452 else
7453 {
32ec8896 7454 warn (_("corrupt library name index of 0x%lx found in dynamic entry"),
7f01b0c6 7455 (unsigned long) fixup->needed);
28f997cf
TG
7456 lib_name = "???";
7457 }
736990c4 7458
28f997cf
TG
7459 printf (_("\nImage fixups for needed library #%d: %s - ident: %lx\n"),
7460 (int) fixup->fixup_needed, lib_name, (long) fixup->needed_ident);
7461 printf
7462 (_("Seg Offset Type SymVec DataType\n"));
7463
7464 for (i = 0; i < (long) fixup->fixup_rela_cnt; i++)
7465 {
7466 unsigned int type;
7467 const char *rtype;
7468
7469 printf ("%3u ", (unsigned) BYTE_GET (imfs [i].fixup_seg));
7470 printf_vma ((bfd_vma) BYTE_GET (imfs [i].fixup_offset));
7471 type = BYTE_GET (imfs [i].type);
7472 rtype = elf_ia64_reloc_type (type);
7473 if (rtype == NULL)
7474 printf (" 0x%08x ", type);
7475 else
7476 printf (" %-32s ", rtype);
7477 printf ("%6u ", (unsigned) BYTE_GET (imfs [i].symvec_index));
7478 printf ("0x%08x\n", (unsigned) BYTE_GET (imfs [i].data_type));
7479 }
7480
7481 free (imfs);
015dc7e1 7482 return true;
28f997cf
TG
7483}
7484
7485/* Display IA-64 OpenVMS dynamic relocations (used to relocate an image). */
7486
015dc7e1 7487static bool
dda8d76d 7488dump_ia64_vms_dynamic_relocs (Filedata * filedata, struct ia64_vms_dynimgrela *imgrela)
28f997cf
TG
7489{
7490 Elf64_External_VMS_IMAGE_RELA *imrs;
7491 long i;
7492
978c4450
AM
7493 imrs = get_data (NULL, filedata,
7494 filedata->dynamic_addr + imgrela->img_rela_off,
95099889 7495 sizeof (*imrs), imgrela->img_rela_cnt,
9cf03b7e 7496 _("dynamic section image relocations"));
28f997cf 7497 if (!imrs)
015dc7e1 7498 return false;
28f997cf
TG
7499
7500 printf (_("\nImage relocs\n"));
7501 printf
7502 (_("Seg Offset Type Addend Seg Sym Off\n"));
7503
7504 for (i = 0; i < (long) imgrela->img_rela_cnt; i++)
7505 {
7506 unsigned int type;
7507 const char *rtype;
7508
7509 printf ("%3u ", (unsigned) BYTE_GET (imrs [i].rela_seg));
7510 printf ("%08" BFD_VMA_FMT "x ",
7511 (bfd_vma) BYTE_GET (imrs [i].rela_offset));
7512 type = BYTE_GET (imrs [i].type);
7513 rtype = elf_ia64_reloc_type (type);
7514 if (rtype == NULL)
7515 printf ("0x%08x ", type);
7516 else
7517 printf ("%-31s ", rtype);
7518 print_vma (BYTE_GET (imrs [i].addend), FULL_HEX);
7519 printf ("%3u ", (unsigned) BYTE_GET (imrs [i].sym_seg));
7520 printf ("%08" BFD_VMA_FMT "x\n",
7521 (bfd_vma) BYTE_GET (imrs [i].sym_offset));
7522 }
7523
7524 free (imrs);
015dc7e1 7525 return true;
28f997cf
TG
7526}
7527
7528/* Display IA-64 OpenVMS dynamic relocations and fixups. */
7529
015dc7e1 7530static bool
dda8d76d 7531process_ia64_vms_dynamic_relocs (Filedata * filedata)
28f997cf
TG
7532{
7533 struct ia64_vms_dynfixup fixup;
7534 struct ia64_vms_dynimgrela imgrela;
7535 Elf_Internal_Dyn *entry;
28f997cf
TG
7536 bfd_vma strtab_off = 0;
7537 bfd_vma strtab_sz = 0;
7538 char *strtab = NULL;
015dc7e1 7539 bool res = true;
28f997cf
TG
7540
7541 memset (&fixup, 0, sizeof (fixup));
7542 memset (&imgrela, 0, sizeof (imgrela));
7543
7544 /* Note: the order of the entries is specified by the OpenVMS specs. */
978c4450
AM
7545 for (entry = filedata->dynamic_section;
7546 entry < filedata->dynamic_section + filedata->dynamic_nent;
28f997cf
TG
7547 entry++)
7548 {
7549 switch (entry->d_tag)
7550 {
7551 case DT_IA_64_VMS_STRTAB_OFFSET:
7552 strtab_off = entry->d_un.d_val;
7553 break;
7554 case DT_STRSZ:
7555 strtab_sz = entry->d_un.d_val;
7556 if (strtab == NULL)
978c4450
AM
7557 strtab = get_data (NULL, filedata,
7558 filedata->dynamic_addr + strtab_off,
28f997cf 7559 1, strtab_sz, _("dynamic string section"));
736990c4
NC
7560 if (strtab == NULL)
7561 strtab_sz = 0;
28f997cf
TG
7562 break;
7563
7564 case DT_IA_64_VMS_NEEDED_IDENT:
7565 fixup.needed_ident = entry->d_un.d_val;
7566 break;
7567 case DT_NEEDED:
7568 fixup.needed = entry->d_un.d_val;
7569 break;
7570 case DT_IA_64_VMS_FIXUP_NEEDED:
7571 fixup.fixup_needed = entry->d_un.d_val;
7572 break;
7573 case DT_IA_64_VMS_FIXUP_RELA_CNT:
7574 fixup.fixup_rela_cnt = entry->d_un.d_val;
7575 break;
7576 case DT_IA_64_VMS_FIXUP_RELA_OFF:
7577 fixup.fixup_rela_off = entry->d_un.d_val;
dda8d76d 7578 if (! dump_ia64_vms_dynamic_fixups (filedata, &fixup, strtab, strtab_sz))
015dc7e1 7579 res = false;
28f997cf 7580 break;
28f997cf
TG
7581 case DT_IA_64_VMS_IMG_RELA_CNT:
7582 imgrela.img_rela_cnt = entry->d_un.d_val;
7583 break;
7584 case DT_IA_64_VMS_IMG_RELA_OFF:
7585 imgrela.img_rela_off = entry->d_un.d_val;
dda8d76d 7586 if (! dump_ia64_vms_dynamic_relocs (filedata, &imgrela))
015dc7e1 7587 res = false;
28f997cf
TG
7588 break;
7589
7590 default:
7591 break;
7592 }
7593 }
7594
9db70fc3 7595 free (strtab);
28f997cf
TG
7596
7597 return res;
7598}
7599
85b1c36d 7600static struct
566b0d53 7601{
2cf0635d 7602 const char * name;
566b0d53
L
7603 int reloc;
7604 int size;
7605 int rela;
32ec8896
NC
7606}
7607 dynamic_relocations [] =
566b0d53 7608{
015dc7e1
AM
7609 { "REL", DT_REL, DT_RELSZ, false },
7610 { "RELA", DT_RELA, DT_RELASZ, true },
32ec8896 7611 { "PLT", DT_JMPREL, DT_PLTRELSZ, UNKNOWN }
566b0d53
L
7612};
7613
252b5132 7614/* Process the reloc section. */
18bd398b 7615
015dc7e1 7616static bool
dda8d76d 7617process_relocs (Filedata * filedata)
252b5132 7618{
b34976b6
AM
7619 unsigned long rel_size;
7620 unsigned long rel_offset;
252b5132 7621
252b5132 7622 if (!do_reloc)
015dc7e1 7623 return true;
252b5132
RH
7624
7625 if (do_using_dynamic)
7626 {
32ec8896 7627 int is_rela;
2cf0635d 7628 const char * name;
015dc7e1 7629 bool has_dynamic_reloc;
566b0d53 7630 unsigned int i;
0de14b54 7631
015dc7e1 7632 has_dynamic_reloc = false;
252b5132 7633
566b0d53 7634 for (i = 0; i < ARRAY_SIZE (dynamic_relocations); i++)
252b5132 7635 {
566b0d53
L
7636 is_rela = dynamic_relocations [i].rela;
7637 name = dynamic_relocations [i].name;
978c4450
AM
7638 rel_size = filedata->dynamic_info[dynamic_relocations [i].size];
7639 rel_offset = filedata->dynamic_info[dynamic_relocations [i].reloc];
103f02d3 7640
32ec8896 7641 if (rel_size)
015dc7e1 7642 has_dynamic_reloc = true;
566b0d53
L
7643
7644 if (is_rela == UNKNOWN)
aa903cfb 7645 {
566b0d53 7646 if (dynamic_relocations [i].reloc == DT_JMPREL)
978c4450 7647 switch (filedata->dynamic_info[DT_PLTREL])
566b0d53
L
7648 {
7649 case DT_REL:
015dc7e1 7650 is_rela = false;
566b0d53
L
7651 break;
7652 case DT_RELA:
015dc7e1 7653 is_rela = true;
566b0d53
L
7654 break;
7655 }
aa903cfb 7656 }
252b5132 7657
566b0d53
L
7658 if (rel_size)
7659 {
ca0e11aa
NC
7660 if (filedata->is_separate)
7661 printf
7662 (_("\nIn linked file '%s' section '%s' at offset 0x%lx contains %ld bytes:\n"),
7663 filedata->file_name, name, rel_offset, rel_size);
7664 else
7665 printf
7666 (_("\n'%s' relocation section at offset 0x%lx contains %ld bytes:\n"),
7667 name, rel_offset, rel_size);
7668
252b5132 7669
dda8d76d
NC
7670 dump_relocations (filedata,
7671 offset_from_vma (filedata, rel_offset, rel_size),
d93f0186 7672 rel_size,
978c4450
AM
7673 filedata->dynamic_symbols,
7674 filedata->num_dynamic_syms,
7675 filedata->dynamic_strings,
7676 filedata->dynamic_strings_length,
015dc7e1 7677 is_rela, true /* is_dynamic */);
566b0d53 7678 }
252b5132 7679 }
566b0d53 7680
dda8d76d
NC
7681 if (is_ia64_vms (filedata))
7682 if (process_ia64_vms_dynamic_relocs (filedata))
015dc7e1 7683 has_dynamic_reloc = true;
28f997cf 7684
566b0d53 7685 if (! has_dynamic_reloc)
ca0e11aa
NC
7686 {
7687 if (filedata->is_separate)
7688 printf (_("\nThere are no dynamic relocations in linked file '%s'.\n"),
7689 filedata->file_name);
7690 else
7691 printf (_("\nThere are no dynamic relocations in this file.\n"));
7692 }
252b5132
RH
7693 }
7694 else
7695 {
2cf0635d 7696 Elf_Internal_Shdr * section;
b34976b6 7697 unsigned long i;
015dc7e1 7698 bool found = false;
252b5132 7699
dda8d76d
NC
7700 for (i = 0, section = filedata->section_headers;
7701 i < filedata->file_header.e_shnum;
b34976b6 7702 i++, section++)
252b5132
RH
7703 {
7704 if ( section->sh_type != SHT_RELA
7705 && section->sh_type != SHT_REL)
7706 continue;
7707
7708 rel_offset = section->sh_offset;
7709 rel_size = section->sh_size;
7710
7711 if (rel_size)
7712 {
b34976b6 7713 int is_rela;
d3a49aa8 7714 unsigned long num_rela;
103f02d3 7715
ca0e11aa
NC
7716 if (filedata->is_separate)
7717 printf (_("\nIn linked file '%s' relocation section "),
7718 filedata->file_name);
7719 else
7720 printf (_("\nRelocation section "));
252b5132 7721
dda8d76d 7722 if (filedata->string_table == NULL)
19936277 7723 printf ("%d", section->sh_name);
252b5132 7724 else
dda8d76d 7725 printf ("'%s'", printable_section_name (filedata, section));
252b5132 7726
d3a49aa8
AM
7727 num_rela = rel_size / section->sh_entsize;
7728 printf (ngettext (" at offset 0x%lx contains %lu entry:\n",
7729 " at offset 0x%lx contains %lu entries:\n",
7730 num_rela),
7731 rel_offset, num_rela);
252b5132 7732
d79b3d50
NC
7733 is_rela = section->sh_type == SHT_RELA;
7734
4fbb74a6 7735 if (section->sh_link != 0
dda8d76d 7736 && section->sh_link < filedata->file_header.e_shnum)
af3fc3bc 7737 {
2cf0635d
NC
7738 Elf_Internal_Shdr * symsec;
7739 Elf_Internal_Sym * symtab;
d79b3d50 7740 unsigned long nsyms;
c256ffe7 7741 unsigned long strtablen = 0;
2cf0635d 7742 char * strtab = NULL;
57346661 7743
dda8d76d 7744 symsec = filedata->section_headers + section->sh_link;
08d8fa11
JJ
7745 if (symsec->sh_type != SHT_SYMTAB
7746 && symsec->sh_type != SHT_DYNSYM)
7747 continue;
7748
28d13567
AM
7749 if (!get_symtab (filedata, symsec,
7750 &symtab, &nsyms, &strtab, &strtablen))
af3fc3bc 7751 continue;
252b5132 7752
dda8d76d 7753 dump_relocations (filedata, rel_offset, rel_size,
bb4d2ac2
L
7754 symtab, nsyms, strtab, strtablen,
7755 is_rela,
7756 symsec->sh_type == SHT_DYNSYM);
9db70fc3 7757 free (strtab);
d79b3d50
NC
7758 free (symtab);
7759 }
7760 else
dda8d76d 7761 dump_relocations (filedata, rel_offset, rel_size,
32ec8896 7762 NULL, 0, NULL, 0, is_rela,
015dc7e1 7763 false /* is_dynamic */);
252b5132 7764
015dc7e1 7765 found = true;
252b5132
RH
7766 }
7767 }
7768
7769 if (! found)
45ac8f4f
NC
7770 {
7771 /* Users sometimes forget the -D option, so try to be helpful. */
7772 for (i = 0; i < ARRAY_SIZE (dynamic_relocations); i++)
7773 {
978c4450 7774 if (filedata->dynamic_info[dynamic_relocations [i].size])
45ac8f4f 7775 {
ca0e11aa
NC
7776 if (filedata->is_separate)
7777 printf (_("\nThere are no static relocations in linked file '%s'."),
7778 filedata->file_name);
7779 else
7780 printf (_("\nThere are no static relocations in this file."));
45ac8f4f
NC
7781 printf (_("\nTo see the dynamic relocations add --use-dynamic to the command line.\n"));
7782
7783 break;
7784 }
7785 }
7786 if (i == ARRAY_SIZE (dynamic_relocations))
ca0e11aa
NC
7787 {
7788 if (filedata->is_separate)
7789 printf (_("\nThere are no relocations in linked file '%s'.\n"),
7790 filedata->file_name);
7791 else
7792 printf (_("\nThere are no relocations in this file.\n"));
7793 }
45ac8f4f 7794 }
252b5132
RH
7795 }
7796
015dc7e1 7797 return true;
252b5132
RH
7798}
7799
4d6ed7c8
NC
7800/* An absolute address consists of a section and an offset. If the
7801 section is NULL, the offset itself is the address, otherwise, the
7802 address equals to LOAD_ADDRESS(section) + offset. */
7803
7804struct absaddr
948f632f
DA
7805{
7806 unsigned short section;
7807 bfd_vma offset;
7808};
4d6ed7c8 7809
948f632f
DA
7810/* Find the nearest symbol at or below ADDR. Returns the symbol
7811 name, if found, and the offset from the symbol to ADDR. */
4d6ed7c8 7812
4d6ed7c8 7813static void
dda8d76d
NC
7814find_symbol_for_address (Filedata * filedata,
7815 Elf_Internal_Sym * symtab,
7816 unsigned long nsyms,
7817 const char * strtab,
7818 unsigned long strtab_size,
7819 struct absaddr addr,
7820 const char ** symname,
7821 bfd_vma * offset)
4d6ed7c8 7822{
d3ba0551 7823 bfd_vma dist = 0x100000;
2cf0635d 7824 Elf_Internal_Sym * sym;
948f632f
DA
7825 Elf_Internal_Sym * beg;
7826 Elf_Internal_Sym * end;
2cf0635d 7827 Elf_Internal_Sym * best = NULL;
4d6ed7c8 7828
0b6ae522 7829 REMOVE_ARCH_BITS (addr.offset);
948f632f
DA
7830 beg = symtab;
7831 end = symtab + nsyms;
0b6ae522 7832
948f632f 7833 while (beg < end)
4d6ed7c8 7834 {
948f632f
DA
7835 bfd_vma value;
7836
7837 sym = beg + (end - beg) / 2;
0b6ae522 7838
948f632f 7839 value = sym->st_value;
0b6ae522
DJ
7840 REMOVE_ARCH_BITS (value);
7841
948f632f 7842 if (sym->st_name != 0
4d6ed7c8 7843 && (addr.section == SHN_UNDEF || addr.section == sym->st_shndx)
0b6ae522
DJ
7844 && addr.offset >= value
7845 && addr.offset - value < dist)
4d6ed7c8
NC
7846 {
7847 best = sym;
0b6ae522 7848 dist = addr.offset - value;
4d6ed7c8
NC
7849 if (!dist)
7850 break;
7851 }
948f632f
DA
7852
7853 if (addr.offset < value)
7854 end = sym;
7855 else
7856 beg = sym + 1;
4d6ed7c8 7857 }
1b31d05e 7858
4d6ed7c8
NC
7859 if (best)
7860 {
57346661 7861 *symname = (best->st_name >= strtab_size
2b692964 7862 ? _("<corrupt>") : strtab + best->st_name);
4d6ed7c8
NC
7863 *offset = dist;
7864 return;
7865 }
1b31d05e 7866
4d6ed7c8
NC
7867 *symname = NULL;
7868 *offset = addr.offset;
7869}
7870
32ec8896 7871static /* signed */ int
948f632f
DA
7872symcmp (const void *p, const void *q)
7873{
7874 Elf_Internal_Sym *sp = (Elf_Internal_Sym *) p;
7875 Elf_Internal_Sym *sq = (Elf_Internal_Sym *) q;
7876
7877 return sp->st_value > sq->st_value ? 1 : (sp->st_value < sq->st_value ? -1 : 0);
7878}
7879
7880/* Process the unwind section. */
7881
7882#include "unwind-ia64.h"
7883
7884struct ia64_unw_table_entry
7885{
7886 struct absaddr start;
7887 struct absaddr end;
7888 struct absaddr info;
7889};
7890
7891struct ia64_unw_aux_info
7892{
32ec8896
NC
7893 struct ia64_unw_table_entry * table; /* Unwind table. */
7894 unsigned long table_len; /* Length of unwind table. */
7895 unsigned char * info; /* Unwind info. */
7896 unsigned long info_size; /* Size of unwind info. */
7897 bfd_vma info_addr; /* Starting address of unwind info. */
7898 bfd_vma seg_base; /* Starting address of segment. */
7899 Elf_Internal_Sym * symtab; /* The symbol table. */
7900 unsigned long nsyms; /* Number of symbols. */
7901 Elf_Internal_Sym * funtab; /* Sorted table of STT_FUNC symbols. */
7902 unsigned long nfuns; /* Number of entries in funtab. */
7903 char * strtab; /* The string table. */
7904 unsigned long strtab_size; /* Size of string table. */
948f632f
DA
7905};
7906
015dc7e1 7907static bool
dda8d76d 7908dump_ia64_unwind (Filedata * filedata, struct ia64_unw_aux_info * aux)
4d6ed7c8 7909{
2cf0635d 7910 struct ia64_unw_table_entry * tp;
948f632f 7911 unsigned long j, nfuns;
4d6ed7c8 7912 int in_body;
015dc7e1 7913 bool res = true;
7036c0e1 7914
948f632f
DA
7915 aux->funtab = xmalloc (aux->nsyms * sizeof (Elf_Internal_Sym));
7916 for (nfuns = 0, j = 0; j < aux->nsyms; j++)
7917 if (aux->symtab[j].st_value && ELF_ST_TYPE (aux->symtab[j].st_info) == STT_FUNC)
7918 aux->funtab[nfuns++] = aux->symtab[j];
7919 aux->nfuns = nfuns;
7920 qsort (aux->funtab, aux->nfuns, sizeof (Elf_Internal_Sym), symcmp);
7921
4d6ed7c8
NC
7922 for (tp = aux->table; tp < aux->table + aux->table_len; ++tp)
7923 {
7924 bfd_vma stamp;
7925 bfd_vma offset;
2cf0635d
NC
7926 const unsigned char * dp;
7927 const unsigned char * head;
53774b7e 7928 const unsigned char * end;
2cf0635d 7929 const char * procname;
4d6ed7c8 7930
dda8d76d 7931 find_symbol_for_address (filedata, aux->funtab, aux->nfuns, aux->strtab,
57346661 7932 aux->strtab_size, tp->start, &procname, &offset);
4d6ed7c8
NC
7933
7934 fputs ("\n<", stdout);
7935
7936 if (procname)
7937 {
7938 fputs (procname, stdout);
7939
7940 if (offset)
7941 printf ("+%lx", (unsigned long) offset);
7942 }
7943
7944 fputs (">: [", stdout);
7945 print_vma (tp->start.offset, PREFIX_HEX);
7946 fputc ('-', stdout);
7947 print_vma (tp->end.offset, PREFIX_HEX);
86f55779 7948 printf ("], info at +0x%lx\n",
4d6ed7c8
NC
7949 (unsigned long) (tp->info.offset - aux->seg_base));
7950
53774b7e
NC
7951 /* PR 17531: file: 86232b32. */
7952 if (aux->info == NULL)
7953 continue;
7954
97c0a079
AM
7955 offset = tp->info.offset;
7956 if (tp->info.section)
7957 {
7958 if (tp->info.section >= filedata->file_header.e_shnum)
7959 {
7960 warn (_("Invalid section %u in table entry %ld\n"),
7961 tp->info.section, (long) (tp - aux->table));
015dc7e1 7962 res = false;
97c0a079
AM
7963 continue;
7964 }
7965 offset += filedata->section_headers[tp->info.section].sh_addr;
7966 }
7967 offset -= aux->info_addr;
53774b7e 7968 /* PR 17531: file: 0997b4d1. */
90679903
AM
7969 if (offset >= aux->info_size
7970 || aux->info_size - offset < 8)
53774b7e
NC
7971 {
7972 warn (_("Invalid offset %lx in table entry %ld\n"),
7973 (long) tp->info.offset, (long) (tp - aux->table));
015dc7e1 7974 res = false;
53774b7e
NC
7975 continue;
7976 }
7977
97c0a079 7978 head = aux->info + offset;
a4a00738 7979 stamp = byte_get ((unsigned char *) head, sizeof (stamp));
4d6ed7c8 7980
86f55779 7981 printf (" v%u, flags=0x%lx (%s%s), len=%lu bytes\n",
4d6ed7c8
NC
7982 (unsigned) UNW_VER (stamp),
7983 (unsigned long) ((stamp & UNW_FLAG_MASK) >> 32),
7984 UNW_FLAG_EHANDLER (stamp) ? " ehandler" : "",
7985 UNW_FLAG_UHANDLER (stamp) ? " uhandler" : "",
89fac5e3 7986 (unsigned long) (eh_addr_size * UNW_LENGTH (stamp)));
4d6ed7c8
NC
7987
7988 if (UNW_VER (stamp) != 1)
7989 {
2b692964 7990 printf (_("\tUnknown version.\n"));
4d6ed7c8
NC
7991 continue;
7992 }
7993
7994 in_body = 0;
53774b7e
NC
7995 end = head + 8 + eh_addr_size * UNW_LENGTH (stamp);
7996 /* PR 17531: file: 16ceda89. */
7997 if (end > aux->info + aux->info_size)
7998 end = aux->info + aux->info_size;
7999 for (dp = head + 8; dp < end;)
b4477bc8 8000 dp = unw_decode (dp, in_body, & in_body, end);
4d6ed7c8 8001 }
948f632f
DA
8002
8003 free (aux->funtab);
32ec8896
NC
8004
8005 return res;
4d6ed7c8
NC
8006}
8007
015dc7e1 8008static bool
dda8d76d
NC
8009slurp_ia64_unwind_table (Filedata * filedata,
8010 struct ia64_unw_aux_info * aux,
8011 Elf_Internal_Shdr * sec)
4d6ed7c8 8012{
89fac5e3 8013 unsigned long size, nrelas, i;
2cf0635d
NC
8014 Elf_Internal_Phdr * seg;
8015 struct ia64_unw_table_entry * tep;
8016 Elf_Internal_Shdr * relsec;
8017 Elf_Internal_Rela * rela;
8018 Elf_Internal_Rela * rp;
8019 unsigned char * table;
8020 unsigned char * tp;
8021 Elf_Internal_Sym * sym;
8022 const char * relname;
4d6ed7c8 8023
53774b7e
NC
8024 aux->table_len = 0;
8025
4d6ed7c8
NC
8026 /* First, find the starting address of the segment that includes
8027 this section: */
8028
dda8d76d 8029 if (filedata->file_header.e_phnum)
4d6ed7c8 8030 {
dda8d76d 8031 if (! get_program_headers (filedata))
015dc7e1 8032 return false;
4d6ed7c8 8033
dda8d76d
NC
8034 for (seg = filedata->program_headers;
8035 seg < filedata->program_headers + filedata->file_header.e_phnum;
d93f0186 8036 ++seg)
4d6ed7c8
NC
8037 {
8038 if (seg->p_type != PT_LOAD)
8039 continue;
8040
8041 if (sec->sh_addr >= seg->p_vaddr
8042 && (sec->sh_addr + sec->sh_size <= seg->p_vaddr + seg->p_memsz))
8043 {
8044 aux->seg_base = seg->p_vaddr;
8045 break;
8046 }
8047 }
4d6ed7c8
NC
8048 }
8049
8050 /* Second, build the unwind table from the contents of the unwind section: */
8051 size = sec->sh_size;
dda8d76d 8052 table = (unsigned char *) get_data (NULL, filedata, sec->sh_offset, 1, size,
3f5e193b 8053 _("unwind table"));
a6e9f9df 8054 if (!table)
015dc7e1 8055 return false;
4d6ed7c8 8056
53774b7e 8057 aux->table_len = size / (3 * eh_addr_size);
3f5e193b 8058 aux->table = (struct ia64_unw_table_entry *)
53774b7e 8059 xcmalloc (aux->table_len, sizeof (aux->table[0]));
89fac5e3 8060 tep = aux->table;
53774b7e
NC
8061
8062 for (tp = table; tp <= table + size - (3 * eh_addr_size); ++tep)
4d6ed7c8
NC
8063 {
8064 tep->start.section = SHN_UNDEF;
8065 tep->end.section = SHN_UNDEF;
8066 tep->info.section = SHN_UNDEF;
c6a0c689
AM
8067 tep->start.offset = byte_get (tp, eh_addr_size); tp += eh_addr_size;
8068 tep->end.offset = byte_get (tp, eh_addr_size); tp += eh_addr_size;
8069 tep->info.offset = byte_get (tp, eh_addr_size); tp += eh_addr_size;
4d6ed7c8
NC
8070 tep->start.offset += aux->seg_base;
8071 tep->end.offset += aux->seg_base;
8072 tep->info.offset += aux->seg_base;
8073 }
8074 free (table);
8075
41e92641 8076 /* Third, apply any relocations to the unwind table: */
dda8d76d
NC
8077 for (relsec = filedata->section_headers;
8078 relsec < filedata->section_headers + filedata->file_header.e_shnum;
4d6ed7c8
NC
8079 ++relsec)
8080 {
8081 if (relsec->sh_type != SHT_RELA
dda8d76d
NC
8082 || relsec->sh_info >= filedata->file_header.e_shnum
8083 || filedata->section_headers + relsec->sh_info != sec)
4d6ed7c8
NC
8084 continue;
8085
dda8d76d 8086 if (!slurp_rela_relocs (filedata, relsec->sh_offset, relsec->sh_size,
4d6ed7c8 8087 & rela, & nrelas))
53774b7e
NC
8088 {
8089 free (aux->table);
8090 aux->table = NULL;
8091 aux->table_len = 0;
015dc7e1 8092 return false;
53774b7e 8093 }
4d6ed7c8
NC
8094
8095 for (rp = rela; rp < rela + nrelas; ++rp)
8096 {
4770fb94 8097 unsigned int sym_ndx;
726bd37d
AM
8098 unsigned int r_type = get_reloc_type (filedata, rp->r_info);
8099 relname = elf_ia64_reloc_type (r_type);
4d6ed7c8 8100
82b1b41b
NC
8101 /* PR 17531: file: 9fa67536. */
8102 if (relname == NULL)
8103 {
726bd37d 8104 warn (_("Skipping unknown relocation type: %u\n"), r_type);
82b1b41b
NC
8105 continue;
8106 }
948f632f 8107
24d127aa 8108 if (! startswith (relname, "R_IA64_SEGREL"))
4d6ed7c8 8109 {
82b1b41b 8110 warn (_("Skipping unexpected relocation type: %s\n"), relname);
4d6ed7c8
NC
8111 continue;
8112 }
8113
89fac5e3 8114 i = rp->r_offset / (3 * eh_addr_size);
4d6ed7c8 8115
53774b7e
NC
8116 /* PR 17531: file: 5bc8d9bf. */
8117 if (i >= aux->table_len)
8118 {
8119 warn (_("Skipping reloc with overlarge offset: %lx\n"), i);
8120 continue;
8121 }
8122
4770fb94
AM
8123 sym_ndx = get_reloc_symindex (rp->r_info);
8124 if (sym_ndx >= aux->nsyms)
8125 {
8126 warn (_("Skipping reloc with invalid symbol index: %u\n"),
8127 sym_ndx);
8128 continue;
8129 }
8130 sym = aux->symtab + sym_ndx;
8131
53774b7e 8132 switch (rp->r_offset / eh_addr_size % 3)
4d6ed7c8
NC
8133 {
8134 case 0:
8135 aux->table[i].start.section = sym->st_shndx;
e466bc6e 8136 aux->table[i].start.offset = rp->r_addend + sym->st_value;
4d6ed7c8
NC
8137 break;
8138 case 1:
8139 aux->table[i].end.section = sym->st_shndx;
e466bc6e 8140 aux->table[i].end.offset = rp->r_addend + sym->st_value;
4d6ed7c8
NC
8141 break;
8142 case 2:
8143 aux->table[i].info.section = sym->st_shndx;
e466bc6e 8144 aux->table[i].info.offset = rp->r_addend + sym->st_value;
4d6ed7c8
NC
8145 break;
8146 default:
8147 break;
8148 }
8149 }
8150
8151 free (rela);
8152 }
8153
015dc7e1 8154 return true;
4d6ed7c8
NC
8155}
8156
015dc7e1 8157static bool
dda8d76d 8158ia64_process_unwind (Filedata * filedata)
4d6ed7c8 8159{
2cf0635d
NC
8160 Elf_Internal_Shdr * sec;
8161 Elf_Internal_Shdr * unwsec = NULL;
89fac5e3 8162 unsigned long i, unwcount = 0, unwstart = 0;
57346661 8163 struct ia64_unw_aux_info aux;
015dc7e1 8164 bool res = true;
f1467e33 8165
4d6ed7c8
NC
8166 memset (& aux, 0, sizeof (aux));
8167
dda8d76d 8168 for (i = 0, sec = filedata->section_headers; i < filedata->file_header.e_shnum; ++i, ++sec)
4d6ed7c8 8169 {
28d13567 8170 if (sec->sh_type == SHT_SYMTAB)
4d6ed7c8 8171 {
28d13567 8172 if (aux.symtab)
4082ef84 8173 {
28d13567
AM
8174 error (_("Multiple symbol tables encountered\n"));
8175 free (aux.symtab);
8176 aux.symtab = NULL;
4082ef84 8177 free (aux.strtab);
28d13567 8178 aux.strtab = NULL;
4082ef84 8179 }
28d13567
AM
8180 if (!get_symtab (filedata, sec, &aux.symtab, &aux.nsyms,
8181 &aux.strtab, &aux.strtab_size))
015dc7e1 8182 return false;
4d6ed7c8
NC
8183 }
8184 else if (sec->sh_type == SHT_IA_64_UNWIND)
579f31ac
JJ
8185 unwcount++;
8186 }
8187
8188 if (!unwcount)
8189 printf (_("\nThere are no unwind sections in this file.\n"));
8190
8191 while (unwcount-- > 0)
8192 {
2cf0635d 8193 char * suffix;
579f31ac
JJ
8194 size_t len, len2;
8195
dda8d76d
NC
8196 for (i = unwstart, sec = filedata->section_headers + unwstart, unwsec = NULL;
8197 i < filedata->file_header.e_shnum; ++i, ++sec)
579f31ac
JJ
8198 if (sec->sh_type == SHT_IA_64_UNWIND)
8199 {
8200 unwsec = sec;
8201 break;
8202 }
4082ef84
NC
8203 /* We have already counted the number of SHT_IA64_UNWIND
8204 sections so the loop above should never fail. */
8205 assert (unwsec != NULL);
579f31ac
JJ
8206
8207 unwstart = i + 1;
8208 len = sizeof (ELF_STRING_ia64_unwind_once) - 1;
8209
e4b17d5c
L
8210 if ((unwsec->sh_flags & SHF_GROUP) != 0)
8211 {
8212 /* We need to find which section group it is in. */
4082ef84 8213 struct group_list * g;
e4b17d5c 8214
978c4450
AM
8215 if (filedata->section_headers_groups == NULL
8216 || filedata->section_headers_groups[i] == NULL)
dda8d76d 8217 i = filedata->file_header.e_shnum;
4082ef84 8218 else
e4b17d5c 8219 {
978c4450 8220 g = filedata->section_headers_groups[i]->root;
18bd398b 8221
4082ef84
NC
8222 for (; g != NULL; g = g->next)
8223 {
dda8d76d 8224 sec = filedata->section_headers + g->section_index;
e4b17d5c 8225
b9e920ec
AM
8226 if (SECTION_NAME_VALID (sec)
8227 && streq (SECTION_NAME (sec), ELF_STRING_ia64_unwind_info))
4082ef84
NC
8228 break;
8229 }
8230
8231 if (g == NULL)
dda8d76d 8232 i = filedata->file_header.e_shnum;
4082ef84 8233 }
e4b17d5c 8234 }
b9e920ec 8235 else if (SECTION_NAME_VALID (unwsec)
e9b095a5
ML
8236 && startswith (SECTION_NAME (unwsec),
8237 ELF_STRING_ia64_unwind_once))
579f31ac 8238 {
18bd398b 8239 /* .gnu.linkonce.ia64unw.FOO -> .gnu.linkonce.ia64unwi.FOO. */
579f31ac
JJ
8240 len2 = sizeof (ELF_STRING_ia64_unwind_info_once) - 1;
8241 suffix = SECTION_NAME (unwsec) + len;
b9e920ec
AM
8242 for (i = 0, sec = filedata->section_headers;
8243 i < filedata->file_header.e_shnum;
579f31ac 8244 ++i, ++sec)
b9e920ec 8245 if (SECTION_NAME_VALID (sec)
e9b095a5
ML
8246 && startswith (SECTION_NAME (sec),
8247 ELF_STRING_ia64_unwind_info_once)
18bd398b 8248 && streq (SECTION_NAME (sec) + len2, suffix))
579f31ac
JJ
8249 break;
8250 }
8251 else
8252 {
8253 /* .IA_64.unwindFOO -> .IA_64.unwind_infoFOO
18bd398b 8254 .IA_64.unwind or BAR -> .IA_64.unwind_info. */
579f31ac
JJ
8255 len = sizeof (ELF_STRING_ia64_unwind) - 1;
8256 len2 = sizeof (ELF_STRING_ia64_unwind_info) - 1;
8257 suffix = "";
b9e920ec 8258 if (SECTION_NAME_VALID (unwsec)
e9b095a5 8259 && startswith (SECTION_NAME (unwsec), ELF_STRING_ia64_unwind))
579f31ac 8260 suffix = SECTION_NAME (unwsec) + len;
b9e920ec
AM
8261 for (i = 0, sec = filedata->section_headers;
8262 i < filedata->file_header.e_shnum;
579f31ac 8263 ++i, ++sec)
b9e920ec 8264 if (SECTION_NAME_VALID (sec)
e9b095a5 8265 && startswith (SECTION_NAME (sec), ELF_STRING_ia64_unwind_info)
18bd398b 8266 && streq (SECTION_NAME (sec) + len2, suffix))
579f31ac
JJ
8267 break;
8268 }
8269
dda8d76d 8270 if (i == filedata->file_header.e_shnum)
579f31ac
JJ
8271 {
8272 printf (_("\nCould not find unwind info section for "));
8273
dda8d76d 8274 if (filedata->string_table == NULL)
579f31ac
JJ
8275 printf ("%d", unwsec->sh_name);
8276 else
dda8d76d 8277 printf ("'%s'", printable_section_name (filedata, unwsec));
579f31ac
JJ
8278 }
8279 else
4d6ed7c8 8280 {
4d6ed7c8 8281 aux.info_addr = sec->sh_addr;
dda8d76d 8282 aux.info = (unsigned char *) get_data (NULL, filedata, sec->sh_offset, 1,
4082ef84
NC
8283 sec->sh_size,
8284 _("unwind info"));
59245841 8285 aux.info_size = aux.info == NULL ? 0 : sec->sh_size;
4d6ed7c8 8286
579f31ac 8287 printf (_("\nUnwind section "));
4d6ed7c8 8288
dda8d76d 8289 if (filedata->string_table == NULL)
579f31ac
JJ
8290 printf ("%d", unwsec->sh_name);
8291 else
dda8d76d 8292 printf ("'%s'", printable_section_name (filedata, unwsec));
4d6ed7c8 8293
579f31ac 8294 printf (_(" at offset 0x%lx contains %lu entries:\n"),
e59b4dfb 8295 (unsigned long) unwsec->sh_offset,
89fac5e3 8296 (unsigned long) (unwsec->sh_size / (3 * eh_addr_size)));
4d6ed7c8 8297
dda8d76d 8298 if (slurp_ia64_unwind_table (filedata, & aux, unwsec)
53774b7e 8299 && aux.table_len > 0)
dda8d76d 8300 dump_ia64_unwind (filedata, & aux);
579f31ac 8301
9db70fc3
AM
8302 free ((char *) aux.table);
8303 free ((char *) aux.info);
579f31ac
JJ
8304 aux.table = NULL;
8305 aux.info = NULL;
8306 }
4d6ed7c8 8307 }
4d6ed7c8 8308
9db70fc3
AM
8309 free (aux.symtab);
8310 free ((char *) aux.strtab);
32ec8896
NC
8311
8312 return res;
4d6ed7c8
NC
8313}
8314
3f5e193b 8315struct hppa_unw_table_entry
32ec8896
NC
8316{
8317 struct absaddr start;
8318 struct absaddr end;
8319 unsigned int Cannot_unwind:1; /* 0 */
8320 unsigned int Millicode:1; /* 1 */
8321 unsigned int Millicode_save_sr0:1; /* 2 */
8322 unsigned int Region_description:2; /* 3..4 */
8323 unsigned int reserved1:1; /* 5 */
8324 unsigned int Entry_SR:1; /* 6 */
8325 unsigned int Entry_FR:4; /* Number saved 7..10 */
8326 unsigned int Entry_GR:5; /* Number saved 11..15 */
8327 unsigned int Args_stored:1; /* 16 */
8328 unsigned int Variable_Frame:1; /* 17 */
8329 unsigned int Separate_Package_Body:1; /* 18 */
8330 unsigned int Frame_Extension_Millicode:1; /* 19 */
8331 unsigned int Stack_Overflow_Check:1; /* 20 */
8332 unsigned int Two_Instruction_SP_Increment:1; /* 21 */
8333 unsigned int Ada_Region:1; /* 22 */
8334 unsigned int cxx_info:1; /* 23 */
8335 unsigned int cxx_try_catch:1; /* 24 */
8336 unsigned int sched_entry_seq:1; /* 25 */
8337 unsigned int reserved2:1; /* 26 */
8338 unsigned int Save_SP:1; /* 27 */
8339 unsigned int Save_RP:1; /* 28 */
8340 unsigned int Save_MRP_in_frame:1; /* 29 */
8341 unsigned int extn_ptr_defined:1; /* 30 */
8342 unsigned int Cleanup_defined:1; /* 31 */
8343
8344 unsigned int MPE_XL_interrupt_marker:1; /* 0 */
8345 unsigned int HP_UX_interrupt_marker:1; /* 1 */
8346 unsigned int Large_frame:1; /* 2 */
8347 unsigned int Pseudo_SP_Set:1; /* 3 */
8348 unsigned int reserved4:1; /* 4 */
8349 unsigned int Total_frame_size:27; /* 5..31 */
8350};
3f5e193b 8351
57346661 8352struct hppa_unw_aux_info
948f632f 8353{
32ec8896
NC
8354 struct hppa_unw_table_entry * table; /* Unwind table. */
8355 unsigned long table_len; /* Length of unwind table. */
8356 bfd_vma seg_base; /* Starting address of segment. */
8357 Elf_Internal_Sym * symtab; /* The symbol table. */
8358 unsigned long nsyms; /* Number of symbols. */
8359 Elf_Internal_Sym * funtab; /* Sorted table of STT_FUNC symbols. */
8360 unsigned long nfuns; /* Number of entries in funtab. */
8361 char * strtab; /* The string table. */
8362 unsigned long strtab_size; /* Size of string table. */
948f632f 8363};
57346661 8364
015dc7e1 8365static bool
dda8d76d 8366dump_hppa_unwind (Filedata * filedata, struct hppa_unw_aux_info * aux)
57346661 8367{
2cf0635d 8368 struct hppa_unw_table_entry * tp;
948f632f 8369 unsigned long j, nfuns;
015dc7e1 8370 bool res = true;
948f632f
DA
8371
8372 aux->funtab = xmalloc (aux->nsyms * sizeof (Elf_Internal_Sym));
8373 for (nfuns = 0, j = 0; j < aux->nsyms; j++)
8374 if (aux->symtab[j].st_value && ELF_ST_TYPE (aux->symtab[j].st_info) == STT_FUNC)
8375 aux->funtab[nfuns++] = aux->symtab[j];
8376 aux->nfuns = nfuns;
8377 qsort (aux->funtab, aux->nfuns, sizeof (Elf_Internal_Sym), symcmp);
57346661 8378
57346661
AM
8379 for (tp = aux->table; tp < aux->table + aux->table_len; ++tp)
8380 {
8381 bfd_vma offset;
2cf0635d 8382 const char * procname;
57346661 8383
dda8d76d 8384 find_symbol_for_address (filedata, aux->funtab, aux->nfuns, aux->strtab,
57346661
AM
8385 aux->strtab_size, tp->start, &procname,
8386 &offset);
8387
8388 fputs ("\n<", stdout);
8389
8390 if (procname)
8391 {
8392 fputs (procname, stdout);
8393
8394 if (offset)
8395 printf ("+%lx", (unsigned long) offset);
8396 }
8397
8398 fputs (">: [", stdout);
8399 print_vma (tp->start.offset, PREFIX_HEX);
8400 fputc ('-', stdout);
8401 print_vma (tp->end.offset, PREFIX_HEX);
8402 printf ("]\n\t");
8403
18bd398b
NC
8404#define PF(_m) if (tp->_m) printf (#_m " ");
8405#define PV(_m) if (tp->_m) printf (#_m "=%d ", tp->_m);
57346661
AM
8406 PF(Cannot_unwind);
8407 PF(Millicode);
8408 PF(Millicode_save_sr0);
18bd398b 8409 /* PV(Region_description); */
57346661
AM
8410 PF(Entry_SR);
8411 PV(Entry_FR);
8412 PV(Entry_GR);
8413 PF(Args_stored);
8414 PF(Variable_Frame);
8415 PF(Separate_Package_Body);
8416 PF(Frame_Extension_Millicode);
8417 PF(Stack_Overflow_Check);
8418 PF(Two_Instruction_SP_Increment);
8419 PF(Ada_Region);
8420 PF(cxx_info);
8421 PF(cxx_try_catch);
8422 PF(sched_entry_seq);
8423 PF(Save_SP);
8424 PF(Save_RP);
8425 PF(Save_MRP_in_frame);
8426 PF(extn_ptr_defined);
8427 PF(Cleanup_defined);
8428 PF(MPE_XL_interrupt_marker);
8429 PF(HP_UX_interrupt_marker);
8430 PF(Large_frame);
8431 PF(Pseudo_SP_Set);
8432 PV(Total_frame_size);
8433#undef PF
8434#undef PV
8435 }
8436
18bd398b 8437 printf ("\n");
948f632f
DA
8438
8439 free (aux->funtab);
32ec8896
NC
8440
8441 return res;
57346661
AM
8442}
8443
015dc7e1 8444static bool
dda8d76d
NC
8445slurp_hppa_unwind_table (Filedata * filedata,
8446 struct hppa_unw_aux_info * aux,
8447 Elf_Internal_Shdr * sec)
57346661 8448{
1c0751b2 8449 unsigned long size, unw_ent_size, nentries, nrelas, i;
2cf0635d
NC
8450 Elf_Internal_Phdr * seg;
8451 struct hppa_unw_table_entry * tep;
8452 Elf_Internal_Shdr * relsec;
8453 Elf_Internal_Rela * rela;
8454 Elf_Internal_Rela * rp;
8455 unsigned char * table;
8456 unsigned char * tp;
8457 Elf_Internal_Sym * sym;
8458 const char * relname;
57346661 8459
57346661
AM
8460 /* First, find the starting address of the segment that includes
8461 this section. */
dda8d76d 8462 if (filedata->file_header.e_phnum)
57346661 8463 {
dda8d76d 8464 if (! get_program_headers (filedata))
015dc7e1 8465 return false;
57346661 8466
dda8d76d
NC
8467 for (seg = filedata->program_headers;
8468 seg < filedata->program_headers + filedata->file_header.e_phnum;
57346661
AM
8469 ++seg)
8470 {
8471 if (seg->p_type != PT_LOAD)
8472 continue;
8473
8474 if (sec->sh_addr >= seg->p_vaddr
8475 && (sec->sh_addr + sec->sh_size <= seg->p_vaddr + seg->p_memsz))
8476 {
8477 aux->seg_base = seg->p_vaddr;
8478 break;
8479 }
8480 }
8481 }
8482
8483 /* Second, build the unwind table from the contents of the unwind
8484 section. */
8485 size = sec->sh_size;
dda8d76d 8486 table = (unsigned char *) get_data (NULL, filedata, sec->sh_offset, 1, size,
3f5e193b 8487 _("unwind table"));
57346661 8488 if (!table)
015dc7e1 8489 return false;
57346661 8490
1c0751b2
DA
8491 unw_ent_size = 16;
8492 nentries = size / unw_ent_size;
8493 size = unw_ent_size * nentries;
57346661 8494
e3fdc001 8495 aux->table_len = nentries;
3f5e193b
NC
8496 tep = aux->table = (struct hppa_unw_table_entry *)
8497 xcmalloc (nentries, sizeof (aux->table[0]));
57346661 8498
1c0751b2 8499 for (tp = table; tp < table + size; tp += unw_ent_size, ++tep)
57346661
AM
8500 {
8501 unsigned int tmp1, tmp2;
8502
8503 tep->start.section = SHN_UNDEF;
8504 tep->end.section = SHN_UNDEF;
8505
1c0751b2
DA
8506 tep->start.offset = byte_get ((unsigned char *) tp + 0, 4);
8507 tep->end.offset = byte_get ((unsigned char *) tp + 4, 4);
8508 tmp1 = byte_get ((unsigned char *) tp + 8, 4);
8509 tmp2 = byte_get ((unsigned char *) tp + 12, 4);
8510
8511 tep->start.offset += aux->seg_base;
8512 tep->end.offset += aux->seg_base;
57346661
AM
8513
8514 tep->Cannot_unwind = (tmp1 >> 31) & 0x1;
8515 tep->Millicode = (tmp1 >> 30) & 0x1;
8516 tep->Millicode_save_sr0 = (tmp1 >> 29) & 0x1;
8517 tep->Region_description = (tmp1 >> 27) & 0x3;
8518 tep->reserved1 = (tmp1 >> 26) & 0x1;
8519 tep->Entry_SR = (tmp1 >> 25) & 0x1;
8520 tep->Entry_FR = (tmp1 >> 21) & 0xf;
8521 tep->Entry_GR = (tmp1 >> 16) & 0x1f;
8522 tep->Args_stored = (tmp1 >> 15) & 0x1;
8523 tep->Variable_Frame = (tmp1 >> 14) & 0x1;
8524 tep->Separate_Package_Body = (tmp1 >> 13) & 0x1;
8525 tep->Frame_Extension_Millicode = (tmp1 >> 12) & 0x1;
8526 tep->Stack_Overflow_Check = (tmp1 >> 11) & 0x1;
8527 tep->Two_Instruction_SP_Increment = (tmp1 >> 10) & 0x1;
8528 tep->Ada_Region = (tmp1 >> 9) & 0x1;
8529 tep->cxx_info = (tmp1 >> 8) & 0x1;
8530 tep->cxx_try_catch = (tmp1 >> 7) & 0x1;
8531 tep->sched_entry_seq = (tmp1 >> 6) & 0x1;
8532 tep->reserved2 = (tmp1 >> 5) & 0x1;
8533 tep->Save_SP = (tmp1 >> 4) & 0x1;
8534 tep->Save_RP = (tmp1 >> 3) & 0x1;
8535 tep->Save_MRP_in_frame = (tmp1 >> 2) & 0x1;
8536 tep->extn_ptr_defined = (tmp1 >> 1) & 0x1;
8537 tep->Cleanup_defined = tmp1 & 0x1;
8538
8539 tep->MPE_XL_interrupt_marker = (tmp2 >> 31) & 0x1;
8540 tep->HP_UX_interrupt_marker = (tmp2 >> 30) & 0x1;
8541 tep->Large_frame = (tmp2 >> 29) & 0x1;
8542 tep->Pseudo_SP_Set = (tmp2 >> 28) & 0x1;
8543 tep->reserved4 = (tmp2 >> 27) & 0x1;
8544 tep->Total_frame_size = tmp2 & 0x7ffffff;
57346661
AM
8545 }
8546 free (table);
8547
8548 /* Third, apply any relocations to the unwind table. */
dda8d76d
NC
8549 for (relsec = filedata->section_headers;
8550 relsec < filedata->section_headers + filedata->file_header.e_shnum;
57346661
AM
8551 ++relsec)
8552 {
8553 if (relsec->sh_type != SHT_RELA
dda8d76d
NC
8554 || relsec->sh_info >= filedata->file_header.e_shnum
8555 || filedata->section_headers + relsec->sh_info != sec)
57346661
AM
8556 continue;
8557
dda8d76d 8558 if (!slurp_rela_relocs (filedata, relsec->sh_offset, relsec->sh_size,
57346661 8559 & rela, & nrelas))
015dc7e1 8560 return false;
57346661
AM
8561
8562 for (rp = rela; rp < rela + nrelas; ++rp)
8563 {
4770fb94 8564 unsigned int sym_ndx;
726bd37d
AM
8565 unsigned int r_type = get_reloc_type (filedata, rp->r_info);
8566 relname = elf_hppa_reloc_type (r_type);
57346661 8567
726bd37d
AM
8568 if (relname == NULL)
8569 {
8570 warn (_("Skipping unknown relocation type: %u\n"), r_type);
8571 continue;
8572 }
8573
57346661 8574 /* R_PARISC_SEGREL32 or R_PARISC_SEGREL64. */
24d127aa 8575 if (! startswith (relname, "R_PARISC_SEGREL"))
57346661 8576 {
726bd37d 8577 warn (_("Skipping unexpected relocation type: %s\n"), relname);
57346661
AM
8578 continue;
8579 }
8580
8581 i = rp->r_offset / unw_ent_size;
726bd37d
AM
8582 if (i >= aux->table_len)
8583 {
8584 warn (_("Skipping reloc with overlarge offset: %lx\n"), i);
8585 continue;
8586 }
57346661 8587
4770fb94
AM
8588 sym_ndx = get_reloc_symindex (rp->r_info);
8589 if (sym_ndx >= aux->nsyms)
8590 {
8591 warn (_("Skipping reloc with invalid symbol index: %u\n"),
8592 sym_ndx);
8593 continue;
8594 }
8595 sym = aux->symtab + sym_ndx;
8596
43f6cd05 8597 switch ((rp->r_offset % unw_ent_size) / 4)
57346661
AM
8598 {
8599 case 0:
8600 aux->table[i].start.section = sym->st_shndx;
1e456d54 8601 aux->table[i].start.offset = sym->st_value + rp->r_addend;
57346661
AM
8602 break;
8603 case 1:
8604 aux->table[i].end.section = sym->st_shndx;
1e456d54 8605 aux->table[i].end.offset = sym->st_value + rp->r_addend;
57346661
AM
8606 break;
8607 default:
8608 break;
8609 }
8610 }
8611
8612 free (rela);
8613 }
8614
015dc7e1 8615 return true;
57346661
AM
8616}
8617
015dc7e1 8618static bool
dda8d76d 8619hppa_process_unwind (Filedata * filedata)
57346661 8620{
57346661 8621 struct hppa_unw_aux_info aux;
2cf0635d 8622 Elf_Internal_Shdr * unwsec = NULL;
2cf0635d 8623 Elf_Internal_Shdr * sec;
18bd398b 8624 unsigned long i;
015dc7e1 8625 bool res = true;
57346661 8626
dda8d76d 8627 if (filedata->string_table == NULL)
015dc7e1 8628 return false;
1b31d05e
NC
8629
8630 memset (& aux, 0, sizeof (aux));
57346661 8631
dda8d76d 8632 for (i = 0, sec = filedata->section_headers; i < filedata->file_header.e_shnum; ++i, ++sec)
57346661 8633 {
28d13567 8634 if (sec->sh_type == SHT_SYMTAB)
57346661 8635 {
28d13567 8636 if (aux.symtab)
4082ef84 8637 {
28d13567
AM
8638 error (_("Multiple symbol tables encountered\n"));
8639 free (aux.symtab);
8640 aux.symtab = NULL;
4082ef84 8641 free (aux.strtab);
28d13567 8642 aux.strtab = NULL;
4082ef84 8643 }
28d13567
AM
8644 if (!get_symtab (filedata, sec, &aux.symtab, &aux.nsyms,
8645 &aux.strtab, &aux.strtab_size))
015dc7e1 8646 return false;
57346661 8647 }
b9e920ec
AM
8648 else if (SECTION_NAME_VALID (sec)
8649 && streq (SECTION_NAME (sec), ".PARISC.unwind"))
57346661
AM
8650 unwsec = sec;
8651 }
8652
8653 if (!unwsec)
8654 printf (_("\nThere are no unwind sections in this file.\n"));
8655
dda8d76d 8656 for (i = 0, sec = filedata->section_headers; i < filedata->file_header.e_shnum; ++i, ++sec)
57346661 8657 {
b9e920ec
AM
8658 if (SECTION_NAME_VALID (sec)
8659 && streq (SECTION_NAME (sec), ".PARISC.unwind"))
57346661 8660 {
43f6cd05 8661 unsigned long num_unwind = sec->sh_size / 16;
dda8d76d 8662
d3a49aa8
AM
8663 printf (ngettext ("\nUnwind section '%s' at offset 0x%lx "
8664 "contains %lu entry:\n",
8665 "\nUnwind section '%s' at offset 0x%lx "
8666 "contains %lu entries:\n",
8667 num_unwind),
dda8d76d 8668 printable_section_name (filedata, sec),
57346661 8669 (unsigned long) sec->sh_offset,
d3a49aa8 8670 num_unwind);
57346661 8671
dda8d76d 8672 if (! slurp_hppa_unwind_table (filedata, &aux, sec))
015dc7e1 8673 res = false;
66b09c7e
S
8674
8675 if (res && aux.table_len > 0)
32ec8896 8676 {
dda8d76d 8677 if (! dump_hppa_unwind (filedata, &aux))
015dc7e1 8678 res = false;
32ec8896 8679 }
57346661 8680
9db70fc3 8681 free ((char *) aux.table);
57346661
AM
8682 aux.table = NULL;
8683 }
8684 }
8685
9db70fc3
AM
8686 free (aux.symtab);
8687 free ((char *) aux.strtab);
32ec8896
NC
8688
8689 return res;
57346661
AM
8690}
8691
0b6ae522
DJ
8692struct arm_section
8693{
a734115a
NC
8694 unsigned char * data; /* The unwind data. */
8695 Elf_Internal_Shdr * sec; /* The cached unwind section header. */
8696 Elf_Internal_Rela * rela; /* The cached relocations for this section. */
8697 unsigned long nrelas; /* The number of relocations. */
8698 unsigned int rel_type; /* REL or RELA ? */
8699 Elf_Internal_Rela * next_rela; /* Cyclic pointer to the next reloc to process. */
0b6ae522
DJ
8700};
8701
8702struct arm_unw_aux_info
8703{
dda8d76d 8704 Filedata * filedata; /* The file containing the unwind sections. */
a734115a
NC
8705 Elf_Internal_Sym * symtab; /* The file's symbol table. */
8706 unsigned long nsyms; /* Number of symbols. */
948f632f
DA
8707 Elf_Internal_Sym * funtab; /* Sorted table of STT_FUNC symbols. */
8708 unsigned long nfuns; /* Number of these symbols. */
a734115a
NC
8709 char * strtab; /* The file's string table. */
8710 unsigned long strtab_size; /* Size of string table. */
0b6ae522
DJ
8711};
8712
8713static const char *
dda8d76d
NC
8714arm_print_vma_and_name (Filedata * filedata,
8715 struct arm_unw_aux_info * aux,
8716 bfd_vma fn,
8717 struct absaddr addr)
0b6ae522
DJ
8718{
8719 const char *procname;
8720 bfd_vma sym_offset;
8721
8722 if (addr.section == SHN_UNDEF)
8723 addr.offset = fn;
8724
dda8d76d 8725 find_symbol_for_address (filedata, aux->funtab, aux->nfuns, aux->strtab,
0b6ae522
DJ
8726 aux->strtab_size, addr, &procname,
8727 &sym_offset);
8728
8729 print_vma (fn, PREFIX_HEX);
8730
8731 if (procname)
8732 {
8733 fputs (" <", stdout);
8734 fputs (procname, stdout);
8735
8736 if (sym_offset)
8737 printf ("+0x%lx", (unsigned long) sym_offset);
8738 fputc ('>', stdout);
8739 }
8740
8741 return procname;
8742}
8743
8744static void
8745arm_free_section (struct arm_section *arm_sec)
8746{
9db70fc3
AM
8747 free (arm_sec->data);
8748 free (arm_sec->rela);
0b6ae522
DJ
8749}
8750
a734115a
NC
8751/* 1) If SEC does not match the one cached in ARM_SEC, then free the current
8752 cached section and install SEC instead.
8753 2) Locate the 32-bit word at WORD_OFFSET in unwind section SEC
8754 and return its valued in * WORDP, relocating if necessary.
1b31d05e 8755 3) Update the NEXT_RELA field in ARM_SEC and store the section index and
a734115a 8756 relocation's offset in ADDR.
1b31d05e
NC
8757 4) If SYM_NAME is non-NULL and a relocation was applied, record the offset
8758 into the string table of the symbol associated with the reloc. If no
8759 reloc was applied store -1 there.
8760 5) Return TRUE upon success, FALSE otherwise. */
a734115a 8761
015dc7e1 8762static bool
dda8d76d
NC
8763get_unwind_section_word (Filedata * filedata,
8764 struct arm_unw_aux_info * aux,
1b31d05e
NC
8765 struct arm_section * arm_sec,
8766 Elf_Internal_Shdr * sec,
8767 bfd_vma word_offset,
8768 unsigned int * wordp,
8769 struct absaddr * addr,
8770 bfd_vma * sym_name)
0b6ae522
DJ
8771{
8772 Elf_Internal_Rela *rp;
8773 Elf_Internal_Sym *sym;
8774 const char * relname;
8775 unsigned int word;
015dc7e1 8776 bool wrapped;
0b6ae522 8777
e0a31db1 8778 if (sec == NULL || arm_sec == NULL)
015dc7e1 8779 return false;
e0a31db1 8780
0b6ae522
DJ
8781 addr->section = SHN_UNDEF;
8782 addr->offset = 0;
8783
1b31d05e
NC
8784 if (sym_name != NULL)
8785 *sym_name = (bfd_vma) -1;
8786
a734115a 8787 /* If necessary, update the section cache. */
0b6ae522
DJ
8788 if (sec != arm_sec->sec)
8789 {
8790 Elf_Internal_Shdr *relsec;
8791
8792 arm_free_section (arm_sec);
8793
8794 arm_sec->sec = sec;
dda8d76d 8795 arm_sec->data = get_data (NULL, aux->filedata, sec->sh_offset, 1,
0b6ae522 8796 sec->sh_size, _("unwind data"));
0b6ae522
DJ
8797 arm_sec->rela = NULL;
8798 arm_sec->nrelas = 0;
8799
dda8d76d
NC
8800 for (relsec = filedata->section_headers;
8801 relsec < filedata->section_headers + filedata->file_header.e_shnum;
0b6ae522
DJ
8802 ++relsec)
8803 {
dda8d76d
NC
8804 if (relsec->sh_info >= filedata->file_header.e_shnum
8805 || filedata->section_headers + relsec->sh_info != sec
1ae40aa4
NC
8806 /* PR 15745: Check the section type as well. */
8807 || (relsec->sh_type != SHT_REL
8808 && relsec->sh_type != SHT_RELA))
0b6ae522
DJ
8809 continue;
8810
a734115a 8811 arm_sec->rel_type = relsec->sh_type;
0b6ae522
DJ
8812 if (relsec->sh_type == SHT_REL)
8813 {
dda8d76d 8814 if (!slurp_rel_relocs (aux->filedata, relsec->sh_offset,
0b6ae522
DJ
8815 relsec->sh_size,
8816 & arm_sec->rela, & arm_sec->nrelas))
015dc7e1 8817 return false;
0b6ae522 8818 }
1ae40aa4 8819 else /* relsec->sh_type == SHT_RELA */
0b6ae522 8820 {
dda8d76d 8821 if (!slurp_rela_relocs (aux->filedata, relsec->sh_offset,
0b6ae522
DJ
8822 relsec->sh_size,
8823 & arm_sec->rela, & arm_sec->nrelas))
015dc7e1 8824 return false;
0b6ae522 8825 }
1ae40aa4 8826 break;
0b6ae522
DJ
8827 }
8828
8829 arm_sec->next_rela = arm_sec->rela;
8830 }
8831
a734115a 8832 /* If there is no unwind data we can do nothing. */
0b6ae522 8833 if (arm_sec->data == NULL)
015dc7e1 8834 return false;
0b6ae522 8835
e0a31db1 8836 /* If the offset is invalid then fail. */
f32ba729
NC
8837 if (/* PR 21343 *//* PR 18879 */
8838 sec->sh_size < 4
8839 || word_offset > (sec->sh_size - 4)
1a915552 8840 || ((bfd_signed_vma) word_offset) < 0)
015dc7e1 8841 return false;
e0a31db1 8842
a734115a 8843 /* Get the word at the required offset. */
0b6ae522
DJ
8844 word = byte_get (arm_sec->data + word_offset, 4);
8845
0eff7165
NC
8846 /* PR 17531: file: id:000001,src:001266+003044,op:splice,rep:128. */
8847 if (arm_sec->rela == NULL)
8848 {
8849 * wordp = word;
015dc7e1 8850 return true;
0eff7165
NC
8851 }
8852
a734115a 8853 /* Look through the relocs to find the one that applies to the provided offset. */
015dc7e1 8854 wrapped = false;
0b6ae522
DJ
8855 for (rp = arm_sec->next_rela; rp != arm_sec->rela + arm_sec->nrelas; rp++)
8856 {
8857 bfd_vma prelval, offset;
8858
8859 if (rp->r_offset > word_offset && !wrapped)
8860 {
8861 rp = arm_sec->rela;
015dc7e1 8862 wrapped = true;
0b6ae522
DJ
8863 }
8864 if (rp->r_offset > word_offset)
8865 break;
8866
8867 if (rp->r_offset & 3)
8868 {
8869 warn (_("Skipping unexpected relocation at offset 0x%lx\n"),
8870 (unsigned long) rp->r_offset);
8871 continue;
8872 }
8873
8874 if (rp->r_offset < word_offset)
8875 continue;
8876
74e1a04b
NC
8877 /* PR 17531: file: 027-161405-0.004 */
8878 if (aux->symtab == NULL)
8879 continue;
8880
0b6ae522
DJ
8881 if (arm_sec->rel_type == SHT_REL)
8882 {
8883 offset = word & 0x7fffffff;
8884 if (offset & 0x40000000)
8885 offset |= ~ (bfd_vma) 0x7fffffff;
8886 }
a734115a 8887 else if (arm_sec->rel_type == SHT_RELA)
0b6ae522 8888 offset = rp->r_addend;
a734115a 8889 else
74e1a04b
NC
8890 {
8891 error (_("Unknown section relocation type %d encountered\n"),
8892 arm_sec->rel_type);
8893 break;
8894 }
0b6ae522 8895
071436c6
NC
8896 /* PR 17531 file: 027-1241568-0.004. */
8897 if (ELF32_R_SYM (rp->r_info) >= aux->nsyms)
8898 {
8899 error (_("Bad symbol index in unwind relocation (%lu > %lu)\n"),
8900 (unsigned long) ELF32_R_SYM (rp->r_info), aux->nsyms);
8901 break;
8902 }
8903
8904 sym = aux->symtab + ELF32_R_SYM (rp->r_info);
0b6ae522
DJ
8905 offset += sym->st_value;
8906 prelval = offset - (arm_sec->sec->sh_addr + rp->r_offset);
8907
a734115a 8908 /* Check that we are processing the expected reloc type. */
dda8d76d 8909 if (filedata->file_header.e_machine == EM_ARM)
a734115a
NC
8910 {
8911 relname = elf_arm_reloc_type (ELF32_R_TYPE (rp->r_info));
071436c6
NC
8912 if (relname == NULL)
8913 {
8914 warn (_("Skipping unknown ARM relocation type: %d\n"),
8915 (int) ELF32_R_TYPE (rp->r_info));
8916 continue;
8917 }
a734115a
NC
8918
8919 if (streq (relname, "R_ARM_NONE"))
8920 continue;
0b4362b0 8921
a734115a
NC
8922 if (! streq (relname, "R_ARM_PREL31"))
8923 {
071436c6 8924 warn (_("Skipping unexpected ARM relocation type %s\n"), relname);
a734115a
NC
8925 continue;
8926 }
8927 }
dda8d76d 8928 else if (filedata->file_header.e_machine == EM_TI_C6000)
a734115a
NC
8929 {
8930 relname = elf_tic6x_reloc_type (ELF32_R_TYPE (rp->r_info));
071436c6
NC
8931 if (relname == NULL)
8932 {
8933 warn (_("Skipping unknown C6000 relocation type: %d\n"),
8934 (int) ELF32_R_TYPE (rp->r_info));
8935 continue;
8936 }
0b4362b0 8937
a734115a
NC
8938 if (streq (relname, "R_C6000_NONE"))
8939 continue;
8940
8941 if (! streq (relname, "R_C6000_PREL31"))
8942 {
071436c6 8943 warn (_("Skipping unexpected C6000 relocation type %s\n"), relname);
a734115a
NC
8944 continue;
8945 }
8946
8947 prelval >>= 1;
8948 }
8949 else
74e1a04b
NC
8950 {
8951 /* This function currently only supports ARM and TI unwinders. */
8952 warn (_("Only TI and ARM unwinders are currently supported\n"));
8953 break;
8954 }
fa197c1c 8955
0b6ae522
DJ
8956 word = (word & ~ (bfd_vma) 0x7fffffff) | (prelval & 0x7fffffff);
8957 addr->section = sym->st_shndx;
8958 addr->offset = offset;
74e1a04b 8959
1b31d05e
NC
8960 if (sym_name)
8961 * sym_name = sym->st_name;
0b6ae522
DJ
8962 break;
8963 }
8964
8965 *wordp = word;
8966 arm_sec->next_rela = rp;
8967
015dc7e1 8968 return true;
0b6ae522
DJ
8969}
8970
a734115a
NC
8971static const char *tic6x_unwind_regnames[16] =
8972{
0b4362b0
RM
8973 "A15", "B15", "B14", "B13", "B12", "B11", "B10", "B3",
8974 "A14", "A13", "A12", "A11", "A10",
a734115a
NC
8975 "[invalid reg 13]", "[invalid reg 14]", "[invalid reg 15]"
8976};
fa197c1c 8977
0b6ae522 8978static void
fa197c1c 8979decode_tic6x_unwind_regmask (unsigned int mask)
0b6ae522 8980{
fa197c1c
PB
8981 int i;
8982
8983 for (i = 12; mask; mask >>= 1, i--)
8984 {
8985 if (mask & 1)
8986 {
8987 fputs (tic6x_unwind_regnames[i], stdout);
8988 if (mask > 1)
8989 fputs (", ", stdout);
8990 }
8991 }
8992}
0b6ae522
DJ
8993
8994#define ADVANCE \
8995 if (remaining == 0 && more_words) \
8996 { \
8997 data_offset += 4; \
dda8d76d 8998 if (! get_unwind_section_word (filedata, aux, data_arm_sec, data_sec, \
1b31d05e 8999 data_offset, & word, & addr, NULL)) \
015dc7e1 9000 return false; \
0b6ae522
DJ
9001 remaining = 4; \
9002 more_words--; \
9003 } \
9004
9005#define GET_OP(OP) \
9006 ADVANCE; \
9007 if (remaining) \
9008 { \
9009 remaining--; \
9010 (OP) = word >> 24; \
9011 word <<= 8; \
9012 } \
9013 else \
9014 { \
2b692964 9015 printf (_("[Truncated opcode]\n")); \
015dc7e1 9016 return false; \
0b6ae522 9017 } \
cc5914eb 9018 printf ("0x%02x ", OP)
0b6ae522 9019
015dc7e1 9020static bool
dda8d76d
NC
9021decode_arm_unwind_bytecode (Filedata * filedata,
9022 struct arm_unw_aux_info * aux,
948f632f
DA
9023 unsigned int word,
9024 unsigned int remaining,
9025 unsigned int more_words,
9026 bfd_vma data_offset,
9027 Elf_Internal_Shdr * data_sec,
9028 struct arm_section * data_arm_sec)
fa197c1c
PB
9029{
9030 struct absaddr addr;
015dc7e1 9031 bool res = true;
0b6ae522
DJ
9032
9033 /* Decode the unwinding instructions. */
9034 while (1)
9035 {
9036 unsigned int op, op2;
9037
9038 ADVANCE;
9039 if (remaining == 0)
9040 break;
9041 remaining--;
9042 op = word >> 24;
9043 word <<= 8;
9044
cc5914eb 9045 printf (" 0x%02x ", op);
0b6ae522
DJ
9046
9047 if ((op & 0xc0) == 0x00)
9048 {
9049 int offset = ((op & 0x3f) << 2) + 4;
61865e30 9050
cc5914eb 9051 printf (" vsp = vsp + %d", offset);
0b6ae522
DJ
9052 }
9053 else if ((op & 0xc0) == 0x40)
9054 {
9055 int offset = ((op & 0x3f) << 2) + 4;
61865e30 9056
cc5914eb 9057 printf (" vsp = vsp - %d", offset);
0b6ae522
DJ
9058 }
9059 else if ((op & 0xf0) == 0x80)
9060 {
9061 GET_OP (op2);
9062 if (op == 0x80 && op2 == 0)
9063 printf (_("Refuse to unwind"));
9064 else
9065 {
9066 unsigned int mask = ((op & 0x0f) << 8) | op2;
015dc7e1 9067 bool first = true;
0b6ae522 9068 int i;
2b692964 9069
0b6ae522
DJ
9070 printf ("pop {");
9071 for (i = 0; i < 12; i++)
9072 if (mask & (1 << i))
9073 {
9074 if (first)
015dc7e1 9075 first = false;
0b6ae522
DJ
9076 else
9077 printf (", ");
9078 printf ("r%d", 4 + i);
9079 }
9080 printf ("}");
9081 }
9082 }
9083 else if ((op & 0xf0) == 0x90)
9084 {
9085 if (op == 0x9d || op == 0x9f)
9086 printf (_(" [Reserved]"));
9087 else
cc5914eb 9088 printf (" vsp = r%d", op & 0x0f);
0b6ae522
DJ
9089 }
9090 else if ((op & 0xf0) == 0xa0)
9091 {
9092 int end = 4 + (op & 0x07);
015dc7e1 9093 bool first = true;
0b6ae522 9094 int i;
61865e30 9095
0b6ae522
DJ
9096 printf (" pop {");
9097 for (i = 4; i <= end; i++)
9098 {
9099 if (first)
015dc7e1 9100 first = false;
0b6ae522
DJ
9101 else
9102 printf (", ");
9103 printf ("r%d", i);
9104 }
9105 if (op & 0x08)
9106 {
1b31d05e 9107 if (!first)
0b6ae522
DJ
9108 printf (", ");
9109 printf ("r14");
9110 }
9111 printf ("}");
9112 }
9113 else if (op == 0xb0)
9114 printf (_(" finish"));
9115 else if (op == 0xb1)
9116 {
9117 GET_OP (op2);
9118 if (op2 == 0 || (op2 & 0xf0) != 0)
9119 printf (_("[Spare]"));
9120 else
9121 {
9122 unsigned int mask = op2 & 0x0f;
015dc7e1 9123 bool first = true;
0b6ae522 9124 int i;
61865e30 9125
0b6ae522
DJ
9126 printf ("pop {");
9127 for (i = 0; i < 12; i++)
9128 if (mask & (1 << i))
9129 {
9130 if (first)
015dc7e1 9131 first = false;
0b6ae522
DJ
9132 else
9133 printf (", ");
9134 printf ("r%d", i);
9135 }
9136 printf ("}");
9137 }
9138 }
9139 else if (op == 0xb2)
9140 {
b115cf96 9141 unsigned char buf[9];
0b6ae522
DJ
9142 unsigned int i, len;
9143 unsigned long offset;
61865e30 9144
b115cf96 9145 for (i = 0; i < sizeof (buf); i++)
0b6ae522
DJ
9146 {
9147 GET_OP (buf[i]);
9148 if ((buf[i] & 0x80) == 0)
9149 break;
9150 }
4082ef84 9151 if (i == sizeof (buf))
32ec8896 9152 {
27a45f42 9153 error (_("corrupt change to vsp\n"));
015dc7e1 9154 res = false;
32ec8896 9155 }
4082ef84
NC
9156 else
9157 {
015dc7e1 9158 offset = read_leb128 (buf, buf + i + 1, false, &len, NULL);
4082ef84
NC
9159 assert (len == i + 1);
9160 offset = offset * 4 + 0x204;
9161 printf ("vsp = vsp + %ld", offset);
9162 }
0b6ae522 9163 }
61865e30 9164 else if (op == 0xb3 || op == 0xc8 || op == 0xc9)
0b6ae522 9165 {
61865e30
NC
9166 unsigned int first, last;
9167
9168 GET_OP (op2);
9169 first = op2 >> 4;
9170 last = op2 & 0x0f;
9171 if (op == 0xc8)
9172 first = first + 16;
9173 printf ("pop {D%d", first);
9174 if (last)
9175 printf ("-D%d", first + last);
9176 printf ("}");
9177 }
9178 else if ((op & 0xf8) == 0xb8 || (op & 0xf8) == 0xd0)
9179 {
9180 unsigned int count = op & 0x07;
9181
9182 printf ("pop {D8");
9183 if (count)
9184 printf ("-D%d", 8 + count);
9185 printf ("}");
9186 }
9187 else if (op >= 0xc0 && op <= 0xc5)
9188 {
9189 unsigned int count = op & 0x07;
9190
9191 printf (" pop {wR10");
9192 if (count)
9193 printf ("-wR%d", 10 + count);
9194 printf ("}");
9195 }
9196 else if (op == 0xc6)
9197 {
9198 unsigned int first, last;
9199
9200 GET_OP (op2);
9201 first = op2 >> 4;
9202 last = op2 & 0x0f;
9203 printf ("pop {wR%d", first);
9204 if (last)
9205 printf ("-wR%d", first + last);
9206 printf ("}");
9207 }
9208 else if (op == 0xc7)
9209 {
9210 GET_OP (op2);
9211 if (op2 == 0 || (op2 & 0xf0) != 0)
9212 printf (_("[Spare]"));
0b6ae522
DJ
9213 else
9214 {
61865e30 9215 unsigned int mask = op2 & 0x0f;
015dc7e1 9216 bool first = true;
61865e30
NC
9217 int i;
9218
9219 printf ("pop {");
9220 for (i = 0; i < 4; i++)
9221 if (mask & (1 << i))
9222 {
9223 if (first)
015dc7e1 9224 first = false;
61865e30
NC
9225 else
9226 printf (", ");
9227 printf ("wCGR%d", i);
9228 }
9229 printf ("}");
0b6ae522
DJ
9230 }
9231 }
61865e30 9232 else
32ec8896
NC
9233 {
9234 printf (_(" [unsupported opcode]"));
015dc7e1 9235 res = false;
32ec8896
NC
9236 }
9237
0b6ae522
DJ
9238 printf ("\n");
9239 }
32ec8896
NC
9240
9241 return res;
fa197c1c
PB
9242}
9243
015dc7e1 9244static bool
dda8d76d
NC
9245decode_tic6x_unwind_bytecode (Filedata * filedata,
9246 struct arm_unw_aux_info * aux,
948f632f
DA
9247 unsigned int word,
9248 unsigned int remaining,
9249 unsigned int more_words,
9250 bfd_vma data_offset,
9251 Elf_Internal_Shdr * data_sec,
9252 struct arm_section * data_arm_sec)
fa197c1c
PB
9253{
9254 struct absaddr addr;
9255
9256 /* Decode the unwinding instructions. */
9257 while (1)
9258 {
9259 unsigned int op, op2;
9260
9261 ADVANCE;
9262 if (remaining == 0)
9263 break;
9264 remaining--;
9265 op = word >> 24;
9266 word <<= 8;
9267
9cf03b7e 9268 printf (" 0x%02x ", op);
fa197c1c
PB
9269
9270 if ((op & 0xc0) == 0x00)
9271 {
9272 int offset = ((op & 0x3f) << 3) + 8;
9cf03b7e 9273 printf (" sp = sp + %d", offset);
fa197c1c
PB
9274 }
9275 else if ((op & 0xc0) == 0x80)
9276 {
9277 GET_OP (op2);
9278 if (op == 0x80 && op2 == 0)
9279 printf (_("Refuse to unwind"));
9280 else
9281 {
9282 unsigned int mask = ((op & 0x1f) << 8) | op2;
9283 if (op & 0x20)
9284 printf ("pop compact {");
9285 else
9286 printf ("pop {");
9287
9288 decode_tic6x_unwind_regmask (mask);
9289 printf("}");
9290 }
9291 }
9292 else if ((op & 0xf0) == 0xc0)
9293 {
9294 unsigned int reg;
9295 unsigned int nregs;
9296 unsigned int i;
9297 const char *name;
a734115a
NC
9298 struct
9299 {
32ec8896
NC
9300 unsigned int offset;
9301 unsigned int reg;
fa197c1c
PB
9302 } regpos[16];
9303
9304 /* Scan entire instruction first so that GET_OP output is not
9305 interleaved with disassembly. */
9306 nregs = 0;
9307 for (i = 0; nregs < (op & 0xf); i++)
9308 {
9309 GET_OP (op2);
9310 reg = op2 >> 4;
9311 if (reg != 0xf)
9312 {
9313 regpos[nregs].offset = i * 2;
9314 regpos[nregs].reg = reg;
9315 nregs++;
9316 }
9317
9318 reg = op2 & 0xf;
9319 if (reg != 0xf)
9320 {
9321 regpos[nregs].offset = i * 2 + 1;
9322 regpos[nregs].reg = reg;
9323 nregs++;
9324 }
9325 }
9326
9327 printf (_("pop frame {"));
18344509 9328 if (nregs == 0)
fa197c1c 9329 {
18344509
NC
9330 printf (_("*corrupt* - no registers specified"));
9331 }
9332 else
9333 {
9334 reg = nregs - 1;
9335 for (i = i * 2; i > 0; i--)
fa197c1c 9336 {
18344509
NC
9337 if (regpos[reg].offset == i - 1)
9338 {
9339 name = tic6x_unwind_regnames[regpos[reg].reg];
9340 if (reg > 0)
9341 reg--;
9342 }
9343 else
9344 name = _("[pad]");
fa197c1c 9345
18344509
NC
9346 fputs (name, stdout);
9347 if (i > 1)
9348 printf (", ");
9349 }
fa197c1c
PB
9350 }
9351
9352 printf ("}");
9353 }
9354 else if (op == 0xd0)
9355 printf (" MOV FP, SP");
9356 else if (op == 0xd1)
9357 printf (" __c6xabi_pop_rts");
9358 else if (op == 0xd2)
9359 {
9360 unsigned char buf[9];
9361 unsigned int i, len;
9362 unsigned long offset;
a734115a 9363
fa197c1c
PB
9364 for (i = 0; i < sizeof (buf); i++)
9365 {
9366 GET_OP (buf[i]);
9367 if ((buf[i] & 0x80) == 0)
9368 break;
9369 }
0eff7165
NC
9370 /* PR 17531: file: id:000001,src:001906+004739,op:splice,rep:2. */
9371 if (i == sizeof (buf))
9372 {
0eff7165 9373 warn (_("Corrupt stack pointer adjustment detected\n"));
015dc7e1 9374 return false;
0eff7165 9375 }
948f632f 9376
015dc7e1 9377 offset = read_leb128 (buf, buf + i + 1, false, &len, NULL);
fa197c1c
PB
9378 assert (len == i + 1);
9379 offset = offset * 8 + 0x408;
9380 printf (_("sp = sp + %ld"), offset);
9381 }
9382 else if ((op & 0xf0) == 0xe0)
9383 {
9384 if ((op & 0x0f) == 7)
9385 printf (" RETURN");
9386 else
9387 printf (" MV %s, B3", tic6x_unwind_regnames[op & 0x0f]);
9388 }
9389 else
9390 {
9391 printf (_(" [unsupported opcode]"));
9392 }
9393 putchar ('\n');
9394 }
32ec8896 9395
015dc7e1 9396 return true;
fa197c1c
PB
9397}
9398
9399static bfd_vma
dda8d76d 9400arm_expand_prel31 (Filedata * filedata, bfd_vma word, bfd_vma where)
fa197c1c
PB
9401{
9402 bfd_vma offset;
9403
9404 offset = word & 0x7fffffff;
9405 if (offset & 0x40000000)
9406 offset |= ~ (bfd_vma) 0x7fffffff;
9407
dda8d76d 9408 if (filedata->file_header.e_machine == EM_TI_C6000)
fa197c1c
PB
9409 offset <<= 1;
9410
9411 return offset + where;
9412}
9413
015dc7e1 9414static bool
dda8d76d
NC
9415decode_arm_unwind (Filedata * filedata,
9416 struct arm_unw_aux_info * aux,
1b31d05e
NC
9417 unsigned int word,
9418 unsigned int remaining,
9419 bfd_vma data_offset,
9420 Elf_Internal_Shdr * data_sec,
9421 struct arm_section * data_arm_sec)
fa197c1c
PB
9422{
9423 int per_index;
9424 unsigned int more_words = 0;
37e14bc3 9425 struct absaddr addr;
1b31d05e 9426 bfd_vma sym_name = (bfd_vma) -1;
015dc7e1 9427 bool res = true;
fa197c1c
PB
9428
9429 if (remaining == 0)
9430 {
1b31d05e
NC
9431 /* Fetch the first word.
9432 Note - when decoding an object file the address extracted
9433 here will always be 0. So we also pass in the sym_name
9434 parameter so that we can find the symbol associated with
9435 the personality routine. */
dda8d76d 9436 if (! get_unwind_section_word (filedata, aux, data_arm_sec, data_sec, data_offset,
1b31d05e 9437 & word, & addr, & sym_name))
015dc7e1 9438 return false;
1b31d05e 9439
fa197c1c
PB
9440 remaining = 4;
9441 }
c93dbb25
CZ
9442 else
9443 {
9444 addr.section = SHN_UNDEF;
9445 addr.offset = 0;
9446 }
fa197c1c
PB
9447
9448 if ((word & 0x80000000) == 0)
9449 {
9450 /* Expand prel31 for personality routine. */
9451 bfd_vma fn;
9452 const char *procname;
9453
dda8d76d 9454 fn = arm_expand_prel31 (filedata, word, data_sec->sh_addr + data_offset);
fa197c1c 9455 printf (_(" Personality routine: "));
1b31d05e
NC
9456 if (fn == 0
9457 && addr.section == SHN_UNDEF && addr.offset == 0
9458 && sym_name != (bfd_vma) -1 && sym_name < aux->strtab_size)
9459 {
9460 procname = aux->strtab + sym_name;
9461 print_vma (fn, PREFIX_HEX);
9462 if (procname)
9463 {
9464 fputs (" <", stdout);
9465 fputs (procname, stdout);
9466 fputc ('>', stdout);
9467 }
9468 }
9469 else
dda8d76d 9470 procname = arm_print_vma_and_name (filedata, aux, fn, addr);
fa197c1c
PB
9471 fputc ('\n', stdout);
9472
9473 /* The GCC personality routines use the standard compact
9474 encoding, starting with one byte giving the number of
9475 words. */
9476 if (procname != NULL
24d127aa
ML
9477 && (startswith (procname, "__gcc_personality_v0")
9478 || startswith (procname, "__gxx_personality_v0")
9479 || startswith (procname, "__gcj_personality_v0")
9480 || startswith (procname, "__gnu_objc_personality_v0")))
fa197c1c
PB
9481 {
9482 remaining = 0;
9483 more_words = 1;
9484 ADVANCE;
9485 if (!remaining)
9486 {
9487 printf (_(" [Truncated data]\n"));
015dc7e1 9488 return false;
fa197c1c
PB
9489 }
9490 more_words = word >> 24;
9491 word <<= 8;
9492 remaining--;
9493 per_index = -1;
9494 }
9495 else
015dc7e1 9496 return true;
fa197c1c
PB
9497 }
9498 else
9499 {
1b31d05e 9500 /* ARM EHABI Section 6.3:
0b4362b0 9501
1b31d05e 9502 An exception-handling table entry for the compact model looks like:
0b4362b0 9503
1b31d05e
NC
9504 31 30-28 27-24 23-0
9505 -- ----- ----- ----
9506 1 0 index Data for personalityRoutine[index] */
9507
dda8d76d 9508 if (filedata->file_header.e_machine == EM_ARM
1b31d05e 9509 && (word & 0x70000000))
32ec8896
NC
9510 {
9511 warn (_("Corrupt ARM compact model table entry: %x \n"), word);
015dc7e1 9512 res = false;
32ec8896 9513 }
1b31d05e 9514
fa197c1c 9515 per_index = (word >> 24) & 0x7f;
1b31d05e 9516 printf (_(" Compact model index: %d\n"), per_index);
fa197c1c
PB
9517 if (per_index == 0)
9518 {
9519 more_words = 0;
9520 word <<= 8;
9521 remaining--;
9522 }
9523 else if (per_index < 3)
9524 {
9525 more_words = (word >> 16) & 0xff;
9526 word <<= 16;
9527 remaining -= 2;
9528 }
9529 }
9530
dda8d76d 9531 switch (filedata->file_header.e_machine)
fa197c1c
PB
9532 {
9533 case EM_ARM:
9534 if (per_index < 3)
9535 {
dda8d76d 9536 if (! decode_arm_unwind_bytecode (filedata, aux, word, remaining, more_words,
32ec8896 9537 data_offset, data_sec, data_arm_sec))
015dc7e1 9538 res = false;
fa197c1c
PB
9539 }
9540 else
1b31d05e
NC
9541 {
9542 warn (_("Unknown ARM compact model index encountered\n"));
9543 printf (_(" [reserved]\n"));
015dc7e1 9544 res = false;
1b31d05e 9545 }
fa197c1c
PB
9546 break;
9547
9548 case EM_TI_C6000:
9549 if (per_index < 3)
9550 {
dda8d76d 9551 if (! decode_tic6x_unwind_bytecode (filedata, aux, word, remaining, more_words,
32ec8896 9552 data_offset, data_sec, data_arm_sec))
015dc7e1 9553 res = false;
fa197c1c
PB
9554 }
9555 else if (per_index < 5)
9556 {
9557 if (((word >> 17) & 0x7f) == 0x7f)
9558 printf (_(" Restore stack from frame pointer\n"));
9559 else
9560 printf (_(" Stack increment %d\n"), (word >> 14) & 0x1fc);
9561 printf (_(" Registers restored: "));
9562 if (per_index == 4)
9563 printf (" (compact) ");
9564 decode_tic6x_unwind_regmask ((word >> 4) & 0x1fff);
9565 putchar ('\n');
9566 printf (_(" Return register: %s\n"),
9567 tic6x_unwind_regnames[word & 0xf]);
9568 }
9569 else
1b31d05e 9570 printf (_(" [reserved (%d)]\n"), per_index);
fa197c1c
PB
9571 break;
9572
9573 default:
74e1a04b 9574 error (_("Unsupported architecture type %d encountered when decoding unwind table\n"),
dda8d76d 9575 filedata->file_header.e_machine);
015dc7e1 9576 res = false;
fa197c1c 9577 }
0b6ae522
DJ
9578
9579 /* Decode the descriptors. Not implemented. */
32ec8896
NC
9580
9581 return res;
0b6ae522
DJ
9582}
9583
015dc7e1 9584static bool
dda8d76d
NC
9585dump_arm_unwind (Filedata * filedata,
9586 struct arm_unw_aux_info * aux,
9587 Elf_Internal_Shdr * exidx_sec)
0b6ae522
DJ
9588{
9589 struct arm_section exidx_arm_sec, extab_arm_sec;
9590 unsigned int i, exidx_len;
948f632f 9591 unsigned long j, nfuns;
015dc7e1 9592 bool res = true;
0b6ae522
DJ
9593
9594 memset (&exidx_arm_sec, 0, sizeof (exidx_arm_sec));
9595 memset (&extab_arm_sec, 0, sizeof (extab_arm_sec));
9596 exidx_len = exidx_sec->sh_size / 8;
9597
948f632f
DA
9598 aux->funtab = xmalloc (aux->nsyms * sizeof (Elf_Internal_Sym));
9599 for (nfuns = 0, j = 0; j < aux->nsyms; j++)
9600 if (aux->symtab[j].st_value && ELF_ST_TYPE (aux->symtab[j].st_info) == STT_FUNC)
9601 aux->funtab[nfuns++] = aux->symtab[j];
9602 aux->nfuns = nfuns;
9603 qsort (aux->funtab, aux->nfuns, sizeof (Elf_Internal_Sym), symcmp);
9604
0b6ae522
DJ
9605 for (i = 0; i < exidx_len; i++)
9606 {
9607 unsigned int exidx_fn, exidx_entry;
9608 struct absaddr fn_addr, entry_addr;
9609 bfd_vma fn;
9610
9611 fputc ('\n', stdout);
9612
dda8d76d 9613 if (! get_unwind_section_word (filedata, aux, & exidx_arm_sec, exidx_sec,
1b31d05e 9614 8 * i, & exidx_fn, & fn_addr, NULL)
dda8d76d 9615 || ! get_unwind_section_word (filedata, aux, & exidx_arm_sec, exidx_sec,
1b31d05e 9616 8 * i + 4, & exidx_entry, & entry_addr, NULL))
0b6ae522 9617 {
948f632f 9618 free (aux->funtab);
1b31d05e
NC
9619 arm_free_section (& exidx_arm_sec);
9620 arm_free_section (& extab_arm_sec);
015dc7e1 9621 return false;
0b6ae522
DJ
9622 }
9623
83c257ca
NC
9624 /* ARM EHABI, Section 5:
9625 An index table entry consists of 2 words.
9626 The first word contains a prel31 offset to the start of a function, with bit 31 clear. */
9627 if (exidx_fn & 0x80000000)
32ec8896
NC
9628 {
9629 warn (_("corrupt index table entry: %x\n"), exidx_fn);
015dc7e1 9630 res = false;
32ec8896 9631 }
83c257ca 9632
dda8d76d 9633 fn = arm_expand_prel31 (filedata, exidx_fn, exidx_sec->sh_addr + 8 * i);
0b6ae522 9634
dda8d76d 9635 arm_print_vma_and_name (filedata, aux, fn, fn_addr);
0b6ae522
DJ
9636 fputs (": ", stdout);
9637
9638 if (exidx_entry == 1)
9639 {
9640 print_vma (exidx_entry, PREFIX_HEX);
9641 fputs (" [cantunwind]\n", stdout);
9642 }
9643 else if (exidx_entry & 0x80000000)
9644 {
9645 print_vma (exidx_entry, PREFIX_HEX);
9646 fputc ('\n', stdout);
dda8d76d 9647 decode_arm_unwind (filedata, aux, exidx_entry, 4, 0, NULL, NULL);
0b6ae522
DJ
9648 }
9649 else
9650 {
8f73510c 9651 bfd_vma table, table_offset = 0;
0b6ae522
DJ
9652 Elf_Internal_Shdr *table_sec;
9653
9654 fputs ("@", stdout);
dda8d76d 9655 table = arm_expand_prel31 (filedata, exidx_entry, exidx_sec->sh_addr + 8 * i + 4);
0b6ae522
DJ
9656 print_vma (table, PREFIX_HEX);
9657 printf ("\n");
9658
9659 /* Locate the matching .ARM.extab. */
9660 if (entry_addr.section != SHN_UNDEF
dda8d76d 9661 && entry_addr.section < filedata->file_header.e_shnum)
0b6ae522 9662 {
dda8d76d 9663 table_sec = filedata->section_headers + entry_addr.section;
0b6ae522 9664 table_offset = entry_addr.offset;
1a915552
NC
9665 /* PR 18879 */
9666 if (table_offset > table_sec->sh_size
9667 || ((bfd_signed_vma) table_offset) < 0)
9668 {
9669 warn (_("Unwind entry contains corrupt offset (0x%lx) into section %s\n"),
9670 (unsigned long) table_offset,
dda8d76d 9671 printable_section_name (filedata, table_sec));
015dc7e1 9672 res = false;
1a915552
NC
9673 continue;
9674 }
0b6ae522
DJ
9675 }
9676 else
9677 {
dda8d76d 9678 table_sec = find_section_by_address (filedata, table);
0b6ae522
DJ
9679 if (table_sec != NULL)
9680 table_offset = table - table_sec->sh_addr;
9681 }
32ec8896 9682
0b6ae522
DJ
9683 if (table_sec == NULL)
9684 {
9685 warn (_("Could not locate .ARM.extab section containing 0x%lx.\n"),
9686 (unsigned long) table);
015dc7e1 9687 res = false;
0b6ae522
DJ
9688 continue;
9689 }
32ec8896 9690
dda8d76d 9691 if (! decode_arm_unwind (filedata, aux, 0, 0, table_offset, table_sec,
32ec8896 9692 &extab_arm_sec))
015dc7e1 9693 res = false;
0b6ae522
DJ
9694 }
9695 }
9696
9697 printf ("\n");
9698
948f632f 9699 free (aux->funtab);
0b6ae522
DJ
9700 arm_free_section (&exidx_arm_sec);
9701 arm_free_section (&extab_arm_sec);
32ec8896
NC
9702
9703 return res;
0b6ae522
DJ
9704}
9705
fa197c1c 9706/* Used for both ARM and C6X unwinding tables. */
1b31d05e 9707
015dc7e1 9708static bool
dda8d76d 9709arm_process_unwind (Filedata * filedata)
0b6ae522
DJ
9710{
9711 struct arm_unw_aux_info aux;
9712 Elf_Internal_Shdr *unwsec = NULL;
0b6ae522
DJ
9713 Elf_Internal_Shdr *sec;
9714 unsigned long i;
fa197c1c 9715 unsigned int sec_type;
015dc7e1 9716 bool res = true;
0b6ae522 9717
dda8d76d 9718 switch (filedata->file_header.e_machine)
fa197c1c
PB
9719 {
9720 case EM_ARM:
9721 sec_type = SHT_ARM_EXIDX;
9722 break;
9723
9724 case EM_TI_C6000:
9725 sec_type = SHT_C6000_UNWIND;
9726 break;
9727
0b4362b0 9728 default:
74e1a04b 9729 error (_("Unsupported architecture type %d encountered when processing unwind table\n"),
dda8d76d 9730 filedata->file_header.e_machine);
015dc7e1 9731 return false;
fa197c1c
PB
9732 }
9733
dda8d76d 9734 if (filedata->string_table == NULL)
015dc7e1 9735 return false;
1b31d05e
NC
9736
9737 memset (& aux, 0, sizeof (aux));
dda8d76d 9738 aux.filedata = filedata;
0b6ae522 9739
dda8d76d 9740 for (i = 0, sec = filedata->section_headers; i < filedata->file_header.e_shnum; ++i, ++sec)
0b6ae522 9741 {
28d13567 9742 if (sec->sh_type == SHT_SYMTAB)
0b6ae522 9743 {
28d13567 9744 if (aux.symtab)
74e1a04b 9745 {
28d13567
AM
9746 error (_("Multiple symbol tables encountered\n"));
9747 free (aux.symtab);
9748 aux.symtab = NULL;
74e1a04b 9749 free (aux.strtab);
28d13567 9750 aux.strtab = NULL;
74e1a04b 9751 }
28d13567
AM
9752 if (!get_symtab (filedata, sec, &aux.symtab, &aux.nsyms,
9753 &aux.strtab, &aux.strtab_size))
015dc7e1 9754 return false;
0b6ae522 9755 }
fa197c1c 9756 else if (sec->sh_type == sec_type)
0b6ae522
DJ
9757 unwsec = sec;
9758 }
9759
1b31d05e 9760 if (unwsec == NULL)
0b6ae522 9761 printf (_("\nThere are no unwind sections in this file.\n"));
1b31d05e 9762 else
dda8d76d 9763 for (i = 0, sec = filedata->section_headers; i < filedata->file_header.e_shnum; ++i, ++sec)
1b31d05e
NC
9764 {
9765 if (sec->sh_type == sec_type)
9766 {
d3a49aa8
AM
9767 unsigned long num_unwind = sec->sh_size / (2 * eh_addr_size);
9768 printf (ngettext ("\nUnwind section '%s' at offset 0x%lx "
9769 "contains %lu entry:\n",
9770 "\nUnwind section '%s' at offset 0x%lx "
9771 "contains %lu entries:\n",
9772 num_unwind),
dda8d76d 9773 printable_section_name (filedata, sec),
1b31d05e 9774 (unsigned long) sec->sh_offset,
d3a49aa8 9775 num_unwind);
0b6ae522 9776
dda8d76d 9777 if (! dump_arm_unwind (filedata, &aux, sec))
015dc7e1 9778 res = false;
1b31d05e
NC
9779 }
9780 }
0b6ae522 9781
9db70fc3
AM
9782 free (aux.symtab);
9783 free ((char *) aux.strtab);
32ec8896
NC
9784
9785 return res;
0b6ae522
DJ
9786}
9787
015dc7e1 9788static bool
dda8d76d 9789process_unwind (Filedata * filedata)
57346661 9790{
2cf0635d
NC
9791 struct unwind_handler
9792 {
32ec8896 9793 unsigned int machtype;
015dc7e1 9794 bool (* handler)(Filedata *);
2cf0635d
NC
9795 } handlers[] =
9796 {
0b6ae522 9797 { EM_ARM, arm_process_unwind },
57346661
AM
9798 { EM_IA_64, ia64_process_unwind },
9799 { EM_PARISC, hppa_process_unwind },
fa197c1c 9800 { EM_TI_C6000, arm_process_unwind },
32ec8896 9801 { 0, NULL }
57346661
AM
9802 };
9803 int i;
9804
9805 if (!do_unwind)
015dc7e1 9806 return true;
57346661
AM
9807
9808 for (i = 0; handlers[i].handler != NULL; i++)
dda8d76d
NC
9809 if (filedata->file_header.e_machine == handlers[i].machtype)
9810 return handlers[i].handler (filedata);
57346661 9811
1b31d05e 9812 printf (_("\nThe decoding of unwind sections for machine type %s is not currently supported.\n"),
dda8d76d 9813 get_machine_name (filedata->file_header.e_machine));
015dc7e1 9814 return true;
57346661
AM
9815}
9816
37c18eed
SD
9817static void
9818dynamic_section_aarch64_val (Elf_Internal_Dyn * entry)
9819{
9820 switch (entry->d_tag)
9821 {
9822 case DT_AARCH64_BTI_PLT:
1dbade74 9823 case DT_AARCH64_PAC_PLT:
37c18eed
SD
9824 break;
9825 default:
9826 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
9827 break;
9828 }
9829 putchar ('\n');
9830}
9831
252b5132 9832static void
978c4450 9833dynamic_section_mips_val (Filedata * filedata, Elf_Internal_Dyn * entry)
252b5132
RH
9834{
9835 switch (entry->d_tag)
9836 {
9837 case DT_MIPS_FLAGS:
9838 if (entry->d_un.d_val == 0)
4b68bca3 9839 printf (_("NONE"));
252b5132
RH
9840 else
9841 {
9842 static const char * opts[] =
9843 {
9844 "QUICKSTART", "NOTPOT", "NO_LIBRARY_REPLACEMENT",
9845 "NO_MOVE", "SGI_ONLY", "GUARANTEE_INIT", "DELTA_C_PLUS_PLUS",
9846 "GUARANTEE_START_INIT", "PIXIE", "DEFAULT_DELAY_LOAD",
9847 "REQUICKSTART", "REQUICKSTARTED", "CORD", "NO_UNRES_UNDEF",
9848 "RLD_ORDER_SAFE"
9849 };
9850 unsigned int cnt;
015dc7e1 9851 bool first = true;
2b692964 9852
60bca95a 9853 for (cnt = 0; cnt < ARRAY_SIZE (opts); ++cnt)
252b5132
RH
9854 if (entry->d_un.d_val & (1 << cnt))
9855 {
9856 printf ("%s%s", first ? "" : " ", opts[cnt]);
015dc7e1 9857 first = false;
252b5132 9858 }
252b5132
RH
9859 }
9860 break;
103f02d3 9861
252b5132 9862 case DT_MIPS_IVERSION:
978c4450
AM
9863 if (VALID_DYNAMIC_NAME (filedata, entry->d_un.d_val))
9864 printf (_("Interface Version: %s"),
9865 GET_DYNAMIC_NAME (filedata, entry->d_un.d_val));
252b5132 9866 else
76ca31c0
NC
9867 {
9868 char buf[40];
9869 sprintf_vma (buf, entry->d_un.d_ptr);
9870 /* Note: coded this way so that there is a single string for translation. */
9871 printf (_("<corrupt: %s>"), buf);
9872 }
252b5132 9873 break;
103f02d3 9874
252b5132
RH
9875 case DT_MIPS_TIME_STAMP:
9876 {
d5b07ef4 9877 char timebuf[128];
2cf0635d 9878 struct tm * tmp;
91d6fa6a 9879 time_t atime = entry->d_un.d_val;
82b1b41b 9880
91d6fa6a 9881 tmp = gmtime (&atime);
82b1b41b
NC
9882 /* PR 17531: file: 6accc532. */
9883 if (tmp == NULL)
9884 snprintf (timebuf, sizeof (timebuf), _("<corrupt>"));
9885 else
9886 snprintf (timebuf, sizeof (timebuf), "%04u-%02u-%02uT%02u:%02u:%02u",
9887 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
9888 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
4b68bca3 9889 printf (_("Time Stamp: %s"), timebuf);
252b5132
RH
9890 }
9891 break;
103f02d3 9892
252b5132
RH
9893 case DT_MIPS_RLD_VERSION:
9894 case DT_MIPS_LOCAL_GOTNO:
9895 case DT_MIPS_CONFLICTNO:
9896 case DT_MIPS_LIBLISTNO:
9897 case DT_MIPS_SYMTABNO:
9898 case DT_MIPS_UNREFEXTNO:
9899 case DT_MIPS_HIPAGENO:
9900 case DT_MIPS_DELTA_CLASS_NO:
9901 case DT_MIPS_DELTA_INSTANCE_NO:
9902 case DT_MIPS_DELTA_RELOC_NO:
9903 case DT_MIPS_DELTA_SYM_NO:
9904 case DT_MIPS_DELTA_CLASSSYM_NO:
9905 case DT_MIPS_COMPACT_SIZE:
c69075ac 9906 print_vma (entry->d_un.d_val, DEC);
252b5132 9907 break;
103f02d3 9908
f16a9783 9909 case DT_MIPS_XHASH:
978c4450
AM
9910 filedata->dynamic_info_DT_MIPS_XHASH = entry->d_un.d_val;
9911 filedata->dynamic_info_DT_GNU_HASH = entry->d_un.d_val;
f16a9783
MS
9912 /* Falls through. */
9913
103f02d3 9914 default:
4b68bca3 9915 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
103f02d3 9916 }
4b68bca3 9917 putchar ('\n');
103f02d3
UD
9918}
9919
103f02d3 9920static void
2cf0635d 9921dynamic_section_parisc_val (Elf_Internal_Dyn * entry)
103f02d3
UD
9922{
9923 switch (entry->d_tag)
9924 {
9925 case DT_HP_DLD_FLAGS:
9926 {
9927 static struct
9928 {
9929 long int bit;
2cf0635d 9930 const char * str;
5e220199
NC
9931 }
9932 flags[] =
9933 {
9934 { DT_HP_DEBUG_PRIVATE, "HP_DEBUG_PRIVATE" },
9935 { DT_HP_DEBUG_CALLBACK, "HP_DEBUG_CALLBACK" },
9936 { DT_HP_DEBUG_CALLBACK_BOR, "HP_DEBUG_CALLBACK_BOR" },
9937 { DT_HP_NO_ENVVAR, "HP_NO_ENVVAR" },
9938 { DT_HP_BIND_NOW, "HP_BIND_NOW" },
9939 { DT_HP_BIND_NONFATAL, "HP_BIND_NONFATAL" },
9940 { DT_HP_BIND_VERBOSE, "HP_BIND_VERBOSE" },
9941 { DT_HP_BIND_RESTRICTED, "HP_BIND_RESTRICTED" },
9942 { DT_HP_BIND_SYMBOLIC, "HP_BIND_SYMBOLIC" },
9943 { DT_HP_RPATH_FIRST, "HP_RPATH_FIRST" },
eec8f817
DA
9944 { DT_HP_BIND_DEPTH_FIRST, "HP_BIND_DEPTH_FIRST" },
9945 { DT_HP_GST, "HP_GST" },
9946 { DT_HP_SHLIB_FIXED, "HP_SHLIB_FIXED" },
9947 { DT_HP_MERGE_SHLIB_SEG, "HP_MERGE_SHLIB_SEG" },
9948 { DT_HP_NODELETE, "HP_NODELETE" },
9949 { DT_HP_GROUP, "HP_GROUP" },
9950 { DT_HP_PROTECT_LINKAGE_TABLE, "HP_PROTECT_LINKAGE_TABLE" }
5e220199 9951 };
015dc7e1 9952 bool first = true;
5e220199 9953 size_t cnt;
f7a99963 9954 bfd_vma val = entry->d_un.d_val;
103f02d3 9955
60bca95a 9956 for (cnt = 0; cnt < ARRAY_SIZE (flags); ++cnt)
103f02d3 9957 if (val & flags[cnt].bit)
30800947
NC
9958 {
9959 if (! first)
9960 putchar (' ');
9961 fputs (flags[cnt].str, stdout);
015dc7e1 9962 first = false;
30800947
NC
9963 val ^= flags[cnt].bit;
9964 }
76da6bbe 9965
103f02d3 9966 if (val != 0 || first)
f7a99963
NC
9967 {
9968 if (! first)
9969 putchar (' ');
9970 print_vma (val, HEX);
9971 }
103f02d3
UD
9972 }
9973 break;
76da6bbe 9974
252b5132 9975 default:
f7a99963
NC
9976 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
9977 break;
252b5132 9978 }
35b1837e 9979 putchar ('\n');
252b5132
RH
9980}
9981
28f997cf
TG
9982#ifdef BFD64
9983
9984/* VMS vs Unix time offset and factor. */
9985
9986#define VMS_EPOCH_OFFSET 35067168000000000LL
9987#define VMS_GRANULARITY_FACTOR 10000000
dccc31de
AM
9988#ifndef INT64_MIN
9989#define INT64_MIN (-9223372036854775807LL - 1)
9990#endif
28f997cf
TG
9991
9992/* Display a VMS time in a human readable format. */
9993
9994static void
9995print_vms_time (bfd_int64_t vmstime)
9996{
dccc31de 9997 struct tm *tm = NULL;
28f997cf
TG
9998 time_t unxtime;
9999
dccc31de
AM
10000 if (vmstime >= INT64_MIN + VMS_EPOCH_OFFSET)
10001 {
10002 vmstime = (vmstime - VMS_EPOCH_OFFSET) / VMS_GRANULARITY_FACTOR;
10003 unxtime = vmstime;
10004 if (unxtime == vmstime)
10005 tm = gmtime (&unxtime);
10006 }
10007 if (tm != NULL)
10008 printf ("%04u-%02u-%02uT%02u:%02u:%02u",
10009 tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
10010 tm->tm_hour, tm->tm_min, tm->tm_sec);
28f997cf
TG
10011}
10012#endif /* BFD64 */
10013
ecc51f48 10014static void
2cf0635d 10015dynamic_section_ia64_val (Elf_Internal_Dyn * entry)
ecc51f48
NC
10016{
10017 switch (entry->d_tag)
10018 {
0de14b54 10019 case DT_IA_64_PLT_RESERVE:
bdf4d63a 10020 /* First 3 slots reserved. */
ecc51f48
NC
10021 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
10022 printf (" -- ");
10023 print_vma (entry->d_un.d_ptr + (3 * 8), PREFIX_HEX);
bdf4d63a
JJ
10024 break;
10025
28f997cf
TG
10026 case DT_IA_64_VMS_LINKTIME:
10027#ifdef BFD64
10028 print_vms_time (entry->d_un.d_val);
10029#endif
10030 break;
10031
10032 case DT_IA_64_VMS_LNKFLAGS:
10033 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
10034 if (entry->d_un.d_val & VMS_LF_CALL_DEBUG)
10035 printf (" CALL_DEBUG");
10036 if (entry->d_un.d_val & VMS_LF_NOP0BUFS)
10037 printf (" NOP0BUFS");
10038 if (entry->d_un.d_val & VMS_LF_P0IMAGE)
10039 printf (" P0IMAGE");
10040 if (entry->d_un.d_val & VMS_LF_MKTHREADS)
10041 printf (" MKTHREADS");
10042 if (entry->d_un.d_val & VMS_LF_UPCALLS)
10043 printf (" UPCALLS");
10044 if (entry->d_un.d_val & VMS_LF_IMGSTA)
10045 printf (" IMGSTA");
10046 if (entry->d_un.d_val & VMS_LF_INITIALIZE)
10047 printf (" INITIALIZE");
10048 if (entry->d_un.d_val & VMS_LF_MAIN)
10049 printf (" MAIN");
10050 if (entry->d_un.d_val & VMS_LF_EXE_INIT)
10051 printf (" EXE_INIT");
10052 if (entry->d_un.d_val & VMS_LF_TBK_IN_IMG)
10053 printf (" TBK_IN_IMG");
10054 if (entry->d_un.d_val & VMS_LF_DBG_IN_IMG)
10055 printf (" DBG_IN_IMG");
10056 if (entry->d_un.d_val & VMS_LF_TBK_IN_DSF)
10057 printf (" TBK_IN_DSF");
10058 if (entry->d_un.d_val & VMS_LF_DBG_IN_DSF)
10059 printf (" DBG_IN_DSF");
10060 if (entry->d_un.d_val & VMS_LF_SIGNATURES)
10061 printf (" SIGNATURES");
10062 if (entry->d_un.d_val & VMS_LF_REL_SEG_OFF)
10063 printf (" REL_SEG_OFF");
10064 break;
10065
bdf4d63a
JJ
10066 default:
10067 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
10068 break;
ecc51f48 10069 }
bdf4d63a 10070 putchar ('\n');
ecc51f48
NC
10071}
10072
015dc7e1 10073static bool
dda8d76d 10074get_32bit_dynamic_section (Filedata * filedata)
252b5132 10075{
2cf0635d
NC
10076 Elf32_External_Dyn * edyn;
10077 Elf32_External_Dyn * ext;
10078 Elf_Internal_Dyn * entry;
103f02d3 10079
978c4450
AM
10080 edyn = (Elf32_External_Dyn *) get_data (NULL, filedata,
10081 filedata->dynamic_addr, 1,
10082 filedata->dynamic_size,
10083 _("dynamic section"));
a6e9f9df 10084 if (!edyn)
015dc7e1 10085 return false;
103f02d3 10086
071436c6
NC
10087 /* SGI's ELF has more than one section in the DYNAMIC segment, and we
10088 might not have the luxury of section headers. Look for the DT_NULL
10089 terminator to determine the number of entries. */
978c4450
AM
10090 for (ext = edyn, filedata->dynamic_nent = 0;
10091 (char *) (ext + 1) <= (char *) edyn + filedata->dynamic_size;
ba2685cc
AM
10092 ext++)
10093 {
978c4450 10094 filedata->dynamic_nent++;
ba2685cc
AM
10095 if (BYTE_GET (ext->d_tag) == DT_NULL)
10096 break;
10097 }
252b5132 10098
978c4450
AM
10099 filedata->dynamic_section
10100 = (Elf_Internal_Dyn *) cmalloc (filedata->dynamic_nent, sizeof (* entry));
10101 if (filedata->dynamic_section == NULL)
252b5132 10102 {
8b73c356 10103 error (_("Out of memory allocating space for %lu dynamic entries\n"),
978c4450 10104 (unsigned long) filedata->dynamic_nent);
9ea033b2 10105 free (edyn);
015dc7e1 10106 return false;
9ea033b2 10107 }
252b5132 10108
978c4450
AM
10109 for (ext = edyn, entry = filedata->dynamic_section;
10110 entry < filedata->dynamic_section + filedata->dynamic_nent;
fb514b26 10111 ext++, entry++)
9ea033b2 10112 {
fb514b26
AM
10113 entry->d_tag = BYTE_GET (ext->d_tag);
10114 entry->d_un.d_val = BYTE_GET (ext->d_un.d_val);
252b5132
RH
10115 }
10116
9ea033b2
NC
10117 free (edyn);
10118
015dc7e1 10119 return true;
9ea033b2
NC
10120}
10121
015dc7e1 10122static bool
dda8d76d 10123get_64bit_dynamic_section (Filedata * filedata)
9ea033b2 10124{
2cf0635d
NC
10125 Elf64_External_Dyn * edyn;
10126 Elf64_External_Dyn * ext;
10127 Elf_Internal_Dyn * entry;
103f02d3 10128
071436c6 10129 /* Read in the data. */
978c4450
AM
10130 edyn = (Elf64_External_Dyn *) get_data (NULL, filedata,
10131 filedata->dynamic_addr, 1,
10132 filedata->dynamic_size,
10133 _("dynamic section"));
a6e9f9df 10134 if (!edyn)
015dc7e1 10135 return false;
103f02d3 10136
071436c6
NC
10137 /* SGI's ELF has more than one section in the DYNAMIC segment, and we
10138 might not have the luxury of section headers. Look for the DT_NULL
10139 terminator to determine the number of entries. */
978c4450 10140 for (ext = edyn, filedata->dynamic_nent = 0;
53c3012c 10141 /* PR 17533 file: 033-67080-0.004 - do not read past end of buffer. */
978c4450 10142 (char *) (ext + 1) <= (char *) edyn + filedata->dynamic_size;
ba2685cc
AM
10143 ext++)
10144 {
978c4450 10145 filedata->dynamic_nent++;
66543521 10146 if (BYTE_GET (ext->d_tag) == DT_NULL)
ba2685cc
AM
10147 break;
10148 }
252b5132 10149
978c4450
AM
10150 filedata->dynamic_section
10151 = (Elf_Internal_Dyn *) cmalloc (filedata->dynamic_nent, sizeof (* entry));
10152 if (filedata->dynamic_section == NULL)
252b5132 10153 {
8b73c356 10154 error (_("Out of memory allocating space for %lu dynamic entries\n"),
978c4450 10155 (unsigned long) filedata->dynamic_nent);
252b5132 10156 free (edyn);
015dc7e1 10157 return false;
252b5132
RH
10158 }
10159
071436c6 10160 /* Convert from external to internal formats. */
978c4450
AM
10161 for (ext = edyn, entry = filedata->dynamic_section;
10162 entry < filedata->dynamic_section + filedata->dynamic_nent;
fb514b26 10163 ext++, entry++)
252b5132 10164 {
66543521
AM
10165 entry->d_tag = BYTE_GET (ext->d_tag);
10166 entry->d_un.d_val = BYTE_GET (ext->d_un.d_val);
252b5132
RH
10167 }
10168
10169 free (edyn);
10170
015dc7e1 10171 return true;
9ea033b2
NC
10172}
10173
e9e44622
JJ
10174static void
10175print_dynamic_flags (bfd_vma flags)
d1133906 10176{
015dc7e1 10177 bool first = true;
13ae64f3 10178
d1133906
NC
10179 while (flags)
10180 {
10181 bfd_vma flag;
10182
10183 flag = flags & - flags;
10184 flags &= ~ flag;
10185
e9e44622 10186 if (first)
015dc7e1 10187 first = false;
e9e44622
JJ
10188 else
10189 putc (' ', stdout);
13ae64f3 10190
d1133906
NC
10191 switch (flag)
10192 {
e9e44622
JJ
10193 case DF_ORIGIN: fputs ("ORIGIN", stdout); break;
10194 case DF_SYMBOLIC: fputs ("SYMBOLIC", stdout); break;
10195 case DF_TEXTREL: fputs ("TEXTREL", stdout); break;
10196 case DF_BIND_NOW: fputs ("BIND_NOW", stdout); break;
10197 case DF_STATIC_TLS: fputs ("STATIC_TLS", stdout); break;
2b692964 10198 default: fputs (_("unknown"), stdout); break;
d1133906
NC
10199 }
10200 }
e9e44622 10201 puts ("");
d1133906
NC
10202}
10203
10ca4b04
L
10204static bfd_vma *
10205get_dynamic_data (Filedata * filedata, bfd_size_type number, unsigned int ent_size)
10206{
10207 unsigned char * e_data;
10208 bfd_vma * i_data;
10209
10210 /* If the size_t type is smaller than the bfd_size_type, eg because
10211 you are building a 32-bit tool on a 64-bit host, then make sure
10212 that when (number) is cast to (size_t) no information is lost. */
10213 if (sizeof (size_t) < sizeof (bfd_size_type)
10214 && (bfd_size_type) ((size_t) number) != number)
10215 {
10216 error (_("Size truncation prevents reading %s elements of size %u\n"),
10217 bfd_vmatoa ("u", number), ent_size);
10218 return NULL;
10219 }
10220
10221 /* Be kind to memory checkers (eg valgrind, address sanitizer) by not
10222 attempting to allocate memory when the read is bound to fail. */
10223 if (ent_size * number > filedata->file_size)
10224 {
10225 error (_("Invalid number of dynamic entries: %s\n"),
10226 bfd_vmatoa ("u", number));
10227 return NULL;
10228 }
10229
10230 e_data = (unsigned char *) cmalloc ((size_t) number, ent_size);
10231 if (e_data == NULL)
10232 {
10233 error (_("Out of memory reading %s dynamic entries\n"),
10234 bfd_vmatoa ("u", number));
10235 return NULL;
10236 }
10237
10238 if (fread (e_data, ent_size, (size_t) number, filedata->handle) != number)
10239 {
10240 error (_("Unable to read in %s bytes of dynamic data\n"),
10241 bfd_vmatoa ("u", number * ent_size));
10242 free (e_data);
10243 return NULL;
10244 }
10245
10246 i_data = (bfd_vma *) cmalloc ((size_t) number, sizeof (*i_data));
10247 if (i_data == NULL)
10248 {
10249 error (_("Out of memory allocating space for %s dynamic entries\n"),
10250 bfd_vmatoa ("u", number));
10251 free (e_data);
10252 return NULL;
10253 }
10254
10255 while (number--)
10256 i_data[number] = byte_get (e_data + number * ent_size, ent_size);
10257
10258 free (e_data);
10259
10260 return i_data;
10261}
10262
10263static unsigned long
10264get_num_dynamic_syms (Filedata * filedata)
10265{
10266 unsigned long num_of_syms = 0;
10267
10268 if (!do_histogram && (!do_using_dynamic || do_dyn_syms))
10269 return num_of_syms;
10270
978c4450 10271 if (filedata->dynamic_info[DT_HASH])
10ca4b04
L
10272 {
10273 unsigned char nb[8];
10274 unsigned char nc[8];
10275 unsigned int hash_ent_size = 4;
10276
10277 if ((filedata->file_header.e_machine == EM_ALPHA
10278 || filedata->file_header.e_machine == EM_S390
10279 || filedata->file_header.e_machine == EM_S390_OLD)
10280 && filedata->file_header.e_ident[EI_CLASS] == ELFCLASS64)
10281 hash_ent_size = 8;
10282
10283 if (fseek (filedata->handle,
978c4450
AM
10284 (filedata->archive_file_offset
10285 + offset_from_vma (filedata, filedata->dynamic_info[DT_HASH],
10ca4b04
L
10286 sizeof nb + sizeof nc)),
10287 SEEK_SET))
10288 {
10289 error (_("Unable to seek to start of dynamic information\n"));
10290 goto no_hash;
10291 }
10292
10293 if (fread (nb, hash_ent_size, 1, filedata->handle) != 1)
10294 {
10295 error (_("Failed to read in number of buckets\n"));
10296 goto no_hash;
10297 }
10298
10299 if (fread (nc, hash_ent_size, 1, filedata->handle) != 1)
10300 {
10301 error (_("Failed to read in number of chains\n"));
10302 goto no_hash;
10303 }
10304
978c4450
AM
10305 filedata->nbuckets = byte_get (nb, hash_ent_size);
10306 filedata->nchains = byte_get (nc, hash_ent_size);
10ca4b04 10307
2482f306
AM
10308 if (filedata->nbuckets != 0 && filedata->nchains != 0)
10309 {
10310 filedata->buckets = get_dynamic_data (filedata, filedata->nbuckets,
10311 hash_ent_size);
10312 filedata->chains = get_dynamic_data (filedata, filedata->nchains,
10313 hash_ent_size);
001890e1 10314
2482f306
AM
10315 if (filedata->buckets != NULL && filedata->chains != NULL)
10316 num_of_syms = filedata->nchains;
10317 }
ceb9bf11 10318 no_hash:
10ca4b04
L
10319 if (num_of_syms == 0)
10320 {
9db70fc3
AM
10321 free (filedata->buckets);
10322 filedata->buckets = NULL;
10323 free (filedata->chains);
10324 filedata->chains = NULL;
978c4450 10325 filedata->nbuckets = 0;
10ca4b04
L
10326 }
10327 }
10328
978c4450 10329 if (filedata->dynamic_info_DT_GNU_HASH)
10ca4b04
L
10330 {
10331 unsigned char nb[16];
10332 bfd_vma i, maxchain = 0xffffffff, bitmaskwords;
10333 bfd_vma buckets_vma;
10334 unsigned long hn;
10ca4b04
L
10335
10336 if (fseek (filedata->handle,
978c4450
AM
10337 (filedata->archive_file_offset
10338 + offset_from_vma (filedata,
10339 filedata->dynamic_info_DT_GNU_HASH,
10ca4b04
L
10340 sizeof nb)),
10341 SEEK_SET))
10342 {
10343 error (_("Unable to seek to start of dynamic information\n"));
10ca4b04
L
10344 goto no_gnu_hash;
10345 }
10346
10347 if (fread (nb, 16, 1, filedata->handle) != 1)
10348 {
10349 error (_("Failed to read in number of buckets\n"));
10ca4b04
L
10350 goto no_gnu_hash;
10351 }
10352
978c4450
AM
10353 filedata->ngnubuckets = byte_get (nb, 4);
10354 filedata->gnusymidx = byte_get (nb + 4, 4);
10ca4b04 10355 bitmaskwords = byte_get (nb + 8, 4);
978c4450 10356 buckets_vma = filedata->dynamic_info_DT_GNU_HASH + 16;
10ca4b04
L
10357 if (is_32bit_elf)
10358 buckets_vma += bitmaskwords * 4;
10359 else
10360 buckets_vma += bitmaskwords * 8;
10361
10362 if (fseek (filedata->handle,
978c4450 10363 (filedata->archive_file_offset
10ca4b04
L
10364 + offset_from_vma (filedata, buckets_vma, 4)),
10365 SEEK_SET))
10366 {
10367 error (_("Unable to seek to start of dynamic information\n"));
10ca4b04
L
10368 goto no_gnu_hash;
10369 }
10370
978c4450
AM
10371 filedata->gnubuckets
10372 = get_dynamic_data (filedata, filedata->ngnubuckets, 4);
10ca4b04 10373
978c4450 10374 if (filedata->gnubuckets == NULL)
90837ea7 10375 goto no_gnu_hash;
10ca4b04 10376
978c4450
AM
10377 for (i = 0; i < filedata->ngnubuckets; i++)
10378 if (filedata->gnubuckets[i] != 0)
10ca4b04 10379 {
978c4450 10380 if (filedata->gnubuckets[i] < filedata->gnusymidx)
90837ea7 10381 goto no_gnu_hash;
10ca4b04 10382
978c4450
AM
10383 if (maxchain == 0xffffffff || filedata->gnubuckets[i] > maxchain)
10384 maxchain = filedata->gnubuckets[i];
10ca4b04
L
10385 }
10386
10387 if (maxchain == 0xffffffff)
90837ea7 10388 goto no_gnu_hash;
10ca4b04 10389
978c4450 10390 maxchain -= filedata->gnusymidx;
10ca4b04
L
10391
10392 if (fseek (filedata->handle,
978c4450
AM
10393 (filedata->archive_file_offset
10394 + offset_from_vma (filedata,
10395 buckets_vma + 4 * (filedata->ngnubuckets
10396 + maxchain),
10397 4)),
10ca4b04
L
10398 SEEK_SET))
10399 {
10400 error (_("Unable to seek to start of dynamic information\n"));
10ca4b04
L
10401 goto no_gnu_hash;
10402 }
10403
10404 do
10405 {
10406 if (fread (nb, 4, 1, filedata->handle) != 1)
10407 {
10408 error (_("Failed to determine last chain length\n"));
10ca4b04
L
10409 goto no_gnu_hash;
10410 }
10411
10412 if (maxchain + 1 == 0)
90837ea7 10413 goto no_gnu_hash;
10ca4b04
L
10414
10415 ++maxchain;
10416 }
10417 while ((byte_get (nb, 4) & 1) == 0);
10418
10419 if (fseek (filedata->handle,
978c4450
AM
10420 (filedata->archive_file_offset
10421 + offset_from_vma (filedata, (buckets_vma
10422 + 4 * filedata->ngnubuckets),
10423 4)),
10ca4b04
L
10424 SEEK_SET))
10425 {
10426 error (_("Unable to seek to start of dynamic information\n"));
10ca4b04
L
10427 goto no_gnu_hash;
10428 }
10429
978c4450
AM
10430 filedata->gnuchains = get_dynamic_data (filedata, maxchain, 4);
10431 filedata->ngnuchains = maxchain;
10ca4b04 10432
978c4450 10433 if (filedata->gnuchains == NULL)
90837ea7 10434 goto no_gnu_hash;
10ca4b04 10435
978c4450 10436 if (filedata->dynamic_info_DT_MIPS_XHASH)
10ca4b04
L
10437 {
10438 if (fseek (filedata->handle,
978c4450 10439 (filedata->archive_file_offset
10ca4b04 10440 + offset_from_vma (filedata, (buckets_vma
978c4450 10441 + 4 * (filedata->ngnubuckets
10ca4b04
L
10442 + maxchain)), 4)),
10443 SEEK_SET))
10444 {
10445 error (_("Unable to seek to start of dynamic information\n"));
10ca4b04
L
10446 goto no_gnu_hash;
10447 }
10448
978c4450 10449 filedata->mipsxlat = get_dynamic_data (filedata, maxchain, 4);
90837ea7
AM
10450 if (filedata->mipsxlat == NULL)
10451 goto no_gnu_hash;
10ca4b04
L
10452 }
10453
978c4450
AM
10454 for (hn = 0; hn < filedata->ngnubuckets; ++hn)
10455 if (filedata->gnubuckets[hn] != 0)
10ca4b04 10456 {
978c4450
AM
10457 bfd_vma si = filedata->gnubuckets[hn];
10458 bfd_vma off = si - filedata->gnusymidx;
10ca4b04
L
10459
10460 do
10461 {
978c4450 10462 if (filedata->dynamic_info_DT_MIPS_XHASH)
10ca4b04 10463 {
c31ab5a0
AM
10464 if (off < filedata->ngnuchains
10465 && filedata->mipsxlat[off] >= num_of_syms)
978c4450 10466 num_of_syms = filedata->mipsxlat[off] + 1;
10ca4b04
L
10467 }
10468 else
10469 {
10470 if (si >= num_of_syms)
10471 num_of_syms = si + 1;
10472 }
10473 si++;
10474 }
978c4450
AM
10475 while (off < filedata->ngnuchains
10476 && (filedata->gnuchains[off++] & 1) == 0);
10ca4b04
L
10477 }
10478
90837ea7 10479 if (num_of_syms == 0)
10ca4b04 10480 {
90837ea7 10481 no_gnu_hash:
9db70fc3
AM
10482 free (filedata->mipsxlat);
10483 filedata->mipsxlat = NULL;
10484 free (filedata->gnuchains);
10485 filedata->gnuchains = NULL;
10486 free (filedata->gnubuckets);
10487 filedata->gnubuckets = NULL;
978c4450
AM
10488 filedata->ngnubuckets = 0;
10489 filedata->ngnuchains = 0;
10ca4b04
L
10490 }
10491 }
10492
10493 return num_of_syms;
10494}
10495
b2d38a17
NC
10496/* Parse and display the contents of the dynamic section. */
10497
015dc7e1 10498static bool
dda8d76d 10499process_dynamic_section (Filedata * filedata)
9ea033b2 10500{
2cf0635d 10501 Elf_Internal_Dyn * entry;
9ea033b2 10502
978c4450 10503 if (filedata->dynamic_size == 0)
9ea033b2
NC
10504 {
10505 if (do_dynamic)
ca0e11aa
NC
10506 {
10507 if (filedata->is_separate)
10508 printf (_("\nThere is no dynamic section in linked file '%s'.\n"),
10509 filedata->file_name);
10510 else
10511 printf (_("\nThere is no dynamic section in this file.\n"));
10512 }
9ea033b2 10513
015dc7e1 10514 return true;
9ea033b2
NC
10515 }
10516
10517 if (is_32bit_elf)
10518 {
dda8d76d 10519 if (! get_32bit_dynamic_section (filedata))
015dc7e1 10520 return false;
32ec8896
NC
10521 }
10522 else
10523 {
dda8d76d 10524 if (! get_64bit_dynamic_section (filedata))
015dc7e1 10525 return false;
9ea033b2 10526 }
9ea033b2 10527
252b5132 10528 /* Find the appropriate symbol table. */
978c4450 10529 if (filedata->dynamic_symbols == NULL || do_histogram)
252b5132 10530 {
2482f306
AM
10531 unsigned long num_of_syms;
10532
978c4450
AM
10533 for (entry = filedata->dynamic_section;
10534 entry < filedata->dynamic_section + filedata->dynamic_nent;
86dba8ee 10535 ++entry)
10ca4b04 10536 if (entry->d_tag == DT_SYMTAB)
978c4450 10537 filedata->dynamic_info[DT_SYMTAB] = entry->d_un.d_val;
10ca4b04 10538 else if (entry->d_tag == DT_SYMENT)
978c4450 10539 filedata->dynamic_info[DT_SYMENT] = entry->d_un.d_val;
10ca4b04 10540 else if (entry->d_tag == DT_HASH)
978c4450 10541 filedata->dynamic_info[DT_HASH] = entry->d_un.d_val;
10ca4b04 10542 else if (entry->d_tag == DT_GNU_HASH)
978c4450 10543 filedata->dynamic_info_DT_GNU_HASH = entry->d_un.d_val;
10ca4b04
L
10544 else if ((filedata->file_header.e_machine == EM_MIPS
10545 || filedata->file_header.e_machine == EM_MIPS_RS3_LE)
10546 && entry->d_tag == DT_MIPS_XHASH)
10547 {
978c4450
AM
10548 filedata->dynamic_info_DT_MIPS_XHASH = entry->d_un.d_val;
10549 filedata->dynamic_info_DT_GNU_HASH = entry->d_un.d_val;
10ca4b04 10550 }
252b5132 10551
2482f306
AM
10552 num_of_syms = get_num_dynamic_syms (filedata);
10553
10554 if (num_of_syms != 0
10555 && filedata->dynamic_symbols == NULL
10556 && filedata->dynamic_info[DT_SYMTAB]
978c4450 10557 && filedata->dynamic_info[DT_SYMENT])
10ca4b04
L
10558 {
10559 Elf_Internal_Phdr *seg;
2482f306 10560 bfd_vma vma = filedata->dynamic_info[DT_SYMTAB];
252b5132 10561
2482f306
AM
10562 if (! get_program_headers (filedata))
10563 {
10564 error (_("Cannot interpret virtual addresses "
10565 "without program headers.\n"));
015dc7e1 10566 return false;
2482f306 10567 }
252b5132 10568
2482f306
AM
10569 for (seg = filedata->program_headers;
10570 seg < filedata->program_headers + filedata->file_header.e_phnum;
10571 ++seg)
10572 {
10573 if (seg->p_type != PT_LOAD)
10574 continue;
252b5132 10575
2482f306
AM
10576 if (seg->p_offset + seg->p_filesz > filedata->file_size)
10577 {
10578 /* See PR 21379 for a reproducer. */
10579 error (_("Invalid PT_LOAD entry\n"));
015dc7e1 10580 return false;
2482f306 10581 }
252b5132 10582
2482f306
AM
10583 if (vma >= (seg->p_vaddr & -seg->p_align)
10584 && vma < seg->p_vaddr + seg->p_filesz)
10585 {
10586 /* Since we do not know how big the symbol table is,
10587 we default to reading in up to the end of PT_LOAD
10588 segment and processing that. This is overkill, I
10589 know, but it should work. */
10590 Elf_Internal_Shdr section;
10591 section.sh_offset = (vma - seg->p_vaddr
10592 + seg->p_offset);
10593 section.sh_size = (num_of_syms
10594 * filedata->dynamic_info[DT_SYMENT]);
10595 section.sh_entsize = filedata->dynamic_info[DT_SYMENT];
8ac10c5b
L
10596
10597 if (do_checks
10598 && filedata->dynamic_symtab_section != NULL
10599 && ((filedata->dynamic_symtab_section->sh_offset
10600 != section.sh_offset)
10601 || (filedata->dynamic_symtab_section->sh_size
10602 != section.sh_size)
10603 || (filedata->dynamic_symtab_section->sh_entsize
10604 != section.sh_entsize)))
10605 warn (_("\
10606the .dynsym section doesn't match the DT_SYMTAB and DT_SYMENT tags\n"));
10607
2482f306
AM
10608 section.sh_name = filedata->string_table_length;
10609 filedata->dynamic_symbols
10610 = GET_ELF_SYMBOLS (filedata, &section,
10611 &filedata->num_dynamic_syms);
10612 if (filedata->dynamic_symbols == NULL
10613 || filedata->num_dynamic_syms != num_of_syms)
10614 {
10615 error (_("Corrupt DT_SYMTAB dynamic entry\n"));
015dc7e1 10616 return false;
2482f306
AM
10617 }
10618 break;
10619 }
10620 }
10621 }
10622 }
252b5132
RH
10623
10624 /* Similarly find a string table. */
978c4450
AM
10625 if (filedata->dynamic_strings == NULL)
10626 for (entry = filedata->dynamic_section;
10627 entry < filedata->dynamic_section + filedata->dynamic_nent;
10ca4b04
L
10628 ++entry)
10629 {
10630 if (entry->d_tag == DT_STRTAB)
978c4450 10631 filedata->dynamic_info[DT_STRTAB] = entry->d_un.d_val;
252b5132 10632
10ca4b04 10633 if (entry->d_tag == DT_STRSZ)
978c4450 10634 filedata->dynamic_info[DT_STRSZ] = entry->d_un.d_val;
252b5132 10635
978c4450
AM
10636 if (filedata->dynamic_info[DT_STRTAB]
10637 && filedata->dynamic_info[DT_STRSZ])
10ca4b04
L
10638 {
10639 unsigned long offset;
978c4450 10640 bfd_size_type str_tab_len = filedata->dynamic_info[DT_STRSZ];
10ca4b04
L
10641
10642 offset = offset_from_vma (filedata,
978c4450 10643 filedata->dynamic_info[DT_STRTAB],
10ca4b04 10644 str_tab_len);
8ac10c5b
L
10645 if (do_checks
10646 && filedata->dynamic_strtab_section
10647 && ((filedata->dynamic_strtab_section->sh_offset
10648 != (file_ptr) offset)
10649 || (filedata->dynamic_strtab_section->sh_size
10650 != str_tab_len)))
10651 warn (_("\
10652the .dynstr section doesn't match the DT_STRTAB and DT_STRSZ tags\n"));
10653
978c4450
AM
10654 filedata->dynamic_strings
10655 = (char *) get_data (NULL, filedata, offset, 1, str_tab_len,
10656 _("dynamic string table"));
10657 if (filedata->dynamic_strings == NULL)
10ca4b04
L
10658 {
10659 error (_("Corrupt DT_STRTAB dynamic entry\n"));
10660 break;
10661 }
e3d39609 10662
978c4450 10663 filedata->dynamic_strings_length = str_tab_len;
10ca4b04
L
10664 break;
10665 }
10666 }
252b5132
RH
10667
10668 /* And find the syminfo section if available. */
978c4450 10669 if (filedata->dynamic_syminfo == NULL)
252b5132 10670 {
3e8bba36 10671 unsigned long syminsz = 0;
252b5132 10672
978c4450
AM
10673 for (entry = filedata->dynamic_section;
10674 entry < filedata->dynamic_section + filedata->dynamic_nent;
86dba8ee 10675 ++entry)
252b5132
RH
10676 {
10677 if (entry->d_tag == DT_SYMINENT)
10678 {
10679 /* Note: these braces are necessary to avoid a syntax
10680 error from the SunOS4 C compiler. */
049b0c3a
NC
10681 /* PR binutils/17531: A corrupt file can trigger this test.
10682 So do not use an assert, instead generate an error message. */
10683 if (sizeof (Elf_External_Syminfo) != entry->d_un.d_val)
071436c6 10684 error (_("Bad value (%d) for SYMINENT entry\n"),
049b0c3a 10685 (int) entry->d_un.d_val);
252b5132
RH
10686 }
10687 else if (entry->d_tag == DT_SYMINSZ)
10688 syminsz = entry->d_un.d_val;
10689 else if (entry->d_tag == DT_SYMINFO)
978c4450
AM
10690 filedata->dynamic_syminfo_offset
10691 = offset_from_vma (filedata, entry->d_un.d_val, syminsz);
252b5132
RH
10692 }
10693
978c4450 10694 if (filedata->dynamic_syminfo_offset != 0 && syminsz != 0)
252b5132 10695 {
2cf0635d
NC
10696 Elf_External_Syminfo * extsyminfo;
10697 Elf_External_Syminfo * extsym;
10698 Elf_Internal_Syminfo * syminfo;
252b5132
RH
10699
10700 /* There is a syminfo section. Read the data. */
3f5e193b 10701 extsyminfo = (Elf_External_Syminfo *)
978c4450
AM
10702 get_data (NULL, filedata, filedata->dynamic_syminfo_offset,
10703 1, syminsz, _("symbol information"));
a6e9f9df 10704 if (!extsyminfo)
015dc7e1 10705 return false;
252b5132 10706
978c4450 10707 if (filedata->dynamic_syminfo != NULL)
e3d39609
NC
10708 {
10709 error (_("Multiple dynamic symbol information sections found\n"));
978c4450 10710 free (filedata->dynamic_syminfo);
e3d39609 10711 }
978c4450
AM
10712 filedata->dynamic_syminfo = (Elf_Internal_Syminfo *) malloc (syminsz);
10713 if (filedata->dynamic_syminfo == NULL)
252b5132 10714 {
2482f306
AM
10715 error (_("Out of memory allocating %lu bytes "
10716 "for dynamic symbol info\n"),
8b73c356 10717 (unsigned long) syminsz);
015dc7e1 10718 return false;
252b5132
RH
10719 }
10720
2482f306
AM
10721 filedata->dynamic_syminfo_nent
10722 = syminsz / sizeof (Elf_External_Syminfo);
978c4450 10723 for (syminfo = filedata->dynamic_syminfo, extsym = extsyminfo;
2482f306
AM
10724 syminfo < (filedata->dynamic_syminfo
10725 + filedata->dynamic_syminfo_nent);
86dba8ee 10726 ++syminfo, ++extsym)
252b5132 10727 {
86dba8ee
AM
10728 syminfo->si_boundto = BYTE_GET (extsym->si_boundto);
10729 syminfo->si_flags = BYTE_GET (extsym->si_flags);
252b5132
RH
10730 }
10731
10732 free (extsyminfo);
10733 }
10734 }
10735
978c4450 10736 if (do_dynamic && filedata->dynamic_addr)
ca0e11aa
NC
10737 {
10738 if (filedata->dynamic_nent == 1)
10739 {
10740 if (filedata->is_separate)
10741 printf (_("\nIn linked file '%s' the dynamic section at offset 0x%lx contains 1 entry:\n"),
10742 filedata->file_name,
10743 filedata->dynamic_addr);
10744 else
10745 printf (_("\nDynamic section at offset 0x%lx contains 1 entry:\n"),
10746 filedata->dynamic_addr);
10747 }
10748 else
10749 {
10750 if (filedata->is_separate)
10751 printf (_("\nIn linked file '%s' the dynamic section at offset 0x%lx contains %lu entries:\n"),
10752 filedata->file_name,
10753 filedata->dynamic_addr,
10754 (unsigned long) filedata->dynamic_nent);
10755 else
10756 printf (_("\nDynamic section at offset 0x%lx contains %lu entries:\n"),
10757 filedata->dynamic_addr,
10758 (unsigned long) filedata->dynamic_nent);
10759 }
10760 }
252b5132
RH
10761 if (do_dynamic)
10762 printf (_(" Tag Type Name/Value\n"));
10763
978c4450
AM
10764 for (entry = filedata->dynamic_section;
10765 entry < filedata->dynamic_section + filedata->dynamic_nent;
86dba8ee 10766 entry++)
252b5132
RH
10767 {
10768 if (do_dynamic)
f7a99963 10769 {
2cf0635d 10770 const char * dtype;
e699b9ff 10771
f7a99963
NC
10772 putchar (' ');
10773 print_vma (entry->d_tag, FULL_HEX);
dda8d76d 10774 dtype = get_dynamic_type (filedata, entry->d_tag);
e699b9ff 10775 printf (" (%s)%*s", dtype,
32ec8896 10776 ((is_32bit_elf ? 27 : 19) - (int) strlen (dtype)), " ");
f7a99963 10777 }
252b5132
RH
10778
10779 switch (entry->d_tag)
10780 {
d1133906
NC
10781 case DT_FLAGS:
10782 if (do_dynamic)
e9e44622 10783 print_dynamic_flags (entry->d_un.d_val);
d1133906 10784 break;
76da6bbe 10785
252b5132
RH
10786 case DT_AUXILIARY:
10787 case DT_FILTER:
019148e4
L
10788 case DT_CONFIG:
10789 case DT_DEPAUDIT:
10790 case DT_AUDIT:
252b5132
RH
10791 if (do_dynamic)
10792 {
019148e4 10793 switch (entry->d_tag)
b34976b6 10794 {
019148e4
L
10795 case DT_AUXILIARY:
10796 printf (_("Auxiliary library"));
10797 break;
10798
10799 case DT_FILTER:
10800 printf (_("Filter library"));
10801 break;
10802
b34976b6 10803 case DT_CONFIG:
019148e4
L
10804 printf (_("Configuration file"));
10805 break;
10806
10807 case DT_DEPAUDIT:
10808 printf (_("Dependency audit library"));
10809 break;
10810
10811 case DT_AUDIT:
10812 printf (_("Audit library"));
10813 break;
10814 }
252b5132 10815
978c4450
AM
10816 if (VALID_DYNAMIC_NAME (filedata, entry->d_un.d_val))
10817 printf (": [%s]\n",
10818 GET_DYNAMIC_NAME (filedata, entry->d_un.d_val));
252b5132 10819 else
f7a99963
NC
10820 {
10821 printf (": ");
10822 print_vma (entry->d_un.d_val, PREFIX_HEX);
10823 putchar ('\n');
10824 }
252b5132
RH
10825 }
10826 break;
10827
dcefbbbd 10828 case DT_FEATURE:
252b5132
RH
10829 if (do_dynamic)
10830 {
10831 printf (_("Flags:"));
86f55779 10832
252b5132
RH
10833 if (entry->d_un.d_val == 0)
10834 printf (_(" None\n"));
10835 else
10836 {
10837 unsigned long int val = entry->d_un.d_val;
86f55779 10838
252b5132
RH
10839 if (val & DTF_1_PARINIT)
10840 {
10841 printf (" PARINIT");
10842 val ^= DTF_1_PARINIT;
10843 }
dcefbbbd
L
10844 if (val & DTF_1_CONFEXP)
10845 {
10846 printf (" CONFEXP");
10847 val ^= DTF_1_CONFEXP;
10848 }
252b5132
RH
10849 if (val != 0)
10850 printf (" %lx", val);
10851 puts ("");
10852 }
10853 }
10854 break;
10855
10856 case DT_POSFLAG_1:
10857 if (do_dynamic)
10858 {
10859 printf (_("Flags:"));
86f55779 10860
252b5132
RH
10861 if (entry->d_un.d_val == 0)
10862 printf (_(" None\n"));
10863 else
10864 {
10865 unsigned long int val = entry->d_un.d_val;
86f55779 10866
252b5132
RH
10867 if (val & DF_P1_LAZYLOAD)
10868 {
10869 printf (" LAZYLOAD");
10870 val ^= DF_P1_LAZYLOAD;
10871 }
10872 if (val & DF_P1_GROUPPERM)
10873 {
10874 printf (" GROUPPERM");
10875 val ^= DF_P1_GROUPPERM;
10876 }
10877 if (val != 0)
10878 printf (" %lx", val);
10879 puts ("");
10880 }
10881 }
10882 break;
10883
10884 case DT_FLAGS_1:
10885 if (do_dynamic)
10886 {
10887 printf (_("Flags:"));
10888 if (entry->d_un.d_val == 0)
10889 printf (_(" None\n"));
10890 else
10891 {
10892 unsigned long int val = entry->d_un.d_val;
86f55779 10893
252b5132
RH
10894 if (val & DF_1_NOW)
10895 {
10896 printf (" NOW");
10897 val ^= DF_1_NOW;
10898 }
10899 if (val & DF_1_GLOBAL)
10900 {
10901 printf (" GLOBAL");
10902 val ^= DF_1_GLOBAL;
10903 }
10904 if (val & DF_1_GROUP)
10905 {
10906 printf (" GROUP");
10907 val ^= DF_1_GROUP;
10908 }
10909 if (val & DF_1_NODELETE)
10910 {
10911 printf (" NODELETE");
10912 val ^= DF_1_NODELETE;
10913 }
10914 if (val & DF_1_LOADFLTR)
10915 {
10916 printf (" LOADFLTR");
10917 val ^= DF_1_LOADFLTR;
10918 }
10919 if (val & DF_1_INITFIRST)
10920 {
10921 printf (" INITFIRST");
10922 val ^= DF_1_INITFIRST;
10923 }
10924 if (val & DF_1_NOOPEN)
10925 {
10926 printf (" NOOPEN");
10927 val ^= DF_1_NOOPEN;
10928 }
10929 if (val & DF_1_ORIGIN)
10930 {
10931 printf (" ORIGIN");
10932 val ^= DF_1_ORIGIN;
10933 }
10934 if (val & DF_1_DIRECT)
10935 {
10936 printf (" DIRECT");
10937 val ^= DF_1_DIRECT;
10938 }
10939 if (val & DF_1_TRANS)
10940 {
10941 printf (" TRANS");
10942 val ^= DF_1_TRANS;
10943 }
10944 if (val & DF_1_INTERPOSE)
10945 {
10946 printf (" INTERPOSE");
10947 val ^= DF_1_INTERPOSE;
10948 }
f7db6139 10949 if (val & DF_1_NODEFLIB)
dcefbbbd 10950 {
f7db6139
L
10951 printf (" NODEFLIB");
10952 val ^= DF_1_NODEFLIB;
dcefbbbd
L
10953 }
10954 if (val & DF_1_NODUMP)
10955 {
10956 printf (" NODUMP");
10957 val ^= DF_1_NODUMP;
10958 }
34b60028 10959 if (val & DF_1_CONFALT)
dcefbbbd 10960 {
34b60028
L
10961 printf (" CONFALT");
10962 val ^= DF_1_CONFALT;
10963 }
10964 if (val & DF_1_ENDFILTEE)
10965 {
10966 printf (" ENDFILTEE");
10967 val ^= DF_1_ENDFILTEE;
10968 }
10969 if (val & DF_1_DISPRELDNE)
10970 {
10971 printf (" DISPRELDNE");
10972 val ^= DF_1_DISPRELDNE;
10973 }
10974 if (val & DF_1_DISPRELPND)
10975 {
10976 printf (" DISPRELPND");
10977 val ^= DF_1_DISPRELPND;
10978 }
10979 if (val & DF_1_NODIRECT)
10980 {
10981 printf (" NODIRECT");
10982 val ^= DF_1_NODIRECT;
10983 }
10984 if (val & DF_1_IGNMULDEF)
10985 {
10986 printf (" IGNMULDEF");
10987 val ^= DF_1_IGNMULDEF;
10988 }
10989 if (val & DF_1_NOKSYMS)
10990 {
10991 printf (" NOKSYMS");
10992 val ^= DF_1_NOKSYMS;
10993 }
10994 if (val & DF_1_NOHDR)
10995 {
10996 printf (" NOHDR");
10997 val ^= DF_1_NOHDR;
10998 }
10999 if (val & DF_1_EDITED)
11000 {
11001 printf (" EDITED");
11002 val ^= DF_1_EDITED;
11003 }
11004 if (val & DF_1_NORELOC)
11005 {
11006 printf (" NORELOC");
11007 val ^= DF_1_NORELOC;
11008 }
11009 if (val & DF_1_SYMINTPOSE)
11010 {
11011 printf (" SYMINTPOSE");
11012 val ^= DF_1_SYMINTPOSE;
11013 }
11014 if (val & DF_1_GLOBAUDIT)
11015 {
11016 printf (" GLOBAUDIT");
11017 val ^= DF_1_GLOBAUDIT;
11018 }
11019 if (val & DF_1_SINGLETON)
11020 {
11021 printf (" SINGLETON");
11022 val ^= DF_1_SINGLETON;
dcefbbbd 11023 }
5c383f02
RO
11024 if (val & DF_1_STUB)
11025 {
11026 printf (" STUB");
11027 val ^= DF_1_STUB;
11028 }
11029 if (val & DF_1_PIE)
11030 {
11031 printf (" PIE");
11032 val ^= DF_1_PIE;
11033 }
b1202ffa
L
11034 if (val & DF_1_KMOD)
11035 {
11036 printf (" KMOD");
11037 val ^= DF_1_KMOD;
11038 }
11039 if (val & DF_1_WEAKFILTER)
11040 {
11041 printf (" WEAKFILTER");
11042 val ^= DF_1_WEAKFILTER;
11043 }
11044 if (val & DF_1_NOCOMMON)
11045 {
11046 printf (" NOCOMMON");
11047 val ^= DF_1_NOCOMMON;
11048 }
252b5132
RH
11049 if (val != 0)
11050 printf (" %lx", val);
11051 puts ("");
11052 }
11053 }
11054 break;
11055
11056 case DT_PLTREL:
978c4450 11057 filedata->dynamic_info[entry->d_tag] = entry->d_un.d_val;
252b5132 11058 if (do_dynamic)
dda8d76d 11059 puts (get_dynamic_type (filedata, entry->d_un.d_val));
252b5132
RH
11060 break;
11061
11062 case DT_NULL :
11063 case DT_NEEDED :
11064 case DT_PLTGOT :
11065 case DT_HASH :
11066 case DT_STRTAB :
11067 case DT_SYMTAB :
11068 case DT_RELA :
11069 case DT_INIT :
11070 case DT_FINI :
11071 case DT_SONAME :
11072 case DT_RPATH :
11073 case DT_SYMBOLIC:
11074 case DT_REL :
11075 case DT_DEBUG :
11076 case DT_TEXTREL :
11077 case DT_JMPREL :
019148e4 11078 case DT_RUNPATH :
978c4450 11079 filedata->dynamic_info[entry->d_tag] = entry->d_un.d_val;
252b5132
RH
11080
11081 if (do_dynamic)
11082 {
2cf0635d 11083 char * name;
252b5132 11084
978c4450
AM
11085 if (VALID_DYNAMIC_NAME (filedata, entry->d_un.d_val))
11086 name = GET_DYNAMIC_NAME (filedata, entry->d_un.d_val);
252b5132 11087 else
d79b3d50 11088 name = NULL;
252b5132
RH
11089
11090 if (name)
11091 {
11092 switch (entry->d_tag)
11093 {
11094 case DT_NEEDED:
11095 printf (_("Shared library: [%s]"), name);
11096
978c4450 11097 if (streq (name, filedata->program_interpreter))
f7a99963 11098 printf (_(" program interpreter"));
252b5132
RH
11099 break;
11100
11101 case DT_SONAME:
f7a99963 11102 printf (_("Library soname: [%s]"), name);
252b5132
RH
11103 break;
11104
11105 case DT_RPATH:
f7a99963 11106 printf (_("Library rpath: [%s]"), name);
252b5132
RH
11107 break;
11108
019148e4
L
11109 case DT_RUNPATH:
11110 printf (_("Library runpath: [%s]"), name);
11111 break;
11112
252b5132 11113 default:
f7a99963
NC
11114 print_vma (entry->d_un.d_val, PREFIX_HEX);
11115 break;
252b5132
RH
11116 }
11117 }
11118 else
f7a99963
NC
11119 print_vma (entry->d_un.d_val, PREFIX_HEX);
11120
11121 putchar ('\n');
252b5132
RH
11122 }
11123 break;
11124
11125 case DT_PLTRELSZ:
11126 case DT_RELASZ :
11127 case DT_STRSZ :
11128 case DT_RELSZ :
11129 case DT_RELAENT :
11130 case DT_SYMENT :
11131 case DT_RELENT :
978c4450 11132 filedata->dynamic_info[entry->d_tag] = entry->d_un.d_val;
1a0670f3 11133 /* Fall through. */
252b5132
RH
11134 case DT_PLTPADSZ:
11135 case DT_MOVEENT :
11136 case DT_MOVESZ :
11137 case DT_INIT_ARRAYSZ:
11138 case DT_FINI_ARRAYSZ:
047b2264
JJ
11139 case DT_GNU_CONFLICTSZ:
11140 case DT_GNU_LIBLISTSZ:
252b5132 11141 if (do_dynamic)
f7a99963
NC
11142 {
11143 print_vma (entry->d_un.d_val, UNSIGNED);
2b692964 11144 printf (_(" (bytes)\n"));
f7a99963 11145 }
252b5132
RH
11146 break;
11147
11148 case DT_VERDEFNUM:
11149 case DT_VERNEEDNUM:
11150 case DT_RELACOUNT:
11151 case DT_RELCOUNT:
11152 if (do_dynamic)
f7a99963
NC
11153 {
11154 print_vma (entry->d_un.d_val, UNSIGNED);
11155 putchar ('\n');
11156 }
252b5132
RH
11157 break;
11158
11159 case DT_SYMINSZ:
11160 case DT_SYMINENT:
11161 case DT_SYMINFO:
11162 case DT_USED:
11163 case DT_INIT_ARRAY:
11164 case DT_FINI_ARRAY:
11165 if (do_dynamic)
11166 {
d79b3d50 11167 if (entry->d_tag == DT_USED
978c4450 11168 && VALID_DYNAMIC_NAME (filedata, entry->d_un.d_val))
252b5132 11169 {
978c4450 11170 char * name = GET_DYNAMIC_NAME (filedata, entry->d_un.d_val);
252b5132 11171
b34976b6 11172 if (*name)
252b5132
RH
11173 {
11174 printf (_("Not needed object: [%s]\n"), name);
11175 break;
11176 }
11177 }
103f02d3 11178
f7a99963
NC
11179 print_vma (entry->d_un.d_val, PREFIX_HEX);
11180 putchar ('\n');
252b5132
RH
11181 }
11182 break;
11183
11184 case DT_BIND_NOW:
11185 /* The value of this entry is ignored. */
35b1837e
AM
11186 if (do_dynamic)
11187 putchar ('\n');
252b5132 11188 break;
103f02d3 11189
047b2264
JJ
11190 case DT_GNU_PRELINKED:
11191 if (do_dynamic)
11192 {
2cf0635d 11193 struct tm * tmp;
91d6fa6a 11194 time_t atime = entry->d_un.d_val;
047b2264 11195
91d6fa6a 11196 tmp = gmtime (&atime);
071436c6
NC
11197 /* PR 17533 file: 041-1244816-0.004. */
11198 if (tmp == NULL)
5a2cbcf4
L
11199 printf (_("<corrupt time val: %lx"),
11200 (unsigned long) atime);
071436c6
NC
11201 else
11202 printf ("%04u-%02u-%02uT%02u:%02u:%02u\n",
11203 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
11204 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
047b2264
JJ
11205
11206 }
11207 break;
11208
fdc90cb4 11209 case DT_GNU_HASH:
978c4450 11210 filedata->dynamic_info_DT_GNU_HASH = entry->d_un.d_val;
fdc90cb4
JJ
11211 if (do_dynamic)
11212 {
11213 print_vma (entry->d_un.d_val, PREFIX_HEX);
11214 putchar ('\n');
11215 }
11216 break;
11217
a5da3dee
VDM
11218 case DT_GNU_FLAGS_1:
11219 if (do_dynamic)
11220 {
11221 printf (_("Flags:"));
11222 if (entry->d_un.d_val == 0)
11223 printf (_(" None\n"));
11224 else
11225 {
11226 unsigned long int val = entry->d_un.d_val;
11227
11228 if (val & DF_GNU_1_UNIQUE)
11229 {
11230 printf (" UNIQUE");
11231 val ^= DF_GNU_1_UNIQUE;
11232 }
11233 if (val != 0)
11234 printf (" %lx", val);
11235 puts ("");
11236 }
11237 }
11238 break;
11239
252b5132
RH
11240 default:
11241 if ((entry->d_tag >= DT_VERSYM) && (entry->d_tag <= DT_VERNEEDNUM))
978c4450
AM
11242 filedata->version_info[DT_VERSIONTAGIDX (entry->d_tag)]
11243 = entry->d_un.d_val;
252b5132
RH
11244
11245 if (do_dynamic)
11246 {
dda8d76d 11247 switch (filedata->file_header.e_machine)
252b5132 11248 {
37c18eed
SD
11249 case EM_AARCH64:
11250 dynamic_section_aarch64_val (entry);
11251 break;
252b5132 11252 case EM_MIPS:
4fe85591 11253 case EM_MIPS_RS3_LE:
978c4450 11254 dynamic_section_mips_val (filedata, entry);
252b5132 11255 break;
103f02d3 11256 case EM_PARISC:
b2d38a17 11257 dynamic_section_parisc_val (entry);
103f02d3 11258 break;
ecc51f48 11259 case EM_IA_64:
b2d38a17 11260 dynamic_section_ia64_val (entry);
ecc51f48 11261 break;
252b5132 11262 default:
f7a99963
NC
11263 print_vma (entry->d_un.d_val, PREFIX_HEX);
11264 putchar ('\n');
252b5132
RH
11265 }
11266 }
11267 break;
11268 }
11269 }
11270
015dc7e1 11271 return true;
252b5132
RH
11272}
11273
11274static char *
d3ba0551 11275get_ver_flags (unsigned int flags)
252b5132 11276{
6d4f21f6 11277 static char buff[128];
252b5132
RH
11278
11279 buff[0] = 0;
11280
11281 if (flags == 0)
11282 return _("none");
11283
11284 if (flags & VER_FLG_BASE)
7bb1ad17 11285 strcat (buff, "BASE");
252b5132
RH
11286
11287 if (flags & VER_FLG_WEAK)
11288 {
11289 if (flags & VER_FLG_BASE)
7bb1ad17 11290 strcat (buff, " | ");
252b5132 11291
7bb1ad17 11292 strcat (buff, "WEAK");
252b5132
RH
11293 }
11294
44ec90b9
RO
11295 if (flags & VER_FLG_INFO)
11296 {
11297 if (flags & (VER_FLG_BASE|VER_FLG_WEAK))
7bb1ad17 11298 strcat (buff, " | ");
44ec90b9 11299
7bb1ad17 11300 strcat (buff, "INFO");
44ec90b9
RO
11301 }
11302
11303 if (flags & ~(VER_FLG_BASE | VER_FLG_WEAK | VER_FLG_INFO))
7bb1ad17
MR
11304 {
11305 if (flags & (VER_FLG_BASE | VER_FLG_WEAK | VER_FLG_INFO))
11306 strcat (buff, " | ");
11307
11308 strcat (buff, _("<unknown>"));
11309 }
252b5132
RH
11310
11311 return buff;
11312}
11313
11314/* Display the contents of the version sections. */
98fb390a 11315
015dc7e1 11316static bool
dda8d76d 11317process_version_sections (Filedata * filedata)
252b5132 11318{
2cf0635d 11319 Elf_Internal_Shdr * section;
b34976b6 11320 unsigned i;
015dc7e1 11321 bool found = false;
252b5132
RH
11322
11323 if (! do_version)
015dc7e1 11324 return true;
252b5132 11325
dda8d76d
NC
11326 for (i = 0, section = filedata->section_headers;
11327 i < filedata->file_header.e_shnum;
b34976b6 11328 i++, section++)
252b5132
RH
11329 {
11330 switch (section->sh_type)
11331 {
11332 case SHT_GNU_verdef:
11333 {
2cf0635d 11334 Elf_External_Verdef * edefs;
452bf675
AM
11335 unsigned long idx;
11336 unsigned long cnt;
2cf0635d 11337 char * endbuf;
252b5132 11338
015dc7e1 11339 found = true;
252b5132 11340
ca0e11aa
NC
11341 if (filedata->is_separate)
11342 printf (ngettext ("\nIn linked file '%s' the version definition section '%s' contains %u entry:\n",
11343 "\nIn linked file '%s' the version definition section '%s' contains %u entries:\n",
11344 section->sh_info),
11345 filedata->file_name,
11346 printable_section_name (filedata, section),
11347 section->sh_info);
11348 else
11349 printf (ngettext ("\nVersion definition section '%s' "
11350 "contains %u entry:\n",
11351 "\nVersion definition section '%s' "
11352 "contains %u entries:\n",
11353 section->sh_info),
11354 printable_section_name (filedata, section),
11355 section->sh_info);
11356
ae9ac79e 11357 printf (_(" Addr: 0x"));
252b5132 11358 printf_vma (section->sh_addr);
233f82cf 11359 printf (_(" Offset: %#08lx Link: %u (%s)\n"),
1b228002 11360 (unsigned long) section->sh_offset, section->sh_link,
dda8d76d 11361 printable_section_name_from_index (filedata, section->sh_link));
252b5132 11362
3f5e193b 11363 edefs = (Elf_External_Verdef *)
dda8d76d 11364 get_data (NULL, filedata, section->sh_offset, 1,section->sh_size,
3f5e193b 11365 _("version definition section"));
a6e9f9df
AM
11366 if (!edefs)
11367 break;
59245841 11368 endbuf = (char *) edefs + section->sh_size;
252b5132 11369
1445030f 11370 for (idx = cnt = 0; cnt < section->sh_info; ++cnt)
252b5132 11371 {
2cf0635d
NC
11372 char * vstart;
11373 Elf_External_Verdef * edef;
b34976b6 11374 Elf_Internal_Verdef ent;
2cf0635d 11375 Elf_External_Verdaux * eaux;
b34976b6 11376 Elf_Internal_Verdaux aux;
452bf675 11377 unsigned long isum;
b34976b6 11378 int j;
103f02d3 11379
252b5132 11380 vstart = ((char *) edefs) + idx;
54806181
AM
11381 if (vstart + sizeof (*edef) > endbuf)
11382 break;
252b5132
RH
11383
11384 edef = (Elf_External_Verdef *) vstart;
11385
11386 ent.vd_version = BYTE_GET (edef->vd_version);
11387 ent.vd_flags = BYTE_GET (edef->vd_flags);
11388 ent.vd_ndx = BYTE_GET (edef->vd_ndx);
11389 ent.vd_cnt = BYTE_GET (edef->vd_cnt);
11390 ent.vd_hash = BYTE_GET (edef->vd_hash);
11391 ent.vd_aux = BYTE_GET (edef->vd_aux);
11392 ent.vd_next = BYTE_GET (edef->vd_next);
11393
452bf675 11394 printf (_(" %#06lx: Rev: %d Flags: %s"),
252b5132
RH
11395 idx, ent.vd_version, get_ver_flags (ent.vd_flags));
11396
11397 printf (_(" Index: %d Cnt: %d "),
11398 ent.vd_ndx, ent.vd_cnt);
11399
452bf675 11400 /* Check for overflow. */
1445030f 11401 if (ent.vd_aux > (size_t) (endbuf - vstart))
dd24e3da
NC
11402 break;
11403
252b5132
RH
11404 vstart += ent.vd_aux;
11405
1445030f
AM
11406 if (vstart + sizeof (*eaux) > endbuf)
11407 break;
252b5132
RH
11408 eaux = (Elf_External_Verdaux *) vstart;
11409
11410 aux.vda_name = BYTE_GET (eaux->vda_name);
11411 aux.vda_next = BYTE_GET (eaux->vda_next);
11412
978c4450
AM
11413 if (VALID_DYNAMIC_NAME (filedata, aux.vda_name))
11414 printf (_("Name: %s\n"),
11415 GET_DYNAMIC_NAME (filedata, aux.vda_name));
252b5132
RH
11416 else
11417 printf (_("Name index: %ld\n"), aux.vda_name);
11418
11419 isum = idx + ent.vd_aux;
11420
b34976b6 11421 for (j = 1; j < ent.vd_cnt; j++)
252b5132 11422 {
1445030f
AM
11423 if (aux.vda_next < sizeof (*eaux)
11424 && !(j == ent.vd_cnt - 1 && aux.vda_next == 0))
11425 {
11426 warn (_("Invalid vda_next field of %lx\n"),
11427 aux.vda_next);
11428 j = ent.vd_cnt;
11429 break;
11430 }
dd24e3da 11431 /* Check for overflow. */
7e26601c 11432 if (aux.vda_next > (size_t) (endbuf - vstart))
dd24e3da
NC
11433 break;
11434
252b5132
RH
11435 isum += aux.vda_next;
11436 vstart += aux.vda_next;
11437
54806181
AM
11438 if (vstart + sizeof (*eaux) > endbuf)
11439 break;
1445030f 11440 eaux = (Elf_External_Verdaux *) vstart;
252b5132
RH
11441
11442 aux.vda_name = BYTE_GET (eaux->vda_name);
11443 aux.vda_next = BYTE_GET (eaux->vda_next);
11444
978c4450 11445 if (VALID_DYNAMIC_NAME (filedata, aux.vda_name))
452bf675 11446 printf (_(" %#06lx: Parent %d: %s\n"),
978c4450
AM
11447 isum, j,
11448 GET_DYNAMIC_NAME (filedata, aux.vda_name));
252b5132 11449 else
452bf675 11450 printf (_(" %#06lx: Parent %d, name index: %ld\n"),
252b5132
RH
11451 isum, j, aux.vda_name);
11452 }
dd24e3da 11453
54806181
AM
11454 if (j < ent.vd_cnt)
11455 printf (_(" Version def aux past end of section\n"));
252b5132 11456
c9f02c3e
MR
11457 /* PR 17531:
11458 file: id:000001,src:000172+005151,op:splice,rep:2. */
1445030f
AM
11459 if (ent.vd_next < sizeof (*edef)
11460 && !(cnt == section->sh_info - 1 && ent.vd_next == 0))
11461 {
11462 warn (_("Invalid vd_next field of %lx\n"), ent.vd_next);
11463 cnt = section->sh_info;
11464 break;
11465 }
452bf675 11466 if (ent.vd_next > (size_t) (endbuf - ((char *) edefs + idx)))
5d921cbd
NC
11467 break;
11468
252b5132
RH
11469 idx += ent.vd_next;
11470 }
dd24e3da 11471
54806181
AM
11472 if (cnt < section->sh_info)
11473 printf (_(" Version definition past end of section\n"));
252b5132
RH
11474
11475 free (edefs);
11476 }
11477 break;
103f02d3 11478
252b5132
RH
11479 case SHT_GNU_verneed:
11480 {
2cf0635d 11481 Elf_External_Verneed * eneed;
452bf675
AM
11482 unsigned long idx;
11483 unsigned long cnt;
2cf0635d 11484 char * endbuf;
252b5132 11485
015dc7e1 11486 found = true;
252b5132 11487
ca0e11aa
NC
11488 if (filedata->is_separate)
11489 printf (ngettext ("\nIn linked file '%s' the version needs section '%s' contains %u entry:\n",
11490 "\nIn linked file '%s' the version needs section '%s' contains %u entries:\n",
11491 section->sh_info),
11492 filedata->file_name,
11493 printable_section_name (filedata, section),
11494 section->sh_info);
11495 else
11496 printf (ngettext ("\nVersion needs section '%s' "
11497 "contains %u entry:\n",
11498 "\nVersion needs section '%s' "
11499 "contains %u entries:\n",
11500 section->sh_info),
11501 printable_section_name (filedata, section),
11502 section->sh_info);
11503
252b5132
RH
11504 printf (_(" Addr: 0x"));
11505 printf_vma (section->sh_addr);
72de5009 11506 printf (_(" Offset: %#08lx Link: %u (%s)\n"),
1b228002 11507 (unsigned long) section->sh_offset, section->sh_link,
dda8d76d 11508 printable_section_name_from_index (filedata, section->sh_link));
252b5132 11509
dda8d76d 11510 eneed = (Elf_External_Verneed *) get_data (NULL, filedata,
3f5e193b
NC
11511 section->sh_offset, 1,
11512 section->sh_size,
9cf03b7e 11513 _("Version Needs section"));
a6e9f9df
AM
11514 if (!eneed)
11515 break;
59245841 11516 endbuf = (char *) eneed + section->sh_size;
252b5132
RH
11517
11518 for (idx = cnt = 0; cnt < section->sh_info; ++cnt)
11519 {
2cf0635d 11520 Elf_External_Verneed * entry;
b34976b6 11521 Elf_Internal_Verneed ent;
452bf675 11522 unsigned long isum;
b34976b6 11523 int j;
2cf0635d 11524 char * vstart;
252b5132
RH
11525
11526 vstart = ((char *) eneed) + idx;
54806181
AM
11527 if (vstart + sizeof (*entry) > endbuf)
11528 break;
252b5132
RH
11529
11530 entry = (Elf_External_Verneed *) vstart;
11531
11532 ent.vn_version = BYTE_GET (entry->vn_version);
11533 ent.vn_cnt = BYTE_GET (entry->vn_cnt);
11534 ent.vn_file = BYTE_GET (entry->vn_file);
11535 ent.vn_aux = BYTE_GET (entry->vn_aux);
11536 ent.vn_next = BYTE_GET (entry->vn_next);
11537
452bf675 11538 printf (_(" %#06lx: Version: %d"), idx, ent.vn_version);
252b5132 11539
978c4450
AM
11540 if (VALID_DYNAMIC_NAME (filedata, ent.vn_file))
11541 printf (_(" File: %s"),
11542 GET_DYNAMIC_NAME (filedata, ent.vn_file));
252b5132
RH
11543 else
11544 printf (_(" File: %lx"), ent.vn_file);
11545
11546 printf (_(" Cnt: %d\n"), ent.vn_cnt);
11547
dd24e3da 11548 /* Check for overflow. */
7e26601c 11549 if (ent.vn_aux > (size_t) (endbuf - vstart))
dd24e3da 11550 break;
252b5132
RH
11551 vstart += ent.vn_aux;
11552
11553 for (j = 0, isum = idx + ent.vn_aux; j < ent.vn_cnt; ++j)
11554 {
2cf0635d 11555 Elf_External_Vernaux * eaux;
b34976b6 11556 Elf_Internal_Vernaux aux;
252b5132 11557
54806181
AM
11558 if (vstart + sizeof (*eaux) > endbuf)
11559 break;
252b5132
RH
11560 eaux = (Elf_External_Vernaux *) vstart;
11561
11562 aux.vna_hash = BYTE_GET (eaux->vna_hash);
11563 aux.vna_flags = BYTE_GET (eaux->vna_flags);
11564 aux.vna_other = BYTE_GET (eaux->vna_other);
11565 aux.vna_name = BYTE_GET (eaux->vna_name);
11566 aux.vna_next = BYTE_GET (eaux->vna_next);
11567
978c4450 11568 if (VALID_DYNAMIC_NAME (filedata, aux.vna_name))
452bf675 11569 printf (_(" %#06lx: Name: %s"),
978c4450 11570 isum, GET_DYNAMIC_NAME (filedata, aux.vna_name));
252b5132 11571 else
452bf675 11572 printf (_(" %#06lx: Name index: %lx"),
252b5132
RH
11573 isum, aux.vna_name);
11574
11575 printf (_(" Flags: %s Version: %d\n"),
11576 get_ver_flags (aux.vna_flags), aux.vna_other);
11577
1445030f
AM
11578 if (aux.vna_next < sizeof (*eaux)
11579 && !(j == ent.vn_cnt - 1 && aux.vna_next == 0))
53774b7e
NC
11580 {
11581 warn (_("Invalid vna_next field of %lx\n"),
11582 aux.vna_next);
11583 j = ent.vn_cnt;
11584 break;
11585 }
1445030f
AM
11586 /* Check for overflow. */
11587 if (aux.vna_next > (size_t) (endbuf - vstart))
11588 break;
252b5132
RH
11589 isum += aux.vna_next;
11590 vstart += aux.vna_next;
11591 }
9cf03b7e 11592
54806181 11593 if (j < ent.vn_cnt)
f9a6a8f0 11594 warn (_("Missing Version Needs auxiliary information\n"));
252b5132 11595
1445030f
AM
11596 if (ent.vn_next < sizeof (*entry)
11597 && !(cnt == section->sh_info - 1 && ent.vn_next == 0))
c24cf8b6 11598 {
452bf675 11599 warn (_("Invalid vn_next field of %lx\n"), ent.vn_next);
c24cf8b6
NC
11600 cnt = section->sh_info;
11601 break;
11602 }
1445030f
AM
11603 if (ent.vn_next > (size_t) (endbuf - ((char *) eneed + idx)))
11604 break;
252b5132
RH
11605 idx += ent.vn_next;
11606 }
9cf03b7e 11607
54806181 11608 if (cnt < section->sh_info)
9cf03b7e 11609 warn (_("Missing Version Needs information\n"));
103f02d3 11610
252b5132
RH
11611 free (eneed);
11612 }
11613 break;
11614
11615 case SHT_GNU_versym:
11616 {
2cf0635d 11617 Elf_Internal_Shdr * link_section;
8b73c356
NC
11618 size_t total;
11619 unsigned int cnt;
2cf0635d
NC
11620 unsigned char * edata;
11621 unsigned short * data;
11622 char * strtab;
11623 Elf_Internal_Sym * symbols;
11624 Elf_Internal_Shdr * string_sec;
ba5cdace 11625 unsigned long num_syms;
d3ba0551 11626 long off;
252b5132 11627
dda8d76d 11628 if (section->sh_link >= filedata->file_header.e_shnum)
c256ffe7
JJ
11629 break;
11630
dda8d76d 11631 link_section = filedata->section_headers + section->sh_link;
08d8fa11 11632 total = section->sh_size / sizeof (Elf_External_Versym);
252b5132 11633
dda8d76d 11634 if (link_section->sh_link >= filedata->file_header.e_shnum)
c256ffe7
JJ
11635 break;
11636
015dc7e1 11637 found = true;
252b5132 11638
dda8d76d 11639 symbols = GET_ELF_SYMBOLS (filedata, link_section, & num_syms);
dd24e3da
NC
11640 if (symbols == NULL)
11641 break;
252b5132 11642
dda8d76d 11643 string_sec = filedata->section_headers + link_section->sh_link;
252b5132 11644
dda8d76d 11645 strtab = (char *) get_data (NULL, filedata, string_sec->sh_offset, 1,
3f5e193b
NC
11646 string_sec->sh_size,
11647 _("version string table"));
a6e9f9df 11648 if (!strtab)
0429c154
MS
11649 {
11650 free (symbols);
11651 break;
11652 }
252b5132 11653
ca0e11aa
NC
11654 if (filedata->is_separate)
11655 printf (ngettext ("\nIn linked file '%s' the version symbols section '%s' contains %lu entry:\n",
11656 "\nIn linked file '%s' the version symbols section '%s' contains %lu entries:\n",
11657 total),
11658 filedata->file_name,
11659 printable_section_name (filedata, section),
11660 (unsigned long) total);
11661 else
11662 printf (ngettext ("\nVersion symbols section '%s' "
11663 "contains %lu entry:\n",
11664 "\nVersion symbols section '%s' "
11665 "contains %lu entries:\n",
11666 total),
11667 printable_section_name (filedata, section),
11668 (unsigned long) total);
252b5132 11669
ae9ac79e 11670 printf (_(" Addr: 0x"));
252b5132 11671 printf_vma (section->sh_addr);
72de5009 11672 printf (_(" Offset: %#08lx Link: %u (%s)\n"),
1b228002 11673 (unsigned long) section->sh_offset, section->sh_link,
dda8d76d 11674 printable_section_name (filedata, link_section));
252b5132 11675
dda8d76d 11676 off = offset_from_vma (filedata,
978c4450 11677 filedata->version_info[DT_VERSIONTAGIDX (DT_VERSYM)],
d3ba0551 11678 total * sizeof (short));
95099889
AM
11679 edata = (unsigned char *) get_data (NULL, filedata, off,
11680 sizeof (short), total,
11681 _("version symbol data"));
a6e9f9df
AM
11682 if (!edata)
11683 {
11684 free (strtab);
0429c154 11685 free (symbols);
a6e9f9df
AM
11686 break;
11687 }
252b5132 11688
3f5e193b 11689 data = (short unsigned int *) cmalloc (total, sizeof (short));
252b5132
RH
11690
11691 for (cnt = total; cnt --;)
b34976b6
AM
11692 data[cnt] = byte_get (edata + cnt * sizeof (short),
11693 sizeof (short));
252b5132
RH
11694
11695 free (edata);
11696
11697 for (cnt = 0; cnt < total; cnt += 4)
11698 {
11699 int j, nn;
ab273396
AM
11700 char *name;
11701 char *invalid = _("*invalid*");
252b5132
RH
11702
11703 printf (" %03x:", cnt);
11704
11705 for (j = 0; (j < 4) && (cnt + j) < total; ++j)
b34976b6 11706 switch (data[cnt + j])
252b5132
RH
11707 {
11708 case 0:
11709 fputs (_(" 0 (*local*) "), stdout);
11710 break;
11711
11712 case 1:
11713 fputs (_(" 1 (*global*) "), stdout);
11714 break;
11715
11716 default:
c244d050
NC
11717 nn = printf ("%4x%c", data[cnt + j] & VERSYM_VERSION,
11718 data[cnt + j] & VERSYM_HIDDEN ? 'h' : ' ');
252b5132 11719
dd24e3da 11720 /* If this index value is greater than the size of the symbols
ba5cdace
NC
11721 array, break to avoid an out-of-bounds read. */
11722 if ((unsigned long)(cnt + j) >= num_syms)
dd24e3da
NC
11723 {
11724 warn (_("invalid index into symbol array\n"));
11725 break;
11726 }
11727
ab273396 11728 name = NULL;
978c4450 11729 if (filedata->version_info[DT_VERSIONTAGIDX (DT_VERNEED)])
252b5132 11730 {
b34976b6
AM
11731 Elf_Internal_Verneed ivn;
11732 unsigned long offset;
252b5132 11733
d93f0186 11734 offset = offset_from_vma
978c4450
AM
11735 (filedata,
11736 filedata->version_info[DT_VERSIONTAGIDX (DT_VERNEED)],
d93f0186 11737 sizeof (Elf_External_Verneed));
252b5132 11738
b34976b6 11739 do
252b5132 11740 {
b34976b6
AM
11741 Elf_Internal_Vernaux ivna;
11742 Elf_External_Verneed evn;
11743 Elf_External_Vernaux evna;
11744 unsigned long a_off;
252b5132 11745
dda8d76d 11746 if (get_data (&evn, filedata, offset, sizeof (evn), 1,
59245841
NC
11747 _("version need")) == NULL)
11748 break;
0b4362b0 11749
252b5132
RH
11750 ivn.vn_aux = BYTE_GET (evn.vn_aux);
11751 ivn.vn_next = BYTE_GET (evn.vn_next);
11752
11753 a_off = offset + ivn.vn_aux;
11754
11755 do
11756 {
dda8d76d 11757 if (get_data (&evna, filedata, a_off, sizeof (evna),
59245841
NC
11758 1, _("version need aux (2)")) == NULL)
11759 {
11760 ivna.vna_next = 0;
11761 ivna.vna_other = 0;
11762 }
11763 else
11764 {
11765 ivna.vna_next = BYTE_GET (evna.vna_next);
11766 ivna.vna_other = BYTE_GET (evna.vna_other);
11767 }
252b5132
RH
11768
11769 a_off += ivna.vna_next;
11770 }
b34976b6 11771 while (ivna.vna_other != data[cnt + j]
252b5132
RH
11772 && ivna.vna_next != 0);
11773
b34976b6 11774 if (ivna.vna_other == data[cnt + j])
252b5132
RH
11775 {
11776 ivna.vna_name = BYTE_GET (evna.vna_name);
11777
54806181 11778 if (ivna.vna_name >= string_sec->sh_size)
ab273396 11779 name = invalid;
54806181
AM
11780 else
11781 name = strtab + ivna.vna_name;
252b5132
RH
11782 break;
11783 }
11784
11785 offset += ivn.vn_next;
11786 }
11787 while (ivn.vn_next);
11788 }
00d93f34 11789
ab273396 11790 if (data[cnt + j] != 0x8001
978c4450 11791 && filedata->version_info[DT_VERSIONTAGIDX (DT_VERDEF)])
252b5132 11792 {
b34976b6
AM
11793 Elf_Internal_Verdef ivd;
11794 Elf_External_Verdef evd;
11795 unsigned long offset;
252b5132 11796
d93f0186 11797 offset = offset_from_vma
978c4450
AM
11798 (filedata,
11799 filedata->version_info[DT_VERSIONTAGIDX (DT_VERDEF)],
d93f0186 11800 sizeof evd);
252b5132
RH
11801
11802 do
11803 {
dda8d76d 11804 if (get_data (&evd, filedata, offset, sizeof (evd), 1,
59245841
NC
11805 _("version def")) == NULL)
11806 {
11807 ivd.vd_next = 0;
948f632f 11808 /* PR 17531: file: 046-1082287-0.004. */
3102e897
NC
11809 ivd.vd_ndx = (data[cnt + j] & VERSYM_VERSION) + 1;
11810 break;
59245841
NC
11811 }
11812 else
11813 {
11814 ivd.vd_next = BYTE_GET (evd.vd_next);
11815 ivd.vd_ndx = BYTE_GET (evd.vd_ndx);
11816 }
252b5132
RH
11817
11818 offset += ivd.vd_next;
11819 }
c244d050 11820 while (ivd.vd_ndx != (data[cnt + j] & VERSYM_VERSION)
252b5132
RH
11821 && ivd.vd_next != 0);
11822
c244d050 11823 if (ivd.vd_ndx == (data[cnt + j] & VERSYM_VERSION))
252b5132 11824 {
b34976b6
AM
11825 Elf_External_Verdaux evda;
11826 Elf_Internal_Verdaux ivda;
252b5132
RH
11827
11828 ivd.vd_aux = BYTE_GET (evd.vd_aux);
11829
dda8d76d 11830 if (get_data (&evda, filedata,
59245841
NC
11831 offset - ivd.vd_next + ivd.vd_aux,
11832 sizeof (evda), 1,
11833 _("version def aux")) == NULL)
11834 break;
252b5132
RH
11835
11836 ivda.vda_name = BYTE_GET (evda.vda_name);
11837
54806181 11838 if (ivda.vda_name >= string_sec->sh_size)
ab273396
AM
11839 name = invalid;
11840 else if (name != NULL && name != invalid)
11841 name = _("*both*");
54806181
AM
11842 else
11843 name = strtab + ivda.vda_name;
252b5132
RH
11844 }
11845 }
ab273396
AM
11846 if (name != NULL)
11847 nn += printf ("(%s%-*s",
11848 name,
11849 12 - (int) strlen (name),
11850 ")");
252b5132
RH
11851
11852 if (nn < 18)
11853 printf ("%*c", 18 - nn, ' ');
11854 }
11855
11856 putchar ('\n');
11857 }
11858
11859 free (data);
11860 free (strtab);
11861 free (symbols);
11862 }
11863 break;
103f02d3 11864
252b5132
RH
11865 default:
11866 break;
11867 }
11868 }
11869
11870 if (! found)
ca0e11aa
NC
11871 {
11872 if (filedata->is_separate)
11873 printf (_("\nNo version information found in linked file '%s'.\n"),
11874 filedata->file_name);
11875 else
11876 printf (_("\nNo version information found in this file.\n"));
11877 }
252b5132 11878
015dc7e1 11879 return true;
252b5132
RH
11880}
11881
d1133906 11882static const char *
dda8d76d 11883get_symbol_binding (Filedata * filedata, unsigned int binding)
252b5132 11884{
89246a0e 11885 static char buff[64];
252b5132
RH
11886
11887 switch (binding)
11888 {
b34976b6
AM
11889 case STB_LOCAL: return "LOCAL";
11890 case STB_GLOBAL: return "GLOBAL";
11891 case STB_WEAK: return "WEAK";
252b5132
RH
11892 default:
11893 if (binding >= STB_LOPROC && binding <= STB_HIPROC)
e9e44622
JJ
11894 snprintf (buff, sizeof (buff), _("<processor specific>: %d"),
11895 binding);
252b5132 11896 else if (binding >= STB_LOOS && binding <= STB_HIOS)
3e7a7d11
NC
11897 {
11898 if (binding == STB_GNU_UNIQUE
df3a023b 11899 && filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_GNU)
3e7a7d11
NC
11900 return "UNIQUE";
11901 snprintf (buff, sizeof (buff), _("<OS specific>: %d"), binding);
11902 }
252b5132 11903 else
e9e44622 11904 snprintf (buff, sizeof (buff), _("<unknown>: %d"), binding);
252b5132
RH
11905 return buff;
11906 }
11907}
11908
d1133906 11909static const char *
dda8d76d 11910get_symbol_type (Filedata * filedata, unsigned int type)
252b5132 11911{
89246a0e 11912 static char buff[64];
252b5132
RH
11913
11914 switch (type)
11915 {
b34976b6
AM
11916 case STT_NOTYPE: return "NOTYPE";
11917 case STT_OBJECT: return "OBJECT";
11918 case STT_FUNC: return "FUNC";
11919 case STT_SECTION: return "SECTION";
11920 case STT_FILE: return "FILE";
11921 case STT_COMMON: return "COMMON";
11922 case STT_TLS: return "TLS";
15ab5209
DB
11923 case STT_RELC: return "RELC";
11924 case STT_SRELC: return "SRELC";
252b5132
RH
11925 default:
11926 if (type >= STT_LOPROC && type <= STT_HIPROC)
df75f1af 11927 {
dda8d76d 11928 if (filedata->file_header.e_machine == EM_ARM && type == STT_ARM_TFUNC)
3510a7b8 11929 return "THUMB_FUNC";
103f02d3 11930
dda8d76d 11931 if (filedata->file_header.e_machine == EM_SPARCV9 && type == STT_REGISTER)
103f02d3
UD
11932 return "REGISTER";
11933
dda8d76d 11934 if (filedata->file_header.e_machine == EM_PARISC && type == STT_PARISC_MILLI)
103f02d3
UD
11935 return "PARISC_MILLI";
11936
e9e44622 11937 snprintf (buff, sizeof (buff), _("<processor specific>: %d"), type);
df75f1af 11938 }
252b5132 11939 else if (type >= STT_LOOS && type <= STT_HIOS)
103f02d3 11940 {
dda8d76d 11941 if (filedata->file_header.e_machine == EM_PARISC)
103f02d3
UD
11942 {
11943 if (type == STT_HP_OPAQUE)
11944 return "HP_OPAQUE";
11945 if (type == STT_HP_STUB)
11946 return "HP_STUB";
11947 }
11948
d8045f23 11949 if (type == STT_GNU_IFUNC
dda8d76d 11950 && (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_GNU
df3a023b 11951 || filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_FREEBSD))
d8045f23
NC
11952 return "IFUNC";
11953
e9e44622 11954 snprintf (buff, sizeof (buff), _("<OS specific>: %d"), type);
103f02d3 11955 }
252b5132 11956 else
e9e44622 11957 snprintf (buff, sizeof (buff), _("<unknown>: %d"), type);
252b5132
RH
11958 return buff;
11959 }
11960}
11961
d1133906 11962static const char *
d3ba0551 11963get_symbol_visibility (unsigned int visibility)
d1133906
NC
11964{
11965 switch (visibility)
11966 {
b34976b6
AM
11967 case STV_DEFAULT: return "DEFAULT";
11968 case STV_INTERNAL: return "INTERNAL";
11969 case STV_HIDDEN: return "HIDDEN";
d1133906 11970 case STV_PROTECTED: return "PROTECTED";
bee0ee85 11971 default:
27a45f42 11972 error (_("Unrecognized visibility value: %u\n"), visibility);
bee0ee85 11973 return _("<unknown>");
d1133906
NC
11974 }
11975}
11976
2057d69d
CZ
11977static const char *
11978get_alpha_symbol_other (unsigned int other)
9abca702 11979{
2057d69d
CZ
11980 switch (other)
11981 {
11982 case STO_ALPHA_NOPV: return "NOPV";
11983 case STO_ALPHA_STD_GPLOAD: return "STD GPLOAD";
11984 default:
27a45f42 11985 error (_("Unrecognized alpha specific other value: %u\n"), other);
2057d69d 11986 return _("<unknown>");
9abca702 11987 }
2057d69d
CZ
11988}
11989
fd85a6a1
NC
11990static const char *
11991get_solaris_symbol_visibility (unsigned int visibility)
11992{
11993 switch (visibility)
11994 {
11995 case 4: return "EXPORTED";
11996 case 5: return "SINGLETON";
11997 case 6: return "ELIMINATE";
11998 default: return get_symbol_visibility (visibility);
11999 }
12000}
12001
2301ed1c
SN
12002static const char *
12003get_aarch64_symbol_other (unsigned int other)
12004{
12005 static char buf[32];
12006
12007 if (other & STO_AARCH64_VARIANT_PCS)
12008 {
12009 other &= ~STO_AARCH64_VARIANT_PCS;
12010 if (other == 0)
12011 return "VARIANT_PCS";
12012 snprintf (buf, sizeof buf, "VARIANT_PCS | %x", other);
12013 return buf;
12014 }
12015 return NULL;
12016}
12017
5e2b0d47
NC
12018static const char *
12019get_mips_symbol_other (unsigned int other)
12020{
12021 switch (other)
12022 {
32ec8896
NC
12023 case STO_OPTIONAL: return "OPTIONAL";
12024 case STO_MIPS_PLT: return "MIPS PLT";
12025 case STO_MIPS_PIC: return "MIPS PIC";
12026 case STO_MICROMIPS: return "MICROMIPS";
12027 case STO_MICROMIPS | STO_MIPS_PIC: return "MICROMIPS, MIPS PIC";
12028 case STO_MIPS16: return "MIPS16";
12029 default: return NULL;
5e2b0d47
NC
12030 }
12031}
12032
28f997cf 12033static const char *
dda8d76d 12034get_ia64_symbol_other (Filedata * filedata, unsigned int other)
28f997cf 12035{
dda8d76d 12036 if (is_ia64_vms (filedata))
28f997cf
TG
12037 {
12038 static char res[32];
12039
12040 res[0] = 0;
12041
12042 /* Function types is for images and .STB files only. */
dda8d76d 12043 switch (filedata->file_header.e_type)
28f997cf
TG
12044 {
12045 case ET_DYN:
12046 case ET_EXEC:
12047 switch (VMS_ST_FUNC_TYPE (other))
12048 {
12049 case VMS_SFT_CODE_ADDR:
12050 strcat (res, " CA");
12051 break;
12052 case VMS_SFT_SYMV_IDX:
12053 strcat (res, " VEC");
12054 break;
12055 case VMS_SFT_FD:
12056 strcat (res, " FD");
12057 break;
12058 case VMS_SFT_RESERVE:
12059 strcat (res, " RSV");
12060 break;
12061 default:
bee0ee85
NC
12062 warn (_("Unrecognized IA64 VMS ST Function type: %d\n"),
12063 VMS_ST_FUNC_TYPE (other));
12064 strcat (res, " <unknown>");
12065 break;
28f997cf
TG
12066 }
12067 break;
12068 default:
12069 break;
12070 }
12071 switch (VMS_ST_LINKAGE (other))
12072 {
12073 case VMS_STL_IGNORE:
12074 strcat (res, " IGN");
12075 break;
12076 case VMS_STL_RESERVE:
12077 strcat (res, " RSV");
12078 break;
12079 case VMS_STL_STD:
12080 strcat (res, " STD");
12081 break;
12082 case VMS_STL_LNK:
12083 strcat (res, " LNK");
12084 break;
12085 default:
bee0ee85
NC
12086 warn (_("Unrecognized IA64 VMS ST Linkage: %d\n"),
12087 VMS_ST_LINKAGE (other));
12088 strcat (res, " <unknown>");
12089 break;
28f997cf
TG
12090 }
12091
12092 if (res[0] != 0)
12093 return res + 1;
12094 else
12095 return res;
12096 }
12097 return NULL;
12098}
12099
6911b7dc
AM
12100static const char *
12101get_ppc64_symbol_other (unsigned int other)
12102{
14732552
AM
12103 if ((other & ~STO_PPC64_LOCAL_MASK) != 0)
12104 return NULL;
12105
12106 other >>= STO_PPC64_LOCAL_BIT;
12107 if (other <= 6)
6911b7dc 12108 {
89246a0e 12109 static char buf[64];
14732552
AM
12110 if (other >= 2)
12111 other = ppc64_decode_local_entry (other);
12112 snprintf (buf, sizeof buf, _("<localentry>: %d"), other);
6911b7dc
AM
12113 return buf;
12114 }
12115 return NULL;
12116}
12117
5e2b0d47 12118static const char *
dda8d76d 12119get_symbol_other (Filedata * filedata, unsigned int other)
5e2b0d47
NC
12120{
12121 const char * result = NULL;
89246a0e 12122 static char buff [64];
5e2b0d47
NC
12123
12124 if (other == 0)
12125 return "";
12126
dda8d76d 12127 switch (filedata->file_header.e_machine)
5e2b0d47 12128 {
2057d69d
CZ
12129 case EM_ALPHA:
12130 result = get_alpha_symbol_other (other);
12131 break;
2301ed1c
SN
12132 case EM_AARCH64:
12133 result = get_aarch64_symbol_other (other);
12134 break;
5e2b0d47
NC
12135 case EM_MIPS:
12136 result = get_mips_symbol_other (other);
28f997cf
TG
12137 break;
12138 case EM_IA_64:
dda8d76d 12139 result = get_ia64_symbol_other (filedata, other);
28f997cf 12140 break;
6911b7dc
AM
12141 case EM_PPC64:
12142 result = get_ppc64_symbol_other (other);
12143 break;
5e2b0d47 12144 default:
fd85a6a1 12145 result = NULL;
5e2b0d47
NC
12146 break;
12147 }
12148
12149 if (result)
12150 return result;
12151
12152 snprintf (buff, sizeof buff, _("<other>: %x"), other);
12153 return buff;
12154}
12155
d1133906 12156static const char *
dda8d76d 12157get_symbol_index_type (Filedata * filedata, unsigned int type)
252b5132 12158{
b34976b6 12159 static char buff[32];
5cf1065c 12160
252b5132
RH
12161 switch (type)
12162 {
b34976b6
AM
12163 case SHN_UNDEF: return "UND";
12164 case SHN_ABS: return "ABS";
12165 case SHN_COMMON: return "COM";
252b5132 12166 default:
9ce701e2 12167 if (type == SHN_IA_64_ANSI_COMMON
10ca4b04
L
12168 && filedata->file_header.e_machine == EM_IA_64
12169 && filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_HPUX)
12170 return "ANSI_COM";
12171 else if ((filedata->file_header.e_machine == EM_X86_64
12172 || filedata->file_header.e_machine == EM_L1OM
12173 || filedata->file_header.e_machine == EM_K1OM)
12174 && type == SHN_X86_64_LCOMMON)
12175 return "LARGE_COM";
12176 else if ((type == SHN_MIPS_SCOMMON
12177 && filedata->file_header.e_machine == EM_MIPS)
12178 || (type == SHN_TIC6X_SCOMMON
12179 && filedata->file_header.e_machine == EM_TI_C6000))
12180 return "SCOM";
12181 else if (type == SHN_MIPS_SUNDEFINED
12182 && filedata->file_header.e_machine == EM_MIPS)
12183 return "SUND";
12184 else if (type >= SHN_LOPROC && type <= SHN_HIPROC)
12185 sprintf (buff, "PRC[0x%04x]", type & 0xffff);
12186 else if (type >= SHN_LOOS && type <= SHN_HIOS)
12187 sprintf (buff, "OS [0x%04x]", type & 0xffff);
12188 else if (type >= SHN_LORESERVE)
12189 sprintf (buff, "RSV[0x%04x]", type & 0xffff);
12190 else if (filedata->file_header.e_shnum != 0
12191 && type >= filedata->file_header.e_shnum)
12192 sprintf (buff, _("bad section index[%3d]"), type);
12193 else
12194 sprintf (buff, "%3d", type);
12195 break;
fd85a6a1
NC
12196 }
12197
10ca4b04 12198 return buff;
6bd1a22c
L
12199}
12200
bb4d2ac2 12201static const char *
dda8d76d 12202get_symbol_version_string (Filedata * filedata,
015dc7e1 12203 bool is_dynsym,
1449284b
NC
12204 const char * strtab,
12205 unsigned long int strtab_size,
12206 unsigned int si,
12207 Elf_Internal_Sym * psym,
12208 enum versioned_symbol_info * sym_info,
12209 unsigned short * vna_other)
bb4d2ac2 12210{
ab273396
AM
12211 unsigned char data[2];
12212 unsigned short vers_data;
12213 unsigned long offset;
7a815dd5 12214 unsigned short max_vd_ndx;
bb4d2ac2 12215
ab273396 12216 if (!is_dynsym
978c4450 12217 || filedata->version_info[DT_VERSIONTAGIDX (DT_VERSYM)] == 0)
ab273396 12218 return NULL;
bb4d2ac2 12219
978c4450
AM
12220 offset = offset_from_vma (filedata,
12221 filedata->version_info[DT_VERSIONTAGIDX (DT_VERSYM)],
ab273396 12222 sizeof data + si * sizeof (vers_data));
bb4d2ac2 12223
dda8d76d 12224 if (get_data (&data, filedata, offset + si * sizeof (vers_data),
ab273396
AM
12225 sizeof (data), 1, _("version data")) == NULL)
12226 return NULL;
12227
12228 vers_data = byte_get (data, 2);
bb4d2ac2 12229
1f6f5dba 12230 if ((vers_data & VERSYM_HIDDEN) == 0 && vers_data == 0)
ab273396 12231 return NULL;
bb4d2ac2 12232
0b8b7609 12233 *sym_info = (vers_data & VERSYM_HIDDEN) != 0 ? symbol_hidden : symbol_public;
7a815dd5
L
12234 max_vd_ndx = 0;
12235
ab273396
AM
12236 /* Usually we'd only see verdef for defined symbols, and verneed for
12237 undefined symbols. However, symbols defined by the linker in
12238 .dynbss for variables copied from a shared library in order to
12239 avoid text relocations are defined yet have verneed. We could
12240 use a heuristic to detect the special case, for example, check
12241 for verneed first on symbols defined in SHT_NOBITS sections, but
12242 it is simpler and more reliable to just look for both verdef and
12243 verneed. .dynbss might not be mapped to a SHT_NOBITS section. */
bb4d2ac2 12244
ab273396
AM
12245 if (psym->st_shndx != SHN_UNDEF
12246 && vers_data != 0x8001
978c4450 12247 && filedata->version_info[DT_VERSIONTAGIDX (DT_VERDEF)])
ab273396
AM
12248 {
12249 Elf_Internal_Verdef ivd;
12250 Elf_Internal_Verdaux ivda;
12251 Elf_External_Verdaux evda;
12252 unsigned long off;
bb4d2ac2 12253
dda8d76d 12254 off = offset_from_vma (filedata,
978c4450 12255 filedata->version_info[DT_VERSIONTAGIDX (DT_VERDEF)],
ab273396
AM
12256 sizeof (Elf_External_Verdef));
12257
12258 do
bb4d2ac2 12259 {
ab273396
AM
12260 Elf_External_Verdef evd;
12261
dda8d76d 12262 if (get_data (&evd, filedata, off, sizeof (evd), 1,
ab273396
AM
12263 _("version def")) == NULL)
12264 {
12265 ivd.vd_ndx = 0;
12266 ivd.vd_aux = 0;
12267 ivd.vd_next = 0;
1f6f5dba 12268 ivd.vd_flags = 0;
ab273396
AM
12269 }
12270 else
bb4d2ac2 12271 {
ab273396
AM
12272 ivd.vd_ndx = BYTE_GET (evd.vd_ndx);
12273 ivd.vd_aux = BYTE_GET (evd.vd_aux);
12274 ivd.vd_next = BYTE_GET (evd.vd_next);
1f6f5dba 12275 ivd.vd_flags = BYTE_GET (evd.vd_flags);
ab273396 12276 }
bb4d2ac2 12277
7a815dd5
L
12278 if ((ivd.vd_ndx & VERSYM_VERSION) > max_vd_ndx)
12279 max_vd_ndx = ivd.vd_ndx & VERSYM_VERSION;
12280
ab273396
AM
12281 off += ivd.vd_next;
12282 }
12283 while (ivd.vd_ndx != (vers_data & VERSYM_VERSION) && ivd.vd_next != 0);
bb4d2ac2 12284
ab273396
AM
12285 if (ivd.vd_ndx == (vers_data & VERSYM_VERSION))
12286 {
9abca702 12287 if (ivd.vd_ndx == 1 && ivd.vd_flags == VER_FLG_BASE)
1f6f5dba
L
12288 return NULL;
12289
ab273396
AM
12290 off -= ivd.vd_next;
12291 off += ivd.vd_aux;
bb4d2ac2 12292
dda8d76d 12293 if (get_data (&evda, filedata, off, sizeof (evda), 1,
ab273396
AM
12294 _("version def aux")) != NULL)
12295 {
12296 ivda.vda_name = BYTE_GET (evda.vda_name);
bb4d2ac2 12297
ab273396 12298 if (psym->st_name != ivda.vda_name)
0b8b7609
AM
12299 return (ivda.vda_name < strtab_size
12300 ? strtab + ivda.vda_name : _("<corrupt>"));
ab273396
AM
12301 }
12302 }
12303 }
bb4d2ac2 12304
978c4450 12305 if (filedata->version_info[DT_VERSIONTAGIDX (DT_VERNEED)])
ab273396
AM
12306 {
12307 Elf_External_Verneed evn;
12308 Elf_Internal_Verneed ivn;
12309 Elf_Internal_Vernaux ivna;
bb4d2ac2 12310
dda8d76d 12311 offset = offset_from_vma (filedata,
978c4450 12312 filedata->version_info[DT_VERSIONTAGIDX (DT_VERNEED)],
ab273396
AM
12313 sizeof evn);
12314 do
12315 {
12316 unsigned long vna_off;
bb4d2ac2 12317
dda8d76d 12318 if (get_data (&evn, filedata, offset, sizeof (evn), 1,
ab273396
AM
12319 _("version need")) == NULL)
12320 {
12321 ivna.vna_next = 0;
12322 ivna.vna_other = 0;
12323 ivna.vna_name = 0;
12324 break;
12325 }
bb4d2ac2 12326
ab273396
AM
12327 ivn.vn_aux = BYTE_GET (evn.vn_aux);
12328 ivn.vn_next = BYTE_GET (evn.vn_next);
bb4d2ac2 12329
ab273396 12330 vna_off = offset + ivn.vn_aux;
bb4d2ac2 12331
ab273396
AM
12332 do
12333 {
12334 Elf_External_Vernaux evna;
bb4d2ac2 12335
dda8d76d 12336 if (get_data (&evna, filedata, vna_off, sizeof (evna), 1,
ab273396 12337 _("version need aux (3)")) == NULL)
bb4d2ac2 12338 {
ab273396
AM
12339 ivna.vna_next = 0;
12340 ivna.vna_other = 0;
12341 ivna.vna_name = 0;
bb4d2ac2 12342 }
bb4d2ac2 12343 else
bb4d2ac2 12344 {
ab273396
AM
12345 ivna.vna_other = BYTE_GET (evna.vna_other);
12346 ivna.vna_next = BYTE_GET (evna.vna_next);
12347 ivna.vna_name = BYTE_GET (evna.vna_name);
12348 }
bb4d2ac2 12349
ab273396
AM
12350 vna_off += ivna.vna_next;
12351 }
12352 while (ivna.vna_other != vers_data && ivna.vna_next != 0);
bb4d2ac2 12353
ab273396
AM
12354 if (ivna.vna_other == vers_data)
12355 break;
bb4d2ac2 12356
ab273396
AM
12357 offset += ivn.vn_next;
12358 }
12359 while (ivn.vn_next != 0);
bb4d2ac2 12360
ab273396
AM
12361 if (ivna.vna_other == vers_data)
12362 {
12363 *sym_info = symbol_undefined;
12364 *vna_other = ivna.vna_other;
12365 return (ivna.vna_name < strtab_size
12366 ? strtab + ivna.vna_name : _("<corrupt>"));
bb4d2ac2 12367 }
7a815dd5
L
12368 else if ((max_vd_ndx || (vers_data & VERSYM_VERSION) != 1)
12369 && (vers_data & VERSYM_VERSION) > max_vd_ndx)
12370 return _("<corrupt>");
bb4d2ac2 12371 }
ab273396 12372 return NULL;
bb4d2ac2
L
12373}
12374
10ca4b04
L
12375static void
12376print_dynamic_symbol (Filedata *filedata, unsigned long si,
12377 Elf_Internal_Sym *symtab,
12378 Elf_Internal_Shdr *section,
12379 char *strtab, size_t strtab_size)
252b5132 12380{
10ca4b04
L
12381 const char *version_string;
12382 enum versioned_symbol_info sym_info;
12383 unsigned short vna_other;
12384 Elf_Internal_Sym *psym = symtab + si;
b9e920ec 12385
10ca4b04
L
12386 printf ("%6ld: ", si);
12387 print_vma (psym->st_value, LONG_HEX);
12388 putchar (' ');
12389 print_vma (psym->st_size, DEC_5);
12390 printf (" %-7s", get_symbol_type (filedata, ELF_ST_TYPE (psym->st_info)));
12391 printf (" %-6s", get_symbol_binding (filedata, ELF_ST_BIND (psym->st_info)));
12392 if (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_SOLARIS)
12393 printf (" %-7s", get_solaris_symbol_visibility (psym->st_other));
12394 else
252b5132 12395 {
10ca4b04 12396 unsigned int vis = ELF_ST_VISIBILITY (psym->st_other);
252b5132 12397
10ca4b04
L
12398 printf (" %-7s", get_symbol_visibility (vis));
12399 /* Check to see if any other bits in the st_other field are set.
12400 Note - displaying this information disrupts the layout of the
12401 table being generated, but for the moment this case is very rare. */
12402 if (psym->st_other ^ vis)
12403 printf (" [%s] ", get_symbol_other (filedata, psym->st_other ^ vis));
252b5132 12404 }
10ca4b04 12405 printf (" %4s ", get_symbol_index_type (filedata, psym->st_shndx));
0942c7ab 12406
015dc7e1 12407 bool is_valid = VALID_SYMBOL_NAME (strtab, strtab_size, psym->st_name);
0942c7ab 12408 const char * sstr = is_valid ? strtab + psym->st_name : _("<corrupt>");
10ca4b04
L
12409
12410 version_string
12411 = get_symbol_version_string (filedata,
12412 (section == NULL
12413 || section->sh_type == SHT_DYNSYM),
12414 strtab, strtab_size, si,
12415 psym, &sym_info, &vna_other);
b9e920ec 12416
0942c7ab
NC
12417 int len_avail = 21;
12418 if (! do_wide && version_string != NULL)
12419 {
ddb43bab 12420 char buffer[16];
0942c7ab 12421
ddb43bab 12422 len_avail -= 1 + strlen (version_string);
0942c7ab
NC
12423
12424 if (sym_info == symbol_undefined)
12425 len_avail -= sprintf (buffer," (%d)", vna_other);
12426 else if (sym_info != symbol_hidden)
12427 len_avail -= 1;
12428 }
12429
12430 print_symbol (len_avail, sstr);
b9e920ec 12431
10ca4b04
L
12432 if (version_string)
12433 {
12434 if (sym_info == symbol_undefined)
12435 printf ("@%s (%d)", version_string, vna_other);
f7a99963 12436 else
10ca4b04
L
12437 printf (sym_info == symbol_hidden ? "@%s" : "@@%s",
12438 version_string);
12439 }
6bd1a22c 12440
10ca4b04 12441 putchar ('\n');
6bd1a22c 12442
10ca4b04
L
12443 if (ELF_ST_BIND (psym->st_info) == STB_LOCAL
12444 && section != NULL
12445 && si >= section->sh_info
12446 /* Irix 5 and 6 MIPS binaries are known to ignore this requirement. */
12447 && filedata->file_header.e_machine != EM_MIPS
12448 /* Solaris binaries have been found to violate this requirement as
12449 well. Not sure if this is a bug or an ABI requirement. */
12450 && filedata->file_header.e_ident[EI_OSABI] != ELFOSABI_SOLARIS)
12451 warn (_("local symbol %lu found at index >= %s's sh_info value of %u\n"),
12452 si, printable_section_name (filedata, section), section->sh_info);
12453}
f16a9783 12454
0f03783c
NC
12455static const char *
12456get_lto_kind (unsigned int kind)
12457{
12458 switch (kind)
12459 {
12460 case 0: return "DEF";
12461 case 1: return "WEAKDEF";
12462 case 2: return "UNDEF";
12463 case 3: return "WEAKUNDEF";
12464 case 4: return "COMMON";
12465 default:
12466 break;
12467 }
12468
12469 static char buffer[30];
12470 error (_("Unknown LTO symbol definition encountered: %u\n"), kind);
12471 sprintf (buffer, "<unknown: %u>", kind);
12472 return buffer;
12473}
12474
12475static const char *
12476get_lto_visibility (unsigned int visibility)
12477{
12478 switch (visibility)
12479 {
12480 case 0: return "DEFAULT";
12481 case 1: return "PROTECTED";
12482 case 2: return "INTERNAL";
12483 case 3: return "HIDDEN";
12484 default:
12485 break;
12486 }
12487
12488 static char buffer[30];
12489 error (_("Unknown LTO symbol visibility encountered: %u\n"), visibility);
12490 sprintf (buffer, "<unknown: %u>", visibility);
12491 return buffer;
12492}
12493
12494static const char *
12495get_lto_sym_type (unsigned int sym_type)
12496{
12497 switch (sym_type)
12498 {
12499 case 0: return "UNKNOWN";
12500 case 1: return "FUNCTION";
12501 case 2: return "VARIABLE";
12502 default:
12503 break;
12504 }
12505
12506 static char buffer[30];
12507 error (_("Unknown LTO symbol type encountered: %u\n"), sym_type);
12508 sprintf (buffer, "<unknown: %u>", sym_type);
12509 return buffer;
12510}
12511
12512/* Display an LTO format symbol table.
12513 FIXME: The format of LTO symbol tables is not formalized.
12514 So this code could need changing in the future. */
12515
015dc7e1 12516static bool
0f03783c
NC
12517display_lto_symtab (Filedata * filedata,
12518 Elf_Internal_Shdr * section)
12519{
12520 if (section->sh_size == 0)
12521 {
ca0e11aa
NC
12522 if (filedata->is_separate)
12523 printf (_("\nThe LTO Symbol table section '%s' in linked file '%s' is empty!\n"),
12524 printable_section_name (filedata, section),
12525 filedata->file_name);
12526 else
12527 printf (_("\nLTO Symbol table '%s' is empty!\n"),
12528 printable_section_name (filedata, section));
12529
015dc7e1 12530 return true;
0f03783c
NC
12531 }
12532
12533 if (section->sh_size > filedata->file_size)
12534 {
12535 error (_("Section %s has an invalid sh_size of 0x%lx\n"),
12536 printable_section_name (filedata, section),
12537 (unsigned long) section->sh_size);
015dc7e1 12538 return false;
0f03783c
NC
12539 }
12540
12541 void * alloced_data = get_data (NULL, filedata, section->sh_offset,
12542 section->sh_size, 1, _("LTO symbols"));
12543 if (alloced_data == NULL)
015dc7e1 12544 return false;
0f03783c
NC
12545
12546 /* Look for extended data for the symbol table. */
12547 Elf_Internal_Shdr * ext;
12548 void * ext_data_orig = NULL;
12549 char * ext_data = NULL;
12550 char * ext_data_end = NULL;
12551 char * ext_name = NULL;
12552
12553 if (asprintf (& ext_name, ".gnu.lto_.ext_symtab.%s",
b9e920ec 12554 SECTION_NAME (section) + sizeof (".gnu.lto_.symtab.") - 1) > 0
0f03783c
NC
12555 && ext_name != NULL /* Paranoia. */
12556 && (ext = find_section (filedata, ext_name)) != NULL)
12557 {
12558 if (ext->sh_size < 3)
12559 error (_("LTO Symbol extension table '%s' is empty!\n"),
12560 printable_section_name (filedata, ext));
12561 else
12562 {
12563 ext_data_orig = ext_data = get_data (NULL, filedata, ext->sh_offset,
12564 ext->sh_size, 1,
12565 _("LTO ext symbol data"));
12566 if (ext_data != NULL)
12567 {
12568 ext_data_end = ext_data + ext->sh_size;
12569 if (* ext_data++ != 1)
12570 error (_("Unexpected version number in symbol extension table\n"));
12571 }
12572 }
12573 }
b9e920ec 12574
0f03783c
NC
12575 const unsigned char * data = (const unsigned char *) alloced_data;
12576 const unsigned char * end = data + section->sh_size;
12577
ca0e11aa
NC
12578 if (filedata->is_separate)
12579 printf (_("\nIn linked file '%s': "), filedata->file_name);
12580 else
12581 printf ("\n");
12582
0f03783c
NC
12583 if (ext_data_orig != NULL)
12584 {
12585 if (do_wide)
ca0e11aa 12586 printf (_("LTO Symbol table '%s' and extension table '%s' contain:\n"),
0f03783c
NC
12587 printable_section_name (filedata, section),
12588 printable_section_name (filedata, ext));
12589 else
12590 {
ca0e11aa 12591 printf (_("LTO Symbol table '%s'\n"),
0f03783c
NC
12592 printable_section_name (filedata, section));
12593 printf (_(" and extension table '%s' contain:\n"),
12594 printable_section_name (filedata, ext));
12595 }
12596 }
12597 else
ca0e11aa 12598 printf (_("LTO Symbol table '%s' contains:\n"),
0f03783c 12599 printable_section_name (filedata, section));
b9e920ec 12600
0f03783c 12601 /* FIXME: Add a wide version. */
b9e920ec 12602 if (ext_data_orig != NULL)
0f03783c
NC
12603 printf (_(" Comdat_Key Kind Visibility Size Slot Type Section Name\n"));
12604 else
12605 printf (_(" Comdat_Key Kind Visibility Size Slot Name\n"));
12606
12607 /* FIXME: We do not handle style prefixes. */
12608
12609 while (data < end)
12610 {
12611 const unsigned char * sym_name = data;
12612 data += strnlen ((const char *) sym_name, end - data) + 1;
12613 if (data >= end)
12614 goto fail;
12615
12616 const unsigned char * comdat_key = data;
12617 data += strnlen ((const char *) comdat_key, end - data) + 1;
12618 if (data >= end)
12619 goto fail;
12620
12621 if (data + 2 + 8 + 4 > end)
12622 goto fail;
12623
12624 unsigned int kind = *data++;
12625 unsigned int visibility = *data++;
12626
12627 elf_vma size = byte_get (data, 8);
12628 data += 8;
12629
12630 elf_vma slot = byte_get (data, 4);
12631 data += 4;
12632
12633 if (ext_data != NULL)
12634 {
12635 if (ext_data < (ext_data_end - 1))
12636 {
12637 unsigned int sym_type = * ext_data ++;
12638 unsigned int sec_kind = * ext_data ++;
12639
12640 printf (" %10s %10s %11s %08lx %08lx %9s %08lx _",
12641 * comdat_key == 0 ? "-" : (char *) comdat_key,
12642 get_lto_kind (kind),
12643 get_lto_visibility (visibility),
12644 (long) size,
12645 (long) slot,
12646 get_lto_sym_type (sym_type),
12647 (long) sec_kind);
12648 print_symbol (6, (const char *) sym_name);
12649 }
12650 else
12651 {
12652 error (_("Ran out of LTO symbol extension data\n"));
12653 ext_data = NULL;
12654 /* FIXME: return FAIL result ? */
12655 }
12656 }
12657 else
12658 {
12659 printf (" %10s %10s %11s %08lx %08lx _",
12660 * comdat_key == 0 ? "-" : (char *) comdat_key,
12661 get_lto_kind (kind),
12662 get_lto_visibility (visibility),
12663 (long) size,
12664 (long) slot);
12665 print_symbol (21, (const char *) sym_name);
12666 }
12667 putchar ('\n');
12668 }
12669
12670 if (ext_data != NULL && ext_data < ext_data_end)
12671 {
12672 error (_("Data remains in the LTO symbol extension table\n"));
12673 goto fail;
12674 }
12675
12676 free (alloced_data);
12677 free (ext_data_orig);
12678 free (ext_name);
015dc7e1 12679 return true;
b9e920ec 12680
0f03783c
NC
12681 fail:
12682 error (_("Buffer overrun encountered whilst decoding LTO symbol table\n"));
12683 free (alloced_data);
12684 free (ext_data_orig);
12685 free (ext_name);
015dc7e1 12686 return false;
0f03783c
NC
12687}
12688
12689/* Display LTO symbol tables. */
12690
015dc7e1 12691static bool
0f03783c
NC
12692process_lto_symbol_tables (Filedata * filedata)
12693{
12694 Elf_Internal_Shdr * section;
12695 unsigned int i;
015dc7e1 12696 bool res = true;
0f03783c
NC
12697
12698 if (!do_lto_syms)
015dc7e1 12699 return true;
0f03783c
NC
12700
12701 if (filedata->section_headers == NULL)
015dc7e1 12702 return true;
0f03783c
NC
12703
12704 for (i = 0, section = filedata->section_headers;
12705 i < filedata->file_header.e_shnum;
12706 i++, section++)
b9e920ec 12707 if (SECTION_NAME_VALID (section)
08dedd66 12708 && startswith (SECTION_NAME (section), ".gnu.lto_.symtab."))
0f03783c
NC
12709 res &= display_lto_symtab (filedata, section);
12710
b9e920ec 12711 return res;
0f03783c
NC
12712}
12713
10ca4b04 12714/* Dump the symbol table. */
0f03783c 12715
015dc7e1 12716static bool
10ca4b04
L
12717process_symbol_table (Filedata * filedata)
12718{
12719 Elf_Internal_Shdr * section;
f16a9783 12720
10ca4b04 12721 if (!do_syms && !do_dyn_syms && !do_histogram)
015dc7e1 12722 return true;
6bd1a22c 12723
978c4450 12724 if ((filedata->dynamic_info[DT_HASH] || filedata->dynamic_info_DT_GNU_HASH)
6bd1a22c
L
12725 && do_syms
12726 && do_using_dynamic
978c4450
AM
12727 && filedata->dynamic_strings != NULL
12728 && filedata->dynamic_symbols != NULL)
6bd1a22c 12729 {
10ca4b04 12730 unsigned long si;
6bd1a22c 12731
ca0e11aa
NC
12732 if (filedata->is_separate)
12733 {
12734 printf (ngettext ("\nIn linked file '%s' the dynamic symbol table contains %lu entry:\n",
12735 "\nIn linked file '%s' the dynamic symbol table contains %lu entries:\n",
12736 filedata->num_dynamic_syms),
12737 filedata->file_name,
12738 filedata->num_dynamic_syms);
12739 }
12740 else
12741 {
12742 printf (ngettext ("\nSymbol table for image contains %lu entry:\n",
12743 "\nSymbol table for image contains %lu entries:\n",
12744 filedata->num_dynamic_syms),
12745 filedata->num_dynamic_syms);
12746 }
10ca4b04
L
12747 if (is_32bit_elf)
12748 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
12749 else
12750 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
6bd1a22c 12751
978c4450
AM
12752 for (si = 0; si < filedata->num_dynamic_syms; si++)
12753 print_dynamic_symbol (filedata, si, filedata->dynamic_symbols, NULL,
12754 filedata->dynamic_strings,
12755 filedata->dynamic_strings_length);
252b5132 12756 }
8b73c356 12757 else if ((do_dyn_syms || (do_syms && !do_using_dynamic))
dda8d76d 12758 && filedata->section_headers != NULL)
252b5132 12759 {
b34976b6 12760 unsigned int i;
252b5132 12761
dda8d76d
NC
12762 for (i = 0, section = filedata->section_headers;
12763 i < filedata->file_header.e_shnum;
252b5132
RH
12764 i++, section++)
12765 {
2cf0635d 12766 char * strtab = NULL;
c256ffe7 12767 unsigned long int strtab_size = 0;
2cf0635d 12768 Elf_Internal_Sym * symtab;
ef3df110 12769 unsigned long si, num_syms;
252b5132 12770
2c610e4b
L
12771 if ((section->sh_type != SHT_SYMTAB
12772 && section->sh_type != SHT_DYNSYM)
12773 || (!do_syms
12774 && section->sh_type == SHT_SYMTAB))
252b5132
RH
12775 continue;
12776
dd24e3da
NC
12777 if (section->sh_entsize == 0)
12778 {
12779 printf (_("\nSymbol table '%s' has a sh_entsize of zero!\n"),
dda8d76d 12780 printable_section_name (filedata, section));
dd24e3da
NC
12781 continue;
12782 }
12783
d3a49aa8 12784 num_syms = section->sh_size / section->sh_entsize;
ca0e11aa
NC
12785
12786 if (filedata->is_separate)
12787 printf (ngettext ("\nIn linked file '%s' symbol section '%s' contains %lu entry:\n",
12788 "\nIn linked file '%s' symbol section '%s' contains %lu entries:\n",
12789 num_syms),
12790 filedata->file_name,
12791 printable_section_name (filedata, section),
12792 num_syms);
12793 else
12794 printf (ngettext ("\nSymbol table '%s' contains %lu entry:\n",
12795 "\nSymbol table '%s' contains %lu entries:\n",
12796 num_syms),
12797 printable_section_name (filedata, section),
12798 num_syms);
dd24e3da 12799
f7a99963 12800 if (is_32bit_elf)
ca47b30c 12801 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
f7a99963 12802 else
ca47b30c 12803 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
252b5132 12804
dda8d76d 12805 symtab = GET_ELF_SYMBOLS (filedata, section, & num_syms);
252b5132
RH
12806 if (symtab == NULL)
12807 continue;
12808
dda8d76d 12809 if (section->sh_link == filedata->file_header.e_shstrndx)
c256ffe7 12810 {
dda8d76d
NC
12811 strtab = filedata->string_table;
12812 strtab_size = filedata->string_table_length;
c256ffe7 12813 }
dda8d76d 12814 else if (section->sh_link < filedata->file_header.e_shnum)
252b5132 12815 {
2cf0635d 12816 Elf_Internal_Shdr * string_sec;
252b5132 12817
dda8d76d 12818 string_sec = filedata->section_headers + section->sh_link;
252b5132 12819
dda8d76d 12820 strtab = (char *) get_data (NULL, filedata, string_sec->sh_offset,
3f5e193b
NC
12821 1, string_sec->sh_size,
12822 _("string table"));
c256ffe7 12823 strtab_size = strtab != NULL ? string_sec->sh_size : 0;
252b5132
RH
12824 }
12825
10ca4b04
L
12826 for (si = 0; si < num_syms; si++)
12827 print_dynamic_symbol (filedata, si, symtab, section,
12828 strtab, strtab_size);
252b5132
RH
12829
12830 free (symtab);
dda8d76d 12831 if (strtab != filedata->string_table)
252b5132
RH
12832 free (strtab);
12833 }
12834 }
12835 else if (do_syms)
12836 printf
12837 (_("\nDynamic symbol information is not available for displaying symbols.\n"));
12838
978c4450 12839 if (do_histogram && filedata->buckets != NULL)
252b5132 12840 {
2cf0635d
NC
12841 unsigned long * lengths;
12842 unsigned long * counts;
66543521
AM
12843 unsigned long hn;
12844 bfd_vma si;
12845 unsigned long maxlength = 0;
12846 unsigned long nzero_counts = 0;
12847 unsigned long nsyms = 0;
6bd6a03d 12848 char *visited;
252b5132 12849
d3a49aa8
AM
12850 printf (ngettext ("\nHistogram for bucket list length "
12851 "(total of %lu bucket):\n",
12852 "\nHistogram for bucket list length "
12853 "(total of %lu buckets):\n",
978c4450
AM
12854 (unsigned long) filedata->nbuckets),
12855 (unsigned long) filedata->nbuckets);
252b5132 12856
978c4450
AM
12857 lengths = (unsigned long *) calloc (filedata->nbuckets,
12858 sizeof (*lengths));
252b5132
RH
12859 if (lengths == NULL)
12860 {
8b73c356 12861 error (_("Out of memory allocating space for histogram buckets\n"));
fd486f32 12862 goto err_out;
252b5132 12863 }
978c4450
AM
12864 visited = xcmalloc (filedata->nchains, 1);
12865 memset (visited, 0, filedata->nchains);
8b73c356
NC
12866
12867 printf (_(" Length Number %% of total Coverage\n"));
978c4450 12868 for (hn = 0; hn < filedata->nbuckets; ++hn)
252b5132 12869 {
978c4450 12870 for (si = filedata->buckets[hn]; si > 0; si = filedata->chains[si])
252b5132 12871 {
b34976b6 12872 ++nsyms;
252b5132 12873 if (maxlength < ++lengths[hn])
b34976b6 12874 ++maxlength;
978c4450 12875 if (si >= filedata->nchains || visited[si])
6bd6a03d
AM
12876 {
12877 error (_("histogram chain is corrupt\n"));
12878 break;
12879 }
12880 visited[si] = 1;
252b5132
RH
12881 }
12882 }
6bd6a03d 12883 free (visited);
252b5132 12884
3f5e193b 12885 counts = (unsigned long *) calloc (maxlength + 1, sizeof (*counts));
252b5132
RH
12886 if (counts == NULL)
12887 {
b2e951ec 12888 free (lengths);
8b73c356 12889 error (_("Out of memory allocating space for histogram counts\n"));
fd486f32 12890 goto err_out;
252b5132
RH
12891 }
12892
978c4450 12893 for (hn = 0; hn < filedata->nbuckets; ++hn)
b34976b6 12894 ++counts[lengths[hn]];
252b5132 12895
978c4450 12896 if (filedata->nbuckets > 0)
252b5132 12897 {
66543521
AM
12898 unsigned long i;
12899 printf (" 0 %-10lu (%5.1f%%)\n",
978c4450 12900 counts[0], (counts[0] * 100.0) / filedata->nbuckets);
66543521 12901 for (i = 1; i <= maxlength; ++i)
103f02d3 12902 {
66543521
AM
12903 nzero_counts += counts[i] * i;
12904 printf ("%7lu %-10lu (%5.1f%%) %5.1f%%\n",
978c4450 12905 i, counts[i], (counts[i] * 100.0) / filedata->nbuckets,
103f02d3
UD
12906 (nzero_counts * 100.0) / nsyms);
12907 }
252b5132
RH
12908 }
12909
12910 free (counts);
12911 free (lengths);
12912 }
12913
978c4450
AM
12914 free (filedata->buckets);
12915 filedata->buckets = NULL;
12916 filedata->nbuckets = 0;
12917 free (filedata->chains);
12918 filedata->chains = NULL;
252b5132 12919
978c4450 12920 if (do_histogram && filedata->gnubuckets != NULL)
fdc90cb4 12921 {
2cf0635d
NC
12922 unsigned long * lengths;
12923 unsigned long * counts;
fdc90cb4
JJ
12924 unsigned long hn;
12925 unsigned long maxlength = 0;
12926 unsigned long nzero_counts = 0;
12927 unsigned long nsyms = 0;
fdc90cb4 12928
f16a9783 12929 printf (ngettext ("\nHistogram for `%s' bucket list length "
d3a49aa8 12930 "(total of %lu bucket):\n",
f16a9783 12931 "\nHistogram for `%s' bucket list length "
d3a49aa8 12932 "(total of %lu buckets):\n",
978c4450
AM
12933 (unsigned long) filedata->ngnubuckets),
12934 GNU_HASH_SECTION_NAME (filedata),
12935 (unsigned long) filedata->ngnubuckets);
8b73c356 12936
978c4450
AM
12937 lengths = (unsigned long *) calloc (filedata->ngnubuckets,
12938 sizeof (*lengths));
fdc90cb4
JJ
12939 if (lengths == NULL)
12940 {
8b73c356 12941 error (_("Out of memory allocating space for gnu histogram buckets\n"));
fd486f32 12942 goto err_out;
fdc90cb4
JJ
12943 }
12944
fdc90cb4
JJ
12945 printf (_(" Length Number %% of total Coverage\n"));
12946
978c4450
AM
12947 for (hn = 0; hn < filedata->ngnubuckets; ++hn)
12948 if (filedata->gnubuckets[hn] != 0)
fdc90cb4
JJ
12949 {
12950 bfd_vma off, length = 1;
12951
978c4450 12952 for (off = filedata->gnubuckets[hn] - filedata->gnusymidx;
071436c6 12953 /* PR 17531 file: 010-77222-0.004. */
978c4450
AM
12954 off < filedata->ngnuchains
12955 && (filedata->gnuchains[off] & 1) == 0;
071436c6 12956 ++off)
fdc90cb4
JJ
12957 ++length;
12958 lengths[hn] = length;
12959 if (length > maxlength)
12960 maxlength = length;
12961 nsyms += length;
12962 }
12963
3f5e193b 12964 counts = (unsigned long *) calloc (maxlength + 1, sizeof (*counts));
fdc90cb4
JJ
12965 if (counts == NULL)
12966 {
b2e951ec 12967 free (lengths);
8b73c356 12968 error (_("Out of memory allocating space for gnu histogram counts\n"));
fd486f32 12969 goto err_out;
fdc90cb4
JJ
12970 }
12971
978c4450 12972 for (hn = 0; hn < filedata->ngnubuckets; ++hn)
fdc90cb4
JJ
12973 ++counts[lengths[hn]];
12974
978c4450 12975 if (filedata->ngnubuckets > 0)
fdc90cb4
JJ
12976 {
12977 unsigned long j;
12978 printf (" 0 %-10lu (%5.1f%%)\n",
978c4450 12979 counts[0], (counts[0] * 100.0) / filedata->ngnubuckets);
fdc90cb4
JJ
12980 for (j = 1; j <= maxlength; ++j)
12981 {
12982 nzero_counts += counts[j] * j;
12983 printf ("%7lu %-10lu (%5.1f%%) %5.1f%%\n",
978c4450 12984 j, counts[j], (counts[j] * 100.0) / filedata->ngnubuckets,
fdc90cb4
JJ
12985 (nzero_counts * 100.0) / nsyms);
12986 }
12987 }
12988
12989 free (counts);
12990 free (lengths);
fdc90cb4 12991 }
978c4450
AM
12992 free (filedata->gnubuckets);
12993 filedata->gnubuckets = NULL;
12994 filedata->ngnubuckets = 0;
12995 free (filedata->gnuchains);
12996 filedata->gnuchains = NULL;
12997 filedata->ngnuchains = 0;
12998 free (filedata->mipsxlat);
12999 filedata->mipsxlat = NULL;
015dc7e1 13000 return true;
fd486f32
AM
13001
13002 err_out:
978c4450
AM
13003 free (filedata->gnubuckets);
13004 filedata->gnubuckets = NULL;
13005 filedata->ngnubuckets = 0;
13006 free (filedata->gnuchains);
13007 filedata->gnuchains = NULL;
13008 filedata->ngnuchains = 0;
13009 free (filedata->mipsxlat);
13010 filedata->mipsxlat = NULL;
13011 free (filedata->buckets);
13012 filedata->buckets = NULL;
13013 filedata->nbuckets = 0;
13014 free (filedata->chains);
13015 filedata->chains = NULL;
015dc7e1 13016 return false;
252b5132
RH
13017}
13018
015dc7e1 13019static bool
ca0e11aa 13020process_syminfo (Filedata * filedata)
252b5132 13021{
b4c96d0d 13022 unsigned int i;
252b5132 13023
978c4450 13024 if (filedata->dynamic_syminfo == NULL
252b5132
RH
13025 || !do_dynamic)
13026 /* No syminfo, this is ok. */
015dc7e1 13027 return true;
252b5132
RH
13028
13029 /* There better should be a dynamic symbol section. */
978c4450 13030 if (filedata->dynamic_symbols == NULL || filedata->dynamic_strings == NULL)
015dc7e1 13031 return false;
252b5132 13032
ca0e11aa
NC
13033 if (filedata->is_separate)
13034 printf (ngettext ("\nIn linked file '%s: the dynamic info segment at offset 0x%lx contains %d entry:\n",
13035 "\nIn linked file '%s: the dynamic info segment at offset 0x%lx contains %d entries:\n",
13036 filedata->dynamic_syminfo_nent),
13037 filedata->file_name,
13038 filedata->dynamic_syminfo_offset,
13039 filedata->dynamic_syminfo_nent);
13040 else
d3a49aa8
AM
13041 printf (ngettext ("\nDynamic info segment at offset 0x%lx "
13042 "contains %d entry:\n",
13043 "\nDynamic info segment at offset 0x%lx "
13044 "contains %d entries:\n",
978c4450 13045 filedata->dynamic_syminfo_nent),
ca0e11aa
NC
13046 filedata->dynamic_syminfo_offset,
13047 filedata->dynamic_syminfo_nent);
252b5132
RH
13048
13049 printf (_(" Num: Name BoundTo Flags\n"));
978c4450 13050 for (i = 0; i < filedata->dynamic_syminfo_nent; ++i)
252b5132 13051 {
978c4450 13052 unsigned short int flags = filedata->dynamic_syminfo[i].si_flags;
252b5132 13053
31104126 13054 printf ("%4d: ", i);
978c4450 13055 if (i >= filedata->num_dynamic_syms)
4082ef84 13056 printf (_("<corrupt index>"));
978c4450
AM
13057 else if (VALID_DYNAMIC_NAME (filedata, filedata->dynamic_symbols[i].st_name))
13058 print_symbol (30, GET_DYNAMIC_NAME (filedata,
13059 filedata->dynamic_symbols[i].st_name));
d79b3d50 13060 else
978c4450 13061 printf (_("<corrupt: %19ld>"), filedata->dynamic_symbols[i].st_name);
31104126 13062 putchar (' ');
252b5132 13063
978c4450 13064 switch (filedata->dynamic_syminfo[i].si_boundto)
252b5132
RH
13065 {
13066 case SYMINFO_BT_SELF:
13067 fputs ("SELF ", stdout);
13068 break;
13069 case SYMINFO_BT_PARENT:
13070 fputs ("PARENT ", stdout);
13071 break;
13072 default:
978c4450
AM
13073 if (filedata->dynamic_syminfo[i].si_boundto > 0
13074 && filedata->dynamic_syminfo[i].si_boundto < filedata->dynamic_nent
13075 && VALID_DYNAMIC_NAME (filedata,
13076 filedata->dynamic_section[filedata->dynamic_syminfo[i].si_boundto].d_un.d_val))
31104126 13077 {
978c4450
AM
13078 print_symbol (10, GET_DYNAMIC_NAME (filedata,
13079 filedata->dynamic_section[filedata->dynamic_syminfo[i].si_boundto].d_un.d_val));
31104126
NC
13080 putchar (' ' );
13081 }
252b5132 13082 else
978c4450 13083 printf ("%-10d ", filedata->dynamic_syminfo[i].si_boundto);
252b5132
RH
13084 break;
13085 }
13086
13087 if (flags & SYMINFO_FLG_DIRECT)
13088 printf (" DIRECT");
13089 if (flags & SYMINFO_FLG_PASSTHRU)
13090 printf (" PASSTHRU");
13091 if (flags & SYMINFO_FLG_COPY)
13092 printf (" COPY");
13093 if (flags & SYMINFO_FLG_LAZYLOAD)
13094 printf (" LAZYLOAD");
13095
13096 puts ("");
13097 }
13098
015dc7e1 13099 return true;
252b5132
RH
13100}
13101
75802ccb
CE
13102/* A macro which evaluates to TRUE if the region ADDR .. ADDR + NELEM
13103 is contained by the region START .. END. The types of ADDR, START
13104 and END should all be the same. Note both ADDR + NELEM and END
13105 point to just beyond the end of the regions that are being tested. */
13106#define IN_RANGE(START,END,ADDR,NELEM) \
13107 (((ADDR) >= (START)) && ((ADDR) < (END)) && ((ADDR) + (NELEM) <= (END)))
b32e566b 13108
cf13d699
NC
13109/* Check to see if the given reloc needs to be handled in a target specific
13110 manner. If so then process the reloc and return TRUE otherwise return
f84ce13b
NC
13111 FALSE.
13112
13113 If called with reloc == NULL, then this is a signal that reloc processing
13114 for the current section has finished, and any saved state should be
13115 discarded. */
09c11c86 13116
015dc7e1 13117static bool
dda8d76d
NC
13118target_specific_reloc_handling (Filedata * filedata,
13119 Elf_Internal_Rela * reloc,
13120 unsigned char * start,
13121 unsigned char * end,
13122 Elf_Internal_Sym * symtab,
13123 unsigned long num_syms)
252b5132 13124{
f84ce13b
NC
13125 unsigned int reloc_type = 0;
13126 unsigned long sym_index = 0;
13127
13128 if (reloc)
13129 {
dda8d76d 13130 reloc_type = get_reloc_type (filedata, reloc->r_info);
f84ce13b
NC
13131 sym_index = get_reloc_symindex (reloc->r_info);
13132 }
252b5132 13133
dda8d76d 13134 switch (filedata->file_header.e_machine)
252b5132 13135 {
13761a11
NC
13136 case EM_MSP430:
13137 case EM_MSP430_OLD:
13138 {
13139 static Elf_Internal_Sym * saved_sym = NULL;
13140
f84ce13b
NC
13141 if (reloc == NULL)
13142 {
13143 saved_sym = NULL;
015dc7e1 13144 return true;
f84ce13b
NC
13145 }
13146
13761a11
NC
13147 switch (reloc_type)
13148 {
13149 case 10: /* R_MSP430_SYM_DIFF */
7d81bc93 13150 case 12: /* R_MSP430_GNU_SUB_ULEB128 */
dda8d76d 13151 if (uses_msp430x_relocs (filedata))
13761a11 13152 break;
1a0670f3 13153 /* Fall through. */
13761a11 13154 case 21: /* R_MSP430X_SYM_DIFF */
7d81bc93 13155 case 23: /* R_MSP430X_GNU_SUB_ULEB128 */
f84ce13b
NC
13156 /* PR 21139. */
13157 if (sym_index >= num_syms)
13158 error (_("MSP430 SYM_DIFF reloc contains invalid symbol index %lu\n"),
13159 sym_index);
13160 else
13161 saved_sym = symtab + sym_index;
015dc7e1 13162 return true;
13761a11
NC
13163
13164 case 1: /* R_MSP430_32 or R_MSP430_ABS32 */
13165 case 3: /* R_MSP430_16 or R_MSP430_ABS8 */
13166 goto handle_sym_diff;
0b4362b0 13167
13761a11
NC
13168 case 5: /* R_MSP430_16_BYTE */
13169 case 9: /* R_MSP430_8 */
7d81bc93 13170 case 11: /* R_MSP430_GNU_SET_ULEB128 */
dda8d76d 13171 if (uses_msp430x_relocs (filedata))
13761a11
NC
13172 break;
13173 goto handle_sym_diff;
13174
13175 case 2: /* R_MSP430_ABS16 */
13176 case 15: /* R_MSP430X_ABS16 */
7d81bc93 13177 case 22: /* R_MSP430X_GNU_SET_ULEB128 */
dda8d76d 13178 if (! uses_msp430x_relocs (filedata))
13761a11
NC
13179 break;
13180 goto handle_sym_diff;
0b4362b0 13181
13761a11
NC
13182 handle_sym_diff:
13183 if (saved_sym != NULL)
13184 {
13185 bfd_vma value;
5a805384 13186 unsigned int reloc_size = 0;
7d81bc93
JL
13187 int leb_ret = 0;
13188 switch (reloc_type)
13189 {
13190 case 1: /* R_MSP430_32 or R_MSP430_ABS32 */
13191 reloc_size = 4;
13192 break;
13193 case 11: /* R_MSP430_GNU_SET_ULEB128 */
13194 case 22: /* R_MSP430X_GNU_SET_ULEB128 */
5a805384 13195 if (reloc->r_offset < (size_t) (end - start))
015dc7e1 13196 read_leb128 (start + reloc->r_offset, end, false,
5a805384 13197 &reloc_size, &leb_ret);
7d81bc93
JL
13198 break;
13199 default:
13200 reloc_size = 2;
13201 break;
13202 }
13761a11 13203
5a805384 13204 if (leb_ret != 0 || reloc_size == 0 || reloc_size > 8)
7d81bc93
JL
13205 error (_("MSP430 ULEB128 field at 0x%lx contains invalid "
13206 "ULEB128 value\n"),
13207 (long) reloc->r_offset);
13208 else if (sym_index >= num_syms)
f84ce13b
NC
13209 error (_("MSP430 reloc contains invalid symbol index %lu\n"),
13210 sym_index);
03f7786e 13211 else
f84ce13b
NC
13212 {
13213 value = reloc->r_addend + (symtab[sym_index].st_value
13214 - saved_sym->st_value);
13215
b32e566b 13216 if (IN_RANGE (start, end, start + reloc->r_offset, reloc_size))
f84ce13b 13217 byte_put (start + reloc->r_offset, value, reloc_size);
b32e566b
NC
13218 else
13219 /* PR 21137 */
13220 error (_("MSP430 sym diff reloc contains invalid offset: 0x%lx\n"),
13221 (long) reloc->r_offset);
f84ce13b 13222 }
13761a11
NC
13223
13224 saved_sym = NULL;
015dc7e1 13225 return true;
13761a11
NC
13226 }
13227 break;
13228
13229 default:
13230 if (saved_sym != NULL)
071436c6 13231 error (_("Unhandled MSP430 reloc type found after SYM_DIFF reloc\n"));
13761a11
NC
13232 break;
13233 }
13234 break;
13235 }
13236
cf13d699
NC
13237 case EM_MN10300:
13238 case EM_CYGNUS_MN10300:
13239 {
13240 static Elf_Internal_Sym * saved_sym = NULL;
252b5132 13241
f84ce13b
NC
13242 if (reloc == NULL)
13243 {
13244 saved_sym = NULL;
015dc7e1 13245 return true;
f84ce13b
NC
13246 }
13247
cf13d699
NC
13248 switch (reloc_type)
13249 {
13250 case 34: /* R_MN10300_ALIGN */
015dc7e1 13251 return true;
cf13d699 13252 case 33: /* R_MN10300_SYM_DIFF */
f84ce13b
NC
13253 if (sym_index >= num_syms)
13254 error (_("MN10300_SYM_DIFF reloc contains invalid symbol index %lu\n"),
13255 sym_index);
13256 else
13257 saved_sym = symtab + sym_index;
015dc7e1 13258 return true;
f84ce13b 13259
cf13d699
NC
13260 case 1: /* R_MN10300_32 */
13261 case 2: /* R_MN10300_16 */
13262 if (saved_sym != NULL)
13263 {
03f7786e 13264 int reloc_size = reloc_type == 1 ? 4 : 2;
cf13d699 13265 bfd_vma value;
252b5132 13266
f84ce13b
NC
13267 if (sym_index >= num_syms)
13268 error (_("MN10300 reloc contains invalid symbol index %lu\n"),
13269 sym_index);
03f7786e 13270 else
f84ce13b
NC
13271 {
13272 value = reloc->r_addend + (symtab[sym_index].st_value
13273 - saved_sym->st_value);
13274
b32e566b 13275 if (IN_RANGE (start, end, start + reloc->r_offset, reloc_size))
f84ce13b 13276 byte_put (start + reloc->r_offset, value, reloc_size);
b32e566b
NC
13277 else
13278 error (_("MN10300 sym diff reloc contains invalid offset: 0x%lx\n"),
13279 (long) reloc->r_offset);
f84ce13b 13280 }
252b5132 13281
cf13d699 13282 saved_sym = NULL;
015dc7e1 13283 return true;
cf13d699
NC
13284 }
13285 break;
13286 default:
13287 if (saved_sym != NULL)
071436c6 13288 error (_("Unhandled MN10300 reloc type found after SYM_DIFF reloc\n"));
cf13d699
NC
13289 break;
13290 }
13291 break;
13292 }
6ff71e76
NC
13293
13294 case EM_RL78:
13295 {
13296 static bfd_vma saved_sym1 = 0;
13297 static bfd_vma saved_sym2 = 0;
13298 static bfd_vma value;
13299
f84ce13b
NC
13300 if (reloc == NULL)
13301 {
13302 saved_sym1 = saved_sym2 = 0;
015dc7e1 13303 return true;
f84ce13b
NC
13304 }
13305
6ff71e76
NC
13306 switch (reloc_type)
13307 {
13308 case 0x80: /* R_RL78_SYM. */
13309 saved_sym1 = saved_sym2;
f84ce13b
NC
13310 if (sym_index >= num_syms)
13311 error (_("RL78_SYM reloc contains invalid symbol index %lu\n"),
13312 sym_index);
13313 else
13314 {
13315 saved_sym2 = symtab[sym_index].st_value;
13316 saved_sym2 += reloc->r_addend;
13317 }
015dc7e1 13318 return true;
6ff71e76
NC
13319
13320 case 0x83: /* R_RL78_OPsub. */
13321 value = saved_sym1 - saved_sym2;
13322 saved_sym2 = saved_sym1 = 0;
015dc7e1 13323 return true;
6ff71e76
NC
13324 break;
13325
13326 case 0x41: /* R_RL78_ABS32. */
b32e566b 13327 if (IN_RANGE (start, end, start + reloc->r_offset, 4))
03f7786e 13328 byte_put (start + reloc->r_offset, value, 4);
b32e566b
NC
13329 else
13330 error (_("RL78 sym diff reloc contains invalid offset: 0x%lx\n"),
13331 (long) reloc->r_offset);
6ff71e76 13332 value = 0;
015dc7e1 13333 return true;
6ff71e76
NC
13334
13335 case 0x43: /* R_RL78_ABS16. */
b32e566b 13336 if (IN_RANGE (start, end, start + reloc->r_offset, 2))
03f7786e 13337 byte_put (start + reloc->r_offset, value, 2);
b32e566b
NC
13338 else
13339 error (_("RL78 sym diff reloc contains invalid offset: 0x%lx\n"),
13340 (long) reloc->r_offset);
6ff71e76 13341 value = 0;
015dc7e1 13342 return true;
6ff71e76
NC
13343
13344 default:
13345 break;
13346 }
13347 break;
13348 }
252b5132
RH
13349 }
13350
015dc7e1 13351 return false;
252b5132
RH
13352}
13353
aca88567
NC
13354/* Returns TRUE iff RELOC_TYPE is a 32-bit absolute RELA relocation used in
13355 DWARF debug sections. This is a target specific test. Note - we do not
13356 go through the whole including-target-headers-multiple-times route, (as
13357 we have already done with <elf/h8.h>) because this would become very
13358 messy and even then this function would have to contain target specific
13359 information (the names of the relocs instead of their numeric values).
13360 FIXME: This is not the correct way to solve this problem. The proper way
13361 is to have target specific reloc sizing and typing functions created by
13362 the reloc-macros.h header, in the same way that it already creates the
13363 reloc naming functions. */
13364
015dc7e1 13365static bool
dda8d76d 13366is_32bit_abs_reloc (Filedata * filedata, unsigned int reloc_type)
aca88567 13367{
d347c9df 13368 /* Please keep this table alpha-sorted for ease of visual lookup. */
dda8d76d 13369 switch (filedata->file_header.e_machine)
aca88567 13370 {
41e92641 13371 case EM_386:
22abe556 13372 case EM_IAMCU:
41e92641 13373 return reloc_type == 1; /* R_386_32. */
aca88567
NC
13374 case EM_68K:
13375 return reloc_type == 1; /* R_68K_32. */
f954747f
AM
13376 case EM_860:
13377 return reloc_type == 1; /* R_860_32. */
13378 case EM_960:
13379 return reloc_type == 2; /* R_960_32. */
a06ea964 13380 case EM_AARCH64:
9282b95a
JW
13381 return (reloc_type == 258
13382 || reloc_type == 1); /* R_AARCH64_ABS32 || R_AARCH64_P32_ABS32 */
aca4efc7
JM
13383 case EM_BPF:
13384 return reloc_type == 11; /* R_BPF_DATA_32 */
d347c9df
PS
13385 case EM_ADAPTEVA_EPIPHANY:
13386 return reloc_type == 3;
aca88567 13387 case EM_ALPHA:
137b6b5f 13388 return reloc_type == 1; /* R_ALPHA_REFLONG. */
41e92641
NC
13389 case EM_ARC:
13390 return reloc_type == 1; /* R_ARC_32. */
886a2506
NC
13391 case EM_ARC_COMPACT:
13392 case EM_ARC_COMPACT2:
13393 return reloc_type == 4; /* R_ARC_32. */
41e92641
NC
13394 case EM_ARM:
13395 return reloc_type == 2; /* R_ARM_ABS32 */
cb8f3167 13396 case EM_AVR_OLD:
aca88567
NC
13397 case EM_AVR:
13398 return reloc_type == 1;
13399 case EM_BLACKFIN:
13400 return reloc_type == 0x12; /* R_byte4_data. */
13401 case EM_CRIS:
13402 return reloc_type == 3; /* R_CRIS_32. */
13403 case EM_CR16:
13404 return reloc_type == 3; /* R_CR16_NUM32. */
13405 case EM_CRX:
13406 return reloc_type == 15; /* R_CRX_NUM32. */
b8891f8d
AJ
13407 case EM_CSKY:
13408 return reloc_type == 1; /* R_CKCORE_ADDR32. */
aca88567
NC
13409 case EM_CYGNUS_FRV:
13410 return reloc_type == 1;
41e92641
NC
13411 case EM_CYGNUS_D10V:
13412 case EM_D10V:
13413 return reloc_type == 6; /* R_D10V_32. */
aca88567
NC
13414 case EM_CYGNUS_D30V:
13415 case EM_D30V:
13416 return reloc_type == 12; /* R_D30V_32_NORMAL. */
41e92641
NC
13417 case EM_DLX:
13418 return reloc_type == 3; /* R_DLX_RELOC_32. */
aca88567
NC
13419 case EM_CYGNUS_FR30:
13420 case EM_FR30:
13421 return reloc_type == 3; /* R_FR30_32. */
3f8107ab
AM
13422 case EM_FT32:
13423 return reloc_type == 1; /* R_FT32_32. */
aca88567
NC
13424 case EM_H8S:
13425 case EM_H8_300:
13426 case EM_H8_300H:
13427 return reloc_type == 1; /* R_H8_DIR32. */
3730236a 13428 case EM_IA_64:
262cdac7
AM
13429 return (reloc_type == 0x64 /* R_IA64_SECREL32MSB. */
13430 || reloc_type == 0x65 /* R_IA64_SECREL32LSB. */
13431 || reloc_type == 0x24 /* R_IA64_DIR32MSB. */
13432 || reloc_type == 0x25 /* R_IA64_DIR32LSB. */);
aca88567
NC
13433 case EM_IP2K_OLD:
13434 case EM_IP2K:
13435 return reloc_type == 2; /* R_IP2K_32. */
13436 case EM_IQ2000:
13437 return reloc_type == 2; /* R_IQ2000_32. */
84e94c90
NC
13438 case EM_LATTICEMICO32:
13439 return reloc_type == 3; /* R_LM32_32. */
ff7eeb89 13440 case EM_M32C_OLD:
aca88567
NC
13441 case EM_M32C:
13442 return reloc_type == 3; /* R_M32C_32. */
13443 case EM_M32R:
13444 return reloc_type == 34; /* R_M32R_32_RELA. */
adec12c1
AM
13445 case EM_68HC11:
13446 case EM_68HC12:
13447 return reloc_type == 6; /* R_M68HC11_32. */
7b4ae824 13448 case EM_S12Z:
2849d19f
JD
13449 return reloc_type == 7 || /* R_S12Z_EXT32 */
13450 reloc_type == 6; /* R_S12Z_CW32. */
aca88567
NC
13451 case EM_MCORE:
13452 return reloc_type == 1; /* R_MCORE_ADDR32. */
13453 case EM_CYGNUS_MEP:
13454 return reloc_type == 4; /* R_MEP_32. */
a3c62988
NC
13455 case EM_METAG:
13456 return reloc_type == 2; /* R_METAG_ADDR32. */
137b6b5f
AM
13457 case EM_MICROBLAZE:
13458 return reloc_type == 1; /* R_MICROBLAZE_32. */
aca88567
NC
13459 case EM_MIPS:
13460 return reloc_type == 2; /* R_MIPS_32. */
13461 case EM_MMIX:
13462 return reloc_type == 4; /* R_MMIX_32. */
13463 case EM_CYGNUS_MN10200:
13464 case EM_MN10200:
13465 return reloc_type == 1; /* R_MN10200_32. */
13466 case EM_CYGNUS_MN10300:
13467 case EM_MN10300:
13468 return reloc_type == 1; /* R_MN10300_32. */
5506d11a
AM
13469 case EM_MOXIE:
13470 return reloc_type == 1; /* R_MOXIE_32. */
aca88567
NC
13471 case EM_MSP430_OLD:
13472 case EM_MSP430:
13761a11 13473 return reloc_type == 1; /* R_MSP430_32 or R_MSP320_ABS32. */
aca88567
NC
13474 case EM_MT:
13475 return reloc_type == 2; /* R_MT_32. */
35c08157
KLC
13476 case EM_NDS32:
13477 return reloc_type == 20; /* R_NDS32_RELA. */
3e0873ac 13478 case EM_ALTERA_NIOS2:
36591ba1 13479 return reloc_type == 12; /* R_NIOS2_BFD_RELOC_32. */
3e0873ac
NC
13480 case EM_NIOS32:
13481 return reloc_type == 1; /* R_NIOS_32. */
73589c9d
CS
13482 case EM_OR1K:
13483 return reloc_type == 1; /* R_OR1K_32. */
aca88567 13484 case EM_PARISC:
9abca702 13485 return (reloc_type == 1 /* R_PARISC_DIR32. */
0df8ad28 13486 || reloc_type == 2 /* R_PARISC_DIR21L. */
5fda8eca 13487 || reloc_type == 41); /* R_PARISC_SECREL32. */
aca88567
NC
13488 case EM_PJ:
13489 case EM_PJ_OLD:
13490 return reloc_type == 1; /* R_PJ_DATA_DIR32. */
13491 case EM_PPC64:
13492 return reloc_type == 1; /* R_PPC64_ADDR32. */
13493 case EM_PPC:
13494 return reloc_type == 1; /* R_PPC_ADDR32. */
2b100bb5
DD
13495 case EM_TI_PRU:
13496 return reloc_type == 11; /* R_PRU_BFD_RELOC_32. */
e23eba97
NC
13497 case EM_RISCV:
13498 return reloc_type == 1; /* R_RISCV_32. */
99c513f6
DD
13499 case EM_RL78:
13500 return reloc_type == 1; /* R_RL78_DIR32. */
c7927a3c
NC
13501 case EM_RX:
13502 return reloc_type == 1; /* R_RX_DIR32. */
f954747f
AM
13503 case EM_S370:
13504 return reloc_type == 1; /* R_I370_ADDR31. */
aca88567
NC
13505 case EM_S390_OLD:
13506 case EM_S390:
13507 return reloc_type == 4; /* R_S390_32. */
41e92641
NC
13508 case EM_SCORE:
13509 return reloc_type == 8; /* R_SCORE_ABS32. */
aca88567
NC
13510 case EM_SH:
13511 return reloc_type == 1; /* R_SH_DIR32. */
13512 case EM_SPARC32PLUS:
13513 case EM_SPARCV9:
13514 case EM_SPARC:
13515 return reloc_type == 3 /* R_SPARC_32. */
13516 || reloc_type == 23; /* R_SPARC_UA32. */
a7dd7d05
AM
13517 case EM_SPU:
13518 return reloc_type == 6; /* R_SPU_ADDR32 */
40b36596
JM
13519 case EM_TI_C6000:
13520 return reloc_type == 1; /* R_C6000_ABS32. */
aa137e4d
NC
13521 case EM_TILEGX:
13522 return reloc_type == 2; /* R_TILEGX_32. */
13523 case EM_TILEPRO:
13524 return reloc_type == 1; /* R_TILEPRO_32. */
aca88567
NC
13525 case EM_CYGNUS_V850:
13526 case EM_V850:
13527 return reloc_type == 6; /* R_V850_ABS32. */
708e2187
NC
13528 case EM_V800:
13529 return reloc_type == 0x33; /* R_V810_WORD. */
aca88567
NC
13530 case EM_VAX:
13531 return reloc_type == 1; /* R_VAX_32. */
619ed720
EB
13532 case EM_VISIUM:
13533 return reloc_type == 3; /* R_VISIUM_32. */
f96bd6c2
PC
13534 case EM_WEBASSEMBLY:
13535 return reloc_type == 1; /* R_WASM32_32. */
aca88567 13536 case EM_X86_64:
8a9036a4 13537 case EM_L1OM:
7a9068fe 13538 case EM_K1OM:
aca88567 13539 return reloc_type == 10; /* R_X86_64_32. */
c29aca4a
NC
13540 case EM_XC16X:
13541 case EM_C166:
13542 return reloc_type == 3; /* R_XC16C_ABS_32. */
f6c1a2d5
NC
13543 case EM_XGATE:
13544 return reloc_type == 4; /* R_XGATE_32. */
aca88567
NC
13545 case EM_XSTORMY16:
13546 return reloc_type == 1; /* R_XSTROMY16_32. */
13547 case EM_XTENSA_OLD:
13548 case EM_XTENSA:
13549 return reloc_type == 1; /* R_XTENSA_32. */
6655dba2
SB
13550 case EM_Z80:
13551 return reloc_type == 6; /* R_Z80_32. */
aca88567 13552 default:
bee0ee85
NC
13553 {
13554 static unsigned int prev_warn = 0;
13555
13556 /* Avoid repeating the same warning multiple times. */
dda8d76d 13557 if (prev_warn != filedata->file_header.e_machine)
bee0ee85 13558 error (_("Missing knowledge of 32-bit reloc types used in DWARF sections of machine number %d\n"),
dda8d76d
NC
13559 filedata->file_header.e_machine);
13560 prev_warn = filedata->file_header.e_machine;
015dc7e1 13561 return false;
bee0ee85 13562 }
aca88567
NC
13563 }
13564}
13565
13566/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13567 a 32-bit pc-relative RELA relocation used in DWARF debug sections. */
13568
015dc7e1 13569static bool
dda8d76d 13570is_32bit_pcrel_reloc (Filedata * filedata, unsigned int reloc_type)
aca88567 13571{
dda8d76d 13572 switch (filedata->file_header.e_machine)
d347c9df 13573 /* Please keep this table alpha-sorted for ease of visual lookup. */
aca88567 13574 {
41e92641 13575 case EM_386:
22abe556 13576 case EM_IAMCU:
3e0873ac 13577 return reloc_type == 2; /* R_386_PC32. */
aca88567 13578 case EM_68K:
3e0873ac 13579 return reloc_type == 4; /* R_68K_PC32. */
a06ea964
NC
13580 case EM_AARCH64:
13581 return reloc_type == 261; /* R_AARCH64_PREL32 */
cfb8c092
NC
13582 case EM_ADAPTEVA_EPIPHANY:
13583 return reloc_type == 6;
aca88567
NC
13584 case EM_ALPHA:
13585 return reloc_type == 10; /* R_ALPHA_SREL32. */
726c18e1
CZ
13586 case EM_ARC_COMPACT:
13587 case EM_ARC_COMPACT2:
13588 return reloc_type == 49; /* R_ARC_32_PCREL. */
41e92641 13589 case EM_ARM:
3e0873ac 13590 return reloc_type == 3; /* R_ARM_REL32 */
d347c9df
PS
13591 case EM_AVR_OLD:
13592 case EM_AVR:
13593 return reloc_type == 36; /* R_AVR_32_PCREL. */
137b6b5f
AM
13594 case EM_MICROBLAZE:
13595 return reloc_type == 2; /* R_MICROBLAZE_32_PCREL. */
73589c9d
CS
13596 case EM_OR1K:
13597 return reloc_type == 9; /* R_OR1K_32_PCREL. */
aca88567 13598 case EM_PARISC:
85acf597 13599 return reloc_type == 9; /* R_PARISC_PCREL32. */
aca88567
NC
13600 case EM_PPC:
13601 return reloc_type == 26; /* R_PPC_REL32. */
13602 case EM_PPC64:
3e0873ac 13603 return reloc_type == 26; /* R_PPC64_REL32. */
25cbdcbb
AS
13604 case EM_RISCV:
13605 return reloc_type == 57; /* R_RISCV_32_PCREL. */
aca88567
NC
13606 case EM_S390_OLD:
13607 case EM_S390:
3e0873ac 13608 return reloc_type == 5; /* R_390_PC32. */
aca88567 13609 case EM_SH:
3e0873ac 13610 return reloc_type == 2; /* R_SH_REL32. */
aca88567
NC
13611 case EM_SPARC32PLUS:
13612 case EM_SPARCV9:
13613 case EM_SPARC:
3e0873ac 13614 return reloc_type == 6; /* R_SPARC_DISP32. */
a7dd7d05
AM
13615 case EM_SPU:
13616 return reloc_type == 13; /* R_SPU_REL32. */
aa137e4d
NC
13617 case EM_TILEGX:
13618 return reloc_type == 6; /* R_TILEGX_32_PCREL. */
13619 case EM_TILEPRO:
13620 return reloc_type == 4; /* R_TILEPRO_32_PCREL. */
619ed720
EB
13621 case EM_VISIUM:
13622 return reloc_type == 6; /* R_VISIUM_32_PCREL */
aca88567 13623 case EM_X86_64:
8a9036a4 13624 case EM_L1OM:
7a9068fe 13625 case EM_K1OM:
3e0873ac 13626 return reloc_type == 2; /* R_X86_64_PC32. */
2057d69d
CZ
13627 case EM_VAX:
13628 return reloc_type == 4; /* R_VAX_PCREL32. */
2fcb9706
BW
13629 case EM_XTENSA_OLD:
13630 case EM_XTENSA:
13631 return reloc_type == 14; /* R_XTENSA_32_PCREL. */
aca88567
NC
13632 default:
13633 /* Do not abort or issue an error message here. Not all targets use
13634 pc-relative 32-bit relocs in their DWARF debug information and we
13635 have already tested for target coverage in is_32bit_abs_reloc. A
cf13d699
NC
13636 more helpful warning message will be generated by apply_relocations
13637 anyway, so just return. */
015dc7e1 13638 return false;
aca88567
NC
13639 }
13640}
13641
13642/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13643 a 64-bit absolute RELA relocation used in DWARF debug sections. */
13644
015dc7e1 13645static bool
dda8d76d 13646is_64bit_abs_reloc (Filedata * filedata, unsigned int reloc_type)
aca88567 13647{
dda8d76d 13648 switch (filedata->file_header.e_machine)
aca88567 13649 {
a06ea964
NC
13650 case EM_AARCH64:
13651 return reloc_type == 257; /* R_AARCH64_ABS64. */
aca88567
NC
13652 case EM_ALPHA:
13653 return reloc_type == 2; /* R_ALPHA_REFQUAD. */
3730236a 13654 case EM_IA_64:
262cdac7
AM
13655 return (reloc_type == 0x26 /* R_IA64_DIR64MSB. */
13656 || reloc_type == 0x27 /* R_IA64_DIR64LSB. */);
3e0873ac
NC
13657 case EM_PARISC:
13658 return reloc_type == 80; /* R_PARISC_DIR64. */
aca88567
NC
13659 case EM_PPC64:
13660 return reloc_type == 38; /* R_PPC64_ADDR64. */
e23eba97
NC
13661 case EM_RISCV:
13662 return reloc_type == 2; /* R_RISCV_64. */
aca88567
NC
13663 case EM_SPARC32PLUS:
13664 case EM_SPARCV9:
13665 case EM_SPARC:
714da62f
NC
13666 return reloc_type == 32 /* R_SPARC_64. */
13667 || reloc_type == 54; /* R_SPARC_UA64. */
aca88567 13668 case EM_X86_64:
8a9036a4 13669 case EM_L1OM:
7a9068fe 13670 case EM_K1OM:
aca88567 13671 return reloc_type == 1; /* R_X86_64_64. */
e819ade1
AS
13672 case EM_S390_OLD:
13673 case EM_S390:
aa137e4d
NC
13674 return reloc_type == 22; /* R_S390_64. */
13675 case EM_TILEGX:
13676 return reloc_type == 1; /* R_TILEGX_64. */
85a82265 13677 case EM_MIPS:
aa137e4d 13678 return reloc_type == 18; /* R_MIPS_64. */
aca88567 13679 default:
015dc7e1 13680 return false;
aca88567
NC
13681 }
13682}
13683
85acf597
RH
13684/* Like is_32bit_pcrel_reloc except that it returns TRUE iff RELOC_TYPE is
13685 a 64-bit pc-relative RELA relocation used in DWARF debug sections. */
13686
015dc7e1 13687static bool
dda8d76d 13688is_64bit_pcrel_reloc (Filedata * filedata, unsigned int reloc_type)
85acf597 13689{
dda8d76d 13690 switch (filedata->file_header.e_machine)
85acf597 13691 {
a06ea964
NC
13692 case EM_AARCH64:
13693 return reloc_type == 260; /* R_AARCH64_PREL64. */
85acf597 13694 case EM_ALPHA:
aa137e4d 13695 return reloc_type == 11; /* R_ALPHA_SREL64. */
85acf597 13696 case EM_IA_64:
262cdac7
AM
13697 return (reloc_type == 0x4e /* R_IA64_PCREL64MSB. */
13698 || reloc_type == 0x4f /* R_IA64_PCREL64LSB. */);
85acf597 13699 case EM_PARISC:
aa137e4d 13700 return reloc_type == 72; /* R_PARISC_PCREL64. */
85acf597 13701 case EM_PPC64:
aa137e4d 13702 return reloc_type == 44; /* R_PPC64_REL64. */
85acf597
RH
13703 case EM_SPARC32PLUS:
13704 case EM_SPARCV9:
13705 case EM_SPARC:
aa137e4d 13706 return reloc_type == 46; /* R_SPARC_DISP64. */
85acf597 13707 case EM_X86_64:
8a9036a4 13708 case EM_L1OM:
7a9068fe 13709 case EM_K1OM:
aa137e4d 13710 return reloc_type == 24; /* R_X86_64_PC64. */
85acf597
RH
13711 case EM_S390_OLD:
13712 case EM_S390:
aa137e4d
NC
13713 return reloc_type == 23; /* R_S390_PC64. */
13714 case EM_TILEGX:
13715 return reloc_type == 5; /* R_TILEGX_64_PCREL. */
85acf597 13716 default:
015dc7e1 13717 return false;
85acf597
RH
13718 }
13719}
13720
4dc3c23d
AM
13721/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13722 a 24-bit absolute RELA relocation used in DWARF debug sections. */
13723
015dc7e1 13724static bool
dda8d76d 13725is_24bit_abs_reloc (Filedata * filedata, unsigned int reloc_type)
4dc3c23d 13726{
dda8d76d 13727 switch (filedata->file_header.e_machine)
4dc3c23d
AM
13728 {
13729 case EM_CYGNUS_MN10200:
13730 case EM_MN10200:
13731 return reloc_type == 4; /* R_MN10200_24. */
3ee6e4fb
NC
13732 case EM_FT32:
13733 return reloc_type == 5; /* R_FT32_20. */
6655dba2
SB
13734 case EM_Z80:
13735 return reloc_type == 5; /* R_Z80_24. */
4dc3c23d 13736 default:
015dc7e1 13737 return false;
4dc3c23d
AM
13738 }
13739}
13740
aca88567
NC
13741/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13742 a 16-bit absolute RELA relocation used in DWARF debug sections. */
13743
015dc7e1 13744static bool
dda8d76d 13745is_16bit_abs_reloc (Filedata * filedata, unsigned int reloc_type)
4b78141a 13746{
d347c9df 13747 /* Please keep this table alpha-sorted for ease of visual lookup. */
dda8d76d 13748 switch (filedata->file_header.e_machine)
4b78141a 13749 {
886a2506
NC
13750 case EM_ARC:
13751 case EM_ARC_COMPACT:
13752 case EM_ARC_COMPACT2:
13753 return reloc_type == 2; /* R_ARC_16. */
d347c9df
PS
13754 case EM_ADAPTEVA_EPIPHANY:
13755 return reloc_type == 5;
aca88567
NC
13756 case EM_AVR_OLD:
13757 case EM_AVR:
13758 return reloc_type == 4; /* R_AVR_16. */
41e92641
NC
13759 case EM_CYGNUS_D10V:
13760 case EM_D10V:
13761 return reloc_type == 3; /* R_D10V_16. */
81b42bca
JB
13762 case EM_FT32:
13763 return reloc_type == 2; /* R_FT32_16. */
4b78141a
NC
13764 case EM_H8S:
13765 case EM_H8_300:
13766 case EM_H8_300H:
aca88567
NC
13767 return reloc_type == R_H8_DIR16;
13768 case EM_IP2K_OLD:
13769 case EM_IP2K:
13770 return reloc_type == 1; /* R_IP2K_16. */
ff7eeb89 13771 case EM_M32C_OLD:
f4236fe4
DD
13772 case EM_M32C:
13773 return reloc_type == 1; /* R_M32C_16 */
d347c9df
PS
13774 case EM_CYGNUS_MN10200:
13775 case EM_MN10200:
13776 return reloc_type == 2; /* R_MN10200_16. */
13777 case EM_CYGNUS_MN10300:
13778 case EM_MN10300:
13779 return reloc_type == 2; /* R_MN10300_16. */
aca88567 13780 case EM_MSP430:
dda8d76d 13781 if (uses_msp430x_relocs (filedata))
13761a11 13782 return reloc_type == 2; /* R_MSP430_ABS16. */
1a0670f3 13783 /* Fall through. */
78c8d46c 13784 case EM_MSP430_OLD:
aca88567 13785 return reloc_type == 5; /* R_MSP430_16_BYTE. */
35c08157
KLC
13786 case EM_NDS32:
13787 return reloc_type == 19; /* R_NDS32_RELA. */
3e0873ac 13788 case EM_ALTERA_NIOS2:
36591ba1 13789 return reloc_type == 13; /* R_NIOS2_BFD_RELOC_16. */
3e0873ac
NC
13790 case EM_NIOS32:
13791 return reloc_type == 9; /* R_NIOS_16. */
73589c9d
CS
13792 case EM_OR1K:
13793 return reloc_type == 2; /* R_OR1K_16. */
39e07931
AS
13794 case EM_RISCV:
13795 return reloc_type == 55; /* R_RISCV_SET16. */
2b100bb5
DD
13796 case EM_TI_PRU:
13797 return reloc_type == 8; /* R_PRU_BFD_RELOC_16. */
40b36596
JM
13798 case EM_TI_C6000:
13799 return reloc_type == 2; /* R_C6000_ABS16. */
d347c9df
PS
13800 case EM_VISIUM:
13801 return reloc_type == 2; /* R_VISIUM_16. */
c29aca4a
NC
13802 case EM_XC16X:
13803 case EM_C166:
13804 return reloc_type == 2; /* R_XC16C_ABS_16. */
f6c1a2d5
NC
13805 case EM_XGATE:
13806 return reloc_type == 3; /* R_XGATE_16. */
6655dba2
SB
13807 case EM_Z80:
13808 return reloc_type == 4; /* R_Z80_16. */
4b78141a 13809 default:
015dc7e1 13810 return false;
4b78141a
NC
13811 }
13812}
13813
39e07931
AS
13814/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13815 a 8-bit absolute RELA relocation used in DWARF debug sections. */
13816
015dc7e1 13817static bool
39e07931
AS
13818is_8bit_abs_reloc (Filedata * filedata, unsigned int reloc_type)
13819{
13820 switch (filedata->file_header.e_machine)
13821 {
13822 case EM_RISCV:
13823 return reloc_type == 54; /* R_RISCV_SET8. */
6655dba2
SB
13824 case EM_Z80:
13825 return reloc_type == 1; /* R_Z80_8. */
39e07931 13826 default:
015dc7e1 13827 return false;
39e07931
AS
13828 }
13829}
13830
13831/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13832 a 6-bit absolute RELA relocation used in DWARF debug sections. */
13833
015dc7e1 13834static bool
39e07931
AS
13835is_6bit_abs_reloc (Filedata * filedata, unsigned int reloc_type)
13836{
13837 switch (filedata->file_header.e_machine)
13838 {
13839 case EM_RISCV:
13840 return reloc_type == 53; /* R_RISCV_SET6. */
13841 default:
015dc7e1 13842 return false;
39e07931
AS
13843 }
13844}
13845
03336641
JW
13846/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13847 a 32-bit inplace add RELA relocation used in DWARF debug sections. */
13848
015dc7e1 13849static bool
03336641
JW
13850is_32bit_inplace_add_reloc (Filedata * filedata, unsigned int reloc_type)
13851{
13852 /* Please keep this table alpha-sorted for ease of visual lookup. */
13853 switch (filedata->file_header.e_machine)
13854 {
13855 case EM_RISCV:
13856 return reloc_type == 35; /* R_RISCV_ADD32. */
13857 default:
015dc7e1 13858 return false;
03336641
JW
13859 }
13860}
13861
13862/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13863 a 32-bit inplace sub RELA relocation used in DWARF debug sections. */
13864
015dc7e1 13865static bool
03336641
JW
13866is_32bit_inplace_sub_reloc (Filedata * filedata, unsigned int reloc_type)
13867{
13868 /* Please keep this table alpha-sorted for ease of visual lookup. */
13869 switch (filedata->file_header.e_machine)
13870 {
13871 case EM_RISCV:
13872 return reloc_type == 39; /* R_RISCV_SUB32. */
13873 default:
015dc7e1 13874 return false;
03336641
JW
13875 }
13876}
13877
13878/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13879 a 64-bit inplace add RELA relocation used in DWARF debug sections. */
13880
015dc7e1 13881static bool
03336641
JW
13882is_64bit_inplace_add_reloc (Filedata * filedata, unsigned int reloc_type)
13883{
13884 /* Please keep this table alpha-sorted for ease of visual lookup. */
13885 switch (filedata->file_header.e_machine)
13886 {
13887 case EM_RISCV:
13888 return reloc_type == 36; /* R_RISCV_ADD64. */
13889 default:
015dc7e1 13890 return false;
03336641
JW
13891 }
13892}
13893
13894/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13895 a 64-bit inplace sub RELA relocation used in DWARF debug sections. */
13896
015dc7e1 13897static bool
03336641
JW
13898is_64bit_inplace_sub_reloc (Filedata * filedata, unsigned int reloc_type)
13899{
13900 /* Please keep this table alpha-sorted for ease of visual lookup. */
13901 switch (filedata->file_header.e_machine)
13902 {
13903 case EM_RISCV:
13904 return reloc_type == 40; /* R_RISCV_SUB64. */
13905 default:
015dc7e1 13906 return false;
03336641
JW
13907 }
13908}
13909
13910/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13911 a 16-bit inplace add RELA relocation used in DWARF debug sections. */
13912
015dc7e1 13913static bool
03336641
JW
13914is_16bit_inplace_add_reloc (Filedata * filedata, unsigned int reloc_type)
13915{
13916 /* Please keep this table alpha-sorted for ease of visual lookup. */
13917 switch (filedata->file_header.e_machine)
13918 {
13919 case EM_RISCV:
13920 return reloc_type == 34; /* R_RISCV_ADD16. */
13921 default:
015dc7e1 13922 return false;
03336641
JW
13923 }
13924}
13925
13926/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13927 a 16-bit inplace sub RELA relocation used in DWARF debug sections. */
13928
015dc7e1 13929static bool
03336641
JW
13930is_16bit_inplace_sub_reloc (Filedata * filedata, unsigned int reloc_type)
13931{
13932 /* Please keep this table alpha-sorted for ease of visual lookup. */
13933 switch (filedata->file_header.e_machine)
13934 {
13935 case EM_RISCV:
13936 return reloc_type == 38; /* R_RISCV_SUB16. */
13937 default:
015dc7e1 13938 return false;
03336641
JW
13939 }
13940}
13941
13942/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13943 a 8-bit inplace add RELA relocation used in DWARF debug sections. */
13944
015dc7e1 13945static bool
03336641
JW
13946is_8bit_inplace_add_reloc (Filedata * filedata, unsigned int reloc_type)
13947{
13948 /* Please keep this table alpha-sorted for ease of visual lookup. */
13949 switch (filedata->file_header.e_machine)
13950 {
13951 case EM_RISCV:
13952 return reloc_type == 33; /* R_RISCV_ADD8. */
13953 default:
015dc7e1 13954 return false;
03336641
JW
13955 }
13956}
13957
13958/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13959 a 8-bit inplace sub RELA relocation used in DWARF debug sections. */
13960
015dc7e1 13961static bool
03336641
JW
13962is_8bit_inplace_sub_reloc (Filedata * filedata, unsigned int reloc_type)
13963{
13964 /* Please keep this table alpha-sorted for ease of visual lookup. */
13965 switch (filedata->file_header.e_machine)
13966 {
13967 case EM_RISCV:
13968 return reloc_type == 37; /* R_RISCV_SUB8. */
13969 default:
015dc7e1 13970 return false;
03336641
JW
13971 }
13972}
13973
39e07931
AS
13974/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13975 a 6-bit inplace sub RELA relocation used in DWARF debug sections. */
13976
015dc7e1 13977static bool
39e07931
AS
13978is_6bit_inplace_sub_reloc (Filedata * filedata, unsigned int reloc_type)
13979{
13980 switch (filedata->file_header.e_machine)
13981 {
13982 case EM_RISCV:
13983 return reloc_type == 52; /* R_RISCV_SUB6. */
13984 default:
015dc7e1 13985 return false;
39e07931
AS
13986 }
13987}
13988
2a7b2e88
JK
13989/* Returns TRUE iff RELOC_TYPE is a NONE relocation used for discarded
13990 relocation entries (possibly formerly used for SHT_GROUP sections). */
13991
015dc7e1 13992static bool
dda8d76d 13993is_none_reloc (Filedata * filedata, unsigned int reloc_type)
2a7b2e88 13994{
dda8d76d 13995 switch (filedata->file_header.e_machine)
2a7b2e88 13996 {
cb8f3167 13997 case EM_386: /* R_386_NONE. */
d347c9df 13998 case EM_68K: /* R_68K_NONE. */
cfb8c092 13999 case EM_ADAPTEVA_EPIPHANY:
d347c9df
PS
14000 case EM_ALPHA: /* R_ALPHA_NONE. */
14001 case EM_ALTERA_NIOS2: /* R_NIOS2_NONE. */
886a2506 14002 case EM_ARC: /* R_ARC_NONE. */
886a2506 14003 case EM_ARC_COMPACT2: /* R_ARC_NONE. */
d347c9df 14004 case EM_ARC_COMPACT: /* R_ARC_NONE. */
cb8f3167 14005 case EM_ARM: /* R_ARM_NONE. */
d347c9df 14006 case EM_C166: /* R_XC16X_NONE. */
cb8f3167 14007 case EM_CRIS: /* R_CRIS_NONE. */
d347c9df
PS
14008 case EM_FT32: /* R_FT32_NONE. */
14009 case EM_IA_64: /* R_IA64_NONE. */
7a9068fe 14010 case EM_K1OM: /* R_X86_64_NONE. */
d347c9df
PS
14011 case EM_L1OM: /* R_X86_64_NONE. */
14012 case EM_M32R: /* R_M32R_NONE. */
14013 case EM_MIPS: /* R_MIPS_NONE. */
cb8f3167 14014 case EM_MN10300: /* R_MN10300_NONE. */
5506d11a 14015 case EM_MOXIE: /* R_MOXIE_NONE. */
d347c9df
PS
14016 case EM_NIOS32: /* R_NIOS_NONE. */
14017 case EM_OR1K: /* R_OR1K_NONE. */
14018 case EM_PARISC: /* R_PARISC_NONE. */
14019 case EM_PPC64: /* R_PPC64_NONE. */
14020 case EM_PPC: /* R_PPC_NONE. */
e23eba97 14021 case EM_RISCV: /* R_RISCV_NONE. */
d347c9df
PS
14022 case EM_S390: /* R_390_NONE. */
14023 case EM_S390_OLD:
14024 case EM_SH: /* R_SH_NONE. */
14025 case EM_SPARC32PLUS:
14026 case EM_SPARC: /* R_SPARC_NONE. */
14027 case EM_SPARCV9:
aa137e4d
NC
14028 case EM_TILEGX: /* R_TILEGX_NONE. */
14029 case EM_TILEPRO: /* R_TILEPRO_NONE. */
d347c9df
PS
14030 case EM_TI_C6000:/* R_C6000_NONE. */
14031 case EM_X86_64: /* R_X86_64_NONE. */
c29aca4a 14032 case EM_XC16X:
6655dba2 14033 case EM_Z80: /* R_Z80_NONE. */
f96bd6c2 14034 case EM_WEBASSEMBLY: /* R_WASM32_NONE. */
cb8f3167 14035 return reloc_type == 0;
d347c9df 14036
a06ea964
NC
14037 case EM_AARCH64:
14038 return reloc_type == 0 || reloc_type == 256;
d347c9df
PS
14039 case EM_AVR_OLD:
14040 case EM_AVR:
14041 return (reloc_type == 0 /* R_AVR_NONE. */
14042 || reloc_type == 30 /* R_AVR_DIFF8. */
14043 || reloc_type == 31 /* R_AVR_DIFF16. */
14044 || reloc_type == 32 /* R_AVR_DIFF32. */);
14045 case EM_METAG:
14046 return reloc_type == 3; /* R_METAG_NONE. */
35c08157
KLC
14047 case EM_NDS32:
14048 return (reloc_type == 0 /* R_XTENSA_NONE. */
14049 || reloc_type == 204 /* R_NDS32_DIFF8. */
14050 || reloc_type == 205 /* R_NDS32_DIFF16. */
14051 || reloc_type == 206 /* R_NDS32_DIFF32. */
14052 || reloc_type == 207 /* R_NDS32_ULEB128. */);
2b100bb5
DD
14053 case EM_TI_PRU:
14054 return (reloc_type == 0 /* R_PRU_NONE. */
14055 || reloc_type == 65 /* R_PRU_DIFF8. */
14056 || reloc_type == 66 /* R_PRU_DIFF16. */
14057 || reloc_type == 67 /* R_PRU_DIFF32. */);
58332dda
JK
14058 case EM_XTENSA_OLD:
14059 case EM_XTENSA:
4dc3c23d
AM
14060 return (reloc_type == 0 /* R_XTENSA_NONE. */
14061 || reloc_type == 17 /* R_XTENSA_DIFF8. */
14062 || reloc_type == 18 /* R_XTENSA_DIFF16. */
30ce8e47
MF
14063 || reloc_type == 19 /* R_XTENSA_DIFF32. */
14064 || reloc_type == 57 /* R_XTENSA_PDIFF8. */
14065 || reloc_type == 58 /* R_XTENSA_PDIFF16. */
14066 || reloc_type == 59 /* R_XTENSA_PDIFF32. */
14067 || reloc_type == 60 /* R_XTENSA_NDIFF8. */
14068 || reloc_type == 61 /* R_XTENSA_NDIFF16. */
14069 || reloc_type == 62 /* R_XTENSA_NDIFF32. */);
2a7b2e88 14070 }
015dc7e1 14071 return false;
2a7b2e88
JK
14072}
14073
d1c4b12b
NC
14074/* Returns TRUE if there is a relocation against
14075 section NAME at OFFSET bytes. */
14076
015dc7e1 14077bool
d1c4b12b
NC
14078reloc_at (struct dwarf_section * dsec, dwarf_vma offset)
14079{
14080 Elf_Internal_Rela * relocs;
14081 Elf_Internal_Rela * rp;
14082
14083 if (dsec == NULL || dsec->reloc_info == NULL)
015dc7e1 14084 return false;
d1c4b12b
NC
14085
14086 relocs = (Elf_Internal_Rela *) dsec->reloc_info;
14087
14088 for (rp = relocs; rp < relocs + dsec->num_relocs; ++rp)
14089 if (rp->r_offset == offset)
015dc7e1 14090 return true;
d1c4b12b 14091
015dc7e1 14092 return false;
d1c4b12b
NC
14093}
14094
cf13d699 14095/* Apply relocations to a section.
32ec8896
NC
14096 Returns TRUE upon success, FALSE otherwise.
14097 If RELOCS_RETURN is non-NULL then it is set to point to the loaded relocs.
14098 It is then the caller's responsibility to free them. NUM_RELOCS_RETURN
14099 will be set to the number of relocs loaded.
14100
cf13d699 14101 Note: So far support has been added only for those relocations
32ec8896
NC
14102 which can be found in debug sections. FIXME: Add support for
14103 more relocations ? */
1b315056 14104
015dc7e1 14105static bool
dda8d76d 14106apply_relocations (Filedata * filedata,
d1c4b12b
NC
14107 const Elf_Internal_Shdr * section,
14108 unsigned char * start,
14109 bfd_size_type size,
1449284b 14110 void ** relocs_return,
d1c4b12b 14111 unsigned long * num_relocs_return)
1b315056 14112{
cf13d699 14113 Elf_Internal_Shdr * relsec;
0d2a7a93 14114 unsigned char * end = start + size;
cb8f3167 14115
d1c4b12b
NC
14116 if (relocs_return != NULL)
14117 {
14118 * (Elf_Internal_Rela **) relocs_return = NULL;
14119 * num_relocs_return = 0;
14120 }
14121
dda8d76d 14122 if (filedata->file_header.e_type != ET_REL)
32ec8896 14123 /* No relocs to apply. */
015dc7e1 14124 return true;
1b315056 14125
cf13d699 14126 /* Find the reloc section associated with the section. */
dda8d76d
NC
14127 for (relsec = filedata->section_headers;
14128 relsec < filedata->section_headers + filedata->file_header.e_shnum;
5b18a4bc 14129 ++relsec)
252b5132 14130 {
015dc7e1 14131 bool is_rela;
41e92641 14132 unsigned long num_relocs;
2cf0635d
NC
14133 Elf_Internal_Rela * relocs;
14134 Elf_Internal_Rela * rp;
14135 Elf_Internal_Shdr * symsec;
14136 Elf_Internal_Sym * symtab;
ba5cdace 14137 unsigned long num_syms;
2cf0635d 14138 Elf_Internal_Sym * sym;
252b5132 14139
41e92641 14140 if ((relsec->sh_type != SHT_RELA && relsec->sh_type != SHT_REL)
dda8d76d
NC
14141 || relsec->sh_info >= filedata->file_header.e_shnum
14142 || filedata->section_headers + relsec->sh_info != section
c256ffe7 14143 || relsec->sh_size == 0
dda8d76d 14144 || relsec->sh_link >= filedata->file_header.e_shnum)
5b18a4bc 14145 continue;
428409d5 14146
a788aedd
AM
14147 symsec = filedata->section_headers + relsec->sh_link;
14148 if (symsec->sh_type != SHT_SYMTAB
14149 && symsec->sh_type != SHT_DYNSYM)
015dc7e1 14150 return false;
a788aedd 14151
41e92641
NC
14152 is_rela = relsec->sh_type == SHT_RELA;
14153
14154 if (is_rela)
14155 {
dda8d76d 14156 if (!slurp_rela_relocs (filedata, relsec->sh_offset,
3f5e193b 14157 relsec->sh_size, & relocs, & num_relocs))
015dc7e1 14158 return false;
41e92641
NC
14159 }
14160 else
14161 {
dda8d76d 14162 if (!slurp_rel_relocs (filedata, relsec->sh_offset,
3f5e193b 14163 relsec->sh_size, & relocs, & num_relocs))
015dc7e1 14164 return false;
41e92641
NC
14165 }
14166
14167 /* SH uses RELA but uses in place value instead of the addend field. */
dda8d76d 14168 if (filedata->file_header.e_machine == EM_SH)
015dc7e1 14169 is_rela = false;
428409d5 14170
dda8d76d 14171 symtab = GET_ELF_SYMBOLS (filedata, symsec, & num_syms);
103f02d3 14172
41e92641 14173 for (rp = relocs; rp < relocs + num_relocs; ++rp)
252b5132 14174 {
015dc7e1
AM
14175 bfd_vma addend;
14176 unsigned int reloc_type;
14177 unsigned int reloc_size;
14178 bool reloc_inplace = false;
14179 bool reloc_subtract = false;
14180 unsigned char *rloc;
14181 unsigned long sym_index;
4b78141a 14182
dda8d76d 14183 reloc_type = get_reloc_type (filedata, rp->r_info);
41e92641 14184
dda8d76d 14185 if (target_specific_reloc_handling (filedata, rp, start, end, symtab, num_syms))
2a7b2e88 14186 continue;
dda8d76d 14187 else if (is_none_reloc (filedata, reloc_type))
98fb390a 14188 continue;
dda8d76d
NC
14189 else if (is_32bit_abs_reloc (filedata, reloc_type)
14190 || is_32bit_pcrel_reloc (filedata, reloc_type))
aca88567 14191 reloc_size = 4;
dda8d76d
NC
14192 else if (is_64bit_abs_reloc (filedata, reloc_type)
14193 || is_64bit_pcrel_reloc (filedata, reloc_type))
aca88567 14194 reloc_size = 8;
dda8d76d 14195 else if (is_24bit_abs_reloc (filedata, reloc_type))
4dc3c23d 14196 reloc_size = 3;
dda8d76d 14197 else if (is_16bit_abs_reloc (filedata, reloc_type))
aca88567 14198 reloc_size = 2;
39e07931
AS
14199 else if (is_8bit_abs_reloc (filedata, reloc_type)
14200 || is_6bit_abs_reloc (filedata, reloc_type))
14201 reloc_size = 1;
03336641
JW
14202 else if ((reloc_subtract = is_32bit_inplace_sub_reloc (filedata,
14203 reloc_type))
14204 || is_32bit_inplace_add_reloc (filedata, reloc_type))
14205 {
14206 reloc_size = 4;
015dc7e1 14207 reloc_inplace = true;
03336641
JW
14208 }
14209 else if ((reloc_subtract = is_64bit_inplace_sub_reloc (filedata,
14210 reloc_type))
14211 || is_64bit_inplace_add_reloc (filedata, reloc_type))
14212 {
14213 reloc_size = 8;
015dc7e1 14214 reloc_inplace = true;
03336641
JW
14215 }
14216 else if ((reloc_subtract = is_16bit_inplace_sub_reloc (filedata,
14217 reloc_type))
14218 || is_16bit_inplace_add_reloc (filedata, reloc_type))
14219 {
14220 reloc_size = 2;
015dc7e1 14221 reloc_inplace = true;
03336641
JW
14222 }
14223 else if ((reloc_subtract = is_8bit_inplace_sub_reloc (filedata,
14224 reloc_type))
14225 || is_8bit_inplace_add_reloc (filedata, reloc_type))
14226 {
14227 reloc_size = 1;
015dc7e1 14228 reloc_inplace = true;
03336641 14229 }
39e07931
AS
14230 else if ((reloc_subtract = is_6bit_inplace_sub_reloc (filedata,
14231 reloc_type)))
14232 {
14233 reloc_size = 1;
015dc7e1 14234 reloc_inplace = true;
39e07931 14235 }
aca88567 14236 else
4b78141a 14237 {
bee0ee85 14238 static unsigned int prev_reloc = 0;
dda8d76d 14239
bee0ee85
NC
14240 if (reloc_type != prev_reloc)
14241 warn (_("unable to apply unsupported reloc type %d to section %s\n"),
dda8d76d 14242 reloc_type, printable_section_name (filedata, section));
bee0ee85 14243 prev_reloc = reloc_type;
4b78141a
NC
14244 continue;
14245 }
103f02d3 14246
91d6fa6a 14247 rloc = start + rp->r_offset;
75802ccb 14248 if (!IN_RANGE (start, end, rloc, reloc_size))
700dd8b7
L
14249 {
14250 warn (_("skipping invalid relocation offset 0x%lx in section %s\n"),
14251 (unsigned long) rp->r_offset,
dda8d76d 14252 printable_section_name (filedata, section));
700dd8b7
L
14253 continue;
14254 }
103f02d3 14255
ba5cdace
NC
14256 sym_index = (unsigned long) get_reloc_symindex (rp->r_info);
14257 if (sym_index >= num_syms)
14258 {
14259 warn (_("skipping invalid relocation symbol index 0x%lx in section %s\n"),
dda8d76d 14260 sym_index, printable_section_name (filedata, section));
ba5cdace
NC
14261 continue;
14262 }
14263 sym = symtab + sym_index;
41e92641
NC
14264
14265 /* If the reloc has a symbol associated with it,
55f25fc3
L
14266 make sure that it is of an appropriate type.
14267
14268 Relocations against symbols without type can happen.
14269 Gcc -feliminate-dwarf2-dups may generate symbols
14270 without type for debug info.
14271
14272 Icc generates relocations against function symbols
14273 instead of local labels.
14274
14275 Relocations against object symbols can happen, eg when
14276 referencing a global array. For an example of this see
14277 the _clz.o binary in libgcc.a. */
aca88567 14278 if (sym != symtab
b8871f35 14279 && ELF_ST_TYPE (sym->st_info) != STT_COMMON
55f25fc3 14280 && ELF_ST_TYPE (sym->st_info) > STT_SECTION)
5b18a4bc 14281 {
d3a49aa8 14282 warn (_("skipping unexpected symbol type %s in section %s relocation %ld\n"),
dda8d76d
NC
14283 get_symbol_type (filedata, ELF_ST_TYPE (sym->st_info)),
14284 printable_section_name (filedata, relsec),
d3a49aa8 14285 (long int)(rp - relocs));
aca88567 14286 continue;
5b18a4bc 14287 }
252b5132 14288
4dc3c23d
AM
14289 addend = 0;
14290 if (is_rela)
14291 addend += rp->r_addend;
c47320c3
AM
14292 /* R_XTENSA_32, R_PJ_DATA_DIR32 and R_D30V_32_NORMAL are
14293 partial_inplace. */
4dc3c23d 14294 if (!is_rela
dda8d76d 14295 || (filedata->file_header.e_machine == EM_XTENSA
4dc3c23d 14296 && reloc_type == 1)
dda8d76d
NC
14297 || ((filedata->file_header.e_machine == EM_PJ
14298 || filedata->file_header.e_machine == EM_PJ_OLD)
c47320c3 14299 && reloc_type == 1)
dda8d76d
NC
14300 || ((filedata->file_header.e_machine == EM_D30V
14301 || filedata->file_header.e_machine == EM_CYGNUS_D30V)
03336641
JW
14302 && reloc_type == 12)
14303 || reloc_inplace)
39e07931
AS
14304 {
14305 if (is_6bit_inplace_sub_reloc (filedata, reloc_type))
14306 addend += byte_get (rloc, reloc_size) & 0x3f;
14307 else
14308 addend += byte_get (rloc, reloc_size);
14309 }
cb8f3167 14310
dda8d76d
NC
14311 if (is_32bit_pcrel_reloc (filedata, reloc_type)
14312 || is_64bit_pcrel_reloc (filedata, reloc_type))
85acf597
RH
14313 {
14314 /* On HPPA, all pc-relative relocations are biased by 8. */
dda8d76d 14315 if (filedata->file_header.e_machine == EM_PARISC)
85acf597 14316 addend -= 8;
91d6fa6a 14317 byte_put (rloc, (addend + sym->st_value) - rp->r_offset,
85acf597
RH
14318 reloc_size);
14319 }
39e07931
AS
14320 else if (is_6bit_abs_reloc (filedata, reloc_type)
14321 || is_6bit_inplace_sub_reloc (filedata, reloc_type))
14322 {
14323 if (reloc_subtract)
14324 addend -= sym->st_value;
14325 else
14326 addend += sym->st_value;
14327 addend = (addend & 0x3f) | (byte_get (rloc, reloc_size) & 0xc0);
14328 byte_put (rloc, addend, reloc_size);
14329 }
03336641
JW
14330 else if (reloc_subtract)
14331 byte_put (rloc, addend - sym->st_value, reloc_size);
41e92641 14332 else
91d6fa6a 14333 byte_put (rloc, addend + sym->st_value, reloc_size);
5b18a4bc 14334 }
252b5132 14335
5b18a4bc 14336 free (symtab);
f84ce13b
NC
14337 /* Let the target specific reloc processing code know that
14338 we have finished with these relocs. */
dda8d76d 14339 target_specific_reloc_handling (filedata, NULL, NULL, NULL, NULL, 0);
d1c4b12b
NC
14340
14341 if (relocs_return)
14342 {
14343 * (Elf_Internal_Rela **) relocs_return = relocs;
14344 * num_relocs_return = num_relocs;
14345 }
14346 else
14347 free (relocs);
14348
5b18a4bc
NC
14349 break;
14350 }
32ec8896 14351
015dc7e1 14352 return true;
5b18a4bc 14353}
103f02d3 14354
cf13d699 14355#ifdef SUPPORT_DISASSEMBLY
015dc7e1 14356static bool
dda8d76d 14357disassemble_section (Elf_Internal_Shdr * section, Filedata * filedata)
cf13d699 14358{
dda8d76d 14359 printf (_("\nAssembly dump of section %s\n"), printable_section_name (filedata, section));
cf13d699 14360
74e1a04b 14361 /* FIXME: XXX -- to be done --- XXX */
cf13d699 14362
015dc7e1 14363 return true;
cf13d699
NC
14364}
14365#endif
14366
14367/* Reads in the contents of SECTION from FILE, returning a pointer
14368 to a malloc'ed buffer or NULL if something went wrong. */
14369
14370static char *
dda8d76d 14371get_section_contents (Elf_Internal_Shdr * section, Filedata * filedata)
cf13d699 14372{
dda8d76d 14373 bfd_size_type num_bytes = section->sh_size;
cf13d699
NC
14374
14375 if (num_bytes == 0 || section->sh_type == SHT_NOBITS)
14376 {
c6b78c96 14377 printf (_("Section '%s' has no data to dump.\n"),
dda8d76d 14378 printable_section_name (filedata, section));
cf13d699
NC
14379 return NULL;
14380 }
14381
dda8d76d 14382 return (char *) get_data (NULL, filedata, section->sh_offset, 1, num_bytes,
3f5e193b 14383 _("section contents"));
cf13d699
NC
14384}
14385
0e602686
NC
14386/* Uncompresses a section that was compressed using zlib, in place. */
14387
015dc7e1 14388static bool
dda8d76d
NC
14389uncompress_section_contents (unsigned char ** buffer,
14390 dwarf_size_type uncompressed_size,
14391 dwarf_size_type * size)
0e602686
NC
14392{
14393 dwarf_size_type compressed_size = *size;
14394 unsigned char * compressed_buffer = *buffer;
14395 unsigned char * uncompressed_buffer;
14396 z_stream strm;
14397 int rc;
14398
14399 /* It is possible the section consists of several compressed
14400 buffers concatenated together, so we uncompress in a loop. */
14401 /* PR 18313: The state field in the z_stream structure is supposed
14402 to be invisible to the user (ie us), but some compilers will
14403 still complain about it being used without initialisation. So
14404 we first zero the entire z_stream structure and then set the fields
14405 that we need. */
14406 memset (& strm, 0, sizeof strm);
14407 strm.avail_in = compressed_size;
14408 strm.next_in = (Bytef *) compressed_buffer;
14409 strm.avail_out = uncompressed_size;
14410 uncompressed_buffer = (unsigned char *) xmalloc (uncompressed_size);
14411
14412 rc = inflateInit (& strm);
14413 while (strm.avail_in > 0)
14414 {
14415 if (rc != Z_OK)
3624a6c1 14416 break;
0e602686
NC
14417 strm.next_out = ((Bytef *) uncompressed_buffer
14418 + (uncompressed_size - strm.avail_out));
14419 rc = inflate (&strm, Z_FINISH);
14420 if (rc != Z_STREAM_END)
3624a6c1 14421 break;
0e602686
NC
14422 rc = inflateReset (& strm);
14423 }
ad92f33d
AM
14424 if (inflateEnd (& strm) != Z_OK
14425 || rc != Z_OK
0e602686
NC
14426 || strm.avail_out != 0)
14427 goto fail;
14428
14429 *buffer = uncompressed_buffer;
14430 *size = uncompressed_size;
015dc7e1 14431 return true;
0e602686
NC
14432
14433 fail:
14434 free (uncompressed_buffer);
14435 /* Indicate decompression failure. */
14436 *buffer = NULL;
015dc7e1 14437 return false;
0e602686 14438}
dd24e3da 14439
015dc7e1 14440static bool
dda8d76d 14441dump_section_as_strings (Elf_Internal_Shdr * section, Filedata * filedata)
cf13d699 14442{
015dc7e1
AM
14443 Elf_Internal_Shdr *relsec;
14444 bfd_size_type num_bytes;
14445 unsigned char *data;
14446 unsigned char *end;
14447 unsigned char *real_start;
14448 unsigned char *start;
14449 bool some_strings_shown;
cf13d699 14450
dda8d76d 14451 real_start = start = (unsigned char *) get_section_contents (section, filedata);
cf13d699 14452 if (start == NULL)
c6b78c96 14453 /* PR 21820: Do not fail if the section was empty. */
63b4cc53 14454 return section->sh_size == 0 || section->sh_type == SHT_NOBITS;
c6b78c96 14455
0e602686 14456 num_bytes = section->sh_size;
cf13d699 14457
835f2fae
NC
14458 if (filedata->is_separate)
14459 printf (_("\nString dump of section '%s' in linked file %s:\n"),
14460 printable_section_name (filedata, section),
14461 filedata->file_name);
14462 else
14463 printf (_("\nString dump of section '%s':\n"),
14464 printable_section_name (filedata, section));
cf13d699 14465
0e602686
NC
14466 if (decompress_dumps)
14467 {
14468 dwarf_size_type new_size = num_bytes;
14469 dwarf_size_type uncompressed_size = 0;
14470
14471 if ((section->sh_flags & SHF_COMPRESSED) != 0)
14472 {
14473 Elf_Internal_Chdr chdr;
14474 unsigned int compression_header_size
ebdf1ebf
NC
14475 = get_compression_header (& chdr, (unsigned char *) start,
14476 num_bytes);
5844b465
NC
14477 if (compression_header_size == 0)
14478 /* An error message will have already been generated
14479 by get_compression_header. */
14480 goto error_out;
0e602686 14481
813dabb9 14482 if (chdr.ch_type != ELFCOMPRESS_ZLIB)
0e602686 14483 {
813dabb9 14484 warn (_("section '%s' has unsupported compress type: %d\n"),
dda8d76d 14485 printable_section_name (filedata, section), chdr.ch_type);
f761cb13 14486 goto error_out;
813dabb9 14487 }
813dabb9
L
14488 uncompressed_size = chdr.ch_size;
14489 start += compression_header_size;
14490 new_size -= compression_header_size;
0e602686
NC
14491 }
14492 else if (new_size > 12 && streq ((char *) start, "ZLIB"))
14493 {
14494 /* Read the zlib header. In this case, it should be "ZLIB"
14495 followed by the uncompressed section size, 8 bytes in
14496 big-endian order. */
14497 uncompressed_size = start[4]; uncompressed_size <<= 8;
14498 uncompressed_size += start[5]; uncompressed_size <<= 8;
14499 uncompressed_size += start[6]; uncompressed_size <<= 8;
14500 uncompressed_size += start[7]; uncompressed_size <<= 8;
14501 uncompressed_size += start[8]; uncompressed_size <<= 8;
14502 uncompressed_size += start[9]; uncompressed_size <<= 8;
14503 uncompressed_size += start[10]; uncompressed_size <<= 8;
14504 uncompressed_size += start[11];
14505 start += 12;
14506 new_size -= 12;
14507 }
14508
1835f746
NC
14509 if (uncompressed_size)
14510 {
14511 if (uncompress_section_contents (& start,
14512 uncompressed_size, & new_size))
14513 num_bytes = new_size;
14514 else
14515 {
14516 error (_("Unable to decompress section %s\n"),
dda8d76d 14517 printable_section_name (filedata, section));
f761cb13 14518 goto error_out;
1835f746
NC
14519 }
14520 }
bc303e5d
NC
14521 else
14522 start = real_start;
0e602686 14523 }
fd8008d8 14524
cf13d699
NC
14525 /* If the section being dumped has relocations against it the user might
14526 be expecting these relocations to have been applied. Check for this
14527 case and issue a warning message in order to avoid confusion.
14528 FIXME: Maybe we ought to have an option that dumps a section with
14529 relocs applied ? */
dda8d76d
NC
14530 for (relsec = filedata->section_headers;
14531 relsec < filedata->section_headers + filedata->file_header.e_shnum;
cf13d699
NC
14532 ++relsec)
14533 {
14534 if ((relsec->sh_type != SHT_RELA && relsec->sh_type != SHT_REL)
dda8d76d
NC
14535 || relsec->sh_info >= filedata->file_header.e_shnum
14536 || filedata->section_headers + relsec->sh_info != section
cf13d699 14537 || relsec->sh_size == 0
dda8d76d 14538 || relsec->sh_link >= filedata->file_header.e_shnum)
cf13d699
NC
14539 continue;
14540
14541 printf (_(" Note: This section has relocations against it, but these have NOT been applied to this dump.\n"));
14542 break;
14543 }
14544
cf13d699
NC
14545 data = start;
14546 end = start + num_bytes;
015dc7e1 14547 some_strings_shown = false;
cf13d699 14548
ba3265d0
NC
14549#ifdef HAVE_MBSTATE_T
14550 mbstate_t state;
14551 /* Initialise the multibyte conversion state. */
14552 memset (& state, 0, sizeof (state));
14553#endif
14554
015dc7e1 14555 bool continuing = false;
ba3265d0 14556
cf13d699
NC
14557 while (data < end)
14558 {
14559 while (!ISPRINT (* data))
14560 if (++ data >= end)
14561 break;
14562
14563 if (data < end)
14564 {
071436c6
NC
14565 size_t maxlen = end - data;
14566
ba3265d0
NC
14567 if (continuing)
14568 {
14569 printf (" ");
015dc7e1 14570 continuing = false;
ba3265d0
NC
14571 }
14572 else
14573 {
d1ce973e 14574 printf (" [%6lx] ", (unsigned long) (data - start));
ba3265d0
NC
14575 }
14576
4082ef84
NC
14577 if (maxlen > 0)
14578 {
f3da8a96 14579 char c = 0;
ba3265d0
NC
14580
14581 while (maxlen)
14582 {
14583 c = *data++;
14584
14585 if (c == 0)
14586 break;
14587
14588 /* PR 25543: Treat new-lines as string-ending characters. */
14589 if (c == '\n')
14590 {
14591 printf ("\\n\n");
14592 if (*data != 0)
015dc7e1 14593 continuing = true;
ba3265d0
NC
14594 break;
14595 }
14596
14597 /* Do not print control characters directly as they can affect terminal
14598 settings. Such characters usually appear in the names generated
14599 by the assembler for local labels. */
14600 if (ISCNTRL (c))
14601 {
14602 printf ("^%c", c + 0x40);
14603 }
14604 else if (ISPRINT (c))
14605 {
14606 putchar (c);
14607 }
14608 else
14609 {
14610 size_t n;
14611#ifdef HAVE_MBSTATE_T
14612 wchar_t w;
14613#endif
14614 /* Let printf do the hard work of displaying multibyte characters. */
14615 printf ("%.1s", data - 1);
14616#ifdef HAVE_MBSTATE_T
14617 /* Try to find out how many bytes made up the character that was
14618 just printed. Advance the symbol pointer past the bytes that
14619 were displayed. */
14620 n = mbrtowc (& w, (char *)(data - 1), MB_CUR_MAX, & state);
14621#else
14622 n = 1;
14623#endif
14624 if (n != (size_t) -1 && n != (size_t) -2 && n > 0)
14625 data += (n - 1);
14626 }
14627 }
14628
14629 if (c != '\n')
14630 putchar ('\n');
4082ef84
NC
14631 }
14632 else
14633 {
14634 printf (_("<corrupt>\n"));
14635 data = end;
14636 }
015dc7e1 14637 some_strings_shown = true;
cf13d699
NC
14638 }
14639 }
14640
14641 if (! some_strings_shown)
14642 printf (_(" No strings found in this section."));
14643
0e602686 14644 free (real_start);
cf13d699
NC
14645
14646 putchar ('\n');
015dc7e1 14647 return true;
f761cb13
AM
14648
14649error_out:
14650 free (real_start);
015dc7e1 14651 return false;
cf13d699
NC
14652}
14653
015dc7e1
AM
14654static bool
14655dump_section_as_bytes (Elf_Internal_Shdr *section,
14656 Filedata *filedata,
14657 bool relocate)
cf13d699
NC
14658{
14659 Elf_Internal_Shdr * relsec;
0e602686
NC
14660 bfd_size_type bytes;
14661 bfd_size_type section_size;
14662 bfd_vma addr;
14663 unsigned char * data;
14664 unsigned char * real_start;
14665 unsigned char * start;
14666
dda8d76d 14667 real_start = start = (unsigned char *) get_section_contents (section, filedata);
cf13d699 14668 if (start == NULL)
c6b78c96 14669 /* PR 21820: Do not fail if the section was empty. */
63b4cc53 14670 return section->sh_size == 0 || section->sh_type == SHT_NOBITS;
32ec8896 14671
0e602686 14672 section_size = section->sh_size;
cf13d699 14673
835f2fae
NC
14674 if (filedata->is_separate)
14675 printf (_("\nHex dump of section '%s' in linked file %s:\n"),
14676 printable_section_name (filedata, section),
14677 filedata->file_name);
14678 else
14679 printf (_("\nHex dump of section '%s':\n"),
14680 printable_section_name (filedata, section));
cf13d699 14681
0e602686
NC
14682 if (decompress_dumps)
14683 {
14684 dwarf_size_type new_size = section_size;
14685 dwarf_size_type uncompressed_size = 0;
14686
14687 if ((section->sh_flags & SHF_COMPRESSED) != 0)
14688 {
14689 Elf_Internal_Chdr chdr;
14690 unsigned int compression_header_size
ebdf1ebf 14691 = get_compression_header (& chdr, start, section_size);
0e602686 14692
5844b465
NC
14693 if (compression_header_size == 0)
14694 /* An error message will have already been generated
14695 by get_compression_header. */
14696 goto error_out;
14697
813dabb9 14698 if (chdr.ch_type != ELFCOMPRESS_ZLIB)
0e602686 14699 {
813dabb9 14700 warn (_("section '%s' has unsupported compress type: %d\n"),
dda8d76d 14701 printable_section_name (filedata, section), chdr.ch_type);
f761cb13 14702 goto error_out;
0e602686 14703 }
813dabb9
L
14704 uncompressed_size = chdr.ch_size;
14705 start += compression_header_size;
14706 new_size -= compression_header_size;
0e602686
NC
14707 }
14708 else if (new_size > 12 && streq ((char *) start, "ZLIB"))
14709 {
14710 /* Read the zlib header. In this case, it should be "ZLIB"
14711 followed by the uncompressed section size, 8 bytes in
14712 big-endian order. */
14713 uncompressed_size = start[4]; uncompressed_size <<= 8;
14714 uncompressed_size += start[5]; uncompressed_size <<= 8;
14715 uncompressed_size += start[6]; uncompressed_size <<= 8;
14716 uncompressed_size += start[7]; uncompressed_size <<= 8;
14717 uncompressed_size += start[8]; uncompressed_size <<= 8;
14718 uncompressed_size += start[9]; uncompressed_size <<= 8;
14719 uncompressed_size += start[10]; uncompressed_size <<= 8;
14720 uncompressed_size += start[11];
14721 start += 12;
14722 new_size -= 12;
14723 }
14724
f055032e
NC
14725 if (uncompressed_size)
14726 {
14727 if (uncompress_section_contents (& start, uncompressed_size,
14728 & new_size))
bc303e5d
NC
14729 {
14730 section_size = new_size;
14731 }
f055032e
NC
14732 else
14733 {
14734 error (_("Unable to decompress section %s\n"),
dda8d76d 14735 printable_section_name (filedata, section));
bc303e5d 14736 /* FIXME: Print the section anyway ? */
f761cb13 14737 goto error_out;
f055032e
NC
14738 }
14739 }
bc303e5d
NC
14740 else
14741 start = real_start;
0e602686 14742 }
14ae95f2 14743
cf13d699
NC
14744 if (relocate)
14745 {
dda8d76d 14746 if (! apply_relocations (filedata, section, start, section_size, NULL, NULL))
f761cb13 14747 goto error_out;
cf13d699
NC
14748 }
14749 else
14750 {
14751 /* If the section being dumped has relocations against it the user might
14752 be expecting these relocations to have been applied. Check for this
14753 case and issue a warning message in order to avoid confusion.
14754 FIXME: Maybe we ought to have an option that dumps a section with
14755 relocs applied ? */
dda8d76d
NC
14756 for (relsec = filedata->section_headers;
14757 relsec < filedata->section_headers + filedata->file_header.e_shnum;
cf13d699
NC
14758 ++relsec)
14759 {
14760 if ((relsec->sh_type != SHT_RELA && relsec->sh_type != SHT_REL)
dda8d76d
NC
14761 || relsec->sh_info >= filedata->file_header.e_shnum
14762 || filedata->section_headers + relsec->sh_info != section
cf13d699 14763 || relsec->sh_size == 0
dda8d76d 14764 || relsec->sh_link >= filedata->file_header.e_shnum)
cf13d699
NC
14765 continue;
14766
14767 printf (_(" NOTE: This section has relocations against it, but these have NOT been applied to this dump.\n"));
14768 break;
14769 }
14770 }
14771
14772 addr = section->sh_addr;
0e602686 14773 bytes = section_size;
cf13d699
NC
14774 data = start;
14775
14776 while (bytes)
14777 {
14778 int j;
14779 int k;
14780 int lbytes;
14781
14782 lbytes = (bytes > 16 ? 16 : bytes);
14783
14784 printf (" 0x%8.8lx ", (unsigned long) addr);
14785
14786 for (j = 0; j < 16; j++)
14787 {
14788 if (j < lbytes)
14789 printf ("%2.2x", data[j]);
14790 else
14791 printf (" ");
14792
14793 if ((j & 3) == 3)
14794 printf (" ");
14795 }
14796
14797 for (j = 0; j < lbytes; j++)
14798 {
14799 k = data[j];
14800 if (k >= ' ' && k < 0x7f)
14801 printf ("%c", k);
14802 else
14803 printf (".");
14804 }
14805
14806 putchar ('\n');
14807
14808 data += lbytes;
14809 addr += lbytes;
14810 bytes -= lbytes;
14811 }
14812
0e602686 14813 free (real_start);
cf13d699
NC
14814
14815 putchar ('\n');
015dc7e1 14816 return true;
f761cb13
AM
14817
14818 error_out:
14819 free (real_start);
015dc7e1 14820 return false;
cf13d699
NC
14821}
14822
094e34f2 14823#ifdef ENABLE_LIBCTF
7d9813f1
NA
14824static ctf_sect_t *
14825shdr_to_ctf_sect (ctf_sect_t *buf, Elf_Internal_Shdr *shdr, Filedata *filedata)
14826{
b9e920ec 14827 buf->cts_name = SECTION_NAME_PRINT (shdr);
7d9813f1
NA
14828 buf->cts_size = shdr->sh_size;
14829 buf->cts_entsize = shdr->sh_entsize;
7d9813f1
NA
14830
14831 return buf;
14832}
14833
14834/* Formatting callback function passed to ctf_dump. Returns either the pointer
14835 it is passed, or a pointer to newly-allocated storage, in which case
14836 dump_ctf() will free it when it no longer needs it. */
14837
2f6ecaed
NA
14838static char *
14839dump_ctf_indent_lines (ctf_sect_names_t sect ATTRIBUTE_UNUSED,
14840 char *s, void *arg)
7d9813f1 14841{
3e50a591 14842 const char *blanks = arg;
7d9813f1
NA
14843 char *new_s;
14844
3e50a591 14845 if (asprintf (&new_s, "%s%s", blanks, s) < 0)
7d9813f1
NA
14846 return s;
14847 return new_s;
14848}
14849
926c9e76
NA
14850/* Dump CTF errors/warnings. */
14851static void
139633c3 14852dump_ctf_errs (ctf_dict_t *fp)
926c9e76
NA
14853{
14854 ctf_next_t *it = NULL;
14855 char *errtext;
14856 int is_warning;
14857 int err;
14858
14859 /* Dump accumulated errors and warnings. */
14860 while ((errtext = ctf_errwarning_next (fp, &it, &is_warning, &err)) != NULL)
14861 {
5e9b84f7 14862 error (_("%s: %s"), is_warning ? _("warning"): _("error"),
926c9e76
NA
14863 errtext);
14864 free (errtext);
14865 }
14866 if (err != ECTF_NEXT_END)
14867 error (_("CTF error: cannot get CTF errors: `%s'"), ctf_errmsg (err));
14868}
14869
2f6ecaed
NA
14870/* Dump one CTF archive member. */
14871
14872static int
139633c3 14873dump_ctf_archive_member (ctf_dict_t *ctf, const char *name, void *arg)
2f6ecaed 14874{
139633c3 14875 ctf_dict_t *parent = (ctf_dict_t *) arg;
2f6ecaed
NA
14876 const char *things[] = {"Header", "Labels", "Data objects",
14877 "Function objects", "Variables", "Types", "Strings",
14878 ""};
14879 const char **thing;
14880 size_t i;
8b37e7b6 14881 int err = 0;
2f6ecaed
NA
14882
14883 /* Only print out the name of non-default-named archive members.
14884 The name .ctf appears everywhere, even for things that aren't
14885 really archives, so printing it out is liable to be confusing.
14886
14887 The parent, if there is one, is the default-owned archive member:
14888 avoid importing it into itself. (This does no harm, but looks
14889 confusing.) */
14890
14891 if (strcmp (name, ".ctf") != 0)
14892 {
14893 printf (_("\nCTF archive member: %s:\n"), name);
14894 ctf_import (ctf, parent);
14895 }
14896
14897 for (i = 0, thing = things; *thing[0]; thing++, i++)
14898 {
14899 ctf_dump_state_t *s = NULL;
14900 char *item;
14901
14902 printf ("\n %s:\n", *thing);
14903 while ((item = ctf_dump (ctf, &s, i, dump_ctf_indent_lines,
14904 (void *) " ")) != NULL)
14905 {
14906 printf ("%s\n", item);
14907 free (item);
14908 }
14909
14910 if (ctf_errno (ctf))
14911 {
14912 error (_("Iteration failed: %s, %s\n"), *thing,
14913 ctf_errmsg (ctf_errno (ctf)));
8b37e7b6
NA
14914 err = 1;
14915 goto out;
2f6ecaed
NA
14916 }
14917 }
8b37e7b6
NA
14918
14919 out:
926c9e76 14920 dump_ctf_errs (ctf);
8b37e7b6 14921 return err;
2f6ecaed
NA
14922}
14923
015dc7e1 14924static bool
7d9813f1
NA
14925dump_section_as_ctf (Elf_Internal_Shdr * section, Filedata * filedata)
14926{
14927 Elf_Internal_Shdr * parent_sec = NULL;
14928 Elf_Internal_Shdr * symtab_sec = NULL;
14929 Elf_Internal_Shdr * strtab_sec = NULL;
d344b407
NA
14930 void * data = NULL;
14931 void * symdata = NULL;
14932 void * strdata = NULL;
14933 void * parentdata = NULL;
14934 ctf_sect_t ctfsect, symsect, strsect, parentsect;
14935 ctf_sect_t * symsectp = NULL;
14936 ctf_sect_t * strsectp = NULL;
2f6ecaed
NA
14937 ctf_archive_t * ctfa = NULL;
14938 ctf_archive_t * parenta = NULL, *lookparent;
139633c3 14939 ctf_dict_t * parent = NULL;
7d9813f1 14940
7d9813f1 14941 int err;
015dc7e1 14942 bool ret = false;
7d9813f1
NA
14943
14944 shdr_to_ctf_sect (&ctfsect, section, filedata);
14945 data = get_section_contents (section, filedata);
14946 ctfsect.cts_data = data;
14947
616febde 14948 if (!dump_ctf_symtab_name)
3d16b64e 14949 dump_ctf_symtab_name = strdup (".dynsym");
616febde
NA
14950
14951 if (!dump_ctf_strtab_name)
3d16b64e 14952 dump_ctf_strtab_name = strdup (".dynstr");
616febde
NA
14953
14954 if (dump_ctf_symtab_name && dump_ctf_symtab_name[0] != 0)
7d9813f1
NA
14955 {
14956 if ((symtab_sec = find_section (filedata, dump_ctf_symtab_name)) == NULL)
14957 {
14958 error (_("No symbol section named %s\n"), dump_ctf_symtab_name);
14959 goto fail;
14960 }
14961 if ((symdata = (void *) get_data (NULL, filedata,
14962 symtab_sec->sh_offset, 1,
14963 symtab_sec->sh_size,
14964 _("symbols"))) == NULL)
14965 goto fail;
14966 symsectp = shdr_to_ctf_sect (&symsect, symtab_sec, filedata);
14967 symsect.cts_data = symdata;
14968 }
835f2fae 14969
df16e041 14970 if (dump_ctf_strtab_name && dump_ctf_strtab_name[0] != 0)
7d9813f1
NA
14971 {
14972 if ((strtab_sec = find_section (filedata, dump_ctf_strtab_name)) == NULL)
14973 {
14974 error (_("No string table section named %s\n"),
14975 dump_ctf_strtab_name);
14976 goto fail;
14977 }
14978 if ((strdata = (void *) get_data (NULL, filedata,
14979 strtab_sec->sh_offset, 1,
14980 strtab_sec->sh_size,
14981 _("strings"))) == NULL)
14982 goto fail;
14983 strsectp = shdr_to_ctf_sect (&strsect, strtab_sec, filedata);
14984 strsect.cts_data = strdata;
14985 }
835f2fae 14986
7d9813f1
NA
14987 if (dump_ctf_parent_name)
14988 {
14989 if ((parent_sec = find_section (filedata, dump_ctf_parent_name)) == NULL)
14990 {
14991 error (_("No CTF parent section named %s\n"), dump_ctf_parent_name);
14992 goto fail;
14993 }
14994 if ((parentdata = (void *) get_data (NULL, filedata,
14995 parent_sec->sh_offset, 1,
14996 parent_sec->sh_size,
14997 _("CTF parent"))) == NULL)
14998 goto fail;
14999 shdr_to_ctf_sect (&parentsect, parent_sec, filedata);
15000 parentsect.cts_data = parentdata;
15001 }
15002
2f6ecaed
NA
15003 /* Load the CTF file and dump it. It may be a raw CTF section, or an archive:
15004 libctf papers over the difference, so we can pretend it is always an
15005 archive. Possibly open the parent as well, if one was specified. */
7d9813f1 15006
2f6ecaed 15007 if ((ctfa = ctf_arc_bufopen (&ctfsect, symsectp, strsectp, &err)) == NULL)
7d9813f1 15008 {
926c9e76 15009 dump_ctf_errs (NULL);
7d9813f1
NA
15010 error (_("CTF open failure: %s\n"), ctf_errmsg (err));
15011 goto fail;
15012 }
15013
96c61be5
NA
15014 ctf_arc_symsect_endianness (ctfa, filedata->file_header.e_ident[EI_DATA]
15015 != ELFDATA2MSB);
15016
7d9813f1
NA
15017 if (parentdata)
15018 {
2f6ecaed
NA
15019 if ((parenta = ctf_arc_bufopen (&parentsect, symsectp, strsectp,
15020 &err)) == NULL)
7d9813f1 15021 {
926c9e76 15022 dump_ctf_errs (NULL);
7d9813f1
NA
15023 error (_("CTF open failure: %s\n"), ctf_errmsg (err));
15024 goto fail;
15025 }
2f6ecaed
NA
15026 lookparent = parenta;
15027 }
15028 else
15029 lookparent = ctfa;
7d9813f1 15030
2f6ecaed
NA
15031 /* Assume that the applicable parent archive member is the default one.
15032 (This is what all known implementations are expected to do, if they
15033 put CTFs and their parents in archives together.) */
ae41200b 15034 if ((parent = ctf_dict_open (lookparent, NULL, &err)) == NULL)
2f6ecaed 15035 {
926c9e76 15036 dump_ctf_errs (NULL);
2f6ecaed
NA
15037 error (_("CTF open failure: %s\n"), ctf_errmsg (err));
15038 goto fail;
7d9813f1
NA
15039 }
15040
015dc7e1 15041 ret = true;
7d9813f1 15042
835f2fae
NC
15043 if (filedata->is_separate)
15044 printf (_("\nDump of CTF section '%s' in linked file %s:\n"),
15045 printable_section_name (filedata, section),
15046 filedata->file_name);
15047 else
15048 printf (_("\nDump of CTF section '%s':\n"),
15049 printable_section_name (filedata, section));
7d9813f1 15050
83d59285
NA
15051 if ((err = ctf_archive_iter (ctfa, dump_ctf_archive_member, parent)) != 0)
15052 {
15053 dump_ctf_errs (NULL);
15054 error (_("CTF member open failure: %s\n"), ctf_errmsg (err));
015dc7e1 15055 ret = false;
83d59285 15056 }
7d9813f1
NA
15057
15058 fail:
139633c3 15059 ctf_dict_close (parent);
2f6ecaed
NA
15060 ctf_close (ctfa);
15061 ctf_close (parenta);
7d9813f1
NA
15062 free (parentdata);
15063 free (data);
15064 free (symdata);
15065 free (strdata);
15066 return ret;
15067}
094e34f2 15068#endif
7d9813f1 15069
015dc7e1 15070static bool
dda8d76d
NC
15071load_specific_debug_section (enum dwarf_section_display_enum debug,
15072 const Elf_Internal_Shdr * sec,
15073 void * data)
1007acb3 15074{
2cf0635d 15075 struct dwarf_section * section = &debug_displays [debug].section;
19e6b90e 15076 char buf [64];
dda8d76d 15077 Filedata * filedata = (Filedata *) data;
9abca702 15078
19e6b90e 15079 if (section->start != NULL)
dda8d76d
NC
15080 {
15081 /* If it is already loaded, do nothing. */
15082 if (streq (section->filename, filedata->file_name))
015dc7e1 15083 return true;
dda8d76d
NC
15084 free (section->start);
15085 }
1007acb3 15086
19e6b90e
L
15087 snprintf (buf, sizeof (buf), _("%s section data"), section->name);
15088 section->address = sec->sh_addr;
dda8d76d
NC
15089 section->filename = filedata->file_name;
15090 section->start = (unsigned char *) get_data (NULL, filedata,
3f5e193b
NC
15091 sec->sh_offset, 1,
15092 sec->sh_size, buf);
59245841
NC
15093 if (section->start == NULL)
15094 section->size = 0;
15095 else
15096 {
77115a4a
L
15097 unsigned char *start = section->start;
15098 dwarf_size_type size = sec->sh_size;
dab394de 15099 dwarf_size_type uncompressed_size = 0;
77115a4a
L
15100
15101 if ((sec->sh_flags & SHF_COMPRESSED) != 0)
15102 {
15103 Elf_Internal_Chdr chdr;
d8024a91
NC
15104 unsigned int compression_header_size;
15105
f53be977
L
15106 if (size < (is_32bit_elf
15107 ? sizeof (Elf32_External_Chdr)
15108 : sizeof (Elf64_External_Chdr)))
d8024a91 15109 {
55be8fd0 15110 warn (_("compressed section %s is too small to contain a compression header\n"),
d8024a91 15111 section->name);
015dc7e1 15112 return false;
d8024a91
NC
15113 }
15114
ebdf1ebf 15115 compression_header_size = get_compression_header (&chdr, start, size);
5844b465
NC
15116 if (compression_header_size == 0)
15117 /* An error message will have already been generated
15118 by get_compression_header. */
015dc7e1 15119 return false;
d8024a91 15120
813dabb9
L
15121 if (chdr.ch_type != ELFCOMPRESS_ZLIB)
15122 {
15123 warn (_("section '%s' has unsupported compress type: %d\n"),
15124 section->name, chdr.ch_type);
015dc7e1 15125 return false;
813dabb9 15126 }
dab394de 15127 uncompressed_size = chdr.ch_size;
77115a4a
L
15128 start += compression_header_size;
15129 size -= compression_header_size;
15130 }
dab394de
L
15131 else if (size > 12 && streq ((char *) start, "ZLIB"))
15132 {
15133 /* Read the zlib header. In this case, it should be "ZLIB"
15134 followed by the uncompressed section size, 8 bytes in
15135 big-endian order. */
15136 uncompressed_size = start[4]; uncompressed_size <<= 8;
15137 uncompressed_size += start[5]; uncompressed_size <<= 8;
15138 uncompressed_size += start[6]; uncompressed_size <<= 8;
15139 uncompressed_size += start[7]; uncompressed_size <<= 8;
15140 uncompressed_size += start[8]; uncompressed_size <<= 8;
15141 uncompressed_size += start[9]; uncompressed_size <<= 8;
15142 uncompressed_size += start[10]; uncompressed_size <<= 8;
15143 uncompressed_size += start[11];
15144 start += 12;
15145 size -= 12;
15146 }
15147
1835f746 15148 if (uncompressed_size)
77115a4a 15149 {
1835f746
NC
15150 if (uncompress_section_contents (&start, uncompressed_size,
15151 &size))
15152 {
15153 /* Free the compressed buffer, update the section buffer
15154 and the section size if uncompress is successful. */
15155 free (section->start);
15156 section->start = start;
15157 }
15158 else
15159 {
15160 error (_("Unable to decompress section %s\n"),
dda8d76d 15161 printable_section_name (filedata, sec));
015dc7e1 15162 return false;
1835f746 15163 }
77115a4a 15164 }
bc303e5d 15165
77115a4a 15166 section->size = size;
59245841 15167 }
4a114e3e 15168
1b315056 15169 if (section->start == NULL)
015dc7e1 15170 return false;
1b315056 15171
19e6b90e 15172 if (debug_displays [debug].relocate)
32ec8896 15173 {
dda8d76d 15174 if (! apply_relocations (filedata, sec, section->start, section->size,
32ec8896 15175 & section->reloc_info, & section->num_relocs))
015dc7e1 15176 return false;
32ec8896 15177 }
d1c4b12b
NC
15178 else
15179 {
15180 section->reloc_info = NULL;
15181 section->num_relocs = 0;
15182 }
1007acb3 15183
015dc7e1 15184 return true;
1007acb3
L
15185}
15186
301a9420
AM
15187#if HAVE_LIBDEBUGINFOD
15188/* Return a hex string representation of the build-id. */
15189unsigned char *
15190get_build_id (void * data)
15191{
ca0e11aa 15192 Filedata * filedata = (Filedata *) data;
301a9420
AM
15193 Elf_Internal_Shdr * shdr;
15194 unsigned long i;
15195
55be8fd0
NC
15196 /* Iterate through notes to find note.gnu.build-id.
15197 FIXME: Only the first note in any note section is examined. */
301a9420
AM
15198 for (i = 0, shdr = filedata->section_headers;
15199 i < filedata->file_header.e_shnum && shdr != NULL;
15200 i++, shdr++)
15201 {
15202 if (shdr->sh_type != SHT_NOTE)
15203 continue;
15204
15205 char * next;
15206 char * end;
15207 size_t data_remaining;
15208 size_t min_notesz;
15209 Elf_External_Note * enote;
15210 Elf_Internal_Note inote;
15211
15212 bfd_vma offset = shdr->sh_offset;
15213 bfd_vma align = shdr->sh_addralign;
15214 bfd_vma length = shdr->sh_size;
15215
15216 enote = (Elf_External_Note *) get_section_contents (shdr, filedata);
15217 if (enote == NULL)
15218 continue;
15219
15220 if (align < 4)
15221 align = 4;
15222 else if (align != 4 && align != 8)
f761cb13
AM
15223 {
15224 free (enote);
15225 continue;
15226 }
301a9420
AM
15227
15228 end = (char *) enote + length;
15229 data_remaining = end - (char *) enote;
15230
15231 if (!is_ia64_vms (filedata))
15232 {
15233 min_notesz = offsetof (Elf_External_Note, name);
15234 if (data_remaining < min_notesz)
15235 {
55be8fd0
NC
15236 warn (_("\
15237malformed note encountered in section %s whilst scanning for build-id note\n"),
15238 printable_section_name (filedata, shdr));
f761cb13 15239 free (enote);
55be8fd0 15240 continue;
301a9420
AM
15241 }
15242 data_remaining -= min_notesz;
15243
15244 inote.type = BYTE_GET (enote->type);
15245 inote.namesz = BYTE_GET (enote->namesz);
15246 inote.namedata = enote->name;
15247 inote.descsz = BYTE_GET (enote->descsz);
15248 inote.descdata = ((char *) enote
15249 + ELF_NOTE_DESC_OFFSET (inote.namesz, align));
15250 inote.descpos = offset + (inote.descdata - (char *) enote);
15251 next = ((char *) enote
15252 + ELF_NOTE_NEXT_OFFSET (inote.namesz, inote.descsz, align));
15253 }
15254 else
15255 {
15256 Elf64_External_VMS_Note *vms_enote;
15257
15258 /* PR binutils/15191
15259 Make sure that there is enough data to read. */
15260 min_notesz = offsetof (Elf64_External_VMS_Note, name);
15261 if (data_remaining < min_notesz)
15262 {
55be8fd0
NC
15263 warn (_("\
15264malformed note encountered in section %s whilst scanning for build-id note\n"),
15265 printable_section_name (filedata, shdr));
f761cb13 15266 free (enote);
55be8fd0 15267 continue;
301a9420
AM
15268 }
15269 data_remaining -= min_notesz;
15270
15271 vms_enote = (Elf64_External_VMS_Note *) enote;
15272 inote.type = BYTE_GET (vms_enote->type);
15273 inote.namesz = BYTE_GET (vms_enote->namesz);
15274 inote.namedata = vms_enote->name;
15275 inote.descsz = BYTE_GET (vms_enote->descsz);
15276 inote.descdata = inote.namedata + align_power (inote.namesz, 3);
15277 inote.descpos = offset + (inote.descdata - (char *) enote);
15278 next = inote.descdata + align_power (inote.descsz, 3);
15279 }
15280
15281 /* Skip malformed notes. */
15282 if ((size_t) (inote.descdata - inote.namedata) < inote.namesz
15283 || (size_t) (inote.descdata - inote.namedata) > data_remaining
15284 || (size_t) (next - inote.descdata) < inote.descsz
15285 || ((size_t) (next - inote.descdata)
15286 > data_remaining - (size_t) (inote.descdata - inote.namedata)))
15287 {
55be8fd0
NC
15288 warn (_("\
15289malformed note encountered in section %s whilst scanning for build-id note\n"),
15290 printable_section_name (filedata, shdr));
f761cb13 15291 free (enote);
301a9420
AM
15292 continue;
15293 }
15294
15295 /* Check if this is the build-id note. If so then convert the build-id
15296 bytes to a hex string. */
15297 if (inote.namesz > 0
24d127aa 15298 && startswith (inote.namedata, "GNU")
301a9420
AM
15299 && inote.type == NT_GNU_BUILD_ID)
15300 {
15301 unsigned long j;
15302 char * build_id;
15303
15304 build_id = malloc (inote.descsz * 2 + 1);
15305 if (build_id == NULL)
f761cb13
AM
15306 {
15307 free (enote);
15308 return NULL;
15309 }
301a9420
AM
15310
15311 for (j = 0; j < inote.descsz; ++j)
15312 sprintf (build_id + (j * 2), "%02x", inote.descdata[j] & 0xff);
15313 build_id[inote.descsz * 2] = '\0';
f761cb13 15314 free (enote);
301a9420 15315
55be8fd0 15316 return (unsigned char *) build_id;
301a9420 15317 }
f761cb13 15318 free (enote);
301a9420
AM
15319 }
15320
15321 return NULL;
15322}
15323#endif /* HAVE_LIBDEBUGINFOD */
15324
657d0d47
CC
15325/* If this is not NULL, load_debug_section will only look for sections
15326 within the list of sections given here. */
32ec8896 15327static unsigned int * section_subset = NULL;
657d0d47 15328
015dc7e1 15329bool
dda8d76d 15330load_debug_section (enum dwarf_section_display_enum debug, void * data)
d966045b 15331{
2cf0635d
NC
15332 struct dwarf_section * section = &debug_displays [debug].section;
15333 Elf_Internal_Shdr * sec;
dda8d76d
NC
15334 Filedata * filedata = (Filedata *) data;
15335
f425ec66
NC
15336 /* Without section headers we cannot find any sections. */
15337 if (filedata->section_headers == NULL)
015dc7e1 15338 return false;
f425ec66 15339
9c1ce108
AM
15340 if (filedata->string_table == NULL
15341 && filedata->file_header.e_shstrndx != SHN_UNDEF
15342 && filedata->file_header.e_shstrndx < filedata->file_header.e_shnum)
dda8d76d
NC
15343 {
15344 Elf_Internal_Shdr * strs;
15345
15346 /* Read in the string table, so that we have section names to scan. */
15347 strs = filedata->section_headers + filedata->file_header.e_shstrndx;
15348
4dff97b2 15349 if (strs != NULL && strs->sh_size != 0)
dda8d76d 15350 {
9c1ce108
AM
15351 filedata->string_table
15352 = (char *) get_data (NULL, filedata, strs->sh_offset,
15353 1, strs->sh_size, _("string table"));
dda8d76d 15354
9c1ce108
AM
15355 filedata->string_table_length
15356 = filedata->string_table != NULL ? strs->sh_size : 0;
dda8d76d
NC
15357 }
15358 }
d966045b
DJ
15359
15360 /* Locate the debug section. */
dda8d76d 15361 sec = find_section_in_set (filedata, section->uncompressed_name, section_subset);
d966045b
DJ
15362 if (sec != NULL)
15363 section->name = section->uncompressed_name;
15364 else
15365 {
dda8d76d 15366 sec = find_section_in_set (filedata, section->compressed_name, section_subset);
d966045b
DJ
15367 if (sec != NULL)
15368 section->name = section->compressed_name;
15369 }
15370 if (sec == NULL)
015dc7e1 15371 return false;
d966045b 15372
657d0d47
CC
15373 /* If we're loading from a subset of sections, and we've loaded
15374 a section matching this name before, it's likely that it's a
15375 different one. */
15376 if (section_subset != NULL)
15377 free_debug_section (debug);
15378
dda8d76d 15379 return load_specific_debug_section (debug, sec, data);
d966045b
DJ
15380}
15381
19e6b90e
L
15382void
15383free_debug_section (enum dwarf_section_display_enum debug)
1007acb3 15384{
2cf0635d 15385 struct dwarf_section * section = &debug_displays [debug].section;
1007acb3 15386
19e6b90e
L
15387 if (section->start == NULL)
15388 return;
1007acb3 15389
19e6b90e
L
15390 free ((char *) section->start);
15391 section->start = NULL;
15392 section->address = 0;
15393 section->size = 0;
a788aedd 15394
9db70fc3
AM
15395 free (section->reloc_info);
15396 section->reloc_info = NULL;
15397 section->num_relocs = 0;
1007acb3
L
15398}
15399
015dc7e1 15400static bool
dda8d76d 15401display_debug_section (int shndx, Elf_Internal_Shdr * section, Filedata * filedata)
1007acb3 15402{
b9e920ec 15403 char * name = SECTION_NAME_VALID (section) ? SECTION_NAME (section) : "";
dda8d76d 15404 const char * print_name = printable_section_name (filedata, section);
19e6b90e 15405 bfd_size_type length;
015dc7e1 15406 bool result = true;
3f5e193b 15407 int i;
1007acb3 15408
19e6b90e
L
15409 length = section->sh_size;
15410 if (length == 0)
1007acb3 15411 {
74e1a04b 15412 printf (_("\nSection '%s' has no debugging data.\n"), print_name);
015dc7e1 15413 return true;
1007acb3 15414 }
5dff79d8
NC
15415 if (section->sh_type == SHT_NOBITS)
15416 {
15417 /* There is no point in dumping the contents of a debugging section
15418 which has the NOBITS type - the bits in the file will be random.
15419 This can happen when a file containing a .eh_frame section is
15420 stripped with the --only-keep-debug command line option. */
74e1a04b
NC
15421 printf (_("section '%s' has the NOBITS type - its contents are unreliable.\n"),
15422 print_name);
015dc7e1 15423 return false;
5dff79d8 15424 }
1007acb3 15425
24d127aa 15426 if (startswith (name, ".gnu.linkonce.wi."))
19e6b90e 15427 name = ".debug_info";
1007acb3 15428
19e6b90e
L
15429 /* See if we know how to display the contents of this section. */
15430 for (i = 0; i < max; i++)
d85bf2ba
NC
15431 {
15432 enum dwarf_section_display_enum id = (enum dwarf_section_display_enum) i;
15433 struct dwarf_section_display * display = debug_displays + i;
15434 struct dwarf_section * sec = & display->section;
d966045b 15435
d85bf2ba 15436 if (streq (sec->uncompressed_name, name)
24d127aa 15437 || (id == line && startswith (name, ".debug_line."))
d85bf2ba
NC
15438 || streq (sec->compressed_name, name))
15439 {
015dc7e1 15440 bool secondary = (section != find_section (filedata, name));
1007acb3 15441
d85bf2ba
NC
15442 if (secondary)
15443 free_debug_section (id);
dda8d76d 15444
24d127aa 15445 if (i == line && startswith (name, ".debug_line."))
d85bf2ba
NC
15446 sec->name = name;
15447 else if (streq (sec->uncompressed_name, name))
15448 sec->name = sec->uncompressed_name;
15449 else
15450 sec->name = sec->compressed_name;
657d0d47 15451
d85bf2ba
NC
15452 if (load_specific_debug_section (id, section, filedata))
15453 {
15454 /* If this debug section is part of a CU/TU set in a .dwp file,
15455 restrict load_debug_section to the sections in that set. */
15456 section_subset = find_cu_tu_set (filedata, shndx);
1007acb3 15457
d85bf2ba 15458 result &= display->display (sec, filedata);
657d0d47 15459
d85bf2ba 15460 section_subset = NULL;
1007acb3 15461
44266f36 15462 if (secondary || (id != info && id != abbrev && id != debug_addr))
d85bf2ba
NC
15463 free_debug_section (id);
15464 }
15465 break;
15466 }
15467 }
1007acb3 15468
19e6b90e 15469 if (i == max)
1007acb3 15470 {
74e1a04b 15471 printf (_("Unrecognized debug section: %s\n"), print_name);
015dc7e1 15472 result = false;
1007acb3
L
15473 }
15474
19e6b90e 15475 return result;
5b18a4bc 15476}
103f02d3 15477
aef1f6d0
DJ
15478/* Set DUMP_SECTS for all sections where dumps were requested
15479 based on section name. */
15480
15481static void
dda8d76d 15482initialise_dumps_byname (Filedata * filedata)
aef1f6d0 15483{
2cf0635d 15484 struct dump_list_entry * cur;
aef1f6d0
DJ
15485
15486 for (cur = dump_sects_byname; cur; cur = cur->next)
15487 {
15488 unsigned int i;
015dc7e1 15489 bool any = false;
aef1f6d0 15490
dda8d76d 15491 for (i = 0; i < filedata->file_header.e_shnum; i++)
b9e920ec
AM
15492 if (SECTION_NAME_VALID (filedata->section_headers + i)
15493 && streq (SECTION_NAME (filedata->section_headers + i), cur->name))
aef1f6d0 15494 {
6431e409 15495 request_dump_bynumber (&filedata->dump, i, cur->type);
015dc7e1 15496 any = true;
aef1f6d0
DJ
15497 }
15498
835f2fae
NC
15499 if (!any && !filedata->is_separate)
15500 warn (_("Section '%s' was not dumped because it does not exist\n"),
15501 cur->name);
aef1f6d0
DJ
15502 }
15503}
15504
015dc7e1 15505static bool
dda8d76d 15506process_section_contents (Filedata * filedata)
5b18a4bc 15507{
2cf0635d 15508 Elf_Internal_Shdr * section;
19e6b90e 15509 unsigned int i;
015dc7e1 15510 bool res = true;
103f02d3 15511
19e6b90e 15512 if (! do_dump)
015dc7e1 15513 return true;
103f02d3 15514
dda8d76d 15515 initialise_dumps_byname (filedata);
aef1f6d0 15516
dda8d76d 15517 for (i = 0, section = filedata->section_headers;
6431e409 15518 i < filedata->file_header.e_shnum && i < filedata->dump.num_dump_sects;
19e6b90e
L
15519 i++, section++)
15520 {
6431e409 15521 dump_type dump = filedata->dump.dump_sects[i];
dda8d76d 15522
d6bfbc39
NC
15523 if (filedata->is_separate && ! process_links)
15524 dump &= DEBUG_DUMP;
15525
19e6b90e 15526#ifdef SUPPORT_DISASSEMBLY
dda8d76d
NC
15527 if (dump & DISASS_DUMP)
15528 {
15529 if (! disassemble_section (section, filedata))
015dc7e1 15530 res = false;
dda8d76d 15531 }
19e6b90e 15532#endif
dda8d76d 15533 if (dump & HEX_DUMP)
32ec8896 15534 {
015dc7e1
AM
15535 if (! dump_section_as_bytes (section, filedata, false))
15536 res = false;
32ec8896 15537 }
103f02d3 15538
dda8d76d 15539 if (dump & RELOC_DUMP)
32ec8896 15540 {
015dc7e1
AM
15541 if (! dump_section_as_bytes (section, filedata, true))
15542 res = false;
32ec8896 15543 }
09c11c86 15544
dda8d76d 15545 if (dump & STRING_DUMP)
32ec8896 15546 {
dda8d76d 15547 if (! dump_section_as_strings (section, filedata))
015dc7e1 15548 res = false;
32ec8896 15549 }
cf13d699 15550
dda8d76d 15551 if (dump & DEBUG_DUMP)
32ec8896 15552 {
dda8d76d 15553 if (! display_debug_section (i, section, filedata))
015dc7e1 15554 res = false;
32ec8896 15555 }
7d9813f1 15556
094e34f2 15557#ifdef ENABLE_LIBCTF
7d9813f1
NA
15558 if (dump & CTF_DUMP)
15559 {
15560 if (! dump_section_as_ctf (section, filedata))
015dc7e1 15561 res = false;
7d9813f1 15562 }
094e34f2 15563#endif
5b18a4bc 15564 }
103f02d3 15565
835f2fae 15566 if (! filedata->is_separate)
0ee3043f 15567 {
835f2fae
NC
15568 /* Check to see if the user requested a
15569 dump of a section that does not exist. */
15570 for (; i < filedata->dump.num_dump_sects; i++)
15571 if (filedata->dump.dump_sects[i])
15572 {
ca0e11aa 15573 warn (_("Section %d was not dumped because it does not exist!\n"), i);
015dc7e1 15574 res = false;
835f2fae 15575 }
0ee3043f 15576 }
32ec8896
NC
15577
15578 return res;
5b18a4bc 15579}
103f02d3 15580
5b18a4bc 15581static void
19e6b90e 15582process_mips_fpe_exception (int mask)
5b18a4bc 15583{
19e6b90e
L
15584 if (mask)
15585 {
015dc7e1 15586 bool first = true;
32ec8896 15587
19e6b90e 15588 if (mask & OEX_FPU_INEX)
015dc7e1 15589 fputs ("INEX", stdout), first = false;
19e6b90e 15590 if (mask & OEX_FPU_UFLO)
015dc7e1 15591 printf ("%sUFLO", first ? "" : "|"), first = false;
19e6b90e 15592 if (mask & OEX_FPU_OFLO)
015dc7e1 15593 printf ("%sOFLO", first ? "" : "|"), first = false;
19e6b90e 15594 if (mask & OEX_FPU_DIV0)
015dc7e1 15595 printf ("%sDIV0", first ? "" : "|"), first = false;
19e6b90e
L
15596 if (mask & OEX_FPU_INVAL)
15597 printf ("%sINVAL", first ? "" : "|");
15598 }
5b18a4bc 15599 else
19e6b90e 15600 fputs ("0", stdout);
5b18a4bc 15601}
103f02d3 15602
f6f0e17b
NC
15603/* Display's the value of TAG at location P. If TAG is
15604 greater than 0 it is assumed to be an unknown tag, and
15605 a message is printed to this effect. Otherwise it is
15606 assumed that a message has already been printed.
15607
15608 If the bottom bit of TAG is set it assumed to have a
15609 string value, otherwise it is assumed to have an integer
15610 value.
15611
15612 Returns an updated P pointing to the first unread byte
15613 beyond the end of TAG's value.
15614
15615 Reads at or beyond END will not be made. */
15616
15617static unsigned char *
60abdbed 15618display_tag_value (signed int tag,
f6f0e17b
NC
15619 unsigned char * p,
15620 const unsigned char * const end)
15621{
15622 unsigned long val;
15623
15624 if (tag > 0)
15625 printf (" Tag_unknown_%d: ", tag);
15626
15627 if (p >= end)
15628 {
4082ef84 15629 warn (_("<corrupt tag>\n"));
f6f0e17b
NC
15630 }
15631 else if (tag & 1)
15632 {
071436c6
NC
15633 /* PR 17531 file: 027-19978-0.004. */
15634 size_t maxlen = (end - p) - 1;
15635
15636 putchar ('"');
4082ef84
NC
15637 if (maxlen > 0)
15638 {
15639 print_symbol ((int) maxlen, (const char *) p);
15640 p += strnlen ((char *) p, maxlen) + 1;
15641 }
15642 else
15643 {
15644 printf (_("<corrupt string tag>"));
15645 p = (unsigned char *) end;
15646 }
071436c6 15647 printf ("\"\n");
f6f0e17b
NC
15648 }
15649 else
15650 {
cd30bcef 15651 READ_ULEB (val, p, end);
f6f0e17b
NC
15652 printf ("%ld (0x%lx)\n", val, val);
15653 }
15654
4082ef84 15655 assert (p <= end);
f6f0e17b
NC
15656 return p;
15657}
15658
53a346d8
CZ
15659/* ARC ABI attributes section. */
15660
15661static unsigned char *
15662display_arc_attribute (unsigned char * p,
15663 const unsigned char * const end)
15664{
15665 unsigned int tag;
53a346d8
CZ
15666 unsigned int val;
15667
cd30bcef 15668 READ_ULEB (tag, p, end);
53a346d8
CZ
15669
15670 switch (tag)
15671 {
15672 case Tag_ARC_PCS_config:
cd30bcef 15673 READ_ULEB (val, p, end);
53a346d8
CZ
15674 printf (" Tag_ARC_PCS_config: ");
15675 switch (val)
15676 {
15677 case 0:
15678 printf (_("Absent/Non standard\n"));
15679 break;
15680 case 1:
15681 printf (_("Bare metal/mwdt\n"));
15682 break;
15683 case 2:
15684 printf (_("Bare metal/newlib\n"));
15685 break;
15686 case 3:
15687 printf (_("Linux/uclibc\n"));
15688 break;
15689 case 4:
15690 printf (_("Linux/glibc\n"));
15691 break;
15692 default:
15693 printf (_("Unknown\n"));
15694 break;
15695 }
15696 break;
15697
15698 case Tag_ARC_CPU_base:
cd30bcef 15699 READ_ULEB (val, p, end);
53a346d8
CZ
15700 printf (" Tag_ARC_CPU_base: ");
15701 switch (val)
15702 {
15703 default:
15704 case TAG_CPU_NONE:
15705 printf (_("Absent\n"));
15706 break;
15707 case TAG_CPU_ARC6xx:
15708 printf ("ARC6xx\n");
15709 break;
15710 case TAG_CPU_ARC7xx:
15711 printf ("ARC7xx\n");
15712 break;
15713 case TAG_CPU_ARCEM:
15714 printf ("ARCEM\n");
15715 break;
15716 case TAG_CPU_ARCHS:
15717 printf ("ARCHS\n");
15718 break;
15719 }
15720 break;
15721
15722 case Tag_ARC_CPU_variation:
cd30bcef 15723 READ_ULEB (val, p, end);
53a346d8
CZ
15724 printf (" Tag_ARC_CPU_variation: ");
15725 switch (val)
15726 {
15727 default:
15728 if (val > 0 && val < 16)
53a346d8 15729 printf ("Core%d\n", val);
d8cbc93b
JL
15730 else
15731 printf ("Unknown\n");
15732 break;
15733
53a346d8
CZ
15734 case 0:
15735 printf (_("Absent\n"));
15736 break;
15737 }
15738 break;
15739
15740 case Tag_ARC_CPU_name:
15741 printf (" Tag_ARC_CPU_name: ");
15742 p = display_tag_value (-1, p, end);
15743 break;
15744
15745 case Tag_ARC_ABI_rf16:
cd30bcef 15746 READ_ULEB (val, p, end);
53a346d8
CZ
15747 printf (" Tag_ARC_ABI_rf16: %s\n", val ? _("yes") : _("no"));
15748 break;
15749
15750 case Tag_ARC_ABI_osver:
cd30bcef 15751 READ_ULEB (val, p, end);
53a346d8
CZ
15752 printf (" Tag_ARC_ABI_osver: v%d\n", val);
15753 break;
15754
15755 case Tag_ARC_ABI_pic:
15756 case Tag_ARC_ABI_sda:
cd30bcef 15757 READ_ULEB (val, p, end);
53a346d8
CZ
15758 printf (tag == Tag_ARC_ABI_sda ? " Tag_ARC_ABI_sda: "
15759 : " Tag_ARC_ABI_pic: ");
15760 switch (val)
15761 {
15762 case 0:
15763 printf (_("Absent\n"));
15764 break;
15765 case 1:
15766 printf ("MWDT\n");
15767 break;
15768 case 2:
15769 printf ("GNU\n");
15770 break;
15771 default:
15772 printf (_("Unknown\n"));
15773 break;
15774 }
15775 break;
15776
15777 case Tag_ARC_ABI_tls:
cd30bcef 15778 READ_ULEB (val, p, end);
53a346d8
CZ
15779 printf (" Tag_ARC_ABI_tls: %s\n", val ? "r25": "none");
15780 break;
15781
15782 case Tag_ARC_ABI_enumsize:
cd30bcef 15783 READ_ULEB (val, p, end);
53a346d8
CZ
15784 printf (" Tag_ARC_ABI_enumsize: %s\n", val ? _("default") :
15785 _("smallest"));
15786 break;
15787
15788 case Tag_ARC_ABI_exceptions:
cd30bcef 15789 READ_ULEB (val, p, end);
53a346d8
CZ
15790 printf (" Tag_ARC_ABI_exceptions: %s\n", val ? _("OPTFP")
15791 : _("default"));
15792 break;
15793
15794 case Tag_ARC_ABI_double_size:
cd30bcef 15795 READ_ULEB (val, p, end);
53a346d8
CZ
15796 printf (" Tag_ARC_ABI_double_size: %d\n", val);
15797 break;
15798
15799 case Tag_ARC_ISA_config:
15800 printf (" Tag_ARC_ISA_config: ");
15801 p = display_tag_value (-1, p, end);
15802 break;
15803
15804 case Tag_ARC_ISA_apex:
15805 printf (" Tag_ARC_ISA_apex: ");
15806 p = display_tag_value (-1, p, end);
15807 break;
15808
15809 case Tag_ARC_ISA_mpy_option:
cd30bcef 15810 READ_ULEB (val, p, end);
53a346d8
CZ
15811 printf (" Tag_ARC_ISA_mpy_option: %d\n", val);
15812 break;
15813
db1e1b45 15814 case Tag_ARC_ATR_version:
cd30bcef 15815 READ_ULEB (val, p, end);
db1e1b45 15816 printf (" Tag_ARC_ATR_version: %d\n", val);
15817 break;
15818
53a346d8
CZ
15819 default:
15820 return display_tag_value (tag & 1, p, end);
15821 }
15822
15823 return p;
15824}
15825
11c1ff18
PB
15826/* ARM EABI attributes section. */
15827typedef struct
15828{
70e99720 15829 unsigned int tag;
2cf0635d 15830 const char * name;
11c1ff18 15831 /* 0 = special, 1 = string, 2 = uleb123, > 0x80 == table lookup. */
70e99720 15832 unsigned int type;
288f0ba2 15833 const char *const *table;
11c1ff18
PB
15834} arm_attr_public_tag;
15835
288f0ba2 15836static const char *const arm_attr_tag_CPU_arch[] =
11c1ff18 15837 {"Pre-v4", "v4", "v4T", "v5T", "v5TE", "v5TEJ", "v6", "v6KZ", "v6T2",
ced40572 15838 "v6K", "v7", "v6-M", "v6S-M", "v7E-M", "v8", "v8-R", "v8-M.baseline",
031254f2 15839 "v8-M.mainline", "", "", "", "v8.1-M.mainline"};
288f0ba2
AM
15840static const char *const arm_attr_tag_ARM_ISA_use[] = {"No", "Yes"};
15841static const char *const arm_attr_tag_THUMB_ISA_use[] =
4ed7ed8d 15842 {"No", "Thumb-1", "Thumb-2", "Yes"};
288f0ba2 15843static const char *const arm_attr_tag_FP_arch[] =
bca38921 15844 {"No", "VFPv1", "VFPv2", "VFPv3", "VFPv3-D16", "VFPv4", "VFPv4-D16",
a715796b 15845 "FP for ARMv8", "FPv5/FP-D16 for ARMv8"};
288f0ba2
AM
15846static const char *const arm_attr_tag_WMMX_arch[] = {"No", "WMMXv1", "WMMXv2"};
15847static const char *const arm_attr_tag_Advanced_SIMD_arch[] =
9411fd44
MW
15848 {"No", "NEONv1", "NEONv1 with Fused-MAC", "NEON for ARMv8",
15849 "NEON for ARMv8.1"};
288f0ba2 15850static const char *const arm_attr_tag_PCS_config[] =
11c1ff18
PB
15851 {"None", "Bare platform", "Linux application", "Linux DSO", "PalmOS 2004",
15852 "PalmOS (reserved)", "SymbianOS 2004", "SymbianOS (reserved)"};
288f0ba2 15853static const char *const arm_attr_tag_ABI_PCS_R9_use[] =
11c1ff18 15854 {"V6", "SB", "TLS", "Unused"};
288f0ba2 15855static const char *const arm_attr_tag_ABI_PCS_RW_data[] =
11c1ff18 15856 {"Absolute", "PC-relative", "SB-relative", "None"};
288f0ba2 15857static const char *const arm_attr_tag_ABI_PCS_RO_data[] =
11c1ff18 15858 {"Absolute", "PC-relative", "None"};
288f0ba2 15859static const char *const arm_attr_tag_ABI_PCS_GOT_use[] =
11c1ff18 15860 {"None", "direct", "GOT-indirect"};
288f0ba2 15861static const char *const arm_attr_tag_ABI_PCS_wchar_t[] =
11c1ff18 15862 {"None", "??? 1", "2", "??? 3", "4"};
288f0ba2
AM
15863static const char *const arm_attr_tag_ABI_FP_rounding[] = {"Unused", "Needed"};
15864static const char *const arm_attr_tag_ABI_FP_denormal[] =
f5f53991 15865 {"Unused", "Needed", "Sign only"};
288f0ba2
AM
15866static const char *const arm_attr_tag_ABI_FP_exceptions[] = {"Unused", "Needed"};
15867static const char *const arm_attr_tag_ABI_FP_user_exceptions[] = {"Unused", "Needed"};
15868static const char *const arm_attr_tag_ABI_FP_number_model[] =
11c1ff18 15869 {"Unused", "Finite", "RTABI", "IEEE 754"};
288f0ba2 15870static const char *const arm_attr_tag_ABI_enum_size[] =
11c1ff18 15871 {"Unused", "small", "int", "forced to int"};
288f0ba2 15872static const char *const arm_attr_tag_ABI_HardFP_use[] =
99654aaf 15873 {"As Tag_FP_arch", "SP only", "Reserved", "Deprecated"};
288f0ba2 15874static const char *const arm_attr_tag_ABI_VFP_args[] =
5c294fee 15875 {"AAPCS", "VFP registers", "custom", "compatible"};
288f0ba2 15876static const char *const arm_attr_tag_ABI_WMMX_args[] =
11c1ff18 15877 {"AAPCS", "WMMX registers", "custom"};
288f0ba2 15878static const char *const arm_attr_tag_ABI_optimization_goals[] =
11c1ff18
PB
15879 {"None", "Prefer Speed", "Aggressive Speed", "Prefer Size",
15880 "Aggressive Size", "Prefer Debug", "Aggressive Debug"};
288f0ba2 15881static const char *const arm_attr_tag_ABI_FP_optimization_goals[] =
11c1ff18
PB
15882 {"None", "Prefer Speed", "Aggressive Speed", "Prefer Size",
15883 "Aggressive Size", "Prefer Accuracy", "Aggressive Accuracy"};
288f0ba2
AM
15884static const char *const arm_attr_tag_CPU_unaligned_access[] = {"None", "v6"};
15885static const char *const arm_attr_tag_FP_HP_extension[] =
8e79c3df 15886 {"Not Allowed", "Allowed"};
288f0ba2 15887static const char *const arm_attr_tag_ABI_FP_16bit_format[] =
8e79c3df 15888 {"None", "IEEE 754", "Alternative Format"};
288f0ba2 15889static const char *const arm_attr_tag_DSP_extension[] =
15afaa63 15890 {"Follow architecture", "Allowed"};
288f0ba2 15891static const char *const arm_attr_tag_MPextension_use[] =
cd21e546 15892 {"Not Allowed", "Allowed"};
288f0ba2 15893static const char *const arm_attr_tag_DIV_use[] =
dd24e3da 15894 {"Allowed in Thumb-ISA, v7-R or v7-M", "Not allowed",
cd21e546 15895 "Allowed in v7-A with integer division extension"};
288f0ba2
AM
15896static const char *const arm_attr_tag_T2EE_use[] = {"Not Allowed", "Allowed"};
15897static const char *const arm_attr_tag_Virtualization_use[] =
dd24e3da 15898 {"Not Allowed", "TrustZone", "Virtualization Extensions",
cd21e546 15899 "TrustZone and Virtualization Extensions"};
288f0ba2 15900static const char *const arm_attr_tag_MPextension_use_legacy[] =
f5f53991 15901 {"Not Allowed", "Allowed"};
11c1ff18 15902
288f0ba2 15903static const char *const arm_attr_tag_MVE_arch[] =
a7ad558c
AV
15904 {"No MVE", "MVE Integer only", "MVE Integer and FP"};
15905
11c1ff18
PB
15906#define LOOKUP(id, name) \
15907 {id, #name, 0x80 | ARRAY_SIZE(arm_attr_tag_##name), arm_attr_tag_##name}
d70c5fc7 15908static arm_attr_public_tag arm_attr_public_tags[] =
11c1ff18
PB
15909{
15910 {4, "CPU_raw_name", 1, NULL},
15911 {5, "CPU_name", 1, NULL},
15912 LOOKUP(6, CPU_arch),
15913 {7, "CPU_arch_profile", 0, NULL},
15914 LOOKUP(8, ARM_ISA_use),
15915 LOOKUP(9, THUMB_ISA_use),
75375b3e 15916 LOOKUP(10, FP_arch),
11c1ff18 15917 LOOKUP(11, WMMX_arch),
f5f53991
AS
15918 LOOKUP(12, Advanced_SIMD_arch),
15919 LOOKUP(13, PCS_config),
11c1ff18
PB
15920 LOOKUP(14, ABI_PCS_R9_use),
15921 LOOKUP(15, ABI_PCS_RW_data),
f5f53991 15922 LOOKUP(16, ABI_PCS_RO_data),
11c1ff18
PB
15923 LOOKUP(17, ABI_PCS_GOT_use),
15924 LOOKUP(18, ABI_PCS_wchar_t),
15925 LOOKUP(19, ABI_FP_rounding),
15926 LOOKUP(20, ABI_FP_denormal),
15927 LOOKUP(21, ABI_FP_exceptions),
15928 LOOKUP(22, ABI_FP_user_exceptions),
15929 LOOKUP(23, ABI_FP_number_model),
75375b3e
MGD
15930 {24, "ABI_align_needed", 0, NULL},
15931 {25, "ABI_align_preserved", 0, NULL},
11c1ff18
PB
15932 LOOKUP(26, ABI_enum_size),
15933 LOOKUP(27, ABI_HardFP_use),
15934 LOOKUP(28, ABI_VFP_args),
15935 LOOKUP(29, ABI_WMMX_args),
15936 LOOKUP(30, ABI_optimization_goals),
15937 LOOKUP(31, ABI_FP_optimization_goals),
8e79c3df 15938 {32, "compatibility", 0, NULL},
f5f53991 15939 LOOKUP(34, CPU_unaligned_access),
75375b3e 15940 LOOKUP(36, FP_HP_extension),
8e79c3df 15941 LOOKUP(38, ABI_FP_16bit_format),
cd21e546
MGD
15942 LOOKUP(42, MPextension_use),
15943 LOOKUP(44, DIV_use),
15afaa63 15944 LOOKUP(46, DSP_extension),
a7ad558c 15945 LOOKUP(48, MVE_arch),
f5f53991
AS
15946 {64, "nodefaults", 0, NULL},
15947 {65, "also_compatible_with", 0, NULL},
15948 LOOKUP(66, T2EE_use),
15949 {67, "conformance", 1, NULL},
15950 LOOKUP(68, Virtualization_use),
cd21e546 15951 LOOKUP(70, MPextension_use_legacy)
11c1ff18
PB
15952};
15953#undef LOOKUP
15954
11c1ff18 15955static unsigned char *
f6f0e17b
NC
15956display_arm_attribute (unsigned char * p,
15957 const unsigned char * const end)
11c1ff18 15958{
70e99720 15959 unsigned int tag;
70e99720 15960 unsigned int val;
2cf0635d 15961 arm_attr_public_tag * attr;
11c1ff18 15962 unsigned i;
70e99720 15963 unsigned int type;
11c1ff18 15964
cd30bcef 15965 READ_ULEB (tag, p, end);
11c1ff18 15966 attr = NULL;
2cf0635d 15967 for (i = 0; i < ARRAY_SIZE (arm_attr_public_tags); i++)
11c1ff18
PB
15968 {
15969 if (arm_attr_public_tags[i].tag == tag)
15970 {
15971 attr = &arm_attr_public_tags[i];
15972 break;
15973 }
15974 }
15975
15976 if (attr)
15977 {
15978 printf (" Tag_%s: ", attr->name);
15979 switch (attr->type)
15980 {
15981 case 0:
15982 switch (tag)
15983 {
15984 case 7: /* Tag_CPU_arch_profile. */
cd30bcef 15985 READ_ULEB (val, p, end);
11c1ff18
PB
15986 switch (val)
15987 {
2b692964
NC
15988 case 0: printf (_("None\n")); break;
15989 case 'A': printf (_("Application\n")); break;
15990 case 'R': printf (_("Realtime\n")); break;
15991 case 'M': printf (_("Microcontroller\n")); break;
15992 case 'S': printf (_("Application or Realtime\n")); break;
11c1ff18
PB
15993 default: printf ("??? (%d)\n", val); break;
15994 }
15995 break;
15996
75375b3e 15997 case 24: /* Tag_align_needed. */
cd30bcef 15998 READ_ULEB (val, p, end);
75375b3e
MGD
15999 switch (val)
16000 {
2b692964
NC
16001 case 0: printf (_("None\n")); break;
16002 case 1: printf (_("8-byte\n")); break;
16003 case 2: printf (_("4-byte\n")); break;
75375b3e
MGD
16004 case 3: printf ("??? 3\n"); break;
16005 default:
16006 if (val <= 12)
dd24e3da 16007 printf (_("8-byte and up to %d-byte extended\n"),
75375b3e
MGD
16008 1 << val);
16009 else
16010 printf ("??? (%d)\n", val);
16011 break;
16012 }
16013 break;
16014
16015 case 25: /* Tag_align_preserved. */
cd30bcef 16016 READ_ULEB (val, p, end);
75375b3e
MGD
16017 switch (val)
16018 {
2b692964
NC
16019 case 0: printf (_("None\n")); break;
16020 case 1: printf (_("8-byte, except leaf SP\n")); break;
16021 case 2: printf (_("8-byte\n")); break;
75375b3e
MGD
16022 case 3: printf ("??? 3\n"); break;
16023 default:
16024 if (val <= 12)
dd24e3da 16025 printf (_("8-byte and up to %d-byte extended\n"),
75375b3e
MGD
16026 1 << val);
16027 else
16028 printf ("??? (%d)\n", val);
16029 break;
16030 }
16031 break;
16032
11c1ff18 16033 case 32: /* Tag_compatibility. */
071436c6 16034 {
cd30bcef 16035 READ_ULEB (val, p, end);
071436c6 16036 printf (_("flag = %d, vendor = "), val);
4082ef84
NC
16037 if (p < end - 1)
16038 {
16039 size_t maxlen = (end - p) - 1;
16040
16041 print_symbol ((int) maxlen, (const char *) p);
16042 p += strnlen ((char *) p, maxlen) + 1;
16043 }
16044 else
16045 {
16046 printf (_("<corrupt>"));
16047 p = (unsigned char *) end;
16048 }
071436c6 16049 putchar ('\n');
071436c6 16050 }
11c1ff18
PB
16051 break;
16052
f5f53991 16053 case 64: /* Tag_nodefaults. */
541a3cbd
NC
16054 /* PR 17531: file: 001-505008-0.01. */
16055 if (p < end)
16056 p++;
2b692964 16057 printf (_("True\n"));
f5f53991
AS
16058 break;
16059
16060 case 65: /* Tag_also_compatible_with. */
cd30bcef 16061 READ_ULEB (val, p, end);
f5f53991
AS
16062 if (val == 6 /* Tag_CPU_arch. */)
16063 {
cd30bcef 16064 READ_ULEB (val, p, end);
071436c6 16065 if ((unsigned int) val >= ARRAY_SIZE (arm_attr_tag_CPU_arch))
f5f53991
AS
16066 printf ("??? (%d)\n", val);
16067 else
16068 printf ("%s\n", arm_attr_tag_CPU_arch[val]);
16069 }
16070 else
16071 printf ("???\n");
071436c6
NC
16072 while (p < end && *(p++) != '\0' /* NUL terminator. */)
16073 ;
f5f53991
AS
16074 break;
16075
11c1ff18 16076 default:
bee0ee85
NC
16077 printf (_("<unknown: %d>\n"), tag);
16078 break;
11c1ff18
PB
16079 }
16080 return p;
16081
16082 case 1:
f6f0e17b 16083 return display_tag_value (-1, p, end);
11c1ff18 16084 case 2:
f6f0e17b 16085 return display_tag_value (0, p, end);
11c1ff18
PB
16086
16087 default:
16088 assert (attr->type & 0x80);
cd30bcef 16089 READ_ULEB (val, p, end);
11c1ff18
PB
16090 type = attr->type & 0x7f;
16091 if (val >= type)
16092 printf ("??? (%d)\n", val);
16093 else
16094 printf ("%s\n", attr->table[val]);
16095 return p;
16096 }
16097 }
11c1ff18 16098
f6f0e17b 16099 return display_tag_value (tag, p, end);
11c1ff18
PB
16100}
16101
104d59d1 16102static unsigned char *
60bca95a 16103display_gnu_attribute (unsigned char * p,
60abdbed 16104 unsigned char * (* display_proc_gnu_attribute) (unsigned char *, unsigned int, const unsigned char * const),
f6f0e17b 16105 const unsigned char * const end)
104d59d1 16106{
cd30bcef 16107 unsigned int tag;
60abdbed 16108 unsigned int val;
104d59d1 16109
cd30bcef 16110 READ_ULEB (tag, p, end);
104d59d1
JM
16111
16112 /* Tag_compatibility is the only generic GNU attribute defined at
16113 present. */
16114 if (tag == 32)
16115 {
cd30bcef 16116 READ_ULEB (val, p, end);
071436c6
NC
16117
16118 printf (_("flag = %d, vendor = "), val);
f6f0e17b
NC
16119 if (p == end)
16120 {
071436c6 16121 printf (_("<corrupt>\n"));
f6f0e17b
NC
16122 warn (_("corrupt vendor attribute\n"));
16123 }
16124 else
16125 {
4082ef84
NC
16126 if (p < end - 1)
16127 {
16128 size_t maxlen = (end - p) - 1;
071436c6 16129
4082ef84
NC
16130 print_symbol ((int) maxlen, (const char *) p);
16131 p += strnlen ((char *) p, maxlen) + 1;
16132 }
16133 else
16134 {
16135 printf (_("<corrupt>"));
16136 p = (unsigned char *) end;
16137 }
071436c6 16138 putchar ('\n');
f6f0e17b 16139 }
104d59d1
JM
16140 return p;
16141 }
16142
16143 if ((tag & 2) == 0 && display_proc_gnu_attribute)
f6f0e17b 16144 return display_proc_gnu_attribute (p, tag, end);
104d59d1 16145
f6f0e17b 16146 return display_tag_value (tag, p, end);
104d59d1
JM
16147}
16148
85f7484a
PB
16149static unsigned char *
16150display_m68k_gnu_attribute (unsigned char * p,
16151 unsigned int tag,
16152 const unsigned char * const end)
16153{
16154 unsigned int val;
16155
16156 if (tag == Tag_GNU_M68K_ABI_FP)
16157 {
16158 printf (" Tag_GNU_M68K_ABI_FP: ");
16159 if (p == end)
16160 {
16161 printf (_("<corrupt>\n"));
16162 return p;
16163 }
16164 READ_ULEB (val, p, end);
16165
16166 if (val > 3)
16167 printf ("(%#x), ", val);
16168
16169 switch (val & 3)
16170 {
16171 case 0:
16172 printf (_("unspecified hard/soft float\n"));
16173 break;
16174 case 1:
16175 printf (_("hard float\n"));
16176 break;
16177 case 2:
16178 printf (_("soft float\n"));
16179 break;
16180 }
16181 return p;
16182 }
16183
16184 return display_tag_value (tag & 1, p, end);
16185}
16186
34c8bcba 16187static unsigned char *
f6f0e17b 16188display_power_gnu_attribute (unsigned char * p,
60abdbed 16189 unsigned int tag,
f6f0e17b 16190 const unsigned char * const end)
34c8bcba 16191{
005d79fd 16192 unsigned int val;
34c8bcba
JM
16193
16194 if (tag == Tag_GNU_Power_ABI_FP)
16195 {
34c8bcba 16196 printf (" Tag_GNU_Power_ABI_FP: ");
cd30bcef 16197 if (p == end)
005d79fd
AM
16198 {
16199 printf (_("<corrupt>\n"));
16200 return p;
16201 }
cd30bcef 16202 READ_ULEB (val, p, end);
60bca95a 16203
005d79fd
AM
16204 if (val > 15)
16205 printf ("(%#x), ", val);
16206
16207 switch (val & 3)
34c8bcba
JM
16208 {
16209 case 0:
005d79fd 16210 printf (_("unspecified hard/soft float, "));
34c8bcba
JM
16211 break;
16212 case 1:
005d79fd 16213 printf (_("hard float, "));
34c8bcba
JM
16214 break;
16215 case 2:
005d79fd 16216 printf (_("soft float, "));
34c8bcba 16217 break;
3c7b9897 16218 case 3:
005d79fd 16219 printf (_("single-precision hard float, "));
3c7b9897 16220 break;
005d79fd
AM
16221 }
16222
16223 switch (val & 0xC)
16224 {
16225 case 0:
16226 printf (_("unspecified long double\n"));
16227 break;
16228 case 4:
16229 printf (_("128-bit IBM long double\n"));
16230 break;
16231 case 8:
16232 printf (_("64-bit long double\n"));
16233 break;
16234 case 12:
16235 printf (_("128-bit IEEE long double\n"));
34c8bcba
JM
16236 break;
16237 }
16238 return p;
005d79fd 16239 }
34c8bcba 16240
c6e65352
DJ
16241 if (tag == Tag_GNU_Power_ABI_Vector)
16242 {
c6e65352 16243 printf (" Tag_GNU_Power_ABI_Vector: ");
cd30bcef 16244 if (p == end)
005d79fd
AM
16245 {
16246 printf (_("<corrupt>\n"));
16247 return p;
16248 }
cd30bcef 16249 READ_ULEB (val, p, end);
005d79fd
AM
16250
16251 if (val > 3)
16252 printf ("(%#x), ", val);
16253
16254 switch (val & 3)
c6e65352
DJ
16255 {
16256 case 0:
005d79fd 16257 printf (_("unspecified\n"));
c6e65352
DJ
16258 break;
16259 case 1:
005d79fd 16260 printf (_("generic\n"));
c6e65352
DJ
16261 break;
16262 case 2:
16263 printf ("AltiVec\n");
16264 break;
16265 case 3:
16266 printf ("SPE\n");
16267 break;
c6e65352
DJ
16268 }
16269 return p;
005d79fd 16270 }
c6e65352 16271
f82e0623
NF
16272 if (tag == Tag_GNU_Power_ABI_Struct_Return)
16273 {
005d79fd 16274 printf (" Tag_GNU_Power_ABI_Struct_Return: ");
cd30bcef 16275 if (p == end)
f6f0e17b 16276 {
005d79fd 16277 printf (_("<corrupt>\n"));
f6f0e17b
NC
16278 return p;
16279 }
cd30bcef 16280 READ_ULEB (val, p, end);
0b4362b0 16281
005d79fd
AM
16282 if (val > 2)
16283 printf ("(%#x), ", val);
16284
16285 switch (val & 3)
16286 {
16287 case 0:
16288 printf (_("unspecified\n"));
16289 break;
16290 case 1:
16291 printf ("r3/r4\n");
16292 break;
16293 case 2:
16294 printf (_("memory\n"));
16295 break;
16296 case 3:
16297 printf ("???\n");
16298 break;
16299 }
f82e0623
NF
16300 return p;
16301 }
16302
f6f0e17b 16303 return display_tag_value (tag & 1, p, end);
34c8bcba
JM
16304}
16305
643f7afb
AK
16306static unsigned char *
16307display_s390_gnu_attribute (unsigned char * p,
60abdbed 16308 unsigned int tag,
643f7afb
AK
16309 const unsigned char * const end)
16310{
cd30bcef 16311 unsigned int val;
643f7afb
AK
16312
16313 if (tag == Tag_GNU_S390_ABI_Vector)
16314 {
643f7afb 16315 printf (" Tag_GNU_S390_ABI_Vector: ");
cd30bcef 16316 READ_ULEB (val, p, end);
643f7afb
AK
16317
16318 switch (val)
16319 {
16320 case 0:
16321 printf (_("any\n"));
16322 break;
16323 case 1:
16324 printf (_("software\n"));
16325 break;
16326 case 2:
16327 printf (_("hardware\n"));
16328 break;
16329 default:
16330 printf ("??? (%d)\n", val);
16331 break;
16332 }
16333 return p;
16334 }
16335
16336 return display_tag_value (tag & 1, p, end);
16337}
16338
9e8c70f9 16339static void
60abdbed 16340display_sparc_hwcaps (unsigned int mask)
9e8c70f9
DM
16341{
16342 if (mask)
16343 {
015dc7e1 16344 bool first = true;
071436c6 16345
9e8c70f9 16346 if (mask & ELF_SPARC_HWCAP_MUL32)
015dc7e1 16347 fputs ("mul32", stdout), first = false;
9e8c70f9 16348 if (mask & ELF_SPARC_HWCAP_DIV32)
015dc7e1 16349 printf ("%sdiv32", first ? "" : "|"), first = false;
9e8c70f9 16350 if (mask & ELF_SPARC_HWCAP_FSMULD)
015dc7e1 16351 printf ("%sfsmuld", first ? "" : "|"), first = false;
9e8c70f9 16352 if (mask & ELF_SPARC_HWCAP_V8PLUS)
015dc7e1 16353 printf ("%sv8plus", first ? "" : "|"), first = false;
9e8c70f9 16354 if (mask & ELF_SPARC_HWCAP_POPC)
015dc7e1 16355 printf ("%spopc", first ? "" : "|"), first = false;
9e8c70f9 16356 if (mask & ELF_SPARC_HWCAP_VIS)
015dc7e1 16357 printf ("%svis", first ? "" : "|"), first = false;
9e8c70f9 16358 if (mask & ELF_SPARC_HWCAP_VIS2)
015dc7e1 16359 printf ("%svis2", first ? "" : "|"), first = false;
9e8c70f9 16360 if (mask & ELF_SPARC_HWCAP_ASI_BLK_INIT)
015dc7e1 16361 printf ("%sASIBlkInit", first ? "" : "|"), first = false;
9e8c70f9 16362 if (mask & ELF_SPARC_HWCAP_FMAF)
015dc7e1 16363 printf ("%sfmaf", first ? "" : "|"), first = false;
9e8c70f9 16364 if (mask & ELF_SPARC_HWCAP_VIS3)
015dc7e1 16365 printf ("%svis3", first ? "" : "|"), first = false;
9e8c70f9 16366 if (mask & ELF_SPARC_HWCAP_HPC)
015dc7e1 16367 printf ("%shpc", first ? "" : "|"), first = false;
9e8c70f9 16368 if (mask & ELF_SPARC_HWCAP_RANDOM)
015dc7e1 16369 printf ("%srandom", first ? "" : "|"), first = false;
9e8c70f9 16370 if (mask & ELF_SPARC_HWCAP_TRANS)
015dc7e1 16371 printf ("%strans", first ? "" : "|"), first = false;
9e8c70f9 16372 if (mask & ELF_SPARC_HWCAP_FJFMAU)
015dc7e1 16373 printf ("%sfjfmau", first ? "" : "|"), first = false;
9e8c70f9 16374 if (mask & ELF_SPARC_HWCAP_IMA)
015dc7e1 16375 printf ("%sima", first ? "" : "|"), first = false;
9e8c70f9 16376 if (mask & ELF_SPARC_HWCAP_ASI_CACHE_SPARING)
015dc7e1 16377 printf ("%scspare", first ? "" : "|"), first = false;
9e8c70f9
DM
16378 }
16379 else
071436c6
NC
16380 fputc ('0', stdout);
16381 fputc ('\n', stdout);
9e8c70f9
DM
16382}
16383
3d68f91c 16384static void
60abdbed 16385display_sparc_hwcaps2 (unsigned int mask)
3d68f91c
JM
16386{
16387 if (mask)
16388 {
015dc7e1 16389 bool first = true;
071436c6 16390
3d68f91c 16391 if (mask & ELF_SPARC_HWCAP2_FJATHPLUS)
015dc7e1 16392 fputs ("fjathplus", stdout), first = false;
3d68f91c 16393 if (mask & ELF_SPARC_HWCAP2_VIS3B)
015dc7e1 16394 printf ("%svis3b", first ? "" : "|"), first = false;
3d68f91c 16395 if (mask & ELF_SPARC_HWCAP2_ADP)
015dc7e1 16396 printf ("%sadp", first ? "" : "|"), first = false;
3d68f91c 16397 if (mask & ELF_SPARC_HWCAP2_SPARC5)
015dc7e1 16398 printf ("%ssparc5", first ? "" : "|"), first = false;
3d68f91c 16399 if (mask & ELF_SPARC_HWCAP2_MWAIT)
015dc7e1 16400 printf ("%smwait", first ? "" : "|"), first = false;
3d68f91c 16401 if (mask & ELF_SPARC_HWCAP2_XMPMUL)
015dc7e1 16402 printf ("%sxmpmul", first ? "" : "|"), first = false;
3d68f91c 16403 if (mask & ELF_SPARC_HWCAP2_XMONT)
015dc7e1 16404 printf ("%sxmont2", first ? "" : "|"), first = false;
3d68f91c 16405 if (mask & ELF_SPARC_HWCAP2_NSEC)
015dc7e1 16406 printf ("%snsec", first ? "" : "|"), first = false;
3d68f91c 16407 if (mask & ELF_SPARC_HWCAP2_FJATHHPC)
015dc7e1 16408 printf ("%sfjathhpc", first ? "" : "|"), first = false;
3d68f91c 16409 if (mask & ELF_SPARC_HWCAP2_FJDES)
015dc7e1 16410 printf ("%sfjdes", first ? "" : "|"), first = false;
3d68f91c 16411 if (mask & ELF_SPARC_HWCAP2_FJAES)
015dc7e1 16412 printf ("%sfjaes", first ? "" : "|"), first = false;
3d68f91c
JM
16413 }
16414 else
071436c6
NC
16415 fputc ('0', stdout);
16416 fputc ('\n', stdout);
3d68f91c
JM
16417}
16418
9e8c70f9 16419static unsigned char *
f6f0e17b 16420display_sparc_gnu_attribute (unsigned char * p,
60abdbed 16421 unsigned int tag,
f6f0e17b 16422 const unsigned char * const end)
9e8c70f9 16423{
cd30bcef 16424 unsigned int val;
3d68f91c 16425
9e8c70f9
DM
16426 if (tag == Tag_GNU_Sparc_HWCAPS)
16427 {
cd30bcef 16428 READ_ULEB (val, p, end);
9e8c70f9 16429 printf (" Tag_GNU_Sparc_HWCAPS: ");
9e8c70f9
DM
16430 display_sparc_hwcaps (val);
16431 return p;
3d68f91c
JM
16432 }
16433 if (tag == Tag_GNU_Sparc_HWCAPS2)
16434 {
cd30bcef 16435 READ_ULEB (val, p, end);
3d68f91c
JM
16436 printf (" Tag_GNU_Sparc_HWCAPS2: ");
16437 display_sparc_hwcaps2 (val);
16438 return p;
16439 }
9e8c70f9 16440
f6f0e17b 16441 return display_tag_value (tag, p, end);
9e8c70f9
DM
16442}
16443
351cdf24 16444static void
32ec8896 16445print_mips_fp_abi_value (unsigned int val)
351cdf24
MF
16446{
16447 switch (val)
16448 {
16449 case Val_GNU_MIPS_ABI_FP_ANY:
16450 printf (_("Hard or soft float\n"));
16451 break;
16452 case Val_GNU_MIPS_ABI_FP_DOUBLE:
16453 printf (_("Hard float (double precision)\n"));
16454 break;
16455 case Val_GNU_MIPS_ABI_FP_SINGLE:
16456 printf (_("Hard float (single precision)\n"));
16457 break;
16458 case Val_GNU_MIPS_ABI_FP_SOFT:
16459 printf (_("Soft float\n"));
16460 break;
16461 case Val_GNU_MIPS_ABI_FP_OLD_64:
16462 printf (_("Hard float (MIPS32r2 64-bit FPU 12 callee-saved)\n"));
16463 break;
16464 case Val_GNU_MIPS_ABI_FP_XX:
16465 printf (_("Hard float (32-bit CPU, Any FPU)\n"));
16466 break;
16467 case Val_GNU_MIPS_ABI_FP_64:
16468 printf (_("Hard float (32-bit CPU, 64-bit FPU)\n"));
16469 break;
16470 case Val_GNU_MIPS_ABI_FP_64A:
16471 printf (_("Hard float compat (32-bit CPU, 64-bit FPU)\n"));
16472 break;
3350cc01
CM
16473 case Val_GNU_MIPS_ABI_FP_NAN2008:
16474 printf (_("NaN 2008 compatibility\n"));
16475 break;
351cdf24
MF
16476 default:
16477 printf ("??? (%d)\n", val);
16478 break;
16479 }
16480}
16481
2cf19d5c 16482static unsigned char *
f6f0e17b 16483display_mips_gnu_attribute (unsigned char * p,
60abdbed 16484 unsigned int tag,
f6f0e17b 16485 const unsigned char * const end)
2cf19d5c 16486{
2cf19d5c
JM
16487 if (tag == Tag_GNU_MIPS_ABI_FP)
16488 {
32ec8896 16489 unsigned int val;
f6f0e17b 16490
2cf19d5c 16491 printf (" Tag_GNU_MIPS_ABI_FP: ");
cd30bcef 16492 READ_ULEB (val, p, end);
351cdf24 16493 print_mips_fp_abi_value (val);
2cf19d5c
JM
16494 return p;
16495 }
16496
a9f58168
CF
16497 if (tag == Tag_GNU_MIPS_ABI_MSA)
16498 {
32ec8896 16499 unsigned int val;
a9f58168 16500
a9f58168 16501 printf (" Tag_GNU_MIPS_ABI_MSA: ");
cd30bcef 16502 READ_ULEB (val, p, end);
a9f58168
CF
16503
16504 switch (val)
16505 {
16506 case Val_GNU_MIPS_ABI_MSA_ANY:
16507 printf (_("Any MSA or not\n"));
16508 break;
16509 case Val_GNU_MIPS_ABI_MSA_128:
16510 printf (_("128-bit MSA\n"));
16511 break;
16512 default:
16513 printf ("??? (%d)\n", val);
16514 break;
16515 }
16516 return p;
16517 }
16518
f6f0e17b 16519 return display_tag_value (tag & 1, p, end);
2cf19d5c
JM
16520}
16521
59e6276b 16522static unsigned char *
f6f0e17b
NC
16523display_tic6x_attribute (unsigned char * p,
16524 const unsigned char * const end)
59e6276b 16525{
60abdbed 16526 unsigned int tag;
cd30bcef 16527 unsigned int val;
59e6276b 16528
cd30bcef 16529 READ_ULEB (tag, p, end);
59e6276b
JM
16530
16531 switch (tag)
16532 {
75fa6dc1 16533 case Tag_ISA:
75fa6dc1 16534 printf (" Tag_ISA: ");
cd30bcef 16535 READ_ULEB (val, p, end);
59e6276b
JM
16536
16537 switch (val)
16538 {
75fa6dc1 16539 case C6XABI_Tag_ISA_none:
59e6276b
JM
16540 printf (_("None\n"));
16541 break;
75fa6dc1 16542 case C6XABI_Tag_ISA_C62X:
59e6276b
JM
16543 printf ("C62x\n");
16544 break;
75fa6dc1 16545 case C6XABI_Tag_ISA_C67X:
59e6276b
JM
16546 printf ("C67x\n");
16547 break;
75fa6dc1 16548 case C6XABI_Tag_ISA_C67XP:
59e6276b
JM
16549 printf ("C67x+\n");
16550 break;
75fa6dc1 16551 case C6XABI_Tag_ISA_C64X:
59e6276b
JM
16552 printf ("C64x\n");
16553 break;
75fa6dc1 16554 case C6XABI_Tag_ISA_C64XP:
59e6276b
JM
16555 printf ("C64x+\n");
16556 break;
75fa6dc1 16557 case C6XABI_Tag_ISA_C674X:
59e6276b
JM
16558 printf ("C674x\n");
16559 break;
16560 default:
16561 printf ("??? (%d)\n", val);
16562 break;
16563 }
16564 return p;
16565
87779176 16566 case Tag_ABI_wchar_t:
87779176 16567 printf (" Tag_ABI_wchar_t: ");
cd30bcef 16568 READ_ULEB (val, p, end);
87779176
JM
16569 switch (val)
16570 {
16571 case 0:
16572 printf (_("Not used\n"));
16573 break;
16574 case 1:
16575 printf (_("2 bytes\n"));
16576 break;
16577 case 2:
16578 printf (_("4 bytes\n"));
16579 break;
16580 default:
16581 printf ("??? (%d)\n", val);
16582 break;
16583 }
16584 return p;
16585
16586 case Tag_ABI_stack_align_needed:
87779176 16587 printf (" Tag_ABI_stack_align_needed: ");
cd30bcef 16588 READ_ULEB (val, p, end);
87779176
JM
16589 switch (val)
16590 {
16591 case 0:
16592 printf (_("8-byte\n"));
16593 break;
16594 case 1:
16595 printf (_("16-byte\n"));
16596 break;
16597 default:
16598 printf ("??? (%d)\n", val);
16599 break;
16600 }
16601 return p;
16602
16603 case Tag_ABI_stack_align_preserved:
cd30bcef 16604 READ_ULEB (val, p, end);
87779176
JM
16605 printf (" Tag_ABI_stack_align_preserved: ");
16606 switch (val)
16607 {
16608 case 0:
16609 printf (_("8-byte\n"));
16610 break;
16611 case 1:
16612 printf (_("16-byte\n"));
16613 break;
16614 default:
16615 printf ("??? (%d)\n", val);
16616 break;
16617 }
16618 return p;
16619
b5593623 16620 case Tag_ABI_DSBT:
cd30bcef 16621 READ_ULEB (val, p, end);
b5593623
JM
16622 printf (" Tag_ABI_DSBT: ");
16623 switch (val)
16624 {
16625 case 0:
16626 printf (_("DSBT addressing not used\n"));
16627 break;
16628 case 1:
16629 printf (_("DSBT addressing used\n"));
16630 break;
16631 default:
16632 printf ("??? (%d)\n", val);
16633 break;
16634 }
16635 return p;
16636
87779176 16637 case Tag_ABI_PID:
cd30bcef 16638 READ_ULEB (val, p, end);
87779176
JM
16639 printf (" Tag_ABI_PID: ");
16640 switch (val)
16641 {
16642 case 0:
16643 printf (_("Data addressing position-dependent\n"));
16644 break;
16645 case 1:
16646 printf (_("Data addressing position-independent, GOT near DP\n"));
16647 break;
16648 case 2:
16649 printf (_("Data addressing position-independent, GOT far from DP\n"));
16650 break;
16651 default:
16652 printf ("??? (%d)\n", val);
16653 break;
16654 }
16655 return p;
16656
16657 case Tag_ABI_PIC:
cd30bcef 16658 READ_ULEB (val, p, end);
87779176
JM
16659 printf (" Tag_ABI_PIC: ");
16660 switch (val)
16661 {
16662 case 0:
16663 printf (_("Code addressing position-dependent\n"));
16664 break;
16665 case 1:
16666 printf (_("Code addressing position-independent\n"));
16667 break;
16668 default:
16669 printf ("??? (%d)\n", val);
16670 break;
16671 }
16672 return p;
16673
16674 case Tag_ABI_array_object_alignment:
cd30bcef 16675 READ_ULEB (val, p, end);
87779176
JM
16676 printf (" Tag_ABI_array_object_alignment: ");
16677 switch (val)
16678 {
16679 case 0:
16680 printf (_("8-byte\n"));
16681 break;
16682 case 1:
16683 printf (_("4-byte\n"));
16684 break;
16685 case 2:
16686 printf (_("16-byte\n"));
16687 break;
16688 default:
16689 printf ("??? (%d)\n", val);
16690 break;
16691 }
16692 return p;
16693
16694 case Tag_ABI_array_object_align_expected:
cd30bcef 16695 READ_ULEB (val, p, end);
87779176
JM
16696 printf (" Tag_ABI_array_object_align_expected: ");
16697 switch (val)
16698 {
16699 case 0:
16700 printf (_("8-byte\n"));
16701 break;
16702 case 1:
16703 printf (_("4-byte\n"));
16704 break;
16705 case 2:
16706 printf (_("16-byte\n"));
16707 break;
16708 default:
16709 printf ("??? (%d)\n", val);
16710 break;
16711 }
16712 return p;
16713
3cbd1c06 16714 case Tag_ABI_compatibility:
071436c6 16715 {
cd30bcef 16716 READ_ULEB (val, p, end);
071436c6 16717 printf (" Tag_ABI_compatibility: ");
071436c6 16718 printf (_("flag = %d, vendor = "), val);
4082ef84
NC
16719 if (p < end - 1)
16720 {
16721 size_t maxlen = (end - p) - 1;
16722
16723 print_symbol ((int) maxlen, (const char *) p);
16724 p += strnlen ((char *) p, maxlen) + 1;
16725 }
16726 else
16727 {
16728 printf (_("<corrupt>"));
16729 p = (unsigned char *) end;
16730 }
071436c6 16731 putchar ('\n');
071436c6
NC
16732 return p;
16733 }
87779176
JM
16734
16735 case Tag_ABI_conformance:
071436c6 16736 {
4082ef84
NC
16737 printf (" Tag_ABI_conformance: \"");
16738 if (p < end - 1)
16739 {
16740 size_t maxlen = (end - p) - 1;
071436c6 16741
4082ef84
NC
16742 print_symbol ((int) maxlen, (const char *) p);
16743 p += strnlen ((char *) p, maxlen) + 1;
16744 }
16745 else
16746 {
16747 printf (_("<corrupt>"));
16748 p = (unsigned char *) end;
16749 }
071436c6 16750 printf ("\"\n");
071436c6
NC
16751 return p;
16752 }
59e6276b
JM
16753 }
16754
f6f0e17b
NC
16755 return display_tag_value (tag, p, end);
16756}
59e6276b 16757
f6f0e17b 16758static void
60abdbed 16759display_raw_attribute (unsigned char * p, unsigned char const * const end)
f6f0e17b
NC
16760{
16761 unsigned long addr = 0;
16762 size_t bytes = end - p;
16763
feceaa59 16764 assert (end >= p);
f6f0e17b 16765 while (bytes)
87779176 16766 {
f6f0e17b
NC
16767 int j;
16768 int k;
16769 int lbytes = (bytes > 16 ? 16 : bytes);
16770
16771 printf (" 0x%8.8lx ", addr);
16772
16773 for (j = 0; j < 16; j++)
16774 {
16775 if (j < lbytes)
16776 printf ("%2.2x", p[j]);
16777 else
16778 printf (" ");
16779
16780 if ((j & 3) == 3)
16781 printf (" ");
16782 }
16783
16784 for (j = 0; j < lbytes; j++)
16785 {
16786 k = p[j];
16787 if (k >= ' ' && k < 0x7f)
16788 printf ("%c", k);
16789 else
16790 printf (".");
16791 }
16792
16793 putchar ('\n');
16794
16795 p += lbytes;
16796 bytes -= lbytes;
16797 addr += lbytes;
87779176 16798 }
59e6276b 16799
f6f0e17b 16800 putchar ('\n');
59e6276b
JM
16801}
16802
13761a11 16803static unsigned char *
b0191216 16804display_msp430_attribute (unsigned char * p,
13761a11
NC
16805 const unsigned char * const end)
16806{
60abdbed
NC
16807 unsigned int val;
16808 unsigned int tag;
13761a11 16809
cd30bcef 16810 READ_ULEB (tag, p, end);
0b4362b0 16811
13761a11
NC
16812 switch (tag)
16813 {
16814 case OFBA_MSPABI_Tag_ISA:
13761a11 16815 printf (" Tag_ISA: ");
cd30bcef 16816 READ_ULEB (val, p, end);
13761a11
NC
16817 switch (val)
16818 {
16819 case 0: printf (_("None\n")); break;
16820 case 1: printf (_("MSP430\n")); break;
16821 case 2: printf (_("MSP430X\n")); break;
16822 default: printf ("??? (%d)\n", val); break;
16823 }
16824 break;
16825
16826 case OFBA_MSPABI_Tag_Code_Model:
13761a11 16827 printf (" Tag_Code_Model: ");
cd30bcef 16828 READ_ULEB (val, p, end);
13761a11
NC
16829 switch (val)
16830 {
16831 case 0: printf (_("None\n")); break;
16832 case 1: printf (_("Small\n")); break;
16833 case 2: printf (_("Large\n")); break;
16834 default: printf ("??? (%d)\n", val); break;
16835 }
16836 break;
16837
16838 case OFBA_MSPABI_Tag_Data_Model:
13761a11 16839 printf (" Tag_Data_Model: ");
cd30bcef 16840 READ_ULEB (val, p, end);
13761a11
NC
16841 switch (val)
16842 {
16843 case 0: printf (_("None\n")); break;
16844 case 1: printf (_("Small\n")); break;
16845 case 2: printf (_("Large\n")); break;
16846 case 3: printf (_("Restricted Large\n")); break;
16847 default: printf ("??? (%d)\n", val); break;
16848 }
16849 break;
16850
16851 default:
16852 printf (_(" <unknown tag %d>: "), tag);
16853
16854 if (tag & 1)
16855 {
071436c6 16856 putchar ('"');
4082ef84
NC
16857 if (p < end - 1)
16858 {
16859 size_t maxlen = (end - p) - 1;
16860
16861 print_symbol ((int) maxlen, (const char *) p);
16862 p += strnlen ((char *) p, maxlen) + 1;
16863 }
16864 else
16865 {
16866 printf (_("<corrupt>"));
16867 p = (unsigned char *) end;
16868 }
071436c6 16869 printf ("\"\n");
13761a11
NC
16870 }
16871 else
16872 {
cd30bcef 16873 READ_ULEB (val, p, end);
13761a11
NC
16874 printf ("%d (0x%x)\n", val, val);
16875 }
16876 break;
16877 }
16878
4082ef84 16879 assert (p <= end);
13761a11
NC
16880 return p;
16881}
16882
c0ea7c52
JL
16883static unsigned char *
16884display_msp430_gnu_attribute (unsigned char * p,
16885 unsigned int tag,
16886 const unsigned char * const end)
16887{
16888 if (tag == Tag_GNU_MSP430_Data_Region)
16889 {
cd30bcef 16890 unsigned int val;
c0ea7c52 16891
c0ea7c52 16892 printf (" Tag_GNU_MSP430_Data_Region: ");
cd30bcef 16893 READ_ULEB (val, p, end);
c0ea7c52
JL
16894
16895 switch (val)
16896 {
16897 case Val_GNU_MSP430_Data_Region_Any:
16898 printf (_("Any Region\n"));
16899 break;
16900 case Val_GNU_MSP430_Data_Region_Lower:
16901 printf (_("Lower Region Only\n"));
16902 break;
16903 default:
cd30bcef 16904 printf ("??? (%u)\n", val);
c0ea7c52
JL
16905 }
16906 return p;
16907 }
16908 return display_tag_value (tag & 1, p, end);
16909}
16910
2dc8dd17
JW
16911struct riscv_attr_tag_t {
16912 const char *name;
cd30bcef 16913 unsigned int tag;
2dc8dd17
JW
16914};
16915
16916static struct riscv_attr_tag_t riscv_attr_tag[] =
16917{
16918#define T(tag) {"Tag_RISCV_" #tag, Tag_RISCV_##tag}
16919 T(arch),
16920 T(priv_spec),
16921 T(priv_spec_minor),
16922 T(priv_spec_revision),
16923 T(unaligned_access),
16924 T(stack_align),
16925#undef T
16926};
16927
16928static unsigned char *
16929display_riscv_attribute (unsigned char *p,
16930 const unsigned char * const end)
16931{
cd30bcef
AM
16932 unsigned int val;
16933 unsigned int tag;
2dc8dd17
JW
16934 struct riscv_attr_tag_t *attr = NULL;
16935 unsigned i;
16936
cd30bcef 16937 READ_ULEB (tag, p, end);
2dc8dd17
JW
16938
16939 /* Find the name of attribute. */
16940 for (i = 0; i < ARRAY_SIZE (riscv_attr_tag); i++)
16941 {
16942 if (riscv_attr_tag[i].tag == tag)
16943 {
16944 attr = &riscv_attr_tag[i];
16945 break;
16946 }
16947 }
16948
16949 if (attr)
16950 printf (" %s: ", attr->name);
16951 else
16952 return display_tag_value (tag, p, end);
16953
16954 switch (tag)
16955 {
16956 case Tag_RISCV_priv_spec:
16957 case Tag_RISCV_priv_spec_minor:
16958 case Tag_RISCV_priv_spec_revision:
cd30bcef
AM
16959 READ_ULEB (val, p, end);
16960 printf (_("%u\n"), val);
2dc8dd17
JW
16961 break;
16962 case Tag_RISCV_unaligned_access:
cd30bcef 16963 READ_ULEB (val, p, end);
2dc8dd17
JW
16964 switch (val)
16965 {
16966 case 0:
16967 printf (_("No unaligned access\n"));
16968 break;
16969 case 1:
16970 printf (_("Unaligned access\n"));
16971 break;
16972 }
16973 break;
16974 case Tag_RISCV_stack_align:
cd30bcef
AM
16975 READ_ULEB (val, p, end);
16976 printf (_("%u-bytes\n"), val);
2dc8dd17
JW
16977 break;
16978 case Tag_RISCV_arch:
16979 p = display_tag_value (-1, p, end);
16980 break;
16981 default:
16982 return display_tag_value (tag, p, end);
16983 }
16984
16985 return p;
16986}
16987
0861f561
CQ
16988static unsigned char *
16989display_csky_attribute (unsigned char * p,
16990 const unsigned char * const end)
16991{
16992 unsigned int tag;
16993 unsigned int val;
16994 READ_ULEB (tag, p, end);
16995
16996 if (tag >= Tag_CSKY_MAX)
16997 {
16998 return display_tag_value (-1, p, end);
16999 }
17000
17001 switch (tag)
17002 {
17003 case Tag_CSKY_ARCH_NAME:
17004 printf (" Tag_CSKY_ARCH_NAME:\t\t");
17005 return display_tag_value (-1, p, end);
17006 case Tag_CSKY_CPU_NAME:
17007 printf (" Tag_CSKY_CPU_NAME:\t\t");
17008 return display_tag_value (-1, p, end);
17009
17010 case Tag_CSKY_ISA_FLAGS:
17011 printf (" Tag_CSKY_ISA_FLAGS:\t\t");
17012 return display_tag_value (0, p, end);
17013 case Tag_CSKY_ISA_EXT_FLAGS:
17014 printf (" Tag_CSKY_ISA_EXT_FLAGS:\t");
17015 return display_tag_value (0, p, end);
17016
17017 case Tag_CSKY_DSP_VERSION:
17018 printf (" Tag_CSKY_DSP_VERSION:\t\t");
17019 READ_ULEB (val, p, end);
17020 if (val == VAL_CSKY_DSP_VERSION_EXTENSION)
17021 printf ("DSP Extension\n");
17022 else if (val == VAL_CSKY_DSP_VERSION_2)
17023 printf ("DSP 2.0\n");
17024 break;
17025
17026 case Tag_CSKY_VDSP_VERSION:
17027 printf (" Tag_CSKY_VDSP_VERSION:\t");
17028 READ_ULEB (val, p, end);
17029 printf ("VDSP Version %d\n", val);
17030 break;
17031
17032 case Tag_CSKY_FPU_VERSION:
17033 printf (" Tag_CSKY_FPU_VERSION:\t\t");
17034 READ_ULEB (val, p, end);
17035 if (val == VAL_CSKY_FPU_VERSION_1)
17036 printf ("ABIV1 FPU Version 1\n");
17037 else if (val == VAL_CSKY_FPU_VERSION_2)
17038 printf ("FPU Version 2\n");
17039 break;
17040
17041 case Tag_CSKY_FPU_ABI:
17042 printf (" Tag_CSKY_FPU_ABI:\t\t");
17043 READ_ULEB (val, p, end);
17044 if (val == VAL_CSKY_FPU_ABI_HARD)
17045 printf ("Hard\n");
17046 else if (val == VAL_CSKY_FPU_ABI_SOFTFP)
17047 printf ("SoftFP\n");
17048 else if (val == VAL_CSKY_FPU_ABI_SOFT)
17049 printf ("Soft\n");
17050 break;
17051 case Tag_CSKY_FPU_ROUNDING:
17052 READ_ULEB (val, p, end);
17053 if (val == 1) {
17054 printf (" Tag_CSKY_FPU_ROUNDING:\t");
17055 printf ("Needed\n");
17056 }
17057 break;
17058 case Tag_CSKY_FPU_DENORMAL:
17059 READ_ULEB (val, p, end);
17060 if (val == 1) {
17061 printf (" Tag_CSKY_FPU_DENORMAL:\t");
17062 printf ("Needed\n");
17063 }
17064 break;
17065 case Tag_CSKY_FPU_Exception:
17066 READ_ULEB (val, p, end);
17067 if (val == 1) {
17068 printf (" Tag_CSKY_FPU_Exception:\t");
17069 printf ("Needed\n");
17070 }
17071 break;
17072 case Tag_CSKY_FPU_NUMBER_MODULE:
17073 printf (" Tag_CSKY_FPU_NUMBER_MODULE:\t");
17074 return display_tag_value (-1, p, end);
17075 case Tag_CSKY_FPU_HARDFP:
17076 printf (" Tag_CSKY_FPU_HARDFP:\t\t");
17077 READ_ULEB (val, p, end);
17078 if (val & VAL_CSKY_FPU_HARDFP_HALF)
17079 printf (" Half");
17080 if (val & VAL_CSKY_FPU_HARDFP_SINGLE)
17081 printf (" Single");
17082 if (val & VAL_CSKY_FPU_HARDFP_DOUBLE)
17083 printf (" Double");
17084 printf ("\n");
17085 break;
17086 default:
17087 return display_tag_value (tag, p, end);
17088 }
17089 return p;
17090}
17091
015dc7e1 17092static bool
dda8d76d 17093process_attributes (Filedata * filedata,
60bca95a 17094 const char * public_name,
104d59d1 17095 unsigned int proc_type,
f6f0e17b 17096 unsigned char * (* display_pub_attribute) (unsigned char *, const unsigned char * const),
60abdbed 17097 unsigned char * (* display_proc_gnu_attribute) (unsigned char *, unsigned int, const unsigned char * const))
11c1ff18 17098{
2cf0635d 17099 Elf_Internal_Shdr * sect;
11c1ff18 17100 unsigned i;
015dc7e1 17101 bool res = true;
11c1ff18
PB
17102
17103 /* Find the section header so that we get the size. */
dda8d76d
NC
17104 for (i = 0, sect = filedata->section_headers;
17105 i < filedata->file_header.e_shnum;
11c1ff18
PB
17106 i++, sect++)
17107 {
071436c6
NC
17108 unsigned char * contents;
17109 unsigned char * p;
17110
104d59d1 17111 if (sect->sh_type != proc_type && sect->sh_type != SHT_GNU_ATTRIBUTES)
11c1ff18
PB
17112 continue;
17113
dda8d76d 17114 contents = (unsigned char *) get_data (NULL, filedata, sect->sh_offset, 1,
3f5e193b 17115 sect->sh_size, _("attributes"));
60bca95a 17116 if (contents == NULL)
32ec8896 17117 {
015dc7e1 17118 res = false;
32ec8896
NC
17119 continue;
17120 }
60bca95a 17121
11c1ff18 17122 p = contents;
60abdbed
NC
17123 /* The first character is the version of the attributes.
17124 Currently only version 1, (aka 'A') is recognised here. */
17125 if (*p != 'A')
32ec8896
NC
17126 {
17127 printf (_("Unknown attributes version '%c'(%d) - expecting 'A'\n"), *p, *p);
015dc7e1 17128 res = false;
32ec8896 17129 }
60abdbed 17130 else
11c1ff18 17131 {
071436c6
NC
17132 bfd_vma section_len;
17133
17134 section_len = sect->sh_size - 1;
11c1ff18 17135 p++;
60bca95a 17136
071436c6 17137 while (section_len > 0)
11c1ff18 17138 {
071436c6 17139 bfd_vma attr_len;
e9847026 17140 unsigned int namelen;
015dc7e1
AM
17141 bool public_section;
17142 bool gnu_section;
11c1ff18 17143
071436c6 17144 if (section_len <= 4)
e0a31db1
NC
17145 {
17146 error (_("Tag section ends prematurely\n"));
015dc7e1 17147 res = false;
e0a31db1
NC
17148 break;
17149 }
071436c6 17150 attr_len = byte_get (p, 4);
11c1ff18 17151 p += 4;
60bca95a 17152
071436c6 17153 if (attr_len > section_len)
11c1ff18 17154 {
071436c6
NC
17155 error (_("Bad attribute length (%u > %u)\n"),
17156 (unsigned) attr_len, (unsigned) section_len);
17157 attr_len = section_len;
015dc7e1 17158 res = false;
11c1ff18 17159 }
74e1a04b 17160 /* PR 17531: file: 001-101425-0.004 */
071436c6 17161 else if (attr_len < 5)
74e1a04b 17162 {
071436c6 17163 error (_("Attribute length of %u is too small\n"), (unsigned) attr_len);
015dc7e1 17164 res = false;
74e1a04b
NC
17165 break;
17166 }
e9847026 17167
071436c6
NC
17168 section_len -= attr_len;
17169 attr_len -= 4;
17170
17171 namelen = strnlen ((char *) p, attr_len) + 1;
17172 if (namelen == 0 || namelen >= attr_len)
e9847026
NC
17173 {
17174 error (_("Corrupt attribute section name\n"));
015dc7e1 17175 res = false;
e9847026
NC
17176 break;
17177 }
17178
071436c6
NC
17179 printf (_("Attribute Section: "));
17180 print_symbol (INT_MAX, (const char *) p);
17181 putchar ('\n');
60bca95a
NC
17182
17183 if (public_name && streq ((char *) p, public_name))
015dc7e1 17184 public_section = true;
11c1ff18 17185 else
015dc7e1 17186 public_section = false;
60bca95a
NC
17187
17188 if (streq ((char *) p, "gnu"))
015dc7e1 17189 gnu_section = true;
104d59d1 17190 else
015dc7e1 17191 gnu_section = false;
60bca95a 17192
11c1ff18 17193 p += namelen;
071436c6 17194 attr_len -= namelen;
e0a31db1 17195
071436c6 17196 while (attr_len > 0 && p < contents + sect->sh_size)
11c1ff18 17197 {
e0a31db1 17198 int tag;
cd30bcef 17199 unsigned int val;
11c1ff18 17200 bfd_vma size;
071436c6 17201 unsigned char * end;
60bca95a 17202
e0a31db1 17203 /* PR binutils/17531: Safe handling of corrupt files. */
071436c6 17204 if (attr_len < 6)
e0a31db1
NC
17205 {
17206 error (_("Unused bytes at end of section\n"));
015dc7e1 17207 res = false;
e0a31db1
NC
17208 section_len = 0;
17209 break;
17210 }
17211
17212 tag = *(p++);
11c1ff18 17213 size = byte_get (p, 4);
071436c6 17214 if (size > attr_len)
11c1ff18 17215 {
e9847026 17216 error (_("Bad subsection length (%u > %u)\n"),
071436c6 17217 (unsigned) size, (unsigned) attr_len);
015dc7e1 17218 res = false;
071436c6 17219 size = attr_len;
11c1ff18 17220 }
e0a31db1
NC
17221 /* PR binutils/17531: Safe handling of corrupt files. */
17222 if (size < 6)
17223 {
17224 error (_("Bad subsection length (%u < 6)\n"),
17225 (unsigned) size);
015dc7e1 17226 res = false;
e0a31db1
NC
17227 section_len = 0;
17228 break;
17229 }
60bca95a 17230
071436c6 17231 attr_len -= size;
11c1ff18 17232 end = p + size - 1;
071436c6 17233 assert (end <= contents + sect->sh_size);
11c1ff18 17234 p += 4;
60bca95a 17235
11c1ff18
PB
17236 switch (tag)
17237 {
17238 case 1:
2b692964 17239 printf (_("File Attributes\n"));
11c1ff18
PB
17240 break;
17241 case 2:
2b692964 17242 printf (_("Section Attributes:"));
11c1ff18
PB
17243 goto do_numlist;
17244 case 3:
2b692964 17245 printf (_("Symbol Attributes:"));
1a0670f3 17246 /* Fall through. */
11c1ff18
PB
17247 do_numlist:
17248 for (;;)
17249 {
cd30bcef 17250 READ_ULEB (val, p, end);
11c1ff18
PB
17251 if (val == 0)
17252 break;
17253 printf (" %d", val);
17254 }
17255 printf ("\n");
17256 break;
17257 default:
2b692964 17258 printf (_("Unknown tag: %d\n"), tag);
015dc7e1 17259 public_section = false;
11c1ff18
PB
17260 break;
17261 }
60bca95a 17262
071436c6 17263 if (public_section && display_pub_attribute != NULL)
11c1ff18
PB
17264 {
17265 while (p < end)
f6f0e17b 17266 p = display_pub_attribute (p, end);
60abdbed 17267 assert (p == end);
104d59d1 17268 }
071436c6 17269 else if (gnu_section && display_proc_gnu_attribute != NULL)
104d59d1
JM
17270 {
17271 while (p < end)
17272 p = display_gnu_attribute (p,
f6f0e17b
NC
17273 display_proc_gnu_attribute,
17274 end);
60abdbed 17275 assert (p == end);
11c1ff18 17276 }
071436c6 17277 else if (p < end)
11c1ff18 17278 {
071436c6 17279 printf (_(" Unknown attribute:\n"));
f6f0e17b 17280 display_raw_attribute (p, end);
11c1ff18
PB
17281 p = end;
17282 }
071436c6
NC
17283 else
17284 attr_len = 0;
11c1ff18
PB
17285 }
17286 }
17287 }
d70c5fc7 17288
60bca95a 17289 free (contents);
11c1ff18 17290 }
32ec8896
NC
17291
17292 return res;
11c1ff18
PB
17293}
17294
ccb4c951
RS
17295/* DATA points to the contents of a MIPS GOT that starts at VMA PLTGOT.
17296 Print the Address, Access and Initial fields of an entry at VMA ADDR
82b1b41b
NC
17297 and return the VMA of the next entry, or -1 if there was a problem.
17298 Does not read from DATA_END or beyond. */
ccb4c951
RS
17299
17300static bfd_vma
82b1b41b
NC
17301print_mips_got_entry (unsigned char * data, bfd_vma pltgot, bfd_vma addr,
17302 unsigned char * data_end)
ccb4c951
RS
17303{
17304 printf (" ");
17305 print_vma (addr, LONG_HEX);
17306 printf (" ");
17307 if (addr < pltgot + 0xfff0)
17308 printf ("%6d(gp)", (int) (addr - pltgot - 0x7ff0));
17309 else
17310 printf ("%10s", "");
17311 printf (" ");
17312 if (data == NULL)
2b692964 17313 printf ("%*s", is_32bit_elf ? 8 : 16, _("<unknown>"));
ccb4c951
RS
17314 else
17315 {
17316 bfd_vma entry;
82b1b41b 17317 unsigned char * from = data + addr - pltgot;
ccb4c951 17318
82b1b41b
NC
17319 if (from + (is_32bit_elf ? 4 : 8) > data_end)
17320 {
17321 warn (_("MIPS GOT entry extends beyond the end of available data\n"));
17322 printf ("%*s", is_32bit_elf ? 8 : 16, _("<corrupt>"));
17323 return (bfd_vma) -1;
17324 }
17325 else
17326 {
17327 entry = byte_get (data + addr - pltgot, is_32bit_elf ? 4 : 8);
17328 print_vma (entry, LONG_HEX);
17329 }
ccb4c951
RS
17330 }
17331 return addr + (is_32bit_elf ? 4 : 8);
17332}
17333
861fb55a
DJ
17334/* DATA points to the contents of a MIPS PLT GOT that starts at VMA
17335 PLTGOT. Print the Address and Initial fields of an entry at VMA
17336 ADDR and return the VMA of the next entry. */
17337
17338static bfd_vma
2cf0635d 17339print_mips_pltgot_entry (unsigned char * data, bfd_vma pltgot, bfd_vma addr)
861fb55a
DJ
17340{
17341 printf (" ");
17342 print_vma (addr, LONG_HEX);
17343 printf (" ");
17344 if (data == NULL)
2b692964 17345 printf ("%*s", is_32bit_elf ? 8 : 16, _("<unknown>"));
861fb55a
DJ
17346 else
17347 {
17348 bfd_vma entry;
17349
17350 entry = byte_get (data + addr - pltgot, is_32bit_elf ? 4 : 8);
17351 print_vma (entry, LONG_HEX);
17352 }
17353 return addr + (is_32bit_elf ? 4 : 8);
17354}
17355
351cdf24
MF
17356static void
17357print_mips_ases (unsigned int mask)
17358{
17359 if (mask & AFL_ASE_DSP)
17360 fputs ("\n\tDSP ASE", stdout);
17361 if (mask & AFL_ASE_DSPR2)
17362 fputs ("\n\tDSP R2 ASE", stdout);
8f4f9071
MF
17363 if (mask & AFL_ASE_DSPR3)
17364 fputs ("\n\tDSP R3 ASE", stdout);
351cdf24
MF
17365 if (mask & AFL_ASE_EVA)
17366 fputs ("\n\tEnhanced VA Scheme", stdout);
17367 if (mask & AFL_ASE_MCU)
17368 fputs ("\n\tMCU (MicroController) ASE", stdout);
17369 if (mask & AFL_ASE_MDMX)
17370 fputs ("\n\tMDMX ASE", stdout);
17371 if (mask & AFL_ASE_MIPS3D)
17372 fputs ("\n\tMIPS-3D ASE", stdout);
17373 if (mask & AFL_ASE_MT)
17374 fputs ("\n\tMT ASE", stdout);
17375 if (mask & AFL_ASE_SMARTMIPS)
17376 fputs ("\n\tSmartMIPS ASE", stdout);
17377 if (mask & AFL_ASE_VIRT)
17378 fputs ("\n\tVZ ASE", stdout);
17379 if (mask & AFL_ASE_MSA)
17380 fputs ("\n\tMSA ASE", stdout);
17381 if (mask & AFL_ASE_MIPS16)
17382 fputs ("\n\tMIPS16 ASE", stdout);
17383 if (mask & AFL_ASE_MICROMIPS)
17384 fputs ("\n\tMICROMIPS ASE", stdout);
17385 if (mask & AFL_ASE_XPA)
17386 fputs ("\n\tXPA ASE", stdout);
25499ac7
MR
17387 if (mask & AFL_ASE_MIPS16E2)
17388 fputs ("\n\tMIPS16e2 ASE", stdout);
730c3174
SE
17389 if (mask & AFL_ASE_CRC)
17390 fputs ("\n\tCRC ASE", stdout);
6f20c942
FS
17391 if (mask & AFL_ASE_GINV)
17392 fputs ("\n\tGINV ASE", stdout);
8095d2f7
CX
17393 if (mask & AFL_ASE_LOONGSON_MMI)
17394 fputs ("\n\tLoongson MMI ASE", stdout);
716c08de
CX
17395 if (mask & AFL_ASE_LOONGSON_CAM)
17396 fputs ("\n\tLoongson CAM ASE", stdout);
bdc6c06e
CX
17397 if (mask & AFL_ASE_LOONGSON_EXT)
17398 fputs ("\n\tLoongson EXT ASE", stdout);
a693765e
CX
17399 if (mask & AFL_ASE_LOONGSON_EXT2)
17400 fputs ("\n\tLoongson EXT2 ASE", stdout);
351cdf24
MF
17401 if (mask == 0)
17402 fprintf (stdout, "\n\t%s", _("None"));
00ac7aa0
MF
17403 else if ((mask & ~AFL_ASE_MASK) != 0)
17404 fprintf (stdout, "\n\t%s (%x)", _("Unknown"), mask & ~AFL_ASE_MASK);
351cdf24
MF
17405}
17406
17407static void
17408print_mips_isa_ext (unsigned int isa_ext)
17409{
17410 switch (isa_ext)
17411 {
17412 case 0:
17413 fputs (_("None"), stdout);
17414 break;
17415 case AFL_EXT_XLR:
17416 fputs ("RMI XLR", stdout);
17417 break;
2c629856
N
17418 case AFL_EXT_OCTEON3:
17419 fputs ("Cavium Networks Octeon3", stdout);
17420 break;
351cdf24
MF
17421 case AFL_EXT_OCTEON2:
17422 fputs ("Cavium Networks Octeon2", stdout);
17423 break;
17424 case AFL_EXT_OCTEONP:
17425 fputs ("Cavium Networks OcteonP", stdout);
17426 break;
351cdf24
MF
17427 case AFL_EXT_OCTEON:
17428 fputs ("Cavium Networks Octeon", stdout);
17429 break;
17430 case AFL_EXT_5900:
17431 fputs ("Toshiba R5900", stdout);
17432 break;
17433 case AFL_EXT_4650:
17434 fputs ("MIPS R4650", stdout);
17435 break;
17436 case AFL_EXT_4010:
17437 fputs ("LSI R4010", stdout);
17438 break;
17439 case AFL_EXT_4100:
17440 fputs ("NEC VR4100", stdout);
17441 break;
17442 case AFL_EXT_3900:
17443 fputs ("Toshiba R3900", stdout);
17444 break;
17445 case AFL_EXT_10000:
17446 fputs ("MIPS R10000", stdout);
17447 break;
17448 case AFL_EXT_SB1:
17449 fputs ("Broadcom SB-1", stdout);
17450 break;
17451 case AFL_EXT_4111:
17452 fputs ("NEC VR4111/VR4181", stdout);
17453 break;
17454 case AFL_EXT_4120:
17455 fputs ("NEC VR4120", stdout);
17456 break;
17457 case AFL_EXT_5400:
17458 fputs ("NEC VR5400", stdout);
17459 break;
17460 case AFL_EXT_5500:
17461 fputs ("NEC VR5500", stdout);
17462 break;
17463 case AFL_EXT_LOONGSON_2E:
17464 fputs ("ST Microelectronics Loongson 2E", stdout);
17465 break;
17466 case AFL_EXT_LOONGSON_2F:
17467 fputs ("ST Microelectronics Loongson 2F", stdout);
17468 break;
38bf472a
MR
17469 case AFL_EXT_INTERAPTIV_MR2:
17470 fputs ("Imagination interAptiv MR2", stdout);
17471 break;
351cdf24 17472 default:
00ac7aa0 17473 fprintf (stdout, "%s (%d)", _("Unknown"), isa_ext);
351cdf24
MF
17474 }
17475}
17476
32ec8896 17477static signed int
351cdf24
MF
17478get_mips_reg_size (int reg_size)
17479{
17480 return (reg_size == AFL_REG_NONE) ? 0
17481 : (reg_size == AFL_REG_32) ? 32
17482 : (reg_size == AFL_REG_64) ? 64
17483 : (reg_size == AFL_REG_128) ? 128
17484 : -1;
17485}
17486
015dc7e1 17487static bool
dda8d76d 17488process_mips_specific (Filedata * filedata)
5b18a4bc 17489{
2cf0635d 17490 Elf_Internal_Dyn * entry;
351cdf24 17491 Elf_Internal_Shdr *sect = NULL;
19e6b90e
L
17492 size_t liblist_offset = 0;
17493 size_t liblistno = 0;
17494 size_t conflictsno = 0;
17495 size_t options_offset = 0;
17496 size_t conflicts_offset = 0;
861fb55a
DJ
17497 size_t pltrelsz = 0;
17498 size_t pltrel = 0;
ccb4c951 17499 bfd_vma pltgot = 0;
861fb55a
DJ
17500 bfd_vma mips_pltgot = 0;
17501 bfd_vma jmprel = 0;
ccb4c951
RS
17502 bfd_vma local_gotno = 0;
17503 bfd_vma gotsym = 0;
17504 bfd_vma symtabno = 0;
015dc7e1 17505 bool res = true;
103f02d3 17506
dda8d76d 17507 if (! process_attributes (filedata, NULL, SHT_GNU_ATTRIBUTES, NULL,
32ec8896 17508 display_mips_gnu_attribute))
015dc7e1 17509 res = false;
2cf19d5c 17510
dda8d76d 17511 sect = find_section (filedata, ".MIPS.abiflags");
351cdf24
MF
17512
17513 if (sect != NULL)
17514 {
17515 Elf_External_ABIFlags_v0 *abiflags_ext;
17516 Elf_Internal_ABIFlags_v0 abiflags_in;
17517
17518 if (sizeof (Elf_External_ABIFlags_v0) != sect->sh_size)
32ec8896
NC
17519 {
17520 error (_("Corrupt MIPS ABI Flags section.\n"));
015dc7e1 17521 res = false;
32ec8896 17522 }
351cdf24
MF
17523 else
17524 {
dda8d76d 17525 abiflags_ext = get_data (NULL, filedata, sect->sh_offset, 1,
351cdf24
MF
17526 sect->sh_size, _("MIPS ABI Flags section"));
17527 if (abiflags_ext)
17528 {
17529 abiflags_in.version = BYTE_GET (abiflags_ext->version);
17530 abiflags_in.isa_level = BYTE_GET (abiflags_ext->isa_level);
17531 abiflags_in.isa_rev = BYTE_GET (abiflags_ext->isa_rev);
17532 abiflags_in.gpr_size = BYTE_GET (abiflags_ext->gpr_size);
17533 abiflags_in.cpr1_size = BYTE_GET (abiflags_ext->cpr1_size);
17534 abiflags_in.cpr2_size = BYTE_GET (abiflags_ext->cpr2_size);
17535 abiflags_in.fp_abi = BYTE_GET (abiflags_ext->fp_abi);
17536 abiflags_in.isa_ext = BYTE_GET (abiflags_ext->isa_ext);
17537 abiflags_in.ases = BYTE_GET (abiflags_ext->ases);
17538 abiflags_in.flags1 = BYTE_GET (abiflags_ext->flags1);
17539 abiflags_in.flags2 = BYTE_GET (abiflags_ext->flags2);
17540
17541 printf ("\nMIPS ABI Flags Version: %d\n", abiflags_in.version);
17542 printf ("\nISA: MIPS%d", abiflags_in.isa_level);
17543 if (abiflags_in.isa_rev > 1)
17544 printf ("r%d", abiflags_in.isa_rev);
17545 printf ("\nGPR size: %d",
17546 get_mips_reg_size (abiflags_in.gpr_size));
17547 printf ("\nCPR1 size: %d",
17548 get_mips_reg_size (abiflags_in.cpr1_size));
17549 printf ("\nCPR2 size: %d",
17550 get_mips_reg_size (abiflags_in.cpr2_size));
17551 fputs ("\nFP ABI: ", stdout);
17552 print_mips_fp_abi_value (abiflags_in.fp_abi);
17553 fputs ("ISA Extension: ", stdout);
17554 print_mips_isa_ext (abiflags_in.isa_ext);
17555 fputs ("\nASEs:", stdout);
17556 print_mips_ases (abiflags_in.ases);
17557 printf ("\nFLAGS 1: %8.8lx", abiflags_in.flags1);
17558 printf ("\nFLAGS 2: %8.8lx", abiflags_in.flags2);
17559 fputc ('\n', stdout);
17560 free (abiflags_ext);
17561 }
17562 }
17563 }
17564
19e6b90e 17565 /* We have a lot of special sections. Thanks SGI! */
978c4450 17566 if (filedata->dynamic_section == NULL)
bbdd9a68
MR
17567 {
17568 /* No dynamic information available. See if there is static GOT. */
dda8d76d 17569 sect = find_section (filedata, ".got");
bbdd9a68
MR
17570 if (sect != NULL)
17571 {
17572 unsigned char *data_end;
17573 unsigned char *data;
17574 bfd_vma ent, end;
17575 int addr_size;
17576
17577 pltgot = sect->sh_addr;
17578
17579 ent = pltgot;
17580 addr_size = (is_32bit_elf ? 4 : 8);
17581 end = pltgot + sect->sh_size;
17582
dda8d76d 17583 data = (unsigned char *) get_data (NULL, filedata, sect->sh_offset,
bbdd9a68
MR
17584 end - pltgot, 1,
17585 _("Global Offset Table data"));
17586 /* PR 12855: Null data is handled gracefully throughout. */
17587 data_end = data + (end - pltgot);
17588
17589 printf (_("\nStatic GOT:\n"));
17590 printf (_(" Canonical gp value: "));
17591 print_vma (ent + 0x7ff0, LONG_HEX);
17592 printf ("\n\n");
17593
17594 /* In a dynamic binary GOT[0] is reserved for the dynamic
17595 loader to store the lazy resolver pointer, however in
17596 a static binary it may well have been omitted and GOT
17597 reduced to a table of addresses.
17598 PR 21344: Check for the entry being fully available
17599 before fetching it. */
17600 if (data
17601 && data + ent - pltgot + addr_size <= data_end
17602 && byte_get (data + ent - pltgot, addr_size) == 0)
17603 {
17604 printf (_(" Reserved entries:\n"));
17605 printf (_(" %*s %10s %*s\n"),
17606 addr_size * 2, _("Address"), _("Access"),
17607 addr_size * 2, _("Value"));
17608 ent = print_mips_got_entry (data, pltgot, ent, data_end);
17609 printf ("\n");
17610 if (ent == (bfd_vma) -1)
17611 goto sgot_print_fail;
17612
17613 /* Check for the MSB of GOT[1] being set, identifying a
17614 GNU object. This entry will be used by some runtime
17615 loaders, to store the module pointer. Otherwise this
17616 is an ordinary local entry.
17617 PR 21344: Check for the entry being fully available
17618 before fetching it. */
17619 if (data
17620 && data + ent - pltgot + addr_size <= data_end
17621 && (byte_get (data + ent - pltgot, addr_size)
17622 >> (addr_size * 8 - 1)) != 0)
17623 {
17624 ent = print_mips_got_entry (data, pltgot, ent, data_end);
17625 printf ("\n");
17626 if (ent == (bfd_vma) -1)
17627 goto sgot_print_fail;
17628 }
17629 printf ("\n");
17630 }
17631
f17e9d8a 17632 if (data != NULL && ent < end)
bbdd9a68
MR
17633 {
17634 printf (_(" Local entries:\n"));
17635 printf (" %*s %10s %*s\n",
17636 addr_size * 2, _("Address"), _("Access"),
17637 addr_size * 2, _("Value"));
17638 while (ent < end)
17639 {
17640 ent = print_mips_got_entry (data, pltgot, ent, data_end);
17641 printf ("\n");
17642 if (ent == (bfd_vma) -1)
17643 goto sgot_print_fail;
17644 }
17645 printf ("\n");
17646 }
17647
17648 sgot_print_fail:
9db70fc3 17649 free (data);
bbdd9a68
MR
17650 }
17651 return res;
17652 }
252b5132 17653
978c4450 17654 for (entry = filedata->dynamic_section;
071436c6 17655 /* PR 17531 file: 012-50589-0.004. */
978c4450
AM
17656 (entry < filedata->dynamic_section + filedata->dynamic_nent
17657 && entry->d_tag != DT_NULL);
071436c6 17658 ++entry)
252b5132
RH
17659 switch (entry->d_tag)
17660 {
17661 case DT_MIPS_LIBLIST:
d93f0186 17662 liblist_offset
dda8d76d 17663 = offset_from_vma (filedata, entry->d_un.d_val,
d93f0186 17664 liblistno * sizeof (Elf32_External_Lib));
252b5132
RH
17665 break;
17666 case DT_MIPS_LIBLISTNO:
17667 liblistno = entry->d_un.d_val;
17668 break;
17669 case DT_MIPS_OPTIONS:
dda8d76d 17670 options_offset = offset_from_vma (filedata, entry->d_un.d_val, 0);
252b5132
RH
17671 break;
17672 case DT_MIPS_CONFLICT:
d93f0186 17673 conflicts_offset
dda8d76d 17674 = offset_from_vma (filedata, entry->d_un.d_val,
d93f0186 17675 conflictsno * sizeof (Elf32_External_Conflict));
252b5132
RH
17676 break;
17677 case DT_MIPS_CONFLICTNO:
17678 conflictsno = entry->d_un.d_val;
17679 break;
ccb4c951 17680 case DT_PLTGOT:
861fb55a
DJ
17681 pltgot = entry->d_un.d_ptr;
17682 break;
ccb4c951
RS
17683 case DT_MIPS_LOCAL_GOTNO:
17684 local_gotno = entry->d_un.d_val;
17685 break;
17686 case DT_MIPS_GOTSYM:
17687 gotsym = entry->d_un.d_val;
17688 break;
17689 case DT_MIPS_SYMTABNO:
17690 symtabno = entry->d_un.d_val;
17691 break;
861fb55a
DJ
17692 case DT_MIPS_PLTGOT:
17693 mips_pltgot = entry->d_un.d_ptr;
17694 break;
17695 case DT_PLTREL:
17696 pltrel = entry->d_un.d_val;
17697 break;
17698 case DT_PLTRELSZ:
17699 pltrelsz = entry->d_un.d_val;
17700 break;
17701 case DT_JMPREL:
17702 jmprel = entry->d_un.d_ptr;
17703 break;
252b5132
RH
17704 default:
17705 break;
17706 }
17707
17708 if (liblist_offset != 0 && liblistno != 0 && do_dynamic)
17709 {
2cf0635d 17710 Elf32_External_Lib * elib;
252b5132
RH
17711 size_t cnt;
17712
dda8d76d 17713 elib = (Elf32_External_Lib *) get_data (NULL, filedata, liblist_offset,
95099889
AM
17714 sizeof (Elf32_External_Lib),
17715 liblistno,
17716 _("liblist section data"));
a6e9f9df 17717 if (elib)
252b5132 17718 {
d3a49aa8
AM
17719 printf (ngettext ("\nSection '.liblist' contains %lu entry:\n",
17720 "\nSection '.liblist' contains %lu entries:\n",
17721 (unsigned long) liblistno),
a6e9f9df 17722 (unsigned long) liblistno);
2b692964 17723 fputs (_(" Library Time Stamp Checksum Version Flags\n"),
a6e9f9df
AM
17724 stdout);
17725
17726 for (cnt = 0; cnt < liblistno; ++cnt)
252b5132 17727 {
a6e9f9df 17728 Elf32_Lib liblist;
91d6fa6a 17729 time_t atime;
d5b07ef4 17730 char timebuf[128];
2cf0635d 17731 struct tm * tmp;
a6e9f9df
AM
17732
17733 liblist.l_name = BYTE_GET (elib[cnt].l_name);
91d6fa6a 17734 atime = BYTE_GET (elib[cnt].l_time_stamp);
a6e9f9df
AM
17735 liblist.l_checksum = BYTE_GET (elib[cnt].l_checksum);
17736 liblist.l_version = BYTE_GET (elib[cnt].l_version);
17737 liblist.l_flags = BYTE_GET (elib[cnt].l_flags);
17738
91d6fa6a 17739 tmp = gmtime (&atime);
e9e44622
JJ
17740 snprintf (timebuf, sizeof (timebuf),
17741 "%04u-%02u-%02uT%02u:%02u:%02u",
17742 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
17743 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
a6e9f9df 17744
31104126 17745 printf ("%3lu: ", (unsigned long) cnt);
978c4450
AM
17746 if (VALID_DYNAMIC_NAME (filedata, liblist.l_name))
17747 print_symbol (20, GET_DYNAMIC_NAME (filedata, liblist.l_name));
d79b3d50 17748 else
2b692964 17749 printf (_("<corrupt: %9ld>"), liblist.l_name);
31104126
NC
17750 printf (" %s %#10lx %-7ld", timebuf, liblist.l_checksum,
17751 liblist.l_version);
a6e9f9df
AM
17752
17753 if (liblist.l_flags == 0)
2b692964 17754 puts (_(" NONE"));
a6e9f9df
AM
17755 else
17756 {
17757 static const struct
252b5132 17758 {
2cf0635d 17759 const char * name;
a6e9f9df 17760 int bit;
252b5132 17761 }
a6e9f9df
AM
17762 l_flags_vals[] =
17763 {
17764 { " EXACT_MATCH", LL_EXACT_MATCH },
17765 { " IGNORE_INT_VER", LL_IGNORE_INT_VER },
17766 { " REQUIRE_MINOR", LL_REQUIRE_MINOR },
17767 { " EXPORTS", LL_EXPORTS },
17768 { " DELAY_LOAD", LL_DELAY_LOAD },
17769 { " DELTA", LL_DELTA }
17770 };
17771 int flags = liblist.l_flags;
17772 size_t fcnt;
17773
60bca95a 17774 for (fcnt = 0; fcnt < ARRAY_SIZE (l_flags_vals); ++fcnt)
a6e9f9df
AM
17775 if ((flags & l_flags_vals[fcnt].bit) != 0)
17776 {
17777 fputs (l_flags_vals[fcnt].name, stdout);
17778 flags ^= l_flags_vals[fcnt].bit;
17779 }
17780 if (flags != 0)
17781 printf (" %#x", (unsigned int) flags);
252b5132 17782
a6e9f9df
AM
17783 puts ("");
17784 }
252b5132 17785 }
252b5132 17786
a6e9f9df
AM
17787 free (elib);
17788 }
32ec8896 17789 else
015dc7e1 17790 res = false;
252b5132
RH
17791 }
17792
17793 if (options_offset != 0)
17794 {
2cf0635d 17795 Elf_External_Options * eopt;
252b5132
RH
17796 size_t offset;
17797 int cnt;
dda8d76d 17798 sect = filedata->section_headers;
252b5132
RH
17799
17800 /* Find the section header so that we get the size. */
dda8d76d 17801 sect = find_section_by_type (filedata, SHT_MIPS_OPTIONS);
948f632f 17802 /* PR 17533 file: 012-277276-0.004. */
071436c6
NC
17803 if (sect == NULL)
17804 {
17805 error (_("No MIPS_OPTIONS header found\n"));
015dc7e1 17806 return false;
071436c6 17807 }
7fc0c668
NC
17808 /* PR 24243 */
17809 if (sect->sh_size < sizeof (* eopt))
17810 {
17811 error (_("The MIPS options section is too small.\n"));
015dc7e1 17812 return false;
7fc0c668 17813 }
252b5132 17814
dda8d76d 17815 eopt = (Elf_External_Options *) get_data (NULL, filedata, options_offset, 1,
3f5e193b 17816 sect->sh_size, _("options"));
a6e9f9df 17817 if (eopt)
252b5132 17818 {
fd17d1e6 17819 Elf_Internal_Options option;
76da6bbe 17820
a6e9f9df 17821 offset = cnt = 0;
82b1b41b 17822 while (offset <= sect->sh_size - sizeof (* eopt))
a6e9f9df 17823 {
2cf0635d 17824 Elf_External_Options * eoption;
fd17d1e6 17825 unsigned int optsize;
252b5132 17826
a6e9f9df 17827 eoption = (Elf_External_Options *) ((char *) eopt + offset);
252b5132 17828
fd17d1e6 17829 optsize = BYTE_GET (eoption->size);
76da6bbe 17830
82b1b41b 17831 /* PR 17531: file: ffa0fa3b. */
fd17d1e6
AM
17832 if (optsize < sizeof (* eopt)
17833 || optsize > sect->sh_size - offset)
82b1b41b 17834 {
645f43a8 17835 error (_("Invalid size (%u) for MIPS option\n"),
fd17d1e6 17836 optsize);
645f43a8 17837 free (eopt);
015dc7e1 17838 return false;
82b1b41b 17839 }
fd17d1e6 17840 offset += optsize;
a6e9f9df
AM
17841 ++cnt;
17842 }
252b5132 17843
d3a49aa8
AM
17844 printf (ngettext ("\nSection '%s' contains %d entry:\n",
17845 "\nSection '%s' contains %d entries:\n",
17846 cnt),
dda8d76d 17847 printable_section_name (filedata, sect), cnt);
76da6bbe 17848
82b1b41b 17849 offset = 0;
a6e9f9df 17850 while (cnt-- > 0)
252b5132 17851 {
a6e9f9df 17852 size_t len;
fd17d1e6
AM
17853 Elf_External_Options * eoption;
17854
17855 eoption = (Elf_External_Options *) ((char *) eopt + offset);
17856
17857 option.kind = BYTE_GET (eoption->kind);
17858 option.size = BYTE_GET (eoption->size);
17859 option.section = BYTE_GET (eoption->section);
17860 option.info = BYTE_GET (eoption->info);
a6e9f9df 17861
fd17d1e6 17862 switch (option.kind)
252b5132 17863 {
a6e9f9df
AM
17864 case ODK_NULL:
17865 /* This shouldn't happen. */
d0c4e780 17866 printf (" NULL %" PRId16 " %" PRIx32,
fd17d1e6 17867 option.section, option.info);
a6e9f9df 17868 break;
2e6be59c 17869
a6e9f9df
AM
17870 case ODK_REGINFO:
17871 printf (" REGINFO ");
dda8d76d 17872 if (filedata->file_header.e_machine == EM_MIPS)
a6e9f9df 17873 {
2cf0635d 17874 Elf32_External_RegInfo * ereg;
b34976b6 17875 Elf32_RegInfo reginfo;
a6e9f9df 17876
2e6be59c 17877 /* 32bit form. */
fd17d1e6
AM
17878 if (option.size < (sizeof (Elf_External_Options)
17879 + sizeof (Elf32_External_RegInfo)))
2e6be59c
NC
17880 {
17881 printf (_("<corrupt>\n"));
17882 error (_("Truncated MIPS REGINFO option\n"));
17883 cnt = 0;
17884 break;
17885 }
17886
fd17d1e6 17887 ereg = (Elf32_External_RegInfo *) (eoption + 1);
2e6be59c 17888
a6e9f9df
AM
17889 reginfo.ri_gprmask = BYTE_GET (ereg->ri_gprmask);
17890 reginfo.ri_cprmask[0] = BYTE_GET (ereg->ri_cprmask[0]);
17891 reginfo.ri_cprmask[1] = BYTE_GET (ereg->ri_cprmask[1]);
17892 reginfo.ri_cprmask[2] = BYTE_GET (ereg->ri_cprmask[2]);
17893 reginfo.ri_cprmask[3] = BYTE_GET (ereg->ri_cprmask[3]);
17894 reginfo.ri_gp_value = BYTE_GET (ereg->ri_gp_value);
17895
d0c4e780
AM
17896 printf ("GPR %08" PRIx32 " GP 0x%" PRIx32 "\n",
17897 reginfo.ri_gprmask, reginfo.ri_gp_value);
17898 printf (" "
17899 " CPR0 %08" PRIx32 " CPR1 %08" PRIx32
17900 " CPR2 %08" PRIx32 " CPR3 %08" PRIx32 "\n",
a6e9f9df
AM
17901 reginfo.ri_cprmask[0], reginfo.ri_cprmask[1],
17902 reginfo.ri_cprmask[2], reginfo.ri_cprmask[3]);
17903 }
17904 else
17905 {
17906 /* 64 bit form. */
2cf0635d 17907 Elf64_External_RegInfo * ereg;
a6e9f9df
AM
17908 Elf64_Internal_RegInfo reginfo;
17909
fd17d1e6
AM
17910 if (option.size < (sizeof (Elf_External_Options)
17911 + sizeof (Elf64_External_RegInfo)))
2e6be59c
NC
17912 {
17913 printf (_("<corrupt>\n"));
17914 error (_("Truncated MIPS REGINFO option\n"));
17915 cnt = 0;
17916 break;
17917 }
17918
fd17d1e6 17919 ereg = (Elf64_External_RegInfo *) (eoption + 1);
a6e9f9df
AM
17920 reginfo.ri_gprmask = BYTE_GET (ereg->ri_gprmask);
17921 reginfo.ri_cprmask[0] = BYTE_GET (ereg->ri_cprmask[0]);
17922 reginfo.ri_cprmask[1] = BYTE_GET (ereg->ri_cprmask[1]);
17923 reginfo.ri_cprmask[2] = BYTE_GET (ereg->ri_cprmask[2]);
17924 reginfo.ri_cprmask[3] = BYTE_GET (ereg->ri_cprmask[3]);
66543521 17925 reginfo.ri_gp_value = BYTE_GET (ereg->ri_gp_value);
a6e9f9df 17926
d0c4e780
AM
17927 printf ("GPR %08" PRIx32 " GP 0x%" PRIx64 "\n",
17928 reginfo.ri_gprmask, reginfo.ri_gp_value);
17929 printf (" "
17930 " CPR0 %08" PRIx32 " CPR1 %08" PRIx32
17931 " CPR2 %08" PRIx32 " CPR3 %08" PRIx32 "\n",
a6e9f9df
AM
17932 reginfo.ri_cprmask[0], reginfo.ri_cprmask[1],
17933 reginfo.ri_cprmask[2], reginfo.ri_cprmask[3]);
17934 }
fd17d1e6 17935 offset += option.size;
a6e9f9df 17936 continue;
2e6be59c 17937
a6e9f9df
AM
17938 case ODK_EXCEPTIONS:
17939 fputs (" EXCEPTIONS fpe_min(", stdout);
fd17d1e6 17940 process_mips_fpe_exception (option.info & OEX_FPU_MIN);
a6e9f9df 17941 fputs (") fpe_max(", stdout);
fd17d1e6 17942 process_mips_fpe_exception ((option.info & OEX_FPU_MAX) >> 8);
a6e9f9df
AM
17943 fputs (")", stdout);
17944
fd17d1e6 17945 if (option.info & OEX_PAGE0)
a6e9f9df 17946 fputs (" PAGE0", stdout);
fd17d1e6 17947 if (option.info & OEX_SMM)
a6e9f9df 17948 fputs (" SMM", stdout);
fd17d1e6 17949 if (option.info & OEX_FPDBUG)
a6e9f9df 17950 fputs (" FPDBUG", stdout);
fd17d1e6 17951 if (option.info & OEX_DISMISS)
a6e9f9df
AM
17952 fputs (" DISMISS", stdout);
17953 break;
2e6be59c 17954
a6e9f9df
AM
17955 case ODK_PAD:
17956 fputs (" PAD ", stdout);
fd17d1e6 17957 if (option.info & OPAD_PREFIX)
a6e9f9df 17958 fputs (" PREFIX", stdout);
fd17d1e6 17959 if (option.info & OPAD_POSTFIX)
a6e9f9df 17960 fputs (" POSTFIX", stdout);
fd17d1e6 17961 if (option.info & OPAD_SYMBOL)
a6e9f9df
AM
17962 fputs (" SYMBOL", stdout);
17963 break;
2e6be59c 17964
a6e9f9df
AM
17965 case ODK_HWPATCH:
17966 fputs (" HWPATCH ", stdout);
fd17d1e6 17967 if (option.info & OHW_R4KEOP)
a6e9f9df 17968 fputs (" R4KEOP", stdout);
fd17d1e6 17969 if (option.info & OHW_R8KPFETCH)
a6e9f9df 17970 fputs (" R8KPFETCH", stdout);
fd17d1e6 17971 if (option.info & OHW_R5KEOP)
a6e9f9df 17972 fputs (" R5KEOP", stdout);
fd17d1e6 17973 if (option.info & OHW_R5KCVTL)
a6e9f9df
AM
17974 fputs (" R5KCVTL", stdout);
17975 break;
2e6be59c 17976
a6e9f9df
AM
17977 case ODK_FILL:
17978 fputs (" FILL ", stdout);
17979 /* XXX Print content of info word? */
17980 break;
2e6be59c 17981
a6e9f9df
AM
17982 case ODK_TAGS:
17983 fputs (" TAGS ", stdout);
17984 /* XXX Print content of info word? */
17985 break;
2e6be59c 17986
a6e9f9df
AM
17987 case ODK_HWAND:
17988 fputs (" HWAND ", stdout);
fd17d1e6 17989 if (option.info & OHWA0_R4KEOP_CHECKED)
a6e9f9df 17990 fputs (" R4KEOP_CHECKED", stdout);
fd17d1e6 17991 if (option.info & OHWA0_R4KEOP_CLEAN)
a6e9f9df
AM
17992 fputs (" R4KEOP_CLEAN", stdout);
17993 break;
2e6be59c 17994
a6e9f9df
AM
17995 case ODK_HWOR:
17996 fputs (" HWOR ", stdout);
fd17d1e6 17997 if (option.info & OHWA0_R4KEOP_CHECKED)
a6e9f9df 17998 fputs (" R4KEOP_CHECKED", stdout);
fd17d1e6 17999 if (option.info & OHWA0_R4KEOP_CLEAN)
a6e9f9df
AM
18000 fputs (" R4KEOP_CLEAN", stdout);
18001 break;
2e6be59c 18002
a6e9f9df 18003 case ODK_GP_GROUP:
d0c4e780 18004 printf (" GP_GROUP %#06x self-contained %#06x",
fd17d1e6
AM
18005 option.info & OGP_GROUP,
18006 (option.info & OGP_SELF) >> 16);
a6e9f9df 18007 break;
2e6be59c 18008
a6e9f9df 18009 case ODK_IDENT:
d0c4e780 18010 printf (" IDENT %#06x self-contained %#06x",
fd17d1e6
AM
18011 option.info & OGP_GROUP,
18012 (option.info & OGP_SELF) >> 16);
a6e9f9df 18013 break;
2e6be59c 18014
a6e9f9df
AM
18015 default:
18016 /* This shouldn't happen. */
d0c4e780 18017 printf (" %3d ??? %" PRId16 " %" PRIx32,
fd17d1e6 18018 option.kind, option.section, option.info);
a6e9f9df 18019 break;
252b5132 18020 }
a6e9f9df 18021
2cf0635d 18022 len = sizeof (* eopt);
fd17d1e6 18023 while (len < option.size)
82b1b41b 18024 {
fd17d1e6 18025 unsigned char datum = *((unsigned char *) eoption + len);
a6e9f9df 18026
82b1b41b
NC
18027 if (ISPRINT (datum))
18028 printf ("%c", datum);
18029 else
18030 printf ("\\%03o", datum);
18031 len ++;
18032 }
a6e9f9df 18033 fputs ("\n", stdout);
82b1b41b 18034
fd17d1e6 18035 offset += option.size;
252b5132 18036 }
a6e9f9df 18037 free (eopt);
252b5132 18038 }
32ec8896 18039 else
015dc7e1 18040 res = false;
252b5132
RH
18041 }
18042
18043 if (conflicts_offset != 0 && conflictsno != 0)
18044 {
2cf0635d 18045 Elf32_Conflict * iconf;
252b5132
RH
18046 size_t cnt;
18047
978c4450 18048 if (filedata->dynamic_symbols == NULL)
252b5132 18049 {
591a748a 18050 error (_("conflict list found without a dynamic symbol table\n"));
015dc7e1 18051 return false;
252b5132
RH
18052 }
18053
7296a62a
NC
18054 /* PR 21345 - print a slightly more helpful error message
18055 if we are sure that the cmalloc will fail. */
645f43a8 18056 if (conflictsno > filedata->file_size / sizeof (* iconf))
7296a62a
NC
18057 {
18058 error (_("Overlarge number of conflicts detected: %lx\n"),
18059 (long) conflictsno);
015dc7e1 18060 return false;
7296a62a
NC
18061 }
18062
3f5e193b 18063 iconf = (Elf32_Conflict *) cmalloc (conflictsno, sizeof (* iconf));
252b5132
RH
18064 if (iconf == NULL)
18065 {
8b73c356 18066 error (_("Out of memory allocating space for dynamic conflicts\n"));
015dc7e1 18067 return false;
252b5132
RH
18068 }
18069
9ea033b2 18070 if (is_32bit_elf)
252b5132 18071 {
2cf0635d 18072 Elf32_External_Conflict * econf32;
a6e9f9df 18073
3f5e193b 18074 econf32 = (Elf32_External_Conflict *)
95099889
AM
18075 get_data (NULL, filedata, conflicts_offset,
18076 sizeof (*econf32), conflictsno, _("conflict"));
a6e9f9df 18077 if (!econf32)
5a814d6d
AM
18078 {
18079 free (iconf);
015dc7e1 18080 return false;
5a814d6d 18081 }
252b5132
RH
18082
18083 for (cnt = 0; cnt < conflictsno; ++cnt)
18084 iconf[cnt] = BYTE_GET (econf32[cnt]);
a6e9f9df
AM
18085
18086 free (econf32);
252b5132
RH
18087 }
18088 else
18089 {
2cf0635d 18090 Elf64_External_Conflict * econf64;
a6e9f9df 18091
3f5e193b 18092 econf64 = (Elf64_External_Conflict *)
95099889
AM
18093 get_data (NULL, filedata, conflicts_offset,
18094 sizeof (*econf64), conflictsno, _("conflict"));
a6e9f9df 18095 if (!econf64)
5a814d6d
AM
18096 {
18097 free (iconf);
015dc7e1 18098 return false;
5a814d6d 18099 }
252b5132
RH
18100
18101 for (cnt = 0; cnt < conflictsno; ++cnt)
18102 iconf[cnt] = BYTE_GET (econf64[cnt]);
a6e9f9df
AM
18103
18104 free (econf64);
252b5132
RH
18105 }
18106
d3a49aa8
AM
18107 printf (ngettext ("\nSection '.conflict' contains %lu entry:\n",
18108 "\nSection '.conflict' contains %lu entries:\n",
18109 (unsigned long) conflictsno),
c7e7ca54 18110 (unsigned long) conflictsno);
252b5132
RH
18111 puts (_(" Num: Index Value Name"));
18112
18113 for (cnt = 0; cnt < conflictsno; ++cnt)
18114 {
b34976b6 18115 printf ("%5lu: %8lu ", (unsigned long) cnt, iconf[cnt]);
e0a31db1 18116
978c4450 18117 if (iconf[cnt] >= filedata->num_dynamic_syms)
e0a31db1 18118 printf (_("<corrupt symbol index>"));
d79b3d50 18119 else
e0a31db1
NC
18120 {
18121 Elf_Internal_Sym * psym;
18122
978c4450 18123 psym = & filedata->dynamic_symbols[iconf[cnt]];
e0a31db1
NC
18124 print_vma (psym->st_value, FULL_HEX);
18125 putchar (' ');
978c4450
AM
18126 if (VALID_DYNAMIC_NAME (filedata, psym->st_name))
18127 print_symbol (25, GET_DYNAMIC_NAME (filedata, psym->st_name));
e0a31db1
NC
18128 else
18129 printf (_("<corrupt: %14ld>"), psym->st_name);
18130 }
31104126 18131 putchar ('\n');
252b5132
RH
18132 }
18133
252b5132
RH
18134 free (iconf);
18135 }
18136
ccb4c951
RS
18137 if (pltgot != 0 && local_gotno != 0)
18138 {
91d6fa6a 18139 bfd_vma ent, local_end, global_end;
bbeee7ea 18140 size_t i, offset;
2cf0635d 18141 unsigned char * data;
82b1b41b 18142 unsigned char * data_end;
bbeee7ea 18143 int addr_size;
ccb4c951 18144
91d6fa6a 18145 ent = pltgot;
ccb4c951
RS
18146 addr_size = (is_32bit_elf ? 4 : 8);
18147 local_end = pltgot + local_gotno * addr_size;
ccb4c951 18148
74e1a04b
NC
18149 /* PR binutils/17533 file: 012-111227-0.004 */
18150 if (symtabno < gotsym)
18151 {
18152 error (_("The GOT symbol offset (%lu) is greater than the symbol table size (%lu)\n"),
82b1b41b 18153 (unsigned long) gotsym, (unsigned long) symtabno);
015dc7e1 18154 return false;
74e1a04b 18155 }
82b1b41b 18156
74e1a04b 18157 global_end = local_end + (symtabno - gotsym) * addr_size;
82b1b41b
NC
18158 /* PR 17531: file: 54c91a34. */
18159 if (global_end < local_end)
18160 {
18161 error (_("Too many GOT symbols: %lu\n"), (unsigned long) symtabno);
015dc7e1 18162 return false;
82b1b41b 18163 }
948f632f 18164
dda8d76d
NC
18165 offset = offset_from_vma (filedata, pltgot, global_end - pltgot);
18166 data = (unsigned char *) get_data (NULL, filedata, offset,
9cf03b7e
NC
18167 global_end - pltgot, 1,
18168 _("Global Offset Table data"));
919383ac 18169 /* PR 12855: Null data is handled gracefully throughout. */
82b1b41b 18170 data_end = data + (global_end - pltgot);
59245841 18171
ccb4c951
RS
18172 printf (_("\nPrimary GOT:\n"));
18173 printf (_(" Canonical gp value: "));
18174 print_vma (pltgot + 0x7ff0, LONG_HEX);
18175 printf ("\n\n");
18176
18177 printf (_(" Reserved entries:\n"));
18178 printf (_(" %*s %10s %*s Purpose\n"),
2b692964
NC
18179 addr_size * 2, _("Address"), _("Access"),
18180 addr_size * 2, _("Initial"));
82b1b41b 18181 ent = print_mips_got_entry (data, pltgot, ent, data_end);
2b692964 18182 printf (_(" Lazy resolver\n"));
82b1b41b
NC
18183 if (ent == (bfd_vma) -1)
18184 goto got_print_fail;
75ec1fdb 18185
c4ab9505
MR
18186 /* Check for the MSB of GOT[1] being set, denoting a GNU object.
18187 This entry will be used by some runtime loaders, to store the
18188 module pointer. Otherwise this is an ordinary local entry.
18189 PR 21344: Check for the entry being fully available before
18190 fetching it. */
18191 if (data
18192 && data + ent - pltgot + addr_size <= data_end
18193 && (byte_get (data + ent - pltgot, addr_size)
18194 >> (addr_size * 8 - 1)) != 0)
18195 {
18196 ent = print_mips_got_entry (data, pltgot, ent, data_end);
18197 printf (_(" Module pointer (GNU extension)\n"));
18198 if (ent == (bfd_vma) -1)
18199 goto got_print_fail;
ccb4c951
RS
18200 }
18201 printf ("\n");
18202
f17e9d8a 18203 if (data != NULL && ent < local_end)
ccb4c951
RS
18204 {
18205 printf (_(" Local entries:\n"));
cc5914eb 18206 printf (" %*s %10s %*s\n",
2b692964
NC
18207 addr_size * 2, _("Address"), _("Access"),
18208 addr_size * 2, _("Initial"));
91d6fa6a 18209 while (ent < local_end)
ccb4c951 18210 {
82b1b41b 18211 ent = print_mips_got_entry (data, pltgot, ent, data_end);
ccb4c951 18212 printf ("\n");
82b1b41b
NC
18213 if (ent == (bfd_vma) -1)
18214 goto got_print_fail;
ccb4c951
RS
18215 }
18216 printf ("\n");
18217 }
18218
f17e9d8a 18219 if (data != NULL && gotsym < symtabno)
ccb4c951
RS
18220 {
18221 int sym_width;
18222
18223 printf (_(" Global entries:\n"));
cc5914eb 18224 printf (" %*s %10s %*s %*s %-7s %3s %s\n",
9cf03b7e
NC
18225 addr_size * 2, _("Address"),
18226 _("Access"),
2b692964 18227 addr_size * 2, _("Initial"),
9cf03b7e
NC
18228 addr_size * 2, _("Sym.Val."),
18229 _("Type"),
18230 /* Note for translators: "Ndx" = abbreviated form of "Index". */
18231 _("Ndx"), _("Name"));
0b4362b0 18232
ccb4c951 18233 sym_width = (is_32bit_elf ? 80 : 160) - 28 - addr_size * 6 - 1;
e0a31db1 18234
ccb4c951
RS
18235 for (i = gotsym; i < symtabno; i++)
18236 {
82b1b41b 18237 ent = print_mips_got_entry (data, pltgot, ent, data_end);
ccb4c951 18238 printf (" ");
e0a31db1 18239
978c4450 18240 if (filedata->dynamic_symbols == NULL)
e0a31db1 18241 printf (_("<no dynamic symbols>"));
978c4450 18242 else if (i < filedata->num_dynamic_syms)
e0a31db1 18243 {
978c4450 18244 Elf_Internal_Sym * psym = filedata->dynamic_symbols + i;
e0a31db1
NC
18245
18246 print_vma (psym->st_value, LONG_HEX);
18247 printf (" %-7s %3s ",
dda8d76d
NC
18248 get_symbol_type (filedata, ELF_ST_TYPE (psym->st_info)),
18249 get_symbol_index_type (filedata, psym->st_shndx));
e0a31db1 18250
978c4450
AM
18251 if (VALID_DYNAMIC_NAME (filedata, psym->st_name))
18252 print_symbol (sym_width,
18253 GET_DYNAMIC_NAME (filedata, psym->st_name));
e0a31db1
NC
18254 else
18255 printf (_("<corrupt: %14ld>"), psym->st_name);
18256 }
ccb4c951 18257 else
7fc5ac57
JBG
18258 printf (_("<symbol index %lu exceeds number of dynamic symbols>"),
18259 (unsigned long) i);
e0a31db1 18260
ccb4c951 18261 printf ("\n");
82b1b41b
NC
18262 if (ent == (bfd_vma) -1)
18263 break;
ccb4c951
RS
18264 }
18265 printf ("\n");
18266 }
18267
82b1b41b 18268 got_print_fail:
9db70fc3 18269 free (data);
ccb4c951
RS
18270 }
18271
861fb55a
DJ
18272 if (mips_pltgot != 0 && jmprel != 0 && pltrel != 0 && pltrelsz != 0)
18273 {
91d6fa6a 18274 bfd_vma ent, end;
861fb55a
DJ
18275 size_t offset, rel_offset;
18276 unsigned long count, i;
2cf0635d 18277 unsigned char * data;
861fb55a 18278 int addr_size, sym_width;
2cf0635d 18279 Elf_Internal_Rela * rels;
861fb55a 18280
dda8d76d 18281 rel_offset = offset_from_vma (filedata, jmprel, pltrelsz);
861fb55a
DJ
18282 if (pltrel == DT_RELA)
18283 {
dda8d76d 18284 if (!slurp_rela_relocs (filedata, rel_offset, pltrelsz, &rels, &count))
015dc7e1 18285 return false;
861fb55a
DJ
18286 }
18287 else
18288 {
dda8d76d 18289 if (!slurp_rel_relocs (filedata, rel_offset, pltrelsz, &rels, &count))
015dc7e1 18290 return false;
861fb55a
DJ
18291 }
18292
91d6fa6a 18293 ent = mips_pltgot;
861fb55a
DJ
18294 addr_size = (is_32bit_elf ? 4 : 8);
18295 end = mips_pltgot + (2 + count) * addr_size;
18296
dda8d76d
NC
18297 offset = offset_from_vma (filedata, mips_pltgot, end - mips_pltgot);
18298 data = (unsigned char *) get_data (NULL, filedata, offset, end - mips_pltgot,
9cf03b7e 18299 1, _("Procedure Linkage Table data"));
59245841 18300 if (data == NULL)
288f0ba2
AM
18301 {
18302 free (rels);
015dc7e1 18303 return false;
288f0ba2 18304 }
59245841 18305
9cf03b7e 18306 printf ("\nPLT GOT:\n\n");
861fb55a
DJ
18307 printf (_(" Reserved entries:\n"));
18308 printf (_(" %*s %*s Purpose\n"),
2b692964 18309 addr_size * 2, _("Address"), addr_size * 2, _("Initial"));
91d6fa6a 18310 ent = print_mips_pltgot_entry (data, mips_pltgot, ent);
2b692964 18311 printf (_(" PLT lazy resolver\n"));
91d6fa6a 18312 ent = print_mips_pltgot_entry (data, mips_pltgot, ent);
2b692964 18313 printf (_(" Module pointer\n"));
861fb55a
DJ
18314 printf ("\n");
18315
18316 printf (_(" Entries:\n"));
cc5914eb 18317 printf (" %*s %*s %*s %-7s %3s %s\n",
2b692964
NC
18318 addr_size * 2, _("Address"),
18319 addr_size * 2, _("Initial"),
18320 addr_size * 2, _("Sym.Val."), _("Type"), _("Ndx"), _("Name"));
861fb55a
DJ
18321 sym_width = (is_32bit_elf ? 80 : 160) - 17 - addr_size * 6 - 1;
18322 for (i = 0; i < count; i++)
18323 {
df97ab2a 18324 unsigned long idx = get_reloc_symindex (rels[i].r_info);
861fb55a 18325
91d6fa6a 18326 ent = print_mips_pltgot_entry (data, mips_pltgot, ent);
861fb55a 18327 printf (" ");
e0a31db1 18328
978c4450 18329 if (idx >= filedata->num_dynamic_syms)
df97ab2a 18330 printf (_("<corrupt symbol index: %lu>"), idx);
861fb55a 18331 else
e0a31db1 18332 {
978c4450 18333 Elf_Internal_Sym * psym = filedata->dynamic_symbols + idx;
e0a31db1
NC
18334
18335 print_vma (psym->st_value, LONG_HEX);
18336 printf (" %-7s %3s ",
dda8d76d
NC
18337 get_symbol_type (filedata, ELF_ST_TYPE (psym->st_info)),
18338 get_symbol_index_type (filedata, psym->st_shndx));
978c4450
AM
18339 if (VALID_DYNAMIC_NAME (filedata, psym->st_name))
18340 print_symbol (sym_width,
18341 GET_DYNAMIC_NAME (filedata, psym->st_name));
e0a31db1
NC
18342 else
18343 printf (_("<corrupt: %14ld>"), psym->st_name);
18344 }
861fb55a
DJ
18345 printf ("\n");
18346 }
18347 printf ("\n");
18348
9db70fc3 18349 free (data);
861fb55a
DJ
18350 free (rels);
18351 }
18352
32ec8896 18353 return res;
252b5132
RH
18354}
18355
015dc7e1 18356static bool
dda8d76d 18357process_nds32_specific (Filedata * filedata)
35c08157
KLC
18358{
18359 Elf_Internal_Shdr *sect = NULL;
18360
dda8d76d 18361 sect = find_section (filedata, ".nds32_e_flags");
9c7b8e9b 18362 if (sect != NULL && sect->sh_size >= 4)
35c08157 18363 {
9c7b8e9b
AM
18364 unsigned char *buf;
18365 unsigned int flag;
35c08157
KLC
18366
18367 printf ("\nNDS32 elf flags section:\n");
9c7b8e9b
AM
18368 buf = get_data (NULL, filedata, sect->sh_offset, 1, 4,
18369 _("NDS32 elf flags section"));
35c08157 18370
9c7b8e9b 18371 if (buf == NULL)
015dc7e1 18372 return false;
32ec8896 18373
9c7b8e9b
AM
18374 flag = byte_get (buf, 4);
18375 free (buf);
18376 switch (flag & 0x3)
35c08157
KLC
18377 {
18378 case 0:
18379 printf ("(VEC_SIZE):\tNo entry.\n");
18380 break;
18381 case 1:
18382 printf ("(VEC_SIZE):\t4 bytes\n");
18383 break;
18384 case 2:
18385 printf ("(VEC_SIZE):\t16 bytes\n");
18386 break;
18387 case 3:
18388 printf ("(VEC_SIZE):\treserved\n");
18389 break;
18390 }
18391 }
18392
015dc7e1 18393 return true;
35c08157
KLC
18394}
18395
015dc7e1 18396static bool
dda8d76d 18397process_gnu_liblist (Filedata * filedata)
047b2264 18398{
2cf0635d
NC
18399 Elf_Internal_Shdr * section;
18400 Elf_Internal_Shdr * string_sec;
18401 Elf32_External_Lib * elib;
18402 char * strtab;
c256ffe7 18403 size_t strtab_size;
047b2264 18404 size_t cnt;
d3a49aa8 18405 unsigned long num_liblist;
047b2264 18406 unsigned i;
015dc7e1 18407 bool res = true;
047b2264
JJ
18408
18409 if (! do_arch)
015dc7e1 18410 return true;
047b2264 18411
dda8d76d
NC
18412 for (i = 0, section = filedata->section_headers;
18413 i < filedata->file_header.e_shnum;
b34976b6 18414 i++, section++)
047b2264
JJ
18415 {
18416 switch (section->sh_type)
18417 {
18418 case SHT_GNU_LIBLIST:
dda8d76d 18419 if (section->sh_link >= filedata->file_header.e_shnum)
c256ffe7
JJ
18420 break;
18421
3f5e193b 18422 elib = (Elf32_External_Lib *)
dda8d76d 18423 get_data (NULL, filedata, section->sh_offset, 1, section->sh_size,
9cf03b7e 18424 _("liblist section data"));
047b2264
JJ
18425
18426 if (elib == NULL)
32ec8896 18427 {
015dc7e1 18428 res = false;
32ec8896
NC
18429 break;
18430 }
047b2264 18431
dda8d76d
NC
18432 string_sec = filedata->section_headers + section->sh_link;
18433 strtab = (char *) get_data (NULL, filedata, string_sec->sh_offset, 1,
3f5e193b
NC
18434 string_sec->sh_size,
18435 _("liblist string table"));
047b2264
JJ
18436 if (strtab == NULL
18437 || section->sh_entsize != sizeof (Elf32_External_Lib))
18438 {
18439 free (elib);
2842702f 18440 free (strtab);
015dc7e1 18441 res = false;
047b2264
JJ
18442 break;
18443 }
59245841 18444 strtab_size = string_sec->sh_size;
047b2264 18445
d3a49aa8
AM
18446 num_liblist = section->sh_size / sizeof (Elf32_External_Lib);
18447 printf (ngettext ("\nLibrary list section '%s' contains %lu entries:\n",
18448 "\nLibrary list section '%s' contains %lu entries:\n",
18449 num_liblist),
dda8d76d 18450 printable_section_name (filedata, section),
d3a49aa8 18451 num_liblist);
047b2264 18452
2b692964 18453 puts (_(" Library Time Stamp Checksum Version Flags"));
047b2264
JJ
18454
18455 for (cnt = 0; cnt < section->sh_size / sizeof (Elf32_External_Lib);
18456 ++cnt)
18457 {
18458 Elf32_Lib liblist;
91d6fa6a 18459 time_t atime;
d5b07ef4 18460 char timebuf[128];
2cf0635d 18461 struct tm * tmp;
047b2264
JJ
18462
18463 liblist.l_name = BYTE_GET (elib[cnt].l_name);
91d6fa6a 18464 atime = BYTE_GET (elib[cnt].l_time_stamp);
047b2264
JJ
18465 liblist.l_checksum = BYTE_GET (elib[cnt].l_checksum);
18466 liblist.l_version = BYTE_GET (elib[cnt].l_version);
18467 liblist.l_flags = BYTE_GET (elib[cnt].l_flags);
18468
91d6fa6a 18469 tmp = gmtime (&atime);
e9e44622
JJ
18470 snprintf (timebuf, sizeof (timebuf),
18471 "%04u-%02u-%02uT%02u:%02u:%02u",
18472 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
18473 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
047b2264
JJ
18474
18475 printf ("%3lu: ", (unsigned long) cnt);
18476 if (do_wide)
c256ffe7 18477 printf ("%-20s", liblist.l_name < strtab_size
2b692964 18478 ? strtab + liblist.l_name : _("<corrupt>"));
047b2264 18479 else
c256ffe7 18480 printf ("%-20.20s", liblist.l_name < strtab_size
2b692964 18481 ? strtab + liblist.l_name : _("<corrupt>"));
047b2264
JJ
18482 printf (" %s %#010lx %-7ld %-7ld\n", timebuf, liblist.l_checksum,
18483 liblist.l_version, liblist.l_flags);
18484 }
18485
18486 free (elib);
2842702f 18487 free (strtab);
047b2264
JJ
18488 }
18489 }
18490
32ec8896 18491 return res;
047b2264
JJ
18492}
18493
9437c45b 18494static const char *
dda8d76d 18495get_note_type (Filedata * filedata, unsigned e_type)
779fe533
NC
18496{
18497 static char buff[64];
103f02d3 18498
dda8d76d 18499 if (filedata->file_header.e_type == ET_CORE)
1ec5cd37
NC
18500 switch (e_type)
18501 {
57346661 18502 case NT_AUXV:
1ec5cd37 18503 return _("NT_AUXV (auxiliary vector)");
57346661 18504 case NT_PRSTATUS:
1ec5cd37 18505 return _("NT_PRSTATUS (prstatus structure)");
57346661 18506 case NT_FPREGSET:
1ec5cd37 18507 return _("NT_FPREGSET (floating point registers)");
57346661 18508 case NT_PRPSINFO:
1ec5cd37 18509 return _("NT_PRPSINFO (prpsinfo structure)");
57346661 18510 case NT_TASKSTRUCT:
1ec5cd37 18511 return _("NT_TASKSTRUCT (task structure)");
b63a5e38
AB
18512 case NT_GDB_TDESC:
18513 return _("NT_GDB_TDESC (GDB XML target description)");
57346661 18514 case NT_PRXFPREG:
1ec5cd37 18515 return _("NT_PRXFPREG (user_xfpregs structure)");
e1e95dec
AM
18516 case NT_PPC_VMX:
18517 return _("NT_PPC_VMX (ppc Altivec registers)");
89eeb0bc
LM
18518 case NT_PPC_VSX:
18519 return _("NT_PPC_VSX (ppc VSX registers)");
66c3b5f8
GR
18520 case NT_PPC_TAR:
18521 return _("NT_PPC_TAR (ppc TAR register)");
18522 case NT_PPC_PPR:
18523 return _("NT_PPC_PPR (ppc PPR register)");
18524 case NT_PPC_DSCR:
18525 return _("NT_PPC_DSCR (ppc DSCR register)");
18526 case NT_PPC_EBB:
18527 return _("NT_PPC_EBB (ppc EBB registers)");
18528 case NT_PPC_PMU:
18529 return _("NT_PPC_PMU (ppc PMU registers)");
18530 case NT_PPC_TM_CGPR:
18531 return _("NT_PPC_TM_CGPR (ppc checkpointed GPR registers)");
18532 case NT_PPC_TM_CFPR:
18533 return _("NT_PPC_TM_CFPR (ppc checkpointed floating point registers)");
18534 case NT_PPC_TM_CVMX:
18535 return _("NT_PPC_TM_CVMX (ppc checkpointed Altivec registers)");
18536 case NT_PPC_TM_CVSX:
3fd21718 18537 return _("NT_PPC_TM_CVSX (ppc checkpointed VSX registers)");
66c3b5f8
GR
18538 case NT_PPC_TM_SPR:
18539 return _("NT_PPC_TM_SPR (ppc TM special purpose registers)");
18540 case NT_PPC_TM_CTAR:
18541 return _("NT_PPC_TM_CTAR (ppc checkpointed TAR register)");
18542 case NT_PPC_TM_CPPR:
18543 return _("NT_PPC_TM_CPPR (ppc checkpointed PPR register)");
18544 case NT_PPC_TM_CDSCR:
18545 return _("NT_PPC_TM_CDSCR (ppc checkpointed DSCR register)");
ff826ef3
TT
18546 case NT_386_TLS:
18547 return _("NT_386_TLS (x86 TLS information)");
18548 case NT_386_IOPERM:
18549 return _("NT_386_IOPERM (x86 I/O permissions)");
4339cae0
L
18550 case NT_X86_XSTATE:
18551 return _("NT_X86_XSTATE (x86 XSAVE extended state)");
8d58ed37
L
18552 case NT_X86_CET:
18553 return _("NT_X86_CET (x86 CET state)");
0675e188
UW
18554 case NT_S390_HIGH_GPRS:
18555 return _("NT_S390_HIGH_GPRS (s390 upper register halves)");
d7eeb400
MS
18556 case NT_S390_TIMER:
18557 return _("NT_S390_TIMER (s390 timer register)");
18558 case NT_S390_TODCMP:
18559 return _("NT_S390_TODCMP (s390 TOD comparator register)");
18560 case NT_S390_TODPREG:
18561 return _("NT_S390_TODPREG (s390 TOD programmable register)");
18562 case NT_S390_CTRS:
18563 return _("NT_S390_CTRS (s390 control registers)");
18564 case NT_S390_PREFIX:
18565 return _("NT_S390_PREFIX (s390 prefix register)");
a367d729
AK
18566 case NT_S390_LAST_BREAK:
18567 return _("NT_S390_LAST_BREAK (s390 last breaking event address)");
18568 case NT_S390_SYSTEM_CALL:
18569 return _("NT_S390_SYSTEM_CALL (s390 system call restart data)");
abb3f6cc
NC
18570 case NT_S390_TDB:
18571 return _("NT_S390_TDB (s390 transaction diagnostic block)");
4ef9f41a
AA
18572 case NT_S390_VXRS_LOW:
18573 return _("NT_S390_VXRS_LOW (s390 vector registers 0-15 upper half)");
18574 case NT_S390_VXRS_HIGH:
18575 return _("NT_S390_VXRS_HIGH (s390 vector registers 16-31)");
88ab90e8
AA
18576 case NT_S390_GS_CB:
18577 return _("NT_S390_GS_CB (s390 guarded-storage registers)");
18578 case NT_S390_GS_BC:
18579 return _("NT_S390_GS_BC (s390 guarded-storage broadcast control)");
faa9a424
UW
18580 case NT_ARM_VFP:
18581 return _("NT_ARM_VFP (arm VFP registers)");
652451f8
YZ
18582 case NT_ARM_TLS:
18583 return _("NT_ARM_TLS (AArch TLS registers)");
18584 case NT_ARM_HW_BREAK:
18585 return _("NT_ARM_HW_BREAK (AArch hardware breakpoint registers)");
18586 case NT_ARM_HW_WATCH:
18587 return _("NT_ARM_HW_WATCH (AArch hardware watchpoint registers)");
27456742
AK
18588 case NT_ARC_V2:
18589 return _("NT_ARC_V2 (ARC HS accumulator/extra registers)");
db6092f3
AB
18590 case NT_RISCV_CSR:
18591 return _("NT_RISCV_CSR (RISC-V control and status registers)");
57346661 18592 case NT_PSTATUS:
1ec5cd37 18593 return _("NT_PSTATUS (pstatus structure)");
57346661 18594 case NT_FPREGS:
1ec5cd37 18595 return _("NT_FPREGS (floating point registers)");
57346661 18596 case NT_PSINFO:
1ec5cd37 18597 return _("NT_PSINFO (psinfo structure)");
57346661 18598 case NT_LWPSTATUS:
1ec5cd37 18599 return _("NT_LWPSTATUS (lwpstatus_t structure)");
57346661 18600 case NT_LWPSINFO:
1ec5cd37 18601 return _("NT_LWPSINFO (lwpsinfo_t structure)");
57346661 18602 case NT_WIN32PSTATUS:
1ec5cd37 18603 return _("NT_WIN32PSTATUS (win32_pstatus structure)");
9ece1fa9
TT
18604 case NT_SIGINFO:
18605 return _("NT_SIGINFO (siginfo_t data)");
18606 case NT_FILE:
18607 return _("NT_FILE (mapped files)");
1ec5cd37
NC
18608 default:
18609 break;
18610 }
18611 else
18612 switch (e_type)
18613 {
18614 case NT_VERSION:
18615 return _("NT_VERSION (version)");
18616 case NT_ARCH:
18617 return _("NT_ARCH (architecture)");
9ef920e9 18618 case NT_GNU_BUILD_ATTRIBUTE_OPEN:
6f156d7a 18619 return _("OPEN");
9ef920e9 18620 case NT_GNU_BUILD_ATTRIBUTE_FUNC:
6f156d7a 18621 return _("func");
1ec5cd37
NC
18622 default:
18623 break;
18624 }
18625
e9e44622 18626 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
1ec5cd37 18627 return buff;
779fe533
NC
18628}
18629
015dc7e1 18630static bool
9ece1fa9
TT
18631print_core_note (Elf_Internal_Note *pnote)
18632{
18633 unsigned int addr_size = is_32bit_elf ? 4 : 8;
18634 bfd_vma count, page_size;
18635 unsigned char *descdata, *filenames, *descend;
18636
18637 if (pnote->type != NT_FILE)
04ac15ab
AS
18638 {
18639 if (do_wide)
18640 printf ("\n");
015dc7e1 18641 return true;
04ac15ab 18642 }
9ece1fa9
TT
18643
18644#ifndef BFD64
18645 if (!is_32bit_elf)
18646 {
18647 printf (_(" Cannot decode 64-bit note in 32-bit build\n"));
18648 /* Still "successful". */
015dc7e1 18649 return true;
9ece1fa9
TT
18650 }
18651#endif
18652
18653 if (pnote->descsz < 2 * addr_size)
18654 {
32ec8896 18655 error (_(" Malformed note - too short for header\n"));
015dc7e1 18656 return false;
9ece1fa9
TT
18657 }
18658
18659 descdata = (unsigned char *) pnote->descdata;
18660 descend = descdata + pnote->descsz;
18661
18662 if (descdata[pnote->descsz - 1] != '\0')
18663 {
32ec8896 18664 error (_(" Malformed note - does not end with \\0\n"));
015dc7e1 18665 return false;
9ece1fa9
TT
18666 }
18667
18668 count = byte_get (descdata, addr_size);
18669 descdata += addr_size;
18670
18671 page_size = byte_get (descdata, addr_size);
18672 descdata += addr_size;
18673
5396a86e
AM
18674 if (count > ((bfd_vma) -1 - 2 * addr_size) / (3 * addr_size)
18675 || pnote->descsz < 2 * addr_size + count * 3 * addr_size)
9ece1fa9 18676 {
32ec8896 18677 error (_(" Malformed note - too short for supplied file count\n"));
015dc7e1 18678 return false;
9ece1fa9
TT
18679 }
18680
18681 printf (_(" Page size: "));
18682 print_vma (page_size, DEC);
18683 printf ("\n");
18684
18685 printf (_(" %*s%*s%*s\n"),
18686 (int) (2 + 2 * addr_size), _("Start"),
18687 (int) (4 + 2 * addr_size), _("End"),
18688 (int) (4 + 2 * addr_size), _("Page Offset"));
18689 filenames = descdata + count * 3 * addr_size;
595712bb 18690 while (count-- > 0)
9ece1fa9
TT
18691 {
18692 bfd_vma start, end, file_ofs;
18693
18694 if (filenames == descend)
18695 {
32ec8896 18696 error (_(" Malformed note - filenames end too early\n"));
015dc7e1 18697 return false;
9ece1fa9
TT
18698 }
18699
18700 start = byte_get (descdata, addr_size);
18701 descdata += addr_size;
18702 end = byte_get (descdata, addr_size);
18703 descdata += addr_size;
18704 file_ofs = byte_get (descdata, addr_size);
18705 descdata += addr_size;
18706
18707 printf (" ");
18708 print_vma (start, FULL_HEX);
18709 printf (" ");
18710 print_vma (end, FULL_HEX);
18711 printf (" ");
18712 print_vma (file_ofs, FULL_HEX);
18713 printf ("\n %s\n", filenames);
18714
18715 filenames += 1 + strlen ((char *) filenames);
18716 }
18717
015dc7e1 18718 return true;
9ece1fa9
TT
18719}
18720
1118d252
RM
18721static const char *
18722get_gnu_elf_note_type (unsigned e_type)
18723{
1449284b 18724 /* NB/ Keep this switch statement in sync with print_gnu_note (). */
1118d252
RM
18725 switch (e_type)
18726 {
18727 case NT_GNU_ABI_TAG:
18728 return _("NT_GNU_ABI_TAG (ABI version tag)");
18729 case NT_GNU_HWCAP:
18730 return _("NT_GNU_HWCAP (DSO-supplied software HWCAP info)");
18731 case NT_GNU_BUILD_ID:
18732 return _("NT_GNU_BUILD_ID (unique build ID bitstring)");
0297aed6
DM
18733 case NT_GNU_GOLD_VERSION:
18734 return _("NT_GNU_GOLD_VERSION (gold version)");
9ef920e9
NC
18735 case NT_GNU_PROPERTY_TYPE_0:
18736 return _("NT_GNU_PROPERTY_TYPE_0");
18737 case NT_GNU_BUILD_ATTRIBUTE_OPEN:
18738 return _("NT_GNU_BUILD_ATTRIBUTE_OPEN");
18739 case NT_GNU_BUILD_ATTRIBUTE_FUNC:
18740 return _("NT_GNU_BUILD_ATTRIBUTE_FUNC");
1118d252 18741 default:
1449284b
NC
18742 {
18743 static char buff[64];
1118d252 18744
1449284b
NC
18745 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
18746 return buff;
18747 }
18748 }
1118d252
RM
18749}
18750
a9eafb08
L
18751static void
18752decode_x86_compat_isa (unsigned int bitmask)
18753{
18754 while (bitmask)
18755 {
18756 unsigned int bit = bitmask & (- bitmask);
18757
18758 bitmask &= ~ bit;
18759 switch (bit)
18760 {
18761 case GNU_PROPERTY_X86_COMPAT_ISA_1_486:
18762 printf ("i486");
18763 break;
18764 case GNU_PROPERTY_X86_COMPAT_ISA_1_586:
18765 printf ("586");
18766 break;
18767 case GNU_PROPERTY_X86_COMPAT_ISA_1_686:
18768 printf ("686");
18769 break;
18770 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE:
18771 printf ("SSE");
18772 break;
18773 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE2:
18774 printf ("SSE2");
18775 break;
18776 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE3:
18777 printf ("SSE3");
18778 break;
18779 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSSE3:
18780 printf ("SSSE3");
18781 break;
18782 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE4_1:
18783 printf ("SSE4_1");
18784 break;
18785 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE4_2:
18786 printf ("SSE4_2");
18787 break;
18788 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX:
18789 printf ("AVX");
18790 break;
18791 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX2:
18792 printf ("AVX2");
18793 break;
18794 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512F:
18795 printf ("AVX512F");
18796 break;
18797 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512CD:
18798 printf ("AVX512CD");
18799 break;
18800 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512ER:
18801 printf ("AVX512ER");
18802 break;
18803 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512PF:
18804 printf ("AVX512PF");
18805 break;
18806 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512VL:
18807 printf ("AVX512VL");
18808 break;
18809 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512DQ:
18810 printf ("AVX512DQ");
18811 break;
18812 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512BW:
18813 printf ("AVX512BW");
18814 break;
65b3d26e
L
18815 default:
18816 printf (_("<unknown: %x>"), bit);
18817 break;
a9eafb08
L
18818 }
18819 if (bitmask)
18820 printf (", ");
18821 }
18822}
18823
9ef920e9 18824static void
32930e4e 18825decode_x86_compat_2_isa (unsigned int bitmask)
9ef920e9 18826{
0a59decb 18827 if (!bitmask)
90c745dc
L
18828 {
18829 printf (_("<None>"));
18830 return;
18831 }
90c745dc 18832
9ef920e9
NC
18833 while (bitmask)
18834 {
1fc87489 18835 unsigned int bit = bitmask & (- bitmask);
9ef920e9
NC
18836
18837 bitmask &= ~ bit;
18838 switch (bit)
18839 {
32930e4e 18840 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_CMOV:
a9eafb08
L
18841 printf ("CMOV");
18842 break;
32930e4e 18843 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_SSE:
a9eafb08
L
18844 printf ("SSE");
18845 break;
32930e4e 18846 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_SSE2:
a9eafb08
L
18847 printf ("SSE2");
18848 break;
32930e4e 18849 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_SSE3:
a9eafb08
L
18850 printf ("SSE3");
18851 break;
32930e4e 18852 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_SSSE3:
a9eafb08
L
18853 printf ("SSSE3");
18854 break;
32930e4e 18855 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_SSE4_1:
a9eafb08
L
18856 printf ("SSE4_1");
18857 break;
32930e4e 18858 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_SSE4_2:
a9eafb08
L
18859 printf ("SSE4_2");
18860 break;
32930e4e 18861 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX:
a9eafb08
L
18862 printf ("AVX");
18863 break;
32930e4e 18864 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX2:
a9eafb08
L
18865 printf ("AVX2");
18866 break;
32930e4e 18867 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_FMA:
a9eafb08
L
18868 printf ("FMA");
18869 break;
32930e4e 18870 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512F:
a9eafb08
L
18871 printf ("AVX512F");
18872 break;
32930e4e 18873 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512CD:
a9eafb08
L
18874 printf ("AVX512CD");
18875 break;
32930e4e 18876 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512ER:
a9eafb08
L
18877 printf ("AVX512ER");
18878 break;
32930e4e 18879 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512PF:
a9eafb08
L
18880 printf ("AVX512PF");
18881 break;
32930e4e 18882 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512VL:
a9eafb08
L
18883 printf ("AVX512VL");
18884 break;
32930e4e 18885 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512DQ:
a9eafb08
L
18886 printf ("AVX512DQ");
18887 break;
32930e4e 18888 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512BW:
a9eafb08
L
18889 printf ("AVX512BW");
18890 break;
32930e4e 18891 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_4FMAPS:
a9eafb08
L
18892 printf ("AVX512_4FMAPS");
18893 break;
32930e4e 18894 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_4VNNIW:
a9eafb08
L
18895 printf ("AVX512_4VNNIW");
18896 break;
32930e4e 18897 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_BITALG:
a9eafb08
L
18898 printf ("AVX512_BITALG");
18899 break;
32930e4e 18900 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_IFMA:
a9eafb08
L
18901 printf ("AVX512_IFMA");
18902 break;
32930e4e 18903 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_VBMI:
a9eafb08
L
18904 printf ("AVX512_VBMI");
18905 break;
32930e4e 18906 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_VBMI2:
a9eafb08
L
18907 printf ("AVX512_VBMI2");
18908 break;
32930e4e 18909 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_VNNI:
a9eafb08
L
18910 printf ("AVX512_VNNI");
18911 break;
32930e4e 18912 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_BF16:
462cac58
L
18913 printf ("AVX512_BF16");
18914 break;
65b3d26e
L
18915 default:
18916 printf (_("<unknown: %x>"), bit);
18917 break;
9ef920e9
NC
18918 }
18919 if (bitmask)
18920 printf (", ");
18921 }
18922}
18923
32930e4e
L
18924static void
18925decode_x86_isa (unsigned int bitmask)
18926{
32930e4e
L
18927 while (bitmask)
18928 {
18929 unsigned int bit = bitmask & (- bitmask);
18930
18931 bitmask &= ~ bit;
18932 switch (bit)
18933 {
b0ab0693
L
18934 case GNU_PROPERTY_X86_ISA_1_BASELINE:
18935 printf ("x86-64-baseline");
18936 break;
32930e4e
L
18937 case GNU_PROPERTY_X86_ISA_1_V2:
18938 printf ("x86-64-v2");
18939 break;
18940 case GNU_PROPERTY_X86_ISA_1_V3:
18941 printf ("x86-64-v3");
18942 break;
18943 case GNU_PROPERTY_X86_ISA_1_V4:
18944 printf ("x86-64-v4");
18945 break;
18946 default:
18947 printf (_("<unknown: %x>"), bit);
18948 break;
18949 }
18950 if (bitmask)
18951 printf (", ");
18952 }
18953}
18954
ee2fdd6f 18955static void
a9eafb08 18956decode_x86_feature_1 (unsigned int bitmask)
ee2fdd6f 18957{
0a59decb 18958 if (!bitmask)
90c745dc
L
18959 {
18960 printf (_("<None>"));
18961 return;
18962 }
90c745dc 18963
ee2fdd6f
L
18964 while (bitmask)
18965 {
18966 unsigned int bit = bitmask & (- bitmask);
18967
18968 bitmask &= ~ bit;
18969 switch (bit)
18970 {
18971 case GNU_PROPERTY_X86_FEATURE_1_IBT:
a9eafb08 18972 printf ("IBT");
ee2fdd6f 18973 break;
48580982 18974 case GNU_PROPERTY_X86_FEATURE_1_SHSTK:
a9eafb08 18975 printf ("SHSTK");
48580982 18976 break;
279d901e
L
18977 case GNU_PROPERTY_X86_FEATURE_1_LAM_U48:
18978 printf ("LAM_U48");
18979 break;
18980 case GNU_PROPERTY_X86_FEATURE_1_LAM_U57:
18981 printf ("LAM_U57");
18982 break;
ee2fdd6f
L
18983 default:
18984 printf (_("<unknown: %x>"), bit);
18985 break;
18986 }
18987 if (bitmask)
18988 printf (", ");
18989 }
18990}
18991
a9eafb08
L
18992static void
18993decode_x86_feature_2 (unsigned int bitmask)
18994{
0a59decb 18995 if (!bitmask)
90c745dc
L
18996 {
18997 printf (_("<None>"));
18998 return;
18999 }
90c745dc 19000
a9eafb08
L
19001 while (bitmask)
19002 {
19003 unsigned int bit = bitmask & (- bitmask);
19004
19005 bitmask &= ~ bit;
19006 switch (bit)
19007 {
19008 case GNU_PROPERTY_X86_FEATURE_2_X86:
19009 printf ("x86");
19010 break;
19011 case GNU_PROPERTY_X86_FEATURE_2_X87:
19012 printf ("x87");
19013 break;
19014 case GNU_PROPERTY_X86_FEATURE_2_MMX:
19015 printf ("MMX");
19016 break;
19017 case GNU_PROPERTY_X86_FEATURE_2_XMM:
19018 printf ("XMM");
19019 break;
19020 case GNU_PROPERTY_X86_FEATURE_2_YMM:
19021 printf ("YMM");
19022 break;
19023 case GNU_PROPERTY_X86_FEATURE_2_ZMM:
19024 printf ("ZMM");
19025 break;
a308b89d
L
19026 case GNU_PROPERTY_X86_FEATURE_2_TMM:
19027 printf ("TMM");
19028 break;
32930e4e
L
19029 case GNU_PROPERTY_X86_FEATURE_2_MASK:
19030 printf ("MASK");
19031 break;
a9eafb08
L
19032 case GNU_PROPERTY_X86_FEATURE_2_FXSR:
19033 printf ("FXSR");
19034 break;
19035 case GNU_PROPERTY_X86_FEATURE_2_XSAVE:
19036 printf ("XSAVE");
19037 break;
19038 case GNU_PROPERTY_X86_FEATURE_2_XSAVEOPT:
19039 printf ("XSAVEOPT");
19040 break;
19041 case GNU_PROPERTY_X86_FEATURE_2_XSAVEC:
19042 printf ("XSAVEC");
19043 break;
65b3d26e
L
19044 default:
19045 printf (_("<unknown: %x>"), bit);
19046 break;
a9eafb08
L
19047 }
19048 if (bitmask)
19049 printf (", ");
19050 }
19051}
19052
cd702818
SD
19053static void
19054decode_aarch64_feature_1_and (unsigned int bitmask)
19055{
19056 while (bitmask)
19057 {
19058 unsigned int bit = bitmask & (- bitmask);
19059
19060 bitmask &= ~ bit;
19061 switch (bit)
19062 {
19063 case GNU_PROPERTY_AARCH64_FEATURE_1_BTI:
19064 printf ("BTI");
19065 break;
19066
19067 case GNU_PROPERTY_AARCH64_FEATURE_1_PAC:
19068 printf ("PAC");
19069 break;
19070
19071 default:
19072 printf (_("<unknown: %x>"), bit);
19073 break;
19074 }
19075 if (bitmask)
19076 printf (", ");
19077 }
19078}
19079
9ef920e9 19080static void
dda8d76d 19081print_gnu_property_note (Filedata * filedata, Elf_Internal_Note * pnote)
9ef920e9
NC
19082{
19083 unsigned char * ptr = (unsigned char *) pnote->descdata;
19084 unsigned char * ptr_end = ptr + pnote->descsz;
19085 unsigned int size = is_32bit_elf ? 4 : 8;
19086
19087 printf (_(" Properties: "));
19088
1fc87489 19089 if (pnote->descsz < 8 || (pnote->descsz % size) != 0)
9ef920e9
NC
19090 {
19091 printf (_("<corrupt GNU_PROPERTY_TYPE, size = %#lx>\n"), pnote->descsz);
19092 return;
19093 }
19094
6ab2c4ed 19095 while (ptr < ptr_end)
9ef920e9 19096 {
1fc87489 19097 unsigned int j;
6ab2c4ed
MC
19098 unsigned int type;
19099 unsigned int datasz;
19100
19101 if ((size_t) (ptr_end - ptr) < 8)
19102 {
19103 printf (_("<corrupt descsz: %#lx>\n"), pnote->descsz);
19104 break;
19105 }
19106
19107 type = byte_get (ptr, 4);
19108 datasz = byte_get (ptr + 4, 4);
9ef920e9 19109
1fc87489 19110 ptr += 8;
9ef920e9 19111
6ab2c4ed 19112 if (datasz > (size_t) (ptr_end - ptr))
9ef920e9 19113 {
1fc87489
L
19114 printf (_("<corrupt type (%#x) datasz: %#x>\n"),
19115 type, datasz);
9ef920e9 19116 break;
1fc87489 19117 }
9ef920e9 19118
1fc87489
L
19119 if (type >= GNU_PROPERTY_LOPROC && type <= GNU_PROPERTY_HIPROC)
19120 {
dda8d76d
NC
19121 if (filedata->file_header.e_machine == EM_X86_64
19122 || filedata->file_header.e_machine == EM_IAMCU
19123 || filedata->file_header.e_machine == EM_386)
1fc87489 19124 {
aa7bca9b
L
19125 unsigned int bitmask;
19126
19127 if (datasz == 4)
0a59decb 19128 bitmask = byte_get (ptr, 4);
aa7bca9b
L
19129 else
19130 bitmask = 0;
19131
1fc87489
L
19132 switch (type)
19133 {
19134 case GNU_PROPERTY_X86_ISA_1_USED:
1fc87489 19135 if (datasz != 4)
aa7bca9b
L
19136 printf (_("x86 ISA used: <corrupt length: %#x> "),
19137 datasz);
1fc87489 19138 else
aa7bca9b
L
19139 {
19140 printf ("x86 ISA used: ");
19141 decode_x86_isa (bitmask);
19142 }
1fc87489 19143 goto next;
9ef920e9 19144
1fc87489 19145 case GNU_PROPERTY_X86_ISA_1_NEEDED:
1fc87489 19146 if (datasz != 4)
aa7bca9b
L
19147 printf (_("x86 ISA needed: <corrupt length: %#x> "),
19148 datasz);
1fc87489 19149 else
aa7bca9b
L
19150 {
19151 printf ("x86 ISA needed: ");
19152 decode_x86_isa (bitmask);
19153 }
1fc87489 19154 goto next;
9ef920e9 19155
ee2fdd6f 19156 case GNU_PROPERTY_X86_FEATURE_1_AND:
ee2fdd6f 19157 if (datasz != 4)
aa7bca9b
L
19158 printf (_("x86 feature: <corrupt length: %#x> "),
19159 datasz);
ee2fdd6f 19160 else
aa7bca9b
L
19161 {
19162 printf ("x86 feature: ");
a9eafb08
L
19163 decode_x86_feature_1 (bitmask);
19164 }
19165 goto next;
19166
19167 case GNU_PROPERTY_X86_FEATURE_2_USED:
19168 if (datasz != 4)
19169 printf (_("x86 feature used: <corrupt length: %#x> "),
19170 datasz);
19171 else
19172 {
19173 printf ("x86 feature used: ");
19174 decode_x86_feature_2 (bitmask);
19175 }
19176 goto next;
19177
19178 case GNU_PROPERTY_X86_FEATURE_2_NEEDED:
19179 if (datasz != 4)
19180 printf (_("x86 feature needed: <corrupt length: %#x> "), datasz);
19181 else
19182 {
19183 printf ("x86 feature needed: ");
19184 decode_x86_feature_2 (bitmask);
19185 }
19186 goto next;
19187
19188 case GNU_PROPERTY_X86_COMPAT_ISA_1_USED:
19189 if (datasz != 4)
19190 printf (_("x86 ISA used: <corrupt length: %#x> "),
19191 datasz);
19192 else
19193 {
19194 printf ("x86 ISA used: ");
19195 decode_x86_compat_isa (bitmask);
19196 }
19197 goto next;
19198
19199 case GNU_PROPERTY_X86_COMPAT_ISA_1_NEEDED:
19200 if (datasz != 4)
19201 printf (_("x86 ISA needed: <corrupt length: %#x> "),
19202 datasz);
19203 else
19204 {
19205 printf ("x86 ISA needed: ");
19206 decode_x86_compat_isa (bitmask);
aa7bca9b 19207 }
ee2fdd6f
L
19208 goto next;
19209
32930e4e
L
19210 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_USED:
19211 if (datasz != 4)
19212 printf (_("x86 ISA used: <corrupt length: %#x> "),
19213 datasz);
19214 else
19215 {
19216 printf ("x86 ISA used: ");
19217 decode_x86_compat_2_isa (bitmask);
19218 }
19219 goto next;
19220
19221 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_NEEDED:
19222 if (datasz != 4)
19223 printf (_("x86 ISA needed: <corrupt length: %#x> "),
19224 datasz);
19225 else
19226 {
19227 printf ("x86 ISA needed: ");
19228 decode_x86_compat_2_isa (bitmask);
19229 }
19230 goto next;
19231
1fc87489
L
19232 default:
19233 break;
19234 }
19235 }
cd702818
SD
19236 else if (filedata->file_header.e_machine == EM_AARCH64)
19237 {
19238 if (type == GNU_PROPERTY_AARCH64_FEATURE_1_AND)
19239 {
19240 printf ("AArch64 feature: ");
19241 if (datasz != 4)
19242 printf (_("<corrupt length: %#x> "), datasz);
19243 else
19244 decode_aarch64_feature_1_and (byte_get (ptr, 4));
19245 goto next;
19246 }
19247 }
1fc87489
L
19248 }
19249 else
19250 {
19251 switch (type)
9ef920e9 19252 {
1fc87489
L
19253 case GNU_PROPERTY_STACK_SIZE:
19254 printf (_("stack size: "));
19255 if (datasz != size)
19256 printf (_("<corrupt length: %#x> "), datasz);
19257 else
19258 printf ("%#lx", (unsigned long) byte_get (ptr, size));
19259 goto next;
19260
19261 case GNU_PROPERTY_NO_COPY_ON_PROTECTED:
19262 printf ("no copy on protected ");
19263 if (datasz)
19264 printf (_("<corrupt length: %#x> "), datasz);
19265 goto next;
19266
19267 default:
9ef920e9
NC
19268 break;
19269 }
9ef920e9
NC
19270 }
19271
1fc87489
L
19272 if (type < GNU_PROPERTY_LOPROC)
19273 printf (_("<unknown type %#x data: "), type);
19274 else if (type < GNU_PROPERTY_LOUSER)
8c3853d9 19275 printf (_("<processor-specific type %#x data: "), type);
1fc87489
L
19276 else
19277 printf (_("<application-specific type %#x data: "), type);
19278 for (j = 0; j < datasz; ++j)
19279 printf ("%02x ", ptr[j] & 0xff);
19280 printf (">");
19281
dc1e8a47 19282 next:
9ef920e9 19283 ptr += ((datasz + (size - 1)) & ~ (size - 1));
1fc87489
L
19284 if (ptr == ptr_end)
19285 break;
1fc87489 19286
6ab2c4ed
MC
19287 if (do_wide)
19288 printf (", ");
19289 else
19290 printf ("\n\t");
9ef920e9
NC
19291 }
19292
19293 printf ("\n");
19294}
19295
015dc7e1 19296static bool
dda8d76d 19297print_gnu_note (Filedata * filedata, Elf_Internal_Note *pnote)
664f90a3 19298{
1449284b 19299 /* NB/ Keep this switch statement in sync with get_gnu_elf_note_type (). */
664f90a3
TT
19300 switch (pnote->type)
19301 {
19302 case NT_GNU_BUILD_ID:
19303 {
19304 unsigned long i;
19305
19306 printf (_(" Build ID: "));
19307 for (i = 0; i < pnote->descsz; ++i)
19308 printf ("%02x", pnote->descdata[i] & 0xff);
9cf03b7e 19309 printf ("\n");
664f90a3
TT
19310 }
19311 break;
19312
19313 case NT_GNU_ABI_TAG:
19314 {
19315 unsigned long os, major, minor, subminor;
19316 const char *osname;
19317
3102e897
NC
19318 /* PR 17531: file: 030-599401-0.004. */
19319 if (pnote->descsz < 16)
19320 {
19321 printf (_(" <corrupt GNU_ABI_TAG>\n"));
19322 break;
19323 }
19324
664f90a3
TT
19325 os = byte_get ((unsigned char *) pnote->descdata, 4);
19326 major = byte_get ((unsigned char *) pnote->descdata + 4, 4);
19327 minor = byte_get ((unsigned char *) pnote->descdata + 8, 4);
19328 subminor = byte_get ((unsigned char *) pnote->descdata + 12, 4);
19329
19330 switch (os)
19331 {
19332 case GNU_ABI_TAG_LINUX:
19333 osname = "Linux";
19334 break;
19335 case GNU_ABI_TAG_HURD:
19336 osname = "Hurd";
19337 break;
19338 case GNU_ABI_TAG_SOLARIS:
19339 osname = "Solaris";
19340 break;
19341 case GNU_ABI_TAG_FREEBSD:
19342 osname = "FreeBSD";
19343 break;
19344 case GNU_ABI_TAG_NETBSD:
19345 osname = "NetBSD";
19346 break;
14ae95f2
RM
19347 case GNU_ABI_TAG_SYLLABLE:
19348 osname = "Syllable";
19349 break;
19350 case GNU_ABI_TAG_NACL:
19351 osname = "NaCl";
19352 break;
664f90a3
TT
19353 default:
19354 osname = "Unknown";
19355 break;
19356 }
19357
19358 printf (_(" OS: %s, ABI: %ld.%ld.%ld\n"), osname,
19359 major, minor, subminor);
19360 }
19361 break;
926c5385
CC
19362
19363 case NT_GNU_GOLD_VERSION:
19364 {
19365 unsigned long i;
19366
19367 printf (_(" Version: "));
19368 for (i = 0; i < pnote->descsz && pnote->descdata[i] != '\0'; ++i)
19369 printf ("%c", pnote->descdata[i]);
19370 printf ("\n");
19371 }
19372 break;
1449284b
NC
19373
19374 case NT_GNU_HWCAP:
19375 {
19376 unsigned long num_entries, mask;
19377
19378 /* Hardware capabilities information. Word 0 is the number of entries.
19379 Word 1 is a bitmask of enabled entries. The rest of the descriptor
19380 is a series of entries, where each entry is a single byte followed
19381 by a nul terminated string. The byte gives the bit number to test
19382 if enabled in the bitmask. */
19383 printf (_(" Hardware Capabilities: "));
19384 if (pnote->descsz < 8)
19385 {
32ec8896 19386 error (_("<corrupt GNU_HWCAP>\n"));
015dc7e1 19387 return false;
1449284b
NC
19388 }
19389 num_entries = byte_get ((unsigned char *) pnote->descdata, 4);
19390 mask = byte_get ((unsigned char *) pnote->descdata + 4, 4);
19391 printf (_("num entries: %ld, enabled mask: %lx\n"), num_entries, mask);
19392 /* FIXME: Add code to display the entries... */
19393 }
19394 break;
19395
9ef920e9 19396 case NT_GNU_PROPERTY_TYPE_0:
dda8d76d 19397 print_gnu_property_note (filedata, pnote);
9ef920e9 19398 break;
9abca702 19399
1449284b
NC
19400 default:
19401 /* Handle unrecognised types. An error message should have already been
19402 created by get_gnu_elf_note_type(), so all that we need to do is to
19403 display the data. */
19404 {
19405 unsigned long i;
19406
19407 printf (_(" Description data: "));
19408 for (i = 0; i < pnote->descsz; ++i)
19409 printf ("%02x ", pnote->descdata[i] & 0xff);
19410 printf ("\n");
19411 }
19412 break;
664f90a3
TT
19413 }
19414
015dc7e1 19415 return true;
664f90a3
TT
19416}
19417
685080f2
NC
19418static const char *
19419get_v850_elf_note_type (enum v850_notes n_type)
19420{
19421 static char buff[64];
19422
19423 switch (n_type)
19424 {
19425 case V850_NOTE_ALIGNMENT: return _("Alignment of 8-byte objects");
19426 case V850_NOTE_DATA_SIZE: return _("Sizeof double and long double");
19427 case V850_NOTE_FPU_INFO: return _("Type of FPU support needed");
19428 case V850_NOTE_SIMD_INFO: return _("Use of SIMD instructions");
19429 case V850_NOTE_CACHE_INFO: return _("Use of cache");
19430 case V850_NOTE_MMU_INFO: return _("Use of MMU");
19431 default:
19432 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), n_type);
19433 return buff;
19434 }
19435}
19436
015dc7e1 19437static bool
685080f2
NC
19438print_v850_note (Elf_Internal_Note * pnote)
19439{
19440 unsigned int val;
19441
19442 if (pnote->descsz != 4)
015dc7e1 19443 return false;
32ec8896 19444
685080f2
NC
19445 val = byte_get ((unsigned char *) pnote->descdata, pnote->descsz);
19446
19447 if (val == 0)
19448 {
19449 printf (_("not set\n"));
015dc7e1 19450 return true;
685080f2
NC
19451 }
19452
19453 switch (pnote->type)
19454 {
19455 case V850_NOTE_ALIGNMENT:
19456 switch (val)
19457 {
015dc7e1
AM
19458 case EF_RH850_DATA_ALIGN4: printf (_("4-byte\n")); return true;
19459 case EF_RH850_DATA_ALIGN8: printf (_("8-byte\n")); return true;
685080f2
NC
19460 }
19461 break;
14ae95f2 19462
685080f2
NC
19463 case V850_NOTE_DATA_SIZE:
19464 switch (val)
19465 {
015dc7e1
AM
19466 case EF_RH850_DOUBLE32: printf (_("4-bytes\n")); return true;
19467 case EF_RH850_DOUBLE64: printf (_("8-bytes\n")); return true;
685080f2
NC
19468 }
19469 break;
14ae95f2 19470
685080f2
NC
19471 case V850_NOTE_FPU_INFO:
19472 switch (val)
19473 {
015dc7e1
AM
19474 case EF_RH850_FPU20: printf (_("FPU-2.0\n")); return true;
19475 case EF_RH850_FPU30: printf (_("FPU-3.0\n")); return true;
685080f2
NC
19476 }
19477 break;
14ae95f2 19478
685080f2
NC
19479 case V850_NOTE_MMU_INFO:
19480 case V850_NOTE_CACHE_INFO:
19481 case V850_NOTE_SIMD_INFO:
19482 if (val == EF_RH850_SIMD)
19483 {
19484 printf (_("yes\n"));
015dc7e1 19485 return true;
685080f2
NC
19486 }
19487 break;
19488
19489 default:
19490 /* An 'unknown note type' message will already have been displayed. */
19491 break;
19492 }
19493
19494 printf (_("unknown value: %x\n"), val);
015dc7e1 19495 return false;
685080f2
NC
19496}
19497
015dc7e1 19498static bool
c6056a74
SF
19499process_netbsd_elf_note (Elf_Internal_Note * pnote)
19500{
19501 unsigned int version;
19502
19503 switch (pnote->type)
19504 {
19505 case NT_NETBSD_IDENT:
b966f55f
AM
19506 if (pnote->descsz < 1)
19507 break;
c6056a74
SF
19508 version = byte_get ((unsigned char *) pnote->descdata, sizeof (version));
19509 if ((version / 10000) % 100)
b966f55f 19510 printf (" NetBSD\t\t0x%08lx\tIDENT %u (%u.%u%s%c)\n", pnote->descsz,
c6056a74
SF
19511 version, version / 100000000, (version / 1000000) % 100,
19512 (version / 10000) % 100 > 26 ? "Z" : "",
15f205b1 19513 'A' + (version / 10000) % 26);
c6056a74
SF
19514 else
19515 printf (" NetBSD\t\t0x%08lx\tIDENT %u (%u.%u.%u)\n", pnote->descsz,
b966f55f 19516 version, version / 100000000, (version / 1000000) % 100,
15f205b1 19517 (version / 100) % 100);
015dc7e1 19518 return true;
c6056a74
SF
19519
19520 case NT_NETBSD_MARCH:
9abca702 19521 printf (" NetBSD\t\t0x%08lx\tMARCH <%s>\n", pnote->descsz,
c6056a74 19522 pnote->descdata);
015dc7e1 19523 return true;
c6056a74 19524
9abca702 19525 case NT_NETBSD_PAX:
b966f55f
AM
19526 if (pnote->descsz < 1)
19527 break;
9abca702
CZ
19528 version = byte_get ((unsigned char *) pnote->descdata, sizeof (version));
19529 printf (" NetBSD\t\t0x%08lx\tPaX <%s%s%s%s%s%s>\n", pnote->descsz,
19530 ((version & NT_NETBSD_PAX_MPROTECT) ? "+mprotect" : ""),
19531 ((version & NT_NETBSD_PAX_NOMPROTECT) ? "-mprotect" : ""),
19532 ((version & NT_NETBSD_PAX_GUARD) ? "+guard" : ""),
19533 ((version & NT_NETBSD_PAX_NOGUARD) ? "-guard" : ""),
19534 ((version & NT_NETBSD_PAX_ASLR) ? "+ASLR" : ""),
19535 ((version & NT_NETBSD_PAX_NOASLR) ? "-ASLR" : ""));
015dc7e1 19536 return true;
c6056a74 19537 }
b966f55f
AM
19538
19539 printf (" NetBSD\t0x%08lx\tUnknown note type: (0x%08lx)\n",
19540 pnote->descsz, pnote->type);
015dc7e1 19541 return false;
c6056a74
SF
19542}
19543
f4ddf30f 19544static const char *
dda8d76d 19545get_freebsd_elfcore_note_type (Filedata * filedata, unsigned e_type)
f4ddf30f 19546{
f4ddf30f
JB
19547 switch (e_type)
19548 {
19549 case NT_FREEBSD_THRMISC:
19550 return _("NT_THRMISC (thrmisc structure)");
19551 case NT_FREEBSD_PROCSTAT_PROC:
19552 return _("NT_PROCSTAT_PROC (proc data)");
19553 case NT_FREEBSD_PROCSTAT_FILES:
19554 return _("NT_PROCSTAT_FILES (files data)");
19555 case NT_FREEBSD_PROCSTAT_VMMAP:
19556 return _("NT_PROCSTAT_VMMAP (vmmap data)");
19557 case NT_FREEBSD_PROCSTAT_GROUPS:
19558 return _("NT_PROCSTAT_GROUPS (groups data)");
19559 case NT_FREEBSD_PROCSTAT_UMASK:
19560 return _("NT_PROCSTAT_UMASK (umask data)");
19561 case NT_FREEBSD_PROCSTAT_RLIMIT:
19562 return _("NT_PROCSTAT_RLIMIT (rlimit data)");
19563 case NT_FREEBSD_PROCSTAT_OSREL:
19564 return _("NT_PROCSTAT_OSREL (osreldate data)");
19565 case NT_FREEBSD_PROCSTAT_PSSTRINGS:
19566 return _("NT_PROCSTAT_PSSTRINGS (ps_strings data)");
19567 case NT_FREEBSD_PROCSTAT_AUXV:
19568 return _("NT_PROCSTAT_AUXV (auxv data)");
0b9305ed
JB
19569 case NT_FREEBSD_PTLWPINFO:
19570 return _("NT_PTLWPINFO (ptrace_lwpinfo structure)");
f4ddf30f 19571 }
dda8d76d 19572 return get_note_type (filedata, e_type);
f4ddf30f
JB
19573}
19574
9437c45b 19575static const char *
dda8d76d 19576get_netbsd_elfcore_note_type (Filedata * filedata, unsigned e_type)
9437c45b
JT
19577{
19578 static char buff[64];
19579
540e6170
CZ
19580 switch (e_type)
19581 {
19582 case NT_NETBSDCORE_PROCINFO:
19583 /* NetBSD core "procinfo" structure. */
19584 return _("NetBSD procinfo structure");
9437c45b 19585
540e6170
CZ
19586#ifdef NT_NETBSDCORE_AUXV
19587 case NT_NETBSDCORE_AUXV:
19588 return _("NetBSD ELF auxiliary vector data");
19589#endif
9437c45b 19590
06d949ec
KR
19591#ifdef NT_NETBSDCORE_LWPSTATUS
19592 case NT_NETBSDCORE_LWPSTATUS:
19593 return _("PT_LWPSTATUS (ptrace_lwpstatus structure)");
19594#endif
19595
540e6170 19596 default:
06d949ec 19597 /* As of Jan 2020 there are no other machine-independent notes
540e6170
CZ
19598 defined for NetBSD core files. If the note type is less
19599 than the start of the machine-dependent note types, we don't
19600 understand it. */
19601
19602 if (e_type < NT_NETBSDCORE_FIRSTMACH)
19603 {
19604 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
19605 return buff;
19606 }
19607 break;
9437c45b
JT
19608 }
19609
dda8d76d 19610 switch (filedata->file_header.e_machine)
9437c45b
JT
19611 {
19612 /* On the Alpha, SPARC (32-bit and 64-bit), PT_GETREGS == mach+0
19613 and PT_GETFPREGS == mach+2. */
19614
19615 case EM_OLD_ALPHA:
19616 case EM_ALPHA:
19617 case EM_SPARC:
19618 case EM_SPARC32PLUS:
19619 case EM_SPARCV9:
19620 switch (e_type)
19621 {
2b692964 19622 case NT_NETBSDCORE_FIRSTMACH + 0:
b4db1224 19623 return _("PT_GETREGS (reg structure)");
2b692964 19624 case NT_NETBSDCORE_FIRSTMACH + 2:
b4db1224 19625 return _("PT_GETFPREGS (fpreg structure)");
9437c45b
JT
19626 default:
19627 break;
19628 }
19629 break;
19630
c0d38b0e
CZ
19631 /* On SuperH, PT_GETREGS == mach+3 and PT_GETFPREGS == mach+5.
19632 There's also old PT___GETREGS40 == mach + 1 for old reg
19633 structure which lacks GBR. */
19634 case EM_SH:
19635 switch (e_type)
19636 {
19637 case NT_NETBSDCORE_FIRSTMACH + 1:
19638 return _("PT___GETREGS40 (old reg structure)");
19639 case NT_NETBSDCORE_FIRSTMACH + 3:
19640 return _("PT_GETREGS (reg structure)");
19641 case NT_NETBSDCORE_FIRSTMACH + 5:
19642 return _("PT_GETFPREGS (fpreg structure)");
19643 default:
19644 break;
19645 }
19646 break;
19647
9437c45b
JT
19648 /* On all other arch's, PT_GETREGS == mach+1 and
19649 PT_GETFPREGS == mach+3. */
19650 default:
19651 switch (e_type)
19652 {
2b692964 19653 case NT_NETBSDCORE_FIRSTMACH + 1:
b4db1224 19654 return _("PT_GETREGS (reg structure)");
2b692964 19655 case NT_NETBSDCORE_FIRSTMACH + 3:
b4db1224 19656 return _("PT_GETFPREGS (fpreg structure)");
9437c45b
JT
19657 default:
19658 break;
19659 }
19660 }
19661
9cf03b7e 19662 snprintf (buff, sizeof (buff), "PT_FIRSTMACH+%d",
e9e44622 19663 e_type - NT_NETBSDCORE_FIRSTMACH);
9437c45b
JT
19664 return buff;
19665}
19666
70616151
TT
19667static const char *
19668get_stapsdt_note_type (unsigned e_type)
19669{
19670 static char buff[64];
19671
19672 switch (e_type)
19673 {
19674 case NT_STAPSDT:
19675 return _("NT_STAPSDT (SystemTap probe descriptors)");
19676
19677 default:
19678 break;
19679 }
19680
19681 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
19682 return buff;
19683}
19684
015dc7e1 19685static bool
c6a9fc58
TT
19686print_stapsdt_note (Elf_Internal_Note *pnote)
19687{
3ca60c57
NC
19688 size_t len, maxlen;
19689 unsigned long addr_size = is_32bit_elf ? 4 : 8;
c6a9fc58
TT
19690 char *data = pnote->descdata;
19691 char *data_end = pnote->descdata + pnote->descsz;
19692 bfd_vma pc, base_addr, semaphore;
19693 char *provider, *probe, *arg_fmt;
19694
3ca60c57
NC
19695 if (pnote->descsz < (addr_size * 3))
19696 goto stapdt_note_too_small;
19697
c6a9fc58
TT
19698 pc = byte_get ((unsigned char *) data, addr_size);
19699 data += addr_size;
3ca60c57 19700
c6a9fc58
TT
19701 base_addr = byte_get ((unsigned char *) data, addr_size);
19702 data += addr_size;
3ca60c57 19703
c6a9fc58
TT
19704 semaphore = byte_get ((unsigned char *) data, addr_size);
19705 data += addr_size;
19706
3ca60c57
NC
19707 if (data >= data_end)
19708 goto stapdt_note_too_small;
19709 maxlen = data_end - data;
19710 len = strnlen (data, maxlen);
19711 if (len < maxlen)
19712 {
19713 provider = data;
19714 data += len + 1;
19715 }
19716 else
19717 goto stapdt_note_too_small;
19718
19719 if (data >= data_end)
19720 goto stapdt_note_too_small;
19721 maxlen = data_end - data;
19722 len = strnlen (data, maxlen);
19723 if (len < maxlen)
19724 {
19725 probe = data;
19726 data += len + 1;
19727 }
19728 else
19729 goto stapdt_note_too_small;
9abca702 19730
3ca60c57
NC
19731 if (data >= data_end)
19732 goto stapdt_note_too_small;
19733 maxlen = data_end - data;
19734 len = strnlen (data, maxlen);
19735 if (len < maxlen)
19736 {
19737 arg_fmt = data;
19738 data += len + 1;
19739 }
19740 else
19741 goto stapdt_note_too_small;
c6a9fc58
TT
19742
19743 printf (_(" Provider: %s\n"), provider);
19744 printf (_(" Name: %s\n"), probe);
19745 printf (_(" Location: "));
19746 print_vma (pc, FULL_HEX);
19747 printf (_(", Base: "));
19748 print_vma (base_addr, FULL_HEX);
19749 printf (_(", Semaphore: "));
19750 print_vma (semaphore, FULL_HEX);
9cf03b7e 19751 printf ("\n");
c6a9fc58
TT
19752 printf (_(" Arguments: %s\n"), arg_fmt);
19753
19754 return data == data_end;
3ca60c57
NC
19755
19756 stapdt_note_too_small:
19757 printf (_(" <corrupt - note is too small>\n"));
19758 error (_("corrupt stapdt note - the data size is too small\n"));
015dc7e1 19759 return false;
c6a9fc58
TT
19760}
19761
00e98fc7
TG
19762static const char *
19763get_ia64_vms_note_type (unsigned e_type)
19764{
19765 static char buff[64];
19766
19767 switch (e_type)
19768 {
19769 case NT_VMS_MHD:
19770 return _("NT_VMS_MHD (module header)");
19771 case NT_VMS_LNM:
19772 return _("NT_VMS_LNM (language name)");
19773 case NT_VMS_SRC:
19774 return _("NT_VMS_SRC (source files)");
19775 case NT_VMS_TITLE:
9cf03b7e 19776 return "NT_VMS_TITLE";
00e98fc7
TG
19777 case NT_VMS_EIDC:
19778 return _("NT_VMS_EIDC (consistency check)");
19779 case NT_VMS_FPMODE:
19780 return _("NT_VMS_FPMODE (FP mode)");
19781 case NT_VMS_LINKTIME:
9cf03b7e 19782 return "NT_VMS_LINKTIME";
00e98fc7
TG
19783 case NT_VMS_IMGNAM:
19784 return _("NT_VMS_IMGNAM (image name)");
19785 case NT_VMS_IMGID:
19786 return _("NT_VMS_IMGID (image id)");
19787 case NT_VMS_LINKID:
19788 return _("NT_VMS_LINKID (link id)");
19789 case NT_VMS_IMGBID:
19790 return _("NT_VMS_IMGBID (build id)");
19791 case NT_VMS_GSTNAM:
19792 return _("NT_VMS_GSTNAM (sym table name)");
19793 case NT_VMS_ORIG_DYN:
9cf03b7e 19794 return "NT_VMS_ORIG_DYN";
00e98fc7 19795 case NT_VMS_PATCHTIME:
9cf03b7e 19796 return "NT_VMS_PATCHTIME";
00e98fc7
TG
19797 default:
19798 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
19799 return buff;
19800 }
19801}
19802
015dc7e1 19803static bool
00e98fc7
TG
19804print_ia64_vms_note (Elf_Internal_Note * pnote)
19805{
8d18bf79
NC
19806 int maxlen = pnote->descsz;
19807
19808 if (maxlen < 2 || (unsigned long) maxlen != pnote->descsz)
19809 goto desc_size_fail;
19810
00e98fc7
TG
19811 switch (pnote->type)
19812 {
19813 case NT_VMS_MHD:
8d18bf79
NC
19814 if (maxlen <= 36)
19815 goto desc_size_fail;
19816
19817 int l = (int) strnlen (pnote->descdata + 34, maxlen - 34);
19818
19819 printf (_(" Creation date : %.17s\n"), pnote->descdata);
19820 printf (_(" Last patch date: %.17s\n"), pnote->descdata + 17);
19821 if (l + 34 < maxlen)
19822 {
19823 printf (_(" Module name : %s\n"), pnote->descdata + 34);
19824 if (l + 35 < maxlen)
19825 printf (_(" Module version : %s\n"), pnote->descdata + 34 + l + 1);
19826 else
19827 printf (_(" Module version : <missing>\n"));
19828 }
00e98fc7 19829 else
8d18bf79
NC
19830 {
19831 printf (_(" Module name : <missing>\n"));
19832 printf (_(" Module version : <missing>\n"));
19833 }
00e98fc7 19834 break;
8d18bf79 19835
00e98fc7 19836 case NT_VMS_LNM:
8d18bf79 19837 printf (_(" Language: %.*s\n"), maxlen, pnote->descdata);
00e98fc7 19838 break;
8d18bf79 19839
00e98fc7
TG
19840#ifdef BFD64
19841 case NT_VMS_FPMODE:
9cf03b7e 19842 printf (_(" Floating Point mode: "));
8d18bf79
NC
19843 if (maxlen < 8)
19844 goto desc_size_fail;
19845 /* FIXME: Generate an error if descsz > 8 ? */
19846
4a5cb34f 19847 printf ("0x%016" BFD_VMA_FMT "x\n",
8d18bf79 19848 (bfd_vma) byte_get ((unsigned char *)pnote->descdata, 8));
00e98fc7 19849 break;
8d18bf79 19850
00e98fc7
TG
19851 case NT_VMS_LINKTIME:
19852 printf (_(" Link time: "));
8d18bf79
NC
19853 if (maxlen < 8)
19854 goto desc_size_fail;
19855 /* FIXME: Generate an error if descsz > 8 ? */
19856
00e98fc7 19857 print_vms_time
8d18bf79 19858 ((bfd_int64_t) byte_get ((unsigned char *)pnote->descdata, 8));
00e98fc7
TG
19859 printf ("\n");
19860 break;
8d18bf79 19861
00e98fc7
TG
19862 case NT_VMS_PATCHTIME:
19863 printf (_(" Patch time: "));
8d18bf79
NC
19864 if (maxlen < 8)
19865 goto desc_size_fail;
19866 /* FIXME: Generate an error if descsz > 8 ? */
19867
00e98fc7 19868 print_vms_time
8d18bf79 19869 ((bfd_int64_t) byte_get ((unsigned char *)pnote->descdata, 8));
00e98fc7
TG
19870 printf ("\n");
19871 break;
8d18bf79 19872
00e98fc7 19873 case NT_VMS_ORIG_DYN:
8d18bf79
NC
19874 if (maxlen < 34)
19875 goto desc_size_fail;
19876
00e98fc7
TG
19877 printf (_(" Major id: %u, minor id: %u\n"),
19878 (unsigned) byte_get ((unsigned char *)pnote->descdata, 4),
19879 (unsigned) byte_get ((unsigned char *)pnote->descdata + 4, 4));
9cf03b7e 19880 printf (_(" Last modified : "));
00e98fc7
TG
19881 print_vms_time
19882 ((bfd_int64_t) byte_get ((unsigned char *)pnote->descdata + 8, 8));
9cf03b7e 19883 printf (_("\n Link flags : "));
4a5cb34f 19884 printf ("0x%016" BFD_VMA_FMT "x\n",
948f632f 19885 (bfd_vma) byte_get ((unsigned char *)pnote->descdata + 16, 8));
00e98fc7 19886 printf (_(" Header flags: 0x%08x\n"),
948f632f 19887 (unsigned) byte_get ((unsigned char *)pnote->descdata + 24, 4));
8d18bf79 19888 printf (_(" Image id : %.*s\n"), maxlen - 32, pnote->descdata + 32);
00e98fc7
TG
19889 break;
19890#endif
8d18bf79 19891
00e98fc7 19892 case NT_VMS_IMGNAM:
8d18bf79 19893 printf (_(" Image name: %.*s\n"), maxlen, pnote->descdata);
00e98fc7 19894 break;
8d18bf79 19895
00e98fc7 19896 case NT_VMS_GSTNAM:
8d18bf79 19897 printf (_(" Global symbol table name: %.*s\n"), maxlen, pnote->descdata);
00e98fc7 19898 break;
8d18bf79 19899
00e98fc7 19900 case NT_VMS_IMGID:
8d18bf79 19901 printf (_(" Image id: %.*s\n"), maxlen, pnote->descdata);
00e98fc7 19902 break;
8d18bf79 19903
00e98fc7 19904 case NT_VMS_LINKID:
8d18bf79 19905 printf (_(" Linker id: %.*s\n"), maxlen, pnote->descdata);
00e98fc7 19906 break;
8d18bf79 19907
00e98fc7 19908 default:
015dc7e1 19909 return false;
00e98fc7 19910 }
8d18bf79 19911
015dc7e1 19912 return true;
8d18bf79
NC
19913
19914 desc_size_fail:
19915 printf (_(" <corrupt - data size is too small>\n"));
19916 error (_("corrupt IA64 note: data size is too small\n"));
015dc7e1 19917 return false;
00e98fc7
TG
19918}
19919
fd486f32
AM
19920struct build_attr_cache {
19921 Filedata *filedata;
19922 char *strtab;
19923 unsigned long strtablen;
19924 Elf_Internal_Sym *symtab;
19925 unsigned long nsyms;
19926} ba_cache;
19927
6f156d7a
NC
19928/* Find the symbol associated with a build attribute that is attached
19929 to address OFFSET. If PNAME is non-NULL then store the name of
19930 the symbol (if found) in the provided pointer, Returns NULL if a
19931 symbol could not be found. */
c799a79d 19932
6f156d7a 19933static Elf_Internal_Sym *
015dc7e1
AM
19934get_symbol_for_build_attribute (Filedata *filedata,
19935 unsigned long offset,
19936 bool is_open_attr,
19937 const char **pname)
9ef920e9 19938{
fd486f32
AM
19939 Elf_Internal_Sym *saved_sym = NULL;
19940 Elf_Internal_Sym *sym;
9ef920e9 19941
dda8d76d 19942 if (filedata->section_headers != NULL
fd486f32 19943 && (ba_cache.filedata == NULL || filedata != ba_cache.filedata))
9ef920e9 19944 {
c799a79d 19945 Elf_Internal_Shdr * symsec;
9ef920e9 19946
fd486f32
AM
19947 free (ba_cache.strtab);
19948 ba_cache.strtab = NULL;
19949 free (ba_cache.symtab);
19950 ba_cache.symtab = NULL;
19951
c799a79d 19952 /* Load the symbol and string sections. */
dda8d76d
NC
19953 for (symsec = filedata->section_headers;
19954 symsec < filedata->section_headers + filedata->file_header.e_shnum;
c799a79d 19955 symsec ++)
9ef920e9 19956 {
28d13567
AM
19957 if (symsec->sh_type == SHT_SYMTAB
19958 && get_symtab (filedata, symsec,
19959 &ba_cache.symtab, &ba_cache.nsyms,
19960 &ba_cache.strtab, &ba_cache.strtablen))
19961 break;
9ef920e9 19962 }
fd486f32 19963 ba_cache.filedata = filedata;
9ef920e9
NC
19964 }
19965
fd486f32 19966 if (ba_cache.symtab == NULL)
6f156d7a 19967 return NULL;
9ef920e9 19968
c799a79d 19969 /* Find a symbol whose value matches offset. */
fd486f32 19970 for (sym = ba_cache.symtab; sym < ba_cache.symtab + ba_cache.nsyms; sym ++)
c799a79d
NC
19971 if (sym->st_value == offset)
19972 {
fd486f32 19973 if (sym->st_name >= ba_cache.strtablen)
c799a79d
NC
19974 /* Huh ? This should not happen. */
19975 continue;
9ef920e9 19976
fd486f32 19977 if (ba_cache.strtab[sym->st_name] == 0)
c799a79d 19978 continue;
9ef920e9 19979
8fd75781
NC
19980 /* The AArch64 and ARM architectures define mapping symbols
19981 (eg $d, $x, $t) which we want to ignore. */
fd486f32
AM
19982 if (ba_cache.strtab[sym->st_name] == '$'
19983 && ba_cache.strtab[sym->st_name + 1] != 0
19984 && ba_cache.strtab[sym->st_name + 2] == 0)
8fd75781
NC
19985 continue;
19986
c799a79d
NC
19987 if (is_open_attr)
19988 {
19989 /* For OPEN attributes we prefer GLOBAL over LOCAL symbols
19990 and FILE or OBJECT symbols over NOTYPE symbols. We skip
19991 FUNC symbols entirely. */
19992 switch (ELF_ST_TYPE (sym->st_info))
19993 {
c799a79d 19994 case STT_OBJECT:
6f156d7a 19995 case STT_FILE:
c799a79d 19996 saved_sym = sym;
6f156d7a
NC
19997 if (sym->st_size)
19998 {
19999 /* If the symbol has a size associated
20000 with it then we can stop searching. */
fd486f32 20001 sym = ba_cache.symtab + ba_cache.nsyms;
6f156d7a 20002 }
c799a79d 20003 continue;
9ef920e9 20004
c799a79d
NC
20005 case STT_FUNC:
20006 /* Ignore function symbols. */
20007 continue;
20008
20009 default:
20010 break;
20011 }
20012
20013 switch (ELF_ST_BIND (sym->st_info))
9ef920e9 20014 {
c799a79d
NC
20015 case STB_GLOBAL:
20016 if (saved_sym == NULL
20017 || ELF_ST_TYPE (saved_sym->st_info) != STT_OBJECT)
20018 saved_sym = sym;
20019 break;
c871dade 20020
c799a79d
NC
20021 case STB_LOCAL:
20022 if (saved_sym == NULL)
20023 saved_sym = sym;
20024 break;
20025
20026 default:
9ef920e9
NC
20027 break;
20028 }
20029 }
c799a79d
NC
20030 else
20031 {
20032 if (ELF_ST_TYPE (sym->st_info) != STT_FUNC)
20033 continue;
20034
20035 saved_sym = sym;
20036 break;
20037 }
20038 }
20039
6f156d7a 20040 if (saved_sym && pname)
fd486f32 20041 * pname = ba_cache.strtab + saved_sym->st_name;
6f156d7a
NC
20042
20043 return saved_sym;
c799a79d
NC
20044}
20045
d20e98ab
NC
20046/* Returns true iff addr1 and addr2 are in the same section. */
20047
015dc7e1 20048static bool
d20e98ab
NC
20049same_section (Filedata * filedata, unsigned long addr1, unsigned long addr2)
20050{
20051 Elf_Internal_Shdr * a1;
20052 Elf_Internal_Shdr * a2;
20053
20054 a1 = find_section_by_address (filedata, addr1);
20055 a2 = find_section_by_address (filedata, addr2);
9abca702 20056
d20e98ab
NC
20057 return a1 == a2 && a1 != NULL;
20058}
20059
015dc7e1 20060static bool
dda8d76d
NC
20061print_gnu_build_attribute_description (Elf_Internal_Note * pnote,
20062 Filedata * filedata)
c799a79d 20063{
015dc7e1
AM
20064 static unsigned long global_offset = 0;
20065 static unsigned long global_end = 0;
20066 static unsigned long func_offset = 0;
20067 static unsigned long func_end = 0;
c871dade 20068
015dc7e1
AM
20069 Elf_Internal_Sym *sym;
20070 const char *name;
20071 unsigned long start;
20072 unsigned long end;
20073 bool is_open_attr = pnote->type == NT_GNU_BUILD_ATTRIBUTE_OPEN;
6f156d7a
NC
20074
20075 switch (pnote->descsz)
c799a79d 20076 {
6f156d7a
NC
20077 case 0:
20078 /* A zero-length description means that the range of
20079 the previous note of the same type should be used. */
c799a79d 20080 if (is_open_attr)
c871dade 20081 {
6f156d7a
NC
20082 if (global_end > global_offset)
20083 printf (_(" Applies to region from %#lx to %#lx\n"),
20084 global_offset, global_end);
20085 else
20086 printf (_(" Applies to region from %#lx\n"), global_offset);
c799a79d
NC
20087 }
20088 else
20089 {
6f156d7a
NC
20090 if (func_end > func_offset)
20091 printf (_(" Applies to region from %#lx to %#lx\n"), func_offset, func_end);
20092 else
20093 printf (_(" Applies to region from %#lx\n"), func_offset);
c871dade 20094 }
015dc7e1 20095 return true;
9ef920e9 20096
6f156d7a
NC
20097 case 4:
20098 start = byte_get ((unsigned char *) pnote->descdata, 4);
20099 end = 0;
20100 break;
20101
20102 case 8:
c74147bb
NC
20103 start = byte_get ((unsigned char *) pnote->descdata, 4);
20104 end = byte_get ((unsigned char *) pnote->descdata + 4, 4);
6f156d7a
NC
20105 break;
20106
20107 case 16:
20108 start = byte_get ((unsigned char *) pnote->descdata, 8);
20109 end = byte_get ((unsigned char *) pnote->descdata + 8, 8);
20110 break;
9abca702 20111
6f156d7a 20112 default:
c799a79d
NC
20113 error (_(" <invalid description size: %lx>\n"), pnote->descsz);
20114 printf (_(" <invalid descsz>"));
015dc7e1 20115 return false;
c799a79d
NC
20116 }
20117
6f156d7a
NC
20118 name = NULL;
20119 sym = get_symbol_for_build_attribute (filedata, start, is_open_attr, & name);
8fd75781
NC
20120 /* As of version 5 of the annobin plugin, filename symbols are biased by 2
20121 in order to avoid them being confused with the start address of the
20122 first function in the file... */
20123 if (sym == NULL && is_open_attr)
20124 sym = get_symbol_for_build_attribute (filedata, start + 2, is_open_attr,
20125 & name);
6f156d7a
NC
20126
20127 if (end == 0 && sym != NULL && sym->st_size > 0)
20128 end = start + sym->st_size;
c799a79d
NC
20129
20130 if (is_open_attr)
20131 {
d20e98ab
NC
20132 /* FIXME: Need to properly allow for section alignment.
20133 16 is just the alignment used on x86_64. */
20134 if (global_end > 0
20135 && start > BFD_ALIGN (global_end, 16)
20136 /* Build notes are not guaranteed to be organised in order of
20137 increasing address, but we should find the all of the notes
20138 for one section in the same place. */
20139 && same_section (filedata, start, global_end))
6f156d7a
NC
20140 warn (_("Gap in build notes detected from %#lx to %#lx\n"),
20141 global_end + 1, start - 1);
20142
20143 printf (_(" Applies to region from %#lx"), start);
20144 global_offset = start;
20145
20146 if (end)
20147 {
20148 printf (_(" to %#lx"), end);
20149 global_end = end;
20150 }
c799a79d
NC
20151 }
20152 else
20153 {
6f156d7a
NC
20154 printf (_(" Applies to region from %#lx"), start);
20155 func_offset = start;
20156
20157 if (end)
20158 {
20159 printf (_(" to %#lx"), end);
20160 func_end = end;
20161 }
c799a79d
NC
20162 }
20163
6f156d7a
NC
20164 if (sym && name)
20165 printf (_(" (%s)"), name);
20166
20167 printf ("\n");
015dc7e1 20168 return true;
9ef920e9
NC
20169}
20170
015dc7e1 20171static bool
9ef920e9
NC
20172print_gnu_build_attribute_name (Elf_Internal_Note * pnote)
20173{
1d15e434
NC
20174 static const char string_expected [2] = { GNU_BUILD_ATTRIBUTE_TYPE_STRING, 0 };
20175 static const char number_expected [2] = { GNU_BUILD_ATTRIBUTE_TYPE_NUMERIC, 0 };
20176 static const char bool_expected [3] = { GNU_BUILD_ATTRIBUTE_TYPE_BOOL_TRUE, GNU_BUILD_ATTRIBUTE_TYPE_BOOL_FALSE, 0 };
9ef920e9
NC
20177 char name_type;
20178 char name_attribute;
1d15e434 20179 const char * expected_types;
9ef920e9
NC
20180 const char * name = pnote->namedata;
20181 const char * text;
88305e1b 20182 signed int left;
9ef920e9
NC
20183
20184 if (name == NULL || pnote->namesz < 2)
20185 {
20186 error (_("corrupt name field in GNU build attribute note: size = %ld\n"), pnote->namesz);
7296a62a 20187 print_symbol (-20, _(" <corrupt name>"));
015dc7e1 20188 return false;
9ef920e9
NC
20189 }
20190
6f156d7a
NC
20191 if (do_wide)
20192 left = 28;
20193 else
20194 left = 20;
88305e1b
NC
20195
20196 /* Version 2 of the spec adds a "GA" prefix to the name field. */
20197 if (name[0] == 'G' && name[1] == 'A')
20198 {
6f156d7a
NC
20199 if (pnote->namesz < 4)
20200 {
20201 error (_("corrupt name field in GNU build attribute note: size = %ld\n"), pnote->namesz);
20202 print_symbol (-20, _(" <corrupt name>"));
015dc7e1 20203 return false;
6f156d7a
NC
20204 }
20205
88305e1b
NC
20206 printf ("GA");
20207 name += 2;
20208 left -= 2;
20209 }
20210
9ef920e9
NC
20211 switch ((name_type = * name))
20212 {
20213 case GNU_BUILD_ATTRIBUTE_TYPE_NUMERIC:
20214 case GNU_BUILD_ATTRIBUTE_TYPE_STRING:
20215 case GNU_BUILD_ATTRIBUTE_TYPE_BOOL_TRUE:
20216 case GNU_BUILD_ATTRIBUTE_TYPE_BOOL_FALSE:
20217 printf ("%c", * name);
88305e1b 20218 left --;
9ef920e9
NC
20219 break;
20220 default:
20221 error (_("unrecognised attribute type in name field: %d\n"), name_type);
20222 print_symbol (-20, _("<unknown name type>"));
015dc7e1 20223 return false;
9ef920e9
NC
20224 }
20225
9ef920e9
NC
20226 ++ name;
20227 text = NULL;
20228
20229 switch ((name_attribute = * name))
20230 {
20231 case GNU_BUILD_ATTRIBUTE_VERSION:
20232 text = _("<version>");
1d15e434 20233 expected_types = string_expected;
9ef920e9
NC
20234 ++ name;
20235 break;
20236 case GNU_BUILD_ATTRIBUTE_STACK_PROT:
20237 text = _("<stack prot>");
75d7d298 20238 expected_types = "!+*";
9ef920e9
NC
20239 ++ name;
20240 break;
20241 case GNU_BUILD_ATTRIBUTE_RELRO:
20242 text = _("<relro>");
1d15e434 20243 expected_types = bool_expected;
9ef920e9
NC
20244 ++ name;
20245 break;
20246 case GNU_BUILD_ATTRIBUTE_STACK_SIZE:
20247 text = _("<stack size>");
1d15e434 20248 expected_types = number_expected;
9ef920e9
NC
20249 ++ name;
20250 break;
20251 case GNU_BUILD_ATTRIBUTE_TOOL:
20252 text = _("<tool>");
1d15e434 20253 expected_types = string_expected;
9ef920e9
NC
20254 ++ name;
20255 break;
20256 case GNU_BUILD_ATTRIBUTE_ABI:
20257 text = _("<ABI>");
20258 expected_types = "$*";
20259 ++ name;
20260 break;
20261 case GNU_BUILD_ATTRIBUTE_PIC:
20262 text = _("<PIC>");
1d15e434 20263 expected_types = number_expected;
9ef920e9
NC
20264 ++ name;
20265 break;
a8be5506
NC
20266 case GNU_BUILD_ATTRIBUTE_SHORT_ENUM:
20267 text = _("<short enum>");
1d15e434 20268 expected_types = bool_expected;
a8be5506
NC
20269 ++ name;
20270 break;
9ef920e9
NC
20271 default:
20272 if (ISPRINT (* name))
20273 {
20274 int len = strnlen (name, pnote->namesz - (name - pnote->namedata)) + 1;
20275
20276 if (len > left && ! do_wide)
20277 len = left;
75d7d298 20278 printf ("%.*s:", len, name);
9ef920e9 20279 left -= len;
0dd6ae21 20280 name += len;
9ef920e9
NC
20281 }
20282 else
20283 {
3e6b6445 20284 static char tmpbuf [128];
88305e1b 20285
3e6b6445
NC
20286 error (_("unrecognised byte in name field: %d\n"), * name);
20287 sprintf (tmpbuf, _("<unknown:_%d>"), * name);
20288 text = tmpbuf;
20289 name ++;
9ef920e9
NC
20290 }
20291 expected_types = "*$!+";
20292 break;
20293 }
20294
20295 if (text)
88305e1b 20296 left -= printf ("%s", text);
9ef920e9
NC
20297
20298 if (strchr (expected_types, name_type) == NULL)
75d7d298 20299 warn (_("attribute does not have an expected type (%c)\n"), name_type);
9ef920e9
NC
20300
20301 if ((unsigned long)(name - pnote->namedata) > pnote->namesz)
20302 {
20303 error (_("corrupt name field: namesz: %lu but parsing gets to %ld\n"),
20304 (unsigned long) pnote->namesz,
20305 (long) (name - pnote->namedata));
015dc7e1 20306 return false;
9ef920e9
NC
20307 }
20308
20309 if (left < 1 && ! do_wide)
015dc7e1 20310 return true;
9ef920e9
NC
20311
20312 switch (name_type)
20313 {
20314 case GNU_BUILD_ATTRIBUTE_TYPE_NUMERIC:
20315 {
b06b2c92 20316 unsigned int bytes;
ddef72cd
NC
20317 unsigned long long val = 0;
20318 unsigned int shift = 0;
20319 char * decoded = NULL;
20320
b06b2c92
NC
20321 bytes = pnote->namesz - (name - pnote->namedata);
20322 if (bytes > 0)
20323 /* The -1 is because the name field is always 0 terminated, and we
20324 want to be able to ensure that the shift in the while loop below
20325 will not overflow. */
20326 -- bytes;
20327
ddef72cd
NC
20328 if (bytes > sizeof (val))
20329 {
3e6b6445
NC
20330 error (_("corrupt numeric name field: too many bytes in the value: %x\n"),
20331 bytes);
20332 bytes = sizeof (val);
ddef72cd 20333 }
3e6b6445
NC
20334 /* We do not bother to warn if bytes == 0 as this can
20335 happen with some early versions of the gcc plugin. */
9ef920e9
NC
20336
20337 while (bytes --)
20338 {
54b8331d 20339 unsigned long long byte = *name++ & 0xff;
79a964dc
NC
20340
20341 val |= byte << shift;
9ef920e9
NC
20342 shift += 8;
20343 }
20344
75d7d298 20345 switch (name_attribute)
9ef920e9 20346 {
75d7d298 20347 case GNU_BUILD_ATTRIBUTE_PIC:
9ef920e9
NC
20348 switch (val)
20349 {
75d7d298
NC
20350 case 0: decoded = "static"; break;
20351 case 1: decoded = "pic"; break;
20352 case 2: decoded = "PIC"; break;
20353 case 3: decoded = "pie"; break;
20354 case 4: decoded = "PIE"; break;
20355 default: break;
9ef920e9 20356 }
75d7d298
NC
20357 break;
20358 case GNU_BUILD_ATTRIBUTE_STACK_PROT:
20359 switch (val)
9ef920e9 20360 {
75d7d298
NC
20361 /* Based upon the SPCT_FLAG_xxx enum values in gcc/cfgexpand.c. */
20362 case 0: decoded = "off"; break;
20363 case 1: decoded = "on"; break;
20364 case 2: decoded = "all"; break;
20365 case 3: decoded = "strong"; break;
20366 case 4: decoded = "explicit"; break;
20367 default: break;
9ef920e9 20368 }
75d7d298
NC
20369 break;
20370 default:
20371 break;
9ef920e9
NC
20372 }
20373
75d7d298 20374 if (decoded != NULL)
3e6b6445
NC
20375 {
20376 print_symbol (-left, decoded);
20377 left = 0;
20378 }
20379 else if (val == 0)
20380 {
20381 printf ("0x0");
20382 left -= 3;
20383 }
9ef920e9 20384 else
75d7d298
NC
20385 {
20386 if (do_wide)
ddef72cd 20387 left -= printf ("0x%llx", val);
75d7d298 20388 else
ddef72cd 20389 left -= printf ("0x%-.*llx", left, val);
75d7d298 20390 }
9ef920e9
NC
20391 }
20392 break;
20393 case GNU_BUILD_ATTRIBUTE_TYPE_STRING:
20394 left -= print_symbol (- left, name);
20395 break;
20396 case GNU_BUILD_ATTRIBUTE_TYPE_BOOL_TRUE:
20397 left -= print_symbol (- left, "true");
20398 break;
20399 case GNU_BUILD_ATTRIBUTE_TYPE_BOOL_FALSE:
20400 left -= print_symbol (- left, "false");
20401 break;
20402 }
20403
20404 if (do_wide && left > 0)
20405 printf ("%-*s", left, " ");
9abca702 20406
015dc7e1 20407 return true;
9ef920e9
NC
20408}
20409
6d118b09
NC
20410/* Note that by the ELF standard, the name field is already null byte
20411 terminated, and namesz includes the terminating null byte.
20412 I.E. the value of namesz for the name "FSF" is 4.
20413
e3c8793a 20414 If the value of namesz is zero, there is no name present. */
9ef920e9 20415
015dc7e1 20416static bool
9ef920e9 20417process_note (Elf_Internal_Note * pnote,
dda8d76d 20418 Filedata * filedata)
779fe533 20419{
2cf0635d
NC
20420 const char * name = pnote->namesz ? pnote->namedata : "(NONE)";
20421 const char * nt;
9437c45b
JT
20422
20423 if (pnote->namesz == 0)
1ec5cd37
NC
20424 /* If there is no note name, then use the default set of
20425 note type strings. */
dda8d76d 20426 nt = get_note_type (filedata, pnote->type);
1ec5cd37 20427
24d127aa 20428 else if (startswith (pnote->namedata, "GNU"))
1118d252
RM
20429 /* GNU-specific object file notes. */
20430 nt = get_gnu_elf_note_type (pnote->type);
f4ddf30f 20431
24d127aa 20432 else if (startswith (pnote->namedata, "FreeBSD"))
f4ddf30f 20433 /* FreeBSD-specific core file notes. */
dda8d76d 20434 nt = get_freebsd_elfcore_note_type (filedata, pnote->type);
1118d252 20435
24d127aa 20436 else if (startswith (pnote->namedata, "NetBSD-CORE"))
1ec5cd37 20437 /* NetBSD-specific core file notes. */
dda8d76d 20438 nt = get_netbsd_elfcore_note_type (filedata, pnote->type);
1ec5cd37 20439
24d127aa 20440 else if (startswith (pnote->namedata, "NetBSD"))
c6056a74
SF
20441 /* NetBSD-specific core file notes. */
20442 return process_netbsd_elf_note (pnote);
20443
24d127aa 20444 else if (startswith (pnote->namedata, "PaX"))
9abca702
CZ
20445 /* NetBSD-specific core file notes. */
20446 return process_netbsd_elf_note (pnote);
20447
e9b095a5 20448 else if (startswith (pnote->namedata, "SPU/"))
b15fa79e
AM
20449 {
20450 /* SPU-specific core file notes. */
20451 nt = pnote->namedata + 4;
20452 name = "SPU";
20453 }
20454
24d127aa 20455 else if (startswith (pnote->namedata, "IPF/VMS"))
00e98fc7
TG
20456 /* VMS/ia64-specific file notes. */
20457 nt = get_ia64_vms_note_type (pnote->type);
20458
24d127aa 20459 else if (startswith (pnote->namedata, "stapsdt"))
70616151
TT
20460 nt = get_stapsdt_note_type (pnote->type);
20461
9437c45b 20462 else
1ec5cd37
NC
20463 /* Don't recognize this note name; just use the default set of
20464 note type strings. */
dda8d76d 20465 nt = get_note_type (filedata, pnote->type);
9437c45b 20466
1449284b 20467 printf (" ");
9ef920e9 20468
24d127aa 20469 if (((startswith (pnote->namedata, "GA")
483767a3
AM
20470 && strchr ("*$!+", pnote->namedata[2]) != NULL)
20471 || strchr ("*$!+", pnote->namedata[0]) != NULL)
20472 && (pnote->type == NT_GNU_BUILD_ATTRIBUTE_OPEN
20473 || pnote->type == NT_GNU_BUILD_ATTRIBUTE_FUNC))
9ef920e9
NC
20474 print_gnu_build_attribute_name (pnote);
20475 else
20476 print_symbol (-20, name);
20477
20478 if (do_wide)
20479 printf (" 0x%08lx\t%s\t", pnote->descsz, nt);
20480 else
20481 printf (" 0x%08lx\t%s\n", pnote->descsz, nt);
00e98fc7 20482
24d127aa 20483 if (startswith (pnote->namedata, "IPF/VMS"))
00e98fc7 20484 return print_ia64_vms_note (pnote);
24d127aa 20485 else if (startswith (pnote->namedata, "GNU"))
dda8d76d 20486 return print_gnu_note (filedata, pnote);
24d127aa 20487 else if (startswith (pnote->namedata, "stapsdt"))
c6a9fc58 20488 return print_stapsdt_note (pnote);
24d127aa 20489 else if (startswith (pnote->namedata, "CORE"))
9ece1fa9 20490 return print_core_note (pnote);
24d127aa 20491 else if (((startswith (pnote->namedata, "GA")
483767a3
AM
20492 && strchr ("*$!+", pnote->namedata[2]) != NULL)
20493 || strchr ("*$!+", pnote->namedata[0]) != NULL)
20494 && (pnote->type == NT_GNU_BUILD_ATTRIBUTE_OPEN
20495 || pnote->type == NT_GNU_BUILD_ATTRIBUTE_FUNC))
dda8d76d 20496 return print_gnu_build_attribute_description (pnote, filedata);
779fe533 20497
9ef920e9 20498 if (pnote->descsz)
1449284b
NC
20499 {
20500 unsigned long i;
20501
20502 printf (_(" description data: "));
20503 for (i = 0; i < pnote->descsz; i++)
178d8719 20504 printf ("%02x ", pnote->descdata[i] & 0xff);
04ac15ab
AS
20505 if (!do_wide)
20506 printf ("\n");
1449284b
NC
20507 }
20508
9ef920e9
NC
20509 if (do_wide)
20510 printf ("\n");
20511
015dc7e1 20512 return true;
1449284b 20513}
6d118b09 20514
015dc7e1 20515static bool
dda8d76d
NC
20516process_notes_at (Filedata * filedata,
20517 Elf_Internal_Shdr * section,
20518 bfd_vma offset,
82ed9683
L
20519 bfd_vma length,
20520 bfd_vma align)
779fe533 20521{
015dc7e1
AM
20522 Elf_External_Note *pnotes;
20523 Elf_External_Note *external;
20524 char *end;
20525 bool res = true;
103f02d3 20526
779fe533 20527 if (length <= 0)
015dc7e1 20528 return false;
103f02d3 20529
1449284b
NC
20530 if (section)
20531 {
dda8d76d 20532 pnotes = (Elf_External_Note *) get_section_contents (section, filedata);
1449284b 20533 if (pnotes)
32ec8896 20534 {
dda8d76d 20535 if (! apply_relocations (filedata, section, (unsigned char *) pnotes, length, NULL, NULL))
f761cb13
AM
20536 {
20537 free (pnotes);
015dc7e1 20538 return false;
f761cb13 20539 }
32ec8896 20540 }
1449284b
NC
20541 }
20542 else
82ed9683 20543 pnotes = (Elf_External_Note *) get_data (NULL, filedata, offset, 1, length,
1449284b 20544 _("notes"));
4dff97b2 20545
dd24e3da 20546 if (pnotes == NULL)
015dc7e1 20547 return false;
779fe533 20548
103f02d3 20549 external = pnotes;
103f02d3 20550
ca0e11aa
NC
20551 if (filedata->is_separate)
20552 printf (_("In linked file '%s': "), filedata->file_name);
20553 else
20554 printf ("\n");
1449284b 20555 if (section)
ca0e11aa 20556 printf (_("Displaying notes found in: %s\n"), printable_section_name (filedata, section));
1449284b 20557 else
ca0e11aa 20558 printf (_("Displaying notes found at file offset 0x%08lx with length 0x%08lx:\n"),
1449284b
NC
20559 (unsigned long) offset, (unsigned long) length);
20560
82ed9683
L
20561 /* NB: Some note sections may have alignment value of 0 or 1. gABI
20562 specifies that notes should be aligned to 4 bytes in 32-bit
20563 objects and to 8 bytes in 64-bit objects. As a Linux extension,
20564 we also support 4 byte alignment in 64-bit objects. If section
20565 alignment is less than 4, we treate alignment as 4 bytes. */
20566 if (align < 4)
20567 align = 4;
20568 else if (align != 4 && align != 8)
20569 {
20570 warn (_("Corrupt note: alignment %ld, expecting 4 or 8\n"),
20571 (long) align);
a788aedd 20572 free (pnotes);
015dc7e1 20573 return false;
82ed9683
L
20574 }
20575
dbe15e4e 20576 printf (_(" %-20s %-10s\tDescription\n"), _("Owner"), _("Data size"));
103f02d3 20577
c8071705
NC
20578 end = (char *) pnotes + length;
20579 while ((char *) external < end)
779fe533 20580 {
b34976b6 20581 Elf_Internal_Note inote;
15b42fb0 20582 size_t min_notesz;
4dff97b2 20583 char * next;
2cf0635d 20584 char * temp = NULL;
c8071705 20585 size_t data_remaining = end - (char *) external;
6d118b09 20586
dda8d76d 20587 if (!is_ia64_vms (filedata))
15b42fb0 20588 {
9dd3a467
NC
20589 /* PR binutils/15191
20590 Make sure that there is enough data to read. */
15b42fb0
AM
20591 min_notesz = offsetof (Elf_External_Note, name);
20592 if (data_remaining < min_notesz)
9dd3a467 20593 {
d3a49aa8
AM
20594 warn (ngettext ("Corrupt note: only %ld byte remains, "
20595 "not enough for a full note\n",
20596 "Corrupt note: only %ld bytes remain, "
20597 "not enough for a full note\n",
20598 data_remaining),
20599 (long) data_remaining);
9dd3a467
NC
20600 break;
20601 }
5396a86e
AM
20602 data_remaining -= min_notesz;
20603
15b42fb0
AM
20604 inote.type = BYTE_GET (external->type);
20605 inote.namesz = BYTE_GET (external->namesz);
20606 inote.namedata = external->name;
20607 inote.descsz = BYTE_GET (external->descsz);
276da9b3 20608 inote.descdata = ((char *) external
4dff97b2 20609 + ELF_NOTE_DESC_OFFSET (inote.namesz, align));
15b42fb0 20610 inote.descpos = offset + (inote.descdata - (char *) pnotes);
276da9b3 20611 next = ((char *) external
4dff97b2 20612 + ELF_NOTE_NEXT_OFFSET (inote.namesz, inote.descsz, align));
15b42fb0 20613 }
00e98fc7 20614 else
15b42fb0
AM
20615 {
20616 Elf64_External_VMS_Note *vms_external;
00e98fc7 20617
9dd3a467
NC
20618 /* PR binutils/15191
20619 Make sure that there is enough data to read. */
15b42fb0
AM
20620 min_notesz = offsetof (Elf64_External_VMS_Note, name);
20621 if (data_remaining < min_notesz)
9dd3a467 20622 {
d3a49aa8
AM
20623 warn (ngettext ("Corrupt note: only %ld byte remains, "
20624 "not enough for a full note\n",
20625 "Corrupt note: only %ld bytes remain, "
20626 "not enough for a full note\n",
20627 data_remaining),
20628 (long) data_remaining);
9dd3a467
NC
20629 break;
20630 }
5396a86e 20631 data_remaining -= min_notesz;
3e55a963 20632
15b42fb0
AM
20633 vms_external = (Elf64_External_VMS_Note *) external;
20634 inote.type = BYTE_GET (vms_external->type);
20635 inote.namesz = BYTE_GET (vms_external->namesz);
20636 inote.namedata = vms_external->name;
20637 inote.descsz = BYTE_GET (vms_external->descsz);
20638 inote.descdata = inote.namedata + align_power (inote.namesz, 3);
20639 inote.descpos = offset + (inote.descdata - (char *) pnotes);
20640 next = inote.descdata + align_power (inote.descsz, 3);
20641 }
20642
5396a86e
AM
20643 /* PR 17531: file: 3443835e. */
20644 /* PR 17531: file: id:000000,sig:11,src:006986,op:havoc,rep:4. */
20645 if ((size_t) (inote.descdata - inote.namedata) < inote.namesz
20646 || (size_t) (inote.descdata - inote.namedata) > data_remaining
20647 || (size_t) (next - inote.descdata) < inote.descsz
20648 || ((size_t) (next - inote.descdata)
20649 > data_remaining - (size_t) (inote.descdata - inote.namedata)))
3e55a963 20650 {
15b42fb0 20651 warn (_("note with invalid namesz and/or descsz found at offset 0x%lx\n"),
0af1713e 20652 (unsigned long) ((char *) external - (char *) pnotes));
4dff97b2
NC
20653 warn (_(" type: 0x%lx, namesize: 0x%08lx, descsize: 0x%08lx, alignment: %u\n"),
20654 inote.type, inote.namesz, inote.descsz, (int) align);
3e55a963
NC
20655 break;
20656 }
20657
15b42fb0 20658 external = (Elf_External_Note *) next;
dd24e3da 20659
6d118b09
NC
20660 /* Verify that name is null terminated. It appears that at least
20661 one version of Linux (RedHat 6.0) generates corefiles that don't
20662 comply with the ELF spec by failing to include the null byte in
20663 namesz. */
18344509 20664 if (inote.namesz > 0 && inote.namedata[inote.namesz - 1] != '\0')
6d118b09 20665 {
5396a86e 20666 if ((size_t) (inote.descdata - inote.namedata) == inote.namesz)
6d118b09 20667 {
5396a86e
AM
20668 temp = (char *) malloc (inote.namesz + 1);
20669 if (temp == NULL)
20670 {
20671 error (_("Out of memory allocating space for inote name\n"));
015dc7e1 20672 res = false;
5396a86e
AM
20673 break;
20674 }
76da6bbe 20675
5396a86e
AM
20676 memcpy (temp, inote.namedata, inote.namesz);
20677 inote.namedata = temp;
20678 }
20679 inote.namedata[inote.namesz] = 0;
6d118b09
NC
20680 }
20681
dda8d76d 20682 if (! process_note (& inote, filedata))
015dc7e1 20683 res = false;
103f02d3 20684
9db70fc3
AM
20685 free (temp);
20686 temp = NULL;
779fe533
NC
20687 }
20688
20689 free (pnotes);
103f02d3 20690
779fe533
NC
20691 return res;
20692}
20693
015dc7e1 20694static bool
dda8d76d 20695process_corefile_note_segments (Filedata * filedata)
779fe533 20696{
015dc7e1 20697 Elf_Internal_Phdr *segment;
b34976b6 20698 unsigned int i;
015dc7e1 20699 bool res = true;
103f02d3 20700
dda8d76d 20701 if (! get_program_headers (filedata))
015dc7e1 20702 return true;
103f02d3 20703
dda8d76d
NC
20704 for (i = 0, segment = filedata->program_headers;
20705 i < filedata->file_header.e_phnum;
b34976b6 20706 i++, segment++)
779fe533
NC
20707 {
20708 if (segment->p_type == PT_NOTE)
dda8d76d 20709 if (! process_notes_at (filedata, NULL,
32ec8896 20710 (bfd_vma) segment->p_offset,
82ed9683
L
20711 (bfd_vma) segment->p_filesz,
20712 (bfd_vma) segment->p_align))
015dc7e1 20713 res = false;
779fe533 20714 }
103f02d3 20715
779fe533
NC
20716 return res;
20717}
20718
015dc7e1 20719static bool
dda8d76d 20720process_v850_notes (Filedata * filedata, bfd_vma offset, bfd_vma length)
685080f2
NC
20721{
20722 Elf_External_Note * pnotes;
20723 Elf_External_Note * external;
c8071705 20724 char * end;
015dc7e1 20725 bool res = true;
685080f2
NC
20726
20727 if (length <= 0)
015dc7e1 20728 return false;
685080f2 20729
dda8d76d 20730 pnotes = (Elf_External_Note *) get_data (NULL, filedata, offset, 1, length,
685080f2
NC
20731 _("v850 notes"));
20732 if (pnotes == NULL)
015dc7e1 20733 return false;
685080f2
NC
20734
20735 external = pnotes;
c8071705 20736 end = (char*) pnotes + length;
685080f2
NC
20737
20738 printf (_("\nDisplaying contents of Renesas V850 notes section at offset 0x%lx with length 0x%lx:\n"),
20739 (unsigned long) offset, (unsigned long) length);
20740
c8071705 20741 while ((char *) external + sizeof (Elf_External_Note) < end)
685080f2
NC
20742 {
20743 Elf_External_Note * next;
20744 Elf_Internal_Note inote;
20745
20746 inote.type = BYTE_GET (external->type);
20747 inote.namesz = BYTE_GET (external->namesz);
20748 inote.namedata = external->name;
20749 inote.descsz = BYTE_GET (external->descsz);
20750 inote.descdata = inote.namedata + align_power (inote.namesz, 2);
20751 inote.descpos = offset + (inote.descdata - (char *) pnotes);
20752
c8071705
NC
20753 if (inote.descdata < (char *) pnotes || inote.descdata >= end)
20754 {
20755 warn (_("Corrupt note: name size is too big: %lx\n"), inote.namesz);
20756 inote.descdata = inote.namedata;
20757 inote.namesz = 0;
20758 }
20759
685080f2
NC
20760 next = (Elf_External_Note *) (inote.descdata + align_power (inote.descsz, 2));
20761
c8071705 20762 if ( ((char *) next > end)
685080f2
NC
20763 || ((char *) next < (char *) pnotes))
20764 {
20765 warn (_("corrupt descsz found in note at offset 0x%lx\n"),
20766 (unsigned long) ((char *) external - (char *) pnotes));
20767 warn (_(" type: 0x%lx, namesize: 0x%lx, descsize: 0x%lx\n"),
20768 inote.type, inote.namesz, inote.descsz);
20769 break;
20770 }
20771
20772 external = next;
20773
20774 /* Prevent out-of-bounds indexing. */
c8071705 20775 if ( inote.namedata + inote.namesz > end
685080f2
NC
20776 || inote.namedata + inote.namesz < inote.namedata)
20777 {
20778 warn (_("corrupt namesz found in note at offset 0x%lx\n"),
20779 (unsigned long) ((char *) external - (char *) pnotes));
20780 warn (_(" type: 0x%lx, namesize: 0x%lx, descsize: 0x%lx\n"),
20781 inote.type, inote.namesz, inote.descsz);
20782 break;
20783 }
20784
20785 printf (" %s: ", get_v850_elf_note_type (inote.type));
20786
20787 if (! print_v850_note (& inote))
20788 {
015dc7e1 20789 res = false;
685080f2
NC
20790 printf ("<corrupt sizes: namesz: %lx, descsz: %lx>\n",
20791 inote.namesz, inote.descsz);
20792 }
20793 }
20794
20795 free (pnotes);
20796
20797 return res;
20798}
20799
015dc7e1 20800static bool
dda8d76d 20801process_note_sections (Filedata * filedata)
1ec5cd37 20802{
015dc7e1 20803 Elf_Internal_Shdr *section;
1ec5cd37 20804 unsigned long i;
32ec8896 20805 unsigned int n = 0;
015dc7e1 20806 bool res = true;
1ec5cd37 20807
dda8d76d
NC
20808 for (i = 0, section = filedata->section_headers;
20809 i < filedata->file_header.e_shnum && section != NULL;
1ec5cd37 20810 i++, section++)
685080f2
NC
20811 {
20812 if (section->sh_type == SHT_NOTE)
20813 {
dda8d76d 20814 if (! process_notes_at (filedata, section,
32ec8896 20815 (bfd_vma) section->sh_offset,
82ed9683
L
20816 (bfd_vma) section->sh_size,
20817 (bfd_vma) section->sh_addralign))
015dc7e1 20818 res = false;
685080f2
NC
20819 n++;
20820 }
20821
dda8d76d
NC
20822 if (( filedata->file_header.e_machine == EM_V800
20823 || filedata->file_header.e_machine == EM_V850
20824 || filedata->file_header.e_machine == EM_CYGNUS_V850)
685080f2
NC
20825 && section->sh_type == SHT_RENESAS_INFO)
20826 {
dda8d76d 20827 if (! process_v850_notes (filedata,
32ec8896
NC
20828 (bfd_vma) section->sh_offset,
20829 (bfd_vma) section->sh_size))
015dc7e1 20830 res = false;
685080f2
NC
20831 n++;
20832 }
20833 }
df565f32
NC
20834
20835 if (n == 0)
20836 /* Try processing NOTE segments instead. */
dda8d76d 20837 return process_corefile_note_segments (filedata);
1ec5cd37
NC
20838
20839 return res;
20840}
20841
015dc7e1 20842static bool
dda8d76d 20843process_notes (Filedata * filedata)
779fe533
NC
20844{
20845 /* If we have not been asked to display the notes then do nothing. */
20846 if (! do_notes)
015dc7e1 20847 return true;
103f02d3 20848
dda8d76d
NC
20849 if (filedata->file_header.e_type != ET_CORE)
20850 return process_note_sections (filedata);
103f02d3 20851
779fe533 20852 /* No program headers means no NOTE segment. */
dda8d76d
NC
20853 if (filedata->file_header.e_phnum > 0)
20854 return process_corefile_note_segments (filedata);
779fe533 20855
ca0e11aa
NC
20856 if (filedata->is_separate)
20857 printf (_("No notes found in linked file '%s'.\n"),
20858 filedata->file_name);
20859 else
20860 printf (_("No notes found file.\n"));
20861
015dc7e1 20862 return true;
779fe533
NC
20863}
20864
60abdbed
NC
20865static unsigned char *
20866display_public_gnu_attributes (unsigned char * start,
20867 const unsigned char * const end)
20868{
20869 printf (_(" Unknown GNU attribute: %s\n"), start);
20870
20871 start += strnlen ((char *) start, end - start);
20872 display_raw_attribute (start, end);
20873
20874 return (unsigned char *) end;
20875}
20876
20877static unsigned char *
20878display_generic_attribute (unsigned char * start,
20879 unsigned int tag,
20880 const unsigned char * const end)
20881{
20882 if (tag == 0)
20883 return (unsigned char *) end;
20884
20885 return display_tag_value (tag, start, end);
20886}
20887
015dc7e1 20888static bool
dda8d76d 20889process_arch_specific (Filedata * filedata)
252b5132 20890{
a952a375 20891 if (! do_arch)
015dc7e1 20892 return true;
a952a375 20893
dda8d76d 20894 switch (filedata->file_header.e_machine)
252b5132 20895 {
53a346d8
CZ
20896 case EM_ARC:
20897 case EM_ARC_COMPACT:
20898 case EM_ARC_COMPACT2:
dda8d76d 20899 return process_attributes (filedata, "ARC", SHT_ARC_ATTRIBUTES,
53a346d8
CZ
20900 display_arc_attribute,
20901 display_generic_attribute);
11c1ff18 20902 case EM_ARM:
dda8d76d 20903 return process_attributes (filedata, "aeabi", SHT_ARM_ATTRIBUTES,
60abdbed
NC
20904 display_arm_attribute,
20905 display_generic_attribute);
20906
252b5132 20907 case EM_MIPS:
4fe85591 20908 case EM_MIPS_RS3_LE:
dda8d76d 20909 return process_mips_specific (filedata);
60abdbed
NC
20910
20911 case EM_MSP430:
dda8d76d 20912 return process_attributes (filedata, "mspabi", SHT_MSP430_ATTRIBUTES,
b0191216 20913 display_msp430_attribute,
c0ea7c52 20914 display_msp430_gnu_attribute);
60abdbed 20915
2dc8dd17
JW
20916 case EM_RISCV:
20917 return process_attributes (filedata, "riscv", SHT_RISCV_ATTRIBUTES,
20918 display_riscv_attribute,
20919 display_generic_attribute);
20920
35c08157 20921 case EM_NDS32:
dda8d76d 20922 return process_nds32_specific (filedata);
60abdbed 20923
85f7484a
PB
20924 case EM_68K:
20925 return process_attributes (filedata, NULL, SHT_GNU_ATTRIBUTES, NULL,
20926 display_m68k_gnu_attribute);
20927
34c8bcba 20928 case EM_PPC:
b82317dd 20929 case EM_PPC64:
dda8d76d 20930 return process_attributes (filedata, NULL, SHT_GNU_ATTRIBUTES, NULL,
60abdbed
NC
20931 display_power_gnu_attribute);
20932
643f7afb
AK
20933 case EM_S390:
20934 case EM_S390_OLD:
dda8d76d 20935 return process_attributes (filedata, NULL, SHT_GNU_ATTRIBUTES, NULL,
60abdbed
NC
20936 display_s390_gnu_attribute);
20937
9e8c70f9
DM
20938 case EM_SPARC:
20939 case EM_SPARC32PLUS:
20940 case EM_SPARCV9:
dda8d76d 20941 return process_attributes (filedata, NULL, SHT_GNU_ATTRIBUTES, NULL,
60abdbed
NC
20942 display_sparc_gnu_attribute);
20943
59e6276b 20944 case EM_TI_C6000:
dda8d76d 20945 return process_attributes (filedata, "c6xabi", SHT_C6000_ATTRIBUTES,
60abdbed
NC
20946 display_tic6x_attribute,
20947 display_generic_attribute);
20948
0861f561
CQ
20949 case EM_CSKY:
20950 return process_attributes (filedata, "csky", SHT_CSKY_ATTRIBUTES,
20951 display_csky_attribute, NULL);
20952
252b5132 20953 default:
dda8d76d 20954 return process_attributes (filedata, "gnu", SHT_GNU_ATTRIBUTES,
60abdbed
NC
20955 display_public_gnu_attributes,
20956 display_generic_attribute);
252b5132 20957 }
252b5132
RH
20958}
20959
015dc7e1 20960static bool
dda8d76d 20961get_file_header (Filedata * filedata)
252b5132 20962{
9ea033b2 20963 /* Read in the identity array. */
dda8d76d 20964 if (fread (filedata->file_header.e_ident, EI_NIDENT, 1, filedata->handle) != 1)
015dc7e1 20965 return false;
252b5132 20966
9ea033b2 20967 /* Determine how to read the rest of the header. */
dda8d76d 20968 switch (filedata->file_header.e_ident[EI_DATA])
9ea033b2 20969 {
1a0670f3
AM
20970 default:
20971 case ELFDATANONE:
adab8cdc
AO
20972 case ELFDATA2LSB:
20973 byte_get = byte_get_little_endian;
20974 byte_put = byte_put_little_endian;
20975 break;
20976 case ELFDATA2MSB:
20977 byte_get = byte_get_big_endian;
20978 byte_put = byte_put_big_endian;
20979 break;
9ea033b2
NC
20980 }
20981
20982 /* For now we only support 32 bit and 64 bit ELF files. */
dda8d76d 20983 is_32bit_elf = (filedata->file_header.e_ident[EI_CLASS] != ELFCLASS64);
9ea033b2
NC
20984
20985 /* Read in the rest of the header. */
20986 if (is_32bit_elf)
20987 {
20988 Elf32_External_Ehdr ehdr32;
252b5132 20989
dda8d76d 20990 if (fread (ehdr32.e_type, sizeof (ehdr32) - EI_NIDENT, 1, filedata->handle) != 1)
015dc7e1 20991 return false;
103f02d3 20992
dda8d76d
NC
20993 filedata->file_header.e_type = BYTE_GET (ehdr32.e_type);
20994 filedata->file_header.e_machine = BYTE_GET (ehdr32.e_machine);
20995 filedata->file_header.e_version = BYTE_GET (ehdr32.e_version);
20996 filedata->file_header.e_entry = BYTE_GET (ehdr32.e_entry);
20997 filedata->file_header.e_phoff = BYTE_GET (ehdr32.e_phoff);
20998 filedata->file_header.e_shoff = BYTE_GET (ehdr32.e_shoff);
20999 filedata->file_header.e_flags = BYTE_GET (ehdr32.e_flags);
21000 filedata->file_header.e_ehsize = BYTE_GET (ehdr32.e_ehsize);
21001 filedata->file_header.e_phentsize = BYTE_GET (ehdr32.e_phentsize);
21002 filedata->file_header.e_phnum = BYTE_GET (ehdr32.e_phnum);
21003 filedata->file_header.e_shentsize = BYTE_GET (ehdr32.e_shentsize);
21004 filedata->file_header.e_shnum = BYTE_GET (ehdr32.e_shnum);
21005 filedata->file_header.e_shstrndx = BYTE_GET (ehdr32.e_shstrndx);
9ea033b2 21006 }
252b5132 21007 else
9ea033b2
NC
21008 {
21009 Elf64_External_Ehdr ehdr64;
a952a375
NC
21010
21011 /* If we have been compiled with sizeof (bfd_vma) == 4, then
21012 we will not be able to cope with the 64bit data found in
21013 64 ELF files. Detect this now and abort before we start
50c2245b 21014 overwriting things. */
a952a375
NC
21015 if (sizeof (bfd_vma) < 8)
21016 {
e3c8793a
NC
21017 error (_("This instance of readelf has been built without support for a\n\
2101864 bit data type and so it cannot read 64 bit ELF files.\n"));
015dc7e1 21019 return false;
a952a375 21020 }
103f02d3 21021
dda8d76d 21022 if (fread (ehdr64.e_type, sizeof (ehdr64) - EI_NIDENT, 1, filedata->handle) != 1)
015dc7e1 21023 return false;
103f02d3 21024
dda8d76d
NC
21025 filedata->file_header.e_type = BYTE_GET (ehdr64.e_type);
21026 filedata->file_header.e_machine = BYTE_GET (ehdr64.e_machine);
21027 filedata->file_header.e_version = BYTE_GET (ehdr64.e_version);
21028 filedata->file_header.e_entry = BYTE_GET (ehdr64.e_entry);
21029 filedata->file_header.e_phoff = BYTE_GET (ehdr64.e_phoff);
21030 filedata->file_header.e_shoff = BYTE_GET (ehdr64.e_shoff);
21031 filedata->file_header.e_flags = BYTE_GET (ehdr64.e_flags);
21032 filedata->file_header.e_ehsize = BYTE_GET (ehdr64.e_ehsize);
21033 filedata->file_header.e_phentsize = BYTE_GET (ehdr64.e_phentsize);
21034 filedata->file_header.e_phnum = BYTE_GET (ehdr64.e_phnum);
21035 filedata->file_header.e_shentsize = BYTE_GET (ehdr64.e_shentsize);
21036 filedata->file_header.e_shnum = BYTE_GET (ehdr64.e_shnum);
21037 filedata->file_header.e_shstrndx = BYTE_GET (ehdr64.e_shstrndx);
9ea033b2 21038 }
252b5132 21039
dda8d76d 21040 if (filedata->file_header.e_shoff)
7ece0d85
JJ
21041 {
21042 /* There may be some extensions in the first section header. Don't
21043 bomb if we can't read it. */
21044 if (is_32bit_elf)
015dc7e1 21045 get_32bit_section_headers (filedata, true);
7ece0d85 21046 else
015dc7e1 21047 get_64bit_section_headers (filedata, true);
7ece0d85 21048 }
560f3c1c 21049
015dc7e1 21050 return true;
252b5132
RH
21051}
21052
dda8d76d
NC
21053static void
21054close_file (Filedata * filedata)
21055{
21056 if (filedata)
21057 {
21058 if (filedata->handle)
21059 fclose (filedata->handle);
21060 free (filedata);
21061 }
21062}
21063
21064void
21065close_debug_file (void * data)
21066{
21067 close_file ((Filedata *) data);
21068}
21069
21070static Filedata *
015dc7e1 21071open_file (const char * pathname, bool is_separate)
dda8d76d
NC
21072{
21073 struct stat statbuf;
21074 Filedata * filedata = NULL;
21075
21076 if (stat (pathname, & statbuf) < 0
21077 || ! S_ISREG (statbuf.st_mode))
21078 goto fail;
21079
21080 filedata = calloc (1, sizeof * filedata);
21081 if (filedata == NULL)
21082 goto fail;
21083
21084 filedata->handle = fopen (pathname, "rb");
21085 if (filedata->handle == NULL)
21086 goto fail;
21087
21088 filedata->file_size = (bfd_size_type) statbuf.st_size;
21089 filedata->file_name = pathname;
ca0e11aa 21090 filedata->is_separate = is_separate;
dda8d76d
NC
21091
21092 if (! get_file_header (filedata))
21093 goto fail;
21094
21095 if (filedata->file_header.e_shoff)
21096 {
015dc7e1 21097 bool res;
dda8d76d
NC
21098
21099 /* Read the section headers again, this time for real. */
21100 if (is_32bit_elf)
015dc7e1 21101 res = get_32bit_section_headers (filedata, false);
dda8d76d 21102 else
015dc7e1 21103 res = get_64bit_section_headers (filedata, false);
dda8d76d
NC
21104
21105 if (!res)
21106 goto fail;
21107 }
21108
21109 return filedata;
21110
21111 fail:
21112 if (filedata)
21113 {
21114 if (filedata->handle)
21115 fclose (filedata->handle);
21116 free (filedata);
21117 }
21118 return NULL;
21119}
21120
21121void *
21122open_debug_file (const char * pathname)
21123{
015dc7e1 21124 return open_file (pathname, true);
dda8d76d
NC
21125}
21126
835f2fae
NC
21127static void
21128initialise_dump_sects (Filedata * filedata)
21129{
21130 /* Initialise the dump_sects array from the cmdline_dump_sects array.
21131 Note we do this even if cmdline_dump_sects is empty because we
21132 must make sure that the dump_sets array is zeroed out before each
21133 object file is processed. */
21134 if (filedata->dump.num_dump_sects > cmdline.num_dump_sects)
21135 memset (filedata->dump.dump_sects, 0,
21136 filedata->dump.num_dump_sects * sizeof (*filedata->dump.dump_sects));
21137
21138 if (cmdline.num_dump_sects > 0)
21139 {
21140 if (filedata->dump.num_dump_sects == 0)
21141 /* A sneaky way of allocating the dump_sects array. */
21142 request_dump_bynumber (&filedata->dump, cmdline.num_dump_sects, 0);
21143
21144 assert (filedata->dump.num_dump_sects >= cmdline.num_dump_sects);
21145 memcpy (filedata->dump.dump_sects, cmdline.dump_sects,
21146 cmdline.num_dump_sects * sizeof (*filedata->dump.dump_sects));
21147 }
21148}
21149
fb52b2f4
NC
21150/* Process one ELF object file according to the command line options.
21151 This file may actually be stored in an archive. The file is
32ec8896
NC
21152 positioned at the start of the ELF object. Returns TRUE if no
21153 problems were encountered, FALSE otherwise. */
fb52b2f4 21154
015dc7e1 21155static bool
dda8d76d 21156process_object (Filedata * filedata)
252b5132 21157{
015dc7e1 21158 bool have_separate_files;
252b5132 21159 unsigned int i;
015dc7e1 21160 bool res;
252b5132 21161
dda8d76d 21162 if (! get_file_header (filedata))
252b5132 21163 {
dda8d76d 21164 error (_("%s: Failed to read file header\n"), filedata->file_name);
015dc7e1 21165 return false;
252b5132
RH
21166 }
21167
21168 /* Initialise per file variables. */
978c4450
AM
21169 for (i = ARRAY_SIZE (filedata->version_info); i--;)
21170 filedata->version_info[i] = 0;
252b5132 21171
978c4450
AM
21172 for (i = ARRAY_SIZE (filedata->dynamic_info); i--;)
21173 filedata->dynamic_info[i] = 0;
21174 filedata->dynamic_info_DT_GNU_HASH = 0;
21175 filedata->dynamic_info_DT_MIPS_XHASH = 0;
252b5132
RH
21176
21177 /* Process the file. */
21178 if (show_name)
dda8d76d 21179 printf (_("\nFile: %s\n"), filedata->file_name);
252b5132 21180
835f2fae 21181 initialise_dump_sects (filedata);
d70c5fc7 21182
dda8d76d 21183 if (! process_file_header (filedata))
015dc7e1 21184 return false;
252b5132 21185
dda8d76d 21186 if (! process_section_headers (filedata))
2f62977e 21187 {
32ec8896 21188 /* Without loaded section headers we cannot process lots of things. */
015dc7e1 21189 do_unwind = do_version = do_dump = do_arch = false;
252b5132 21190
2f62977e 21191 if (! do_using_dynamic)
015dc7e1 21192 do_syms = do_dyn_syms = do_reloc = false;
2f62977e 21193 }
252b5132 21194
dda8d76d 21195 if (! process_section_groups (filedata))
32ec8896 21196 /* Without loaded section groups we cannot process unwind. */
015dc7e1 21197 do_unwind = false;
d1f5c6e3 21198
2482f306
AM
21199 res = process_program_headers (filedata);
21200 if (res)
21201 res = process_dynamic_section (filedata);
252b5132 21202
dda8d76d 21203 if (! process_relocs (filedata))
015dc7e1 21204 res = false;
252b5132 21205
dda8d76d 21206 if (! process_unwind (filedata))
015dc7e1 21207 res = false;
4d6ed7c8 21208
dda8d76d 21209 if (! process_symbol_table (filedata))
015dc7e1 21210 res = false;
252b5132 21211
0f03783c 21212 if (! process_lto_symbol_tables (filedata))
015dc7e1 21213 res = false;
b9e920ec 21214
dda8d76d 21215 if (! process_syminfo (filedata))
015dc7e1 21216 res = false;
252b5132 21217
dda8d76d 21218 if (! process_version_sections (filedata))
015dc7e1 21219 res = false;
252b5132 21220
82ed9683 21221 if (filedata->file_header.e_shstrndx != SHN_UNDEF)
24841daa 21222 have_separate_files = load_separate_debug_files (filedata, filedata->file_name);
82ed9683 21223 else
015dc7e1 21224 have_separate_files = false;
dda8d76d
NC
21225
21226 if (! process_section_contents (filedata))
015dc7e1 21227 res = false;
f5842774 21228
24841daa 21229 if (have_separate_files)
dda8d76d 21230 {
24841daa
NC
21231 separate_info * d;
21232
21233 for (d = first_separate_info; d != NULL; d = d->next)
21234 {
835f2fae
NC
21235 initialise_dump_sects (d->handle);
21236
ca0e11aa 21237 if (process_links && ! process_file_header (d->handle))
015dc7e1 21238 res = false;
ca0e11aa 21239 else if (! process_section_headers (d->handle))
015dc7e1 21240 res = false;
d6bfbc39 21241 else if (! process_section_contents (d->handle))
015dc7e1 21242 res = false;
ca0e11aa
NC
21243 else if (process_links)
21244 {
ca0e11aa 21245 if (! process_section_groups (d->handle))
015dc7e1 21246 res = false;
ca0e11aa 21247 if (! process_program_headers (d->handle))
015dc7e1 21248 res = false;
ca0e11aa 21249 if (! process_dynamic_section (d->handle))
015dc7e1 21250 res = false;
ca0e11aa 21251 if (! process_relocs (d->handle))
015dc7e1 21252 res = false;
ca0e11aa 21253 if (! process_unwind (d->handle))
015dc7e1 21254 res = false;
ca0e11aa 21255 if (! process_symbol_table (d->handle))
015dc7e1 21256 res = false;
ca0e11aa 21257 if (! process_lto_symbol_tables (d->handle))
015dc7e1 21258 res = false;
ca0e11aa 21259 if (! process_syminfo (d->handle))
015dc7e1 21260 res = false;
ca0e11aa 21261 if (! process_version_sections (d->handle))
015dc7e1 21262 res = false;
ca0e11aa 21263 if (! process_notes (d->handle))
015dc7e1 21264 res = false;
ca0e11aa 21265 }
24841daa
NC
21266 }
21267
21268 /* The file handles are closed by the call to free_debug_memory() below. */
dda8d76d
NC
21269 }
21270
21271 if (! process_notes (filedata))
015dc7e1 21272 res = false;
103f02d3 21273
dda8d76d 21274 if (! process_gnu_liblist (filedata))
015dc7e1 21275 res = false;
047b2264 21276
dda8d76d 21277 if (! process_arch_specific (filedata))
015dc7e1 21278 res = false;
252b5132 21279
dda8d76d
NC
21280 free (filedata->program_headers);
21281 filedata->program_headers = NULL;
d93f0186 21282
dda8d76d
NC
21283 free (filedata->section_headers);
21284 filedata->section_headers = NULL;
252b5132 21285
dda8d76d
NC
21286 free (filedata->string_table);
21287 filedata->string_table = NULL;
21288 filedata->string_table_length = 0;
252b5132 21289
9db70fc3
AM
21290 free (filedata->dump.dump_sects);
21291 filedata->dump.dump_sects = NULL;
21292 filedata->dump.num_dump_sects = 0;
a788aedd 21293
9db70fc3
AM
21294 free (filedata->dynamic_strings);
21295 filedata->dynamic_strings = NULL;
21296 filedata->dynamic_strings_length = 0;
252b5132 21297
9db70fc3
AM
21298 free (filedata->dynamic_symbols);
21299 filedata->dynamic_symbols = NULL;
21300 filedata->num_dynamic_syms = 0;
252b5132 21301
9db70fc3
AM
21302 free (filedata->dynamic_syminfo);
21303 filedata->dynamic_syminfo = NULL;
ff78d6d6 21304
9db70fc3
AM
21305 free (filedata->dynamic_section);
21306 filedata->dynamic_section = NULL;
293c573e 21307
978c4450 21308 while (filedata->symtab_shndx_list != NULL)
8fb879cd 21309 {
978c4450
AM
21310 elf_section_list *next = filedata->symtab_shndx_list->next;
21311 free (filedata->symtab_shndx_list);
21312 filedata->symtab_shndx_list = next;
8fb879cd
AM
21313 }
21314
9db70fc3
AM
21315 free (filedata->section_headers_groups);
21316 filedata->section_headers_groups = NULL;
e4b17d5c 21317
978c4450 21318 if (filedata->section_groups)
e4b17d5c 21319 {
2cf0635d
NC
21320 struct group_list * g;
21321 struct group_list * next;
e4b17d5c 21322
978c4450 21323 for (i = 0; i < filedata->group_count; i++)
e4b17d5c 21324 {
978c4450 21325 for (g = filedata->section_groups [i].root; g != NULL; g = next)
e4b17d5c
L
21326 {
21327 next = g->next;
21328 free (g);
21329 }
21330 }
21331
978c4450
AM
21332 free (filedata->section_groups);
21333 filedata->section_groups = NULL;
e4b17d5c
L
21334 }
21335
19e6b90e 21336 free_debug_memory ();
18bd398b 21337
32ec8896 21338 return res;
252b5132
RH
21339}
21340
2cf0635d 21341/* Process an ELF archive.
32ec8896
NC
21342 On entry the file is positioned just after the ARMAG string.
21343 Returns TRUE upon success, FALSE otherwise. */
2cf0635d 21344
015dc7e1
AM
21345static bool
21346process_archive (Filedata * filedata, bool is_thin_archive)
2cf0635d
NC
21347{
21348 struct archive_info arch;
21349 struct archive_info nested_arch;
21350 size_t got;
015dc7e1 21351 bool ret = true;
2cf0635d 21352
015dc7e1 21353 show_name = true;
2cf0635d
NC
21354
21355 /* The ARCH structure is used to hold information about this archive. */
21356 arch.file_name = NULL;
21357 arch.file = NULL;
21358 arch.index_array = NULL;
21359 arch.sym_table = NULL;
21360 arch.longnames = NULL;
21361
21362 /* The NESTED_ARCH structure is used as a single-item cache of information
21363 about a nested archive (when members of a thin archive reside within
21364 another regular archive file). */
21365 nested_arch.file_name = NULL;
21366 nested_arch.file = NULL;
21367 nested_arch.index_array = NULL;
21368 nested_arch.sym_table = NULL;
21369 nested_arch.longnames = NULL;
21370
dda8d76d 21371 if (setup_archive (&arch, filedata->file_name, filedata->handle,
780f96ae
AM
21372 filedata->file_size, is_thin_archive,
21373 do_archive_index) != 0)
2cf0635d 21374 {
015dc7e1 21375 ret = false;
2cf0635d 21376 goto out;
4145f1d5 21377 }
fb52b2f4 21378
4145f1d5
NC
21379 if (do_archive_index)
21380 {
2cf0635d 21381 if (arch.sym_table == NULL)
1cb7d8b1
AM
21382 error (_("%s: unable to dump the index as none was found\n"),
21383 filedata->file_name);
4145f1d5
NC
21384 else
21385 {
591f7597 21386 unsigned long i, l;
4145f1d5
NC
21387 unsigned long current_pos;
21388
1cb7d8b1
AM
21389 printf (_("Index of archive %s: (%lu entries, 0x%lx bytes "
21390 "in the symbol table)\n"),
21391 filedata->file_name, (unsigned long) arch.index_num,
21392 arch.sym_size);
dda8d76d
NC
21393
21394 current_pos = ftell (filedata->handle);
4145f1d5 21395
2cf0635d 21396 for (i = l = 0; i < arch.index_num; i++)
4145f1d5 21397 {
1cb7d8b1
AM
21398 if (i == 0
21399 || (i > 0 && arch.index_array[i] != arch.index_array[i - 1]))
21400 {
21401 char * member_name
21402 = get_archive_member_name_at (&arch, arch.index_array[i],
21403 &nested_arch);
2cf0635d 21404
1cb7d8b1
AM
21405 if (member_name != NULL)
21406 {
21407 char * qualified_name
21408 = make_qualified_name (&arch, &nested_arch,
21409 member_name);
2cf0635d 21410
1cb7d8b1
AM
21411 if (qualified_name != NULL)
21412 {
21413 printf (_("Contents of binary %s at offset "),
21414 qualified_name);
c2a7d3f5
NC
21415 (void) print_vma (arch.index_array[i], PREFIX_HEX);
21416 putchar ('\n');
1cb7d8b1
AM
21417 free (qualified_name);
21418 }
fd486f32 21419 free (member_name);
4145f1d5
NC
21420 }
21421 }
2cf0635d
NC
21422
21423 if (l >= arch.sym_size)
4145f1d5 21424 {
1cb7d8b1
AM
21425 error (_("%s: end of the symbol table reached "
21426 "before the end of the index\n"),
dda8d76d 21427 filedata->file_name);
015dc7e1 21428 ret = false;
cb8f3167 21429 break;
4145f1d5 21430 }
591f7597 21431 /* PR 17531: file: 0b6630b2. */
1cb7d8b1
AM
21432 printf ("\t%.*s\n",
21433 (int) (arch.sym_size - l), arch.sym_table + l);
591f7597 21434 l += strnlen (arch.sym_table + l, arch.sym_size - l) + 1;
4145f1d5
NC
21435 }
21436
67ce483b 21437 if (arch.uses_64bit_indices)
c2a7d3f5
NC
21438 l = (l + 7) & ~ 7;
21439 else
21440 l += l & 1;
21441
2cf0635d 21442 if (l < arch.sym_size)
32ec8896 21443 {
d3a49aa8
AM
21444 error (ngettext ("%s: %ld byte remains in the symbol table, "
21445 "but without corresponding entries in "
21446 "the index table\n",
21447 "%s: %ld bytes remain in the symbol table, "
21448 "but without corresponding entries in "
21449 "the index table\n",
21450 arch.sym_size - l),
dda8d76d 21451 filedata->file_name, arch.sym_size - l);
015dc7e1 21452 ret = false;
32ec8896 21453 }
4145f1d5 21454
dda8d76d 21455 if (fseek (filedata->handle, current_pos, SEEK_SET) != 0)
4145f1d5 21456 {
1cb7d8b1
AM
21457 error (_("%s: failed to seek back to start of object files "
21458 "in the archive\n"),
dda8d76d 21459 filedata->file_name);
015dc7e1 21460 ret = false;
2cf0635d 21461 goto out;
4145f1d5 21462 }
fb52b2f4 21463 }
4145f1d5
NC
21464
21465 if (!do_dynamic && !do_syms && !do_reloc && !do_unwind && !do_sections
21466 && !do_segments && !do_header && !do_dump && !do_version
21467 && !do_histogram && !do_debugging && !do_arch && !do_notes
2c610e4b 21468 && !do_section_groups && !do_dyn_syms)
2cf0635d 21469 {
015dc7e1 21470 ret = true; /* Archive index only. */
2cf0635d
NC
21471 goto out;
21472 }
fb52b2f4
NC
21473 }
21474
fb52b2f4
NC
21475 while (1)
21476 {
2cf0635d
NC
21477 char * name;
21478 size_t namelen;
21479 char * qualified_name;
21480
21481 /* Read the next archive header. */
dda8d76d 21482 if (fseek (filedata->handle, arch.next_arhdr_offset, SEEK_SET) != 0)
1cb7d8b1
AM
21483 {
21484 error (_("%s: failed to seek to next archive header\n"),
21485 arch.file_name);
015dc7e1 21486 ret = false;
1cb7d8b1
AM
21487 break;
21488 }
dda8d76d 21489 got = fread (&arch.arhdr, 1, sizeof arch.arhdr, filedata->handle);
2cf0635d 21490 if (got != sizeof arch.arhdr)
1cb7d8b1
AM
21491 {
21492 if (got == 0)
2cf0635d 21493 break;
28e817cc
NC
21494 /* PR 24049 - we cannot use filedata->file_name as this will
21495 have already been freed. */
21496 error (_("%s: failed to read archive header\n"), arch.file_name);
9abca702 21497
015dc7e1 21498 ret = false;
1cb7d8b1
AM
21499 break;
21500 }
2cf0635d 21501 if (memcmp (arch.arhdr.ar_fmag, ARFMAG, 2) != 0)
1cb7d8b1
AM
21502 {
21503 error (_("%s: did not find a valid archive header\n"),
21504 arch.file_name);
015dc7e1 21505 ret = false;
1cb7d8b1
AM
21506 break;
21507 }
2cf0635d
NC
21508
21509 arch.next_arhdr_offset += sizeof arch.arhdr;
21510
978c4450
AM
21511 filedata->archive_file_size = strtoul (arch.arhdr.ar_size, NULL, 10);
21512 if (filedata->archive_file_size & 01)
21513 ++filedata->archive_file_size;
2cf0635d
NC
21514
21515 name = get_archive_member_name (&arch, &nested_arch);
21516 if (name == NULL)
fb52b2f4 21517 {
28e817cc 21518 error (_("%s: bad archive file name\n"), arch.file_name);
015dc7e1 21519 ret = false;
d989285c 21520 break;
fb52b2f4 21521 }
2cf0635d 21522 namelen = strlen (name);
fb52b2f4 21523
2cf0635d
NC
21524 qualified_name = make_qualified_name (&arch, &nested_arch, name);
21525 if (qualified_name == NULL)
fb52b2f4 21526 {
28e817cc 21527 error (_("%s: bad archive file name\n"), arch.file_name);
fd486f32 21528 free (name);
015dc7e1 21529 ret = false;
d989285c 21530 break;
fb52b2f4
NC
21531 }
21532
2cf0635d 21533 if (is_thin_archive && arch.nested_member_origin == 0)
1cb7d8b1
AM
21534 {
21535 /* This is a proxy for an external member of a thin archive. */
21536 Filedata * member_filedata;
21537 char * member_file_name = adjust_relative_path
dda8d76d 21538 (filedata->file_name, name, namelen);
32ec8896 21539
fd486f32 21540 free (name);
1cb7d8b1
AM
21541 if (member_file_name == NULL)
21542 {
fd486f32 21543 free (qualified_name);
015dc7e1 21544 ret = false;
1cb7d8b1
AM
21545 break;
21546 }
2cf0635d 21547
015dc7e1 21548 member_filedata = open_file (member_file_name, false);
1cb7d8b1
AM
21549 if (member_filedata == NULL)
21550 {
21551 error (_("Input file '%s' is not readable.\n"), member_file_name);
21552 free (member_file_name);
fd486f32 21553 free (qualified_name);
015dc7e1 21554 ret = false;
1cb7d8b1
AM
21555 break;
21556 }
2cf0635d 21557
978c4450 21558 filedata->archive_file_offset = arch.nested_member_origin;
dda8d76d 21559 member_filedata->file_name = qualified_name;
2cf0635d 21560
1cb7d8b1 21561 if (! process_object (member_filedata))
015dc7e1 21562 ret = false;
2cf0635d 21563
1cb7d8b1
AM
21564 close_file (member_filedata);
21565 free (member_file_name);
1cb7d8b1 21566 }
2cf0635d 21567 else if (is_thin_archive)
1cb7d8b1
AM
21568 {
21569 Filedata thin_filedata;
eb02c04d 21570
1cb7d8b1 21571 memset (&thin_filedata, 0, sizeof (thin_filedata));
dda8d76d 21572
a043396b
NC
21573 /* PR 15140: Allow for corrupt thin archives. */
21574 if (nested_arch.file == NULL)
21575 {
21576 error (_("%s: contains corrupt thin archive: %s\n"),
28e817cc 21577 qualified_name, name);
fd486f32
AM
21578 free (qualified_name);
21579 free (name);
015dc7e1 21580 ret = false;
a043396b
NC
21581 break;
21582 }
fd486f32 21583 free (name);
a043396b 21584
1cb7d8b1 21585 /* This is a proxy for a member of a nested archive. */
978c4450
AM
21586 filedata->archive_file_offset
21587 = arch.nested_member_origin + sizeof arch.arhdr;
2cf0635d 21588
1cb7d8b1
AM
21589 /* The nested archive file will have been opened and setup by
21590 get_archive_member_name. */
978c4450
AM
21591 if (fseek (nested_arch.file, filedata->archive_file_offset,
21592 SEEK_SET) != 0)
1cb7d8b1
AM
21593 {
21594 error (_("%s: failed to seek to archive member.\n"),
21595 nested_arch.file_name);
fd486f32 21596 free (qualified_name);
015dc7e1 21597 ret = false;
1cb7d8b1
AM
21598 break;
21599 }
2cf0635d 21600
dda8d76d
NC
21601 thin_filedata.handle = nested_arch.file;
21602 thin_filedata.file_name = qualified_name;
9abca702 21603
1cb7d8b1 21604 if (! process_object (& thin_filedata))
015dc7e1 21605 ret = false;
1cb7d8b1 21606 }
2cf0635d 21607 else
1cb7d8b1 21608 {
fd486f32 21609 free (name);
978c4450 21610 filedata->archive_file_offset = arch.next_arhdr_offset;
6a6196fc 21611 filedata->file_name = qualified_name;
1cb7d8b1 21612 if (! process_object (filedata))
015dc7e1 21613 ret = false;
978c4450 21614 arch.next_arhdr_offset += filedata->archive_file_size;
4c836627 21615 /* Stop looping with "negative" archive_file_size. */
978c4450 21616 if (arch.next_arhdr_offset < filedata->archive_file_size)
80e2a3b6 21617 arch.next_arhdr_offset = -1ul;
1cb7d8b1 21618 }
fb52b2f4 21619
2cf0635d 21620 free (qualified_name);
fb52b2f4
NC
21621 }
21622
4145f1d5 21623 out:
2cf0635d
NC
21624 if (nested_arch.file != NULL)
21625 fclose (nested_arch.file);
21626 release_archive (&nested_arch);
21627 release_archive (&arch);
fb52b2f4 21628
d989285c 21629 return ret;
fb52b2f4
NC
21630}
21631
015dc7e1 21632static bool
2cf0635d 21633process_file (char * file_name)
fb52b2f4 21634{
dda8d76d 21635 Filedata * filedata = NULL;
fb52b2f4
NC
21636 struct stat statbuf;
21637 char armag[SARMAG];
015dc7e1 21638 bool ret = true;
fb52b2f4
NC
21639
21640 if (stat (file_name, &statbuf) < 0)
21641 {
f24ddbdd
NC
21642 if (errno == ENOENT)
21643 error (_("'%s': No such file\n"), file_name);
21644 else
21645 error (_("Could not locate '%s'. System error message: %s\n"),
21646 file_name, strerror (errno));
015dc7e1 21647 return false;
f24ddbdd
NC
21648 }
21649
21650 if (! S_ISREG (statbuf.st_mode))
21651 {
21652 error (_("'%s' is not an ordinary file\n"), file_name);
015dc7e1 21653 return false;
fb52b2f4
NC
21654 }
21655
dda8d76d
NC
21656 filedata = calloc (1, sizeof * filedata);
21657 if (filedata == NULL)
21658 {
21659 error (_("Out of memory allocating file data structure\n"));
015dc7e1 21660 return false;
dda8d76d
NC
21661 }
21662
21663 filedata->file_name = file_name;
21664 filedata->handle = fopen (file_name, "rb");
21665 if (filedata->handle == NULL)
fb52b2f4 21666 {
f24ddbdd 21667 error (_("Input file '%s' is not readable.\n"), file_name);
dda8d76d 21668 free (filedata);
015dc7e1 21669 return false;
fb52b2f4
NC
21670 }
21671
dda8d76d 21672 if (fread (armag, SARMAG, 1, filedata->handle) != 1)
fb52b2f4 21673 {
4145f1d5 21674 error (_("%s: Failed to read file's magic number\n"), file_name);
dda8d76d
NC
21675 fclose (filedata->handle);
21676 free (filedata);
015dc7e1 21677 return false;
fb52b2f4
NC
21678 }
21679
dda8d76d 21680 filedata->file_size = (bfd_size_type) statbuf.st_size;
015dc7e1 21681 filedata->is_separate = false;
f54498b4 21682
fb52b2f4 21683 if (memcmp (armag, ARMAG, SARMAG) == 0)
32ec8896 21684 {
015dc7e1
AM
21685 if (! process_archive (filedata, false))
21686 ret = false;
32ec8896 21687 }
2cf0635d 21688 else if (memcmp (armag, ARMAGT, SARMAG) == 0)
32ec8896 21689 {
015dc7e1
AM
21690 if ( ! process_archive (filedata, true))
21691 ret = false;
32ec8896 21692 }
fb52b2f4
NC
21693 else
21694 {
1b513401 21695 if (do_archive_index && !check_all)
4145f1d5
NC
21696 error (_("File %s is not an archive so its index cannot be displayed.\n"),
21697 file_name);
21698
dda8d76d 21699 rewind (filedata->handle);
978c4450 21700 filedata->archive_file_size = filedata->archive_file_offset = 0;
32ec8896 21701
dda8d76d 21702 if (! process_object (filedata))
015dc7e1 21703 ret = false;
fb52b2f4
NC
21704 }
21705
dda8d76d 21706 fclose (filedata->handle);
8fb879cd
AM
21707 free (filedata->section_headers);
21708 free (filedata->program_headers);
21709 free (filedata->string_table);
6431e409 21710 free (filedata->dump.dump_sects);
dda8d76d 21711 free (filedata);
32ec8896 21712
fd486f32 21713 free (ba_cache.strtab);
1bd6175a 21714 ba_cache.strtab = NULL;
fd486f32 21715 free (ba_cache.symtab);
1bd6175a 21716 ba_cache.symtab = NULL;
fd486f32
AM
21717 ba_cache.filedata = NULL;
21718
fb52b2f4
NC
21719 return ret;
21720}
21721
252b5132
RH
21722#ifdef SUPPORT_DISASSEMBLY
21723/* Needed by the i386 disassembler. For extra credit, someone could
9ea033b2 21724 fix this so that we insert symbolic addresses here, esp for GOT/PLT
e3c8793a 21725 symbols. */
252b5132
RH
21726
21727void
2cf0635d 21728print_address (unsigned int addr, FILE * outfile)
252b5132
RH
21729{
21730 fprintf (outfile,"0x%8.8x", addr);
21731}
21732
e3c8793a 21733/* Needed by the i386 disassembler. */
dda8d76d 21734
252b5132
RH
21735void
21736db_task_printsym (unsigned int addr)
21737{
21738 print_address (addr, stderr);
21739}
21740#endif
21741
21742int
2cf0635d 21743main (int argc, char ** argv)
252b5132 21744{
ff78d6d6
L
21745 int err;
21746
87b9f255 21747#ifdef HAVE_LC_MESSAGES
252b5132 21748 setlocale (LC_MESSAGES, "");
3882b010 21749#endif
3882b010 21750 setlocale (LC_CTYPE, "");
252b5132
RH
21751 bindtextdomain (PACKAGE, LOCALEDIR);
21752 textdomain (PACKAGE);
21753
869b9d07
MM
21754 expandargv (&argc, &argv);
21755
dda8d76d 21756 parse_args (& cmdline, argc, argv);
59f14fc0 21757
18bd398b 21758 if (optind < (argc - 1))
1b513401
NC
21759 /* When displaying information for more than one file,
21760 prefix the information with the file name. */
015dc7e1 21761 show_name = true;
5656ba2c
L
21762 else if (optind >= argc)
21763 {
1b513401 21764 /* Ensure that the warning is always displayed. */
015dc7e1 21765 do_checks = true;
1b513401 21766
5656ba2c
L
21767 warn (_("Nothing to do.\n"));
21768 usage (stderr);
21769 }
18bd398b 21770
015dc7e1 21771 err = false;
252b5132 21772 while (optind < argc)
32ec8896 21773 if (! process_file (argv[optind++]))
015dc7e1 21774 err = true;
252b5132 21775
9db70fc3 21776 free (cmdline.dump_sects);
252b5132 21777
7d9813f1
NA
21778 free (dump_ctf_symtab_name);
21779 free (dump_ctf_strtab_name);
21780 free (dump_ctf_parent_name);
21781
32ec8896 21782 return err ? EXIT_FAILURE : EXIT_SUCCESS;
252b5132 21783}