]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - binutils/readelf.c
update-netbsd.sh: fix script name, update year range in copyright.
[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;
13acb58d 295 char * program_interpreter;
978c4450
AM
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:
13acb58d
AM
5541 if (segment->p_offset >= filedata->file_size
5542 || segment->p_filesz > filedata->file_size - segment->p_offset
5543 || segment->p_filesz - 1 >= (size_t) -2
5544 || fseek (filedata->handle,
5545 filedata->archive_file_offset + (long) segment->p_offset,
5546 SEEK_SET))
252b5132
RH
5547 error (_("Unable to find program interpreter name\n"));
5548 else
5549 {
13acb58d
AM
5550 size_t len = segment->p_filesz;
5551 free (filedata->program_interpreter);
5552 filedata->program_interpreter = xmalloc (len + 1);
5553 len = fread (filedata->program_interpreter, 1, len,
5554 filedata->handle);
5555 filedata->program_interpreter[len] = 0;
252b5132
RH
5556
5557 if (do_segments)
f54498b4 5558 printf (_(" [Requesting program interpreter: %s]\n"),
978c4450 5559 filedata->program_interpreter);
252b5132
RH
5560 }
5561 break;
5562 }
252b5132
RH
5563 }
5564
dda8d76d
NC
5565 if (do_segments
5566 && filedata->section_headers != NULL
5567 && filedata->string_table != NULL)
252b5132
RH
5568 {
5569 printf (_("\n Section to Segment mapping:\n"));
5570 printf (_(" Segment Sections...\n"));
5571
dda8d76d 5572 for (i = 0; i < filedata->file_header.e_phnum; i++)
252b5132 5573 {
9ad5cbcf 5574 unsigned int j;
2cf0635d 5575 Elf_Internal_Shdr * section;
252b5132 5576
dda8d76d
NC
5577 segment = filedata->program_headers + i;
5578 section = filedata->section_headers + 1;
252b5132
RH
5579
5580 printf (" %2.2d ", i);
5581
dda8d76d 5582 for (j = 1; j < filedata->file_header.e_shnum; j++, section++)
252b5132 5583 {
f4638467
AM
5584 if (!ELF_TBSS_SPECIAL (section, segment)
5585 && ELF_SECTION_IN_SEGMENT_STRICT (section, segment))
dda8d76d 5586 printf ("%s ", printable_section_name (filedata, section));
252b5132
RH
5587 }
5588
5589 putc ('\n',stdout);
5590 }
5591 }
5592
015dc7e1 5593 return true;
252b5132
RH
5594}
5595
5596
d93f0186
NC
5597/* Find the file offset corresponding to VMA by using the program headers. */
5598
5599static long
dda8d76d 5600offset_from_vma (Filedata * filedata, bfd_vma vma, bfd_size_type size)
d93f0186 5601{
2cf0635d 5602 Elf_Internal_Phdr * seg;
d93f0186 5603
dda8d76d 5604 if (! get_program_headers (filedata))
d93f0186
NC
5605 {
5606 warn (_("Cannot interpret virtual addresses without program headers.\n"));
5607 return (long) vma;
5608 }
5609
dda8d76d
NC
5610 for (seg = filedata->program_headers;
5611 seg < filedata->program_headers + filedata->file_header.e_phnum;
d93f0186
NC
5612 ++seg)
5613 {
5614 if (seg->p_type != PT_LOAD)
5615 continue;
5616
5617 if (vma >= (seg->p_vaddr & -seg->p_align)
5618 && vma + size <= seg->p_vaddr + seg->p_filesz)
5619 return vma - seg->p_vaddr + seg->p_offset;
5620 }
5621
5622 warn (_("Virtual address 0x%lx not located in any PT_LOAD segment.\n"),
0af1713e 5623 (unsigned long) vma);
d93f0186
NC
5624 return (long) vma;
5625}
5626
5627
dda8d76d
NC
5628/* Allocate memory and load the sections headers into FILEDATA->filedata->section_headers.
5629 If PROBE is true, this is just a probe and we do not generate any error
5630 messages if the load fails. */
049b0c3a 5631
015dc7e1
AM
5632static bool
5633get_32bit_section_headers (Filedata * filedata, bool probe)
252b5132 5634{
2cf0635d
NC
5635 Elf32_External_Shdr * shdrs;
5636 Elf_Internal_Shdr * internal;
dda8d76d
NC
5637 unsigned int i;
5638 unsigned int size = filedata->file_header.e_shentsize;
5639 unsigned int num = probe ? 1 : filedata->file_header.e_shnum;
049b0c3a
NC
5640
5641 /* PR binutils/17531: Cope with unexpected section header sizes. */
5642 if (size == 0 || num == 0)
015dc7e1 5643 return false;
049b0c3a
NC
5644 if (size < sizeof * shdrs)
5645 {
5646 if (! probe)
5647 error (_("The e_shentsize field in the ELF header is less than the size of an ELF section header\n"));
015dc7e1 5648 return false;
049b0c3a
NC
5649 }
5650 if (!probe && size > sizeof * shdrs)
5651 warn (_("The e_shentsize field in the ELF header is larger than the size of an ELF section header\n"));
252b5132 5652
dda8d76d 5653 shdrs = (Elf32_External_Shdr *) get_data (NULL, filedata, filedata->file_header.e_shoff,
049b0c3a
NC
5654 size, num,
5655 probe ? NULL : _("section headers"));
5656 if (shdrs == NULL)
015dc7e1 5657 return false;
252b5132 5658
dda8d76d
NC
5659 free (filedata->section_headers);
5660 filedata->section_headers = (Elf_Internal_Shdr *)
5661 cmalloc (num, sizeof (Elf_Internal_Shdr));
5662 if (filedata->section_headers == NULL)
252b5132 5663 {
049b0c3a 5664 if (!probe)
8b73c356 5665 error (_("Out of memory reading %u section headers\n"), num);
e3d39609 5666 free (shdrs);
015dc7e1 5667 return false;
252b5132
RH
5668 }
5669
dda8d76d 5670 for (i = 0, internal = filedata->section_headers;
560f3c1c 5671 i < num;
b34976b6 5672 i++, internal++)
252b5132
RH
5673 {
5674 internal->sh_name = BYTE_GET (shdrs[i].sh_name);
5675 internal->sh_type = BYTE_GET (shdrs[i].sh_type);
5676 internal->sh_flags = BYTE_GET (shdrs[i].sh_flags);
5677 internal->sh_addr = BYTE_GET (shdrs[i].sh_addr);
5678 internal->sh_offset = BYTE_GET (shdrs[i].sh_offset);
5679 internal->sh_size = BYTE_GET (shdrs[i].sh_size);
5680 internal->sh_link = BYTE_GET (shdrs[i].sh_link);
5681 internal->sh_info = BYTE_GET (shdrs[i].sh_info);
5682 internal->sh_addralign = BYTE_GET (shdrs[i].sh_addralign);
5683 internal->sh_entsize = BYTE_GET (shdrs[i].sh_entsize);
315350be
NC
5684 if (!probe && internal->sh_link > num)
5685 warn (_("Section %u has an out of range sh_link value of %u\n"), i, internal->sh_link);
5686 if (!probe && internal->sh_flags & SHF_INFO_LINK && internal->sh_info > num)
5687 warn (_("Section %u has an out of range sh_info value of %u\n"), i, internal->sh_info);
252b5132
RH
5688 }
5689
5690 free (shdrs);
015dc7e1 5691 return true;
252b5132
RH
5692}
5693
dda8d76d
NC
5694/* Like get_32bit_section_headers, except that it fetches 64-bit headers. */
5695
015dc7e1
AM
5696static bool
5697get_64bit_section_headers (Filedata * filedata, bool probe)
9ea033b2 5698{
dda8d76d
NC
5699 Elf64_External_Shdr * shdrs;
5700 Elf_Internal_Shdr * internal;
5701 unsigned int i;
5702 unsigned int size = filedata->file_header.e_shentsize;
5703 unsigned int num = probe ? 1 : filedata->file_header.e_shnum;
049b0c3a
NC
5704
5705 /* PR binutils/17531: Cope with unexpected section header sizes. */
5706 if (size == 0 || num == 0)
015dc7e1 5707 return false;
dda8d76d 5708
049b0c3a
NC
5709 if (size < sizeof * shdrs)
5710 {
5711 if (! probe)
5712 error (_("The e_shentsize field in the ELF header is less than the size of an ELF section header\n"));
015dc7e1 5713 return false;
049b0c3a 5714 }
dda8d76d 5715
049b0c3a
NC
5716 if (! probe && size > sizeof * shdrs)
5717 warn (_("The e_shentsize field in the ELF header is larger than the size of an ELF section header\n"));
9ea033b2 5718
dda8d76d
NC
5719 shdrs = (Elf64_External_Shdr *) get_data (NULL, filedata,
5720 filedata->file_header.e_shoff,
049b0c3a
NC
5721 size, num,
5722 probe ? NULL : _("section headers"));
5723 if (shdrs == NULL)
015dc7e1 5724 return false;
9ea033b2 5725
dda8d76d
NC
5726 free (filedata->section_headers);
5727 filedata->section_headers = (Elf_Internal_Shdr *)
5728 cmalloc (num, sizeof (Elf_Internal_Shdr));
5729 if (filedata->section_headers == NULL)
9ea033b2 5730 {
049b0c3a 5731 if (! probe)
8b73c356 5732 error (_("Out of memory reading %u section headers\n"), num);
e3d39609 5733 free (shdrs);
015dc7e1 5734 return false;
9ea033b2
NC
5735 }
5736
dda8d76d 5737 for (i = 0, internal = filedata->section_headers;
560f3c1c 5738 i < num;
b34976b6 5739 i++, internal++)
9ea033b2
NC
5740 {
5741 internal->sh_name = BYTE_GET (shdrs[i].sh_name);
5742 internal->sh_type = BYTE_GET (shdrs[i].sh_type);
66543521
AM
5743 internal->sh_flags = BYTE_GET (shdrs[i].sh_flags);
5744 internal->sh_addr = BYTE_GET (shdrs[i].sh_addr);
5745 internal->sh_size = BYTE_GET (shdrs[i].sh_size);
5746 internal->sh_entsize = BYTE_GET (shdrs[i].sh_entsize);
9ea033b2
NC
5747 internal->sh_link = BYTE_GET (shdrs[i].sh_link);
5748 internal->sh_info = BYTE_GET (shdrs[i].sh_info);
5749 internal->sh_offset = BYTE_GET (shdrs[i].sh_offset);
5750 internal->sh_addralign = BYTE_GET (shdrs[i].sh_addralign);
315350be
NC
5751 if (!probe && internal->sh_link > num)
5752 warn (_("Section %u has an out of range sh_link value of %u\n"), i, internal->sh_link);
5753 if (!probe && internal->sh_flags & SHF_INFO_LINK && internal->sh_info > num)
5754 warn (_("Section %u has an out of range sh_info value of %u\n"), i, internal->sh_info);
9ea033b2
NC
5755 }
5756
5757 free (shdrs);
015dc7e1 5758 return true;
9ea033b2
NC
5759}
5760
252b5132 5761static Elf_Internal_Sym *
dda8d76d
NC
5762get_32bit_elf_symbols (Filedata * filedata,
5763 Elf_Internal_Shdr * section,
5764 unsigned long * num_syms_return)
252b5132 5765{
ba5cdace 5766 unsigned long number = 0;
dd24e3da 5767 Elf32_External_Sym * esyms = NULL;
ba5cdace 5768 Elf_External_Sym_Shndx * shndx = NULL;
dd24e3da 5769 Elf_Internal_Sym * isyms = NULL;
2cf0635d 5770 Elf_Internal_Sym * psym;
b34976b6 5771 unsigned int j;
e3d39609 5772 elf_section_list * entry;
252b5132 5773
c9c1d674
EG
5774 if (section->sh_size == 0)
5775 {
5776 if (num_syms_return != NULL)
5777 * num_syms_return = 0;
5778 return NULL;
5779 }
5780
dd24e3da 5781 /* Run some sanity checks first. */
c9c1d674 5782 if (section->sh_entsize == 0 || section->sh_entsize > section->sh_size)
dd24e3da 5783 {
c9c1d674 5784 error (_("Section %s has an invalid sh_entsize of 0x%lx\n"),
dda8d76d
NC
5785 printable_section_name (filedata, section),
5786 (unsigned long) section->sh_entsize);
ba5cdace 5787 goto exit_point;
dd24e3da
NC
5788 }
5789
dda8d76d 5790 if (section->sh_size > filedata->file_size)
f54498b4
NC
5791 {
5792 error (_("Section %s has an invalid sh_size of 0x%lx\n"),
dda8d76d
NC
5793 printable_section_name (filedata, section),
5794 (unsigned long) section->sh_size);
f54498b4
NC
5795 goto exit_point;
5796 }
5797
dd24e3da
NC
5798 number = section->sh_size / section->sh_entsize;
5799
5800 if (number * sizeof (Elf32_External_Sym) > section->sh_size + 1)
5801 {
c9c1d674 5802 error (_("Size (0x%lx) of section %s is not a multiple of its sh_entsize (0x%lx)\n"),
8066deb1 5803 (unsigned long) section->sh_size,
dda8d76d 5804 printable_section_name (filedata, section),
8066deb1 5805 (unsigned long) section->sh_entsize);
ba5cdace 5806 goto exit_point;
dd24e3da
NC
5807 }
5808
dda8d76d 5809 esyms = (Elf32_External_Sym *) get_data (NULL, filedata, section->sh_offset, 1,
3f5e193b 5810 section->sh_size, _("symbols"));
dd24e3da 5811 if (esyms == NULL)
ba5cdace 5812 goto exit_point;
252b5132 5813
e3d39609 5814 shndx = NULL;
978c4450 5815 for (entry = filedata->symtab_shndx_list; entry != NULL; entry = entry->next)
e3d39609
NC
5816 {
5817 if (entry->hdr->sh_link != (unsigned long) (section - filedata->section_headers))
5818 continue;
5819
5820 if (shndx != NULL)
5821 {
5822 error (_("Multiple symbol table index sections associated with the same symbol section\n"));
5823 free (shndx);
5824 }
5825
5826 shndx = (Elf_External_Sym_Shndx *) get_data (NULL, filedata,
5827 entry->hdr->sh_offset,
5828 1, entry->hdr->sh_size,
5829 _("symbol table section indices"));
5830 if (shndx == NULL)
5831 goto exit_point;
5832
5833 /* PR17531: file: heap-buffer-overflow */
5834 if (entry->hdr->sh_size / sizeof (Elf_External_Sym_Shndx) < number)
5835 {
5836 error (_("Index section %s has an sh_size of 0x%lx - expected 0x%lx\n"),
5837 printable_section_name (filedata, entry->hdr),
5838 (unsigned long) entry->hdr->sh_size,
5839 (unsigned long) section->sh_size);
5840 goto exit_point;
c9c1d674 5841 }
e3d39609 5842 }
9ad5cbcf 5843
3f5e193b 5844 isyms = (Elf_Internal_Sym *) cmalloc (number, sizeof (Elf_Internal_Sym));
252b5132
RH
5845
5846 if (isyms == NULL)
5847 {
8b73c356
NC
5848 error (_("Out of memory reading %lu symbols\n"),
5849 (unsigned long) number);
dd24e3da 5850 goto exit_point;
252b5132
RH
5851 }
5852
dd24e3da 5853 for (j = 0, psym = isyms; j < number; j++, psym++)
252b5132
RH
5854 {
5855 psym->st_name = BYTE_GET (esyms[j].st_name);
5856 psym->st_value = BYTE_GET (esyms[j].st_value);
5857 psym->st_size = BYTE_GET (esyms[j].st_size);
5858 psym->st_shndx = BYTE_GET (esyms[j].st_shndx);
4fbb74a6 5859 if (psym->st_shndx == (SHN_XINDEX & 0xffff) && shndx != NULL)
9ad5cbcf
AM
5860 psym->st_shndx
5861 = byte_get ((unsigned char *) &shndx[j], sizeof (shndx[j]));
4fbb74a6
AM
5862 else if (psym->st_shndx >= (SHN_LORESERVE & 0xffff))
5863 psym->st_shndx += SHN_LORESERVE - (SHN_LORESERVE & 0xffff);
252b5132
RH
5864 psym->st_info = BYTE_GET (esyms[j].st_info);
5865 psym->st_other = BYTE_GET (esyms[j].st_other);
5866 }
5867
dd24e3da 5868 exit_point:
e3d39609
NC
5869 free (shndx);
5870 free (esyms);
252b5132 5871
ba5cdace
NC
5872 if (num_syms_return != NULL)
5873 * num_syms_return = isyms == NULL ? 0 : number;
5874
252b5132
RH
5875 return isyms;
5876}
5877
9ea033b2 5878static Elf_Internal_Sym *
dda8d76d
NC
5879get_64bit_elf_symbols (Filedata * filedata,
5880 Elf_Internal_Shdr * section,
5881 unsigned long * num_syms_return)
9ea033b2 5882{
ba5cdace
NC
5883 unsigned long number = 0;
5884 Elf64_External_Sym * esyms = NULL;
5885 Elf_External_Sym_Shndx * shndx = NULL;
5886 Elf_Internal_Sym * isyms = NULL;
2cf0635d 5887 Elf_Internal_Sym * psym;
b34976b6 5888 unsigned int j;
e3d39609 5889 elf_section_list * entry;
9ea033b2 5890
c9c1d674
EG
5891 if (section->sh_size == 0)
5892 {
5893 if (num_syms_return != NULL)
5894 * num_syms_return = 0;
5895 return NULL;
5896 }
5897
dd24e3da 5898 /* Run some sanity checks first. */
c9c1d674 5899 if (section->sh_entsize == 0 || section->sh_entsize > section->sh_size)
dd24e3da 5900 {
c9c1d674 5901 error (_("Section %s has an invalid sh_entsize of 0x%lx\n"),
dda8d76d 5902 printable_section_name (filedata, section),
8066deb1 5903 (unsigned long) section->sh_entsize);
ba5cdace 5904 goto exit_point;
dd24e3da
NC
5905 }
5906
dda8d76d 5907 if (section->sh_size > filedata->file_size)
f54498b4
NC
5908 {
5909 error (_("Section %s has an invalid sh_size of 0x%lx\n"),
dda8d76d 5910 printable_section_name (filedata, section),
8066deb1 5911 (unsigned long) section->sh_size);
f54498b4
NC
5912 goto exit_point;
5913 }
5914
dd24e3da
NC
5915 number = section->sh_size / section->sh_entsize;
5916
5917 if (number * sizeof (Elf64_External_Sym) > section->sh_size + 1)
5918 {
c9c1d674 5919 error (_("Size (0x%lx) of section %s is not a multiple of its sh_entsize (0x%lx)\n"),
8066deb1 5920 (unsigned long) section->sh_size,
dda8d76d 5921 printable_section_name (filedata, section),
8066deb1 5922 (unsigned long) section->sh_entsize);
ba5cdace 5923 goto exit_point;
dd24e3da
NC
5924 }
5925
dda8d76d 5926 esyms = (Elf64_External_Sym *) get_data (NULL, filedata, section->sh_offset, 1,
3f5e193b 5927 section->sh_size, _("symbols"));
a6e9f9df 5928 if (!esyms)
ba5cdace 5929 goto exit_point;
9ea033b2 5930
e3d39609 5931 shndx = NULL;
978c4450 5932 for (entry = filedata->symtab_shndx_list; entry != NULL; entry = entry->next)
e3d39609
NC
5933 {
5934 if (entry->hdr->sh_link != (unsigned long) (section - filedata->section_headers))
5935 continue;
5936
5937 if (shndx != NULL)
5938 {
5939 error (_("Multiple symbol table index sections associated with the same symbol section\n"));
5940 free (shndx);
c9c1d674 5941 }
e3d39609
NC
5942
5943 shndx = (Elf_External_Sym_Shndx *) get_data (NULL, filedata,
5944 entry->hdr->sh_offset,
5945 1, entry->hdr->sh_size,
5946 _("symbol table section indices"));
5947 if (shndx == NULL)
5948 goto exit_point;
5949
5950 /* PR17531: file: heap-buffer-overflow */
5951 if (entry->hdr->sh_size / sizeof (Elf_External_Sym_Shndx) < number)
5952 {
5953 error (_("Index section %s has an sh_size of 0x%lx - expected 0x%lx\n"),
5954 printable_section_name (filedata, entry->hdr),
5955 (unsigned long) entry->hdr->sh_size,
5956 (unsigned long) section->sh_size);
5957 goto exit_point;
5958 }
5959 }
9ad5cbcf 5960
3f5e193b 5961 isyms = (Elf_Internal_Sym *) cmalloc (number, sizeof (Elf_Internal_Sym));
9ea033b2
NC
5962
5963 if (isyms == NULL)
5964 {
8b73c356
NC
5965 error (_("Out of memory reading %lu symbols\n"),
5966 (unsigned long) number);
ba5cdace 5967 goto exit_point;
9ea033b2
NC
5968 }
5969
ba5cdace 5970 for (j = 0, psym = isyms; j < number; j++, psym++)
9ea033b2
NC
5971 {
5972 psym->st_name = BYTE_GET (esyms[j].st_name);
5973 psym->st_info = BYTE_GET (esyms[j].st_info);
5974 psym->st_other = BYTE_GET (esyms[j].st_other);
5975 psym->st_shndx = BYTE_GET (esyms[j].st_shndx);
ba5cdace 5976
4fbb74a6 5977 if (psym->st_shndx == (SHN_XINDEX & 0xffff) && shndx != NULL)
9ad5cbcf
AM
5978 psym->st_shndx
5979 = byte_get ((unsigned char *) &shndx[j], sizeof (shndx[j]));
4fbb74a6
AM
5980 else if (psym->st_shndx >= (SHN_LORESERVE & 0xffff))
5981 psym->st_shndx += SHN_LORESERVE - (SHN_LORESERVE & 0xffff);
ba5cdace 5982
66543521
AM
5983 psym->st_value = BYTE_GET (esyms[j].st_value);
5984 psym->st_size = BYTE_GET (esyms[j].st_size);
9ea033b2
NC
5985 }
5986
ba5cdace 5987 exit_point:
e3d39609
NC
5988 free (shndx);
5989 free (esyms);
ba5cdace
NC
5990
5991 if (num_syms_return != NULL)
5992 * num_syms_return = isyms == NULL ? 0 : number;
9ea033b2
NC
5993
5994 return isyms;
5995}
5996
d1133906 5997static const char *
dda8d76d 5998get_elf_section_flags (Filedata * filedata, bfd_vma sh_flags)
d1133906 5999{
5477e8a0 6000 static char buff[1024];
2cf0635d 6001 char * p = buff;
32ec8896
NC
6002 unsigned int field_size = is_32bit_elf ? 8 : 16;
6003 signed int sindex;
6004 unsigned int size = sizeof (buff) - (field_size + 4 + 1);
8d5ff12c
L
6005 bfd_vma os_flags = 0;
6006 bfd_vma proc_flags = 0;
6007 bfd_vma unknown_flags = 0;
148b93f2 6008 static const struct
5477e8a0 6009 {
2cf0635d 6010 const char * str;
32ec8896 6011 unsigned int len;
5477e8a0
L
6012 }
6013 flags [] =
6014 {
cfcac11d
NC
6015 /* 0 */ { STRING_COMMA_LEN ("WRITE") },
6016 /* 1 */ { STRING_COMMA_LEN ("ALLOC") },
6017 /* 2 */ { STRING_COMMA_LEN ("EXEC") },
6018 /* 3 */ { STRING_COMMA_LEN ("MERGE") },
6019 /* 4 */ { STRING_COMMA_LEN ("STRINGS") },
6020 /* 5 */ { STRING_COMMA_LEN ("INFO LINK") },
6021 /* 6 */ { STRING_COMMA_LEN ("LINK ORDER") },
6022 /* 7 */ { STRING_COMMA_LEN ("OS NONCONF") },
6023 /* 8 */ { STRING_COMMA_LEN ("GROUP") },
6024 /* 9 */ { STRING_COMMA_LEN ("TLS") },
6025 /* IA-64 specific. */
6026 /* 10 */ { STRING_COMMA_LEN ("SHORT") },
6027 /* 11 */ { STRING_COMMA_LEN ("NORECOV") },
6028 /* IA-64 OpenVMS specific. */
6029 /* 12 */ { STRING_COMMA_LEN ("VMS_GLOBAL") },
6030 /* 13 */ { STRING_COMMA_LEN ("VMS_OVERLAID") },
6031 /* 14 */ { STRING_COMMA_LEN ("VMS_SHARED") },
6032 /* 15 */ { STRING_COMMA_LEN ("VMS_VECTOR") },
6033 /* 16 */ { STRING_COMMA_LEN ("VMS_ALLOC_64BIT") },
6034 /* 17 */ { STRING_COMMA_LEN ("VMS_PROTECTED") },
18ae9cc1 6035 /* Generic. */
cfcac11d 6036 /* 18 */ { STRING_COMMA_LEN ("EXCLUDE") },
18ae9cc1 6037 /* SPARC specific. */
77115a4a 6038 /* 19 */ { STRING_COMMA_LEN ("ORDERED") },
ac4c9b04
MG
6039 /* 20 */ { STRING_COMMA_LEN ("COMPRESSED") },
6040 /* ARM specific. */
6041 /* 21 */ { STRING_COMMA_LEN ("ENTRYSECT") },
f0728ee3 6042 /* 22 */ { STRING_COMMA_LEN ("ARM_PURECODE") },
a91e1603
L
6043 /* 23 */ { STRING_COMMA_LEN ("COMDEF") },
6044 /* GNU specific. */
6045 /* 24 */ { STRING_COMMA_LEN ("GNU_MBIND") },
83eef883
AFB
6046 /* VLE specific. */
6047 /* 25 */ { STRING_COMMA_LEN ("VLE") },
99fabbc9
JL
6048 /* GNU specific. */
6049 /* 26 */ { STRING_COMMA_LEN ("GNU_RETAIN") },
5477e8a0
L
6050 };
6051
6052 if (do_section_details)
6053 {
8d5ff12c
L
6054 sprintf (buff, "[%*.*lx]: ",
6055 field_size, field_size, (unsigned long) sh_flags);
6056 p += field_size + 4;
5477e8a0 6057 }
76da6bbe 6058
d1133906
NC
6059 while (sh_flags)
6060 {
6061 bfd_vma flag;
6062
6063 flag = sh_flags & - sh_flags;
6064 sh_flags &= ~ flag;
76da6bbe 6065
5477e8a0 6066 if (do_section_details)
d1133906 6067 {
5477e8a0
L
6068 switch (flag)
6069 {
91d6fa6a
NC
6070 case SHF_WRITE: sindex = 0; break;
6071 case SHF_ALLOC: sindex = 1; break;
6072 case SHF_EXECINSTR: sindex = 2; break;
6073 case SHF_MERGE: sindex = 3; break;
6074 case SHF_STRINGS: sindex = 4; break;
6075 case SHF_INFO_LINK: sindex = 5; break;
6076 case SHF_LINK_ORDER: sindex = 6; break;
6077 case SHF_OS_NONCONFORMING: sindex = 7; break;
6078 case SHF_GROUP: sindex = 8; break;
6079 case SHF_TLS: sindex = 9; break;
18ae9cc1 6080 case SHF_EXCLUDE: sindex = 18; break;
77115a4a 6081 case SHF_COMPRESSED: sindex = 20; break;
76da6bbe 6082
5477e8a0 6083 default:
91d6fa6a 6084 sindex = -1;
dda8d76d 6085 switch (filedata->file_header.e_machine)
148b93f2 6086 {
cfcac11d 6087 case EM_IA_64:
148b93f2 6088 if (flag == SHF_IA_64_SHORT)
91d6fa6a 6089 sindex = 10;
148b93f2 6090 else if (flag == SHF_IA_64_NORECOV)
91d6fa6a 6091 sindex = 11;
148b93f2 6092#ifdef BFD64
dda8d76d 6093 else if (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_OPENVMS)
148b93f2
NC
6094 switch (flag)
6095 {
91d6fa6a
NC
6096 case SHF_IA_64_VMS_GLOBAL: sindex = 12; break;
6097 case SHF_IA_64_VMS_OVERLAID: sindex = 13; break;
6098 case SHF_IA_64_VMS_SHARED: sindex = 14; break;
6099 case SHF_IA_64_VMS_VECTOR: sindex = 15; break;
6100 case SHF_IA_64_VMS_ALLOC_64BIT: sindex = 16; break;
6101 case SHF_IA_64_VMS_PROTECTED: sindex = 17; break;
148b93f2
NC
6102 default: break;
6103 }
6104#endif
cfcac11d
NC
6105 break;
6106
caa83f8b 6107 case EM_386:
22abe556 6108 case EM_IAMCU:
caa83f8b 6109 case EM_X86_64:
7f502d6c 6110 case EM_L1OM:
7a9068fe 6111 case EM_K1OM:
cfcac11d
NC
6112 case EM_OLD_SPARCV9:
6113 case EM_SPARC32PLUS:
6114 case EM_SPARCV9:
6115 case EM_SPARC:
18ae9cc1 6116 if (flag == SHF_ORDERED)
91d6fa6a 6117 sindex = 19;
cfcac11d 6118 break;
ac4c9b04
MG
6119
6120 case EM_ARM:
6121 switch (flag)
6122 {
6123 case SHF_ENTRYSECT: sindex = 21; break;
f0728ee3 6124 case SHF_ARM_PURECODE: sindex = 22; break;
ac4c9b04
MG
6125 case SHF_COMDEF: sindex = 23; break;
6126 default: break;
6127 }
6128 break;
83eef883
AFB
6129 case EM_PPC:
6130 if (flag == SHF_PPC_VLE)
6131 sindex = 25;
6132 break;
99fabbc9
JL
6133 default:
6134 break;
6135 }
ac4c9b04 6136
99fabbc9
JL
6137 switch (filedata->file_header.e_ident[EI_OSABI])
6138 {
6139 case ELFOSABI_GNU:
6140 case ELFOSABI_FREEBSD:
6141 if (flag == SHF_GNU_RETAIN)
6142 sindex = 26;
6143 /* Fall through */
6144 case ELFOSABI_NONE:
6145 if (flag == SHF_GNU_MBIND)
6146 /* We should not recognize SHF_GNU_MBIND for
6147 ELFOSABI_NONE, but binutils as of 2019-07-23 did
6148 not set the EI_OSABI header byte. */
6149 sindex = 24;
6150 break;
cfcac11d
NC
6151 default:
6152 break;
148b93f2 6153 }
99fabbc9 6154 break;
5477e8a0
L
6155 }
6156
91d6fa6a 6157 if (sindex != -1)
5477e8a0 6158 {
8d5ff12c
L
6159 if (p != buff + field_size + 4)
6160 {
6161 if (size < (10 + 2))
bee0ee85
NC
6162 {
6163 warn (_("Internal error: not enough buffer room for section flag info"));
6164 return _("<unknown>");
6165 }
8d5ff12c
L
6166 size -= 2;
6167 *p++ = ',';
6168 *p++ = ' ';
6169 }
6170
91d6fa6a
NC
6171 size -= flags [sindex].len;
6172 p = stpcpy (p, flags [sindex].str);
5477e8a0 6173 }
3b22753a 6174 else if (flag & SHF_MASKOS)
8d5ff12c 6175 os_flags |= flag;
d1133906 6176 else if (flag & SHF_MASKPROC)
8d5ff12c 6177 proc_flags |= flag;
d1133906 6178 else
8d5ff12c 6179 unknown_flags |= flag;
5477e8a0
L
6180 }
6181 else
6182 {
6183 switch (flag)
6184 {
6185 case SHF_WRITE: *p = 'W'; break;
6186 case SHF_ALLOC: *p = 'A'; break;
6187 case SHF_EXECINSTR: *p = 'X'; break;
6188 case SHF_MERGE: *p = 'M'; break;
6189 case SHF_STRINGS: *p = 'S'; break;
6190 case SHF_INFO_LINK: *p = 'I'; break;
6191 case SHF_LINK_ORDER: *p = 'L'; break;
6192 case SHF_OS_NONCONFORMING: *p = 'O'; break;
6193 case SHF_GROUP: *p = 'G'; break;
6194 case SHF_TLS: *p = 'T'; break;
18ae9cc1 6195 case SHF_EXCLUDE: *p = 'E'; break;
77115a4a 6196 case SHF_COMPRESSED: *p = 'C'; break;
5477e8a0
L
6197
6198 default:
dda8d76d
NC
6199 if ((filedata->file_header.e_machine == EM_X86_64
6200 || filedata->file_header.e_machine == EM_L1OM
6201 || filedata->file_header.e_machine == EM_K1OM)
5477e8a0
L
6202 && flag == SHF_X86_64_LARGE)
6203 *p = 'l';
dda8d76d 6204 else if (filedata->file_header.e_machine == EM_ARM
f0728ee3 6205 && flag == SHF_ARM_PURECODE)
99fabbc9 6206 *p = 'y';
dda8d76d 6207 else if (filedata->file_header.e_machine == EM_PPC
83eef883 6208 && flag == SHF_PPC_VLE)
99fabbc9 6209 *p = 'v';
5477e8a0
L
6210 else if (flag & SHF_MASKOS)
6211 {
99fabbc9
JL
6212 switch (filedata->file_header.e_ident[EI_OSABI])
6213 {
6214 case ELFOSABI_GNU:
6215 case ELFOSABI_FREEBSD:
6216 if (flag == SHF_GNU_RETAIN)
6217 {
6218 *p = 'R';
6219 break;
6220 }
6221 /* Fall through */
6222 case ELFOSABI_NONE:
6223 if (flag == SHF_GNU_MBIND)
6224 {
6225 /* We should not recognize SHF_GNU_MBIND for
6226 ELFOSABI_NONE, but binutils as of 2019-07-23 did
6227 not set the EI_OSABI header byte. */
6228 *p = 'D';
6229 break;
6230 }
6231 /* Fall through */
6232 default:
6233 *p = 'o';
6234 sh_flags &= ~SHF_MASKOS;
6235 break;
6236 }
5477e8a0
L
6237 }
6238 else if (flag & SHF_MASKPROC)
6239 {
6240 *p = 'p';
6241 sh_flags &= ~ SHF_MASKPROC;
6242 }
6243 else
6244 *p = 'x';
6245 break;
6246 }
6247 p++;
d1133906
NC
6248 }
6249 }
76da6bbe 6250
8d5ff12c
L
6251 if (do_section_details)
6252 {
6253 if (os_flags)
6254 {
6255 size -= 5 + field_size;
6256 if (p != buff + field_size + 4)
6257 {
6258 if (size < (2 + 1))
bee0ee85
NC
6259 {
6260 warn (_("Internal error: not enough buffer room for section flag info"));
6261 return _("<unknown>");
6262 }
8d5ff12c
L
6263 size -= 2;
6264 *p++ = ',';
6265 *p++ = ' ';
6266 }
6267 sprintf (p, "OS (%*.*lx)", field_size, field_size,
6268 (unsigned long) os_flags);
6269 p += 5 + field_size;
6270 }
6271 if (proc_flags)
6272 {
6273 size -= 7 + field_size;
6274 if (p != buff + field_size + 4)
6275 {
6276 if (size < (2 + 1))
bee0ee85
NC
6277 {
6278 warn (_("Internal error: not enough buffer room for section flag info"));
6279 return _("<unknown>");
6280 }
8d5ff12c
L
6281 size -= 2;
6282 *p++ = ',';
6283 *p++ = ' ';
6284 }
6285 sprintf (p, "PROC (%*.*lx)", field_size, field_size,
6286 (unsigned long) proc_flags);
6287 p += 7 + field_size;
6288 }
6289 if (unknown_flags)
6290 {
6291 size -= 10 + field_size;
6292 if (p != buff + field_size + 4)
6293 {
6294 if (size < (2 + 1))
bee0ee85
NC
6295 {
6296 warn (_("Internal error: not enough buffer room for section flag info"));
6297 return _("<unknown>");
6298 }
8d5ff12c
L
6299 size -= 2;
6300 *p++ = ',';
6301 *p++ = ' ';
6302 }
2b692964 6303 sprintf (p, _("UNKNOWN (%*.*lx)"), field_size, field_size,
8d5ff12c
L
6304 (unsigned long) unknown_flags);
6305 p += 10 + field_size;
6306 }
6307 }
6308
e9e44622 6309 *p = '\0';
d1133906
NC
6310 return buff;
6311}
6312
5844b465 6313static unsigned int ATTRIBUTE_WARN_UNUSED_RESULT
ebdf1ebf 6314get_compression_header (Elf_Internal_Chdr *chdr, unsigned char *buf, bfd_size_type size)
77115a4a
L
6315{
6316 if (is_32bit_elf)
6317 {
6318 Elf32_External_Chdr *echdr = (Elf32_External_Chdr *) buf;
d8024a91 6319
ebdf1ebf
NC
6320 if (size < sizeof (* echdr))
6321 {
6322 error (_("Compressed section is too small even for a compression header\n"));
6323 return 0;
6324 }
6325
77115a4a
L
6326 chdr->ch_type = BYTE_GET (echdr->ch_type);
6327 chdr->ch_size = BYTE_GET (echdr->ch_size);
6328 chdr->ch_addralign = BYTE_GET (echdr->ch_addralign);
6329 return sizeof (*echdr);
6330 }
6331 else
6332 {
6333 Elf64_External_Chdr *echdr = (Elf64_External_Chdr *) buf;
d8024a91 6334
ebdf1ebf
NC
6335 if (size < sizeof (* echdr))
6336 {
6337 error (_("Compressed section is too small even for a compression header\n"));
6338 return 0;
6339 }
6340
77115a4a
L
6341 chdr->ch_type = BYTE_GET (echdr->ch_type);
6342 chdr->ch_size = BYTE_GET (echdr->ch_size);
6343 chdr->ch_addralign = BYTE_GET (echdr->ch_addralign);
6344 return sizeof (*echdr);
6345 }
6346}
6347
015dc7e1 6348static bool
dda8d76d 6349process_section_headers (Filedata * filedata)
252b5132 6350{
2cf0635d 6351 Elf_Internal_Shdr * section;
b34976b6 6352 unsigned int i;
252b5132 6353
8fb879cd 6354 free (filedata->section_headers);
dda8d76d 6355 filedata->section_headers = NULL;
978c4450
AM
6356 free (filedata->dynamic_symbols);
6357 filedata->dynamic_symbols = NULL;
6358 filedata->num_dynamic_syms = 0;
6359 free (filedata->dynamic_strings);
6360 filedata->dynamic_strings = NULL;
6361 filedata->dynamic_strings_length = 0;
6362 free (filedata->dynamic_syminfo);
6363 filedata->dynamic_syminfo = NULL;
6364 while (filedata->symtab_shndx_list != NULL)
8ff66993 6365 {
978c4450
AM
6366 elf_section_list *next = filedata->symtab_shndx_list->next;
6367 free (filedata->symtab_shndx_list);
6368 filedata->symtab_shndx_list = next;
8ff66993 6369 }
252b5132 6370
dda8d76d 6371 if (filedata->file_header.e_shnum == 0)
252b5132 6372 {
82f2dbf7 6373 /* PR binutils/12467. */
dda8d76d 6374 if (filedata->file_header.e_shoff != 0)
32ec8896
NC
6375 {
6376 warn (_("possibly corrupt ELF file header - it has a non-zero"
6377 " section header offset, but no section headers\n"));
015dc7e1 6378 return false;
32ec8896 6379 }
82f2dbf7 6380 else if (do_sections)
252b5132
RH
6381 printf (_("\nThere are no sections in this file.\n"));
6382
015dc7e1 6383 return true;
252b5132
RH
6384 }
6385
6386 if (do_sections && !do_header)
ca0e11aa
NC
6387 {
6388 if (filedata->is_separate && process_links)
6389 printf (_("In linked file '%s': "), filedata->file_name);
6390 if (! filedata->is_separate || process_links)
6391 printf (ngettext ("There is %d section header, "
6392 "starting at offset 0x%lx:\n",
6393 "There are %d section headers, "
6394 "starting at offset 0x%lx:\n",
6395 filedata->file_header.e_shnum),
6396 filedata->file_header.e_shnum,
6397 (unsigned long) filedata->file_header.e_shoff);
6398 }
252b5132 6399
9ea033b2
NC
6400 if (is_32bit_elf)
6401 {
015dc7e1
AM
6402 if (! get_32bit_section_headers (filedata, false))
6403 return false;
32ec8896
NC
6404 }
6405 else
6406 {
015dc7e1
AM
6407 if (! get_64bit_section_headers (filedata, false))
6408 return false;
9ea033b2 6409 }
252b5132
RH
6410
6411 /* Read in the string table, so that we have names to display. */
dda8d76d
NC
6412 if (filedata->file_header.e_shstrndx != SHN_UNDEF
6413 && filedata->file_header.e_shstrndx < filedata->file_header.e_shnum)
252b5132 6414 {
dda8d76d 6415 section = filedata->section_headers + filedata->file_header.e_shstrndx;
d40ac9bd 6416
c256ffe7
JJ
6417 if (section->sh_size != 0)
6418 {
dda8d76d
NC
6419 filedata->string_table = (char *) get_data (NULL, filedata, section->sh_offset,
6420 1, section->sh_size,
6421 _("string table"));
0de14b54 6422
dda8d76d 6423 filedata->string_table_length = filedata->string_table != NULL ? section->sh_size : 0;
c256ffe7 6424 }
252b5132
RH
6425 }
6426
6427 /* Scan the sections for the dynamic symbol table
e3c8793a 6428 and dynamic string table and debug sections. */
89fac5e3 6429 eh_addr_size = is_32bit_elf ? 4 : 8;
dda8d76d 6430 switch (filedata->file_header.e_machine)
89fac5e3
RS
6431 {
6432 case EM_MIPS:
6433 case EM_MIPS_RS3_LE:
6434 /* The 64-bit MIPS EABI uses a combination of 32-bit ELF and 64-bit
6435 FDE addresses. However, the ABI also has a semi-official ILP32
6436 variant for which the normal FDE address size rules apply.
6437
6438 GCC 4.0 marks EABI64 objects with a dummy .gcc_compiled_longXX
6439 section, where XX is the size of longs in bits. Unfortunately,
6440 earlier compilers provided no way of distinguishing ILP32 objects
6441 from LP64 objects, so if there's any doubt, we should assume that
6442 the official LP64 form is being used. */
dda8d76d
NC
6443 if ((filedata->file_header.e_flags & EF_MIPS_ABI) == E_MIPS_ABI_EABI64
6444 && find_section (filedata, ".gcc_compiled_long32") == NULL)
89fac5e3
RS
6445 eh_addr_size = 8;
6446 break;
0f56a26a
DD
6447
6448 case EM_H8_300:
6449 case EM_H8_300H:
dda8d76d 6450 switch (filedata->file_header.e_flags & EF_H8_MACH)
0f56a26a
DD
6451 {
6452 case E_H8_MACH_H8300:
6453 case E_H8_MACH_H8300HN:
6454 case E_H8_MACH_H8300SN:
6455 case E_H8_MACH_H8300SXN:
6456 eh_addr_size = 2;
6457 break;
6458 case E_H8_MACH_H8300H:
6459 case E_H8_MACH_H8300S:
6460 case E_H8_MACH_H8300SX:
6461 eh_addr_size = 4;
6462 break;
6463 }
f4236fe4
DD
6464 break;
6465
ff7eeb89 6466 case EM_M32C_OLD:
f4236fe4 6467 case EM_M32C:
dda8d76d 6468 switch (filedata->file_header.e_flags & EF_M32C_CPU_MASK)
f4236fe4
DD
6469 {
6470 case EF_M32C_CPU_M16C:
6471 eh_addr_size = 2;
6472 break;
6473 }
6474 break;
89fac5e3
RS
6475 }
6476
76ca31c0
NC
6477#define CHECK_ENTSIZE_VALUES(section, i, size32, size64) \
6478 do \
6479 { \
6480 bfd_size_type expected_entsize = is_32bit_elf ? size32 : size64; \
6481 if (section->sh_entsize != expected_entsize) \
9dd3a467 6482 { \
76ca31c0
NC
6483 char buf[40]; \
6484 sprintf_vma (buf, section->sh_entsize); \
6485 /* Note: coded this way so that there is a single string for \
6486 translation. */ \
6487 error (_("Section %d has invalid sh_entsize of %s\n"), i, buf); \
6488 error (_("(Using the expected size of %u for the rest of this dump)\n"), \
6489 (unsigned) expected_entsize); \
9dd3a467 6490 section->sh_entsize = expected_entsize; \
76ca31c0
NC
6491 } \
6492 } \
08d8fa11 6493 while (0)
9dd3a467
NC
6494
6495#define CHECK_ENTSIZE(section, i, type) \
1b513401 6496 CHECK_ENTSIZE_VALUES (section, i, sizeof (Elf32_External_##type), \
08d8fa11
JJ
6497 sizeof (Elf64_External_##type))
6498
dda8d76d
NC
6499 for (i = 0, section = filedata->section_headers;
6500 i < filedata->file_header.e_shnum;
b34976b6 6501 i++, section++)
252b5132 6502 {
b9e920ec 6503 char * name = SECTION_NAME_PRINT (section);
252b5132 6504
1b513401
NC
6505 /* Run some sanity checks on the headers and
6506 possibly fill in some file data as well. */
6507 switch (section->sh_type)
252b5132 6508 {
1b513401 6509 case SHT_DYNSYM:
978c4450 6510 if (filedata->dynamic_symbols != NULL)
252b5132
RH
6511 {
6512 error (_("File contains multiple dynamic symbol tables\n"));
6513 continue;
6514 }
6515
08d8fa11 6516 CHECK_ENTSIZE (section, i, Sym);
978c4450
AM
6517 filedata->dynamic_symbols
6518 = GET_ELF_SYMBOLS (filedata, section, &filedata->num_dynamic_syms);
8ac10c5b 6519 filedata->dynamic_symtab_section = section;
1b513401
NC
6520 break;
6521
6522 case SHT_STRTAB:
6523 if (streq (name, ".dynstr"))
252b5132 6524 {
1b513401
NC
6525 if (filedata->dynamic_strings != NULL)
6526 {
6527 error (_("File contains multiple dynamic string tables\n"));
6528 continue;
6529 }
6530
6531 filedata->dynamic_strings
6532 = (char *) get_data (NULL, filedata, section->sh_offset,
6533 1, section->sh_size, _("dynamic strings"));
6534 filedata->dynamic_strings_length
6535 = filedata->dynamic_strings == NULL ? 0 : section->sh_size;
8ac10c5b 6536 filedata->dynamic_strtab_section = section;
252b5132 6537 }
1b513401
NC
6538 break;
6539
6540 case SHT_SYMTAB_SHNDX:
6541 {
6542 elf_section_list * entry = xmalloc (sizeof * entry);
6543
6544 entry->hdr = section;
6545 entry->next = filedata->symtab_shndx_list;
6546 filedata->symtab_shndx_list = entry;
6547 }
6548 break;
6549
6550 case SHT_SYMTAB:
6551 CHECK_ENTSIZE (section, i, Sym);
6552 break;
6553
6554 case SHT_GROUP:
6555 CHECK_ENTSIZE_VALUES (section, i, GRP_ENTRY_SIZE, GRP_ENTRY_SIZE);
6556 break;
252b5132 6557
1b513401
NC
6558 case SHT_REL:
6559 CHECK_ENTSIZE (section, i, Rel);
546cb2d8 6560 if (do_checks && section->sh_size == 0)
1b513401
NC
6561 warn (_("Section '%s': zero-sized relocation section\n"), name);
6562 break;
6563
6564 case SHT_RELA:
6565 CHECK_ENTSIZE (section, i, Rela);
546cb2d8 6566 if (do_checks && section->sh_size == 0)
1b513401
NC
6567 warn (_("Section '%s': zero-sized relocation section\n"), name);
6568 break;
6569
6570 case SHT_NOTE:
6571 case SHT_PROGBITS:
546cb2d8
NC
6572 /* Having a zero sized section is not illegal according to the
6573 ELF standard, but it might be an indication that something
6574 is wrong. So issue a warning if we are running in lint mode. */
6575 if (do_checks && section->sh_size == 0)
1b513401
NC
6576 warn (_("Section '%s': has a size of zero - is this intended ?\n"), name);
6577 break;
6578
6579 default:
6580 break;
6581 }
6582
6583 if ((do_debugging || do_debug_info || do_debug_abbrevs
6584 || do_debug_lines || do_debug_pubnames || do_debug_pubtypes
6585 || do_debug_aranges || do_debug_frames || do_debug_macinfo
e38332c2
NC
6586 || do_debug_str || do_debug_str_offsets || do_debug_loc
6587 || do_debug_ranges
1b513401 6588 || do_debug_addr || do_debug_cu_index || do_debug_links)
24d127aa
ML
6589 && (startswith (name, ".debug_")
6590 || startswith (name, ".zdebug_")))
252b5132 6591 {
1b315056
CS
6592 if (name[1] == 'z')
6593 name += sizeof (".zdebug_") - 1;
6594 else
6595 name += sizeof (".debug_") - 1;
252b5132
RH
6596
6597 if (do_debugging
24d127aa
ML
6598 || (do_debug_info && startswith (name, "info"))
6599 || (do_debug_info && startswith (name, "types"))
6600 || (do_debug_abbrevs && startswith (name, "abbrev"))
b40bf0a2 6601 || (do_debug_lines && strcmp (name, "line") == 0)
24d127aa
ML
6602 || (do_debug_lines && startswith (name, "line."))
6603 || (do_debug_pubnames && startswith (name, "pubnames"))
6604 || (do_debug_pubtypes && startswith (name, "pubtypes"))
6605 || (do_debug_pubnames && startswith (name, "gnu_pubnames"))
6606 || (do_debug_pubtypes && startswith (name, "gnu_pubtypes"))
6607 || (do_debug_aranges && startswith (name, "aranges"))
6608 || (do_debug_ranges && startswith (name, "ranges"))
6609 || (do_debug_ranges && startswith (name, "rnglists"))
6610 || (do_debug_frames && startswith (name, "frame"))
6611 || (do_debug_macinfo && startswith (name, "macinfo"))
6612 || (do_debug_macinfo && startswith (name, "macro"))
6613 || (do_debug_str && startswith (name, "str"))
6614 || (do_debug_links && startswith (name, "sup"))
6615 || (do_debug_str_offsets && startswith (name, "str_offsets"))
6616 || (do_debug_loc && startswith (name, "loc"))
6617 || (do_debug_loc && startswith (name, "loclists"))
6618 || (do_debug_addr && startswith (name, "addr"))
6619 || (do_debug_cu_index && startswith (name, "cu_index"))
6620 || (do_debug_cu_index && startswith (name, "tu_index"))
252b5132 6621 )
6431e409 6622 request_dump_bynumber (&filedata->dump, i, DEBUG_DUMP);
252b5132 6623 }
a262ae96 6624 /* Linkonce section to be combined with .debug_info at link time. */
09fd7e38 6625 else if ((do_debugging || do_debug_info)
24d127aa 6626 && startswith (name, ".gnu.linkonce.wi."))
6431e409 6627 request_dump_bynumber (&filedata->dump, i, DEBUG_DUMP);
18bd398b 6628 else if (do_debug_frames && streq (name, ".eh_frame"))
6431e409 6629 request_dump_bynumber (&filedata->dump, i, DEBUG_DUMP);
61364358
JK
6630 else if (do_gdb_index && (streq (name, ".gdb_index")
6631 || streq (name, ".debug_names")))
6431e409 6632 request_dump_bynumber (&filedata->dump, i, DEBUG_DUMP);
6f875884
TG
6633 /* Trace sections for Itanium VMS. */
6634 else if ((do_debugging || do_trace_info || do_trace_abbrevs
6635 || do_trace_aranges)
24d127aa 6636 && startswith (name, ".trace_"))
6f875884
TG
6637 {
6638 name += sizeof (".trace_") - 1;
6639
6640 if (do_debugging
6641 || (do_trace_info && streq (name, "info"))
6642 || (do_trace_abbrevs && streq (name, "abbrev"))
6643 || (do_trace_aranges && streq (name, "aranges"))
6644 )
6431e409 6645 request_dump_bynumber (&filedata->dump, i, DEBUG_DUMP);
6f875884 6646 }
dda8d76d 6647 else if ((do_debugging || do_debug_links)
24d127aa
ML
6648 && (startswith (name, ".gnu_debuglink")
6649 || startswith (name, ".gnu_debugaltlink")))
6431e409 6650 request_dump_bynumber (&filedata->dump, i, DEBUG_DUMP);
252b5132
RH
6651 }
6652
6653 if (! do_sections)
015dc7e1 6654 return true;
252b5132 6655
ca0e11aa 6656 if (filedata->is_separate && ! process_links)
015dc7e1 6657 return true;
ca0e11aa
NC
6658
6659 if (filedata->is_separate)
6660 printf (_("\nSection Headers in linked file '%s':\n"), filedata->file_name);
6661 else if (filedata->file_header.e_shnum > 1)
3a1a2036
NC
6662 printf (_("\nSection Headers:\n"));
6663 else
6664 printf (_("\nSection Header:\n"));
76da6bbe 6665
f7a99963 6666 if (is_32bit_elf)
595cf52e 6667 {
5477e8a0 6668 if (do_section_details)
595cf52e
L
6669 {
6670 printf (_(" [Nr] Name\n"));
5477e8a0 6671 printf (_(" Type Addr Off Size ES Lk Inf Al\n"));
595cf52e
L
6672 }
6673 else
6674 printf
6675 (_(" [Nr] Name Type Addr Off Size ES Flg Lk Inf Al\n"));
6676 }
d974e256 6677 else if (do_wide)
595cf52e 6678 {
5477e8a0 6679 if (do_section_details)
595cf52e
L
6680 {
6681 printf (_(" [Nr] Name\n"));
5477e8a0 6682 printf (_(" Type Address Off Size ES Lk Inf Al\n"));
595cf52e
L
6683 }
6684 else
6685 printf
6686 (_(" [Nr] Name Type Address Off Size ES Flg Lk Inf Al\n"));
6687 }
f7a99963
NC
6688 else
6689 {
5477e8a0 6690 if (do_section_details)
595cf52e
L
6691 {
6692 printf (_(" [Nr] Name\n"));
5477e8a0
L
6693 printf (_(" Type Address Offset Link\n"));
6694 printf (_(" Size EntSize Info Align\n"));
595cf52e
L
6695 }
6696 else
6697 {
6698 printf (_(" [Nr] Name Type Address Offset\n"));
6699 printf (_(" Size EntSize Flags Link Info Align\n"));
6700 }
f7a99963 6701 }
252b5132 6702
5477e8a0
L
6703 if (do_section_details)
6704 printf (_(" Flags\n"));
6705
dda8d76d
NC
6706 for (i = 0, section = filedata->section_headers;
6707 i < filedata->file_header.e_shnum;
b34976b6 6708 i++, section++)
252b5132 6709 {
dd905818
NC
6710 /* Run some sanity checks on the section header. */
6711
6712 /* Check the sh_link field. */
6713 switch (section->sh_type)
6714 {
285e3f99
AM
6715 case SHT_REL:
6716 case SHT_RELA:
6717 if (section->sh_link == 0
6718 && (filedata->file_header.e_type == ET_EXEC
6719 || filedata->file_header.e_type == ET_DYN))
6720 /* A dynamic relocation section where all entries use a
6721 zero symbol index need not specify a symtab section. */
6722 break;
6723 /* Fall through. */
dd905818
NC
6724 case SHT_SYMTAB_SHNDX:
6725 case SHT_GROUP:
6726 case SHT_HASH:
6727 case SHT_GNU_HASH:
6728 case SHT_GNU_versym:
285e3f99 6729 if (section->sh_link == 0
dda8d76d
NC
6730 || section->sh_link >= filedata->file_header.e_shnum
6731 || (filedata->section_headers[section->sh_link].sh_type != SHT_SYMTAB
6732 && filedata->section_headers[section->sh_link].sh_type != SHT_DYNSYM))
dd905818
NC
6733 warn (_("[%2u]: Link field (%u) should index a symtab section.\n"),
6734 i, section->sh_link);
6735 break;
6736
6737 case SHT_DYNAMIC:
6738 case SHT_SYMTAB:
6739 case SHT_DYNSYM:
6740 case SHT_GNU_verneed:
6741 case SHT_GNU_verdef:
6742 case SHT_GNU_LIBLIST:
285e3f99 6743 if (section->sh_link == 0
dda8d76d
NC
6744 || section->sh_link >= filedata->file_header.e_shnum
6745 || filedata->section_headers[section->sh_link].sh_type != SHT_STRTAB)
dd905818
NC
6746 warn (_("[%2u]: Link field (%u) should index a string section.\n"),
6747 i, section->sh_link);
6748 break;
6749
6750 case SHT_INIT_ARRAY:
6751 case SHT_FINI_ARRAY:
6752 case SHT_PREINIT_ARRAY:
6753 if (section->sh_type < SHT_LOOS && section->sh_link != 0)
6754 warn (_("[%2u]: Unexpected value (%u) in link field.\n"),
6755 i, section->sh_link);
6756 break;
6757
6758 default:
6759 /* FIXME: Add support for target specific section types. */
6760#if 0 /* Currently we do not check other section types as there are too
6761 many special cases. Stab sections for example have a type
6762 of SHT_PROGBITS but an sh_link field that links to the .stabstr
6763 section. */
6764 if (section->sh_type < SHT_LOOS && section->sh_link != 0)
6765 warn (_("[%2u]: Unexpected value (%u) in link field.\n"),
6766 i, section->sh_link);
6767#endif
6768 break;
6769 }
6770
6771 /* Check the sh_info field. */
6772 switch (section->sh_type)
6773 {
6774 case SHT_REL:
6775 case SHT_RELA:
285e3f99
AM
6776 if (section->sh_info == 0
6777 && (filedata->file_header.e_type == ET_EXEC
6778 || filedata->file_header.e_type == ET_DYN))
6779 /* Dynamic relocations apply to segments, so they do not
6780 need to specify the section they relocate. */
6781 break;
6782 if (section->sh_info == 0
dda8d76d
NC
6783 || section->sh_info >= filedata->file_header.e_shnum
6784 || (filedata->section_headers[section->sh_info].sh_type != SHT_PROGBITS
6785 && filedata->section_headers[section->sh_info].sh_type != SHT_NOBITS
6786 && filedata->section_headers[section->sh_info].sh_type != SHT_NOTE
6787 && filedata->section_headers[section->sh_info].sh_type != SHT_INIT_ARRAY
385e5b90
L
6788 && filedata->section_headers[section->sh_info].sh_type != SHT_FINI_ARRAY
6789 && filedata->section_headers[section->sh_info].sh_type != SHT_PREINIT_ARRAY
dd905818 6790 /* FIXME: Are other section types valid ? */
dda8d76d 6791 && filedata->section_headers[section->sh_info].sh_type < SHT_LOOS))
285e3f99
AM
6792 warn (_("[%2u]: Info field (%u) should index a relocatable section.\n"),
6793 i, section->sh_info);
dd905818
NC
6794 break;
6795
6796 case SHT_DYNAMIC:
6797 case SHT_HASH:
6798 case SHT_SYMTAB_SHNDX:
6799 case SHT_INIT_ARRAY:
6800 case SHT_FINI_ARRAY:
6801 case SHT_PREINIT_ARRAY:
6802 if (section->sh_info != 0)
6803 warn (_("[%2u]: Unexpected value (%u) in info field.\n"),
6804 i, section->sh_info);
6805 break;
6806
6807 case SHT_GROUP:
6808 case SHT_SYMTAB:
6809 case SHT_DYNSYM:
6810 /* A symbol index - we assume that it is valid. */
6811 break;
6812
6813 default:
6814 /* FIXME: Add support for target specific section types. */
6815 if (section->sh_type == SHT_NOBITS)
6816 /* NOBITS section headers with non-zero sh_info fields can be
6817 created when a binary is stripped of everything but its debug
1a9ccd70
NC
6818 information. The stripped sections have their headers
6819 preserved but their types set to SHT_NOBITS. So do not check
6820 this type of section. */
dd905818
NC
6821 ;
6822 else if (section->sh_flags & SHF_INFO_LINK)
6823 {
dda8d76d 6824 if (section->sh_info < 1 || section->sh_info >= filedata->file_header.e_shnum)
dd905818
NC
6825 warn (_("[%2u]: Expected link to another section in info field"), i);
6826 }
a91e1603
L
6827 else if (section->sh_type < SHT_LOOS
6828 && (section->sh_flags & SHF_GNU_MBIND) == 0
6829 && section->sh_info != 0)
dd905818
NC
6830 warn (_("[%2u]: Unexpected value (%u) in info field.\n"),
6831 i, section->sh_info);
6832 break;
6833 }
6834
3e6b6445 6835 /* Check the sh_size field. */
dda8d76d 6836 if (section->sh_size > filedata->file_size
3e6b6445
NC
6837 && section->sh_type != SHT_NOBITS
6838 && section->sh_type != SHT_NULL
6839 && section->sh_type < SHT_LOOS)
6840 warn (_("Size of section %u is larger than the entire file!\n"), i);
6841
7bfd842d 6842 printf (" [%2u] ", i);
5477e8a0 6843 if (do_section_details)
dda8d76d 6844 printf ("%s\n ", printable_section_name (filedata, section));
595cf52e 6845 else
b9e920ec 6846 print_symbol (-17, SECTION_NAME_PRINT (section));
0b4362b0 6847
ea52a088 6848 printf (do_wide ? " %-15s " : " %-15.15s ",
dda8d76d 6849 get_section_type_name (filedata, section->sh_type));
0b4362b0 6850
f7a99963
NC
6851 if (is_32bit_elf)
6852 {
cfcac11d
NC
6853 const char * link_too_big = NULL;
6854
f7a99963 6855 print_vma (section->sh_addr, LONG_HEX);
76da6bbe 6856
f7a99963
NC
6857 printf ( " %6.6lx %6.6lx %2.2lx",
6858 (unsigned long) section->sh_offset,
6859 (unsigned long) section->sh_size,
6860 (unsigned long) section->sh_entsize);
d1133906 6861
5477e8a0
L
6862 if (do_section_details)
6863 fputs (" ", stdout);
6864 else
dda8d76d 6865 printf (" %3s ", get_elf_section_flags (filedata, section->sh_flags));
76da6bbe 6866
dda8d76d 6867 if (section->sh_link >= filedata->file_header.e_shnum)
cfcac11d
NC
6868 {
6869 link_too_big = "";
6870 /* The sh_link value is out of range. Normally this indicates
caa83f8b 6871 an error but it can have special values in Solaris binaries. */
dda8d76d 6872 switch (filedata->file_header.e_machine)
cfcac11d 6873 {
caa83f8b 6874 case EM_386:
22abe556 6875 case EM_IAMCU:
caa83f8b 6876 case EM_X86_64:
7f502d6c 6877 case EM_L1OM:
7a9068fe 6878 case EM_K1OM:
cfcac11d
NC
6879 case EM_OLD_SPARCV9:
6880 case EM_SPARC32PLUS:
6881 case EM_SPARCV9:
6882 case EM_SPARC:
6883 if (section->sh_link == (SHN_BEFORE & 0xffff))
6884 link_too_big = "BEFORE";
6885 else if (section->sh_link == (SHN_AFTER & 0xffff))
6886 link_too_big = "AFTER";
6887 break;
6888 default:
6889 break;
6890 }
6891 }
6892
6893 if (do_section_details)
6894 {
6895 if (link_too_big != NULL && * link_too_big)
6896 printf ("<%s> ", link_too_big);
6897 else
6898 printf ("%2u ", section->sh_link);
6899 printf ("%3u %2lu\n", section->sh_info,
6900 (unsigned long) section->sh_addralign);
6901 }
6902 else
6903 printf ("%2u %3u %2lu\n",
6904 section->sh_link,
6905 section->sh_info,
6906 (unsigned long) section->sh_addralign);
6907
6908 if (link_too_big && ! * link_too_big)
6909 warn (_("section %u: sh_link value of %u is larger than the number of sections\n"),
6910 i, section->sh_link);
f7a99963 6911 }
d974e256
JJ
6912 else if (do_wide)
6913 {
6914 print_vma (section->sh_addr, LONG_HEX);
6915
6916 if ((long) section->sh_offset == section->sh_offset)
6917 printf (" %6.6lx", (unsigned long) section->sh_offset);
6918 else
6919 {
6920 putchar (' ');
6921 print_vma (section->sh_offset, LONG_HEX);
6922 }
6923
6924 if ((unsigned long) section->sh_size == section->sh_size)
6925 printf (" %6.6lx", (unsigned long) section->sh_size);
6926 else
6927 {
6928 putchar (' ');
6929 print_vma (section->sh_size, LONG_HEX);
6930 }
6931
6932 if ((unsigned long) section->sh_entsize == section->sh_entsize)
6933 printf (" %2.2lx", (unsigned long) section->sh_entsize);
6934 else
6935 {
6936 putchar (' ');
6937 print_vma (section->sh_entsize, LONG_HEX);
6938 }
6939
5477e8a0
L
6940 if (do_section_details)
6941 fputs (" ", stdout);
6942 else
dda8d76d 6943 printf (" %3s ", get_elf_section_flags (filedata, section->sh_flags));
d974e256 6944
72de5009 6945 printf ("%2u %3u ", section->sh_link, section->sh_info);
d974e256
JJ
6946
6947 if ((unsigned long) section->sh_addralign == section->sh_addralign)
72de5009 6948 printf ("%2lu\n", (unsigned long) section->sh_addralign);
d974e256
JJ
6949 else
6950 {
6951 print_vma (section->sh_addralign, DEC);
6952 putchar ('\n');
6953 }
6954 }
5477e8a0 6955 else if (do_section_details)
595cf52e 6956 {
55cc53e9 6957 putchar (' ');
595cf52e
L
6958 print_vma (section->sh_addr, LONG_HEX);
6959 if ((long) section->sh_offset == section->sh_offset)
5477e8a0 6960 printf (" %16.16lx", (unsigned long) section->sh_offset);
595cf52e
L
6961 else
6962 {
6963 printf (" ");
6964 print_vma (section->sh_offset, LONG_HEX);
6965 }
72de5009 6966 printf (" %u\n ", section->sh_link);
595cf52e 6967 print_vma (section->sh_size, LONG_HEX);
5477e8a0 6968 putchar (' ');
595cf52e
L
6969 print_vma (section->sh_entsize, LONG_HEX);
6970
72de5009
AM
6971 printf (" %-16u %lu\n",
6972 section->sh_info,
595cf52e
L
6973 (unsigned long) section->sh_addralign);
6974 }
f7a99963
NC
6975 else
6976 {
6977 putchar (' ');
6978 print_vma (section->sh_addr, LONG_HEX);
53c7db4b
KH
6979 if ((long) section->sh_offset == section->sh_offset)
6980 printf (" %8.8lx", (unsigned long) section->sh_offset);
6981 else
6982 {
6983 printf (" ");
6984 print_vma (section->sh_offset, LONG_HEX);
6985 }
f7a99963
NC
6986 printf ("\n ");
6987 print_vma (section->sh_size, LONG_HEX);
6988 printf (" ");
6989 print_vma (section->sh_entsize, LONG_HEX);
76da6bbe 6990
dda8d76d 6991 printf (" %3s ", get_elf_section_flags (filedata, section->sh_flags));
76da6bbe 6992
72de5009
AM
6993 printf (" %2u %3u %lu\n",
6994 section->sh_link,
6995 section->sh_info,
f7a99963
NC
6996 (unsigned long) section->sh_addralign);
6997 }
5477e8a0
L
6998
6999 if (do_section_details)
77115a4a 7000 {
dda8d76d 7001 printf (" %s\n", get_elf_section_flags (filedata, section->sh_flags));
77115a4a
L
7002 if ((section->sh_flags & SHF_COMPRESSED) != 0)
7003 {
7004 /* Minimum section size is 12 bytes for 32-bit compression
7005 header + 12 bytes for compressed data header. */
7006 unsigned char buf[24];
d8024a91 7007
77115a4a 7008 assert (sizeof (buf) >= sizeof (Elf64_External_Chdr));
dda8d76d 7009 if (get_data (&buf, filedata, section->sh_offset, 1,
77115a4a
L
7010 sizeof (buf), _("compression header")))
7011 {
7012 Elf_Internal_Chdr chdr;
d8024a91 7013
5844b465
NC
7014 if (get_compression_header (&chdr, buf, sizeof (buf)) == 0)
7015 printf (_(" [<corrupt>]\n"));
77115a4a 7016 else
5844b465
NC
7017 {
7018 if (chdr.ch_type == ELFCOMPRESS_ZLIB)
7019 printf (" ZLIB, ");
7020 else
7021 printf (_(" [<unknown>: 0x%x], "),
7022 chdr.ch_type);
7023 print_vma (chdr.ch_size, LONG_HEX);
7024 printf (", %lu\n", (unsigned long) chdr.ch_addralign);
7025 }
77115a4a
L
7026 }
7027 }
7028 }
252b5132
RH
7029 }
7030
5477e8a0 7031 if (!do_section_details)
3dbcc61d 7032 {
9fb71ee4
NC
7033 /* The ordering of the letters shown here matches the ordering of the
7034 corresponding SHF_xxx values, and hence the order in which these
7035 letters will be displayed to the user. */
7036 printf (_("Key to Flags:\n\
7037 W (write), A (alloc), X (execute), M (merge), S (strings), I (info),\n\
7038 L (link order), O (extra OS processing required), G (group), T (TLS),\n\
fd85a6a1 7039 C (compressed), x (unknown), o (OS specific), E (exclude),\n "));
5424d7ed
L
7040 switch (filedata->file_header.e_ident[EI_OSABI])
7041 {
7042 case ELFOSABI_GNU:
7043 case ELFOSABI_FREEBSD:
7044 printf (_("R (retain), "));
7045 /* Fall through */
7046 case ELFOSABI_NONE:
7047 printf (_("D (mbind), "));
7048 break;
7049 default:
7050 break;
7051 }
dda8d76d
NC
7052 if (filedata->file_header.e_machine == EM_X86_64
7053 || filedata->file_header.e_machine == EM_L1OM
7054 || filedata->file_header.e_machine == EM_K1OM)
9fb71ee4 7055 printf (_("l (large), "));
dda8d76d 7056 else if (filedata->file_header.e_machine == EM_ARM)
f0728ee3 7057 printf (_("y (purecode), "));
dda8d76d 7058 else if (filedata->file_header.e_machine == EM_PPC)
83eef883 7059 printf (_("v (VLE), "));
9fb71ee4 7060 printf ("p (processor specific)\n");
0b4362b0 7061 }
d1133906 7062
015dc7e1 7063 return true;
252b5132
RH
7064}
7065
015dc7e1 7066static bool
28d13567
AM
7067get_symtab (Filedata *filedata, Elf_Internal_Shdr *symsec,
7068 Elf_Internal_Sym **symtab, unsigned long *nsyms,
7069 char **strtab, unsigned long *strtablen)
7070{
7071 *strtab = NULL;
7072 *strtablen = 0;
7073 *symtab = GET_ELF_SYMBOLS (filedata, symsec, nsyms);
7074
7075 if (*symtab == NULL)
015dc7e1 7076 return false;
28d13567
AM
7077
7078 if (symsec->sh_link != 0)
7079 {
7080 Elf_Internal_Shdr *strsec;
7081
7082 if (symsec->sh_link >= filedata->file_header.e_shnum)
7083 {
7084 error (_("Bad sh_link in symbol table section\n"));
7085 free (*symtab);
7086 *symtab = NULL;
7087 *nsyms = 0;
015dc7e1 7088 return false;
28d13567
AM
7089 }
7090
7091 strsec = filedata->section_headers + symsec->sh_link;
7092
7093 *strtab = (char *) get_data (NULL, filedata, strsec->sh_offset,
7094 1, strsec->sh_size, _("string table"));
7095 if (*strtab == NULL)
7096 {
7097 free (*symtab);
7098 *symtab = NULL;
7099 *nsyms = 0;
015dc7e1 7100 return false;
28d13567
AM
7101 }
7102 *strtablen = strsec->sh_size;
7103 }
015dc7e1 7104 return true;
28d13567
AM
7105}
7106
f5842774
L
7107static const char *
7108get_group_flags (unsigned int flags)
7109{
1449284b 7110 static char buff[128];
220453ec 7111
6d913794
NC
7112 if (flags == 0)
7113 return "";
7114 else if (flags == GRP_COMDAT)
7115 return "COMDAT ";
f5842774 7116
89246a0e
AM
7117 snprintf (buff, sizeof buff, "[0x%x: %s%s%s]",
7118 flags,
7119 flags & GRP_MASKOS ? _("<OS specific>") : "",
7120 flags & GRP_MASKPROC ? _("<PROC specific>") : "",
7121 (flags & ~(GRP_COMDAT | GRP_MASKOS | GRP_MASKPROC)
7122 ? _("<unknown>") : ""));
6d913794 7123
f5842774
L
7124 return buff;
7125}
7126
015dc7e1 7127static bool
dda8d76d 7128process_section_groups (Filedata * filedata)
f5842774 7129{
2cf0635d 7130 Elf_Internal_Shdr * section;
f5842774 7131 unsigned int i;
2cf0635d
NC
7132 struct group * group;
7133 Elf_Internal_Shdr * symtab_sec;
7134 Elf_Internal_Shdr * strtab_sec;
7135 Elf_Internal_Sym * symtab;
ba5cdace 7136 unsigned long num_syms;
2cf0635d 7137 char * strtab;
c256ffe7 7138 size_t strtab_size;
d1f5c6e3
L
7139
7140 /* Don't process section groups unless needed. */
7141 if (!do_unwind && !do_section_groups)
015dc7e1 7142 return true;
f5842774 7143
dda8d76d 7144 if (filedata->file_header.e_shnum == 0)
f5842774
L
7145 {
7146 if (do_section_groups)
ca0e11aa
NC
7147 {
7148 if (filedata->is_separate)
7149 printf (_("\nThere are no sections group in linked file '%s'.\n"),
7150 filedata->file_name);
7151 else
7152 printf (_("\nThere are no section groups in this file.\n"));
7153 }
015dc7e1 7154 return true;
f5842774
L
7155 }
7156
dda8d76d 7157 if (filedata->section_headers == NULL)
f5842774
L
7158 {
7159 error (_("Section headers are not available!\n"));
fa1908fd 7160 /* PR 13622: This can happen with a corrupt ELF header. */
015dc7e1 7161 return false;
f5842774
L
7162 }
7163
978c4450
AM
7164 filedata->section_headers_groups
7165 = (struct group **) calloc (filedata->file_header.e_shnum,
7166 sizeof (struct group *));
e4b17d5c 7167
978c4450 7168 if (filedata->section_headers_groups == NULL)
e4b17d5c 7169 {
8b73c356 7170 error (_("Out of memory reading %u section group headers\n"),
dda8d76d 7171 filedata->file_header.e_shnum);
015dc7e1 7172 return false;
e4b17d5c
L
7173 }
7174
f5842774 7175 /* Scan the sections for the group section. */
978c4450 7176 filedata->group_count = 0;
dda8d76d
NC
7177 for (i = 0, section = filedata->section_headers;
7178 i < filedata->file_header.e_shnum;
f5842774 7179 i++, section++)
e4b17d5c 7180 if (section->sh_type == SHT_GROUP)
978c4450 7181 filedata->group_count++;
e4b17d5c 7182
978c4450 7183 if (filedata->group_count == 0)
d1f5c6e3
L
7184 {
7185 if (do_section_groups)
ca0e11aa
NC
7186 {
7187 if (filedata->is_separate)
7188 printf (_("\nThere are no section groups in linked file '%s'.\n"),
7189 filedata->file_name);
7190 else
7191 printf (_("\nThere are no section groups in this file.\n"));
7192 }
d1f5c6e3 7193
015dc7e1 7194 return true;
d1f5c6e3
L
7195 }
7196
978c4450
AM
7197 filedata->section_groups = (struct group *) calloc (filedata->group_count,
7198 sizeof (struct group));
e4b17d5c 7199
978c4450 7200 if (filedata->section_groups == NULL)
e4b17d5c 7201 {
8b73c356 7202 error (_("Out of memory reading %lu groups\n"),
978c4450 7203 (unsigned long) filedata->group_count);
015dc7e1 7204 return false;
e4b17d5c
L
7205 }
7206
d1f5c6e3
L
7207 symtab_sec = NULL;
7208 strtab_sec = NULL;
7209 symtab = NULL;
ba5cdace 7210 num_syms = 0;
d1f5c6e3 7211 strtab = NULL;
c256ffe7 7212 strtab_size = 0;
ca0e11aa
NC
7213
7214 if (filedata->is_separate)
7215 printf (_("Section groups in linked file '%s'\n"), filedata->file_name);
7216
978c4450 7217 for (i = 0, section = filedata->section_headers, group = filedata->section_groups;
dda8d76d 7218 i < filedata->file_header.e_shnum;
e4b17d5c 7219 i++, section++)
f5842774
L
7220 {
7221 if (section->sh_type == SHT_GROUP)
7222 {
dda8d76d 7223 const char * name = printable_section_name (filedata, section);
74e1a04b 7224 const char * group_name;
2cf0635d
NC
7225 unsigned char * start;
7226 unsigned char * indices;
f5842774 7227 unsigned int entry, j, size;
2cf0635d
NC
7228 Elf_Internal_Shdr * sec;
7229 Elf_Internal_Sym * sym;
f5842774
L
7230
7231 /* Get the symbol table. */
dda8d76d
NC
7232 if (section->sh_link >= filedata->file_header.e_shnum
7233 || ((sec = filedata->section_headers + section->sh_link)->sh_type
c256ffe7 7234 != SHT_SYMTAB))
f5842774
L
7235 {
7236 error (_("Bad sh_link in group section `%s'\n"), name);
7237 continue;
7238 }
d1f5c6e3
L
7239
7240 if (symtab_sec != sec)
7241 {
7242 symtab_sec = sec;
9db70fc3 7243 free (symtab);
dda8d76d 7244 symtab = GET_ELF_SYMBOLS (filedata, symtab_sec, & num_syms);
d1f5c6e3 7245 }
f5842774 7246
dd24e3da
NC
7247 if (symtab == NULL)
7248 {
7249 error (_("Corrupt header in group section `%s'\n"), name);
7250 continue;
7251 }
7252
ba5cdace
NC
7253 if (section->sh_info >= num_syms)
7254 {
7255 error (_("Bad sh_info in group section `%s'\n"), name);
7256 continue;
7257 }
7258
f5842774
L
7259 sym = symtab + section->sh_info;
7260
7261 if (ELF_ST_TYPE (sym->st_info) == STT_SECTION)
7262 {
4fbb74a6 7263 if (sym->st_shndx == 0
dda8d76d 7264 || sym->st_shndx >= filedata->file_header.e_shnum)
f5842774
L
7265 {
7266 error (_("Bad sh_info in group section `%s'\n"), name);
7267 continue;
7268 }
ba2685cc 7269
b9e920ec
AM
7270 group_name = SECTION_NAME_PRINT (filedata->section_headers
7271 + sym->st_shndx);
c256ffe7 7272 strtab_sec = NULL;
9db70fc3 7273 free (strtab);
f5842774 7274 strtab = NULL;
c256ffe7 7275 strtab_size = 0;
f5842774
L
7276 }
7277 else
7278 {
7279 /* Get the string table. */
dda8d76d 7280 if (symtab_sec->sh_link >= filedata->file_header.e_shnum)
c256ffe7
JJ
7281 {
7282 strtab_sec = NULL;
9db70fc3 7283 free (strtab);
c256ffe7
JJ
7284 strtab = NULL;
7285 strtab_size = 0;
7286 }
7287 else if (strtab_sec
dda8d76d 7288 != (sec = filedata->section_headers + symtab_sec->sh_link))
d1f5c6e3
L
7289 {
7290 strtab_sec = sec;
9db70fc3 7291 free (strtab);
071436c6 7292
dda8d76d 7293 strtab = (char *) get_data (NULL, filedata, strtab_sec->sh_offset,
071436c6
NC
7294 1, strtab_sec->sh_size,
7295 _("string table"));
c256ffe7 7296 strtab_size = strtab != NULL ? strtab_sec->sh_size : 0;
d1f5c6e3 7297 }
c256ffe7 7298 group_name = sym->st_name < strtab_size
2b692964 7299 ? strtab + sym->st_name : _("<corrupt>");
f5842774
L
7300 }
7301
c9c1d674
EG
7302 /* PR 17531: file: loop. */
7303 if (section->sh_entsize > section->sh_size)
7304 {
7305 error (_("Section %s has sh_entsize (0x%lx) which is larger than its size (0x%lx)\n"),
dda8d76d 7306 printable_section_name (filedata, section),
8066deb1
AM
7307 (unsigned long) section->sh_entsize,
7308 (unsigned long) section->sh_size);
61dd8e19 7309 continue;
c9c1d674
EG
7310 }
7311
dda8d76d 7312 start = (unsigned char *) get_data (NULL, filedata, section->sh_offset,
3f5e193b
NC
7313 1, section->sh_size,
7314 _("section data"));
59245841
NC
7315 if (start == NULL)
7316 continue;
f5842774
L
7317
7318 indices = start;
7319 size = (section->sh_size / section->sh_entsize) - 1;
7320 entry = byte_get (indices, 4);
7321 indices += 4;
e4b17d5c
L
7322
7323 if (do_section_groups)
7324 {
2b692964 7325 printf (_("\n%sgroup section [%5u] `%s' [%s] contains %u sections:\n"),
391cb864 7326 get_group_flags (entry), i, name, group_name, size);
ba2685cc 7327
e4b17d5c
L
7328 printf (_(" [Index] Name\n"));
7329 }
7330
7331 group->group_index = i;
7332
f5842774
L
7333 for (j = 0; j < size; j++)
7334 {
2cf0635d 7335 struct group_list * g;
e4b17d5c 7336
f5842774
L
7337 entry = byte_get (indices, 4);
7338 indices += 4;
7339
dda8d76d 7340 if (entry >= filedata->file_header.e_shnum)
391cb864 7341 {
57028622
NC
7342 static unsigned num_group_errors = 0;
7343
7344 if (num_group_errors ++ < 10)
7345 {
7346 error (_("section [%5u] in group section [%5u] > maximum section [%5u]\n"),
dda8d76d 7347 entry, i, filedata->file_header.e_shnum - 1);
57028622 7348 if (num_group_errors == 10)
67ce483b 7349 warn (_("Further error messages about overlarge group section indices suppressed\n"));
57028622 7350 }
391cb864
L
7351 continue;
7352 }
391cb864 7353
978c4450 7354 if (filedata->section_headers_groups [entry] != NULL)
e4b17d5c 7355 {
d1f5c6e3
L
7356 if (entry)
7357 {
57028622
NC
7358 static unsigned num_errs = 0;
7359
7360 if (num_errs ++ < 10)
7361 {
7362 error (_("section [%5u] in group section [%5u] already in group section [%5u]\n"),
7363 entry, i,
978c4450 7364 filedata->section_headers_groups [entry]->group_index);
57028622
NC
7365 if (num_errs == 10)
7366 warn (_("Further error messages about already contained group sections suppressed\n"));
7367 }
d1f5c6e3
L
7368 continue;
7369 }
7370 else
7371 {
7372 /* Intel C/C++ compiler may put section 0 in a
32ec8896 7373 section group. We just warn it the first time
d1f5c6e3 7374 and ignore it afterwards. */
015dc7e1 7375 static bool warned = false;
d1f5c6e3
L
7376 if (!warned)
7377 {
7378 error (_("section 0 in group section [%5u]\n"),
978c4450 7379 filedata->section_headers_groups [entry]->group_index);
015dc7e1 7380 warned = true;
d1f5c6e3
L
7381 }
7382 }
e4b17d5c
L
7383 }
7384
978c4450 7385 filedata->section_headers_groups [entry] = group;
e4b17d5c
L
7386
7387 if (do_section_groups)
7388 {
dda8d76d
NC
7389 sec = filedata->section_headers + entry;
7390 printf (" [%5u] %s\n", entry, printable_section_name (filedata, sec));
ba2685cc
AM
7391 }
7392
3f5e193b 7393 g = (struct group_list *) xmalloc (sizeof (struct group_list));
e4b17d5c
L
7394 g->section_index = entry;
7395 g->next = group->root;
7396 group->root = g;
f5842774
L
7397 }
7398
9db70fc3 7399 free (start);
e4b17d5c
L
7400
7401 group++;
f5842774
L
7402 }
7403 }
7404
9db70fc3
AM
7405 free (symtab);
7406 free (strtab);
015dc7e1 7407 return true;
f5842774
L
7408}
7409
28f997cf
TG
7410/* Data used to display dynamic fixups. */
7411
7412struct ia64_vms_dynfixup
7413{
7414 bfd_vma needed_ident; /* Library ident number. */
7415 bfd_vma needed; /* Index in the dstrtab of the library name. */
7416 bfd_vma fixup_needed; /* Index of the library. */
7417 bfd_vma fixup_rela_cnt; /* Number of fixups. */
7418 bfd_vma fixup_rela_off; /* Fixups offset in the dynamic segment. */
7419};
7420
7421/* Data used to display dynamic relocations. */
7422
7423struct ia64_vms_dynimgrela
7424{
7425 bfd_vma img_rela_cnt; /* Number of relocations. */
7426 bfd_vma img_rela_off; /* Reloc offset in the dynamic segment. */
7427};
7428
7429/* Display IA-64 OpenVMS dynamic fixups (used to dynamically link a shared
7430 library). */
7431
015dc7e1 7432static bool
dda8d76d
NC
7433dump_ia64_vms_dynamic_fixups (Filedata * filedata,
7434 struct ia64_vms_dynfixup * fixup,
7435 const char * strtab,
7436 unsigned int strtab_sz)
28f997cf 7437{
32ec8896 7438 Elf64_External_VMS_IMAGE_FIXUP * imfs;
28f997cf 7439 long i;
32ec8896 7440 const char * lib_name;
28f997cf 7441
978c4450
AM
7442 imfs = get_data (NULL, filedata,
7443 filedata->dynamic_addr + fixup->fixup_rela_off,
95099889 7444 sizeof (*imfs), fixup->fixup_rela_cnt,
28f997cf
TG
7445 _("dynamic section image fixups"));
7446 if (!imfs)
015dc7e1 7447 return false;
28f997cf
TG
7448
7449 if (fixup->needed < strtab_sz)
7450 lib_name = strtab + fixup->needed;
7451 else
7452 {
32ec8896 7453 warn (_("corrupt library name index of 0x%lx found in dynamic entry"),
7f01b0c6 7454 (unsigned long) fixup->needed);
28f997cf
TG
7455 lib_name = "???";
7456 }
736990c4 7457
28f997cf
TG
7458 printf (_("\nImage fixups for needed library #%d: %s - ident: %lx\n"),
7459 (int) fixup->fixup_needed, lib_name, (long) fixup->needed_ident);
7460 printf
7461 (_("Seg Offset Type SymVec DataType\n"));
7462
7463 for (i = 0; i < (long) fixup->fixup_rela_cnt; i++)
7464 {
7465 unsigned int type;
7466 const char *rtype;
7467
7468 printf ("%3u ", (unsigned) BYTE_GET (imfs [i].fixup_seg));
7469 printf_vma ((bfd_vma) BYTE_GET (imfs [i].fixup_offset));
7470 type = BYTE_GET (imfs [i].type);
7471 rtype = elf_ia64_reloc_type (type);
7472 if (rtype == NULL)
7473 printf (" 0x%08x ", type);
7474 else
7475 printf (" %-32s ", rtype);
7476 printf ("%6u ", (unsigned) BYTE_GET (imfs [i].symvec_index));
7477 printf ("0x%08x\n", (unsigned) BYTE_GET (imfs [i].data_type));
7478 }
7479
7480 free (imfs);
015dc7e1 7481 return true;
28f997cf
TG
7482}
7483
7484/* Display IA-64 OpenVMS dynamic relocations (used to relocate an image). */
7485
015dc7e1 7486static bool
dda8d76d 7487dump_ia64_vms_dynamic_relocs (Filedata * filedata, struct ia64_vms_dynimgrela *imgrela)
28f997cf
TG
7488{
7489 Elf64_External_VMS_IMAGE_RELA *imrs;
7490 long i;
7491
978c4450
AM
7492 imrs = get_data (NULL, filedata,
7493 filedata->dynamic_addr + imgrela->img_rela_off,
95099889 7494 sizeof (*imrs), imgrela->img_rela_cnt,
9cf03b7e 7495 _("dynamic section image relocations"));
28f997cf 7496 if (!imrs)
015dc7e1 7497 return false;
28f997cf
TG
7498
7499 printf (_("\nImage relocs\n"));
7500 printf
7501 (_("Seg Offset Type Addend Seg Sym Off\n"));
7502
7503 for (i = 0; i < (long) imgrela->img_rela_cnt; i++)
7504 {
7505 unsigned int type;
7506 const char *rtype;
7507
7508 printf ("%3u ", (unsigned) BYTE_GET (imrs [i].rela_seg));
7509 printf ("%08" BFD_VMA_FMT "x ",
7510 (bfd_vma) BYTE_GET (imrs [i].rela_offset));
7511 type = BYTE_GET (imrs [i].type);
7512 rtype = elf_ia64_reloc_type (type);
7513 if (rtype == NULL)
7514 printf ("0x%08x ", type);
7515 else
7516 printf ("%-31s ", rtype);
7517 print_vma (BYTE_GET (imrs [i].addend), FULL_HEX);
7518 printf ("%3u ", (unsigned) BYTE_GET (imrs [i].sym_seg));
7519 printf ("%08" BFD_VMA_FMT "x\n",
7520 (bfd_vma) BYTE_GET (imrs [i].sym_offset));
7521 }
7522
7523 free (imrs);
015dc7e1 7524 return true;
28f997cf
TG
7525}
7526
7527/* Display IA-64 OpenVMS dynamic relocations and fixups. */
7528
015dc7e1 7529static bool
dda8d76d 7530process_ia64_vms_dynamic_relocs (Filedata * filedata)
28f997cf
TG
7531{
7532 struct ia64_vms_dynfixup fixup;
7533 struct ia64_vms_dynimgrela imgrela;
7534 Elf_Internal_Dyn *entry;
28f997cf
TG
7535 bfd_vma strtab_off = 0;
7536 bfd_vma strtab_sz = 0;
7537 char *strtab = NULL;
015dc7e1 7538 bool res = true;
28f997cf
TG
7539
7540 memset (&fixup, 0, sizeof (fixup));
7541 memset (&imgrela, 0, sizeof (imgrela));
7542
7543 /* Note: the order of the entries is specified by the OpenVMS specs. */
978c4450
AM
7544 for (entry = filedata->dynamic_section;
7545 entry < filedata->dynamic_section + filedata->dynamic_nent;
28f997cf
TG
7546 entry++)
7547 {
7548 switch (entry->d_tag)
7549 {
7550 case DT_IA_64_VMS_STRTAB_OFFSET:
7551 strtab_off = entry->d_un.d_val;
7552 break;
7553 case DT_STRSZ:
7554 strtab_sz = entry->d_un.d_val;
7555 if (strtab == NULL)
978c4450
AM
7556 strtab = get_data (NULL, filedata,
7557 filedata->dynamic_addr + strtab_off,
28f997cf 7558 1, strtab_sz, _("dynamic string section"));
736990c4
NC
7559 if (strtab == NULL)
7560 strtab_sz = 0;
28f997cf
TG
7561 break;
7562
7563 case DT_IA_64_VMS_NEEDED_IDENT:
7564 fixup.needed_ident = entry->d_un.d_val;
7565 break;
7566 case DT_NEEDED:
7567 fixup.needed = entry->d_un.d_val;
7568 break;
7569 case DT_IA_64_VMS_FIXUP_NEEDED:
7570 fixup.fixup_needed = entry->d_un.d_val;
7571 break;
7572 case DT_IA_64_VMS_FIXUP_RELA_CNT:
7573 fixup.fixup_rela_cnt = entry->d_un.d_val;
7574 break;
7575 case DT_IA_64_VMS_FIXUP_RELA_OFF:
7576 fixup.fixup_rela_off = entry->d_un.d_val;
dda8d76d 7577 if (! dump_ia64_vms_dynamic_fixups (filedata, &fixup, strtab, strtab_sz))
015dc7e1 7578 res = false;
28f997cf 7579 break;
28f997cf
TG
7580 case DT_IA_64_VMS_IMG_RELA_CNT:
7581 imgrela.img_rela_cnt = entry->d_un.d_val;
7582 break;
7583 case DT_IA_64_VMS_IMG_RELA_OFF:
7584 imgrela.img_rela_off = entry->d_un.d_val;
dda8d76d 7585 if (! dump_ia64_vms_dynamic_relocs (filedata, &imgrela))
015dc7e1 7586 res = false;
28f997cf
TG
7587 break;
7588
7589 default:
7590 break;
7591 }
7592 }
7593
9db70fc3 7594 free (strtab);
28f997cf
TG
7595
7596 return res;
7597}
7598
85b1c36d 7599static struct
566b0d53 7600{
2cf0635d 7601 const char * name;
566b0d53
L
7602 int reloc;
7603 int size;
7604 int rela;
32ec8896
NC
7605}
7606 dynamic_relocations [] =
566b0d53 7607{
015dc7e1
AM
7608 { "REL", DT_REL, DT_RELSZ, false },
7609 { "RELA", DT_RELA, DT_RELASZ, true },
32ec8896 7610 { "PLT", DT_JMPREL, DT_PLTRELSZ, UNKNOWN }
566b0d53
L
7611};
7612
252b5132 7613/* Process the reloc section. */
18bd398b 7614
015dc7e1 7615static bool
dda8d76d 7616process_relocs (Filedata * filedata)
252b5132 7617{
b34976b6
AM
7618 unsigned long rel_size;
7619 unsigned long rel_offset;
252b5132 7620
252b5132 7621 if (!do_reloc)
015dc7e1 7622 return true;
252b5132
RH
7623
7624 if (do_using_dynamic)
7625 {
32ec8896 7626 int is_rela;
2cf0635d 7627 const char * name;
015dc7e1 7628 bool has_dynamic_reloc;
566b0d53 7629 unsigned int i;
0de14b54 7630
015dc7e1 7631 has_dynamic_reloc = false;
252b5132 7632
566b0d53 7633 for (i = 0; i < ARRAY_SIZE (dynamic_relocations); i++)
252b5132 7634 {
566b0d53
L
7635 is_rela = dynamic_relocations [i].rela;
7636 name = dynamic_relocations [i].name;
978c4450
AM
7637 rel_size = filedata->dynamic_info[dynamic_relocations [i].size];
7638 rel_offset = filedata->dynamic_info[dynamic_relocations [i].reloc];
103f02d3 7639
32ec8896 7640 if (rel_size)
015dc7e1 7641 has_dynamic_reloc = true;
566b0d53
L
7642
7643 if (is_rela == UNKNOWN)
aa903cfb 7644 {
566b0d53 7645 if (dynamic_relocations [i].reloc == DT_JMPREL)
978c4450 7646 switch (filedata->dynamic_info[DT_PLTREL])
566b0d53
L
7647 {
7648 case DT_REL:
015dc7e1 7649 is_rela = false;
566b0d53
L
7650 break;
7651 case DT_RELA:
015dc7e1 7652 is_rela = true;
566b0d53
L
7653 break;
7654 }
aa903cfb 7655 }
252b5132 7656
566b0d53
L
7657 if (rel_size)
7658 {
ca0e11aa
NC
7659 if (filedata->is_separate)
7660 printf
7661 (_("\nIn linked file '%s' section '%s' at offset 0x%lx contains %ld bytes:\n"),
7662 filedata->file_name, name, rel_offset, rel_size);
7663 else
7664 printf
7665 (_("\n'%s' relocation section at offset 0x%lx contains %ld bytes:\n"),
7666 name, rel_offset, rel_size);
7667
252b5132 7668
dda8d76d
NC
7669 dump_relocations (filedata,
7670 offset_from_vma (filedata, rel_offset, rel_size),
d93f0186 7671 rel_size,
978c4450
AM
7672 filedata->dynamic_symbols,
7673 filedata->num_dynamic_syms,
7674 filedata->dynamic_strings,
7675 filedata->dynamic_strings_length,
015dc7e1 7676 is_rela, true /* is_dynamic */);
566b0d53 7677 }
252b5132 7678 }
566b0d53 7679
dda8d76d
NC
7680 if (is_ia64_vms (filedata))
7681 if (process_ia64_vms_dynamic_relocs (filedata))
015dc7e1 7682 has_dynamic_reloc = true;
28f997cf 7683
566b0d53 7684 if (! has_dynamic_reloc)
ca0e11aa
NC
7685 {
7686 if (filedata->is_separate)
7687 printf (_("\nThere are no dynamic relocations in linked file '%s'.\n"),
7688 filedata->file_name);
7689 else
7690 printf (_("\nThere are no dynamic relocations in this file.\n"));
7691 }
252b5132
RH
7692 }
7693 else
7694 {
2cf0635d 7695 Elf_Internal_Shdr * section;
b34976b6 7696 unsigned long i;
015dc7e1 7697 bool found = false;
252b5132 7698
dda8d76d
NC
7699 for (i = 0, section = filedata->section_headers;
7700 i < filedata->file_header.e_shnum;
b34976b6 7701 i++, section++)
252b5132
RH
7702 {
7703 if ( section->sh_type != SHT_RELA
7704 && section->sh_type != SHT_REL)
7705 continue;
7706
7707 rel_offset = section->sh_offset;
7708 rel_size = section->sh_size;
7709
7710 if (rel_size)
7711 {
b34976b6 7712 int is_rela;
d3a49aa8 7713 unsigned long num_rela;
103f02d3 7714
ca0e11aa
NC
7715 if (filedata->is_separate)
7716 printf (_("\nIn linked file '%s' relocation section "),
7717 filedata->file_name);
7718 else
7719 printf (_("\nRelocation section "));
252b5132 7720
dda8d76d 7721 if (filedata->string_table == NULL)
19936277 7722 printf ("%d", section->sh_name);
252b5132 7723 else
dda8d76d 7724 printf ("'%s'", printable_section_name (filedata, section));
252b5132 7725
d3a49aa8
AM
7726 num_rela = rel_size / section->sh_entsize;
7727 printf (ngettext (" at offset 0x%lx contains %lu entry:\n",
7728 " at offset 0x%lx contains %lu entries:\n",
7729 num_rela),
7730 rel_offset, num_rela);
252b5132 7731
d79b3d50
NC
7732 is_rela = section->sh_type == SHT_RELA;
7733
4fbb74a6 7734 if (section->sh_link != 0
dda8d76d 7735 && section->sh_link < filedata->file_header.e_shnum)
af3fc3bc 7736 {
2cf0635d
NC
7737 Elf_Internal_Shdr * symsec;
7738 Elf_Internal_Sym * symtab;
d79b3d50 7739 unsigned long nsyms;
c256ffe7 7740 unsigned long strtablen = 0;
2cf0635d 7741 char * strtab = NULL;
57346661 7742
dda8d76d 7743 symsec = filedata->section_headers + section->sh_link;
08d8fa11
JJ
7744 if (symsec->sh_type != SHT_SYMTAB
7745 && symsec->sh_type != SHT_DYNSYM)
7746 continue;
7747
28d13567
AM
7748 if (!get_symtab (filedata, symsec,
7749 &symtab, &nsyms, &strtab, &strtablen))
af3fc3bc 7750 continue;
252b5132 7751
dda8d76d 7752 dump_relocations (filedata, rel_offset, rel_size,
bb4d2ac2
L
7753 symtab, nsyms, strtab, strtablen,
7754 is_rela,
7755 symsec->sh_type == SHT_DYNSYM);
9db70fc3 7756 free (strtab);
d79b3d50
NC
7757 free (symtab);
7758 }
7759 else
dda8d76d 7760 dump_relocations (filedata, rel_offset, rel_size,
32ec8896 7761 NULL, 0, NULL, 0, is_rela,
015dc7e1 7762 false /* is_dynamic */);
252b5132 7763
015dc7e1 7764 found = true;
252b5132
RH
7765 }
7766 }
7767
7768 if (! found)
45ac8f4f
NC
7769 {
7770 /* Users sometimes forget the -D option, so try to be helpful. */
7771 for (i = 0; i < ARRAY_SIZE (dynamic_relocations); i++)
7772 {
978c4450 7773 if (filedata->dynamic_info[dynamic_relocations [i].size])
45ac8f4f 7774 {
ca0e11aa
NC
7775 if (filedata->is_separate)
7776 printf (_("\nThere are no static relocations in linked file '%s'."),
7777 filedata->file_name);
7778 else
7779 printf (_("\nThere are no static relocations in this file."));
45ac8f4f
NC
7780 printf (_("\nTo see the dynamic relocations add --use-dynamic to the command line.\n"));
7781
7782 break;
7783 }
7784 }
7785 if (i == ARRAY_SIZE (dynamic_relocations))
ca0e11aa
NC
7786 {
7787 if (filedata->is_separate)
7788 printf (_("\nThere are no relocations in linked file '%s'.\n"),
7789 filedata->file_name);
7790 else
7791 printf (_("\nThere are no relocations in this file.\n"));
7792 }
45ac8f4f 7793 }
252b5132
RH
7794 }
7795
015dc7e1 7796 return true;
252b5132
RH
7797}
7798
4d6ed7c8
NC
7799/* An absolute address consists of a section and an offset. If the
7800 section is NULL, the offset itself is the address, otherwise, the
7801 address equals to LOAD_ADDRESS(section) + offset. */
7802
7803struct absaddr
948f632f
DA
7804{
7805 unsigned short section;
7806 bfd_vma offset;
7807};
4d6ed7c8 7808
948f632f
DA
7809/* Find the nearest symbol at or below ADDR. Returns the symbol
7810 name, if found, and the offset from the symbol to ADDR. */
4d6ed7c8 7811
4d6ed7c8 7812static void
dda8d76d
NC
7813find_symbol_for_address (Filedata * filedata,
7814 Elf_Internal_Sym * symtab,
7815 unsigned long nsyms,
7816 const char * strtab,
7817 unsigned long strtab_size,
7818 struct absaddr addr,
7819 const char ** symname,
7820 bfd_vma * offset)
4d6ed7c8 7821{
d3ba0551 7822 bfd_vma dist = 0x100000;
2cf0635d 7823 Elf_Internal_Sym * sym;
948f632f
DA
7824 Elf_Internal_Sym * beg;
7825 Elf_Internal_Sym * end;
2cf0635d 7826 Elf_Internal_Sym * best = NULL;
4d6ed7c8 7827
0b6ae522 7828 REMOVE_ARCH_BITS (addr.offset);
948f632f
DA
7829 beg = symtab;
7830 end = symtab + nsyms;
0b6ae522 7831
948f632f 7832 while (beg < end)
4d6ed7c8 7833 {
948f632f
DA
7834 bfd_vma value;
7835
7836 sym = beg + (end - beg) / 2;
0b6ae522 7837
948f632f 7838 value = sym->st_value;
0b6ae522
DJ
7839 REMOVE_ARCH_BITS (value);
7840
948f632f 7841 if (sym->st_name != 0
4d6ed7c8 7842 && (addr.section == SHN_UNDEF || addr.section == sym->st_shndx)
0b6ae522
DJ
7843 && addr.offset >= value
7844 && addr.offset - value < dist)
4d6ed7c8
NC
7845 {
7846 best = sym;
0b6ae522 7847 dist = addr.offset - value;
4d6ed7c8
NC
7848 if (!dist)
7849 break;
7850 }
948f632f
DA
7851
7852 if (addr.offset < value)
7853 end = sym;
7854 else
7855 beg = sym + 1;
4d6ed7c8 7856 }
1b31d05e 7857
4d6ed7c8
NC
7858 if (best)
7859 {
57346661 7860 *symname = (best->st_name >= strtab_size
2b692964 7861 ? _("<corrupt>") : strtab + best->st_name);
4d6ed7c8
NC
7862 *offset = dist;
7863 return;
7864 }
1b31d05e 7865
4d6ed7c8
NC
7866 *symname = NULL;
7867 *offset = addr.offset;
7868}
7869
32ec8896 7870static /* signed */ int
948f632f
DA
7871symcmp (const void *p, const void *q)
7872{
7873 Elf_Internal_Sym *sp = (Elf_Internal_Sym *) p;
7874 Elf_Internal_Sym *sq = (Elf_Internal_Sym *) q;
7875
7876 return sp->st_value > sq->st_value ? 1 : (sp->st_value < sq->st_value ? -1 : 0);
7877}
7878
7879/* Process the unwind section. */
7880
7881#include "unwind-ia64.h"
7882
7883struct ia64_unw_table_entry
7884{
7885 struct absaddr start;
7886 struct absaddr end;
7887 struct absaddr info;
7888};
7889
7890struct ia64_unw_aux_info
7891{
32ec8896
NC
7892 struct ia64_unw_table_entry * table; /* Unwind table. */
7893 unsigned long table_len; /* Length of unwind table. */
7894 unsigned char * info; /* Unwind info. */
7895 unsigned long info_size; /* Size of unwind info. */
7896 bfd_vma info_addr; /* Starting address of unwind info. */
7897 bfd_vma seg_base; /* Starting address of segment. */
7898 Elf_Internal_Sym * symtab; /* The symbol table. */
7899 unsigned long nsyms; /* Number of symbols. */
7900 Elf_Internal_Sym * funtab; /* Sorted table of STT_FUNC symbols. */
7901 unsigned long nfuns; /* Number of entries in funtab. */
7902 char * strtab; /* The string table. */
7903 unsigned long strtab_size; /* Size of string table. */
948f632f
DA
7904};
7905
015dc7e1 7906static bool
dda8d76d 7907dump_ia64_unwind (Filedata * filedata, struct ia64_unw_aux_info * aux)
4d6ed7c8 7908{
2cf0635d 7909 struct ia64_unw_table_entry * tp;
948f632f 7910 unsigned long j, nfuns;
4d6ed7c8 7911 int in_body;
015dc7e1 7912 bool res = true;
7036c0e1 7913
948f632f
DA
7914 aux->funtab = xmalloc (aux->nsyms * sizeof (Elf_Internal_Sym));
7915 for (nfuns = 0, j = 0; j < aux->nsyms; j++)
7916 if (aux->symtab[j].st_value && ELF_ST_TYPE (aux->symtab[j].st_info) == STT_FUNC)
7917 aux->funtab[nfuns++] = aux->symtab[j];
7918 aux->nfuns = nfuns;
7919 qsort (aux->funtab, aux->nfuns, sizeof (Elf_Internal_Sym), symcmp);
7920
4d6ed7c8
NC
7921 for (tp = aux->table; tp < aux->table + aux->table_len; ++tp)
7922 {
7923 bfd_vma stamp;
7924 bfd_vma offset;
2cf0635d
NC
7925 const unsigned char * dp;
7926 const unsigned char * head;
53774b7e 7927 const unsigned char * end;
2cf0635d 7928 const char * procname;
4d6ed7c8 7929
dda8d76d 7930 find_symbol_for_address (filedata, aux->funtab, aux->nfuns, aux->strtab,
57346661 7931 aux->strtab_size, tp->start, &procname, &offset);
4d6ed7c8
NC
7932
7933 fputs ("\n<", stdout);
7934
7935 if (procname)
7936 {
7937 fputs (procname, stdout);
7938
7939 if (offset)
7940 printf ("+%lx", (unsigned long) offset);
7941 }
7942
7943 fputs (">: [", stdout);
7944 print_vma (tp->start.offset, PREFIX_HEX);
7945 fputc ('-', stdout);
7946 print_vma (tp->end.offset, PREFIX_HEX);
86f55779 7947 printf ("], info at +0x%lx\n",
4d6ed7c8
NC
7948 (unsigned long) (tp->info.offset - aux->seg_base));
7949
53774b7e
NC
7950 /* PR 17531: file: 86232b32. */
7951 if (aux->info == NULL)
7952 continue;
7953
97c0a079
AM
7954 offset = tp->info.offset;
7955 if (tp->info.section)
7956 {
7957 if (tp->info.section >= filedata->file_header.e_shnum)
7958 {
7959 warn (_("Invalid section %u in table entry %ld\n"),
7960 tp->info.section, (long) (tp - aux->table));
015dc7e1 7961 res = false;
97c0a079
AM
7962 continue;
7963 }
7964 offset += filedata->section_headers[tp->info.section].sh_addr;
7965 }
7966 offset -= aux->info_addr;
53774b7e 7967 /* PR 17531: file: 0997b4d1. */
90679903
AM
7968 if (offset >= aux->info_size
7969 || aux->info_size - offset < 8)
53774b7e
NC
7970 {
7971 warn (_("Invalid offset %lx in table entry %ld\n"),
7972 (long) tp->info.offset, (long) (tp - aux->table));
015dc7e1 7973 res = false;
53774b7e
NC
7974 continue;
7975 }
7976
97c0a079 7977 head = aux->info + offset;
a4a00738 7978 stamp = byte_get ((unsigned char *) head, sizeof (stamp));
4d6ed7c8 7979
86f55779 7980 printf (" v%u, flags=0x%lx (%s%s), len=%lu bytes\n",
4d6ed7c8
NC
7981 (unsigned) UNW_VER (stamp),
7982 (unsigned long) ((stamp & UNW_FLAG_MASK) >> 32),
7983 UNW_FLAG_EHANDLER (stamp) ? " ehandler" : "",
7984 UNW_FLAG_UHANDLER (stamp) ? " uhandler" : "",
89fac5e3 7985 (unsigned long) (eh_addr_size * UNW_LENGTH (stamp)));
4d6ed7c8
NC
7986
7987 if (UNW_VER (stamp) != 1)
7988 {
2b692964 7989 printf (_("\tUnknown version.\n"));
4d6ed7c8
NC
7990 continue;
7991 }
7992
7993 in_body = 0;
53774b7e
NC
7994 end = head + 8 + eh_addr_size * UNW_LENGTH (stamp);
7995 /* PR 17531: file: 16ceda89. */
7996 if (end > aux->info + aux->info_size)
7997 end = aux->info + aux->info_size;
7998 for (dp = head + 8; dp < end;)
b4477bc8 7999 dp = unw_decode (dp, in_body, & in_body, end);
4d6ed7c8 8000 }
948f632f
DA
8001
8002 free (aux->funtab);
32ec8896
NC
8003
8004 return res;
4d6ed7c8
NC
8005}
8006
015dc7e1 8007static bool
dda8d76d
NC
8008slurp_ia64_unwind_table (Filedata * filedata,
8009 struct ia64_unw_aux_info * aux,
8010 Elf_Internal_Shdr * sec)
4d6ed7c8 8011{
89fac5e3 8012 unsigned long size, nrelas, i;
2cf0635d
NC
8013 Elf_Internal_Phdr * seg;
8014 struct ia64_unw_table_entry * tep;
8015 Elf_Internal_Shdr * relsec;
8016 Elf_Internal_Rela * rela;
8017 Elf_Internal_Rela * rp;
8018 unsigned char * table;
8019 unsigned char * tp;
8020 Elf_Internal_Sym * sym;
8021 const char * relname;
4d6ed7c8 8022
53774b7e
NC
8023 aux->table_len = 0;
8024
4d6ed7c8
NC
8025 /* First, find the starting address of the segment that includes
8026 this section: */
8027
dda8d76d 8028 if (filedata->file_header.e_phnum)
4d6ed7c8 8029 {
dda8d76d 8030 if (! get_program_headers (filedata))
015dc7e1 8031 return false;
4d6ed7c8 8032
dda8d76d
NC
8033 for (seg = filedata->program_headers;
8034 seg < filedata->program_headers + filedata->file_header.e_phnum;
d93f0186 8035 ++seg)
4d6ed7c8
NC
8036 {
8037 if (seg->p_type != PT_LOAD)
8038 continue;
8039
8040 if (sec->sh_addr >= seg->p_vaddr
8041 && (sec->sh_addr + sec->sh_size <= seg->p_vaddr + seg->p_memsz))
8042 {
8043 aux->seg_base = seg->p_vaddr;
8044 break;
8045 }
8046 }
4d6ed7c8
NC
8047 }
8048
8049 /* Second, build the unwind table from the contents of the unwind section: */
8050 size = sec->sh_size;
dda8d76d 8051 table = (unsigned char *) get_data (NULL, filedata, sec->sh_offset, 1, size,
3f5e193b 8052 _("unwind table"));
a6e9f9df 8053 if (!table)
015dc7e1 8054 return false;
4d6ed7c8 8055
53774b7e 8056 aux->table_len = size / (3 * eh_addr_size);
3f5e193b 8057 aux->table = (struct ia64_unw_table_entry *)
53774b7e 8058 xcmalloc (aux->table_len, sizeof (aux->table[0]));
89fac5e3 8059 tep = aux->table;
53774b7e
NC
8060
8061 for (tp = table; tp <= table + size - (3 * eh_addr_size); ++tep)
4d6ed7c8
NC
8062 {
8063 tep->start.section = SHN_UNDEF;
8064 tep->end.section = SHN_UNDEF;
8065 tep->info.section = SHN_UNDEF;
c6a0c689
AM
8066 tep->start.offset = byte_get (tp, eh_addr_size); tp += eh_addr_size;
8067 tep->end.offset = byte_get (tp, eh_addr_size); tp += eh_addr_size;
8068 tep->info.offset = byte_get (tp, eh_addr_size); tp += eh_addr_size;
4d6ed7c8
NC
8069 tep->start.offset += aux->seg_base;
8070 tep->end.offset += aux->seg_base;
8071 tep->info.offset += aux->seg_base;
8072 }
8073 free (table);
8074
41e92641 8075 /* Third, apply any relocations to the unwind table: */
dda8d76d
NC
8076 for (relsec = filedata->section_headers;
8077 relsec < filedata->section_headers + filedata->file_header.e_shnum;
4d6ed7c8
NC
8078 ++relsec)
8079 {
8080 if (relsec->sh_type != SHT_RELA
dda8d76d
NC
8081 || relsec->sh_info >= filedata->file_header.e_shnum
8082 || filedata->section_headers + relsec->sh_info != sec)
4d6ed7c8
NC
8083 continue;
8084
dda8d76d 8085 if (!slurp_rela_relocs (filedata, relsec->sh_offset, relsec->sh_size,
4d6ed7c8 8086 & rela, & nrelas))
53774b7e
NC
8087 {
8088 free (aux->table);
8089 aux->table = NULL;
8090 aux->table_len = 0;
015dc7e1 8091 return false;
53774b7e 8092 }
4d6ed7c8
NC
8093
8094 for (rp = rela; rp < rela + nrelas; ++rp)
8095 {
4770fb94 8096 unsigned int sym_ndx;
726bd37d
AM
8097 unsigned int r_type = get_reloc_type (filedata, rp->r_info);
8098 relname = elf_ia64_reloc_type (r_type);
4d6ed7c8 8099
82b1b41b
NC
8100 /* PR 17531: file: 9fa67536. */
8101 if (relname == NULL)
8102 {
726bd37d 8103 warn (_("Skipping unknown relocation type: %u\n"), r_type);
82b1b41b
NC
8104 continue;
8105 }
948f632f 8106
24d127aa 8107 if (! startswith (relname, "R_IA64_SEGREL"))
4d6ed7c8 8108 {
82b1b41b 8109 warn (_("Skipping unexpected relocation type: %s\n"), relname);
4d6ed7c8
NC
8110 continue;
8111 }
8112
89fac5e3 8113 i = rp->r_offset / (3 * eh_addr_size);
4d6ed7c8 8114
53774b7e
NC
8115 /* PR 17531: file: 5bc8d9bf. */
8116 if (i >= aux->table_len)
8117 {
8118 warn (_("Skipping reloc with overlarge offset: %lx\n"), i);
8119 continue;
8120 }
8121
4770fb94
AM
8122 sym_ndx = get_reloc_symindex (rp->r_info);
8123 if (sym_ndx >= aux->nsyms)
8124 {
8125 warn (_("Skipping reloc with invalid symbol index: %u\n"),
8126 sym_ndx);
8127 continue;
8128 }
8129 sym = aux->symtab + sym_ndx;
8130
53774b7e 8131 switch (rp->r_offset / eh_addr_size % 3)
4d6ed7c8
NC
8132 {
8133 case 0:
8134 aux->table[i].start.section = sym->st_shndx;
e466bc6e 8135 aux->table[i].start.offset = rp->r_addend + sym->st_value;
4d6ed7c8
NC
8136 break;
8137 case 1:
8138 aux->table[i].end.section = sym->st_shndx;
e466bc6e 8139 aux->table[i].end.offset = rp->r_addend + sym->st_value;
4d6ed7c8
NC
8140 break;
8141 case 2:
8142 aux->table[i].info.section = sym->st_shndx;
e466bc6e 8143 aux->table[i].info.offset = rp->r_addend + sym->st_value;
4d6ed7c8
NC
8144 break;
8145 default:
8146 break;
8147 }
8148 }
8149
8150 free (rela);
8151 }
8152
015dc7e1 8153 return true;
4d6ed7c8
NC
8154}
8155
015dc7e1 8156static bool
dda8d76d 8157ia64_process_unwind (Filedata * filedata)
4d6ed7c8 8158{
2cf0635d
NC
8159 Elf_Internal_Shdr * sec;
8160 Elf_Internal_Shdr * unwsec = NULL;
89fac5e3 8161 unsigned long i, unwcount = 0, unwstart = 0;
57346661 8162 struct ia64_unw_aux_info aux;
015dc7e1 8163 bool res = true;
f1467e33 8164
4d6ed7c8
NC
8165 memset (& aux, 0, sizeof (aux));
8166
dda8d76d 8167 for (i = 0, sec = filedata->section_headers; i < filedata->file_header.e_shnum; ++i, ++sec)
4d6ed7c8 8168 {
28d13567 8169 if (sec->sh_type == SHT_SYMTAB)
4d6ed7c8 8170 {
28d13567 8171 if (aux.symtab)
4082ef84 8172 {
28d13567
AM
8173 error (_("Multiple symbol tables encountered\n"));
8174 free (aux.symtab);
8175 aux.symtab = NULL;
4082ef84 8176 free (aux.strtab);
28d13567 8177 aux.strtab = NULL;
4082ef84 8178 }
28d13567
AM
8179 if (!get_symtab (filedata, sec, &aux.symtab, &aux.nsyms,
8180 &aux.strtab, &aux.strtab_size))
015dc7e1 8181 return false;
4d6ed7c8
NC
8182 }
8183 else if (sec->sh_type == SHT_IA_64_UNWIND)
579f31ac
JJ
8184 unwcount++;
8185 }
8186
8187 if (!unwcount)
8188 printf (_("\nThere are no unwind sections in this file.\n"));
8189
8190 while (unwcount-- > 0)
8191 {
2cf0635d 8192 char * suffix;
579f31ac
JJ
8193 size_t len, len2;
8194
dda8d76d
NC
8195 for (i = unwstart, sec = filedata->section_headers + unwstart, unwsec = NULL;
8196 i < filedata->file_header.e_shnum; ++i, ++sec)
579f31ac
JJ
8197 if (sec->sh_type == SHT_IA_64_UNWIND)
8198 {
8199 unwsec = sec;
8200 break;
8201 }
4082ef84
NC
8202 /* We have already counted the number of SHT_IA64_UNWIND
8203 sections so the loop above should never fail. */
8204 assert (unwsec != NULL);
579f31ac
JJ
8205
8206 unwstart = i + 1;
8207 len = sizeof (ELF_STRING_ia64_unwind_once) - 1;
8208
e4b17d5c
L
8209 if ((unwsec->sh_flags & SHF_GROUP) != 0)
8210 {
8211 /* We need to find which section group it is in. */
4082ef84 8212 struct group_list * g;
e4b17d5c 8213
978c4450
AM
8214 if (filedata->section_headers_groups == NULL
8215 || filedata->section_headers_groups[i] == NULL)
dda8d76d 8216 i = filedata->file_header.e_shnum;
4082ef84 8217 else
e4b17d5c 8218 {
978c4450 8219 g = filedata->section_headers_groups[i]->root;
18bd398b 8220
4082ef84
NC
8221 for (; g != NULL; g = g->next)
8222 {
dda8d76d 8223 sec = filedata->section_headers + g->section_index;
e4b17d5c 8224
b9e920ec
AM
8225 if (SECTION_NAME_VALID (sec)
8226 && streq (SECTION_NAME (sec), ELF_STRING_ia64_unwind_info))
4082ef84
NC
8227 break;
8228 }
8229
8230 if (g == NULL)
dda8d76d 8231 i = filedata->file_header.e_shnum;
4082ef84 8232 }
e4b17d5c 8233 }
b9e920ec 8234 else if (SECTION_NAME_VALID (unwsec)
e9b095a5
ML
8235 && startswith (SECTION_NAME (unwsec),
8236 ELF_STRING_ia64_unwind_once))
579f31ac 8237 {
18bd398b 8238 /* .gnu.linkonce.ia64unw.FOO -> .gnu.linkonce.ia64unwi.FOO. */
579f31ac
JJ
8239 len2 = sizeof (ELF_STRING_ia64_unwind_info_once) - 1;
8240 suffix = SECTION_NAME (unwsec) + len;
b9e920ec
AM
8241 for (i = 0, sec = filedata->section_headers;
8242 i < filedata->file_header.e_shnum;
579f31ac 8243 ++i, ++sec)
b9e920ec 8244 if (SECTION_NAME_VALID (sec)
e9b095a5
ML
8245 && startswith (SECTION_NAME (sec),
8246 ELF_STRING_ia64_unwind_info_once)
18bd398b 8247 && streq (SECTION_NAME (sec) + len2, suffix))
579f31ac
JJ
8248 break;
8249 }
8250 else
8251 {
8252 /* .IA_64.unwindFOO -> .IA_64.unwind_infoFOO
18bd398b 8253 .IA_64.unwind or BAR -> .IA_64.unwind_info. */
579f31ac
JJ
8254 len = sizeof (ELF_STRING_ia64_unwind) - 1;
8255 len2 = sizeof (ELF_STRING_ia64_unwind_info) - 1;
8256 suffix = "";
b9e920ec 8257 if (SECTION_NAME_VALID (unwsec)
e9b095a5 8258 && startswith (SECTION_NAME (unwsec), ELF_STRING_ia64_unwind))
579f31ac 8259 suffix = SECTION_NAME (unwsec) + len;
b9e920ec
AM
8260 for (i = 0, sec = filedata->section_headers;
8261 i < filedata->file_header.e_shnum;
579f31ac 8262 ++i, ++sec)
b9e920ec 8263 if (SECTION_NAME_VALID (sec)
e9b095a5 8264 && startswith (SECTION_NAME (sec), ELF_STRING_ia64_unwind_info)
18bd398b 8265 && streq (SECTION_NAME (sec) + len2, suffix))
579f31ac
JJ
8266 break;
8267 }
8268
dda8d76d 8269 if (i == filedata->file_header.e_shnum)
579f31ac
JJ
8270 {
8271 printf (_("\nCould not find unwind info section for "));
8272
dda8d76d 8273 if (filedata->string_table == NULL)
579f31ac
JJ
8274 printf ("%d", unwsec->sh_name);
8275 else
dda8d76d 8276 printf ("'%s'", printable_section_name (filedata, unwsec));
579f31ac
JJ
8277 }
8278 else
4d6ed7c8 8279 {
4d6ed7c8 8280 aux.info_addr = sec->sh_addr;
dda8d76d 8281 aux.info = (unsigned char *) get_data (NULL, filedata, sec->sh_offset, 1,
4082ef84
NC
8282 sec->sh_size,
8283 _("unwind info"));
59245841 8284 aux.info_size = aux.info == NULL ? 0 : sec->sh_size;
4d6ed7c8 8285
579f31ac 8286 printf (_("\nUnwind section "));
4d6ed7c8 8287
dda8d76d 8288 if (filedata->string_table == NULL)
579f31ac
JJ
8289 printf ("%d", unwsec->sh_name);
8290 else
dda8d76d 8291 printf ("'%s'", printable_section_name (filedata, unwsec));
4d6ed7c8 8292
579f31ac 8293 printf (_(" at offset 0x%lx contains %lu entries:\n"),
e59b4dfb 8294 (unsigned long) unwsec->sh_offset,
89fac5e3 8295 (unsigned long) (unwsec->sh_size / (3 * eh_addr_size)));
4d6ed7c8 8296
dda8d76d 8297 if (slurp_ia64_unwind_table (filedata, & aux, unwsec)
53774b7e 8298 && aux.table_len > 0)
dda8d76d 8299 dump_ia64_unwind (filedata, & aux);
579f31ac 8300
9db70fc3
AM
8301 free ((char *) aux.table);
8302 free ((char *) aux.info);
579f31ac
JJ
8303 aux.table = NULL;
8304 aux.info = NULL;
8305 }
4d6ed7c8 8306 }
4d6ed7c8 8307
9db70fc3
AM
8308 free (aux.symtab);
8309 free ((char *) aux.strtab);
32ec8896
NC
8310
8311 return res;
4d6ed7c8
NC
8312}
8313
3f5e193b 8314struct hppa_unw_table_entry
32ec8896
NC
8315{
8316 struct absaddr start;
8317 struct absaddr end;
8318 unsigned int Cannot_unwind:1; /* 0 */
8319 unsigned int Millicode:1; /* 1 */
8320 unsigned int Millicode_save_sr0:1; /* 2 */
8321 unsigned int Region_description:2; /* 3..4 */
8322 unsigned int reserved1:1; /* 5 */
8323 unsigned int Entry_SR:1; /* 6 */
8324 unsigned int Entry_FR:4; /* Number saved 7..10 */
8325 unsigned int Entry_GR:5; /* Number saved 11..15 */
8326 unsigned int Args_stored:1; /* 16 */
8327 unsigned int Variable_Frame:1; /* 17 */
8328 unsigned int Separate_Package_Body:1; /* 18 */
8329 unsigned int Frame_Extension_Millicode:1; /* 19 */
8330 unsigned int Stack_Overflow_Check:1; /* 20 */
8331 unsigned int Two_Instruction_SP_Increment:1; /* 21 */
8332 unsigned int Ada_Region:1; /* 22 */
8333 unsigned int cxx_info:1; /* 23 */
8334 unsigned int cxx_try_catch:1; /* 24 */
8335 unsigned int sched_entry_seq:1; /* 25 */
8336 unsigned int reserved2:1; /* 26 */
8337 unsigned int Save_SP:1; /* 27 */
8338 unsigned int Save_RP:1; /* 28 */
8339 unsigned int Save_MRP_in_frame:1; /* 29 */
8340 unsigned int extn_ptr_defined:1; /* 30 */
8341 unsigned int Cleanup_defined:1; /* 31 */
8342
8343 unsigned int MPE_XL_interrupt_marker:1; /* 0 */
8344 unsigned int HP_UX_interrupt_marker:1; /* 1 */
8345 unsigned int Large_frame:1; /* 2 */
8346 unsigned int Pseudo_SP_Set:1; /* 3 */
8347 unsigned int reserved4:1; /* 4 */
8348 unsigned int Total_frame_size:27; /* 5..31 */
8349};
3f5e193b 8350
57346661 8351struct hppa_unw_aux_info
948f632f 8352{
32ec8896
NC
8353 struct hppa_unw_table_entry * table; /* Unwind table. */
8354 unsigned long table_len; /* Length of unwind table. */
8355 bfd_vma seg_base; /* Starting address of segment. */
8356 Elf_Internal_Sym * symtab; /* The symbol table. */
8357 unsigned long nsyms; /* Number of symbols. */
8358 Elf_Internal_Sym * funtab; /* Sorted table of STT_FUNC symbols. */
8359 unsigned long nfuns; /* Number of entries in funtab. */
8360 char * strtab; /* The string table. */
8361 unsigned long strtab_size; /* Size of string table. */
948f632f 8362};
57346661 8363
015dc7e1 8364static bool
dda8d76d 8365dump_hppa_unwind (Filedata * filedata, struct hppa_unw_aux_info * aux)
57346661 8366{
2cf0635d 8367 struct hppa_unw_table_entry * tp;
948f632f 8368 unsigned long j, nfuns;
015dc7e1 8369 bool res = true;
948f632f
DA
8370
8371 aux->funtab = xmalloc (aux->nsyms * sizeof (Elf_Internal_Sym));
8372 for (nfuns = 0, j = 0; j < aux->nsyms; j++)
8373 if (aux->symtab[j].st_value && ELF_ST_TYPE (aux->symtab[j].st_info) == STT_FUNC)
8374 aux->funtab[nfuns++] = aux->symtab[j];
8375 aux->nfuns = nfuns;
8376 qsort (aux->funtab, aux->nfuns, sizeof (Elf_Internal_Sym), symcmp);
57346661 8377
57346661
AM
8378 for (tp = aux->table; tp < aux->table + aux->table_len; ++tp)
8379 {
8380 bfd_vma offset;
2cf0635d 8381 const char * procname;
57346661 8382
dda8d76d 8383 find_symbol_for_address (filedata, aux->funtab, aux->nfuns, aux->strtab,
57346661
AM
8384 aux->strtab_size, tp->start, &procname,
8385 &offset);
8386
8387 fputs ("\n<", stdout);
8388
8389 if (procname)
8390 {
8391 fputs (procname, stdout);
8392
8393 if (offset)
8394 printf ("+%lx", (unsigned long) offset);
8395 }
8396
8397 fputs (">: [", stdout);
8398 print_vma (tp->start.offset, PREFIX_HEX);
8399 fputc ('-', stdout);
8400 print_vma (tp->end.offset, PREFIX_HEX);
8401 printf ("]\n\t");
8402
18bd398b
NC
8403#define PF(_m) if (tp->_m) printf (#_m " ");
8404#define PV(_m) if (tp->_m) printf (#_m "=%d ", tp->_m);
57346661
AM
8405 PF(Cannot_unwind);
8406 PF(Millicode);
8407 PF(Millicode_save_sr0);
18bd398b 8408 /* PV(Region_description); */
57346661
AM
8409 PF(Entry_SR);
8410 PV(Entry_FR);
8411 PV(Entry_GR);
8412 PF(Args_stored);
8413 PF(Variable_Frame);
8414 PF(Separate_Package_Body);
8415 PF(Frame_Extension_Millicode);
8416 PF(Stack_Overflow_Check);
8417 PF(Two_Instruction_SP_Increment);
8418 PF(Ada_Region);
8419 PF(cxx_info);
8420 PF(cxx_try_catch);
8421 PF(sched_entry_seq);
8422 PF(Save_SP);
8423 PF(Save_RP);
8424 PF(Save_MRP_in_frame);
8425 PF(extn_ptr_defined);
8426 PF(Cleanup_defined);
8427 PF(MPE_XL_interrupt_marker);
8428 PF(HP_UX_interrupt_marker);
8429 PF(Large_frame);
8430 PF(Pseudo_SP_Set);
8431 PV(Total_frame_size);
8432#undef PF
8433#undef PV
8434 }
8435
18bd398b 8436 printf ("\n");
948f632f
DA
8437
8438 free (aux->funtab);
32ec8896
NC
8439
8440 return res;
57346661
AM
8441}
8442
015dc7e1 8443static bool
dda8d76d
NC
8444slurp_hppa_unwind_table (Filedata * filedata,
8445 struct hppa_unw_aux_info * aux,
8446 Elf_Internal_Shdr * sec)
57346661 8447{
1c0751b2 8448 unsigned long size, unw_ent_size, nentries, nrelas, i;
2cf0635d
NC
8449 Elf_Internal_Phdr * seg;
8450 struct hppa_unw_table_entry * tep;
8451 Elf_Internal_Shdr * relsec;
8452 Elf_Internal_Rela * rela;
8453 Elf_Internal_Rela * rp;
8454 unsigned char * table;
8455 unsigned char * tp;
8456 Elf_Internal_Sym * sym;
8457 const char * relname;
57346661 8458
57346661
AM
8459 /* First, find the starting address of the segment that includes
8460 this section. */
dda8d76d 8461 if (filedata->file_header.e_phnum)
57346661 8462 {
dda8d76d 8463 if (! get_program_headers (filedata))
015dc7e1 8464 return false;
57346661 8465
dda8d76d
NC
8466 for (seg = filedata->program_headers;
8467 seg < filedata->program_headers + filedata->file_header.e_phnum;
57346661
AM
8468 ++seg)
8469 {
8470 if (seg->p_type != PT_LOAD)
8471 continue;
8472
8473 if (sec->sh_addr >= seg->p_vaddr
8474 && (sec->sh_addr + sec->sh_size <= seg->p_vaddr + seg->p_memsz))
8475 {
8476 aux->seg_base = seg->p_vaddr;
8477 break;
8478 }
8479 }
8480 }
8481
8482 /* Second, build the unwind table from the contents of the unwind
8483 section. */
8484 size = sec->sh_size;
dda8d76d 8485 table = (unsigned char *) get_data (NULL, filedata, sec->sh_offset, 1, size,
3f5e193b 8486 _("unwind table"));
57346661 8487 if (!table)
015dc7e1 8488 return false;
57346661 8489
1c0751b2
DA
8490 unw_ent_size = 16;
8491 nentries = size / unw_ent_size;
8492 size = unw_ent_size * nentries;
57346661 8493
e3fdc001 8494 aux->table_len = nentries;
3f5e193b
NC
8495 tep = aux->table = (struct hppa_unw_table_entry *)
8496 xcmalloc (nentries, sizeof (aux->table[0]));
57346661 8497
1c0751b2 8498 for (tp = table; tp < table + size; tp += unw_ent_size, ++tep)
57346661
AM
8499 {
8500 unsigned int tmp1, tmp2;
8501
8502 tep->start.section = SHN_UNDEF;
8503 tep->end.section = SHN_UNDEF;
8504
1c0751b2
DA
8505 tep->start.offset = byte_get ((unsigned char *) tp + 0, 4);
8506 tep->end.offset = byte_get ((unsigned char *) tp + 4, 4);
8507 tmp1 = byte_get ((unsigned char *) tp + 8, 4);
8508 tmp2 = byte_get ((unsigned char *) tp + 12, 4);
8509
8510 tep->start.offset += aux->seg_base;
8511 tep->end.offset += aux->seg_base;
57346661
AM
8512
8513 tep->Cannot_unwind = (tmp1 >> 31) & 0x1;
8514 tep->Millicode = (tmp1 >> 30) & 0x1;
8515 tep->Millicode_save_sr0 = (tmp1 >> 29) & 0x1;
8516 tep->Region_description = (tmp1 >> 27) & 0x3;
8517 tep->reserved1 = (tmp1 >> 26) & 0x1;
8518 tep->Entry_SR = (tmp1 >> 25) & 0x1;
8519 tep->Entry_FR = (tmp1 >> 21) & 0xf;
8520 tep->Entry_GR = (tmp1 >> 16) & 0x1f;
8521 tep->Args_stored = (tmp1 >> 15) & 0x1;
8522 tep->Variable_Frame = (tmp1 >> 14) & 0x1;
8523 tep->Separate_Package_Body = (tmp1 >> 13) & 0x1;
8524 tep->Frame_Extension_Millicode = (tmp1 >> 12) & 0x1;
8525 tep->Stack_Overflow_Check = (tmp1 >> 11) & 0x1;
8526 tep->Two_Instruction_SP_Increment = (tmp1 >> 10) & 0x1;
8527 tep->Ada_Region = (tmp1 >> 9) & 0x1;
8528 tep->cxx_info = (tmp1 >> 8) & 0x1;
8529 tep->cxx_try_catch = (tmp1 >> 7) & 0x1;
8530 tep->sched_entry_seq = (tmp1 >> 6) & 0x1;
8531 tep->reserved2 = (tmp1 >> 5) & 0x1;
8532 tep->Save_SP = (tmp1 >> 4) & 0x1;
8533 tep->Save_RP = (tmp1 >> 3) & 0x1;
8534 tep->Save_MRP_in_frame = (tmp1 >> 2) & 0x1;
8535 tep->extn_ptr_defined = (tmp1 >> 1) & 0x1;
8536 tep->Cleanup_defined = tmp1 & 0x1;
8537
8538 tep->MPE_XL_interrupt_marker = (tmp2 >> 31) & 0x1;
8539 tep->HP_UX_interrupt_marker = (tmp2 >> 30) & 0x1;
8540 tep->Large_frame = (tmp2 >> 29) & 0x1;
8541 tep->Pseudo_SP_Set = (tmp2 >> 28) & 0x1;
8542 tep->reserved4 = (tmp2 >> 27) & 0x1;
8543 tep->Total_frame_size = tmp2 & 0x7ffffff;
57346661
AM
8544 }
8545 free (table);
8546
8547 /* Third, apply any relocations to the unwind table. */
dda8d76d
NC
8548 for (relsec = filedata->section_headers;
8549 relsec < filedata->section_headers + filedata->file_header.e_shnum;
57346661
AM
8550 ++relsec)
8551 {
8552 if (relsec->sh_type != SHT_RELA
dda8d76d
NC
8553 || relsec->sh_info >= filedata->file_header.e_shnum
8554 || filedata->section_headers + relsec->sh_info != sec)
57346661
AM
8555 continue;
8556
dda8d76d 8557 if (!slurp_rela_relocs (filedata, relsec->sh_offset, relsec->sh_size,
57346661 8558 & rela, & nrelas))
015dc7e1 8559 return false;
57346661
AM
8560
8561 for (rp = rela; rp < rela + nrelas; ++rp)
8562 {
4770fb94 8563 unsigned int sym_ndx;
726bd37d
AM
8564 unsigned int r_type = get_reloc_type (filedata, rp->r_info);
8565 relname = elf_hppa_reloc_type (r_type);
57346661 8566
726bd37d
AM
8567 if (relname == NULL)
8568 {
8569 warn (_("Skipping unknown relocation type: %u\n"), r_type);
8570 continue;
8571 }
8572
57346661 8573 /* R_PARISC_SEGREL32 or R_PARISC_SEGREL64. */
24d127aa 8574 if (! startswith (relname, "R_PARISC_SEGREL"))
57346661 8575 {
726bd37d 8576 warn (_("Skipping unexpected relocation type: %s\n"), relname);
57346661
AM
8577 continue;
8578 }
8579
8580 i = rp->r_offset / unw_ent_size;
726bd37d
AM
8581 if (i >= aux->table_len)
8582 {
8583 warn (_("Skipping reloc with overlarge offset: %lx\n"), i);
8584 continue;
8585 }
57346661 8586
4770fb94
AM
8587 sym_ndx = get_reloc_symindex (rp->r_info);
8588 if (sym_ndx >= aux->nsyms)
8589 {
8590 warn (_("Skipping reloc with invalid symbol index: %u\n"),
8591 sym_ndx);
8592 continue;
8593 }
8594 sym = aux->symtab + sym_ndx;
8595
43f6cd05 8596 switch ((rp->r_offset % unw_ent_size) / 4)
57346661
AM
8597 {
8598 case 0:
8599 aux->table[i].start.section = sym->st_shndx;
1e456d54 8600 aux->table[i].start.offset = sym->st_value + rp->r_addend;
57346661
AM
8601 break;
8602 case 1:
8603 aux->table[i].end.section = sym->st_shndx;
1e456d54 8604 aux->table[i].end.offset = sym->st_value + rp->r_addend;
57346661
AM
8605 break;
8606 default:
8607 break;
8608 }
8609 }
8610
8611 free (rela);
8612 }
8613
015dc7e1 8614 return true;
57346661
AM
8615}
8616
015dc7e1 8617static bool
dda8d76d 8618hppa_process_unwind (Filedata * filedata)
57346661 8619{
57346661 8620 struct hppa_unw_aux_info aux;
2cf0635d 8621 Elf_Internal_Shdr * unwsec = NULL;
2cf0635d 8622 Elf_Internal_Shdr * sec;
18bd398b 8623 unsigned long i;
015dc7e1 8624 bool res = true;
57346661 8625
dda8d76d 8626 if (filedata->string_table == NULL)
015dc7e1 8627 return false;
1b31d05e
NC
8628
8629 memset (& aux, 0, sizeof (aux));
57346661 8630
dda8d76d 8631 for (i = 0, sec = filedata->section_headers; i < filedata->file_header.e_shnum; ++i, ++sec)
57346661 8632 {
28d13567 8633 if (sec->sh_type == SHT_SYMTAB)
57346661 8634 {
28d13567 8635 if (aux.symtab)
4082ef84 8636 {
28d13567
AM
8637 error (_("Multiple symbol tables encountered\n"));
8638 free (aux.symtab);
8639 aux.symtab = NULL;
4082ef84 8640 free (aux.strtab);
28d13567 8641 aux.strtab = NULL;
4082ef84 8642 }
28d13567
AM
8643 if (!get_symtab (filedata, sec, &aux.symtab, &aux.nsyms,
8644 &aux.strtab, &aux.strtab_size))
015dc7e1 8645 return false;
57346661 8646 }
b9e920ec
AM
8647 else if (SECTION_NAME_VALID (sec)
8648 && streq (SECTION_NAME (sec), ".PARISC.unwind"))
57346661
AM
8649 unwsec = sec;
8650 }
8651
8652 if (!unwsec)
8653 printf (_("\nThere are no unwind sections in this file.\n"));
8654
dda8d76d 8655 for (i = 0, sec = filedata->section_headers; i < filedata->file_header.e_shnum; ++i, ++sec)
57346661 8656 {
b9e920ec
AM
8657 if (SECTION_NAME_VALID (sec)
8658 && streq (SECTION_NAME (sec), ".PARISC.unwind"))
57346661 8659 {
43f6cd05 8660 unsigned long num_unwind = sec->sh_size / 16;
dda8d76d 8661
d3a49aa8
AM
8662 printf (ngettext ("\nUnwind section '%s' at offset 0x%lx "
8663 "contains %lu entry:\n",
8664 "\nUnwind section '%s' at offset 0x%lx "
8665 "contains %lu entries:\n",
8666 num_unwind),
dda8d76d 8667 printable_section_name (filedata, sec),
57346661 8668 (unsigned long) sec->sh_offset,
d3a49aa8 8669 num_unwind);
57346661 8670
dda8d76d 8671 if (! slurp_hppa_unwind_table (filedata, &aux, sec))
015dc7e1 8672 res = false;
66b09c7e
S
8673
8674 if (res && aux.table_len > 0)
32ec8896 8675 {
dda8d76d 8676 if (! dump_hppa_unwind (filedata, &aux))
015dc7e1 8677 res = false;
32ec8896 8678 }
57346661 8679
9db70fc3 8680 free ((char *) aux.table);
57346661
AM
8681 aux.table = NULL;
8682 }
8683 }
8684
9db70fc3
AM
8685 free (aux.symtab);
8686 free ((char *) aux.strtab);
32ec8896
NC
8687
8688 return res;
57346661
AM
8689}
8690
0b6ae522
DJ
8691struct arm_section
8692{
a734115a
NC
8693 unsigned char * data; /* The unwind data. */
8694 Elf_Internal_Shdr * sec; /* The cached unwind section header. */
8695 Elf_Internal_Rela * rela; /* The cached relocations for this section. */
8696 unsigned long nrelas; /* The number of relocations. */
8697 unsigned int rel_type; /* REL or RELA ? */
8698 Elf_Internal_Rela * next_rela; /* Cyclic pointer to the next reloc to process. */
0b6ae522
DJ
8699};
8700
8701struct arm_unw_aux_info
8702{
dda8d76d 8703 Filedata * filedata; /* The file containing the unwind sections. */
a734115a
NC
8704 Elf_Internal_Sym * symtab; /* The file's symbol table. */
8705 unsigned long nsyms; /* Number of symbols. */
948f632f
DA
8706 Elf_Internal_Sym * funtab; /* Sorted table of STT_FUNC symbols. */
8707 unsigned long nfuns; /* Number of these symbols. */
a734115a
NC
8708 char * strtab; /* The file's string table. */
8709 unsigned long strtab_size; /* Size of string table. */
0b6ae522
DJ
8710};
8711
8712static const char *
dda8d76d
NC
8713arm_print_vma_and_name (Filedata * filedata,
8714 struct arm_unw_aux_info * aux,
8715 bfd_vma fn,
8716 struct absaddr addr)
0b6ae522
DJ
8717{
8718 const char *procname;
8719 bfd_vma sym_offset;
8720
8721 if (addr.section == SHN_UNDEF)
8722 addr.offset = fn;
8723
dda8d76d 8724 find_symbol_for_address (filedata, aux->funtab, aux->nfuns, aux->strtab,
0b6ae522
DJ
8725 aux->strtab_size, addr, &procname,
8726 &sym_offset);
8727
8728 print_vma (fn, PREFIX_HEX);
8729
8730 if (procname)
8731 {
8732 fputs (" <", stdout);
8733 fputs (procname, stdout);
8734
8735 if (sym_offset)
8736 printf ("+0x%lx", (unsigned long) sym_offset);
8737 fputc ('>', stdout);
8738 }
8739
8740 return procname;
8741}
8742
8743static void
8744arm_free_section (struct arm_section *arm_sec)
8745{
9db70fc3
AM
8746 free (arm_sec->data);
8747 free (arm_sec->rela);
0b6ae522
DJ
8748}
8749
a734115a
NC
8750/* 1) If SEC does not match the one cached in ARM_SEC, then free the current
8751 cached section and install SEC instead.
8752 2) Locate the 32-bit word at WORD_OFFSET in unwind section SEC
8753 and return its valued in * WORDP, relocating if necessary.
1b31d05e 8754 3) Update the NEXT_RELA field in ARM_SEC and store the section index and
a734115a 8755 relocation's offset in ADDR.
1b31d05e
NC
8756 4) If SYM_NAME is non-NULL and a relocation was applied, record the offset
8757 into the string table of the symbol associated with the reloc. If no
8758 reloc was applied store -1 there.
8759 5) Return TRUE upon success, FALSE otherwise. */
a734115a 8760
015dc7e1 8761static bool
dda8d76d
NC
8762get_unwind_section_word (Filedata * filedata,
8763 struct arm_unw_aux_info * aux,
1b31d05e
NC
8764 struct arm_section * arm_sec,
8765 Elf_Internal_Shdr * sec,
8766 bfd_vma word_offset,
8767 unsigned int * wordp,
8768 struct absaddr * addr,
8769 bfd_vma * sym_name)
0b6ae522
DJ
8770{
8771 Elf_Internal_Rela *rp;
8772 Elf_Internal_Sym *sym;
8773 const char * relname;
8774 unsigned int word;
015dc7e1 8775 bool wrapped;
0b6ae522 8776
e0a31db1 8777 if (sec == NULL || arm_sec == NULL)
015dc7e1 8778 return false;
e0a31db1 8779
0b6ae522
DJ
8780 addr->section = SHN_UNDEF;
8781 addr->offset = 0;
8782
1b31d05e
NC
8783 if (sym_name != NULL)
8784 *sym_name = (bfd_vma) -1;
8785
a734115a 8786 /* If necessary, update the section cache. */
0b6ae522
DJ
8787 if (sec != arm_sec->sec)
8788 {
8789 Elf_Internal_Shdr *relsec;
8790
8791 arm_free_section (arm_sec);
8792
8793 arm_sec->sec = sec;
dda8d76d 8794 arm_sec->data = get_data (NULL, aux->filedata, sec->sh_offset, 1,
0b6ae522 8795 sec->sh_size, _("unwind data"));
0b6ae522
DJ
8796 arm_sec->rela = NULL;
8797 arm_sec->nrelas = 0;
8798
dda8d76d
NC
8799 for (relsec = filedata->section_headers;
8800 relsec < filedata->section_headers + filedata->file_header.e_shnum;
0b6ae522
DJ
8801 ++relsec)
8802 {
dda8d76d
NC
8803 if (relsec->sh_info >= filedata->file_header.e_shnum
8804 || filedata->section_headers + relsec->sh_info != sec
1ae40aa4
NC
8805 /* PR 15745: Check the section type as well. */
8806 || (relsec->sh_type != SHT_REL
8807 && relsec->sh_type != SHT_RELA))
0b6ae522
DJ
8808 continue;
8809
a734115a 8810 arm_sec->rel_type = relsec->sh_type;
0b6ae522
DJ
8811 if (relsec->sh_type == SHT_REL)
8812 {
dda8d76d 8813 if (!slurp_rel_relocs (aux->filedata, relsec->sh_offset,
0b6ae522
DJ
8814 relsec->sh_size,
8815 & arm_sec->rela, & arm_sec->nrelas))
015dc7e1 8816 return false;
0b6ae522 8817 }
1ae40aa4 8818 else /* relsec->sh_type == SHT_RELA */
0b6ae522 8819 {
dda8d76d 8820 if (!slurp_rela_relocs (aux->filedata, relsec->sh_offset,
0b6ae522
DJ
8821 relsec->sh_size,
8822 & arm_sec->rela, & arm_sec->nrelas))
015dc7e1 8823 return false;
0b6ae522 8824 }
1ae40aa4 8825 break;
0b6ae522
DJ
8826 }
8827
8828 arm_sec->next_rela = arm_sec->rela;
8829 }
8830
a734115a 8831 /* If there is no unwind data we can do nothing. */
0b6ae522 8832 if (arm_sec->data == NULL)
015dc7e1 8833 return false;
0b6ae522 8834
e0a31db1 8835 /* If the offset is invalid then fail. */
f32ba729
NC
8836 if (/* PR 21343 *//* PR 18879 */
8837 sec->sh_size < 4
8838 || word_offset > (sec->sh_size - 4)
1a915552 8839 || ((bfd_signed_vma) word_offset) < 0)
015dc7e1 8840 return false;
e0a31db1 8841
a734115a 8842 /* Get the word at the required offset. */
0b6ae522
DJ
8843 word = byte_get (arm_sec->data + word_offset, 4);
8844
0eff7165
NC
8845 /* PR 17531: file: id:000001,src:001266+003044,op:splice,rep:128. */
8846 if (arm_sec->rela == NULL)
8847 {
8848 * wordp = word;
015dc7e1 8849 return true;
0eff7165
NC
8850 }
8851
a734115a 8852 /* Look through the relocs to find the one that applies to the provided offset. */
015dc7e1 8853 wrapped = false;
0b6ae522
DJ
8854 for (rp = arm_sec->next_rela; rp != arm_sec->rela + arm_sec->nrelas; rp++)
8855 {
8856 bfd_vma prelval, offset;
8857
8858 if (rp->r_offset > word_offset && !wrapped)
8859 {
8860 rp = arm_sec->rela;
015dc7e1 8861 wrapped = true;
0b6ae522
DJ
8862 }
8863 if (rp->r_offset > word_offset)
8864 break;
8865
8866 if (rp->r_offset & 3)
8867 {
8868 warn (_("Skipping unexpected relocation at offset 0x%lx\n"),
8869 (unsigned long) rp->r_offset);
8870 continue;
8871 }
8872
8873 if (rp->r_offset < word_offset)
8874 continue;
8875
74e1a04b
NC
8876 /* PR 17531: file: 027-161405-0.004 */
8877 if (aux->symtab == NULL)
8878 continue;
8879
0b6ae522
DJ
8880 if (arm_sec->rel_type == SHT_REL)
8881 {
8882 offset = word & 0x7fffffff;
8883 if (offset & 0x40000000)
8884 offset |= ~ (bfd_vma) 0x7fffffff;
8885 }
a734115a 8886 else if (arm_sec->rel_type == SHT_RELA)
0b6ae522 8887 offset = rp->r_addend;
a734115a 8888 else
74e1a04b
NC
8889 {
8890 error (_("Unknown section relocation type %d encountered\n"),
8891 arm_sec->rel_type);
8892 break;
8893 }
0b6ae522 8894
071436c6
NC
8895 /* PR 17531 file: 027-1241568-0.004. */
8896 if (ELF32_R_SYM (rp->r_info) >= aux->nsyms)
8897 {
8898 error (_("Bad symbol index in unwind relocation (%lu > %lu)\n"),
8899 (unsigned long) ELF32_R_SYM (rp->r_info), aux->nsyms);
8900 break;
8901 }
8902
8903 sym = aux->symtab + ELF32_R_SYM (rp->r_info);
0b6ae522
DJ
8904 offset += sym->st_value;
8905 prelval = offset - (arm_sec->sec->sh_addr + rp->r_offset);
8906
a734115a 8907 /* Check that we are processing the expected reloc type. */
dda8d76d 8908 if (filedata->file_header.e_machine == EM_ARM)
a734115a
NC
8909 {
8910 relname = elf_arm_reloc_type (ELF32_R_TYPE (rp->r_info));
071436c6
NC
8911 if (relname == NULL)
8912 {
8913 warn (_("Skipping unknown ARM relocation type: %d\n"),
8914 (int) ELF32_R_TYPE (rp->r_info));
8915 continue;
8916 }
a734115a
NC
8917
8918 if (streq (relname, "R_ARM_NONE"))
8919 continue;
0b4362b0 8920
a734115a
NC
8921 if (! streq (relname, "R_ARM_PREL31"))
8922 {
071436c6 8923 warn (_("Skipping unexpected ARM relocation type %s\n"), relname);
a734115a
NC
8924 continue;
8925 }
8926 }
dda8d76d 8927 else if (filedata->file_header.e_machine == EM_TI_C6000)
a734115a
NC
8928 {
8929 relname = elf_tic6x_reloc_type (ELF32_R_TYPE (rp->r_info));
071436c6
NC
8930 if (relname == NULL)
8931 {
8932 warn (_("Skipping unknown C6000 relocation type: %d\n"),
8933 (int) ELF32_R_TYPE (rp->r_info));
8934 continue;
8935 }
0b4362b0 8936
a734115a
NC
8937 if (streq (relname, "R_C6000_NONE"))
8938 continue;
8939
8940 if (! streq (relname, "R_C6000_PREL31"))
8941 {
071436c6 8942 warn (_("Skipping unexpected C6000 relocation type %s\n"), relname);
a734115a
NC
8943 continue;
8944 }
8945
8946 prelval >>= 1;
8947 }
8948 else
74e1a04b
NC
8949 {
8950 /* This function currently only supports ARM and TI unwinders. */
8951 warn (_("Only TI and ARM unwinders are currently supported\n"));
8952 break;
8953 }
fa197c1c 8954
0b6ae522
DJ
8955 word = (word & ~ (bfd_vma) 0x7fffffff) | (prelval & 0x7fffffff);
8956 addr->section = sym->st_shndx;
8957 addr->offset = offset;
74e1a04b 8958
1b31d05e
NC
8959 if (sym_name)
8960 * sym_name = sym->st_name;
0b6ae522
DJ
8961 break;
8962 }
8963
8964 *wordp = word;
8965 arm_sec->next_rela = rp;
8966
015dc7e1 8967 return true;
0b6ae522
DJ
8968}
8969
a734115a
NC
8970static const char *tic6x_unwind_regnames[16] =
8971{
0b4362b0
RM
8972 "A15", "B15", "B14", "B13", "B12", "B11", "B10", "B3",
8973 "A14", "A13", "A12", "A11", "A10",
a734115a
NC
8974 "[invalid reg 13]", "[invalid reg 14]", "[invalid reg 15]"
8975};
fa197c1c 8976
0b6ae522 8977static void
fa197c1c 8978decode_tic6x_unwind_regmask (unsigned int mask)
0b6ae522 8979{
fa197c1c
PB
8980 int i;
8981
8982 for (i = 12; mask; mask >>= 1, i--)
8983 {
8984 if (mask & 1)
8985 {
8986 fputs (tic6x_unwind_regnames[i], stdout);
8987 if (mask > 1)
8988 fputs (", ", stdout);
8989 }
8990 }
8991}
0b6ae522
DJ
8992
8993#define ADVANCE \
8994 if (remaining == 0 && more_words) \
8995 { \
8996 data_offset += 4; \
dda8d76d 8997 if (! get_unwind_section_word (filedata, aux, data_arm_sec, data_sec, \
1b31d05e 8998 data_offset, & word, & addr, NULL)) \
015dc7e1 8999 return false; \
0b6ae522
DJ
9000 remaining = 4; \
9001 more_words--; \
9002 } \
9003
9004#define GET_OP(OP) \
9005 ADVANCE; \
9006 if (remaining) \
9007 { \
9008 remaining--; \
9009 (OP) = word >> 24; \
9010 word <<= 8; \
9011 } \
9012 else \
9013 { \
2b692964 9014 printf (_("[Truncated opcode]\n")); \
015dc7e1 9015 return false; \
0b6ae522 9016 } \
cc5914eb 9017 printf ("0x%02x ", OP)
0b6ae522 9018
015dc7e1 9019static bool
dda8d76d
NC
9020decode_arm_unwind_bytecode (Filedata * filedata,
9021 struct arm_unw_aux_info * aux,
948f632f
DA
9022 unsigned int word,
9023 unsigned int remaining,
9024 unsigned int more_words,
9025 bfd_vma data_offset,
9026 Elf_Internal_Shdr * data_sec,
9027 struct arm_section * data_arm_sec)
fa197c1c
PB
9028{
9029 struct absaddr addr;
015dc7e1 9030 bool res = true;
0b6ae522
DJ
9031
9032 /* Decode the unwinding instructions. */
9033 while (1)
9034 {
9035 unsigned int op, op2;
9036
9037 ADVANCE;
9038 if (remaining == 0)
9039 break;
9040 remaining--;
9041 op = word >> 24;
9042 word <<= 8;
9043
cc5914eb 9044 printf (" 0x%02x ", op);
0b6ae522
DJ
9045
9046 if ((op & 0xc0) == 0x00)
9047 {
9048 int offset = ((op & 0x3f) << 2) + 4;
61865e30 9049
cc5914eb 9050 printf (" vsp = vsp + %d", offset);
0b6ae522
DJ
9051 }
9052 else if ((op & 0xc0) == 0x40)
9053 {
9054 int offset = ((op & 0x3f) << 2) + 4;
61865e30 9055
cc5914eb 9056 printf (" vsp = vsp - %d", offset);
0b6ae522
DJ
9057 }
9058 else if ((op & 0xf0) == 0x80)
9059 {
9060 GET_OP (op2);
9061 if (op == 0x80 && op2 == 0)
9062 printf (_("Refuse to unwind"));
9063 else
9064 {
9065 unsigned int mask = ((op & 0x0f) << 8) | op2;
015dc7e1 9066 bool first = true;
0b6ae522 9067 int i;
2b692964 9068
0b6ae522
DJ
9069 printf ("pop {");
9070 for (i = 0; i < 12; i++)
9071 if (mask & (1 << i))
9072 {
9073 if (first)
015dc7e1 9074 first = false;
0b6ae522
DJ
9075 else
9076 printf (", ");
9077 printf ("r%d", 4 + i);
9078 }
9079 printf ("}");
9080 }
9081 }
9082 else if ((op & 0xf0) == 0x90)
9083 {
9084 if (op == 0x9d || op == 0x9f)
9085 printf (_(" [Reserved]"));
9086 else
cc5914eb 9087 printf (" vsp = r%d", op & 0x0f);
0b6ae522
DJ
9088 }
9089 else if ((op & 0xf0) == 0xa0)
9090 {
9091 int end = 4 + (op & 0x07);
015dc7e1 9092 bool first = true;
0b6ae522 9093 int i;
61865e30 9094
0b6ae522
DJ
9095 printf (" pop {");
9096 for (i = 4; i <= end; i++)
9097 {
9098 if (first)
015dc7e1 9099 first = false;
0b6ae522
DJ
9100 else
9101 printf (", ");
9102 printf ("r%d", i);
9103 }
9104 if (op & 0x08)
9105 {
1b31d05e 9106 if (!first)
0b6ae522
DJ
9107 printf (", ");
9108 printf ("r14");
9109 }
9110 printf ("}");
9111 }
9112 else if (op == 0xb0)
9113 printf (_(" finish"));
9114 else if (op == 0xb1)
9115 {
9116 GET_OP (op2);
9117 if (op2 == 0 || (op2 & 0xf0) != 0)
9118 printf (_("[Spare]"));
9119 else
9120 {
9121 unsigned int mask = op2 & 0x0f;
015dc7e1 9122 bool first = true;
0b6ae522 9123 int i;
61865e30 9124
0b6ae522
DJ
9125 printf ("pop {");
9126 for (i = 0; i < 12; i++)
9127 if (mask & (1 << i))
9128 {
9129 if (first)
015dc7e1 9130 first = false;
0b6ae522
DJ
9131 else
9132 printf (", ");
9133 printf ("r%d", i);
9134 }
9135 printf ("}");
9136 }
9137 }
9138 else if (op == 0xb2)
9139 {
b115cf96 9140 unsigned char buf[9];
0b6ae522
DJ
9141 unsigned int i, len;
9142 unsigned long offset;
61865e30 9143
b115cf96 9144 for (i = 0; i < sizeof (buf); i++)
0b6ae522
DJ
9145 {
9146 GET_OP (buf[i]);
9147 if ((buf[i] & 0x80) == 0)
9148 break;
9149 }
4082ef84 9150 if (i == sizeof (buf))
32ec8896 9151 {
27a45f42 9152 error (_("corrupt change to vsp\n"));
015dc7e1 9153 res = false;
32ec8896 9154 }
4082ef84
NC
9155 else
9156 {
015dc7e1 9157 offset = read_leb128 (buf, buf + i + 1, false, &len, NULL);
4082ef84
NC
9158 assert (len == i + 1);
9159 offset = offset * 4 + 0x204;
9160 printf ("vsp = vsp + %ld", offset);
9161 }
0b6ae522 9162 }
61865e30 9163 else if (op == 0xb3 || op == 0xc8 || op == 0xc9)
0b6ae522 9164 {
61865e30
NC
9165 unsigned int first, last;
9166
9167 GET_OP (op2);
9168 first = op2 >> 4;
9169 last = op2 & 0x0f;
9170 if (op == 0xc8)
9171 first = first + 16;
9172 printf ("pop {D%d", first);
9173 if (last)
9174 printf ("-D%d", first + last);
9175 printf ("}");
9176 }
9177 else if ((op & 0xf8) == 0xb8 || (op & 0xf8) == 0xd0)
9178 {
9179 unsigned int count = op & 0x07;
9180
9181 printf ("pop {D8");
9182 if (count)
9183 printf ("-D%d", 8 + count);
9184 printf ("}");
9185 }
9186 else if (op >= 0xc0 && op <= 0xc5)
9187 {
9188 unsigned int count = op & 0x07;
9189
9190 printf (" pop {wR10");
9191 if (count)
9192 printf ("-wR%d", 10 + count);
9193 printf ("}");
9194 }
9195 else if (op == 0xc6)
9196 {
9197 unsigned int first, last;
9198
9199 GET_OP (op2);
9200 first = op2 >> 4;
9201 last = op2 & 0x0f;
9202 printf ("pop {wR%d", first);
9203 if (last)
9204 printf ("-wR%d", first + last);
9205 printf ("}");
9206 }
9207 else if (op == 0xc7)
9208 {
9209 GET_OP (op2);
9210 if (op2 == 0 || (op2 & 0xf0) != 0)
9211 printf (_("[Spare]"));
0b6ae522
DJ
9212 else
9213 {
61865e30 9214 unsigned int mask = op2 & 0x0f;
015dc7e1 9215 bool first = true;
61865e30
NC
9216 int i;
9217
9218 printf ("pop {");
9219 for (i = 0; i < 4; i++)
9220 if (mask & (1 << i))
9221 {
9222 if (first)
015dc7e1 9223 first = false;
61865e30
NC
9224 else
9225 printf (", ");
9226 printf ("wCGR%d", i);
9227 }
9228 printf ("}");
0b6ae522
DJ
9229 }
9230 }
61865e30 9231 else
32ec8896
NC
9232 {
9233 printf (_(" [unsupported opcode]"));
015dc7e1 9234 res = false;
32ec8896
NC
9235 }
9236
0b6ae522
DJ
9237 printf ("\n");
9238 }
32ec8896
NC
9239
9240 return res;
fa197c1c
PB
9241}
9242
015dc7e1 9243static bool
dda8d76d
NC
9244decode_tic6x_unwind_bytecode (Filedata * filedata,
9245 struct arm_unw_aux_info * aux,
948f632f
DA
9246 unsigned int word,
9247 unsigned int remaining,
9248 unsigned int more_words,
9249 bfd_vma data_offset,
9250 Elf_Internal_Shdr * data_sec,
9251 struct arm_section * data_arm_sec)
fa197c1c
PB
9252{
9253 struct absaddr addr;
9254
9255 /* Decode the unwinding instructions. */
9256 while (1)
9257 {
9258 unsigned int op, op2;
9259
9260 ADVANCE;
9261 if (remaining == 0)
9262 break;
9263 remaining--;
9264 op = word >> 24;
9265 word <<= 8;
9266
9cf03b7e 9267 printf (" 0x%02x ", op);
fa197c1c
PB
9268
9269 if ((op & 0xc0) == 0x00)
9270 {
9271 int offset = ((op & 0x3f) << 3) + 8;
9cf03b7e 9272 printf (" sp = sp + %d", offset);
fa197c1c
PB
9273 }
9274 else if ((op & 0xc0) == 0x80)
9275 {
9276 GET_OP (op2);
9277 if (op == 0x80 && op2 == 0)
9278 printf (_("Refuse to unwind"));
9279 else
9280 {
9281 unsigned int mask = ((op & 0x1f) << 8) | op2;
9282 if (op & 0x20)
9283 printf ("pop compact {");
9284 else
9285 printf ("pop {");
9286
9287 decode_tic6x_unwind_regmask (mask);
9288 printf("}");
9289 }
9290 }
9291 else if ((op & 0xf0) == 0xc0)
9292 {
9293 unsigned int reg;
9294 unsigned int nregs;
9295 unsigned int i;
9296 const char *name;
a734115a
NC
9297 struct
9298 {
32ec8896
NC
9299 unsigned int offset;
9300 unsigned int reg;
fa197c1c
PB
9301 } regpos[16];
9302
9303 /* Scan entire instruction first so that GET_OP output is not
9304 interleaved with disassembly. */
9305 nregs = 0;
9306 for (i = 0; nregs < (op & 0xf); i++)
9307 {
9308 GET_OP (op2);
9309 reg = op2 >> 4;
9310 if (reg != 0xf)
9311 {
9312 regpos[nregs].offset = i * 2;
9313 regpos[nregs].reg = reg;
9314 nregs++;
9315 }
9316
9317 reg = op2 & 0xf;
9318 if (reg != 0xf)
9319 {
9320 regpos[nregs].offset = i * 2 + 1;
9321 regpos[nregs].reg = reg;
9322 nregs++;
9323 }
9324 }
9325
9326 printf (_("pop frame {"));
18344509 9327 if (nregs == 0)
fa197c1c 9328 {
18344509
NC
9329 printf (_("*corrupt* - no registers specified"));
9330 }
9331 else
9332 {
9333 reg = nregs - 1;
9334 for (i = i * 2; i > 0; i--)
fa197c1c 9335 {
18344509
NC
9336 if (regpos[reg].offset == i - 1)
9337 {
9338 name = tic6x_unwind_regnames[regpos[reg].reg];
9339 if (reg > 0)
9340 reg--;
9341 }
9342 else
9343 name = _("[pad]");
fa197c1c 9344
18344509
NC
9345 fputs (name, stdout);
9346 if (i > 1)
9347 printf (", ");
9348 }
fa197c1c
PB
9349 }
9350
9351 printf ("}");
9352 }
9353 else if (op == 0xd0)
9354 printf (" MOV FP, SP");
9355 else if (op == 0xd1)
9356 printf (" __c6xabi_pop_rts");
9357 else if (op == 0xd2)
9358 {
9359 unsigned char buf[9];
9360 unsigned int i, len;
9361 unsigned long offset;
a734115a 9362
fa197c1c
PB
9363 for (i = 0; i < sizeof (buf); i++)
9364 {
9365 GET_OP (buf[i]);
9366 if ((buf[i] & 0x80) == 0)
9367 break;
9368 }
0eff7165
NC
9369 /* PR 17531: file: id:000001,src:001906+004739,op:splice,rep:2. */
9370 if (i == sizeof (buf))
9371 {
0eff7165 9372 warn (_("Corrupt stack pointer adjustment detected\n"));
015dc7e1 9373 return false;
0eff7165 9374 }
948f632f 9375
015dc7e1 9376 offset = read_leb128 (buf, buf + i + 1, false, &len, NULL);
fa197c1c
PB
9377 assert (len == i + 1);
9378 offset = offset * 8 + 0x408;
9379 printf (_("sp = sp + %ld"), offset);
9380 }
9381 else if ((op & 0xf0) == 0xe0)
9382 {
9383 if ((op & 0x0f) == 7)
9384 printf (" RETURN");
9385 else
9386 printf (" MV %s, B3", tic6x_unwind_regnames[op & 0x0f]);
9387 }
9388 else
9389 {
9390 printf (_(" [unsupported opcode]"));
9391 }
9392 putchar ('\n');
9393 }
32ec8896 9394
015dc7e1 9395 return true;
fa197c1c
PB
9396}
9397
9398static bfd_vma
dda8d76d 9399arm_expand_prel31 (Filedata * filedata, bfd_vma word, bfd_vma where)
fa197c1c
PB
9400{
9401 bfd_vma offset;
9402
9403 offset = word & 0x7fffffff;
9404 if (offset & 0x40000000)
9405 offset |= ~ (bfd_vma) 0x7fffffff;
9406
dda8d76d 9407 if (filedata->file_header.e_machine == EM_TI_C6000)
fa197c1c
PB
9408 offset <<= 1;
9409
9410 return offset + where;
9411}
9412
015dc7e1 9413static bool
dda8d76d
NC
9414decode_arm_unwind (Filedata * filedata,
9415 struct arm_unw_aux_info * aux,
1b31d05e
NC
9416 unsigned int word,
9417 unsigned int remaining,
9418 bfd_vma data_offset,
9419 Elf_Internal_Shdr * data_sec,
9420 struct arm_section * data_arm_sec)
fa197c1c
PB
9421{
9422 int per_index;
9423 unsigned int more_words = 0;
37e14bc3 9424 struct absaddr addr;
1b31d05e 9425 bfd_vma sym_name = (bfd_vma) -1;
015dc7e1 9426 bool res = true;
fa197c1c
PB
9427
9428 if (remaining == 0)
9429 {
1b31d05e
NC
9430 /* Fetch the first word.
9431 Note - when decoding an object file the address extracted
9432 here will always be 0. So we also pass in the sym_name
9433 parameter so that we can find the symbol associated with
9434 the personality routine. */
dda8d76d 9435 if (! get_unwind_section_word (filedata, aux, data_arm_sec, data_sec, data_offset,
1b31d05e 9436 & word, & addr, & sym_name))
015dc7e1 9437 return false;
1b31d05e 9438
fa197c1c
PB
9439 remaining = 4;
9440 }
c93dbb25
CZ
9441 else
9442 {
9443 addr.section = SHN_UNDEF;
9444 addr.offset = 0;
9445 }
fa197c1c
PB
9446
9447 if ((word & 0x80000000) == 0)
9448 {
9449 /* Expand prel31 for personality routine. */
9450 bfd_vma fn;
9451 const char *procname;
9452
dda8d76d 9453 fn = arm_expand_prel31 (filedata, word, data_sec->sh_addr + data_offset);
fa197c1c 9454 printf (_(" Personality routine: "));
1b31d05e
NC
9455 if (fn == 0
9456 && addr.section == SHN_UNDEF && addr.offset == 0
9457 && sym_name != (bfd_vma) -1 && sym_name < aux->strtab_size)
9458 {
9459 procname = aux->strtab + sym_name;
9460 print_vma (fn, PREFIX_HEX);
9461 if (procname)
9462 {
9463 fputs (" <", stdout);
9464 fputs (procname, stdout);
9465 fputc ('>', stdout);
9466 }
9467 }
9468 else
dda8d76d 9469 procname = arm_print_vma_and_name (filedata, aux, fn, addr);
fa197c1c
PB
9470 fputc ('\n', stdout);
9471
9472 /* The GCC personality routines use the standard compact
9473 encoding, starting with one byte giving the number of
9474 words. */
9475 if (procname != NULL
24d127aa
ML
9476 && (startswith (procname, "__gcc_personality_v0")
9477 || startswith (procname, "__gxx_personality_v0")
9478 || startswith (procname, "__gcj_personality_v0")
9479 || startswith (procname, "__gnu_objc_personality_v0")))
fa197c1c
PB
9480 {
9481 remaining = 0;
9482 more_words = 1;
9483 ADVANCE;
9484 if (!remaining)
9485 {
9486 printf (_(" [Truncated data]\n"));
015dc7e1 9487 return false;
fa197c1c
PB
9488 }
9489 more_words = word >> 24;
9490 word <<= 8;
9491 remaining--;
9492 per_index = -1;
9493 }
9494 else
015dc7e1 9495 return true;
fa197c1c
PB
9496 }
9497 else
9498 {
1b31d05e 9499 /* ARM EHABI Section 6.3:
0b4362b0 9500
1b31d05e 9501 An exception-handling table entry for the compact model looks like:
0b4362b0 9502
1b31d05e
NC
9503 31 30-28 27-24 23-0
9504 -- ----- ----- ----
9505 1 0 index Data for personalityRoutine[index] */
9506
dda8d76d 9507 if (filedata->file_header.e_machine == EM_ARM
1b31d05e 9508 && (word & 0x70000000))
32ec8896
NC
9509 {
9510 warn (_("Corrupt ARM compact model table entry: %x \n"), word);
015dc7e1 9511 res = false;
32ec8896 9512 }
1b31d05e 9513
fa197c1c 9514 per_index = (word >> 24) & 0x7f;
1b31d05e 9515 printf (_(" Compact model index: %d\n"), per_index);
fa197c1c
PB
9516 if (per_index == 0)
9517 {
9518 more_words = 0;
9519 word <<= 8;
9520 remaining--;
9521 }
9522 else if (per_index < 3)
9523 {
9524 more_words = (word >> 16) & 0xff;
9525 word <<= 16;
9526 remaining -= 2;
9527 }
9528 }
9529
dda8d76d 9530 switch (filedata->file_header.e_machine)
fa197c1c
PB
9531 {
9532 case EM_ARM:
9533 if (per_index < 3)
9534 {
dda8d76d 9535 if (! decode_arm_unwind_bytecode (filedata, aux, word, remaining, more_words,
32ec8896 9536 data_offset, data_sec, data_arm_sec))
015dc7e1 9537 res = false;
fa197c1c
PB
9538 }
9539 else
1b31d05e
NC
9540 {
9541 warn (_("Unknown ARM compact model index encountered\n"));
9542 printf (_(" [reserved]\n"));
015dc7e1 9543 res = false;
1b31d05e 9544 }
fa197c1c
PB
9545 break;
9546
9547 case EM_TI_C6000:
9548 if (per_index < 3)
9549 {
dda8d76d 9550 if (! decode_tic6x_unwind_bytecode (filedata, aux, word, remaining, more_words,
32ec8896 9551 data_offset, data_sec, data_arm_sec))
015dc7e1 9552 res = false;
fa197c1c
PB
9553 }
9554 else if (per_index < 5)
9555 {
9556 if (((word >> 17) & 0x7f) == 0x7f)
9557 printf (_(" Restore stack from frame pointer\n"));
9558 else
9559 printf (_(" Stack increment %d\n"), (word >> 14) & 0x1fc);
9560 printf (_(" Registers restored: "));
9561 if (per_index == 4)
9562 printf (" (compact) ");
9563 decode_tic6x_unwind_regmask ((word >> 4) & 0x1fff);
9564 putchar ('\n');
9565 printf (_(" Return register: %s\n"),
9566 tic6x_unwind_regnames[word & 0xf]);
9567 }
9568 else
1b31d05e 9569 printf (_(" [reserved (%d)]\n"), per_index);
fa197c1c
PB
9570 break;
9571
9572 default:
74e1a04b 9573 error (_("Unsupported architecture type %d encountered when decoding unwind table\n"),
dda8d76d 9574 filedata->file_header.e_machine);
015dc7e1 9575 res = false;
fa197c1c 9576 }
0b6ae522
DJ
9577
9578 /* Decode the descriptors. Not implemented. */
32ec8896
NC
9579
9580 return res;
0b6ae522
DJ
9581}
9582
015dc7e1 9583static bool
dda8d76d
NC
9584dump_arm_unwind (Filedata * filedata,
9585 struct arm_unw_aux_info * aux,
9586 Elf_Internal_Shdr * exidx_sec)
0b6ae522
DJ
9587{
9588 struct arm_section exidx_arm_sec, extab_arm_sec;
9589 unsigned int i, exidx_len;
948f632f 9590 unsigned long j, nfuns;
015dc7e1 9591 bool res = true;
0b6ae522
DJ
9592
9593 memset (&exidx_arm_sec, 0, sizeof (exidx_arm_sec));
9594 memset (&extab_arm_sec, 0, sizeof (extab_arm_sec));
9595 exidx_len = exidx_sec->sh_size / 8;
9596
948f632f
DA
9597 aux->funtab = xmalloc (aux->nsyms * sizeof (Elf_Internal_Sym));
9598 for (nfuns = 0, j = 0; j < aux->nsyms; j++)
9599 if (aux->symtab[j].st_value && ELF_ST_TYPE (aux->symtab[j].st_info) == STT_FUNC)
9600 aux->funtab[nfuns++] = aux->symtab[j];
9601 aux->nfuns = nfuns;
9602 qsort (aux->funtab, aux->nfuns, sizeof (Elf_Internal_Sym), symcmp);
9603
0b6ae522
DJ
9604 for (i = 0; i < exidx_len; i++)
9605 {
9606 unsigned int exidx_fn, exidx_entry;
9607 struct absaddr fn_addr, entry_addr;
9608 bfd_vma fn;
9609
9610 fputc ('\n', stdout);
9611
dda8d76d 9612 if (! get_unwind_section_word (filedata, aux, & exidx_arm_sec, exidx_sec,
1b31d05e 9613 8 * i, & exidx_fn, & fn_addr, NULL)
dda8d76d 9614 || ! get_unwind_section_word (filedata, aux, & exidx_arm_sec, exidx_sec,
1b31d05e 9615 8 * i + 4, & exidx_entry, & entry_addr, NULL))
0b6ae522 9616 {
948f632f 9617 free (aux->funtab);
1b31d05e
NC
9618 arm_free_section (& exidx_arm_sec);
9619 arm_free_section (& extab_arm_sec);
015dc7e1 9620 return false;
0b6ae522
DJ
9621 }
9622
83c257ca
NC
9623 /* ARM EHABI, Section 5:
9624 An index table entry consists of 2 words.
9625 The first word contains a prel31 offset to the start of a function, with bit 31 clear. */
9626 if (exidx_fn & 0x80000000)
32ec8896
NC
9627 {
9628 warn (_("corrupt index table entry: %x\n"), exidx_fn);
015dc7e1 9629 res = false;
32ec8896 9630 }
83c257ca 9631
dda8d76d 9632 fn = arm_expand_prel31 (filedata, exidx_fn, exidx_sec->sh_addr + 8 * i);
0b6ae522 9633
dda8d76d 9634 arm_print_vma_and_name (filedata, aux, fn, fn_addr);
0b6ae522
DJ
9635 fputs (": ", stdout);
9636
9637 if (exidx_entry == 1)
9638 {
9639 print_vma (exidx_entry, PREFIX_HEX);
9640 fputs (" [cantunwind]\n", stdout);
9641 }
9642 else if (exidx_entry & 0x80000000)
9643 {
9644 print_vma (exidx_entry, PREFIX_HEX);
9645 fputc ('\n', stdout);
dda8d76d 9646 decode_arm_unwind (filedata, aux, exidx_entry, 4, 0, NULL, NULL);
0b6ae522
DJ
9647 }
9648 else
9649 {
8f73510c 9650 bfd_vma table, table_offset = 0;
0b6ae522
DJ
9651 Elf_Internal_Shdr *table_sec;
9652
9653 fputs ("@", stdout);
dda8d76d 9654 table = arm_expand_prel31 (filedata, exidx_entry, exidx_sec->sh_addr + 8 * i + 4);
0b6ae522
DJ
9655 print_vma (table, PREFIX_HEX);
9656 printf ("\n");
9657
9658 /* Locate the matching .ARM.extab. */
9659 if (entry_addr.section != SHN_UNDEF
dda8d76d 9660 && entry_addr.section < filedata->file_header.e_shnum)
0b6ae522 9661 {
dda8d76d 9662 table_sec = filedata->section_headers + entry_addr.section;
0b6ae522 9663 table_offset = entry_addr.offset;
1a915552
NC
9664 /* PR 18879 */
9665 if (table_offset > table_sec->sh_size
9666 || ((bfd_signed_vma) table_offset) < 0)
9667 {
9668 warn (_("Unwind entry contains corrupt offset (0x%lx) into section %s\n"),
9669 (unsigned long) table_offset,
dda8d76d 9670 printable_section_name (filedata, table_sec));
015dc7e1 9671 res = false;
1a915552
NC
9672 continue;
9673 }
0b6ae522
DJ
9674 }
9675 else
9676 {
dda8d76d 9677 table_sec = find_section_by_address (filedata, table);
0b6ae522
DJ
9678 if (table_sec != NULL)
9679 table_offset = table - table_sec->sh_addr;
9680 }
32ec8896 9681
0b6ae522
DJ
9682 if (table_sec == NULL)
9683 {
9684 warn (_("Could not locate .ARM.extab section containing 0x%lx.\n"),
9685 (unsigned long) table);
015dc7e1 9686 res = false;
0b6ae522
DJ
9687 continue;
9688 }
32ec8896 9689
dda8d76d 9690 if (! decode_arm_unwind (filedata, aux, 0, 0, table_offset, table_sec,
32ec8896 9691 &extab_arm_sec))
015dc7e1 9692 res = false;
0b6ae522
DJ
9693 }
9694 }
9695
9696 printf ("\n");
9697
948f632f 9698 free (aux->funtab);
0b6ae522
DJ
9699 arm_free_section (&exidx_arm_sec);
9700 arm_free_section (&extab_arm_sec);
32ec8896
NC
9701
9702 return res;
0b6ae522
DJ
9703}
9704
fa197c1c 9705/* Used for both ARM and C6X unwinding tables. */
1b31d05e 9706
015dc7e1 9707static bool
dda8d76d 9708arm_process_unwind (Filedata * filedata)
0b6ae522
DJ
9709{
9710 struct arm_unw_aux_info aux;
9711 Elf_Internal_Shdr *unwsec = NULL;
0b6ae522
DJ
9712 Elf_Internal_Shdr *sec;
9713 unsigned long i;
fa197c1c 9714 unsigned int sec_type;
015dc7e1 9715 bool res = true;
0b6ae522 9716
dda8d76d 9717 switch (filedata->file_header.e_machine)
fa197c1c
PB
9718 {
9719 case EM_ARM:
9720 sec_type = SHT_ARM_EXIDX;
9721 break;
9722
9723 case EM_TI_C6000:
9724 sec_type = SHT_C6000_UNWIND;
9725 break;
9726
0b4362b0 9727 default:
74e1a04b 9728 error (_("Unsupported architecture type %d encountered when processing unwind table\n"),
dda8d76d 9729 filedata->file_header.e_machine);
015dc7e1 9730 return false;
fa197c1c
PB
9731 }
9732
dda8d76d 9733 if (filedata->string_table == NULL)
015dc7e1 9734 return false;
1b31d05e
NC
9735
9736 memset (& aux, 0, sizeof (aux));
dda8d76d 9737 aux.filedata = filedata;
0b6ae522 9738
dda8d76d 9739 for (i = 0, sec = filedata->section_headers; i < filedata->file_header.e_shnum; ++i, ++sec)
0b6ae522 9740 {
28d13567 9741 if (sec->sh_type == SHT_SYMTAB)
0b6ae522 9742 {
28d13567 9743 if (aux.symtab)
74e1a04b 9744 {
28d13567
AM
9745 error (_("Multiple symbol tables encountered\n"));
9746 free (aux.symtab);
9747 aux.symtab = NULL;
74e1a04b 9748 free (aux.strtab);
28d13567 9749 aux.strtab = NULL;
74e1a04b 9750 }
28d13567
AM
9751 if (!get_symtab (filedata, sec, &aux.symtab, &aux.nsyms,
9752 &aux.strtab, &aux.strtab_size))
015dc7e1 9753 return false;
0b6ae522 9754 }
fa197c1c 9755 else if (sec->sh_type == sec_type)
0b6ae522
DJ
9756 unwsec = sec;
9757 }
9758
1b31d05e 9759 if (unwsec == NULL)
0b6ae522 9760 printf (_("\nThere are no unwind sections in this file.\n"));
1b31d05e 9761 else
dda8d76d 9762 for (i = 0, sec = filedata->section_headers; i < filedata->file_header.e_shnum; ++i, ++sec)
1b31d05e
NC
9763 {
9764 if (sec->sh_type == sec_type)
9765 {
d3a49aa8
AM
9766 unsigned long num_unwind = sec->sh_size / (2 * eh_addr_size);
9767 printf (ngettext ("\nUnwind section '%s' at offset 0x%lx "
9768 "contains %lu entry:\n",
9769 "\nUnwind section '%s' at offset 0x%lx "
9770 "contains %lu entries:\n",
9771 num_unwind),
dda8d76d 9772 printable_section_name (filedata, sec),
1b31d05e 9773 (unsigned long) sec->sh_offset,
d3a49aa8 9774 num_unwind);
0b6ae522 9775
dda8d76d 9776 if (! dump_arm_unwind (filedata, &aux, sec))
015dc7e1 9777 res = false;
1b31d05e
NC
9778 }
9779 }
0b6ae522 9780
9db70fc3
AM
9781 free (aux.symtab);
9782 free ((char *) aux.strtab);
32ec8896
NC
9783
9784 return res;
0b6ae522
DJ
9785}
9786
015dc7e1 9787static bool
dda8d76d 9788process_unwind (Filedata * filedata)
57346661 9789{
2cf0635d
NC
9790 struct unwind_handler
9791 {
32ec8896 9792 unsigned int machtype;
015dc7e1 9793 bool (* handler)(Filedata *);
2cf0635d
NC
9794 } handlers[] =
9795 {
0b6ae522 9796 { EM_ARM, arm_process_unwind },
57346661
AM
9797 { EM_IA_64, ia64_process_unwind },
9798 { EM_PARISC, hppa_process_unwind },
fa197c1c 9799 { EM_TI_C6000, arm_process_unwind },
32ec8896 9800 { 0, NULL }
57346661
AM
9801 };
9802 int i;
9803
9804 if (!do_unwind)
015dc7e1 9805 return true;
57346661
AM
9806
9807 for (i = 0; handlers[i].handler != NULL; i++)
dda8d76d
NC
9808 if (filedata->file_header.e_machine == handlers[i].machtype)
9809 return handlers[i].handler (filedata);
57346661 9810
1b31d05e 9811 printf (_("\nThe decoding of unwind sections for machine type %s is not currently supported.\n"),
dda8d76d 9812 get_machine_name (filedata->file_header.e_machine));
015dc7e1 9813 return true;
57346661
AM
9814}
9815
37c18eed
SD
9816static void
9817dynamic_section_aarch64_val (Elf_Internal_Dyn * entry)
9818{
9819 switch (entry->d_tag)
9820 {
9821 case DT_AARCH64_BTI_PLT:
1dbade74 9822 case DT_AARCH64_PAC_PLT:
37c18eed
SD
9823 break;
9824 default:
9825 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
9826 break;
9827 }
9828 putchar ('\n');
9829}
9830
252b5132 9831static void
978c4450 9832dynamic_section_mips_val (Filedata * filedata, Elf_Internal_Dyn * entry)
252b5132
RH
9833{
9834 switch (entry->d_tag)
9835 {
9836 case DT_MIPS_FLAGS:
9837 if (entry->d_un.d_val == 0)
4b68bca3 9838 printf (_("NONE"));
252b5132
RH
9839 else
9840 {
9841 static const char * opts[] =
9842 {
9843 "QUICKSTART", "NOTPOT", "NO_LIBRARY_REPLACEMENT",
9844 "NO_MOVE", "SGI_ONLY", "GUARANTEE_INIT", "DELTA_C_PLUS_PLUS",
9845 "GUARANTEE_START_INIT", "PIXIE", "DEFAULT_DELAY_LOAD",
9846 "REQUICKSTART", "REQUICKSTARTED", "CORD", "NO_UNRES_UNDEF",
9847 "RLD_ORDER_SAFE"
9848 };
9849 unsigned int cnt;
015dc7e1 9850 bool first = true;
2b692964 9851
60bca95a 9852 for (cnt = 0; cnt < ARRAY_SIZE (opts); ++cnt)
252b5132
RH
9853 if (entry->d_un.d_val & (1 << cnt))
9854 {
9855 printf ("%s%s", first ? "" : " ", opts[cnt]);
015dc7e1 9856 first = false;
252b5132 9857 }
252b5132
RH
9858 }
9859 break;
103f02d3 9860
252b5132 9861 case DT_MIPS_IVERSION:
978c4450
AM
9862 if (VALID_DYNAMIC_NAME (filedata, entry->d_un.d_val))
9863 printf (_("Interface Version: %s"),
9864 GET_DYNAMIC_NAME (filedata, entry->d_un.d_val));
252b5132 9865 else
76ca31c0
NC
9866 {
9867 char buf[40];
9868 sprintf_vma (buf, entry->d_un.d_ptr);
9869 /* Note: coded this way so that there is a single string for translation. */
9870 printf (_("<corrupt: %s>"), buf);
9871 }
252b5132 9872 break;
103f02d3 9873
252b5132
RH
9874 case DT_MIPS_TIME_STAMP:
9875 {
d5b07ef4 9876 char timebuf[128];
2cf0635d 9877 struct tm * tmp;
91d6fa6a 9878 time_t atime = entry->d_un.d_val;
82b1b41b 9879
91d6fa6a 9880 tmp = gmtime (&atime);
82b1b41b
NC
9881 /* PR 17531: file: 6accc532. */
9882 if (tmp == NULL)
9883 snprintf (timebuf, sizeof (timebuf), _("<corrupt>"));
9884 else
9885 snprintf (timebuf, sizeof (timebuf), "%04u-%02u-%02uT%02u:%02u:%02u",
9886 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
9887 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
4b68bca3 9888 printf (_("Time Stamp: %s"), timebuf);
252b5132
RH
9889 }
9890 break;
103f02d3 9891
252b5132
RH
9892 case DT_MIPS_RLD_VERSION:
9893 case DT_MIPS_LOCAL_GOTNO:
9894 case DT_MIPS_CONFLICTNO:
9895 case DT_MIPS_LIBLISTNO:
9896 case DT_MIPS_SYMTABNO:
9897 case DT_MIPS_UNREFEXTNO:
9898 case DT_MIPS_HIPAGENO:
9899 case DT_MIPS_DELTA_CLASS_NO:
9900 case DT_MIPS_DELTA_INSTANCE_NO:
9901 case DT_MIPS_DELTA_RELOC_NO:
9902 case DT_MIPS_DELTA_SYM_NO:
9903 case DT_MIPS_DELTA_CLASSSYM_NO:
9904 case DT_MIPS_COMPACT_SIZE:
c69075ac 9905 print_vma (entry->d_un.d_val, DEC);
252b5132 9906 break;
103f02d3 9907
f16a9783 9908 case DT_MIPS_XHASH:
978c4450
AM
9909 filedata->dynamic_info_DT_MIPS_XHASH = entry->d_un.d_val;
9910 filedata->dynamic_info_DT_GNU_HASH = entry->d_un.d_val;
f16a9783
MS
9911 /* Falls through. */
9912
103f02d3 9913 default:
4b68bca3 9914 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
103f02d3 9915 }
4b68bca3 9916 putchar ('\n');
103f02d3
UD
9917}
9918
103f02d3 9919static void
2cf0635d 9920dynamic_section_parisc_val (Elf_Internal_Dyn * entry)
103f02d3
UD
9921{
9922 switch (entry->d_tag)
9923 {
9924 case DT_HP_DLD_FLAGS:
9925 {
9926 static struct
9927 {
9928 long int bit;
2cf0635d 9929 const char * str;
5e220199
NC
9930 }
9931 flags[] =
9932 {
9933 { DT_HP_DEBUG_PRIVATE, "HP_DEBUG_PRIVATE" },
9934 { DT_HP_DEBUG_CALLBACK, "HP_DEBUG_CALLBACK" },
9935 { DT_HP_DEBUG_CALLBACK_BOR, "HP_DEBUG_CALLBACK_BOR" },
9936 { DT_HP_NO_ENVVAR, "HP_NO_ENVVAR" },
9937 { DT_HP_BIND_NOW, "HP_BIND_NOW" },
9938 { DT_HP_BIND_NONFATAL, "HP_BIND_NONFATAL" },
9939 { DT_HP_BIND_VERBOSE, "HP_BIND_VERBOSE" },
9940 { DT_HP_BIND_RESTRICTED, "HP_BIND_RESTRICTED" },
9941 { DT_HP_BIND_SYMBOLIC, "HP_BIND_SYMBOLIC" },
9942 { DT_HP_RPATH_FIRST, "HP_RPATH_FIRST" },
eec8f817
DA
9943 { DT_HP_BIND_DEPTH_FIRST, "HP_BIND_DEPTH_FIRST" },
9944 { DT_HP_GST, "HP_GST" },
9945 { DT_HP_SHLIB_FIXED, "HP_SHLIB_FIXED" },
9946 { DT_HP_MERGE_SHLIB_SEG, "HP_MERGE_SHLIB_SEG" },
9947 { DT_HP_NODELETE, "HP_NODELETE" },
9948 { DT_HP_GROUP, "HP_GROUP" },
9949 { DT_HP_PROTECT_LINKAGE_TABLE, "HP_PROTECT_LINKAGE_TABLE" }
5e220199 9950 };
015dc7e1 9951 bool first = true;
5e220199 9952 size_t cnt;
f7a99963 9953 bfd_vma val = entry->d_un.d_val;
103f02d3 9954
60bca95a 9955 for (cnt = 0; cnt < ARRAY_SIZE (flags); ++cnt)
103f02d3 9956 if (val & flags[cnt].bit)
30800947
NC
9957 {
9958 if (! first)
9959 putchar (' ');
9960 fputs (flags[cnt].str, stdout);
015dc7e1 9961 first = false;
30800947
NC
9962 val ^= flags[cnt].bit;
9963 }
76da6bbe 9964
103f02d3 9965 if (val != 0 || first)
f7a99963
NC
9966 {
9967 if (! first)
9968 putchar (' ');
9969 print_vma (val, HEX);
9970 }
103f02d3
UD
9971 }
9972 break;
76da6bbe 9973
252b5132 9974 default:
f7a99963
NC
9975 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
9976 break;
252b5132 9977 }
35b1837e 9978 putchar ('\n');
252b5132
RH
9979}
9980
28f997cf
TG
9981#ifdef BFD64
9982
9983/* VMS vs Unix time offset and factor. */
9984
9985#define VMS_EPOCH_OFFSET 35067168000000000LL
9986#define VMS_GRANULARITY_FACTOR 10000000
dccc31de
AM
9987#ifndef INT64_MIN
9988#define INT64_MIN (-9223372036854775807LL - 1)
9989#endif
28f997cf
TG
9990
9991/* Display a VMS time in a human readable format. */
9992
9993static void
9994print_vms_time (bfd_int64_t vmstime)
9995{
dccc31de 9996 struct tm *tm = NULL;
28f997cf
TG
9997 time_t unxtime;
9998
dccc31de
AM
9999 if (vmstime >= INT64_MIN + VMS_EPOCH_OFFSET)
10000 {
10001 vmstime = (vmstime - VMS_EPOCH_OFFSET) / VMS_GRANULARITY_FACTOR;
10002 unxtime = vmstime;
10003 if (unxtime == vmstime)
10004 tm = gmtime (&unxtime);
10005 }
10006 if (tm != NULL)
10007 printf ("%04u-%02u-%02uT%02u:%02u:%02u",
10008 tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
10009 tm->tm_hour, tm->tm_min, tm->tm_sec);
28f997cf
TG
10010}
10011#endif /* BFD64 */
10012
ecc51f48 10013static void
2cf0635d 10014dynamic_section_ia64_val (Elf_Internal_Dyn * entry)
ecc51f48
NC
10015{
10016 switch (entry->d_tag)
10017 {
0de14b54 10018 case DT_IA_64_PLT_RESERVE:
bdf4d63a 10019 /* First 3 slots reserved. */
ecc51f48
NC
10020 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
10021 printf (" -- ");
10022 print_vma (entry->d_un.d_ptr + (3 * 8), PREFIX_HEX);
bdf4d63a
JJ
10023 break;
10024
28f997cf
TG
10025 case DT_IA_64_VMS_LINKTIME:
10026#ifdef BFD64
10027 print_vms_time (entry->d_un.d_val);
10028#endif
10029 break;
10030
10031 case DT_IA_64_VMS_LNKFLAGS:
10032 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
10033 if (entry->d_un.d_val & VMS_LF_CALL_DEBUG)
10034 printf (" CALL_DEBUG");
10035 if (entry->d_un.d_val & VMS_LF_NOP0BUFS)
10036 printf (" NOP0BUFS");
10037 if (entry->d_un.d_val & VMS_LF_P0IMAGE)
10038 printf (" P0IMAGE");
10039 if (entry->d_un.d_val & VMS_LF_MKTHREADS)
10040 printf (" MKTHREADS");
10041 if (entry->d_un.d_val & VMS_LF_UPCALLS)
10042 printf (" UPCALLS");
10043 if (entry->d_un.d_val & VMS_LF_IMGSTA)
10044 printf (" IMGSTA");
10045 if (entry->d_un.d_val & VMS_LF_INITIALIZE)
10046 printf (" INITIALIZE");
10047 if (entry->d_un.d_val & VMS_LF_MAIN)
10048 printf (" MAIN");
10049 if (entry->d_un.d_val & VMS_LF_EXE_INIT)
10050 printf (" EXE_INIT");
10051 if (entry->d_un.d_val & VMS_LF_TBK_IN_IMG)
10052 printf (" TBK_IN_IMG");
10053 if (entry->d_un.d_val & VMS_LF_DBG_IN_IMG)
10054 printf (" DBG_IN_IMG");
10055 if (entry->d_un.d_val & VMS_LF_TBK_IN_DSF)
10056 printf (" TBK_IN_DSF");
10057 if (entry->d_un.d_val & VMS_LF_DBG_IN_DSF)
10058 printf (" DBG_IN_DSF");
10059 if (entry->d_un.d_val & VMS_LF_SIGNATURES)
10060 printf (" SIGNATURES");
10061 if (entry->d_un.d_val & VMS_LF_REL_SEG_OFF)
10062 printf (" REL_SEG_OFF");
10063 break;
10064
bdf4d63a
JJ
10065 default:
10066 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
10067 break;
ecc51f48 10068 }
bdf4d63a 10069 putchar ('\n');
ecc51f48
NC
10070}
10071
015dc7e1 10072static bool
dda8d76d 10073get_32bit_dynamic_section (Filedata * filedata)
252b5132 10074{
2cf0635d
NC
10075 Elf32_External_Dyn * edyn;
10076 Elf32_External_Dyn * ext;
10077 Elf_Internal_Dyn * entry;
103f02d3 10078
978c4450
AM
10079 edyn = (Elf32_External_Dyn *) get_data (NULL, filedata,
10080 filedata->dynamic_addr, 1,
10081 filedata->dynamic_size,
10082 _("dynamic section"));
a6e9f9df 10083 if (!edyn)
015dc7e1 10084 return false;
103f02d3 10085
071436c6
NC
10086 /* SGI's ELF has more than one section in the DYNAMIC segment, and we
10087 might not have the luxury of section headers. Look for the DT_NULL
10088 terminator to determine the number of entries. */
978c4450
AM
10089 for (ext = edyn, filedata->dynamic_nent = 0;
10090 (char *) (ext + 1) <= (char *) edyn + filedata->dynamic_size;
ba2685cc
AM
10091 ext++)
10092 {
978c4450 10093 filedata->dynamic_nent++;
ba2685cc
AM
10094 if (BYTE_GET (ext->d_tag) == DT_NULL)
10095 break;
10096 }
252b5132 10097
978c4450
AM
10098 filedata->dynamic_section
10099 = (Elf_Internal_Dyn *) cmalloc (filedata->dynamic_nent, sizeof (* entry));
10100 if (filedata->dynamic_section == NULL)
252b5132 10101 {
8b73c356 10102 error (_("Out of memory allocating space for %lu dynamic entries\n"),
978c4450 10103 (unsigned long) filedata->dynamic_nent);
9ea033b2 10104 free (edyn);
015dc7e1 10105 return false;
9ea033b2 10106 }
252b5132 10107
978c4450
AM
10108 for (ext = edyn, entry = filedata->dynamic_section;
10109 entry < filedata->dynamic_section + filedata->dynamic_nent;
fb514b26 10110 ext++, entry++)
9ea033b2 10111 {
fb514b26
AM
10112 entry->d_tag = BYTE_GET (ext->d_tag);
10113 entry->d_un.d_val = BYTE_GET (ext->d_un.d_val);
252b5132
RH
10114 }
10115
9ea033b2
NC
10116 free (edyn);
10117
015dc7e1 10118 return true;
9ea033b2
NC
10119}
10120
015dc7e1 10121static bool
dda8d76d 10122get_64bit_dynamic_section (Filedata * filedata)
9ea033b2 10123{
2cf0635d
NC
10124 Elf64_External_Dyn * edyn;
10125 Elf64_External_Dyn * ext;
10126 Elf_Internal_Dyn * entry;
103f02d3 10127
071436c6 10128 /* Read in the data. */
978c4450
AM
10129 edyn = (Elf64_External_Dyn *) get_data (NULL, filedata,
10130 filedata->dynamic_addr, 1,
10131 filedata->dynamic_size,
10132 _("dynamic section"));
a6e9f9df 10133 if (!edyn)
015dc7e1 10134 return false;
103f02d3 10135
071436c6
NC
10136 /* SGI's ELF has more than one section in the DYNAMIC segment, and we
10137 might not have the luxury of section headers. Look for the DT_NULL
10138 terminator to determine the number of entries. */
978c4450 10139 for (ext = edyn, filedata->dynamic_nent = 0;
53c3012c 10140 /* PR 17533 file: 033-67080-0.004 - do not read past end of buffer. */
978c4450 10141 (char *) (ext + 1) <= (char *) edyn + filedata->dynamic_size;
ba2685cc
AM
10142 ext++)
10143 {
978c4450 10144 filedata->dynamic_nent++;
66543521 10145 if (BYTE_GET (ext->d_tag) == DT_NULL)
ba2685cc
AM
10146 break;
10147 }
252b5132 10148
978c4450
AM
10149 filedata->dynamic_section
10150 = (Elf_Internal_Dyn *) cmalloc (filedata->dynamic_nent, sizeof (* entry));
10151 if (filedata->dynamic_section == NULL)
252b5132 10152 {
8b73c356 10153 error (_("Out of memory allocating space for %lu dynamic entries\n"),
978c4450 10154 (unsigned long) filedata->dynamic_nent);
252b5132 10155 free (edyn);
015dc7e1 10156 return false;
252b5132
RH
10157 }
10158
071436c6 10159 /* Convert from external to internal formats. */
978c4450
AM
10160 for (ext = edyn, entry = filedata->dynamic_section;
10161 entry < filedata->dynamic_section + filedata->dynamic_nent;
fb514b26 10162 ext++, entry++)
252b5132 10163 {
66543521
AM
10164 entry->d_tag = BYTE_GET (ext->d_tag);
10165 entry->d_un.d_val = BYTE_GET (ext->d_un.d_val);
252b5132
RH
10166 }
10167
10168 free (edyn);
10169
015dc7e1 10170 return true;
9ea033b2
NC
10171}
10172
e9e44622
JJ
10173static void
10174print_dynamic_flags (bfd_vma flags)
d1133906 10175{
015dc7e1 10176 bool first = true;
13ae64f3 10177
d1133906
NC
10178 while (flags)
10179 {
10180 bfd_vma flag;
10181
10182 flag = flags & - flags;
10183 flags &= ~ flag;
10184
e9e44622 10185 if (first)
015dc7e1 10186 first = false;
e9e44622
JJ
10187 else
10188 putc (' ', stdout);
13ae64f3 10189
d1133906
NC
10190 switch (flag)
10191 {
e9e44622
JJ
10192 case DF_ORIGIN: fputs ("ORIGIN", stdout); break;
10193 case DF_SYMBOLIC: fputs ("SYMBOLIC", stdout); break;
10194 case DF_TEXTREL: fputs ("TEXTREL", stdout); break;
10195 case DF_BIND_NOW: fputs ("BIND_NOW", stdout); break;
10196 case DF_STATIC_TLS: fputs ("STATIC_TLS", stdout); break;
2b692964 10197 default: fputs (_("unknown"), stdout); break;
d1133906
NC
10198 }
10199 }
e9e44622 10200 puts ("");
d1133906
NC
10201}
10202
10ca4b04
L
10203static bfd_vma *
10204get_dynamic_data (Filedata * filedata, bfd_size_type number, unsigned int ent_size)
10205{
10206 unsigned char * e_data;
10207 bfd_vma * i_data;
10208
10209 /* If the size_t type is smaller than the bfd_size_type, eg because
10210 you are building a 32-bit tool on a 64-bit host, then make sure
10211 that when (number) is cast to (size_t) no information is lost. */
10212 if (sizeof (size_t) < sizeof (bfd_size_type)
10213 && (bfd_size_type) ((size_t) number) != number)
10214 {
10215 error (_("Size truncation prevents reading %s elements of size %u\n"),
10216 bfd_vmatoa ("u", number), ent_size);
10217 return NULL;
10218 }
10219
10220 /* Be kind to memory checkers (eg valgrind, address sanitizer) by not
10221 attempting to allocate memory when the read is bound to fail. */
10222 if (ent_size * number > filedata->file_size)
10223 {
10224 error (_("Invalid number of dynamic entries: %s\n"),
10225 bfd_vmatoa ("u", number));
10226 return NULL;
10227 }
10228
10229 e_data = (unsigned char *) cmalloc ((size_t) number, ent_size);
10230 if (e_data == NULL)
10231 {
10232 error (_("Out of memory reading %s dynamic entries\n"),
10233 bfd_vmatoa ("u", number));
10234 return NULL;
10235 }
10236
10237 if (fread (e_data, ent_size, (size_t) number, filedata->handle) != number)
10238 {
10239 error (_("Unable to read in %s bytes of dynamic data\n"),
10240 bfd_vmatoa ("u", number * ent_size));
10241 free (e_data);
10242 return NULL;
10243 }
10244
10245 i_data = (bfd_vma *) cmalloc ((size_t) number, sizeof (*i_data));
10246 if (i_data == NULL)
10247 {
10248 error (_("Out of memory allocating space for %s dynamic entries\n"),
10249 bfd_vmatoa ("u", number));
10250 free (e_data);
10251 return NULL;
10252 }
10253
10254 while (number--)
10255 i_data[number] = byte_get (e_data + number * ent_size, ent_size);
10256
10257 free (e_data);
10258
10259 return i_data;
10260}
10261
10262static unsigned long
10263get_num_dynamic_syms (Filedata * filedata)
10264{
10265 unsigned long num_of_syms = 0;
10266
10267 if (!do_histogram && (!do_using_dynamic || do_dyn_syms))
10268 return num_of_syms;
10269
978c4450 10270 if (filedata->dynamic_info[DT_HASH])
10ca4b04
L
10271 {
10272 unsigned char nb[8];
10273 unsigned char nc[8];
10274 unsigned int hash_ent_size = 4;
10275
10276 if ((filedata->file_header.e_machine == EM_ALPHA
10277 || filedata->file_header.e_machine == EM_S390
10278 || filedata->file_header.e_machine == EM_S390_OLD)
10279 && filedata->file_header.e_ident[EI_CLASS] == ELFCLASS64)
10280 hash_ent_size = 8;
10281
10282 if (fseek (filedata->handle,
978c4450
AM
10283 (filedata->archive_file_offset
10284 + offset_from_vma (filedata, filedata->dynamic_info[DT_HASH],
10ca4b04
L
10285 sizeof nb + sizeof nc)),
10286 SEEK_SET))
10287 {
10288 error (_("Unable to seek to start of dynamic information\n"));
10289 goto no_hash;
10290 }
10291
10292 if (fread (nb, hash_ent_size, 1, filedata->handle) != 1)
10293 {
10294 error (_("Failed to read in number of buckets\n"));
10295 goto no_hash;
10296 }
10297
10298 if (fread (nc, hash_ent_size, 1, filedata->handle) != 1)
10299 {
10300 error (_("Failed to read in number of chains\n"));
10301 goto no_hash;
10302 }
10303
978c4450
AM
10304 filedata->nbuckets = byte_get (nb, hash_ent_size);
10305 filedata->nchains = byte_get (nc, hash_ent_size);
10ca4b04 10306
2482f306
AM
10307 if (filedata->nbuckets != 0 && filedata->nchains != 0)
10308 {
10309 filedata->buckets = get_dynamic_data (filedata, filedata->nbuckets,
10310 hash_ent_size);
10311 filedata->chains = get_dynamic_data (filedata, filedata->nchains,
10312 hash_ent_size);
001890e1 10313
2482f306
AM
10314 if (filedata->buckets != NULL && filedata->chains != NULL)
10315 num_of_syms = filedata->nchains;
10316 }
ceb9bf11 10317 no_hash:
10ca4b04
L
10318 if (num_of_syms == 0)
10319 {
9db70fc3
AM
10320 free (filedata->buckets);
10321 filedata->buckets = NULL;
10322 free (filedata->chains);
10323 filedata->chains = NULL;
978c4450 10324 filedata->nbuckets = 0;
10ca4b04
L
10325 }
10326 }
10327
978c4450 10328 if (filedata->dynamic_info_DT_GNU_HASH)
10ca4b04
L
10329 {
10330 unsigned char nb[16];
10331 bfd_vma i, maxchain = 0xffffffff, bitmaskwords;
10332 bfd_vma buckets_vma;
10333 unsigned long hn;
10ca4b04
L
10334
10335 if (fseek (filedata->handle,
978c4450
AM
10336 (filedata->archive_file_offset
10337 + offset_from_vma (filedata,
10338 filedata->dynamic_info_DT_GNU_HASH,
10ca4b04
L
10339 sizeof nb)),
10340 SEEK_SET))
10341 {
10342 error (_("Unable to seek to start of dynamic information\n"));
10ca4b04
L
10343 goto no_gnu_hash;
10344 }
10345
10346 if (fread (nb, 16, 1, filedata->handle) != 1)
10347 {
10348 error (_("Failed to read in number of buckets\n"));
10ca4b04
L
10349 goto no_gnu_hash;
10350 }
10351
978c4450
AM
10352 filedata->ngnubuckets = byte_get (nb, 4);
10353 filedata->gnusymidx = byte_get (nb + 4, 4);
10ca4b04 10354 bitmaskwords = byte_get (nb + 8, 4);
978c4450 10355 buckets_vma = filedata->dynamic_info_DT_GNU_HASH + 16;
10ca4b04
L
10356 if (is_32bit_elf)
10357 buckets_vma += bitmaskwords * 4;
10358 else
10359 buckets_vma += bitmaskwords * 8;
10360
10361 if (fseek (filedata->handle,
978c4450 10362 (filedata->archive_file_offset
10ca4b04
L
10363 + offset_from_vma (filedata, buckets_vma, 4)),
10364 SEEK_SET))
10365 {
10366 error (_("Unable to seek to start of dynamic information\n"));
10ca4b04
L
10367 goto no_gnu_hash;
10368 }
10369
978c4450
AM
10370 filedata->gnubuckets
10371 = get_dynamic_data (filedata, filedata->ngnubuckets, 4);
10ca4b04 10372
978c4450 10373 if (filedata->gnubuckets == NULL)
90837ea7 10374 goto no_gnu_hash;
10ca4b04 10375
978c4450
AM
10376 for (i = 0; i < filedata->ngnubuckets; i++)
10377 if (filedata->gnubuckets[i] != 0)
10ca4b04 10378 {
978c4450 10379 if (filedata->gnubuckets[i] < filedata->gnusymidx)
90837ea7 10380 goto no_gnu_hash;
10ca4b04 10381
978c4450
AM
10382 if (maxchain == 0xffffffff || filedata->gnubuckets[i] > maxchain)
10383 maxchain = filedata->gnubuckets[i];
10ca4b04
L
10384 }
10385
10386 if (maxchain == 0xffffffff)
90837ea7 10387 goto no_gnu_hash;
10ca4b04 10388
978c4450 10389 maxchain -= filedata->gnusymidx;
10ca4b04
L
10390
10391 if (fseek (filedata->handle,
978c4450
AM
10392 (filedata->archive_file_offset
10393 + offset_from_vma (filedata,
10394 buckets_vma + 4 * (filedata->ngnubuckets
10395 + maxchain),
10396 4)),
10ca4b04
L
10397 SEEK_SET))
10398 {
10399 error (_("Unable to seek to start of dynamic information\n"));
10ca4b04
L
10400 goto no_gnu_hash;
10401 }
10402
10403 do
10404 {
10405 if (fread (nb, 4, 1, filedata->handle) != 1)
10406 {
10407 error (_("Failed to determine last chain length\n"));
10ca4b04
L
10408 goto no_gnu_hash;
10409 }
10410
10411 if (maxchain + 1 == 0)
90837ea7 10412 goto no_gnu_hash;
10ca4b04
L
10413
10414 ++maxchain;
10415 }
10416 while ((byte_get (nb, 4) & 1) == 0);
10417
10418 if (fseek (filedata->handle,
978c4450
AM
10419 (filedata->archive_file_offset
10420 + offset_from_vma (filedata, (buckets_vma
10421 + 4 * filedata->ngnubuckets),
10422 4)),
10ca4b04
L
10423 SEEK_SET))
10424 {
10425 error (_("Unable to seek to start of dynamic information\n"));
10ca4b04
L
10426 goto no_gnu_hash;
10427 }
10428
978c4450
AM
10429 filedata->gnuchains = get_dynamic_data (filedata, maxchain, 4);
10430 filedata->ngnuchains = maxchain;
10ca4b04 10431
978c4450 10432 if (filedata->gnuchains == NULL)
90837ea7 10433 goto no_gnu_hash;
10ca4b04 10434
978c4450 10435 if (filedata->dynamic_info_DT_MIPS_XHASH)
10ca4b04
L
10436 {
10437 if (fseek (filedata->handle,
978c4450 10438 (filedata->archive_file_offset
10ca4b04 10439 + offset_from_vma (filedata, (buckets_vma
978c4450 10440 + 4 * (filedata->ngnubuckets
10ca4b04
L
10441 + maxchain)), 4)),
10442 SEEK_SET))
10443 {
10444 error (_("Unable to seek to start of dynamic information\n"));
10ca4b04
L
10445 goto no_gnu_hash;
10446 }
10447
978c4450 10448 filedata->mipsxlat = get_dynamic_data (filedata, maxchain, 4);
90837ea7
AM
10449 if (filedata->mipsxlat == NULL)
10450 goto no_gnu_hash;
10ca4b04
L
10451 }
10452
978c4450
AM
10453 for (hn = 0; hn < filedata->ngnubuckets; ++hn)
10454 if (filedata->gnubuckets[hn] != 0)
10ca4b04 10455 {
978c4450
AM
10456 bfd_vma si = filedata->gnubuckets[hn];
10457 bfd_vma off = si - filedata->gnusymidx;
10ca4b04
L
10458
10459 do
10460 {
978c4450 10461 if (filedata->dynamic_info_DT_MIPS_XHASH)
10ca4b04 10462 {
c31ab5a0
AM
10463 if (off < filedata->ngnuchains
10464 && filedata->mipsxlat[off] >= num_of_syms)
978c4450 10465 num_of_syms = filedata->mipsxlat[off] + 1;
10ca4b04
L
10466 }
10467 else
10468 {
10469 if (si >= num_of_syms)
10470 num_of_syms = si + 1;
10471 }
10472 si++;
10473 }
978c4450
AM
10474 while (off < filedata->ngnuchains
10475 && (filedata->gnuchains[off++] & 1) == 0);
10ca4b04
L
10476 }
10477
90837ea7 10478 if (num_of_syms == 0)
10ca4b04 10479 {
90837ea7 10480 no_gnu_hash:
9db70fc3
AM
10481 free (filedata->mipsxlat);
10482 filedata->mipsxlat = NULL;
10483 free (filedata->gnuchains);
10484 filedata->gnuchains = NULL;
10485 free (filedata->gnubuckets);
10486 filedata->gnubuckets = NULL;
978c4450
AM
10487 filedata->ngnubuckets = 0;
10488 filedata->ngnuchains = 0;
10ca4b04
L
10489 }
10490 }
10491
10492 return num_of_syms;
10493}
10494
b2d38a17
NC
10495/* Parse and display the contents of the dynamic section. */
10496
015dc7e1 10497static bool
dda8d76d 10498process_dynamic_section (Filedata * filedata)
9ea033b2 10499{
2cf0635d 10500 Elf_Internal_Dyn * entry;
9ea033b2 10501
978c4450 10502 if (filedata->dynamic_size == 0)
9ea033b2
NC
10503 {
10504 if (do_dynamic)
ca0e11aa
NC
10505 {
10506 if (filedata->is_separate)
10507 printf (_("\nThere is no dynamic section in linked file '%s'.\n"),
10508 filedata->file_name);
10509 else
10510 printf (_("\nThere is no dynamic section in this file.\n"));
10511 }
9ea033b2 10512
015dc7e1 10513 return true;
9ea033b2
NC
10514 }
10515
10516 if (is_32bit_elf)
10517 {
dda8d76d 10518 if (! get_32bit_dynamic_section (filedata))
015dc7e1 10519 return false;
32ec8896
NC
10520 }
10521 else
10522 {
dda8d76d 10523 if (! get_64bit_dynamic_section (filedata))
015dc7e1 10524 return false;
9ea033b2 10525 }
9ea033b2 10526
252b5132 10527 /* Find the appropriate symbol table. */
978c4450 10528 if (filedata->dynamic_symbols == NULL || do_histogram)
252b5132 10529 {
2482f306
AM
10530 unsigned long num_of_syms;
10531
978c4450
AM
10532 for (entry = filedata->dynamic_section;
10533 entry < filedata->dynamic_section + filedata->dynamic_nent;
86dba8ee 10534 ++entry)
10ca4b04 10535 if (entry->d_tag == DT_SYMTAB)
978c4450 10536 filedata->dynamic_info[DT_SYMTAB] = entry->d_un.d_val;
10ca4b04 10537 else if (entry->d_tag == DT_SYMENT)
978c4450 10538 filedata->dynamic_info[DT_SYMENT] = entry->d_un.d_val;
10ca4b04 10539 else if (entry->d_tag == DT_HASH)
978c4450 10540 filedata->dynamic_info[DT_HASH] = entry->d_un.d_val;
10ca4b04 10541 else if (entry->d_tag == DT_GNU_HASH)
978c4450 10542 filedata->dynamic_info_DT_GNU_HASH = entry->d_un.d_val;
10ca4b04
L
10543 else if ((filedata->file_header.e_machine == EM_MIPS
10544 || filedata->file_header.e_machine == EM_MIPS_RS3_LE)
10545 && entry->d_tag == DT_MIPS_XHASH)
10546 {
978c4450
AM
10547 filedata->dynamic_info_DT_MIPS_XHASH = entry->d_un.d_val;
10548 filedata->dynamic_info_DT_GNU_HASH = entry->d_un.d_val;
10ca4b04 10549 }
252b5132 10550
2482f306
AM
10551 num_of_syms = get_num_dynamic_syms (filedata);
10552
10553 if (num_of_syms != 0
10554 && filedata->dynamic_symbols == NULL
10555 && filedata->dynamic_info[DT_SYMTAB]
978c4450 10556 && filedata->dynamic_info[DT_SYMENT])
10ca4b04
L
10557 {
10558 Elf_Internal_Phdr *seg;
2482f306 10559 bfd_vma vma = filedata->dynamic_info[DT_SYMTAB];
252b5132 10560
2482f306
AM
10561 if (! get_program_headers (filedata))
10562 {
10563 error (_("Cannot interpret virtual addresses "
10564 "without program headers.\n"));
015dc7e1 10565 return false;
2482f306 10566 }
252b5132 10567
2482f306
AM
10568 for (seg = filedata->program_headers;
10569 seg < filedata->program_headers + filedata->file_header.e_phnum;
10570 ++seg)
10571 {
10572 if (seg->p_type != PT_LOAD)
10573 continue;
252b5132 10574
2482f306
AM
10575 if (seg->p_offset + seg->p_filesz > filedata->file_size)
10576 {
10577 /* See PR 21379 for a reproducer. */
10578 error (_("Invalid PT_LOAD entry\n"));
015dc7e1 10579 return false;
2482f306 10580 }
252b5132 10581
2482f306
AM
10582 if (vma >= (seg->p_vaddr & -seg->p_align)
10583 && vma < seg->p_vaddr + seg->p_filesz)
10584 {
10585 /* Since we do not know how big the symbol table is,
10586 we default to reading in up to the end of PT_LOAD
10587 segment and processing that. This is overkill, I
10588 know, but it should work. */
10589 Elf_Internal_Shdr section;
10590 section.sh_offset = (vma - seg->p_vaddr
10591 + seg->p_offset);
10592 section.sh_size = (num_of_syms
10593 * filedata->dynamic_info[DT_SYMENT]);
10594 section.sh_entsize = filedata->dynamic_info[DT_SYMENT];
8ac10c5b
L
10595
10596 if (do_checks
10597 && filedata->dynamic_symtab_section != NULL
10598 && ((filedata->dynamic_symtab_section->sh_offset
10599 != section.sh_offset)
10600 || (filedata->dynamic_symtab_section->sh_size
10601 != section.sh_size)
10602 || (filedata->dynamic_symtab_section->sh_entsize
10603 != section.sh_entsize)))
10604 warn (_("\
10605the .dynsym section doesn't match the DT_SYMTAB and DT_SYMENT tags\n"));
10606
2482f306
AM
10607 section.sh_name = filedata->string_table_length;
10608 filedata->dynamic_symbols
10609 = GET_ELF_SYMBOLS (filedata, &section,
10610 &filedata->num_dynamic_syms);
10611 if (filedata->dynamic_symbols == NULL
10612 || filedata->num_dynamic_syms != num_of_syms)
10613 {
10614 error (_("Corrupt DT_SYMTAB dynamic entry\n"));
015dc7e1 10615 return false;
2482f306
AM
10616 }
10617 break;
10618 }
10619 }
10620 }
10621 }
252b5132
RH
10622
10623 /* Similarly find a string table. */
978c4450
AM
10624 if (filedata->dynamic_strings == NULL)
10625 for (entry = filedata->dynamic_section;
10626 entry < filedata->dynamic_section + filedata->dynamic_nent;
10ca4b04
L
10627 ++entry)
10628 {
10629 if (entry->d_tag == DT_STRTAB)
978c4450 10630 filedata->dynamic_info[DT_STRTAB] = entry->d_un.d_val;
252b5132 10631
10ca4b04 10632 if (entry->d_tag == DT_STRSZ)
978c4450 10633 filedata->dynamic_info[DT_STRSZ] = entry->d_un.d_val;
252b5132 10634
978c4450
AM
10635 if (filedata->dynamic_info[DT_STRTAB]
10636 && filedata->dynamic_info[DT_STRSZ])
10ca4b04
L
10637 {
10638 unsigned long offset;
978c4450 10639 bfd_size_type str_tab_len = filedata->dynamic_info[DT_STRSZ];
10ca4b04
L
10640
10641 offset = offset_from_vma (filedata,
978c4450 10642 filedata->dynamic_info[DT_STRTAB],
10ca4b04 10643 str_tab_len);
8ac10c5b
L
10644 if (do_checks
10645 && filedata->dynamic_strtab_section
10646 && ((filedata->dynamic_strtab_section->sh_offset
10647 != (file_ptr) offset)
10648 || (filedata->dynamic_strtab_section->sh_size
10649 != str_tab_len)))
10650 warn (_("\
10651the .dynstr section doesn't match the DT_STRTAB and DT_STRSZ tags\n"));
10652
978c4450
AM
10653 filedata->dynamic_strings
10654 = (char *) get_data (NULL, filedata, offset, 1, str_tab_len,
10655 _("dynamic string table"));
10656 if (filedata->dynamic_strings == NULL)
10ca4b04
L
10657 {
10658 error (_("Corrupt DT_STRTAB dynamic entry\n"));
10659 break;
10660 }
e3d39609 10661
978c4450 10662 filedata->dynamic_strings_length = str_tab_len;
10ca4b04
L
10663 break;
10664 }
10665 }
252b5132
RH
10666
10667 /* And find the syminfo section if available. */
978c4450 10668 if (filedata->dynamic_syminfo == NULL)
252b5132 10669 {
3e8bba36 10670 unsigned long syminsz = 0;
252b5132 10671
978c4450
AM
10672 for (entry = filedata->dynamic_section;
10673 entry < filedata->dynamic_section + filedata->dynamic_nent;
86dba8ee 10674 ++entry)
252b5132
RH
10675 {
10676 if (entry->d_tag == DT_SYMINENT)
10677 {
10678 /* Note: these braces are necessary to avoid a syntax
10679 error from the SunOS4 C compiler. */
049b0c3a
NC
10680 /* PR binutils/17531: A corrupt file can trigger this test.
10681 So do not use an assert, instead generate an error message. */
10682 if (sizeof (Elf_External_Syminfo) != entry->d_un.d_val)
071436c6 10683 error (_("Bad value (%d) for SYMINENT entry\n"),
049b0c3a 10684 (int) entry->d_un.d_val);
252b5132
RH
10685 }
10686 else if (entry->d_tag == DT_SYMINSZ)
10687 syminsz = entry->d_un.d_val;
10688 else if (entry->d_tag == DT_SYMINFO)
978c4450
AM
10689 filedata->dynamic_syminfo_offset
10690 = offset_from_vma (filedata, entry->d_un.d_val, syminsz);
252b5132
RH
10691 }
10692
978c4450 10693 if (filedata->dynamic_syminfo_offset != 0 && syminsz != 0)
252b5132 10694 {
2cf0635d
NC
10695 Elf_External_Syminfo * extsyminfo;
10696 Elf_External_Syminfo * extsym;
10697 Elf_Internal_Syminfo * syminfo;
252b5132
RH
10698
10699 /* There is a syminfo section. Read the data. */
3f5e193b 10700 extsyminfo = (Elf_External_Syminfo *)
978c4450
AM
10701 get_data (NULL, filedata, filedata->dynamic_syminfo_offset,
10702 1, syminsz, _("symbol information"));
a6e9f9df 10703 if (!extsyminfo)
015dc7e1 10704 return false;
252b5132 10705
978c4450 10706 if (filedata->dynamic_syminfo != NULL)
e3d39609
NC
10707 {
10708 error (_("Multiple dynamic symbol information sections found\n"));
978c4450 10709 free (filedata->dynamic_syminfo);
e3d39609 10710 }
978c4450
AM
10711 filedata->dynamic_syminfo = (Elf_Internal_Syminfo *) malloc (syminsz);
10712 if (filedata->dynamic_syminfo == NULL)
252b5132 10713 {
2482f306
AM
10714 error (_("Out of memory allocating %lu bytes "
10715 "for dynamic symbol info\n"),
8b73c356 10716 (unsigned long) syminsz);
015dc7e1 10717 return false;
252b5132
RH
10718 }
10719
2482f306
AM
10720 filedata->dynamic_syminfo_nent
10721 = syminsz / sizeof (Elf_External_Syminfo);
978c4450 10722 for (syminfo = filedata->dynamic_syminfo, extsym = extsyminfo;
2482f306
AM
10723 syminfo < (filedata->dynamic_syminfo
10724 + filedata->dynamic_syminfo_nent);
86dba8ee 10725 ++syminfo, ++extsym)
252b5132 10726 {
86dba8ee
AM
10727 syminfo->si_boundto = BYTE_GET (extsym->si_boundto);
10728 syminfo->si_flags = BYTE_GET (extsym->si_flags);
252b5132
RH
10729 }
10730
10731 free (extsyminfo);
10732 }
10733 }
10734
978c4450 10735 if (do_dynamic && filedata->dynamic_addr)
ca0e11aa
NC
10736 {
10737 if (filedata->dynamic_nent == 1)
10738 {
10739 if (filedata->is_separate)
10740 printf (_("\nIn linked file '%s' the dynamic section at offset 0x%lx contains 1 entry:\n"),
10741 filedata->file_name,
10742 filedata->dynamic_addr);
10743 else
10744 printf (_("\nDynamic section at offset 0x%lx contains 1 entry:\n"),
10745 filedata->dynamic_addr);
10746 }
10747 else
10748 {
10749 if (filedata->is_separate)
10750 printf (_("\nIn linked file '%s' the dynamic section at offset 0x%lx contains %lu entries:\n"),
10751 filedata->file_name,
10752 filedata->dynamic_addr,
10753 (unsigned long) filedata->dynamic_nent);
10754 else
10755 printf (_("\nDynamic section at offset 0x%lx contains %lu entries:\n"),
10756 filedata->dynamic_addr,
10757 (unsigned long) filedata->dynamic_nent);
10758 }
10759 }
252b5132
RH
10760 if (do_dynamic)
10761 printf (_(" Tag Type Name/Value\n"));
10762
978c4450
AM
10763 for (entry = filedata->dynamic_section;
10764 entry < filedata->dynamic_section + filedata->dynamic_nent;
86dba8ee 10765 entry++)
252b5132
RH
10766 {
10767 if (do_dynamic)
f7a99963 10768 {
2cf0635d 10769 const char * dtype;
e699b9ff 10770
f7a99963
NC
10771 putchar (' ');
10772 print_vma (entry->d_tag, FULL_HEX);
dda8d76d 10773 dtype = get_dynamic_type (filedata, entry->d_tag);
e699b9ff 10774 printf (" (%s)%*s", dtype,
32ec8896 10775 ((is_32bit_elf ? 27 : 19) - (int) strlen (dtype)), " ");
f7a99963 10776 }
252b5132
RH
10777
10778 switch (entry->d_tag)
10779 {
d1133906
NC
10780 case DT_FLAGS:
10781 if (do_dynamic)
e9e44622 10782 print_dynamic_flags (entry->d_un.d_val);
d1133906 10783 break;
76da6bbe 10784
252b5132
RH
10785 case DT_AUXILIARY:
10786 case DT_FILTER:
019148e4
L
10787 case DT_CONFIG:
10788 case DT_DEPAUDIT:
10789 case DT_AUDIT:
252b5132
RH
10790 if (do_dynamic)
10791 {
019148e4 10792 switch (entry->d_tag)
b34976b6 10793 {
019148e4
L
10794 case DT_AUXILIARY:
10795 printf (_("Auxiliary library"));
10796 break;
10797
10798 case DT_FILTER:
10799 printf (_("Filter library"));
10800 break;
10801
b34976b6 10802 case DT_CONFIG:
019148e4
L
10803 printf (_("Configuration file"));
10804 break;
10805
10806 case DT_DEPAUDIT:
10807 printf (_("Dependency audit library"));
10808 break;
10809
10810 case DT_AUDIT:
10811 printf (_("Audit library"));
10812 break;
10813 }
252b5132 10814
978c4450
AM
10815 if (VALID_DYNAMIC_NAME (filedata, entry->d_un.d_val))
10816 printf (": [%s]\n",
10817 GET_DYNAMIC_NAME (filedata, entry->d_un.d_val));
252b5132 10818 else
f7a99963
NC
10819 {
10820 printf (": ");
10821 print_vma (entry->d_un.d_val, PREFIX_HEX);
10822 putchar ('\n');
10823 }
252b5132
RH
10824 }
10825 break;
10826
dcefbbbd 10827 case DT_FEATURE:
252b5132
RH
10828 if (do_dynamic)
10829 {
10830 printf (_("Flags:"));
86f55779 10831
252b5132
RH
10832 if (entry->d_un.d_val == 0)
10833 printf (_(" None\n"));
10834 else
10835 {
10836 unsigned long int val = entry->d_un.d_val;
86f55779 10837
252b5132
RH
10838 if (val & DTF_1_PARINIT)
10839 {
10840 printf (" PARINIT");
10841 val ^= DTF_1_PARINIT;
10842 }
dcefbbbd
L
10843 if (val & DTF_1_CONFEXP)
10844 {
10845 printf (" CONFEXP");
10846 val ^= DTF_1_CONFEXP;
10847 }
252b5132
RH
10848 if (val != 0)
10849 printf (" %lx", val);
10850 puts ("");
10851 }
10852 }
10853 break;
10854
10855 case DT_POSFLAG_1:
10856 if (do_dynamic)
10857 {
10858 printf (_("Flags:"));
86f55779 10859
252b5132
RH
10860 if (entry->d_un.d_val == 0)
10861 printf (_(" None\n"));
10862 else
10863 {
10864 unsigned long int val = entry->d_un.d_val;
86f55779 10865
252b5132
RH
10866 if (val & DF_P1_LAZYLOAD)
10867 {
10868 printf (" LAZYLOAD");
10869 val ^= DF_P1_LAZYLOAD;
10870 }
10871 if (val & DF_P1_GROUPPERM)
10872 {
10873 printf (" GROUPPERM");
10874 val ^= DF_P1_GROUPPERM;
10875 }
10876 if (val != 0)
10877 printf (" %lx", val);
10878 puts ("");
10879 }
10880 }
10881 break;
10882
10883 case DT_FLAGS_1:
10884 if (do_dynamic)
10885 {
10886 printf (_("Flags:"));
10887 if (entry->d_un.d_val == 0)
10888 printf (_(" None\n"));
10889 else
10890 {
10891 unsigned long int val = entry->d_un.d_val;
86f55779 10892
252b5132
RH
10893 if (val & DF_1_NOW)
10894 {
10895 printf (" NOW");
10896 val ^= DF_1_NOW;
10897 }
10898 if (val & DF_1_GLOBAL)
10899 {
10900 printf (" GLOBAL");
10901 val ^= DF_1_GLOBAL;
10902 }
10903 if (val & DF_1_GROUP)
10904 {
10905 printf (" GROUP");
10906 val ^= DF_1_GROUP;
10907 }
10908 if (val & DF_1_NODELETE)
10909 {
10910 printf (" NODELETE");
10911 val ^= DF_1_NODELETE;
10912 }
10913 if (val & DF_1_LOADFLTR)
10914 {
10915 printf (" LOADFLTR");
10916 val ^= DF_1_LOADFLTR;
10917 }
10918 if (val & DF_1_INITFIRST)
10919 {
10920 printf (" INITFIRST");
10921 val ^= DF_1_INITFIRST;
10922 }
10923 if (val & DF_1_NOOPEN)
10924 {
10925 printf (" NOOPEN");
10926 val ^= DF_1_NOOPEN;
10927 }
10928 if (val & DF_1_ORIGIN)
10929 {
10930 printf (" ORIGIN");
10931 val ^= DF_1_ORIGIN;
10932 }
10933 if (val & DF_1_DIRECT)
10934 {
10935 printf (" DIRECT");
10936 val ^= DF_1_DIRECT;
10937 }
10938 if (val & DF_1_TRANS)
10939 {
10940 printf (" TRANS");
10941 val ^= DF_1_TRANS;
10942 }
10943 if (val & DF_1_INTERPOSE)
10944 {
10945 printf (" INTERPOSE");
10946 val ^= DF_1_INTERPOSE;
10947 }
f7db6139 10948 if (val & DF_1_NODEFLIB)
dcefbbbd 10949 {
f7db6139
L
10950 printf (" NODEFLIB");
10951 val ^= DF_1_NODEFLIB;
dcefbbbd
L
10952 }
10953 if (val & DF_1_NODUMP)
10954 {
10955 printf (" NODUMP");
10956 val ^= DF_1_NODUMP;
10957 }
34b60028 10958 if (val & DF_1_CONFALT)
dcefbbbd 10959 {
34b60028
L
10960 printf (" CONFALT");
10961 val ^= DF_1_CONFALT;
10962 }
10963 if (val & DF_1_ENDFILTEE)
10964 {
10965 printf (" ENDFILTEE");
10966 val ^= DF_1_ENDFILTEE;
10967 }
10968 if (val & DF_1_DISPRELDNE)
10969 {
10970 printf (" DISPRELDNE");
10971 val ^= DF_1_DISPRELDNE;
10972 }
10973 if (val & DF_1_DISPRELPND)
10974 {
10975 printf (" DISPRELPND");
10976 val ^= DF_1_DISPRELPND;
10977 }
10978 if (val & DF_1_NODIRECT)
10979 {
10980 printf (" NODIRECT");
10981 val ^= DF_1_NODIRECT;
10982 }
10983 if (val & DF_1_IGNMULDEF)
10984 {
10985 printf (" IGNMULDEF");
10986 val ^= DF_1_IGNMULDEF;
10987 }
10988 if (val & DF_1_NOKSYMS)
10989 {
10990 printf (" NOKSYMS");
10991 val ^= DF_1_NOKSYMS;
10992 }
10993 if (val & DF_1_NOHDR)
10994 {
10995 printf (" NOHDR");
10996 val ^= DF_1_NOHDR;
10997 }
10998 if (val & DF_1_EDITED)
10999 {
11000 printf (" EDITED");
11001 val ^= DF_1_EDITED;
11002 }
11003 if (val & DF_1_NORELOC)
11004 {
11005 printf (" NORELOC");
11006 val ^= DF_1_NORELOC;
11007 }
11008 if (val & DF_1_SYMINTPOSE)
11009 {
11010 printf (" SYMINTPOSE");
11011 val ^= DF_1_SYMINTPOSE;
11012 }
11013 if (val & DF_1_GLOBAUDIT)
11014 {
11015 printf (" GLOBAUDIT");
11016 val ^= DF_1_GLOBAUDIT;
11017 }
11018 if (val & DF_1_SINGLETON)
11019 {
11020 printf (" SINGLETON");
11021 val ^= DF_1_SINGLETON;
dcefbbbd 11022 }
5c383f02
RO
11023 if (val & DF_1_STUB)
11024 {
11025 printf (" STUB");
11026 val ^= DF_1_STUB;
11027 }
11028 if (val & DF_1_PIE)
11029 {
11030 printf (" PIE");
11031 val ^= DF_1_PIE;
11032 }
b1202ffa
L
11033 if (val & DF_1_KMOD)
11034 {
11035 printf (" KMOD");
11036 val ^= DF_1_KMOD;
11037 }
11038 if (val & DF_1_WEAKFILTER)
11039 {
11040 printf (" WEAKFILTER");
11041 val ^= DF_1_WEAKFILTER;
11042 }
11043 if (val & DF_1_NOCOMMON)
11044 {
11045 printf (" NOCOMMON");
11046 val ^= DF_1_NOCOMMON;
11047 }
252b5132
RH
11048 if (val != 0)
11049 printf (" %lx", val);
11050 puts ("");
11051 }
11052 }
11053 break;
11054
11055 case DT_PLTREL:
978c4450 11056 filedata->dynamic_info[entry->d_tag] = entry->d_un.d_val;
252b5132 11057 if (do_dynamic)
dda8d76d 11058 puts (get_dynamic_type (filedata, entry->d_un.d_val));
252b5132
RH
11059 break;
11060
11061 case DT_NULL :
11062 case DT_NEEDED :
11063 case DT_PLTGOT :
11064 case DT_HASH :
11065 case DT_STRTAB :
11066 case DT_SYMTAB :
11067 case DT_RELA :
11068 case DT_INIT :
11069 case DT_FINI :
11070 case DT_SONAME :
11071 case DT_RPATH :
11072 case DT_SYMBOLIC:
11073 case DT_REL :
11074 case DT_DEBUG :
11075 case DT_TEXTREL :
11076 case DT_JMPREL :
019148e4 11077 case DT_RUNPATH :
978c4450 11078 filedata->dynamic_info[entry->d_tag] = entry->d_un.d_val;
252b5132
RH
11079
11080 if (do_dynamic)
11081 {
2cf0635d 11082 char * name;
252b5132 11083
978c4450
AM
11084 if (VALID_DYNAMIC_NAME (filedata, entry->d_un.d_val))
11085 name = GET_DYNAMIC_NAME (filedata, entry->d_un.d_val);
252b5132 11086 else
d79b3d50 11087 name = NULL;
252b5132
RH
11088
11089 if (name)
11090 {
11091 switch (entry->d_tag)
11092 {
11093 case DT_NEEDED:
11094 printf (_("Shared library: [%s]"), name);
11095
13acb58d
AM
11096 if (filedata->program_interpreter
11097 && 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;
23356397
NC
12384 bool is_valid;
12385 const char * sstr;
10ca4b04 12386 Elf_Internal_Sym *psym = symtab + si;
b9e920ec 12387
10ca4b04
L
12388 printf ("%6ld: ", si);
12389 print_vma (psym->st_value, LONG_HEX);
12390 putchar (' ');
12391 print_vma (psym->st_size, DEC_5);
12392 printf (" %-7s", get_symbol_type (filedata, ELF_ST_TYPE (psym->st_info)));
12393 printf (" %-6s", get_symbol_binding (filedata, ELF_ST_BIND (psym->st_info)));
12394 if (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_SOLARIS)
12395 printf (" %-7s", get_solaris_symbol_visibility (psym->st_other));
12396 else
252b5132 12397 {
10ca4b04 12398 unsigned int vis = ELF_ST_VISIBILITY (psym->st_other);
252b5132 12399
10ca4b04
L
12400 printf (" %-7s", get_symbol_visibility (vis));
12401 /* Check to see if any other bits in the st_other field are set.
12402 Note - displaying this information disrupts the layout of the
12403 table being generated, but for the moment this case is very rare. */
12404 if (psym->st_other ^ vis)
12405 printf (" [%s] ", get_symbol_other (filedata, psym->st_other ^ vis));
252b5132 12406 }
10ca4b04 12407 printf (" %4s ", get_symbol_index_type (filedata, psym->st_shndx));
0942c7ab 12408
23356397
NC
12409 if (ELF_ST_TYPE (psym->st_info) == STT_SECTION
12410 && psym->st_shndx < filedata->file_header.e_shnum
12411 && psym->st_name == 0)
12412 {
12413 is_valid = SECTION_NAME_VALID (filedata->section_headers + psym->st_shndx);
12414 sstr = is_valid ?
12415 SECTION_NAME_PRINT (filedata->section_headers + psym->st_shndx)
12416 : _("<corrupt>");
12417 }
12418 else
12419 {
12420 is_valid = VALID_SYMBOL_NAME (strtab, strtab_size, psym->st_name);
12421 sstr = is_valid ? strtab + psym->st_name : _("<corrupt>");
12422 }
10ca4b04
L
12423
12424 version_string
12425 = get_symbol_version_string (filedata,
12426 (section == NULL
12427 || section->sh_type == SHT_DYNSYM),
12428 strtab, strtab_size, si,
12429 psym, &sym_info, &vna_other);
b9e920ec 12430
0942c7ab
NC
12431 int len_avail = 21;
12432 if (! do_wide && version_string != NULL)
12433 {
ddb43bab 12434 char buffer[16];
0942c7ab 12435
ddb43bab 12436 len_avail -= 1 + strlen (version_string);
0942c7ab
NC
12437
12438 if (sym_info == symbol_undefined)
12439 len_avail -= sprintf (buffer," (%d)", vna_other);
12440 else if (sym_info != symbol_hidden)
12441 len_avail -= 1;
12442 }
12443
12444 print_symbol (len_avail, sstr);
b9e920ec 12445
10ca4b04
L
12446 if (version_string)
12447 {
12448 if (sym_info == symbol_undefined)
12449 printf ("@%s (%d)", version_string, vna_other);
f7a99963 12450 else
10ca4b04
L
12451 printf (sym_info == symbol_hidden ? "@%s" : "@@%s",
12452 version_string);
12453 }
6bd1a22c 12454
10ca4b04 12455 putchar ('\n');
6bd1a22c 12456
10ca4b04
L
12457 if (ELF_ST_BIND (psym->st_info) == STB_LOCAL
12458 && section != NULL
12459 && si >= section->sh_info
12460 /* Irix 5 and 6 MIPS binaries are known to ignore this requirement. */
12461 && filedata->file_header.e_machine != EM_MIPS
12462 /* Solaris binaries have been found to violate this requirement as
12463 well. Not sure if this is a bug or an ABI requirement. */
12464 && filedata->file_header.e_ident[EI_OSABI] != ELFOSABI_SOLARIS)
12465 warn (_("local symbol %lu found at index >= %s's sh_info value of %u\n"),
12466 si, printable_section_name (filedata, section), section->sh_info);
12467}
f16a9783 12468
0f03783c
NC
12469static const char *
12470get_lto_kind (unsigned int kind)
12471{
12472 switch (kind)
12473 {
12474 case 0: return "DEF";
12475 case 1: return "WEAKDEF";
12476 case 2: return "UNDEF";
12477 case 3: return "WEAKUNDEF";
12478 case 4: return "COMMON";
12479 default:
12480 break;
12481 }
12482
12483 static char buffer[30];
12484 error (_("Unknown LTO symbol definition encountered: %u\n"), kind);
12485 sprintf (buffer, "<unknown: %u>", kind);
12486 return buffer;
12487}
12488
12489static const char *
12490get_lto_visibility (unsigned int visibility)
12491{
12492 switch (visibility)
12493 {
12494 case 0: return "DEFAULT";
12495 case 1: return "PROTECTED";
12496 case 2: return "INTERNAL";
12497 case 3: return "HIDDEN";
12498 default:
12499 break;
12500 }
12501
12502 static char buffer[30];
12503 error (_("Unknown LTO symbol visibility encountered: %u\n"), visibility);
12504 sprintf (buffer, "<unknown: %u>", visibility);
12505 return buffer;
12506}
12507
12508static const char *
12509get_lto_sym_type (unsigned int sym_type)
12510{
12511 switch (sym_type)
12512 {
12513 case 0: return "UNKNOWN";
12514 case 1: return "FUNCTION";
12515 case 2: return "VARIABLE";
12516 default:
12517 break;
12518 }
12519
12520 static char buffer[30];
12521 error (_("Unknown LTO symbol type encountered: %u\n"), sym_type);
12522 sprintf (buffer, "<unknown: %u>", sym_type);
12523 return buffer;
12524}
12525
12526/* Display an LTO format symbol table.
12527 FIXME: The format of LTO symbol tables is not formalized.
12528 So this code could need changing in the future. */
12529
015dc7e1 12530static bool
0f03783c
NC
12531display_lto_symtab (Filedata * filedata,
12532 Elf_Internal_Shdr * section)
12533{
12534 if (section->sh_size == 0)
12535 {
ca0e11aa
NC
12536 if (filedata->is_separate)
12537 printf (_("\nThe LTO Symbol table section '%s' in linked file '%s' is empty!\n"),
12538 printable_section_name (filedata, section),
12539 filedata->file_name);
12540 else
12541 printf (_("\nLTO Symbol table '%s' is empty!\n"),
12542 printable_section_name (filedata, section));
12543
015dc7e1 12544 return true;
0f03783c
NC
12545 }
12546
12547 if (section->sh_size > filedata->file_size)
12548 {
12549 error (_("Section %s has an invalid sh_size of 0x%lx\n"),
12550 printable_section_name (filedata, section),
12551 (unsigned long) section->sh_size);
015dc7e1 12552 return false;
0f03783c
NC
12553 }
12554
12555 void * alloced_data = get_data (NULL, filedata, section->sh_offset,
12556 section->sh_size, 1, _("LTO symbols"));
12557 if (alloced_data == NULL)
015dc7e1 12558 return false;
0f03783c
NC
12559
12560 /* Look for extended data for the symbol table. */
12561 Elf_Internal_Shdr * ext;
12562 void * ext_data_orig = NULL;
12563 char * ext_data = NULL;
12564 char * ext_data_end = NULL;
12565 char * ext_name = NULL;
12566
12567 if (asprintf (& ext_name, ".gnu.lto_.ext_symtab.%s",
b9e920ec 12568 SECTION_NAME (section) + sizeof (".gnu.lto_.symtab.") - 1) > 0
0f03783c
NC
12569 && ext_name != NULL /* Paranoia. */
12570 && (ext = find_section (filedata, ext_name)) != NULL)
12571 {
12572 if (ext->sh_size < 3)
12573 error (_("LTO Symbol extension table '%s' is empty!\n"),
12574 printable_section_name (filedata, ext));
12575 else
12576 {
12577 ext_data_orig = ext_data = get_data (NULL, filedata, ext->sh_offset,
12578 ext->sh_size, 1,
12579 _("LTO ext symbol data"));
12580 if (ext_data != NULL)
12581 {
12582 ext_data_end = ext_data + ext->sh_size;
12583 if (* ext_data++ != 1)
12584 error (_("Unexpected version number in symbol extension table\n"));
12585 }
12586 }
12587 }
b9e920ec 12588
0f03783c
NC
12589 const unsigned char * data = (const unsigned char *) alloced_data;
12590 const unsigned char * end = data + section->sh_size;
12591
ca0e11aa
NC
12592 if (filedata->is_separate)
12593 printf (_("\nIn linked file '%s': "), filedata->file_name);
12594 else
12595 printf ("\n");
12596
0f03783c
NC
12597 if (ext_data_orig != NULL)
12598 {
12599 if (do_wide)
ca0e11aa 12600 printf (_("LTO Symbol table '%s' and extension table '%s' contain:\n"),
0f03783c
NC
12601 printable_section_name (filedata, section),
12602 printable_section_name (filedata, ext));
12603 else
12604 {
ca0e11aa 12605 printf (_("LTO Symbol table '%s'\n"),
0f03783c
NC
12606 printable_section_name (filedata, section));
12607 printf (_(" and extension table '%s' contain:\n"),
12608 printable_section_name (filedata, ext));
12609 }
12610 }
12611 else
ca0e11aa 12612 printf (_("LTO Symbol table '%s' contains:\n"),
0f03783c 12613 printable_section_name (filedata, section));
b9e920ec 12614
0f03783c 12615 /* FIXME: Add a wide version. */
b9e920ec 12616 if (ext_data_orig != NULL)
0f03783c
NC
12617 printf (_(" Comdat_Key Kind Visibility Size Slot Type Section Name\n"));
12618 else
12619 printf (_(" Comdat_Key Kind Visibility Size Slot Name\n"));
12620
12621 /* FIXME: We do not handle style prefixes. */
12622
12623 while (data < end)
12624 {
12625 const unsigned char * sym_name = data;
12626 data += strnlen ((const char *) sym_name, end - data) + 1;
12627 if (data >= end)
12628 goto fail;
12629
12630 const unsigned char * comdat_key = data;
12631 data += strnlen ((const char *) comdat_key, end - data) + 1;
12632 if (data >= end)
12633 goto fail;
12634
12635 if (data + 2 + 8 + 4 > end)
12636 goto fail;
12637
12638 unsigned int kind = *data++;
12639 unsigned int visibility = *data++;
12640
12641 elf_vma size = byte_get (data, 8);
12642 data += 8;
12643
12644 elf_vma slot = byte_get (data, 4);
12645 data += 4;
12646
12647 if (ext_data != NULL)
12648 {
12649 if (ext_data < (ext_data_end - 1))
12650 {
12651 unsigned int sym_type = * ext_data ++;
12652 unsigned int sec_kind = * ext_data ++;
12653
12654 printf (" %10s %10s %11s %08lx %08lx %9s %08lx _",
12655 * comdat_key == 0 ? "-" : (char *) comdat_key,
12656 get_lto_kind (kind),
12657 get_lto_visibility (visibility),
12658 (long) size,
12659 (long) slot,
12660 get_lto_sym_type (sym_type),
12661 (long) sec_kind);
12662 print_symbol (6, (const char *) sym_name);
12663 }
12664 else
12665 {
12666 error (_("Ran out of LTO symbol extension data\n"));
12667 ext_data = NULL;
12668 /* FIXME: return FAIL result ? */
12669 }
12670 }
12671 else
12672 {
12673 printf (" %10s %10s %11s %08lx %08lx _",
12674 * comdat_key == 0 ? "-" : (char *) comdat_key,
12675 get_lto_kind (kind),
12676 get_lto_visibility (visibility),
12677 (long) size,
12678 (long) slot);
12679 print_symbol (21, (const char *) sym_name);
12680 }
12681 putchar ('\n');
12682 }
12683
12684 if (ext_data != NULL && ext_data < ext_data_end)
12685 {
12686 error (_("Data remains in the LTO symbol extension table\n"));
12687 goto fail;
12688 }
12689
12690 free (alloced_data);
12691 free (ext_data_orig);
12692 free (ext_name);
015dc7e1 12693 return true;
b9e920ec 12694
0f03783c
NC
12695 fail:
12696 error (_("Buffer overrun encountered whilst decoding LTO symbol table\n"));
12697 free (alloced_data);
12698 free (ext_data_orig);
12699 free (ext_name);
015dc7e1 12700 return false;
0f03783c
NC
12701}
12702
12703/* Display LTO symbol tables. */
12704
015dc7e1 12705static bool
0f03783c
NC
12706process_lto_symbol_tables (Filedata * filedata)
12707{
12708 Elf_Internal_Shdr * section;
12709 unsigned int i;
015dc7e1 12710 bool res = true;
0f03783c
NC
12711
12712 if (!do_lto_syms)
015dc7e1 12713 return true;
0f03783c
NC
12714
12715 if (filedata->section_headers == NULL)
015dc7e1 12716 return true;
0f03783c
NC
12717
12718 for (i = 0, section = filedata->section_headers;
12719 i < filedata->file_header.e_shnum;
12720 i++, section++)
b9e920ec 12721 if (SECTION_NAME_VALID (section)
08dedd66 12722 && startswith (SECTION_NAME (section), ".gnu.lto_.symtab."))
0f03783c
NC
12723 res &= display_lto_symtab (filedata, section);
12724
b9e920ec 12725 return res;
0f03783c
NC
12726}
12727
10ca4b04 12728/* Dump the symbol table. */
0f03783c 12729
015dc7e1 12730static bool
10ca4b04
L
12731process_symbol_table (Filedata * filedata)
12732{
12733 Elf_Internal_Shdr * section;
f16a9783 12734
10ca4b04 12735 if (!do_syms && !do_dyn_syms && !do_histogram)
015dc7e1 12736 return true;
6bd1a22c 12737
978c4450 12738 if ((filedata->dynamic_info[DT_HASH] || filedata->dynamic_info_DT_GNU_HASH)
6bd1a22c
L
12739 && do_syms
12740 && do_using_dynamic
978c4450
AM
12741 && filedata->dynamic_strings != NULL
12742 && filedata->dynamic_symbols != NULL)
6bd1a22c 12743 {
10ca4b04 12744 unsigned long si;
6bd1a22c 12745
ca0e11aa
NC
12746 if (filedata->is_separate)
12747 {
12748 printf (ngettext ("\nIn linked file '%s' the dynamic symbol table contains %lu entry:\n",
12749 "\nIn linked file '%s' the dynamic symbol table contains %lu entries:\n",
12750 filedata->num_dynamic_syms),
12751 filedata->file_name,
12752 filedata->num_dynamic_syms);
12753 }
12754 else
12755 {
12756 printf (ngettext ("\nSymbol table for image contains %lu entry:\n",
12757 "\nSymbol table for image contains %lu entries:\n",
12758 filedata->num_dynamic_syms),
12759 filedata->num_dynamic_syms);
12760 }
10ca4b04
L
12761 if (is_32bit_elf)
12762 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
12763 else
12764 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
6bd1a22c 12765
978c4450
AM
12766 for (si = 0; si < filedata->num_dynamic_syms; si++)
12767 print_dynamic_symbol (filedata, si, filedata->dynamic_symbols, NULL,
12768 filedata->dynamic_strings,
12769 filedata->dynamic_strings_length);
252b5132 12770 }
8b73c356 12771 else if ((do_dyn_syms || (do_syms && !do_using_dynamic))
dda8d76d 12772 && filedata->section_headers != NULL)
252b5132 12773 {
b34976b6 12774 unsigned int i;
252b5132 12775
dda8d76d
NC
12776 for (i = 0, section = filedata->section_headers;
12777 i < filedata->file_header.e_shnum;
252b5132
RH
12778 i++, section++)
12779 {
2cf0635d 12780 char * strtab = NULL;
c256ffe7 12781 unsigned long int strtab_size = 0;
2cf0635d 12782 Elf_Internal_Sym * symtab;
ef3df110 12783 unsigned long si, num_syms;
252b5132 12784
2c610e4b
L
12785 if ((section->sh_type != SHT_SYMTAB
12786 && section->sh_type != SHT_DYNSYM)
12787 || (!do_syms
12788 && section->sh_type == SHT_SYMTAB))
252b5132
RH
12789 continue;
12790
dd24e3da
NC
12791 if (section->sh_entsize == 0)
12792 {
12793 printf (_("\nSymbol table '%s' has a sh_entsize of zero!\n"),
dda8d76d 12794 printable_section_name (filedata, section));
dd24e3da
NC
12795 continue;
12796 }
12797
d3a49aa8 12798 num_syms = section->sh_size / section->sh_entsize;
ca0e11aa
NC
12799
12800 if (filedata->is_separate)
12801 printf (ngettext ("\nIn linked file '%s' symbol section '%s' contains %lu entry:\n",
12802 "\nIn linked file '%s' symbol section '%s' contains %lu entries:\n",
12803 num_syms),
12804 filedata->file_name,
12805 printable_section_name (filedata, section),
12806 num_syms);
12807 else
12808 printf (ngettext ("\nSymbol table '%s' contains %lu entry:\n",
12809 "\nSymbol table '%s' contains %lu entries:\n",
12810 num_syms),
12811 printable_section_name (filedata, section),
12812 num_syms);
dd24e3da 12813
f7a99963 12814 if (is_32bit_elf)
ca47b30c 12815 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
f7a99963 12816 else
ca47b30c 12817 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
252b5132 12818
dda8d76d 12819 symtab = GET_ELF_SYMBOLS (filedata, section, & num_syms);
252b5132
RH
12820 if (symtab == NULL)
12821 continue;
12822
dda8d76d 12823 if (section->sh_link == filedata->file_header.e_shstrndx)
c256ffe7 12824 {
dda8d76d
NC
12825 strtab = filedata->string_table;
12826 strtab_size = filedata->string_table_length;
c256ffe7 12827 }
dda8d76d 12828 else if (section->sh_link < filedata->file_header.e_shnum)
252b5132 12829 {
2cf0635d 12830 Elf_Internal_Shdr * string_sec;
252b5132 12831
dda8d76d 12832 string_sec = filedata->section_headers + section->sh_link;
252b5132 12833
dda8d76d 12834 strtab = (char *) get_data (NULL, filedata, string_sec->sh_offset,
3f5e193b
NC
12835 1, string_sec->sh_size,
12836 _("string table"));
c256ffe7 12837 strtab_size = strtab != NULL ? string_sec->sh_size : 0;
252b5132
RH
12838 }
12839
10ca4b04
L
12840 for (si = 0; si < num_syms; si++)
12841 print_dynamic_symbol (filedata, si, symtab, section,
12842 strtab, strtab_size);
252b5132
RH
12843
12844 free (symtab);
dda8d76d 12845 if (strtab != filedata->string_table)
252b5132
RH
12846 free (strtab);
12847 }
12848 }
12849 else if (do_syms)
12850 printf
12851 (_("\nDynamic symbol information is not available for displaying symbols.\n"));
12852
978c4450 12853 if (do_histogram && filedata->buckets != NULL)
252b5132 12854 {
2cf0635d
NC
12855 unsigned long * lengths;
12856 unsigned long * counts;
66543521
AM
12857 unsigned long hn;
12858 bfd_vma si;
12859 unsigned long maxlength = 0;
12860 unsigned long nzero_counts = 0;
12861 unsigned long nsyms = 0;
6bd6a03d 12862 char *visited;
252b5132 12863
d3a49aa8
AM
12864 printf (ngettext ("\nHistogram for bucket list length "
12865 "(total of %lu bucket):\n",
12866 "\nHistogram for bucket list length "
12867 "(total of %lu buckets):\n",
978c4450
AM
12868 (unsigned long) filedata->nbuckets),
12869 (unsigned long) filedata->nbuckets);
252b5132 12870
978c4450
AM
12871 lengths = (unsigned long *) calloc (filedata->nbuckets,
12872 sizeof (*lengths));
252b5132
RH
12873 if (lengths == NULL)
12874 {
8b73c356 12875 error (_("Out of memory allocating space for histogram buckets\n"));
fd486f32 12876 goto err_out;
252b5132 12877 }
978c4450
AM
12878 visited = xcmalloc (filedata->nchains, 1);
12879 memset (visited, 0, filedata->nchains);
8b73c356
NC
12880
12881 printf (_(" Length Number %% of total Coverage\n"));
978c4450 12882 for (hn = 0; hn < filedata->nbuckets; ++hn)
252b5132 12883 {
978c4450 12884 for (si = filedata->buckets[hn]; si > 0; si = filedata->chains[si])
252b5132 12885 {
b34976b6 12886 ++nsyms;
252b5132 12887 if (maxlength < ++lengths[hn])
b34976b6 12888 ++maxlength;
978c4450 12889 if (si >= filedata->nchains || visited[si])
6bd6a03d
AM
12890 {
12891 error (_("histogram chain is corrupt\n"));
12892 break;
12893 }
12894 visited[si] = 1;
252b5132
RH
12895 }
12896 }
6bd6a03d 12897 free (visited);
252b5132 12898
3f5e193b 12899 counts = (unsigned long *) calloc (maxlength + 1, sizeof (*counts));
252b5132
RH
12900 if (counts == NULL)
12901 {
b2e951ec 12902 free (lengths);
8b73c356 12903 error (_("Out of memory allocating space for histogram counts\n"));
fd486f32 12904 goto err_out;
252b5132
RH
12905 }
12906
978c4450 12907 for (hn = 0; hn < filedata->nbuckets; ++hn)
b34976b6 12908 ++counts[lengths[hn]];
252b5132 12909
978c4450 12910 if (filedata->nbuckets > 0)
252b5132 12911 {
66543521
AM
12912 unsigned long i;
12913 printf (" 0 %-10lu (%5.1f%%)\n",
978c4450 12914 counts[0], (counts[0] * 100.0) / filedata->nbuckets);
66543521 12915 for (i = 1; i <= maxlength; ++i)
103f02d3 12916 {
66543521
AM
12917 nzero_counts += counts[i] * i;
12918 printf ("%7lu %-10lu (%5.1f%%) %5.1f%%\n",
978c4450 12919 i, counts[i], (counts[i] * 100.0) / filedata->nbuckets,
103f02d3
UD
12920 (nzero_counts * 100.0) / nsyms);
12921 }
252b5132
RH
12922 }
12923
12924 free (counts);
12925 free (lengths);
12926 }
12927
978c4450
AM
12928 free (filedata->buckets);
12929 filedata->buckets = NULL;
12930 filedata->nbuckets = 0;
12931 free (filedata->chains);
12932 filedata->chains = NULL;
252b5132 12933
978c4450 12934 if (do_histogram && filedata->gnubuckets != NULL)
fdc90cb4 12935 {
2cf0635d
NC
12936 unsigned long * lengths;
12937 unsigned long * counts;
fdc90cb4
JJ
12938 unsigned long hn;
12939 unsigned long maxlength = 0;
12940 unsigned long nzero_counts = 0;
12941 unsigned long nsyms = 0;
fdc90cb4 12942
f16a9783 12943 printf (ngettext ("\nHistogram for `%s' bucket list length "
d3a49aa8 12944 "(total of %lu bucket):\n",
f16a9783 12945 "\nHistogram for `%s' bucket list length "
d3a49aa8 12946 "(total of %lu buckets):\n",
978c4450
AM
12947 (unsigned long) filedata->ngnubuckets),
12948 GNU_HASH_SECTION_NAME (filedata),
12949 (unsigned long) filedata->ngnubuckets);
8b73c356 12950
978c4450
AM
12951 lengths = (unsigned long *) calloc (filedata->ngnubuckets,
12952 sizeof (*lengths));
fdc90cb4
JJ
12953 if (lengths == NULL)
12954 {
8b73c356 12955 error (_("Out of memory allocating space for gnu histogram buckets\n"));
fd486f32 12956 goto err_out;
fdc90cb4
JJ
12957 }
12958
fdc90cb4
JJ
12959 printf (_(" Length Number %% of total Coverage\n"));
12960
978c4450
AM
12961 for (hn = 0; hn < filedata->ngnubuckets; ++hn)
12962 if (filedata->gnubuckets[hn] != 0)
fdc90cb4
JJ
12963 {
12964 bfd_vma off, length = 1;
12965
978c4450 12966 for (off = filedata->gnubuckets[hn] - filedata->gnusymidx;
071436c6 12967 /* PR 17531 file: 010-77222-0.004. */
978c4450
AM
12968 off < filedata->ngnuchains
12969 && (filedata->gnuchains[off] & 1) == 0;
071436c6 12970 ++off)
fdc90cb4
JJ
12971 ++length;
12972 lengths[hn] = length;
12973 if (length > maxlength)
12974 maxlength = length;
12975 nsyms += length;
12976 }
12977
3f5e193b 12978 counts = (unsigned long *) calloc (maxlength + 1, sizeof (*counts));
fdc90cb4
JJ
12979 if (counts == NULL)
12980 {
b2e951ec 12981 free (lengths);
8b73c356 12982 error (_("Out of memory allocating space for gnu histogram counts\n"));
fd486f32 12983 goto err_out;
fdc90cb4
JJ
12984 }
12985
978c4450 12986 for (hn = 0; hn < filedata->ngnubuckets; ++hn)
fdc90cb4
JJ
12987 ++counts[lengths[hn]];
12988
978c4450 12989 if (filedata->ngnubuckets > 0)
fdc90cb4
JJ
12990 {
12991 unsigned long j;
12992 printf (" 0 %-10lu (%5.1f%%)\n",
978c4450 12993 counts[0], (counts[0] * 100.0) / filedata->ngnubuckets);
fdc90cb4
JJ
12994 for (j = 1; j <= maxlength; ++j)
12995 {
12996 nzero_counts += counts[j] * j;
12997 printf ("%7lu %-10lu (%5.1f%%) %5.1f%%\n",
978c4450 12998 j, counts[j], (counts[j] * 100.0) / filedata->ngnubuckets,
fdc90cb4
JJ
12999 (nzero_counts * 100.0) / nsyms);
13000 }
13001 }
13002
13003 free (counts);
13004 free (lengths);
fdc90cb4 13005 }
978c4450
AM
13006 free (filedata->gnubuckets);
13007 filedata->gnubuckets = NULL;
13008 filedata->ngnubuckets = 0;
13009 free (filedata->gnuchains);
13010 filedata->gnuchains = NULL;
13011 filedata->ngnuchains = 0;
13012 free (filedata->mipsxlat);
13013 filedata->mipsxlat = NULL;
015dc7e1 13014 return true;
fd486f32
AM
13015
13016 err_out:
978c4450
AM
13017 free (filedata->gnubuckets);
13018 filedata->gnubuckets = NULL;
13019 filedata->ngnubuckets = 0;
13020 free (filedata->gnuchains);
13021 filedata->gnuchains = NULL;
13022 filedata->ngnuchains = 0;
13023 free (filedata->mipsxlat);
13024 filedata->mipsxlat = NULL;
13025 free (filedata->buckets);
13026 filedata->buckets = NULL;
13027 filedata->nbuckets = 0;
13028 free (filedata->chains);
13029 filedata->chains = NULL;
015dc7e1 13030 return false;
252b5132
RH
13031}
13032
015dc7e1 13033static bool
ca0e11aa 13034process_syminfo (Filedata * filedata)
252b5132 13035{
b4c96d0d 13036 unsigned int i;
252b5132 13037
978c4450 13038 if (filedata->dynamic_syminfo == NULL
252b5132
RH
13039 || !do_dynamic)
13040 /* No syminfo, this is ok. */
015dc7e1 13041 return true;
252b5132
RH
13042
13043 /* There better should be a dynamic symbol section. */
978c4450 13044 if (filedata->dynamic_symbols == NULL || filedata->dynamic_strings == NULL)
015dc7e1 13045 return false;
252b5132 13046
ca0e11aa
NC
13047 if (filedata->is_separate)
13048 printf (ngettext ("\nIn linked file '%s: the dynamic info segment at offset 0x%lx contains %d entry:\n",
13049 "\nIn linked file '%s: the dynamic info segment at offset 0x%lx contains %d entries:\n",
13050 filedata->dynamic_syminfo_nent),
13051 filedata->file_name,
13052 filedata->dynamic_syminfo_offset,
13053 filedata->dynamic_syminfo_nent);
13054 else
d3a49aa8
AM
13055 printf (ngettext ("\nDynamic info segment at offset 0x%lx "
13056 "contains %d entry:\n",
13057 "\nDynamic info segment at offset 0x%lx "
13058 "contains %d entries:\n",
978c4450 13059 filedata->dynamic_syminfo_nent),
ca0e11aa
NC
13060 filedata->dynamic_syminfo_offset,
13061 filedata->dynamic_syminfo_nent);
252b5132
RH
13062
13063 printf (_(" Num: Name BoundTo Flags\n"));
978c4450 13064 for (i = 0; i < filedata->dynamic_syminfo_nent; ++i)
252b5132 13065 {
978c4450 13066 unsigned short int flags = filedata->dynamic_syminfo[i].si_flags;
252b5132 13067
31104126 13068 printf ("%4d: ", i);
978c4450 13069 if (i >= filedata->num_dynamic_syms)
4082ef84 13070 printf (_("<corrupt index>"));
978c4450
AM
13071 else if (VALID_DYNAMIC_NAME (filedata, filedata->dynamic_symbols[i].st_name))
13072 print_symbol (30, GET_DYNAMIC_NAME (filedata,
13073 filedata->dynamic_symbols[i].st_name));
d79b3d50 13074 else
978c4450 13075 printf (_("<corrupt: %19ld>"), filedata->dynamic_symbols[i].st_name);
31104126 13076 putchar (' ');
252b5132 13077
978c4450 13078 switch (filedata->dynamic_syminfo[i].si_boundto)
252b5132
RH
13079 {
13080 case SYMINFO_BT_SELF:
13081 fputs ("SELF ", stdout);
13082 break;
13083 case SYMINFO_BT_PARENT:
13084 fputs ("PARENT ", stdout);
13085 break;
13086 default:
978c4450
AM
13087 if (filedata->dynamic_syminfo[i].si_boundto > 0
13088 && filedata->dynamic_syminfo[i].si_boundto < filedata->dynamic_nent
13089 && VALID_DYNAMIC_NAME (filedata,
13090 filedata->dynamic_section[filedata->dynamic_syminfo[i].si_boundto].d_un.d_val))
31104126 13091 {
978c4450
AM
13092 print_symbol (10, GET_DYNAMIC_NAME (filedata,
13093 filedata->dynamic_section[filedata->dynamic_syminfo[i].si_boundto].d_un.d_val));
31104126
NC
13094 putchar (' ' );
13095 }
252b5132 13096 else
978c4450 13097 printf ("%-10d ", filedata->dynamic_syminfo[i].si_boundto);
252b5132
RH
13098 break;
13099 }
13100
13101 if (flags & SYMINFO_FLG_DIRECT)
13102 printf (" DIRECT");
13103 if (flags & SYMINFO_FLG_PASSTHRU)
13104 printf (" PASSTHRU");
13105 if (flags & SYMINFO_FLG_COPY)
13106 printf (" COPY");
13107 if (flags & SYMINFO_FLG_LAZYLOAD)
13108 printf (" LAZYLOAD");
13109
13110 puts ("");
13111 }
13112
015dc7e1 13113 return true;
252b5132
RH
13114}
13115
75802ccb
CE
13116/* A macro which evaluates to TRUE if the region ADDR .. ADDR + NELEM
13117 is contained by the region START .. END. The types of ADDR, START
13118 and END should all be the same. Note both ADDR + NELEM and END
13119 point to just beyond the end of the regions that are being tested. */
13120#define IN_RANGE(START,END,ADDR,NELEM) \
13121 (((ADDR) >= (START)) && ((ADDR) < (END)) && ((ADDR) + (NELEM) <= (END)))
b32e566b 13122
cf13d699
NC
13123/* Check to see if the given reloc needs to be handled in a target specific
13124 manner. If so then process the reloc and return TRUE otherwise return
f84ce13b
NC
13125 FALSE.
13126
13127 If called with reloc == NULL, then this is a signal that reloc processing
13128 for the current section has finished, and any saved state should be
13129 discarded. */
09c11c86 13130
015dc7e1 13131static bool
dda8d76d
NC
13132target_specific_reloc_handling (Filedata * filedata,
13133 Elf_Internal_Rela * reloc,
13134 unsigned char * start,
13135 unsigned char * end,
13136 Elf_Internal_Sym * symtab,
13137 unsigned long num_syms)
252b5132 13138{
f84ce13b
NC
13139 unsigned int reloc_type = 0;
13140 unsigned long sym_index = 0;
13141
13142 if (reloc)
13143 {
dda8d76d 13144 reloc_type = get_reloc_type (filedata, reloc->r_info);
f84ce13b
NC
13145 sym_index = get_reloc_symindex (reloc->r_info);
13146 }
252b5132 13147
dda8d76d 13148 switch (filedata->file_header.e_machine)
252b5132 13149 {
13761a11
NC
13150 case EM_MSP430:
13151 case EM_MSP430_OLD:
13152 {
13153 static Elf_Internal_Sym * saved_sym = NULL;
13154
f84ce13b
NC
13155 if (reloc == NULL)
13156 {
13157 saved_sym = NULL;
015dc7e1 13158 return true;
f84ce13b
NC
13159 }
13160
13761a11
NC
13161 switch (reloc_type)
13162 {
13163 case 10: /* R_MSP430_SYM_DIFF */
7d81bc93 13164 case 12: /* R_MSP430_GNU_SUB_ULEB128 */
dda8d76d 13165 if (uses_msp430x_relocs (filedata))
13761a11 13166 break;
1a0670f3 13167 /* Fall through. */
13761a11 13168 case 21: /* R_MSP430X_SYM_DIFF */
7d81bc93 13169 case 23: /* R_MSP430X_GNU_SUB_ULEB128 */
f84ce13b
NC
13170 /* PR 21139. */
13171 if (sym_index >= num_syms)
13172 error (_("MSP430 SYM_DIFF reloc contains invalid symbol index %lu\n"),
13173 sym_index);
13174 else
13175 saved_sym = symtab + sym_index;
015dc7e1 13176 return true;
13761a11
NC
13177
13178 case 1: /* R_MSP430_32 or R_MSP430_ABS32 */
13179 case 3: /* R_MSP430_16 or R_MSP430_ABS8 */
13180 goto handle_sym_diff;
0b4362b0 13181
13761a11
NC
13182 case 5: /* R_MSP430_16_BYTE */
13183 case 9: /* R_MSP430_8 */
7d81bc93 13184 case 11: /* R_MSP430_GNU_SET_ULEB128 */
dda8d76d 13185 if (uses_msp430x_relocs (filedata))
13761a11
NC
13186 break;
13187 goto handle_sym_diff;
13188
13189 case 2: /* R_MSP430_ABS16 */
13190 case 15: /* R_MSP430X_ABS16 */
7d81bc93 13191 case 22: /* R_MSP430X_GNU_SET_ULEB128 */
dda8d76d 13192 if (! uses_msp430x_relocs (filedata))
13761a11
NC
13193 break;
13194 goto handle_sym_diff;
0b4362b0 13195
13761a11
NC
13196 handle_sym_diff:
13197 if (saved_sym != NULL)
13198 {
13199 bfd_vma value;
5a805384 13200 unsigned int reloc_size = 0;
7d81bc93
JL
13201 int leb_ret = 0;
13202 switch (reloc_type)
13203 {
13204 case 1: /* R_MSP430_32 or R_MSP430_ABS32 */
13205 reloc_size = 4;
13206 break;
13207 case 11: /* R_MSP430_GNU_SET_ULEB128 */
13208 case 22: /* R_MSP430X_GNU_SET_ULEB128 */
5a805384 13209 if (reloc->r_offset < (size_t) (end - start))
015dc7e1 13210 read_leb128 (start + reloc->r_offset, end, false,
5a805384 13211 &reloc_size, &leb_ret);
7d81bc93
JL
13212 break;
13213 default:
13214 reloc_size = 2;
13215 break;
13216 }
13761a11 13217
5a805384 13218 if (leb_ret != 0 || reloc_size == 0 || reloc_size > 8)
7d81bc93
JL
13219 error (_("MSP430 ULEB128 field at 0x%lx contains invalid "
13220 "ULEB128 value\n"),
13221 (long) reloc->r_offset);
13222 else if (sym_index >= num_syms)
f84ce13b
NC
13223 error (_("MSP430 reloc contains invalid symbol index %lu\n"),
13224 sym_index);
03f7786e 13225 else
f84ce13b
NC
13226 {
13227 value = reloc->r_addend + (symtab[sym_index].st_value
13228 - saved_sym->st_value);
13229
b32e566b 13230 if (IN_RANGE (start, end, start + reloc->r_offset, reloc_size))
f84ce13b 13231 byte_put (start + reloc->r_offset, value, reloc_size);
b32e566b
NC
13232 else
13233 /* PR 21137 */
13234 error (_("MSP430 sym diff reloc contains invalid offset: 0x%lx\n"),
13235 (long) reloc->r_offset);
f84ce13b 13236 }
13761a11
NC
13237
13238 saved_sym = NULL;
015dc7e1 13239 return true;
13761a11
NC
13240 }
13241 break;
13242
13243 default:
13244 if (saved_sym != NULL)
071436c6 13245 error (_("Unhandled MSP430 reloc type found after SYM_DIFF reloc\n"));
13761a11
NC
13246 break;
13247 }
13248 break;
13249 }
13250
cf13d699
NC
13251 case EM_MN10300:
13252 case EM_CYGNUS_MN10300:
13253 {
13254 static Elf_Internal_Sym * saved_sym = NULL;
252b5132 13255
f84ce13b
NC
13256 if (reloc == NULL)
13257 {
13258 saved_sym = NULL;
015dc7e1 13259 return true;
f84ce13b
NC
13260 }
13261
cf13d699
NC
13262 switch (reloc_type)
13263 {
13264 case 34: /* R_MN10300_ALIGN */
015dc7e1 13265 return true;
cf13d699 13266 case 33: /* R_MN10300_SYM_DIFF */
f84ce13b
NC
13267 if (sym_index >= num_syms)
13268 error (_("MN10300_SYM_DIFF reloc contains invalid symbol index %lu\n"),
13269 sym_index);
13270 else
13271 saved_sym = symtab + sym_index;
015dc7e1 13272 return true;
f84ce13b 13273
cf13d699
NC
13274 case 1: /* R_MN10300_32 */
13275 case 2: /* R_MN10300_16 */
13276 if (saved_sym != NULL)
13277 {
03f7786e 13278 int reloc_size = reloc_type == 1 ? 4 : 2;
cf13d699 13279 bfd_vma value;
252b5132 13280
f84ce13b
NC
13281 if (sym_index >= num_syms)
13282 error (_("MN10300 reloc contains invalid symbol index %lu\n"),
13283 sym_index);
03f7786e 13284 else
f84ce13b
NC
13285 {
13286 value = reloc->r_addend + (symtab[sym_index].st_value
13287 - saved_sym->st_value);
13288
b32e566b 13289 if (IN_RANGE (start, end, start + reloc->r_offset, reloc_size))
f84ce13b 13290 byte_put (start + reloc->r_offset, value, reloc_size);
b32e566b
NC
13291 else
13292 error (_("MN10300 sym diff reloc contains invalid offset: 0x%lx\n"),
13293 (long) reloc->r_offset);
f84ce13b 13294 }
252b5132 13295
cf13d699 13296 saved_sym = NULL;
015dc7e1 13297 return true;
cf13d699
NC
13298 }
13299 break;
13300 default:
13301 if (saved_sym != NULL)
071436c6 13302 error (_("Unhandled MN10300 reloc type found after SYM_DIFF reloc\n"));
cf13d699
NC
13303 break;
13304 }
13305 break;
13306 }
6ff71e76
NC
13307
13308 case EM_RL78:
13309 {
13310 static bfd_vma saved_sym1 = 0;
13311 static bfd_vma saved_sym2 = 0;
13312 static bfd_vma value;
13313
f84ce13b
NC
13314 if (reloc == NULL)
13315 {
13316 saved_sym1 = saved_sym2 = 0;
015dc7e1 13317 return true;
f84ce13b
NC
13318 }
13319
6ff71e76
NC
13320 switch (reloc_type)
13321 {
13322 case 0x80: /* R_RL78_SYM. */
13323 saved_sym1 = saved_sym2;
f84ce13b
NC
13324 if (sym_index >= num_syms)
13325 error (_("RL78_SYM reloc contains invalid symbol index %lu\n"),
13326 sym_index);
13327 else
13328 {
13329 saved_sym2 = symtab[sym_index].st_value;
13330 saved_sym2 += reloc->r_addend;
13331 }
015dc7e1 13332 return true;
6ff71e76
NC
13333
13334 case 0x83: /* R_RL78_OPsub. */
13335 value = saved_sym1 - saved_sym2;
13336 saved_sym2 = saved_sym1 = 0;
015dc7e1 13337 return true;
6ff71e76
NC
13338 break;
13339
13340 case 0x41: /* R_RL78_ABS32. */
b32e566b 13341 if (IN_RANGE (start, end, start + reloc->r_offset, 4))
03f7786e 13342 byte_put (start + reloc->r_offset, value, 4);
b32e566b
NC
13343 else
13344 error (_("RL78 sym diff reloc contains invalid offset: 0x%lx\n"),
13345 (long) reloc->r_offset);
6ff71e76 13346 value = 0;
015dc7e1 13347 return true;
6ff71e76
NC
13348
13349 case 0x43: /* R_RL78_ABS16. */
b32e566b 13350 if (IN_RANGE (start, end, start + reloc->r_offset, 2))
03f7786e 13351 byte_put (start + reloc->r_offset, value, 2);
b32e566b
NC
13352 else
13353 error (_("RL78 sym diff reloc contains invalid offset: 0x%lx\n"),
13354 (long) reloc->r_offset);
6ff71e76 13355 value = 0;
015dc7e1 13356 return true;
6ff71e76
NC
13357
13358 default:
13359 break;
13360 }
13361 break;
13362 }
252b5132
RH
13363 }
13364
015dc7e1 13365 return false;
252b5132
RH
13366}
13367
aca88567
NC
13368/* Returns TRUE iff RELOC_TYPE is a 32-bit absolute RELA relocation used in
13369 DWARF debug sections. This is a target specific test. Note - we do not
13370 go through the whole including-target-headers-multiple-times route, (as
13371 we have already done with <elf/h8.h>) because this would become very
13372 messy and even then this function would have to contain target specific
13373 information (the names of the relocs instead of their numeric values).
13374 FIXME: This is not the correct way to solve this problem. The proper way
13375 is to have target specific reloc sizing and typing functions created by
13376 the reloc-macros.h header, in the same way that it already creates the
13377 reloc naming functions. */
13378
015dc7e1 13379static bool
dda8d76d 13380is_32bit_abs_reloc (Filedata * filedata, unsigned int reloc_type)
aca88567 13381{
d347c9df 13382 /* Please keep this table alpha-sorted for ease of visual lookup. */
dda8d76d 13383 switch (filedata->file_header.e_machine)
aca88567 13384 {
41e92641 13385 case EM_386:
22abe556 13386 case EM_IAMCU:
41e92641 13387 return reloc_type == 1; /* R_386_32. */
aca88567
NC
13388 case EM_68K:
13389 return reloc_type == 1; /* R_68K_32. */
f954747f
AM
13390 case EM_860:
13391 return reloc_type == 1; /* R_860_32. */
13392 case EM_960:
13393 return reloc_type == 2; /* R_960_32. */
a06ea964 13394 case EM_AARCH64:
9282b95a
JW
13395 return (reloc_type == 258
13396 || reloc_type == 1); /* R_AARCH64_ABS32 || R_AARCH64_P32_ABS32 */
aca4efc7
JM
13397 case EM_BPF:
13398 return reloc_type == 11; /* R_BPF_DATA_32 */
d347c9df
PS
13399 case EM_ADAPTEVA_EPIPHANY:
13400 return reloc_type == 3;
aca88567 13401 case EM_ALPHA:
137b6b5f 13402 return reloc_type == 1; /* R_ALPHA_REFLONG. */
41e92641
NC
13403 case EM_ARC:
13404 return reloc_type == 1; /* R_ARC_32. */
886a2506
NC
13405 case EM_ARC_COMPACT:
13406 case EM_ARC_COMPACT2:
13407 return reloc_type == 4; /* R_ARC_32. */
41e92641
NC
13408 case EM_ARM:
13409 return reloc_type == 2; /* R_ARM_ABS32 */
cb8f3167 13410 case EM_AVR_OLD:
aca88567
NC
13411 case EM_AVR:
13412 return reloc_type == 1;
13413 case EM_BLACKFIN:
13414 return reloc_type == 0x12; /* R_byte4_data. */
13415 case EM_CRIS:
13416 return reloc_type == 3; /* R_CRIS_32. */
13417 case EM_CR16:
13418 return reloc_type == 3; /* R_CR16_NUM32. */
13419 case EM_CRX:
13420 return reloc_type == 15; /* R_CRX_NUM32. */
b8891f8d
AJ
13421 case EM_CSKY:
13422 return reloc_type == 1; /* R_CKCORE_ADDR32. */
aca88567
NC
13423 case EM_CYGNUS_FRV:
13424 return reloc_type == 1;
41e92641
NC
13425 case EM_CYGNUS_D10V:
13426 case EM_D10V:
13427 return reloc_type == 6; /* R_D10V_32. */
aca88567
NC
13428 case EM_CYGNUS_D30V:
13429 case EM_D30V:
13430 return reloc_type == 12; /* R_D30V_32_NORMAL. */
41e92641
NC
13431 case EM_DLX:
13432 return reloc_type == 3; /* R_DLX_RELOC_32. */
aca88567
NC
13433 case EM_CYGNUS_FR30:
13434 case EM_FR30:
13435 return reloc_type == 3; /* R_FR30_32. */
3f8107ab
AM
13436 case EM_FT32:
13437 return reloc_type == 1; /* R_FT32_32. */
aca88567
NC
13438 case EM_H8S:
13439 case EM_H8_300:
13440 case EM_H8_300H:
13441 return reloc_type == 1; /* R_H8_DIR32. */
3730236a 13442 case EM_IA_64:
262cdac7
AM
13443 return (reloc_type == 0x64 /* R_IA64_SECREL32MSB. */
13444 || reloc_type == 0x65 /* R_IA64_SECREL32LSB. */
13445 || reloc_type == 0x24 /* R_IA64_DIR32MSB. */
13446 || reloc_type == 0x25 /* R_IA64_DIR32LSB. */);
aca88567
NC
13447 case EM_IP2K_OLD:
13448 case EM_IP2K:
13449 return reloc_type == 2; /* R_IP2K_32. */
13450 case EM_IQ2000:
13451 return reloc_type == 2; /* R_IQ2000_32. */
84e94c90
NC
13452 case EM_LATTICEMICO32:
13453 return reloc_type == 3; /* R_LM32_32. */
ff7eeb89 13454 case EM_M32C_OLD:
aca88567
NC
13455 case EM_M32C:
13456 return reloc_type == 3; /* R_M32C_32. */
13457 case EM_M32R:
13458 return reloc_type == 34; /* R_M32R_32_RELA. */
adec12c1
AM
13459 case EM_68HC11:
13460 case EM_68HC12:
13461 return reloc_type == 6; /* R_M68HC11_32. */
7b4ae824 13462 case EM_S12Z:
2849d19f
JD
13463 return reloc_type == 7 || /* R_S12Z_EXT32 */
13464 reloc_type == 6; /* R_S12Z_CW32. */
aca88567
NC
13465 case EM_MCORE:
13466 return reloc_type == 1; /* R_MCORE_ADDR32. */
13467 case EM_CYGNUS_MEP:
13468 return reloc_type == 4; /* R_MEP_32. */
a3c62988
NC
13469 case EM_METAG:
13470 return reloc_type == 2; /* R_METAG_ADDR32. */
137b6b5f
AM
13471 case EM_MICROBLAZE:
13472 return reloc_type == 1; /* R_MICROBLAZE_32. */
aca88567
NC
13473 case EM_MIPS:
13474 return reloc_type == 2; /* R_MIPS_32. */
13475 case EM_MMIX:
13476 return reloc_type == 4; /* R_MMIX_32. */
13477 case EM_CYGNUS_MN10200:
13478 case EM_MN10200:
13479 return reloc_type == 1; /* R_MN10200_32. */
13480 case EM_CYGNUS_MN10300:
13481 case EM_MN10300:
13482 return reloc_type == 1; /* R_MN10300_32. */
5506d11a
AM
13483 case EM_MOXIE:
13484 return reloc_type == 1; /* R_MOXIE_32. */
aca88567
NC
13485 case EM_MSP430_OLD:
13486 case EM_MSP430:
13761a11 13487 return reloc_type == 1; /* R_MSP430_32 or R_MSP320_ABS32. */
aca88567
NC
13488 case EM_MT:
13489 return reloc_type == 2; /* R_MT_32. */
35c08157
KLC
13490 case EM_NDS32:
13491 return reloc_type == 20; /* R_NDS32_RELA. */
3e0873ac 13492 case EM_ALTERA_NIOS2:
36591ba1 13493 return reloc_type == 12; /* R_NIOS2_BFD_RELOC_32. */
3e0873ac
NC
13494 case EM_NIOS32:
13495 return reloc_type == 1; /* R_NIOS_32. */
73589c9d
CS
13496 case EM_OR1K:
13497 return reloc_type == 1; /* R_OR1K_32. */
aca88567 13498 case EM_PARISC:
9abca702 13499 return (reloc_type == 1 /* R_PARISC_DIR32. */
0df8ad28 13500 || reloc_type == 2 /* R_PARISC_DIR21L. */
5fda8eca 13501 || reloc_type == 41); /* R_PARISC_SECREL32. */
aca88567
NC
13502 case EM_PJ:
13503 case EM_PJ_OLD:
13504 return reloc_type == 1; /* R_PJ_DATA_DIR32. */
13505 case EM_PPC64:
13506 return reloc_type == 1; /* R_PPC64_ADDR32. */
13507 case EM_PPC:
13508 return reloc_type == 1; /* R_PPC_ADDR32. */
2b100bb5
DD
13509 case EM_TI_PRU:
13510 return reloc_type == 11; /* R_PRU_BFD_RELOC_32. */
e23eba97
NC
13511 case EM_RISCV:
13512 return reloc_type == 1; /* R_RISCV_32. */
99c513f6
DD
13513 case EM_RL78:
13514 return reloc_type == 1; /* R_RL78_DIR32. */
c7927a3c
NC
13515 case EM_RX:
13516 return reloc_type == 1; /* R_RX_DIR32. */
f954747f
AM
13517 case EM_S370:
13518 return reloc_type == 1; /* R_I370_ADDR31. */
aca88567
NC
13519 case EM_S390_OLD:
13520 case EM_S390:
13521 return reloc_type == 4; /* R_S390_32. */
41e92641
NC
13522 case EM_SCORE:
13523 return reloc_type == 8; /* R_SCORE_ABS32. */
aca88567
NC
13524 case EM_SH:
13525 return reloc_type == 1; /* R_SH_DIR32. */
13526 case EM_SPARC32PLUS:
13527 case EM_SPARCV9:
13528 case EM_SPARC:
13529 return reloc_type == 3 /* R_SPARC_32. */
13530 || reloc_type == 23; /* R_SPARC_UA32. */
a7dd7d05
AM
13531 case EM_SPU:
13532 return reloc_type == 6; /* R_SPU_ADDR32 */
40b36596
JM
13533 case EM_TI_C6000:
13534 return reloc_type == 1; /* R_C6000_ABS32. */
aa137e4d
NC
13535 case EM_TILEGX:
13536 return reloc_type == 2; /* R_TILEGX_32. */
13537 case EM_TILEPRO:
13538 return reloc_type == 1; /* R_TILEPRO_32. */
aca88567
NC
13539 case EM_CYGNUS_V850:
13540 case EM_V850:
13541 return reloc_type == 6; /* R_V850_ABS32. */
708e2187
NC
13542 case EM_V800:
13543 return reloc_type == 0x33; /* R_V810_WORD. */
aca88567
NC
13544 case EM_VAX:
13545 return reloc_type == 1; /* R_VAX_32. */
619ed720
EB
13546 case EM_VISIUM:
13547 return reloc_type == 3; /* R_VISIUM_32. */
f96bd6c2
PC
13548 case EM_WEBASSEMBLY:
13549 return reloc_type == 1; /* R_WASM32_32. */
aca88567 13550 case EM_X86_64:
8a9036a4 13551 case EM_L1OM:
7a9068fe 13552 case EM_K1OM:
aca88567 13553 return reloc_type == 10; /* R_X86_64_32. */
c29aca4a
NC
13554 case EM_XC16X:
13555 case EM_C166:
13556 return reloc_type == 3; /* R_XC16C_ABS_32. */
f6c1a2d5
NC
13557 case EM_XGATE:
13558 return reloc_type == 4; /* R_XGATE_32. */
aca88567
NC
13559 case EM_XSTORMY16:
13560 return reloc_type == 1; /* R_XSTROMY16_32. */
13561 case EM_XTENSA_OLD:
13562 case EM_XTENSA:
13563 return reloc_type == 1; /* R_XTENSA_32. */
6655dba2
SB
13564 case EM_Z80:
13565 return reloc_type == 6; /* R_Z80_32. */
aca88567 13566 default:
bee0ee85
NC
13567 {
13568 static unsigned int prev_warn = 0;
13569
13570 /* Avoid repeating the same warning multiple times. */
dda8d76d 13571 if (prev_warn != filedata->file_header.e_machine)
bee0ee85 13572 error (_("Missing knowledge of 32-bit reloc types used in DWARF sections of machine number %d\n"),
dda8d76d
NC
13573 filedata->file_header.e_machine);
13574 prev_warn = filedata->file_header.e_machine;
015dc7e1 13575 return false;
bee0ee85 13576 }
aca88567
NC
13577 }
13578}
13579
13580/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13581 a 32-bit pc-relative RELA relocation used in DWARF debug sections. */
13582
015dc7e1 13583static bool
dda8d76d 13584is_32bit_pcrel_reloc (Filedata * filedata, unsigned int reloc_type)
aca88567 13585{
dda8d76d 13586 switch (filedata->file_header.e_machine)
d347c9df 13587 /* Please keep this table alpha-sorted for ease of visual lookup. */
aca88567 13588 {
41e92641 13589 case EM_386:
22abe556 13590 case EM_IAMCU:
3e0873ac 13591 return reloc_type == 2; /* R_386_PC32. */
aca88567 13592 case EM_68K:
3e0873ac 13593 return reloc_type == 4; /* R_68K_PC32. */
a06ea964
NC
13594 case EM_AARCH64:
13595 return reloc_type == 261; /* R_AARCH64_PREL32 */
cfb8c092
NC
13596 case EM_ADAPTEVA_EPIPHANY:
13597 return reloc_type == 6;
aca88567
NC
13598 case EM_ALPHA:
13599 return reloc_type == 10; /* R_ALPHA_SREL32. */
726c18e1
CZ
13600 case EM_ARC_COMPACT:
13601 case EM_ARC_COMPACT2:
13602 return reloc_type == 49; /* R_ARC_32_PCREL. */
41e92641 13603 case EM_ARM:
3e0873ac 13604 return reloc_type == 3; /* R_ARM_REL32 */
d347c9df
PS
13605 case EM_AVR_OLD:
13606 case EM_AVR:
13607 return reloc_type == 36; /* R_AVR_32_PCREL. */
137b6b5f
AM
13608 case EM_MICROBLAZE:
13609 return reloc_type == 2; /* R_MICROBLAZE_32_PCREL. */
73589c9d
CS
13610 case EM_OR1K:
13611 return reloc_type == 9; /* R_OR1K_32_PCREL. */
aca88567 13612 case EM_PARISC:
85acf597 13613 return reloc_type == 9; /* R_PARISC_PCREL32. */
aca88567
NC
13614 case EM_PPC:
13615 return reloc_type == 26; /* R_PPC_REL32. */
13616 case EM_PPC64:
3e0873ac 13617 return reloc_type == 26; /* R_PPC64_REL32. */
25cbdcbb
AS
13618 case EM_RISCV:
13619 return reloc_type == 57; /* R_RISCV_32_PCREL. */
aca88567
NC
13620 case EM_S390_OLD:
13621 case EM_S390:
3e0873ac 13622 return reloc_type == 5; /* R_390_PC32. */
aca88567 13623 case EM_SH:
3e0873ac 13624 return reloc_type == 2; /* R_SH_REL32. */
aca88567
NC
13625 case EM_SPARC32PLUS:
13626 case EM_SPARCV9:
13627 case EM_SPARC:
3e0873ac 13628 return reloc_type == 6; /* R_SPARC_DISP32. */
a7dd7d05
AM
13629 case EM_SPU:
13630 return reloc_type == 13; /* R_SPU_REL32. */
aa137e4d
NC
13631 case EM_TILEGX:
13632 return reloc_type == 6; /* R_TILEGX_32_PCREL. */
13633 case EM_TILEPRO:
13634 return reloc_type == 4; /* R_TILEPRO_32_PCREL. */
619ed720
EB
13635 case EM_VISIUM:
13636 return reloc_type == 6; /* R_VISIUM_32_PCREL */
aca88567 13637 case EM_X86_64:
8a9036a4 13638 case EM_L1OM:
7a9068fe 13639 case EM_K1OM:
3e0873ac 13640 return reloc_type == 2; /* R_X86_64_PC32. */
2057d69d
CZ
13641 case EM_VAX:
13642 return reloc_type == 4; /* R_VAX_PCREL32. */
2fcb9706
BW
13643 case EM_XTENSA_OLD:
13644 case EM_XTENSA:
13645 return reloc_type == 14; /* R_XTENSA_32_PCREL. */
aca88567
NC
13646 default:
13647 /* Do not abort or issue an error message here. Not all targets use
13648 pc-relative 32-bit relocs in their DWARF debug information and we
13649 have already tested for target coverage in is_32bit_abs_reloc. A
cf13d699
NC
13650 more helpful warning message will be generated by apply_relocations
13651 anyway, so just return. */
015dc7e1 13652 return false;
aca88567
NC
13653 }
13654}
13655
13656/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13657 a 64-bit absolute RELA relocation used in DWARF debug sections. */
13658
015dc7e1 13659static bool
dda8d76d 13660is_64bit_abs_reloc (Filedata * filedata, unsigned int reloc_type)
aca88567 13661{
dda8d76d 13662 switch (filedata->file_header.e_machine)
aca88567 13663 {
a06ea964
NC
13664 case EM_AARCH64:
13665 return reloc_type == 257; /* R_AARCH64_ABS64. */
aca88567
NC
13666 case EM_ALPHA:
13667 return reloc_type == 2; /* R_ALPHA_REFQUAD. */
3730236a 13668 case EM_IA_64:
262cdac7
AM
13669 return (reloc_type == 0x26 /* R_IA64_DIR64MSB. */
13670 || reloc_type == 0x27 /* R_IA64_DIR64LSB. */);
3e0873ac
NC
13671 case EM_PARISC:
13672 return reloc_type == 80; /* R_PARISC_DIR64. */
aca88567
NC
13673 case EM_PPC64:
13674 return reloc_type == 38; /* R_PPC64_ADDR64. */
e23eba97
NC
13675 case EM_RISCV:
13676 return reloc_type == 2; /* R_RISCV_64. */
aca88567
NC
13677 case EM_SPARC32PLUS:
13678 case EM_SPARCV9:
13679 case EM_SPARC:
714da62f
NC
13680 return reloc_type == 32 /* R_SPARC_64. */
13681 || reloc_type == 54; /* R_SPARC_UA64. */
aca88567 13682 case EM_X86_64:
8a9036a4 13683 case EM_L1OM:
7a9068fe 13684 case EM_K1OM:
aca88567 13685 return reloc_type == 1; /* R_X86_64_64. */
e819ade1
AS
13686 case EM_S390_OLD:
13687 case EM_S390:
aa137e4d
NC
13688 return reloc_type == 22; /* R_S390_64. */
13689 case EM_TILEGX:
13690 return reloc_type == 1; /* R_TILEGX_64. */
85a82265 13691 case EM_MIPS:
aa137e4d 13692 return reloc_type == 18; /* R_MIPS_64. */
aca88567 13693 default:
015dc7e1 13694 return false;
aca88567
NC
13695 }
13696}
13697
85acf597
RH
13698/* Like is_32bit_pcrel_reloc except that it returns TRUE iff RELOC_TYPE is
13699 a 64-bit pc-relative RELA relocation used in DWARF debug sections. */
13700
015dc7e1 13701static bool
dda8d76d 13702is_64bit_pcrel_reloc (Filedata * filedata, unsigned int reloc_type)
85acf597 13703{
dda8d76d 13704 switch (filedata->file_header.e_machine)
85acf597 13705 {
a06ea964
NC
13706 case EM_AARCH64:
13707 return reloc_type == 260; /* R_AARCH64_PREL64. */
85acf597 13708 case EM_ALPHA:
aa137e4d 13709 return reloc_type == 11; /* R_ALPHA_SREL64. */
85acf597 13710 case EM_IA_64:
262cdac7
AM
13711 return (reloc_type == 0x4e /* R_IA64_PCREL64MSB. */
13712 || reloc_type == 0x4f /* R_IA64_PCREL64LSB. */);
85acf597 13713 case EM_PARISC:
aa137e4d 13714 return reloc_type == 72; /* R_PARISC_PCREL64. */
85acf597 13715 case EM_PPC64:
aa137e4d 13716 return reloc_type == 44; /* R_PPC64_REL64. */
85acf597
RH
13717 case EM_SPARC32PLUS:
13718 case EM_SPARCV9:
13719 case EM_SPARC:
aa137e4d 13720 return reloc_type == 46; /* R_SPARC_DISP64. */
85acf597 13721 case EM_X86_64:
8a9036a4 13722 case EM_L1OM:
7a9068fe 13723 case EM_K1OM:
aa137e4d 13724 return reloc_type == 24; /* R_X86_64_PC64. */
85acf597
RH
13725 case EM_S390_OLD:
13726 case EM_S390:
aa137e4d
NC
13727 return reloc_type == 23; /* R_S390_PC64. */
13728 case EM_TILEGX:
13729 return reloc_type == 5; /* R_TILEGX_64_PCREL. */
85acf597 13730 default:
015dc7e1 13731 return false;
85acf597
RH
13732 }
13733}
13734
4dc3c23d
AM
13735/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13736 a 24-bit absolute RELA relocation used in DWARF debug sections. */
13737
015dc7e1 13738static bool
dda8d76d 13739is_24bit_abs_reloc (Filedata * filedata, unsigned int reloc_type)
4dc3c23d 13740{
dda8d76d 13741 switch (filedata->file_header.e_machine)
4dc3c23d
AM
13742 {
13743 case EM_CYGNUS_MN10200:
13744 case EM_MN10200:
13745 return reloc_type == 4; /* R_MN10200_24. */
3ee6e4fb
NC
13746 case EM_FT32:
13747 return reloc_type == 5; /* R_FT32_20. */
6655dba2
SB
13748 case EM_Z80:
13749 return reloc_type == 5; /* R_Z80_24. */
4dc3c23d 13750 default:
015dc7e1 13751 return false;
4dc3c23d
AM
13752 }
13753}
13754
aca88567
NC
13755/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13756 a 16-bit absolute RELA relocation used in DWARF debug sections. */
13757
015dc7e1 13758static bool
dda8d76d 13759is_16bit_abs_reloc (Filedata * filedata, unsigned int reloc_type)
4b78141a 13760{
d347c9df 13761 /* Please keep this table alpha-sorted for ease of visual lookup. */
dda8d76d 13762 switch (filedata->file_header.e_machine)
4b78141a 13763 {
886a2506
NC
13764 case EM_ARC:
13765 case EM_ARC_COMPACT:
13766 case EM_ARC_COMPACT2:
13767 return reloc_type == 2; /* R_ARC_16. */
d347c9df
PS
13768 case EM_ADAPTEVA_EPIPHANY:
13769 return reloc_type == 5;
aca88567
NC
13770 case EM_AVR_OLD:
13771 case EM_AVR:
13772 return reloc_type == 4; /* R_AVR_16. */
41e92641
NC
13773 case EM_CYGNUS_D10V:
13774 case EM_D10V:
13775 return reloc_type == 3; /* R_D10V_16. */
81b42bca
JB
13776 case EM_FT32:
13777 return reloc_type == 2; /* R_FT32_16. */
4b78141a
NC
13778 case EM_H8S:
13779 case EM_H8_300:
13780 case EM_H8_300H:
aca88567
NC
13781 return reloc_type == R_H8_DIR16;
13782 case EM_IP2K_OLD:
13783 case EM_IP2K:
13784 return reloc_type == 1; /* R_IP2K_16. */
ff7eeb89 13785 case EM_M32C_OLD:
f4236fe4
DD
13786 case EM_M32C:
13787 return reloc_type == 1; /* R_M32C_16 */
d347c9df
PS
13788 case EM_CYGNUS_MN10200:
13789 case EM_MN10200:
13790 return reloc_type == 2; /* R_MN10200_16. */
13791 case EM_CYGNUS_MN10300:
13792 case EM_MN10300:
13793 return reloc_type == 2; /* R_MN10300_16. */
aca88567 13794 case EM_MSP430:
dda8d76d 13795 if (uses_msp430x_relocs (filedata))
13761a11 13796 return reloc_type == 2; /* R_MSP430_ABS16. */
1a0670f3 13797 /* Fall through. */
78c8d46c 13798 case EM_MSP430_OLD:
aca88567 13799 return reloc_type == 5; /* R_MSP430_16_BYTE. */
35c08157
KLC
13800 case EM_NDS32:
13801 return reloc_type == 19; /* R_NDS32_RELA. */
3e0873ac 13802 case EM_ALTERA_NIOS2:
36591ba1 13803 return reloc_type == 13; /* R_NIOS2_BFD_RELOC_16. */
3e0873ac
NC
13804 case EM_NIOS32:
13805 return reloc_type == 9; /* R_NIOS_16. */
73589c9d
CS
13806 case EM_OR1K:
13807 return reloc_type == 2; /* R_OR1K_16. */
39e07931
AS
13808 case EM_RISCV:
13809 return reloc_type == 55; /* R_RISCV_SET16. */
2b100bb5
DD
13810 case EM_TI_PRU:
13811 return reloc_type == 8; /* R_PRU_BFD_RELOC_16. */
40b36596
JM
13812 case EM_TI_C6000:
13813 return reloc_type == 2; /* R_C6000_ABS16. */
d347c9df
PS
13814 case EM_VISIUM:
13815 return reloc_type == 2; /* R_VISIUM_16. */
c29aca4a
NC
13816 case EM_XC16X:
13817 case EM_C166:
13818 return reloc_type == 2; /* R_XC16C_ABS_16. */
f6c1a2d5
NC
13819 case EM_XGATE:
13820 return reloc_type == 3; /* R_XGATE_16. */
6655dba2
SB
13821 case EM_Z80:
13822 return reloc_type == 4; /* R_Z80_16. */
4b78141a 13823 default:
015dc7e1 13824 return false;
4b78141a
NC
13825 }
13826}
13827
39e07931
AS
13828/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13829 a 8-bit absolute RELA relocation used in DWARF debug sections. */
13830
015dc7e1 13831static bool
39e07931
AS
13832is_8bit_abs_reloc (Filedata * filedata, unsigned int reloc_type)
13833{
13834 switch (filedata->file_header.e_machine)
13835 {
13836 case EM_RISCV:
13837 return reloc_type == 54; /* R_RISCV_SET8. */
6655dba2
SB
13838 case EM_Z80:
13839 return reloc_type == 1; /* R_Z80_8. */
39e07931 13840 default:
015dc7e1 13841 return false;
39e07931
AS
13842 }
13843}
13844
13845/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13846 a 6-bit absolute RELA relocation used in DWARF debug sections. */
13847
015dc7e1 13848static bool
39e07931
AS
13849is_6bit_abs_reloc (Filedata * filedata, unsigned int reloc_type)
13850{
13851 switch (filedata->file_header.e_machine)
13852 {
13853 case EM_RISCV:
13854 return reloc_type == 53; /* R_RISCV_SET6. */
13855 default:
015dc7e1 13856 return false;
39e07931
AS
13857 }
13858}
13859
03336641
JW
13860/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13861 a 32-bit inplace add RELA relocation used in DWARF debug sections. */
13862
015dc7e1 13863static bool
03336641
JW
13864is_32bit_inplace_add_reloc (Filedata * filedata, unsigned int reloc_type)
13865{
13866 /* Please keep this table alpha-sorted for ease of visual lookup. */
13867 switch (filedata->file_header.e_machine)
13868 {
13869 case EM_RISCV:
13870 return reloc_type == 35; /* R_RISCV_ADD32. */
13871 default:
015dc7e1 13872 return false;
03336641
JW
13873 }
13874}
13875
13876/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13877 a 32-bit inplace sub RELA relocation used in DWARF debug sections. */
13878
015dc7e1 13879static bool
03336641
JW
13880is_32bit_inplace_sub_reloc (Filedata * filedata, unsigned int reloc_type)
13881{
13882 /* Please keep this table alpha-sorted for ease of visual lookup. */
13883 switch (filedata->file_header.e_machine)
13884 {
13885 case EM_RISCV:
13886 return reloc_type == 39; /* R_RISCV_SUB32. */
13887 default:
015dc7e1 13888 return false;
03336641
JW
13889 }
13890}
13891
13892/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13893 a 64-bit inplace add RELA relocation used in DWARF debug sections. */
13894
015dc7e1 13895static bool
03336641
JW
13896is_64bit_inplace_add_reloc (Filedata * filedata, unsigned int reloc_type)
13897{
13898 /* Please keep this table alpha-sorted for ease of visual lookup. */
13899 switch (filedata->file_header.e_machine)
13900 {
13901 case EM_RISCV:
13902 return reloc_type == 36; /* R_RISCV_ADD64. */
13903 default:
015dc7e1 13904 return false;
03336641
JW
13905 }
13906}
13907
13908/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13909 a 64-bit inplace sub RELA relocation used in DWARF debug sections. */
13910
015dc7e1 13911static bool
03336641
JW
13912is_64bit_inplace_sub_reloc (Filedata * filedata, unsigned int reloc_type)
13913{
13914 /* Please keep this table alpha-sorted for ease of visual lookup. */
13915 switch (filedata->file_header.e_machine)
13916 {
13917 case EM_RISCV:
13918 return reloc_type == 40; /* R_RISCV_SUB64. */
13919 default:
015dc7e1 13920 return false;
03336641
JW
13921 }
13922}
13923
13924/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13925 a 16-bit inplace add RELA relocation used in DWARF debug sections. */
13926
015dc7e1 13927static bool
03336641
JW
13928is_16bit_inplace_add_reloc (Filedata * filedata, unsigned int reloc_type)
13929{
13930 /* Please keep this table alpha-sorted for ease of visual lookup. */
13931 switch (filedata->file_header.e_machine)
13932 {
13933 case EM_RISCV:
13934 return reloc_type == 34; /* R_RISCV_ADD16. */
13935 default:
015dc7e1 13936 return false;
03336641
JW
13937 }
13938}
13939
13940/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13941 a 16-bit inplace sub RELA relocation used in DWARF debug sections. */
13942
015dc7e1 13943static bool
03336641
JW
13944is_16bit_inplace_sub_reloc (Filedata * filedata, unsigned int reloc_type)
13945{
13946 /* Please keep this table alpha-sorted for ease of visual lookup. */
13947 switch (filedata->file_header.e_machine)
13948 {
13949 case EM_RISCV:
13950 return reloc_type == 38; /* R_RISCV_SUB16. */
13951 default:
015dc7e1 13952 return false;
03336641
JW
13953 }
13954}
13955
13956/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13957 a 8-bit inplace add RELA relocation used in DWARF debug sections. */
13958
015dc7e1 13959static bool
03336641
JW
13960is_8bit_inplace_add_reloc (Filedata * filedata, unsigned int reloc_type)
13961{
13962 /* Please keep this table alpha-sorted for ease of visual lookup. */
13963 switch (filedata->file_header.e_machine)
13964 {
13965 case EM_RISCV:
13966 return reloc_type == 33; /* R_RISCV_ADD8. */
13967 default:
015dc7e1 13968 return false;
03336641
JW
13969 }
13970}
13971
13972/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13973 a 8-bit inplace sub RELA relocation used in DWARF debug sections. */
13974
015dc7e1 13975static bool
03336641
JW
13976is_8bit_inplace_sub_reloc (Filedata * filedata, unsigned int reloc_type)
13977{
13978 /* Please keep this table alpha-sorted for ease of visual lookup. */
13979 switch (filedata->file_header.e_machine)
13980 {
13981 case EM_RISCV:
13982 return reloc_type == 37; /* R_RISCV_SUB8. */
13983 default:
015dc7e1 13984 return false;
03336641
JW
13985 }
13986}
13987
39e07931
AS
13988/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13989 a 6-bit inplace sub RELA relocation used in DWARF debug sections. */
13990
015dc7e1 13991static bool
39e07931
AS
13992is_6bit_inplace_sub_reloc (Filedata * filedata, unsigned int reloc_type)
13993{
13994 switch (filedata->file_header.e_machine)
13995 {
13996 case EM_RISCV:
13997 return reloc_type == 52; /* R_RISCV_SUB6. */
13998 default:
015dc7e1 13999 return false;
39e07931
AS
14000 }
14001}
14002
2a7b2e88
JK
14003/* Returns TRUE iff RELOC_TYPE is a NONE relocation used for discarded
14004 relocation entries (possibly formerly used for SHT_GROUP sections). */
14005
015dc7e1 14006static bool
dda8d76d 14007is_none_reloc (Filedata * filedata, unsigned int reloc_type)
2a7b2e88 14008{
dda8d76d 14009 switch (filedata->file_header.e_machine)
2a7b2e88 14010 {
cb8f3167 14011 case EM_386: /* R_386_NONE. */
d347c9df 14012 case EM_68K: /* R_68K_NONE. */
cfb8c092 14013 case EM_ADAPTEVA_EPIPHANY:
d347c9df
PS
14014 case EM_ALPHA: /* R_ALPHA_NONE. */
14015 case EM_ALTERA_NIOS2: /* R_NIOS2_NONE. */
886a2506 14016 case EM_ARC: /* R_ARC_NONE. */
886a2506 14017 case EM_ARC_COMPACT2: /* R_ARC_NONE. */
d347c9df 14018 case EM_ARC_COMPACT: /* R_ARC_NONE. */
cb8f3167 14019 case EM_ARM: /* R_ARM_NONE. */
d347c9df 14020 case EM_C166: /* R_XC16X_NONE. */
cb8f3167 14021 case EM_CRIS: /* R_CRIS_NONE. */
d347c9df
PS
14022 case EM_FT32: /* R_FT32_NONE. */
14023 case EM_IA_64: /* R_IA64_NONE. */
7a9068fe 14024 case EM_K1OM: /* R_X86_64_NONE. */
d347c9df
PS
14025 case EM_L1OM: /* R_X86_64_NONE. */
14026 case EM_M32R: /* R_M32R_NONE. */
14027 case EM_MIPS: /* R_MIPS_NONE. */
cb8f3167 14028 case EM_MN10300: /* R_MN10300_NONE. */
5506d11a 14029 case EM_MOXIE: /* R_MOXIE_NONE. */
d347c9df
PS
14030 case EM_NIOS32: /* R_NIOS_NONE. */
14031 case EM_OR1K: /* R_OR1K_NONE. */
14032 case EM_PARISC: /* R_PARISC_NONE. */
14033 case EM_PPC64: /* R_PPC64_NONE. */
14034 case EM_PPC: /* R_PPC_NONE. */
e23eba97 14035 case EM_RISCV: /* R_RISCV_NONE. */
d347c9df
PS
14036 case EM_S390: /* R_390_NONE. */
14037 case EM_S390_OLD:
14038 case EM_SH: /* R_SH_NONE. */
14039 case EM_SPARC32PLUS:
14040 case EM_SPARC: /* R_SPARC_NONE. */
14041 case EM_SPARCV9:
aa137e4d
NC
14042 case EM_TILEGX: /* R_TILEGX_NONE. */
14043 case EM_TILEPRO: /* R_TILEPRO_NONE. */
d347c9df
PS
14044 case EM_TI_C6000:/* R_C6000_NONE. */
14045 case EM_X86_64: /* R_X86_64_NONE. */
c29aca4a 14046 case EM_XC16X:
6655dba2 14047 case EM_Z80: /* R_Z80_NONE. */
f96bd6c2 14048 case EM_WEBASSEMBLY: /* R_WASM32_NONE. */
cb8f3167 14049 return reloc_type == 0;
d347c9df 14050
a06ea964
NC
14051 case EM_AARCH64:
14052 return reloc_type == 0 || reloc_type == 256;
d347c9df
PS
14053 case EM_AVR_OLD:
14054 case EM_AVR:
14055 return (reloc_type == 0 /* R_AVR_NONE. */
14056 || reloc_type == 30 /* R_AVR_DIFF8. */
14057 || reloc_type == 31 /* R_AVR_DIFF16. */
14058 || reloc_type == 32 /* R_AVR_DIFF32. */);
14059 case EM_METAG:
14060 return reloc_type == 3; /* R_METAG_NONE. */
35c08157
KLC
14061 case EM_NDS32:
14062 return (reloc_type == 0 /* R_XTENSA_NONE. */
14063 || reloc_type == 204 /* R_NDS32_DIFF8. */
14064 || reloc_type == 205 /* R_NDS32_DIFF16. */
14065 || reloc_type == 206 /* R_NDS32_DIFF32. */
14066 || reloc_type == 207 /* R_NDS32_ULEB128. */);
2b100bb5
DD
14067 case EM_TI_PRU:
14068 return (reloc_type == 0 /* R_PRU_NONE. */
14069 || reloc_type == 65 /* R_PRU_DIFF8. */
14070 || reloc_type == 66 /* R_PRU_DIFF16. */
14071 || reloc_type == 67 /* R_PRU_DIFF32. */);
58332dda
JK
14072 case EM_XTENSA_OLD:
14073 case EM_XTENSA:
4dc3c23d
AM
14074 return (reloc_type == 0 /* R_XTENSA_NONE. */
14075 || reloc_type == 17 /* R_XTENSA_DIFF8. */
14076 || reloc_type == 18 /* R_XTENSA_DIFF16. */
30ce8e47
MF
14077 || reloc_type == 19 /* R_XTENSA_DIFF32. */
14078 || reloc_type == 57 /* R_XTENSA_PDIFF8. */
14079 || reloc_type == 58 /* R_XTENSA_PDIFF16. */
14080 || reloc_type == 59 /* R_XTENSA_PDIFF32. */
14081 || reloc_type == 60 /* R_XTENSA_NDIFF8. */
14082 || reloc_type == 61 /* R_XTENSA_NDIFF16. */
14083 || reloc_type == 62 /* R_XTENSA_NDIFF32. */);
2a7b2e88 14084 }
015dc7e1 14085 return false;
2a7b2e88
JK
14086}
14087
d1c4b12b
NC
14088/* Returns TRUE if there is a relocation against
14089 section NAME at OFFSET bytes. */
14090
015dc7e1 14091bool
d1c4b12b
NC
14092reloc_at (struct dwarf_section * dsec, dwarf_vma offset)
14093{
14094 Elf_Internal_Rela * relocs;
14095 Elf_Internal_Rela * rp;
14096
14097 if (dsec == NULL || dsec->reloc_info == NULL)
015dc7e1 14098 return false;
d1c4b12b
NC
14099
14100 relocs = (Elf_Internal_Rela *) dsec->reloc_info;
14101
14102 for (rp = relocs; rp < relocs + dsec->num_relocs; ++rp)
14103 if (rp->r_offset == offset)
015dc7e1 14104 return true;
d1c4b12b 14105
015dc7e1 14106 return false;
d1c4b12b
NC
14107}
14108
cf13d699 14109/* Apply relocations to a section.
32ec8896
NC
14110 Returns TRUE upon success, FALSE otherwise.
14111 If RELOCS_RETURN is non-NULL then it is set to point to the loaded relocs.
14112 It is then the caller's responsibility to free them. NUM_RELOCS_RETURN
14113 will be set to the number of relocs loaded.
14114
cf13d699 14115 Note: So far support has been added only for those relocations
32ec8896
NC
14116 which can be found in debug sections. FIXME: Add support for
14117 more relocations ? */
1b315056 14118
015dc7e1 14119static bool
dda8d76d 14120apply_relocations (Filedata * filedata,
d1c4b12b
NC
14121 const Elf_Internal_Shdr * section,
14122 unsigned char * start,
14123 bfd_size_type size,
1449284b 14124 void ** relocs_return,
d1c4b12b 14125 unsigned long * num_relocs_return)
1b315056 14126{
cf13d699 14127 Elf_Internal_Shdr * relsec;
0d2a7a93 14128 unsigned char * end = start + size;
cb8f3167 14129
d1c4b12b
NC
14130 if (relocs_return != NULL)
14131 {
14132 * (Elf_Internal_Rela **) relocs_return = NULL;
14133 * num_relocs_return = 0;
14134 }
14135
dda8d76d 14136 if (filedata->file_header.e_type != ET_REL)
32ec8896 14137 /* No relocs to apply. */
015dc7e1 14138 return true;
1b315056 14139
cf13d699 14140 /* Find the reloc section associated with the section. */
dda8d76d
NC
14141 for (relsec = filedata->section_headers;
14142 relsec < filedata->section_headers + filedata->file_header.e_shnum;
5b18a4bc 14143 ++relsec)
252b5132 14144 {
015dc7e1 14145 bool is_rela;
41e92641 14146 unsigned long num_relocs;
2cf0635d
NC
14147 Elf_Internal_Rela * relocs;
14148 Elf_Internal_Rela * rp;
14149 Elf_Internal_Shdr * symsec;
14150 Elf_Internal_Sym * symtab;
ba5cdace 14151 unsigned long num_syms;
2cf0635d 14152 Elf_Internal_Sym * sym;
252b5132 14153
41e92641 14154 if ((relsec->sh_type != SHT_RELA && relsec->sh_type != SHT_REL)
dda8d76d
NC
14155 || relsec->sh_info >= filedata->file_header.e_shnum
14156 || filedata->section_headers + relsec->sh_info != section
c256ffe7 14157 || relsec->sh_size == 0
dda8d76d 14158 || relsec->sh_link >= filedata->file_header.e_shnum)
5b18a4bc 14159 continue;
428409d5 14160
a788aedd
AM
14161 symsec = filedata->section_headers + relsec->sh_link;
14162 if (symsec->sh_type != SHT_SYMTAB
14163 && symsec->sh_type != SHT_DYNSYM)
015dc7e1 14164 return false;
a788aedd 14165
41e92641
NC
14166 is_rela = relsec->sh_type == SHT_RELA;
14167
14168 if (is_rela)
14169 {
dda8d76d 14170 if (!slurp_rela_relocs (filedata, relsec->sh_offset,
3f5e193b 14171 relsec->sh_size, & relocs, & num_relocs))
015dc7e1 14172 return false;
41e92641
NC
14173 }
14174 else
14175 {
dda8d76d 14176 if (!slurp_rel_relocs (filedata, relsec->sh_offset,
3f5e193b 14177 relsec->sh_size, & relocs, & num_relocs))
015dc7e1 14178 return false;
41e92641
NC
14179 }
14180
14181 /* SH uses RELA but uses in place value instead of the addend field. */
dda8d76d 14182 if (filedata->file_header.e_machine == EM_SH)
015dc7e1 14183 is_rela = false;
428409d5 14184
dda8d76d 14185 symtab = GET_ELF_SYMBOLS (filedata, symsec, & num_syms);
103f02d3 14186
41e92641 14187 for (rp = relocs; rp < relocs + num_relocs; ++rp)
252b5132 14188 {
015dc7e1
AM
14189 bfd_vma addend;
14190 unsigned int reloc_type;
14191 unsigned int reloc_size;
14192 bool reloc_inplace = false;
14193 bool reloc_subtract = false;
14194 unsigned char *rloc;
14195 unsigned long sym_index;
4b78141a 14196
dda8d76d 14197 reloc_type = get_reloc_type (filedata, rp->r_info);
41e92641 14198
dda8d76d 14199 if (target_specific_reloc_handling (filedata, rp, start, end, symtab, num_syms))
2a7b2e88 14200 continue;
dda8d76d 14201 else if (is_none_reloc (filedata, reloc_type))
98fb390a 14202 continue;
dda8d76d
NC
14203 else if (is_32bit_abs_reloc (filedata, reloc_type)
14204 || is_32bit_pcrel_reloc (filedata, reloc_type))
aca88567 14205 reloc_size = 4;
dda8d76d
NC
14206 else if (is_64bit_abs_reloc (filedata, reloc_type)
14207 || is_64bit_pcrel_reloc (filedata, reloc_type))
aca88567 14208 reloc_size = 8;
dda8d76d 14209 else if (is_24bit_abs_reloc (filedata, reloc_type))
4dc3c23d 14210 reloc_size = 3;
dda8d76d 14211 else if (is_16bit_abs_reloc (filedata, reloc_type))
aca88567 14212 reloc_size = 2;
39e07931
AS
14213 else if (is_8bit_abs_reloc (filedata, reloc_type)
14214 || is_6bit_abs_reloc (filedata, reloc_type))
14215 reloc_size = 1;
03336641
JW
14216 else if ((reloc_subtract = is_32bit_inplace_sub_reloc (filedata,
14217 reloc_type))
14218 || is_32bit_inplace_add_reloc (filedata, reloc_type))
14219 {
14220 reloc_size = 4;
015dc7e1 14221 reloc_inplace = true;
03336641
JW
14222 }
14223 else if ((reloc_subtract = is_64bit_inplace_sub_reloc (filedata,
14224 reloc_type))
14225 || is_64bit_inplace_add_reloc (filedata, reloc_type))
14226 {
14227 reloc_size = 8;
015dc7e1 14228 reloc_inplace = true;
03336641
JW
14229 }
14230 else if ((reloc_subtract = is_16bit_inplace_sub_reloc (filedata,
14231 reloc_type))
14232 || is_16bit_inplace_add_reloc (filedata, reloc_type))
14233 {
14234 reloc_size = 2;
015dc7e1 14235 reloc_inplace = true;
03336641
JW
14236 }
14237 else if ((reloc_subtract = is_8bit_inplace_sub_reloc (filedata,
14238 reloc_type))
14239 || is_8bit_inplace_add_reloc (filedata, reloc_type))
14240 {
14241 reloc_size = 1;
015dc7e1 14242 reloc_inplace = true;
03336641 14243 }
39e07931
AS
14244 else if ((reloc_subtract = is_6bit_inplace_sub_reloc (filedata,
14245 reloc_type)))
14246 {
14247 reloc_size = 1;
015dc7e1 14248 reloc_inplace = true;
39e07931 14249 }
aca88567 14250 else
4b78141a 14251 {
bee0ee85 14252 static unsigned int prev_reloc = 0;
dda8d76d 14253
bee0ee85
NC
14254 if (reloc_type != prev_reloc)
14255 warn (_("unable to apply unsupported reloc type %d to section %s\n"),
dda8d76d 14256 reloc_type, printable_section_name (filedata, section));
bee0ee85 14257 prev_reloc = reloc_type;
4b78141a
NC
14258 continue;
14259 }
103f02d3 14260
91d6fa6a 14261 rloc = start + rp->r_offset;
75802ccb 14262 if (!IN_RANGE (start, end, rloc, reloc_size))
700dd8b7
L
14263 {
14264 warn (_("skipping invalid relocation offset 0x%lx in section %s\n"),
14265 (unsigned long) rp->r_offset,
dda8d76d 14266 printable_section_name (filedata, section));
700dd8b7
L
14267 continue;
14268 }
103f02d3 14269
ba5cdace
NC
14270 sym_index = (unsigned long) get_reloc_symindex (rp->r_info);
14271 if (sym_index >= num_syms)
14272 {
14273 warn (_("skipping invalid relocation symbol index 0x%lx in section %s\n"),
dda8d76d 14274 sym_index, printable_section_name (filedata, section));
ba5cdace
NC
14275 continue;
14276 }
14277 sym = symtab + sym_index;
41e92641
NC
14278
14279 /* If the reloc has a symbol associated with it,
55f25fc3
L
14280 make sure that it is of an appropriate type.
14281
14282 Relocations against symbols without type can happen.
14283 Gcc -feliminate-dwarf2-dups may generate symbols
14284 without type for debug info.
14285
14286 Icc generates relocations against function symbols
14287 instead of local labels.
14288
14289 Relocations against object symbols can happen, eg when
14290 referencing a global array. For an example of this see
14291 the _clz.o binary in libgcc.a. */
aca88567 14292 if (sym != symtab
b8871f35 14293 && ELF_ST_TYPE (sym->st_info) != STT_COMMON
55f25fc3 14294 && ELF_ST_TYPE (sym->st_info) > STT_SECTION)
5b18a4bc 14295 {
d3a49aa8 14296 warn (_("skipping unexpected symbol type %s in section %s relocation %ld\n"),
dda8d76d
NC
14297 get_symbol_type (filedata, ELF_ST_TYPE (sym->st_info)),
14298 printable_section_name (filedata, relsec),
d3a49aa8 14299 (long int)(rp - relocs));
aca88567 14300 continue;
5b18a4bc 14301 }
252b5132 14302
4dc3c23d
AM
14303 addend = 0;
14304 if (is_rela)
14305 addend += rp->r_addend;
c47320c3
AM
14306 /* R_XTENSA_32, R_PJ_DATA_DIR32 and R_D30V_32_NORMAL are
14307 partial_inplace. */
4dc3c23d 14308 if (!is_rela
dda8d76d 14309 || (filedata->file_header.e_machine == EM_XTENSA
4dc3c23d 14310 && reloc_type == 1)
dda8d76d
NC
14311 || ((filedata->file_header.e_machine == EM_PJ
14312 || filedata->file_header.e_machine == EM_PJ_OLD)
c47320c3 14313 && reloc_type == 1)
dda8d76d
NC
14314 || ((filedata->file_header.e_machine == EM_D30V
14315 || filedata->file_header.e_machine == EM_CYGNUS_D30V)
03336641
JW
14316 && reloc_type == 12)
14317 || reloc_inplace)
39e07931
AS
14318 {
14319 if (is_6bit_inplace_sub_reloc (filedata, reloc_type))
14320 addend += byte_get (rloc, reloc_size) & 0x3f;
14321 else
14322 addend += byte_get (rloc, reloc_size);
14323 }
cb8f3167 14324
dda8d76d
NC
14325 if (is_32bit_pcrel_reloc (filedata, reloc_type)
14326 || is_64bit_pcrel_reloc (filedata, reloc_type))
85acf597
RH
14327 {
14328 /* On HPPA, all pc-relative relocations are biased by 8. */
dda8d76d 14329 if (filedata->file_header.e_machine == EM_PARISC)
85acf597 14330 addend -= 8;
91d6fa6a 14331 byte_put (rloc, (addend + sym->st_value) - rp->r_offset,
85acf597
RH
14332 reloc_size);
14333 }
39e07931
AS
14334 else if (is_6bit_abs_reloc (filedata, reloc_type)
14335 || is_6bit_inplace_sub_reloc (filedata, reloc_type))
14336 {
14337 if (reloc_subtract)
14338 addend -= sym->st_value;
14339 else
14340 addend += sym->st_value;
14341 addend = (addend & 0x3f) | (byte_get (rloc, reloc_size) & 0xc0);
14342 byte_put (rloc, addend, reloc_size);
14343 }
03336641
JW
14344 else if (reloc_subtract)
14345 byte_put (rloc, addend - sym->st_value, reloc_size);
41e92641 14346 else
91d6fa6a 14347 byte_put (rloc, addend + sym->st_value, reloc_size);
5b18a4bc 14348 }
252b5132 14349
5b18a4bc 14350 free (symtab);
f84ce13b
NC
14351 /* Let the target specific reloc processing code know that
14352 we have finished with these relocs. */
dda8d76d 14353 target_specific_reloc_handling (filedata, NULL, NULL, NULL, NULL, 0);
d1c4b12b
NC
14354
14355 if (relocs_return)
14356 {
14357 * (Elf_Internal_Rela **) relocs_return = relocs;
14358 * num_relocs_return = num_relocs;
14359 }
14360 else
14361 free (relocs);
14362
5b18a4bc
NC
14363 break;
14364 }
32ec8896 14365
015dc7e1 14366 return true;
5b18a4bc 14367}
103f02d3 14368
cf13d699 14369#ifdef SUPPORT_DISASSEMBLY
015dc7e1 14370static bool
dda8d76d 14371disassemble_section (Elf_Internal_Shdr * section, Filedata * filedata)
cf13d699 14372{
dda8d76d 14373 printf (_("\nAssembly dump of section %s\n"), printable_section_name (filedata, section));
cf13d699 14374
74e1a04b 14375 /* FIXME: XXX -- to be done --- XXX */
cf13d699 14376
015dc7e1 14377 return true;
cf13d699
NC
14378}
14379#endif
14380
14381/* Reads in the contents of SECTION from FILE, returning a pointer
14382 to a malloc'ed buffer or NULL if something went wrong. */
14383
14384static char *
dda8d76d 14385get_section_contents (Elf_Internal_Shdr * section, Filedata * filedata)
cf13d699 14386{
dda8d76d 14387 bfd_size_type num_bytes = section->sh_size;
cf13d699
NC
14388
14389 if (num_bytes == 0 || section->sh_type == SHT_NOBITS)
14390 {
c6b78c96 14391 printf (_("Section '%s' has no data to dump.\n"),
dda8d76d 14392 printable_section_name (filedata, section));
cf13d699
NC
14393 return NULL;
14394 }
14395
dda8d76d 14396 return (char *) get_data (NULL, filedata, section->sh_offset, 1, num_bytes,
3f5e193b 14397 _("section contents"));
cf13d699
NC
14398}
14399
0e602686
NC
14400/* Uncompresses a section that was compressed using zlib, in place. */
14401
015dc7e1 14402static bool
dda8d76d
NC
14403uncompress_section_contents (unsigned char ** buffer,
14404 dwarf_size_type uncompressed_size,
14405 dwarf_size_type * size)
0e602686
NC
14406{
14407 dwarf_size_type compressed_size = *size;
14408 unsigned char * compressed_buffer = *buffer;
14409 unsigned char * uncompressed_buffer;
14410 z_stream strm;
14411 int rc;
14412
14413 /* It is possible the section consists of several compressed
14414 buffers concatenated together, so we uncompress in a loop. */
14415 /* PR 18313: The state field in the z_stream structure is supposed
14416 to be invisible to the user (ie us), but some compilers will
14417 still complain about it being used without initialisation. So
14418 we first zero the entire z_stream structure and then set the fields
14419 that we need. */
14420 memset (& strm, 0, sizeof strm);
14421 strm.avail_in = compressed_size;
14422 strm.next_in = (Bytef *) compressed_buffer;
14423 strm.avail_out = uncompressed_size;
14424 uncompressed_buffer = (unsigned char *) xmalloc (uncompressed_size);
14425
14426 rc = inflateInit (& strm);
14427 while (strm.avail_in > 0)
14428 {
14429 if (rc != Z_OK)
3624a6c1 14430 break;
0e602686
NC
14431 strm.next_out = ((Bytef *) uncompressed_buffer
14432 + (uncompressed_size - strm.avail_out));
14433 rc = inflate (&strm, Z_FINISH);
14434 if (rc != Z_STREAM_END)
3624a6c1 14435 break;
0e602686
NC
14436 rc = inflateReset (& strm);
14437 }
ad92f33d
AM
14438 if (inflateEnd (& strm) != Z_OK
14439 || rc != Z_OK
0e602686
NC
14440 || strm.avail_out != 0)
14441 goto fail;
14442
14443 *buffer = uncompressed_buffer;
14444 *size = uncompressed_size;
015dc7e1 14445 return true;
0e602686
NC
14446
14447 fail:
14448 free (uncompressed_buffer);
14449 /* Indicate decompression failure. */
14450 *buffer = NULL;
015dc7e1 14451 return false;
0e602686 14452}
dd24e3da 14453
015dc7e1 14454static bool
dda8d76d 14455dump_section_as_strings (Elf_Internal_Shdr * section, Filedata * filedata)
cf13d699 14456{
015dc7e1
AM
14457 Elf_Internal_Shdr *relsec;
14458 bfd_size_type num_bytes;
14459 unsigned char *data;
14460 unsigned char *end;
14461 unsigned char *real_start;
14462 unsigned char *start;
14463 bool some_strings_shown;
cf13d699 14464
dda8d76d 14465 real_start = start = (unsigned char *) get_section_contents (section, filedata);
cf13d699 14466 if (start == NULL)
c6b78c96 14467 /* PR 21820: Do not fail if the section was empty. */
63b4cc53 14468 return section->sh_size == 0 || section->sh_type == SHT_NOBITS;
c6b78c96 14469
0e602686 14470 num_bytes = section->sh_size;
cf13d699 14471
835f2fae
NC
14472 if (filedata->is_separate)
14473 printf (_("\nString dump of section '%s' in linked file %s:\n"),
14474 printable_section_name (filedata, section),
14475 filedata->file_name);
14476 else
14477 printf (_("\nString dump of section '%s':\n"),
14478 printable_section_name (filedata, section));
cf13d699 14479
0e602686
NC
14480 if (decompress_dumps)
14481 {
14482 dwarf_size_type new_size = num_bytes;
14483 dwarf_size_type uncompressed_size = 0;
14484
14485 if ((section->sh_flags & SHF_COMPRESSED) != 0)
14486 {
14487 Elf_Internal_Chdr chdr;
14488 unsigned int compression_header_size
ebdf1ebf
NC
14489 = get_compression_header (& chdr, (unsigned char *) start,
14490 num_bytes);
5844b465
NC
14491 if (compression_header_size == 0)
14492 /* An error message will have already been generated
14493 by get_compression_header. */
14494 goto error_out;
0e602686 14495
813dabb9 14496 if (chdr.ch_type != ELFCOMPRESS_ZLIB)
0e602686 14497 {
813dabb9 14498 warn (_("section '%s' has unsupported compress type: %d\n"),
dda8d76d 14499 printable_section_name (filedata, section), chdr.ch_type);
f761cb13 14500 goto error_out;
813dabb9 14501 }
813dabb9
L
14502 uncompressed_size = chdr.ch_size;
14503 start += compression_header_size;
14504 new_size -= compression_header_size;
0e602686
NC
14505 }
14506 else if (new_size > 12 && streq ((char *) start, "ZLIB"))
14507 {
14508 /* Read the zlib header. In this case, it should be "ZLIB"
14509 followed by the uncompressed section size, 8 bytes in
14510 big-endian order. */
14511 uncompressed_size = start[4]; uncompressed_size <<= 8;
14512 uncompressed_size += start[5]; uncompressed_size <<= 8;
14513 uncompressed_size += start[6]; uncompressed_size <<= 8;
14514 uncompressed_size += start[7]; uncompressed_size <<= 8;
14515 uncompressed_size += start[8]; uncompressed_size <<= 8;
14516 uncompressed_size += start[9]; uncompressed_size <<= 8;
14517 uncompressed_size += start[10]; uncompressed_size <<= 8;
14518 uncompressed_size += start[11];
14519 start += 12;
14520 new_size -= 12;
14521 }
14522
1835f746
NC
14523 if (uncompressed_size)
14524 {
14525 if (uncompress_section_contents (& start,
14526 uncompressed_size, & new_size))
14527 num_bytes = new_size;
14528 else
14529 {
14530 error (_("Unable to decompress section %s\n"),
dda8d76d 14531 printable_section_name (filedata, section));
f761cb13 14532 goto error_out;
1835f746
NC
14533 }
14534 }
bc303e5d
NC
14535 else
14536 start = real_start;
0e602686 14537 }
fd8008d8 14538
cf13d699
NC
14539 /* If the section being dumped has relocations against it the user might
14540 be expecting these relocations to have been applied. Check for this
14541 case and issue a warning message in order to avoid confusion.
14542 FIXME: Maybe we ought to have an option that dumps a section with
14543 relocs applied ? */
dda8d76d
NC
14544 for (relsec = filedata->section_headers;
14545 relsec < filedata->section_headers + filedata->file_header.e_shnum;
cf13d699
NC
14546 ++relsec)
14547 {
14548 if ((relsec->sh_type != SHT_RELA && relsec->sh_type != SHT_REL)
dda8d76d
NC
14549 || relsec->sh_info >= filedata->file_header.e_shnum
14550 || filedata->section_headers + relsec->sh_info != section
cf13d699 14551 || relsec->sh_size == 0
dda8d76d 14552 || relsec->sh_link >= filedata->file_header.e_shnum)
cf13d699
NC
14553 continue;
14554
14555 printf (_(" Note: This section has relocations against it, but these have NOT been applied to this dump.\n"));
14556 break;
14557 }
14558
cf13d699
NC
14559 data = start;
14560 end = start + num_bytes;
015dc7e1 14561 some_strings_shown = false;
cf13d699 14562
ba3265d0
NC
14563#ifdef HAVE_MBSTATE_T
14564 mbstate_t state;
14565 /* Initialise the multibyte conversion state. */
14566 memset (& state, 0, sizeof (state));
14567#endif
14568
015dc7e1 14569 bool continuing = false;
ba3265d0 14570
cf13d699
NC
14571 while (data < end)
14572 {
14573 while (!ISPRINT (* data))
14574 if (++ data >= end)
14575 break;
14576
14577 if (data < end)
14578 {
071436c6
NC
14579 size_t maxlen = end - data;
14580
ba3265d0
NC
14581 if (continuing)
14582 {
14583 printf (" ");
015dc7e1 14584 continuing = false;
ba3265d0
NC
14585 }
14586 else
14587 {
d1ce973e 14588 printf (" [%6lx] ", (unsigned long) (data - start));
ba3265d0
NC
14589 }
14590
4082ef84
NC
14591 if (maxlen > 0)
14592 {
f3da8a96 14593 char c = 0;
ba3265d0
NC
14594
14595 while (maxlen)
14596 {
14597 c = *data++;
14598
14599 if (c == 0)
14600 break;
14601
14602 /* PR 25543: Treat new-lines as string-ending characters. */
14603 if (c == '\n')
14604 {
14605 printf ("\\n\n");
14606 if (*data != 0)
015dc7e1 14607 continuing = true;
ba3265d0
NC
14608 break;
14609 }
14610
14611 /* Do not print control characters directly as they can affect terminal
14612 settings. Such characters usually appear in the names generated
14613 by the assembler for local labels. */
14614 if (ISCNTRL (c))
14615 {
14616 printf ("^%c", c + 0x40);
14617 }
14618 else if (ISPRINT (c))
14619 {
14620 putchar (c);
14621 }
14622 else
14623 {
14624 size_t n;
14625#ifdef HAVE_MBSTATE_T
14626 wchar_t w;
14627#endif
14628 /* Let printf do the hard work of displaying multibyte characters. */
14629 printf ("%.1s", data - 1);
14630#ifdef HAVE_MBSTATE_T
14631 /* Try to find out how many bytes made up the character that was
14632 just printed. Advance the symbol pointer past the bytes that
14633 were displayed. */
14634 n = mbrtowc (& w, (char *)(data - 1), MB_CUR_MAX, & state);
14635#else
14636 n = 1;
14637#endif
14638 if (n != (size_t) -1 && n != (size_t) -2 && n > 0)
14639 data += (n - 1);
14640 }
14641 }
14642
14643 if (c != '\n')
14644 putchar ('\n');
4082ef84
NC
14645 }
14646 else
14647 {
14648 printf (_("<corrupt>\n"));
14649 data = end;
14650 }
015dc7e1 14651 some_strings_shown = true;
cf13d699
NC
14652 }
14653 }
14654
14655 if (! some_strings_shown)
14656 printf (_(" No strings found in this section."));
14657
0e602686 14658 free (real_start);
cf13d699
NC
14659
14660 putchar ('\n');
015dc7e1 14661 return true;
f761cb13
AM
14662
14663error_out:
14664 free (real_start);
015dc7e1 14665 return false;
cf13d699
NC
14666}
14667
015dc7e1
AM
14668static bool
14669dump_section_as_bytes (Elf_Internal_Shdr *section,
14670 Filedata *filedata,
14671 bool relocate)
cf13d699
NC
14672{
14673 Elf_Internal_Shdr * relsec;
0e602686
NC
14674 bfd_size_type bytes;
14675 bfd_size_type section_size;
14676 bfd_vma addr;
14677 unsigned char * data;
14678 unsigned char * real_start;
14679 unsigned char * start;
14680
dda8d76d 14681 real_start = start = (unsigned char *) get_section_contents (section, filedata);
cf13d699 14682 if (start == NULL)
c6b78c96 14683 /* PR 21820: Do not fail if the section was empty. */
63b4cc53 14684 return section->sh_size == 0 || section->sh_type == SHT_NOBITS;
32ec8896 14685
0e602686 14686 section_size = section->sh_size;
cf13d699 14687
835f2fae
NC
14688 if (filedata->is_separate)
14689 printf (_("\nHex dump of section '%s' in linked file %s:\n"),
14690 printable_section_name (filedata, section),
14691 filedata->file_name);
14692 else
14693 printf (_("\nHex dump of section '%s':\n"),
14694 printable_section_name (filedata, section));
cf13d699 14695
0e602686
NC
14696 if (decompress_dumps)
14697 {
14698 dwarf_size_type new_size = section_size;
14699 dwarf_size_type uncompressed_size = 0;
14700
14701 if ((section->sh_flags & SHF_COMPRESSED) != 0)
14702 {
14703 Elf_Internal_Chdr chdr;
14704 unsigned int compression_header_size
ebdf1ebf 14705 = get_compression_header (& chdr, start, section_size);
0e602686 14706
5844b465
NC
14707 if (compression_header_size == 0)
14708 /* An error message will have already been generated
14709 by get_compression_header. */
14710 goto error_out;
14711
813dabb9 14712 if (chdr.ch_type != ELFCOMPRESS_ZLIB)
0e602686 14713 {
813dabb9 14714 warn (_("section '%s' has unsupported compress type: %d\n"),
dda8d76d 14715 printable_section_name (filedata, section), chdr.ch_type);
f761cb13 14716 goto error_out;
0e602686 14717 }
813dabb9
L
14718 uncompressed_size = chdr.ch_size;
14719 start += compression_header_size;
14720 new_size -= compression_header_size;
0e602686
NC
14721 }
14722 else if (new_size > 12 && streq ((char *) start, "ZLIB"))
14723 {
14724 /* Read the zlib header. In this case, it should be "ZLIB"
14725 followed by the uncompressed section size, 8 bytes in
14726 big-endian order. */
14727 uncompressed_size = start[4]; uncompressed_size <<= 8;
14728 uncompressed_size += start[5]; uncompressed_size <<= 8;
14729 uncompressed_size += start[6]; uncompressed_size <<= 8;
14730 uncompressed_size += start[7]; uncompressed_size <<= 8;
14731 uncompressed_size += start[8]; uncompressed_size <<= 8;
14732 uncompressed_size += start[9]; uncompressed_size <<= 8;
14733 uncompressed_size += start[10]; uncompressed_size <<= 8;
14734 uncompressed_size += start[11];
14735 start += 12;
14736 new_size -= 12;
14737 }
14738
f055032e
NC
14739 if (uncompressed_size)
14740 {
14741 if (uncompress_section_contents (& start, uncompressed_size,
14742 & new_size))
bc303e5d
NC
14743 {
14744 section_size = new_size;
14745 }
f055032e
NC
14746 else
14747 {
14748 error (_("Unable to decompress section %s\n"),
dda8d76d 14749 printable_section_name (filedata, section));
bc303e5d 14750 /* FIXME: Print the section anyway ? */
f761cb13 14751 goto error_out;
f055032e
NC
14752 }
14753 }
bc303e5d
NC
14754 else
14755 start = real_start;
0e602686 14756 }
14ae95f2 14757
cf13d699
NC
14758 if (relocate)
14759 {
dda8d76d 14760 if (! apply_relocations (filedata, section, start, section_size, NULL, NULL))
f761cb13 14761 goto error_out;
cf13d699
NC
14762 }
14763 else
14764 {
14765 /* If the section being dumped has relocations against it the user might
14766 be expecting these relocations to have been applied. Check for this
14767 case and issue a warning message in order to avoid confusion.
14768 FIXME: Maybe we ought to have an option that dumps a section with
14769 relocs applied ? */
dda8d76d
NC
14770 for (relsec = filedata->section_headers;
14771 relsec < filedata->section_headers + filedata->file_header.e_shnum;
cf13d699
NC
14772 ++relsec)
14773 {
14774 if ((relsec->sh_type != SHT_RELA && relsec->sh_type != SHT_REL)
dda8d76d
NC
14775 || relsec->sh_info >= filedata->file_header.e_shnum
14776 || filedata->section_headers + relsec->sh_info != section
cf13d699 14777 || relsec->sh_size == 0
dda8d76d 14778 || relsec->sh_link >= filedata->file_header.e_shnum)
cf13d699
NC
14779 continue;
14780
14781 printf (_(" NOTE: This section has relocations against it, but these have NOT been applied to this dump.\n"));
14782 break;
14783 }
14784 }
14785
14786 addr = section->sh_addr;
0e602686 14787 bytes = section_size;
cf13d699
NC
14788 data = start;
14789
14790 while (bytes)
14791 {
14792 int j;
14793 int k;
14794 int lbytes;
14795
14796 lbytes = (bytes > 16 ? 16 : bytes);
14797
14798 printf (" 0x%8.8lx ", (unsigned long) addr);
14799
14800 for (j = 0; j < 16; j++)
14801 {
14802 if (j < lbytes)
14803 printf ("%2.2x", data[j]);
14804 else
14805 printf (" ");
14806
14807 if ((j & 3) == 3)
14808 printf (" ");
14809 }
14810
14811 for (j = 0; j < lbytes; j++)
14812 {
14813 k = data[j];
14814 if (k >= ' ' && k < 0x7f)
14815 printf ("%c", k);
14816 else
14817 printf (".");
14818 }
14819
14820 putchar ('\n');
14821
14822 data += lbytes;
14823 addr += lbytes;
14824 bytes -= lbytes;
14825 }
14826
0e602686 14827 free (real_start);
cf13d699
NC
14828
14829 putchar ('\n');
015dc7e1 14830 return true;
f761cb13
AM
14831
14832 error_out:
14833 free (real_start);
015dc7e1 14834 return false;
cf13d699
NC
14835}
14836
094e34f2 14837#ifdef ENABLE_LIBCTF
7d9813f1
NA
14838static ctf_sect_t *
14839shdr_to_ctf_sect (ctf_sect_t *buf, Elf_Internal_Shdr *shdr, Filedata *filedata)
14840{
b9e920ec 14841 buf->cts_name = SECTION_NAME_PRINT (shdr);
7d9813f1
NA
14842 buf->cts_size = shdr->sh_size;
14843 buf->cts_entsize = shdr->sh_entsize;
7d9813f1
NA
14844
14845 return buf;
14846}
14847
14848/* Formatting callback function passed to ctf_dump. Returns either the pointer
14849 it is passed, or a pointer to newly-allocated storage, in which case
14850 dump_ctf() will free it when it no longer needs it. */
14851
2f6ecaed
NA
14852static char *
14853dump_ctf_indent_lines (ctf_sect_names_t sect ATTRIBUTE_UNUSED,
14854 char *s, void *arg)
7d9813f1 14855{
3e50a591 14856 const char *blanks = arg;
7d9813f1
NA
14857 char *new_s;
14858
3e50a591 14859 if (asprintf (&new_s, "%s%s", blanks, s) < 0)
7d9813f1
NA
14860 return s;
14861 return new_s;
14862}
14863
926c9e76
NA
14864/* Dump CTF errors/warnings. */
14865static void
139633c3 14866dump_ctf_errs (ctf_dict_t *fp)
926c9e76
NA
14867{
14868 ctf_next_t *it = NULL;
14869 char *errtext;
14870 int is_warning;
14871 int err;
14872
14873 /* Dump accumulated errors and warnings. */
14874 while ((errtext = ctf_errwarning_next (fp, &it, &is_warning, &err)) != NULL)
14875 {
5e9b84f7 14876 error (_("%s: %s"), is_warning ? _("warning"): _("error"),
926c9e76
NA
14877 errtext);
14878 free (errtext);
14879 }
14880 if (err != ECTF_NEXT_END)
14881 error (_("CTF error: cannot get CTF errors: `%s'"), ctf_errmsg (err));
14882}
14883
2f6ecaed
NA
14884/* Dump one CTF archive member. */
14885
14886static int
139633c3 14887dump_ctf_archive_member (ctf_dict_t *ctf, const char *name, void *arg)
2f6ecaed 14888{
139633c3 14889 ctf_dict_t *parent = (ctf_dict_t *) arg;
2f6ecaed
NA
14890 const char *things[] = {"Header", "Labels", "Data objects",
14891 "Function objects", "Variables", "Types", "Strings",
14892 ""};
14893 const char **thing;
14894 size_t i;
8b37e7b6 14895 int err = 0;
2f6ecaed
NA
14896
14897 /* Only print out the name of non-default-named archive members.
14898 The name .ctf appears everywhere, even for things that aren't
14899 really archives, so printing it out is liable to be confusing.
14900
14901 The parent, if there is one, is the default-owned archive member:
14902 avoid importing it into itself. (This does no harm, but looks
14903 confusing.) */
14904
14905 if (strcmp (name, ".ctf") != 0)
14906 {
14907 printf (_("\nCTF archive member: %s:\n"), name);
14908 ctf_import (ctf, parent);
14909 }
14910
14911 for (i = 0, thing = things; *thing[0]; thing++, i++)
14912 {
14913 ctf_dump_state_t *s = NULL;
14914 char *item;
14915
14916 printf ("\n %s:\n", *thing);
14917 while ((item = ctf_dump (ctf, &s, i, dump_ctf_indent_lines,
14918 (void *) " ")) != NULL)
14919 {
14920 printf ("%s\n", item);
14921 free (item);
14922 }
14923
14924 if (ctf_errno (ctf))
14925 {
14926 error (_("Iteration failed: %s, %s\n"), *thing,
14927 ctf_errmsg (ctf_errno (ctf)));
8b37e7b6
NA
14928 err = 1;
14929 goto out;
2f6ecaed
NA
14930 }
14931 }
8b37e7b6
NA
14932
14933 out:
926c9e76 14934 dump_ctf_errs (ctf);
8b37e7b6 14935 return err;
2f6ecaed
NA
14936}
14937
015dc7e1 14938static bool
7d9813f1
NA
14939dump_section_as_ctf (Elf_Internal_Shdr * section, Filedata * filedata)
14940{
14941 Elf_Internal_Shdr * parent_sec = NULL;
14942 Elf_Internal_Shdr * symtab_sec = NULL;
14943 Elf_Internal_Shdr * strtab_sec = NULL;
d344b407
NA
14944 void * data = NULL;
14945 void * symdata = NULL;
14946 void * strdata = NULL;
14947 void * parentdata = NULL;
14948 ctf_sect_t ctfsect, symsect, strsect, parentsect;
14949 ctf_sect_t * symsectp = NULL;
14950 ctf_sect_t * strsectp = NULL;
2f6ecaed
NA
14951 ctf_archive_t * ctfa = NULL;
14952 ctf_archive_t * parenta = NULL, *lookparent;
139633c3 14953 ctf_dict_t * parent = NULL;
7d9813f1 14954
7d9813f1 14955 int err;
015dc7e1 14956 bool ret = false;
7d9813f1
NA
14957
14958 shdr_to_ctf_sect (&ctfsect, section, filedata);
14959 data = get_section_contents (section, filedata);
14960 ctfsect.cts_data = data;
14961
616febde 14962 if (!dump_ctf_symtab_name)
3d16b64e 14963 dump_ctf_symtab_name = strdup (".dynsym");
616febde
NA
14964
14965 if (!dump_ctf_strtab_name)
3d16b64e 14966 dump_ctf_strtab_name = strdup (".dynstr");
616febde
NA
14967
14968 if (dump_ctf_symtab_name && dump_ctf_symtab_name[0] != 0)
7d9813f1
NA
14969 {
14970 if ((symtab_sec = find_section (filedata, dump_ctf_symtab_name)) == NULL)
14971 {
14972 error (_("No symbol section named %s\n"), dump_ctf_symtab_name);
14973 goto fail;
14974 }
14975 if ((symdata = (void *) get_data (NULL, filedata,
14976 symtab_sec->sh_offset, 1,
14977 symtab_sec->sh_size,
14978 _("symbols"))) == NULL)
14979 goto fail;
14980 symsectp = shdr_to_ctf_sect (&symsect, symtab_sec, filedata);
14981 symsect.cts_data = symdata;
14982 }
835f2fae 14983
df16e041 14984 if (dump_ctf_strtab_name && dump_ctf_strtab_name[0] != 0)
7d9813f1
NA
14985 {
14986 if ((strtab_sec = find_section (filedata, dump_ctf_strtab_name)) == NULL)
14987 {
14988 error (_("No string table section named %s\n"),
14989 dump_ctf_strtab_name);
14990 goto fail;
14991 }
14992 if ((strdata = (void *) get_data (NULL, filedata,
14993 strtab_sec->sh_offset, 1,
14994 strtab_sec->sh_size,
14995 _("strings"))) == NULL)
14996 goto fail;
14997 strsectp = shdr_to_ctf_sect (&strsect, strtab_sec, filedata);
14998 strsect.cts_data = strdata;
14999 }
835f2fae 15000
7d9813f1
NA
15001 if (dump_ctf_parent_name)
15002 {
15003 if ((parent_sec = find_section (filedata, dump_ctf_parent_name)) == NULL)
15004 {
15005 error (_("No CTF parent section named %s\n"), dump_ctf_parent_name);
15006 goto fail;
15007 }
15008 if ((parentdata = (void *) get_data (NULL, filedata,
15009 parent_sec->sh_offset, 1,
15010 parent_sec->sh_size,
15011 _("CTF parent"))) == NULL)
15012 goto fail;
15013 shdr_to_ctf_sect (&parentsect, parent_sec, filedata);
15014 parentsect.cts_data = parentdata;
15015 }
15016
2f6ecaed
NA
15017 /* Load the CTF file and dump it. It may be a raw CTF section, or an archive:
15018 libctf papers over the difference, so we can pretend it is always an
15019 archive. Possibly open the parent as well, if one was specified. */
7d9813f1 15020
2f6ecaed 15021 if ((ctfa = ctf_arc_bufopen (&ctfsect, symsectp, strsectp, &err)) == NULL)
7d9813f1 15022 {
926c9e76 15023 dump_ctf_errs (NULL);
7d9813f1
NA
15024 error (_("CTF open failure: %s\n"), ctf_errmsg (err));
15025 goto fail;
15026 }
15027
96c61be5
NA
15028 ctf_arc_symsect_endianness (ctfa, filedata->file_header.e_ident[EI_DATA]
15029 != ELFDATA2MSB);
15030
7d9813f1
NA
15031 if (parentdata)
15032 {
2f6ecaed
NA
15033 if ((parenta = ctf_arc_bufopen (&parentsect, symsectp, strsectp,
15034 &err)) == NULL)
7d9813f1 15035 {
926c9e76 15036 dump_ctf_errs (NULL);
7d9813f1
NA
15037 error (_("CTF open failure: %s\n"), ctf_errmsg (err));
15038 goto fail;
15039 }
2f6ecaed
NA
15040 lookparent = parenta;
15041 }
15042 else
15043 lookparent = ctfa;
7d9813f1 15044
2f6ecaed
NA
15045 /* Assume that the applicable parent archive member is the default one.
15046 (This is what all known implementations are expected to do, if they
15047 put CTFs and their parents in archives together.) */
ae41200b 15048 if ((parent = ctf_dict_open (lookparent, NULL, &err)) == NULL)
2f6ecaed 15049 {
926c9e76 15050 dump_ctf_errs (NULL);
2f6ecaed
NA
15051 error (_("CTF open failure: %s\n"), ctf_errmsg (err));
15052 goto fail;
7d9813f1
NA
15053 }
15054
015dc7e1 15055 ret = true;
7d9813f1 15056
835f2fae
NC
15057 if (filedata->is_separate)
15058 printf (_("\nDump of CTF section '%s' in linked file %s:\n"),
15059 printable_section_name (filedata, section),
15060 filedata->file_name);
15061 else
15062 printf (_("\nDump of CTF section '%s':\n"),
15063 printable_section_name (filedata, section));
7d9813f1 15064
83d59285
NA
15065 if ((err = ctf_archive_iter (ctfa, dump_ctf_archive_member, parent)) != 0)
15066 {
15067 dump_ctf_errs (NULL);
15068 error (_("CTF member open failure: %s\n"), ctf_errmsg (err));
015dc7e1 15069 ret = false;
83d59285 15070 }
7d9813f1
NA
15071
15072 fail:
139633c3 15073 ctf_dict_close (parent);
2f6ecaed
NA
15074 ctf_close (ctfa);
15075 ctf_close (parenta);
7d9813f1
NA
15076 free (parentdata);
15077 free (data);
15078 free (symdata);
15079 free (strdata);
15080 return ret;
15081}
094e34f2 15082#endif
7d9813f1 15083
015dc7e1 15084static bool
dda8d76d
NC
15085load_specific_debug_section (enum dwarf_section_display_enum debug,
15086 const Elf_Internal_Shdr * sec,
15087 void * data)
1007acb3 15088{
2cf0635d 15089 struct dwarf_section * section = &debug_displays [debug].section;
19e6b90e 15090 char buf [64];
dda8d76d 15091 Filedata * filedata = (Filedata *) data;
9abca702 15092
19e6b90e 15093 if (section->start != NULL)
dda8d76d
NC
15094 {
15095 /* If it is already loaded, do nothing. */
15096 if (streq (section->filename, filedata->file_name))
015dc7e1 15097 return true;
dda8d76d
NC
15098 free (section->start);
15099 }
1007acb3 15100
19e6b90e
L
15101 snprintf (buf, sizeof (buf), _("%s section data"), section->name);
15102 section->address = sec->sh_addr;
dda8d76d
NC
15103 section->filename = filedata->file_name;
15104 section->start = (unsigned char *) get_data (NULL, filedata,
3f5e193b
NC
15105 sec->sh_offset, 1,
15106 sec->sh_size, buf);
59245841
NC
15107 if (section->start == NULL)
15108 section->size = 0;
15109 else
15110 {
77115a4a
L
15111 unsigned char *start = section->start;
15112 dwarf_size_type size = sec->sh_size;
dab394de 15113 dwarf_size_type uncompressed_size = 0;
77115a4a
L
15114
15115 if ((sec->sh_flags & SHF_COMPRESSED) != 0)
15116 {
15117 Elf_Internal_Chdr chdr;
d8024a91
NC
15118 unsigned int compression_header_size;
15119
f53be977
L
15120 if (size < (is_32bit_elf
15121 ? sizeof (Elf32_External_Chdr)
15122 : sizeof (Elf64_External_Chdr)))
d8024a91 15123 {
55be8fd0 15124 warn (_("compressed section %s is too small to contain a compression header\n"),
d8024a91 15125 section->name);
015dc7e1 15126 return false;
d8024a91
NC
15127 }
15128
ebdf1ebf 15129 compression_header_size = get_compression_header (&chdr, start, size);
5844b465
NC
15130 if (compression_header_size == 0)
15131 /* An error message will have already been generated
15132 by get_compression_header. */
015dc7e1 15133 return false;
d8024a91 15134
813dabb9
L
15135 if (chdr.ch_type != ELFCOMPRESS_ZLIB)
15136 {
15137 warn (_("section '%s' has unsupported compress type: %d\n"),
15138 section->name, chdr.ch_type);
015dc7e1 15139 return false;
813dabb9 15140 }
dab394de 15141 uncompressed_size = chdr.ch_size;
77115a4a
L
15142 start += compression_header_size;
15143 size -= compression_header_size;
15144 }
dab394de
L
15145 else if (size > 12 && streq ((char *) start, "ZLIB"))
15146 {
15147 /* Read the zlib header. In this case, it should be "ZLIB"
15148 followed by the uncompressed section size, 8 bytes in
15149 big-endian order. */
15150 uncompressed_size = start[4]; uncompressed_size <<= 8;
15151 uncompressed_size += start[5]; uncompressed_size <<= 8;
15152 uncompressed_size += start[6]; uncompressed_size <<= 8;
15153 uncompressed_size += start[7]; uncompressed_size <<= 8;
15154 uncompressed_size += start[8]; uncompressed_size <<= 8;
15155 uncompressed_size += start[9]; uncompressed_size <<= 8;
15156 uncompressed_size += start[10]; uncompressed_size <<= 8;
15157 uncompressed_size += start[11];
15158 start += 12;
15159 size -= 12;
15160 }
15161
1835f746 15162 if (uncompressed_size)
77115a4a 15163 {
1835f746
NC
15164 if (uncompress_section_contents (&start, uncompressed_size,
15165 &size))
15166 {
15167 /* Free the compressed buffer, update the section buffer
15168 and the section size if uncompress is successful. */
15169 free (section->start);
15170 section->start = start;
15171 }
15172 else
15173 {
15174 error (_("Unable to decompress section %s\n"),
dda8d76d 15175 printable_section_name (filedata, sec));
015dc7e1 15176 return false;
1835f746 15177 }
77115a4a 15178 }
bc303e5d 15179
77115a4a 15180 section->size = size;
59245841 15181 }
4a114e3e 15182
1b315056 15183 if (section->start == NULL)
015dc7e1 15184 return false;
1b315056 15185
19e6b90e 15186 if (debug_displays [debug].relocate)
32ec8896 15187 {
dda8d76d 15188 if (! apply_relocations (filedata, sec, section->start, section->size,
32ec8896 15189 & section->reloc_info, & section->num_relocs))
015dc7e1 15190 return false;
32ec8896 15191 }
d1c4b12b
NC
15192 else
15193 {
15194 section->reloc_info = NULL;
15195 section->num_relocs = 0;
15196 }
1007acb3 15197
015dc7e1 15198 return true;
1007acb3
L
15199}
15200
301a9420
AM
15201#if HAVE_LIBDEBUGINFOD
15202/* Return a hex string representation of the build-id. */
15203unsigned char *
15204get_build_id (void * data)
15205{
ca0e11aa 15206 Filedata * filedata = (Filedata *) data;
301a9420
AM
15207 Elf_Internal_Shdr * shdr;
15208 unsigned long i;
15209
55be8fd0
NC
15210 /* Iterate through notes to find note.gnu.build-id.
15211 FIXME: Only the first note in any note section is examined. */
301a9420
AM
15212 for (i = 0, shdr = filedata->section_headers;
15213 i < filedata->file_header.e_shnum && shdr != NULL;
15214 i++, shdr++)
15215 {
15216 if (shdr->sh_type != SHT_NOTE)
15217 continue;
15218
15219 char * next;
15220 char * end;
15221 size_t data_remaining;
15222 size_t min_notesz;
15223 Elf_External_Note * enote;
15224 Elf_Internal_Note inote;
15225
15226 bfd_vma offset = shdr->sh_offset;
15227 bfd_vma align = shdr->sh_addralign;
15228 bfd_vma length = shdr->sh_size;
15229
15230 enote = (Elf_External_Note *) get_section_contents (shdr, filedata);
15231 if (enote == NULL)
15232 continue;
15233
15234 if (align < 4)
15235 align = 4;
15236 else if (align != 4 && align != 8)
f761cb13
AM
15237 {
15238 free (enote);
15239 continue;
15240 }
301a9420
AM
15241
15242 end = (char *) enote + length;
15243 data_remaining = end - (char *) enote;
15244
15245 if (!is_ia64_vms (filedata))
15246 {
15247 min_notesz = offsetof (Elf_External_Note, name);
15248 if (data_remaining < min_notesz)
15249 {
55be8fd0
NC
15250 warn (_("\
15251malformed note encountered in section %s whilst scanning for build-id note\n"),
15252 printable_section_name (filedata, shdr));
f761cb13 15253 free (enote);
55be8fd0 15254 continue;
301a9420
AM
15255 }
15256 data_remaining -= min_notesz;
15257
15258 inote.type = BYTE_GET (enote->type);
15259 inote.namesz = BYTE_GET (enote->namesz);
15260 inote.namedata = enote->name;
15261 inote.descsz = BYTE_GET (enote->descsz);
15262 inote.descdata = ((char *) enote
15263 + ELF_NOTE_DESC_OFFSET (inote.namesz, align));
15264 inote.descpos = offset + (inote.descdata - (char *) enote);
15265 next = ((char *) enote
15266 + ELF_NOTE_NEXT_OFFSET (inote.namesz, inote.descsz, align));
15267 }
15268 else
15269 {
15270 Elf64_External_VMS_Note *vms_enote;
15271
15272 /* PR binutils/15191
15273 Make sure that there is enough data to read. */
15274 min_notesz = offsetof (Elf64_External_VMS_Note, name);
15275 if (data_remaining < min_notesz)
15276 {
55be8fd0
NC
15277 warn (_("\
15278malformed note encountered in section %s whilst scanning for build-id note\n"),
15279 printable_section_name (filedata, shdr));
f761cb13 15280 free (enote);
55be8fd0 15281 continue;
301a9420
AM
15282 }
15283 data_remaining -= min_notesz;
15284
15285 vms_enote = (Elf64_External_VMS_Note *) enote;
15286 inote.type = BYTE_GET (vms_enote->type);
15287 inote.namesz = BYTE_GET (vms_enote->namesz);
15288 inote.namedata = vms_enote->name;
15289 inote.descsz = BYTE_GET (vms_enote->descsz);
15290 inote.descdata = inote.namedata + align_power (inote.namesz, 3);
15291 inote.descpos = offset + (inote.descdata - (char *) enote);
15292 next = inote.descdata + align_power (inote.descsz, 3);
15293 }
15294
15295 /* Skip malformed notes. */
15296 if ((size_t) (inote.descdata - inote.namedata) < inote.namesz
15297 || (size_t) (inote.descdata - inote.namedata) > data_remaining
15298 || (size_t) (next - inote.descdata) < inote.descsz
15299 || ((size_t) (next - inote.descdata)
15300 > data_remaining - (size_t) (inote.descdata - inote.namedata)))
15301 {
55be8fd0
NC
15302 warn (_("\
15303malformed note encountered in section %s whilst scanning for build-id note\n"),
15304 printable_section_name (filedata, shdr));
f761cb13 15305 free (enote);
301a9420
AM
15306 continue;
15307 }
15308
15309 /* Check if this is the build-id note. If so then convert the build-id
15310 bytes to a hex string. */
15311 if (inote.namesz > 0
24d127aa 15312 && startswith (inote.namedata, "GNU")
301a9420
AM
15313 && inote.type == NT_GNU_BUILD_ID)
15314 {
15315 unsigned long j;
15316 char * build_id;
15317
15318 build_id = malloc (inote.descsz * 2 + 1);
15319 if (build_id == NULL)
f761cb13
AM
15320 {
15321 free (enote);
15322 return NULL;
15323 }
301a9420
AM
15324
15325 for (j = 0; j < inote.descsz; ++j)
15326 sprintf (build_id + (j * 2), "%02x", inote.descdata[j] & 0xff);
15327 build_id[inote.descsz * 2] = '\0';
f761cb13 15328 free (enote);
301a9420 15329
55be8fd0 15330 return (unsigned char *) build_id;
301a9420 15331 }
f761cb13 15332 free (enote);
301a9420
AM
15333 }
15334
15335 return NULL;
15336}
15337#endif /* HAVE_LIBDEBUGINFOD */
15338
657d0d47
CC
15339/* If this is not NULL, load_debug_section will only look for sections
15340 within the list of sections given here. */
32ec8896 15341static unsigned int * section_subset = NULL;
657d0d47 15342
015dc7e1 15343bool
dda8d76d 15344load_debug_section (enum dwarf_section_display_enum debug, void * data)
d966045b 15345{
2cf0635d
NC
15346 struct dwarf_section * section = &debug_displays [debug].section;
15347 Elf_Internal_Shdr * sec;
dda8d76d
NC
15348 Filedata * filedata = (Filedata *) data;
15349
f425ec66
NC
15350 /* Without section headers we cannot find any sections. */
15351 if (filedata->section_headers == NULL)
015dc7e1 15352 return false;
f425ec66 15353
9c1ce108
AM
15354 if (filedata->string_table == NULL
15355 && filedata->file_header.e_shstrndx != SHN_UNDEF
15356 && filedata->file_header.e_shstrndx < filedata->file_header.e_shnum)
dda8d76d
NC
15357 {
15358 Elf_Internal_Shdr * strs;
15359
15360 /* Read in the string table, so that we have section names to scan. */
15361 strs = filedata->section_headers + filedata->file_header.e_shstrndx;
15362
4dff97b2 15363 if (strs != NULL && strs->sh_size != 0)
dda8d76d 15364 {
9c1ce108
AM
15365 filedata->string_table
15366 = (char *) get_data (NULL, filedata, strs->sh_offset,
15367 1, strs->sh_size, _("string table"));
dda8d76d 15368
9c1ce108
AM
15369 filedata->string_table_length
15370 = filedata->string_table != NULL ? strs->sh_size : 0;
dda8d76d
NC
15371 }
15372 }
d966045b
DJ
15373
15374 /* Locate the debug section. */
dda8d76d 15375 sec = find_section_in_set (filedata, section->uncompressed_name, section_subset);
d966045b
DJ
15376 if (sec != NULL)
15377 section->name = section->uncompressed_name;
15378 else
15379 {
dda8d76d 15380 sec = find_section_in_set (filedata, section->compressed_name, section_subset);
d966045b
DJ
15381 if (sec != NULL)
15382 section->name = section->compressed_name;
15383 }
15384 if (sec == NULL)
015dc7e1 15385 return false;
d966045b 15386
657d0d47
CC
15387 /* If we're loading from a subset of sections, and we've loaded
15388 a section matching this name before, it's likely that it's a
15389 different one. */
15390 if (section_subset != NULL)
15391 free_debug_section (debug);
15392
dda8d76d 15393 return load_specific_debug_section (debug, sec, data);
d966045b
DJ
15394}
15395
19e6b90e
L
15396void
15397free_debug_section (enum dwarf_section_display_enum debug)
1007acb3 15398{
2cf0635d 15399 struct dwarf_section * section = &debug_displays [debug].section;
1007acb3 15400
19e6b90e
L
15401 if (section->start == NULL)
15402 return;
1007acb3 15403
19e6b90e
L
15404 free ((char *) section->start);
15405 section->start = NULL;
15406 section->address = 0;
15407 section->size = 0;
a788aedd 15408
9db70fc3
AM
15409 free (section->reloc_info);
15410 section->reloc_info = NULL;
15411 section->num_relocs = 0;
1007acb3
L
15412}
15413
015dc7e1 15414static bool
dda8d76d 15415display_debug_section (int shndx, Elf_Internal_Shdr * section, Filedata * filedata)
1007acb3 15416{
b9e920ec 15417 char * name = SECTION_NAME_VALID (section) ? SECTION_NAME (section) : "";
dda8d76d 15418 const char * print_name = printable_section_name (filedata, section);
19e6b90e 15419 bfd_size_type length;
015dc7e1 15420 bool result = true;
3f5e193b 15421 int i;
1007acb3 15422
19e6b90e
L
15423 length = section->sh_size;
15424 if (length == 0)
1007acb3 15425 {
74e1a04b 15426 printf (_("\nSection '%s' has no debugging data.\n"), print_name);
015dc7e1 15427 return true;
1007acb3 15428 }
5dff79d8
NC
15429 if (section->sh_type == SHT_NOBITS)
15430 {
15431 /* There is no point in dumping the contents of a debugging section
15432 which has the NOBITS type - the bits in the file will be random.
15433 This can happen when a file containing a .eh_frame section is
15434 stripped with the --only-keep-debug command line option. */
74e1a04b
NC
15435 printf (_("section '%s' has the NOBITS type - its contents are unreliable.\n"),
15436 print_name);
015dc7e1 15437 return false;
5dff79d8 15438 }
1007acb3 15439
24d127aa 15440 if (startswith (name, ".gnu.linkonce.wi."))
19e6b90e 15441 name = ".debug_info";
1007acb3 15442
19e6b90e
L
15443 /* See if we know how to display the contents of this section. */
15444 for (i = 0; i < max; i++)
d85bf2ba
NC
15445 {
15446 enum dwarf_section_display_enum id = (enum dwarf_section_display_enum) i;
15447 struct dwarf_section_display * display = debug_displays + i;
15448 struct dwarf_section * sec = & display->section;
d966045b 15449
d85bf2ba 15450 if (streq (sec->uncompressed_name, name)
24d127aa 15451 || (id == line && startswith (name, ".debug_line."))
d85bf2ba
NC
15452 || streq (sec->compressed_name, name))
15453 {
015dc7e1 15454 bool secondary = (section != find_section (filedata, name));
1007acb3 15455
d85bf2ba
NC
15456 if (secondary)
15457 free_debug_section (id);
dda8d76d 15458
24d127aa 15459 if (i == line && startswith (name, ".debug_line."))
d85bf2ba
NC
15460 sec->name = name;
15461 else if (streq (sec->uncompressed_name, name))
15462 sec->name = sec->uncompressed_name;
15463 else
15464 sec->name = sec->compressed_name;
657d0d47 15465
d85bf2ba
NC
15466 if (load_specific_debug_section (id, section, filedata))
15467 {
15468 /* If this debug section is part of a CU/TU set in a .dwp file,
15469 restrict load_debug_section to the sections in that set. */
15470 section_subset = find_cu_tu_set (filedata, shndx);
1007acb3 15471
d85bf2ba 15472 result &= display->display (sec, filedata);
657d0d47 15473
d85bf2ba 15474 section_subset = NULL;
1007acb3 15475
44266f36 15476 if (secondary || (id != info && id != abbrev && id != debug_addr))
d85bf2ba
NC
15477 free_debug_section (id);
15478 }
15479 break;
15480 }
15481 }
1007acb3 15482
19e6b90e 15483 if (i == max)
1007acb3 15484 {
74e1a04b 15485 printf (_("Unrecognized debug section: %s\n"), print_name);
015dc7e1 15486 result = false;
1007acb3
L
15487 }
15488
19e6b90e 15489 return result;
5b18a4bc 15490}
103f02d3 15491
aef1f6d0
DJ
15492/* Set DUMP_SECTS for all sections where dumps were requested
15493 based on section name. */
15494
15495static void
dda8d76d 15496initialise_dumps_byname (Filedata * filedata)
aef1f6d0 15497{
2cf0635d 15498 struct dump_list_entry * cur;
aef1f6d0
DJ
15499
15500 for (cur = dump_sects_byname; cur; cur = cur->next)
15501 {
15502 unsigned int i;
015dc7e1 15503 bool any = false;
aef1f6d0 15504
dda8d76d 15505 for (i = 0; i < filedata->file_header.e_shnum; i++)
b9e920ec
AM
15506 if (SECTION_NAME_VALID (filedata->section_headers + i)
15507 && streq (SECTION_NAME (filedata->section_headers + i), cur->name))
aef1f6d0 15508 {
6431e409 15509 request_dump_bynumber (&filedata->dump, i, cur->type);
015dc7e1 15510 any = true;
aef1f6d0
DJ
15511 }
15512
835f2fae
NC
15513 if (!any && !filedata->is_separate)
15514 warn (_("Section '%s' was not dumped because it does not exist\n"),
15515 cur->name);
aef1f6d0
DJ
15516 }
15517}
15518
015dc7e1 15519static bool
dda8d76d 15520process_section_contents (Filedata * filedata)
5b18a4bc 15521{
2cf0635d 15522 Elf_Internal_Shdr * section;
19e6b90e 15523 unsigned int i;
015dc7e1 15524 bool res = true;
103f02d3 15525
19e6b90e 15526 if (! do_dump)
015dc7e1 15527 return true;
103f02d3 15528
dda8d76d 15529 initialise_dumps_byname (filedata);
aef1f6d0 15530
dda8d76d 15531 for (i = 0, section = filedata->section_headers;
6431e409 15532 i < filedata->file_header.e_shnum && i < filedata->dump.num_dump_sects;
19e6b90e
L
15533 i++, section++)
15534 {
6431e409 15535 dump_type dump = filedata->dump.dump_sects[i];
dda8d76d 15536
d6bfbc39
NC
15537 if (filedata->is_separate && ! process_links)
15538 dump &= DEBUG_DUMP;
15539
19e6b90e 15540#ifdef SUPPORT_DISASSEMBLY
dda8d76d
NC
15541 if (dump & DISASS_DUMP)
15542 {
15543 if (! disassemble_section (section, filedata))
015dc7e1 15544 res = false;
dda8d76d 15545 }
19e6b90e 15546#endif
dda8d76d 15547 if (dump & HEX_DUMP)
32ec8896 15548 {
015dc7e1
AM
15549 if (! dump_section_as_bytes (section, filedata, false))
15550 res = false;
32ec8896 15551 }
103f02d3 15552
dda8d76d 15553 if (dump & RELOC_DUMP)
32ec8896 15554 {
015dc7e1
AM
15555 if (! dump_section_as_bytes (section, filedata, true))
15556 res = false;
32ec8896 15557 }
09c11c86 15558
dda8d76d 15559 if (dump & STRING_DUMP)
32ec8896 15560 {
dda8d76d 15561 if (! dump_section_as_strings (section, filedata))
015dc7e1 15562 res = false;
32ec8896 15563 }
cf13d699 15564
dda8d76d 15565 if (dump & DEBUG_DUMP)
32ec8896 15566 {
dda8d76d 15567 if (! display_debug_section (i, section, filedata))
015dc7e1 15568 res = false;
32ec8896 15569 }
7d9813f1 15570
094e34f2 15571#ifdef ENABLE_LIBCTF
7d9813f1
NA
15572 if (dump & CTF_DUMP)
15573 {
15574 if (! dump_section_as_ctf (section, filedata))
015dc7e1 15575 res = false;
7d9813f1 15576 }
094e34f2 15577#endif
5b18a4bc 15578 }
103f02d3 15579
835f2fae 15580 if (! filedata->is_separate)
0ee3043f 15581 {
835f2fae
NC
15582 /* Check to see if the user requested a
15583 dump of a section that does not exist. */
15584 for (; i < filedata->dump.num_dump_sects; i++)
15585 if (filedata->dump.dump_sects[i])
15586 {
ca0e11aa 15587 warn (_("Section %d was not dumped because it does not exist!\n"), i);
015dc7e1 15588 res = false;
835f2fae 15589 }
0ee3043f 15590 }
32ec8896
NC
15591
15592 return res;
5b18a4bc 15593}
103f02d3 15594
5b18a4bc 15595static void
19e6b90e 15596process_mips_fpe_exception (int mask)
5b18a4bc 15597{
19e6b90e
L
15598 if (mask)
15599 {
015dc7e1 15600 bool first = true;
32ec8896 15601
19e6b90e 15602 if (mask & OEX_FPU_INEX)
015dc7e1 15603 fputs ("INEX", stdout), first = false;
19e6b90e 15604 if (mask & OEX_FPU_UFLO)
015dc7e1 15605 printf ("%sUFLO", first ? "" : "|"), first = false;
19e6b90e 15606 if (mask & OEX_FPU_OFLO)
015dc7e1 15607 printf ("%sOFLO", first ? "" : "|"), first = false;
19e6b90e 15608 if (mask & OEX_FPU_DIV0)
015dc7e1 15609 printf ("%sDIV0", first ? "" : "|"), first = false;
19e6b90e
L
15610 if (mask & OEX_FPU_INVAL)
15611 printf ("%sINVAL", first ? "" : "|");
15612 }
5b18a4bc 15613 else
19e6b90e 15614 fputs ("0", stdout);
5b18a4bc 15615}
103f02d3 15616
f6f0e17b
NC
15617/* Display's the value of TAG at location P. If TAG is
15618 greater than 0 it is assumed to be an unknown tag, and
15619 a message is printed to this effect. Otherwise it is
15620 assumed that a message has already been printed.
15621
15622 If the bottom bit of TAG is set it assumed to have a
15623 string value, otherwise it is assumed to have an integer
15624 value.
15625
15626 Returns an updated P pointing to the first unread byte
15627 beyond the end of TAG's value.
15628
15629 Reads at or beyond END will not be made. */
15630
15631static unsigned char *
60abdbed 15632display_tag_value (signed int tag,
f6f0e17b
NC
15633 unsigned char * p,
15634 const unsigned char * const end)
15635{
15636 unsigned long val;
15637
15638 if (tag > 0)
15639 printf (" Tag_unknown_%d: ", tag);
15640
15641 if (p >= end)
15642 {
4082ef84 15643 warn (_("<corrupt tag>\n"));
f6f0e17b
NC
15644 }
15645 else if (tag & 1)
15646 {
071436c6
NC
15647 /* PR 17531 file: 027-19978-0.004. */
15648 size_t maxlen = (end - p) - 1;
15649
15650 putchar ('"');
4082ef84
NC
15651 if (maxlen > 0)
15652 {
15653 print_symbol ((int) maxlen, (const char *) p);
15654 p += strnlen ((char *) p, maxlen) + 1;
15655 }
15656 else
15657 {
15658 printf (_("<corrupt string tag>"));
15659 p = (unsigned char *) end;
15660 }
071436c6 15661 printf ("\"\n");
f6f0e17b
NC
15662 }
15663 else
15664 {
cd30bcef 15665 READ_ULEB (val, p, end);
f6f0e17b
NC
15666 printf ("%ld (0x%lx)\n", val, val);
15667 }
15668
4082ef84 15669 assert (p <= end);
f6f0e17b
NC
15670 return p;
15671}
15672
53a346d8
CZ
15673/* ARC ABI attributes section. */
15674
15675static unsigned char *
15676display_arc_attribute (unsigned char * p,
15677 const unsigned char * const end)
15678{
15679 unsigned int tag;
53a346d8
CZ
15680 unsigned int val;
15681
cd30bcef 15682 READ_ULEB (tag, p, end);
53a346d8
CZ
15683
15684 switch (tag)
15685 {
15686 case Tag_ARC_PCS_config:
cd30bcef 15687 READ_ULEB (val, p, end);
53a346d8
CZ
15688 printf (" Tag_ARC_PCS_config: ");
15689 switch (val)
15690 {
15691 case 0:
15692 printf (_("Absent/Non standard\n"));
15693 break;
15694 case 1:
15695 printf (_("Bare metal/mwdt\n"));
15696 break;
15697 case 2:
15698 printf (_("Bare metal/newlib\n"));
15699 break;
15700 case 3:
15701 printf (_("Linux/uclibc\n"));
15702 break;
15703 case 4:
15704 printf (_("Linux/glibc\n"));
15705 break;
15706 default:
15707 printf (_("Unknown\n"));
15708 break;
15709 }
15710 break;
15711
15712 case Tag_ARC_CPU_base:
cd30bcef 15713 READ_ULEB (val, p, end);
53a346d8
CZ
15714 printf (" Tag_ARC_CPU_base: ");
15715 switch (val)
15716 {
15717 default:
15718 case TAG_CPU_NONE:
15719 printf (_("Absent\n"));
15720 break;
15721 case TAG_CPU_ARC6xx:
15722 printf ("ARC6xx\n");
15723 break;
15724 case TAG_CPU_ARC7xx:
15725 printf ("ARC7xx\n");
15726 break;
15727 case TAG_CPU_ARCEM:
15728 printf ("ARCEM\n");
15729 break;
15730 case TAG_CPU_ARCHS:
15731 printf ("ARCHS\n");
15732 break;
15733 }
15734 break;
15735
15736 case Tag_ARC_CPU_variation:
cd30bcef 15737 READ_ULEB (val, p, end);
53a346d8
CZ
15738 printf (" Tag_ARC_CPU_variation: ");
15739 switch (val)
15740 {
15741 default:
15742 if (val > 0 && val < 16)
53a346d8 15743 printf ("Core%d\n", val);
d8cbc93b
JL
15744 else
15745 printf ("Unknown\n");
15746 break;
15747
53a346d8
CZ
15748 case 0:
15749 printf (_("Absent\n"));
15750 break;
15751 }
15752 break;
15753
15754 case Tag_ARC_CPU_name:
15755 printf (" Tag_ARC_CPU_name: ");
15756 p = display_tag_value (-1, p, end);
15757 break;
15758
15759 case Tag_ARC_ABI_rf16:
cd30bcef 15760 READ_ULEB (val, p, end);
53a346d8
CZ
15761 printf (" Tag_ARC_ABI_rf16: %s\n", val ? _("yes") : _("no"));
15762 break;
15763
15764 case Tag_ARC_ABI_osver:
cd30bcef 15765 READ_ULEB (val, p, end);
53a346d8
CZ
15766 printf (" Tag_ARC_ABI_osver: v%d\n", val);
15767 break;
15768
15769 case Tag_ARC_ABI_pic:
15770 case Tag_ARC_ABI_sda:
cd30bcef 15771 READ_ULEB (val, p, end);
53a346d8
CZ
15772 printf (tag == Tag_ARC_ABI_sda ? " Tag_ARC_ABI_sda: "
15773 : " Tag_ARC_ABI_pic: ");
15774 switch (val)
15775 {
15776 case 0:
15777 printf (_("Absent\n"));
15778 break;
15779 case 1:
15780 printf ("MWDT\n");
15781 break;
15782 case 2:
15783 printf ("GNU\n");
15784 break;
15785 default:
15786 printf (_("Unknown\n"));
15787 break;
15788 }
15789 break;
15790
15791 case Tag_ARC_ABI_tls:
cd30bcef 15792 READ_ULEB (val, p, end);
53a346d8
CZ
15793 printf (" Tag_ARC_ABI_tls: %s\n", val ? "r25": "none");
15794 break;
15795
15796 case Tag_ARC_ABI_enumsize:
cd30bcef 15797 READ_ULEB (val, p, end);
53a346d8
CZ
15798 printf (" Tag_ARC_ABI_enumsize: %s\n", val ? _("default") :
15799 _("smallest"));
15800 break;
15801
15802 case Tag_ARC_ABI_exceptions:
cd30bcef 15803 READ_ULEB (val, p, end);
53a346d8
CZ
15804 printf (" Tag_ARC_ABI_exceptions: %s\n", val ? _("OPTFP")
15805 : _("default"));
15806 break;
15807
15808 case Tag_ARC_ABI_double_size:
cd30bcef 15809 READ_ULEB (val, p, end);
53a346d8
CZ
15810 printf (" Tag_ARC_ABI_double_size: %d\n", val);
15811 break;
15812
15813 case Tag_ARC_ISA_config:
15814 printf (" Tag_ARC_ISA_config: ");
15815 p = display_tag_value (-1, p, end);
15816 break;
15817
15818 case Tag_ARC_ISA_apex:
15819 printf (" Tag_ARC_ISA_apex: ");
15820 p = display_tag_value (-1, p, end);
15821 break;
15822
15823 case Tag_ARC_ISA_mpy_option:
cd30bcef 15824 READ_ULEB (val, p, end);
53a346d8
CZ
15825 printf (" Tag_ARC_ISA_mpy_option: %d\n", val);
15826 break;
15827
db1e1b45 15828 case Tag_ARC_ATR_version:
cd30bcef 15829 READ_ULEB (val, p, end);
db1e1b45 15830 printf (" Tag_ARC_ATR_version: %d\n", val);
15831 break;
15832
53a346d8
CZ
15833 default:
15834 return display_tag_value (tag & 1, p, end);
15835 }
15836
15837 return p;
15838}
15839
11c1ff18
PB
15840/* ARM EABI attributes section. */
15841typedef struct
15842{
70e99720 15843 unsigned int tag;
2cf0635d 15844 const char * name;
11c1ff18 15845 /* 0 = special, 1 = string, 2 = uleb123, > 0x80 == table lookup. */
70e99720 15846 unsigned int type;
288f0ba2 15847 const char *const *table;
11c1ff18
PB
15848} arm_attr_public_tag;
15849
288f0ba2 15850static const char *const arm_attr_tag_CPU_arch[] =
11c1ff18 15851 {"Pre-v4", "v4", "v4T", "v5T", "v5TE", "v5TEJ", "v6", "v6KZ", "v6T2",
ced40572 15852 "v6K", "v7", "v6-M", "v6S-M", "v7E-M", "v8", "v8-R", "v8-M.baseline",
031254f2 15853 "v8-M.mainline", "", "", "", "v8.1-M.mainline"};
288f0ba2
AM
15854static const char *const arm_attr_tag_ARM_ISA_use[] = {"No", "Yes"};
15855static const char *const arm_attr_tag_THUMB_ISA_use[] =
4ed7ed8d 15856 {"No", "Thumb-1", "Thumb-2", "Yes"};
288f0ba2 15857static const char *const arm_attr_tag_FP_arch[] =
bca38921 15858 {"No", "VFPv1", "VFPv2", "VFPv3", "VFPv3-D16", "VFPv4", "VFPv4-D16",
a715796b 15859 "FP for ARMv8", "FPv5/FP-D16 for ARMv8"};
288f0ba2
AM
15860static const char *const arm_attr_tag_WMMX_arch[] = {"No", "WMMXv1", "WMMXv2"};
15861static const char *const arm_attr_tag_Advanced_SIMD_arch[] =
9411fd44
MW
15862 {"No", "NEONv1", "NEONv1 with Fused-MAC", "NEON for ARMv8",
15863 "NEON for ARMv8.1"};
288f0ba2 15864static const char *const arm_attr_tag_PCS_config[] =
11c1ff18
PB
15865 {"None", "Bare platform", "Linux application", "Linux DSO", "PalmOS 2004",
15866 "PalmOS (reserved)", "SymbianOS 2004", "SymbianOS (reserved)"};
288f0ba2 15867static const char *const arm_attr_tag_ABI_PCS_R9_use[] =
11c1ff18 15868 {"V6", "SB", "TLS", "Unused"};
288f0ba2 15869static const char *const arm_attr_tag_ABI_PCS_RW_data[] =
11c1ff18 15870 {"Absolute", "PC-relative", "SB-relative", "None"};
288f0ba2 15871static const char *const arm_attr_tag_ABI_PCS_RO_data[] =
11c1ff18 15872 {"Absolute", "PC-relative", "None"};
288f0ba2 15873static const char *const arm_attr_tag_ABI_PCS_GOT_use[] =
11c1ff18 15874 {"None", "direct", "GOT-indirect"};
288f0ba2 15875static const char *const arm_attr_tag_ABI_PCS_wchar_t[] =
11c1ff18 15876 {"None", "??? 1", "2", "??? 3", "4"};
288f0ba2
AM
15877static const char *const arm_attr_tag_ABI_FP_rounding[] = {"Unused", "Needed"};
15878static const char *const arm_attr_tag_ABI_FP_denormal[] =
f5f53991 15879 {"Unused", "Needed", "Sign only"};
288f0ba2
AM
15880static const char *const arm_attr_tag_ABI_FP_exceptions[] = {"Unused", "Needed"};
15881static const char *const arm_attr_tag_ABI_FP_user_exceptions[] = {"Unused", "Needed"};
15882static const char *const arm_attr_tag_ABI_FP_number_model[] =
11c1ff18 15883 {"Unused", "Finite", "RTABI", "IEEE 754"};
288f0ba2 15884static const char *const arm_attr_tag_ABI_enum_size[] =
11c1ff18 15885 {"Unused", "small", "int", "forced to int"};
288f0ba2 15886static const char *const arm_attr_tag_ABI_HardFP_use[] =
99654aaf 15887 {"As Tag_FP_arch", "SP only", "Reserved", "Deprecated"};
288f0ba2 15888static const char *const arm_attr_tag_ABI_VFP_args[] =
5c294fee 15889 {"AAPCS", "VFP registers", "custom", "compatible"};
288f0ba2 15890static const char *const arm_attr_tag_ABI_WMMX_args[] =
11c1ff18 15891 {"AAPCS", "WMMX registers", "custom"};
288f0ba2 15892static const char *const arm_attr_tag_ABI_optimization_goals[] =
11c1ff18
PB
15893 {"None", "Prefer Speed", "Aggressive Speed", "Prefer Size",
15894 "Aggressive Size", "Prefer Debug", "Aggressive Debug"};
288f0ba2 15895static const char *const arm_attr_tag_ABI_FP_optimization_goals[] =
11c1ff18
PB
15896 {"None", "Prefer Speed", "Aggressive Speed", "Prefer Size",
15897 "Aggressive Size", "Prefer Accuracy", "Aggressive Accuracy"};
288f0ba2
AM
15898static const char *const arm_attr_tag_CPU_unaligned_access[] = {"None", "v6"};
15899static const char *const arm_attr_tag_FP_HP_extension[] =
8e79c3df 15900 {"Not Allowed", "Allowed"};
288f0ba2 15901static const char *const arm_attr_tag_ABI_FP_16bit_format[] =
8e79c3df 15902 {"None", "IEEE 754", "Alternative Format"};
288f0ba2 15903static const char *const arm_attr_tag_DSP_extension[] =
15afaa63 15904 {"Follow architecture", "Allowed"};
288f0ba2 15905static const char *const arm_attr_tag_MPextension_use[] =
cd21e546 15906 {"Not Allowed", "Allowed"};
288f0ba2 15907static const char *const arm_attr_tag_DIV_use[] =
dd24e3da 15908 {"Allowed in Thumb-ISA, v7-R or v7-M", "Not allowed",
cd21e546 15909 "Allowed in v7-A with integer division extension"};
288f0ba2
AM
15910static const char *const arm_attr_tag_T2EE_use[] = {"Not Allowed", "Allowed"};
15911static const char *const arm_attr_tag_Virtualization_use[] =
dd24e3da 15912 {"Not Allowed", "TrustZone", "Virtualization Extensions",
cd21e546 15913 "TrustZone and Virtualization Extensions"};
288f0ba2 15914static const char *const arm_attr_tag_MPextension_use_legacy[] =
f5f53991 15915 {"Not Allowed", "Allowed"};
11c1ff18 15916
288f0ba2 15917static const char *const arm_attr_tag_MVE_arch[] =
a7ad558c
AV
15918 {"No MVE", "MVE Integer only", "MVE Integer and FP"};
15919
11c1ff18
PB
15920#define LOOKUP(id, name) \
15921 {id, #name, 0x80 | ARRAY_SIZE(arm_attr_tag_##name), arm_attr_tag_##name}
d70c5fc7 15922static arm_attr_public_tag arm_attr_public_tags[] =
11c1ff18
PB
15923{
15924 {4, "CPU_raw_name", 1, NULL},
15925 {5, "CPU_name", 1, NULL},
15926 LOOKUP(6, CPU_arch),
15927 {7, "CPU_arch_profile", 0, NULL},
15928 LOOKUP(8, ARM_ISA_use),
15929 LOOKUP(9, THUMB_ISA_use),
75375b3e 15930 LOOKUP(10, FP_arch),
11c1ff18 15931 LOOKUP(11, WMMX_arch),
f5f53991
AS
15932 LOOKUP(12, Advanced_SIMD_arch),
15933 LOOKUP(13, PCS_config),
11c1ff18
PB
15934 LOOKUP(14, ABI_PCS_R9_use),
15935 LOOKUP(15, ABI_PCS_RW_data),
f5f53991 15936 LOOKUP(16, ABI_PCS_RO_data),
11c1ff18
PB
15937 LOOKUP(17, ABI_PCS_GOT_use),
15938 LOOKUP(18, ABI_PCS_wchar_t),
15939 LOOKUP(19, ABI_FP_rounding),
15940 LOOKUP(20, ABI_FP_denormal),
15941 LOOKUP(21, ABI_FP_exceptions),
15942 LOOKUP(22, ABI_FP_user_exceptions),
15943 LOOKUP(23, ABI_FP_number_model),
75375b3e
MGD
15944 {24, "ABI_align_needed", 0, NULL},
15945 {25, "ABI_align_preserved", 0, NULL},
11c1ff18
PB
15946 LOOKUP(26, ABI_enum_size),
15947 LOOKUP(27, ABI_HardFP_use),
15948 LOOKUP(28, ABI_VFP_args),
15949 LOOKUP(29, ABI_WMMX_args),
15950 LOOKUP(30, ABI_optimization_goals),
15951 LOOKUP(31, ABI_FP_optimization_goals),
8e79c3df 15952 {32, "compatibility", 0, NULL},
f5f53991 15953 LOOKUP(34, CPU_unaligned_access),
75375b3e 15954 LOOKUP(36, FP_HP_extension),
8e79c3df 15955 LOOKUP(38, ABI_FP_16bit_format),
cd21e546
MGD
15956 LOOKUP(42, MPextension_use),
15957 LOOKUP(44, DIV_use),
15afaa63 15958 LOOKUP(46, DSP_extension),
a7ad558c 15959 LOOKUP(48, MVE_arch),
f5f53991
AS
15960 {64, "nodefaults", 0, NULL},
15961 {65, "also_compatible_with", 0, NULL},
15962 LOOKUP(66, T2EE_use),
15963 {67, "conformance", 1, NULL},
15964 LOOKUP(68, Virtualization_use),
cd21e546 15965 LOOKUP(70, MPextension_use_legacy)
11c1ff18
PB
15966};
15967#undef LOOKUP
15968
11c1ff18 15969static unsigned char *
f6f0e17b
NC
15970display_arm_attribute (unsigned char * p,
15971 const unsigned char * const end)
11c1ff18 15972{
70e99720 15973 unsigned int tag;
70e99720 15974 unsigned int val;
2cf0635d 15975 arm_attr_public_tag * attr;
11c1ff18 15976 unsigned i;
70e99720 15977 unsigned int type;
11c1ff18 15978
cd30bcef 15979 READ_ULEB (tag, p, end);
11c1ff18 15980 attr = NULL;
2cf0635d 15981 for (i = 0; i < ARRAY_SIZE (arm_attr_public_tags); i++)
11c1ff18
PB
15982 {
15983 if (arm_attr_public_tags[i].tag == tag)
15984 {
15985 attr = &arm_attr_public_tags[i];
15986 break;
15987 }
15988 }
15989
15990 if (attr)
15991 {
15992 printf (" Tag_%s: ", attr->name);
15993 switch (attr->type)
15994 {
15995 case 0:
15996 switch (tag)
15997 {
15998 case 7: /* Tag_CPU_arch_profile. */
cd30bcef 15999 READ_ULEB (val, p, end);
11c1ff18
PB
16000 switch (val)
16001 {
2b692964
NC
16002 case 0: printf (_("None\n")); break;
16003 case 'A': printf (_("Application\n")); break;
16004 case 'R': printf (_("Realtime\n")); break;
16005 case 'M': printf (_("Microcontroller\n")); break;
16006 case 'S': printf (_("Application or Realtime\n")); break;
11c1ff18
PB
16007 default: printf ("??? (%d)\n", val); break;
16008 }
16009 break;
16010
75375b3e 16011 case 24: /* Tag_align_needed. */
cd30bcef 16012 READ_ULEB (val, p, end);
75375b3e
MGD
16013 switch (val)
16014 {
2b692964
NC
16015 case 0: printf (_("None\n")); break;
16016 case 1: printf (_("8-byte\n")); break;
16017 case 2: printf (_("4-byte\n")); break;
75375b3e
MGD
16018 case 3: printf ("??? 3\n"); break;
16019 default:
16020 if (val <= 12)
dd24e3da 16021 printf (_("8-byte and up to %d-byte extended\n"),
75375b3e
MGD
16022 1 << val);
16023 else
16024 printf ("??? (%d)\n", val);
16025 break;
16026 }
16027 break;
16028
16029 case 25: /* Tag_align_preserved. */
cd30bcef 16030 READ_ULEB (val, p, end);
75375b3e
MGD
16031 switch (val)
16032 {
2b692964
NC
16033 case 0: printf (_("None\n")); break;
16034 case 1: printf (_("8-byte, except leaf SP\n")); break;
16035 case 2: printf (_("8-byte\n")); break;
75375b3e
MGD
16036 case 3: printf ("??? 3\n"); break;
16037 default:
16038 if (val <= 12)
dd24e3da 16039 printf (_("8-byte and up to %d-byte extended\n"),
75375b3e
MGD
16040 1 << val);
16041 else
16042 printf ("??? (%d)\n", val);
16043 break;
16044 }
16045 break;
16046
11c1ff18 16047 case 32: /* Tag_compatibility. */
071436c6 16048 {
cd30bcef 16049 READ_ULEB (val, p, end);
071436c6 16050 printf (_("flag = %d, vendor = "), val);
4082ef84
NC
16051 if (p < end - 1)
16052 {
16053 size_t maxlen = (end - p) - 1;
16054
16055 print_symbol ((int) maxlen, (const char *) p);
16056 p += strnlen ((char *) p, maxlen) + 1;
16057 }
16058 else
16059 {
16060 printf (_("<corrupt>"));
16061 p = (unsigned char *) end;
16062 }
071436c6 16063 putchar ('\n');
071436c6 16064 }
11c1ff18
PB
16065 break;
16066
f5f53991 16067 case 64: /* Tag_nodefaults. */
541a3cbd
NC
16068 /* PR 17531: file: 001-505008-0.01. */
16069 if (p < end)
16070 p++;
2b692964 16071 printf (_("True\n"));
f5f53991
AS
16072 break;
16073
16074 case 65: /* Tag_also_compatible_with. */
cd30bcef 16075 READ_ULEB (val, p, end);
f5f53991
AS
16076 if (val == 6 /* Tag_CPU_arch. */)
16077 {
cd30bcef 16078 READ_ULEB (val, p, end);
071436c6 16079 if ((unsigned int) val >= ARRAY_SIZE (arm_attr_tag_CPU_arch))
f5f53991
AS
16080 printf ("??? (%d)\n", val);
16081 else
16082 printf ("%s\n", arm_attr_tag_CPU_arch[val]);
16083 }
16084 else
16085 printf ("???\n");
071436c6
NC
16086 while (p < end && *(p++) != '\0' /* NUL terminator. */)
16087 ;
f5f53991
AS
16088 break;
16089
11c1ff18 16090 default:
bee0ee85
NC
16091 printf (_("<unknown: %d>\n"), tag);
16092 break;
11c1ff18
PB
16093 }
16094 return p;
16095
16096 case 1:
f6f0e17b 16097 return display_tag_value (-1, p, end);
11c1ff18 16098 case 2:
f6f0e17b 16099 return display_tag_value (0, p, end);
11c1ff18
PB
16100
16101 default:
16102 assert (attr->type & 0x80);
cd30bcef 16103 READ_ULEB (val, p, end);
11c1ff18
PB
16104 type = attr->type & 0x7f;
16105 if (val >= type)
16106 printf ("??? (%d)\n", val);
16107 else
16108 printf ("%s\n", attr->table[val]);
16109 return p;
16110 }
16111 }
11c1ff18 16112
f6f0e17b 16113 return display_tag_value (tag, p, end);
11c1ff18
PB
16114}
16115
104d59d1 16116static unsigned char *
60bca95a 16117display_gnu_attribute (unsigned char * p,
60abdbed 16118 unsigned char * (* display_proc_gnu_attribute) (unsigned char *, unsigned int, const unsigned char * const),
f6f0e17b 16119 const unsigned char * const end)
104d59d1 16120{
cd30bcef 16121 unsigned int tag;
60abdbed 16122 unsigned int val;
104d59d1 16123
cd30bcef 16124 READ_ULEB (tag, p, end);
104d59d1
JM
16125
16126 /* Tag_compatibility is the only generic GNU attribute defined at
16127 present. */
16128 if (tag == 32)
16129 {
cd30bcef 16130 READ_ULEB (val, p, end);
071436c6
NC
16131
16132 printf (_("flag = %d, vendor = "), val);
f6f0e17b
NC
16133 if (p == end)
16134 {
071436c6 16135 printf (_("<corrupt>\n"));
f6f0e17b
NC
16136 warn (_("corrupt vendor attribute\n"));
16137 }
16138 else
16139 {
4082ef84
NC
16140 if (p < end - 1)
16141 {
16142 size_t maxlen = (end - p) - 1;
071436c6 16143
4082ef84
NC
16144 print_symbol ((int) maxlen, (const char *) p);
16145 p += strnlen ((char *) p, maxlen) + 1;
16146 }
16147 else
16148 {
16149 printf (_("<corrupt>"));
16150 p = (unsigned char *) end;
16151 }
071436c6 16152 putchar ('\n');
f6f0e17b 16153 }
104d59d1
JM
16154 return p;
16155 }
16156
16157 if ((tag & 2) == 0 && display_proc_gnu_attribute)
f6f0e17b 16158 return display_proc_gnu_attribute (p, tag, end);
104d59d1 16159
f6f0e17b 16160 return display_tag_value (tag, p, end);
104d59d1
JM
16161}
16162
85f7484a
PB
16163static unsigned char *
16164display_m68k_gnu_attribute (unsigned char * p,
16165 unsigned int tag,
16166 const unsigned char * const end)
16167{
16168 unsigned int val;
16169
16170 if (tag == Tag_GNU_M68K_ABI_FP)
16171 {
16172 printf (" Tag_GNU_M68K_ABI_FP: ");
16173 if (p == end)
16174 {
16175 printf (_("<corrupt>\n"));
16176 return p;
16177 }
16178 READ_ULEB (val, p, end);
16179
16180 if (val > 3)
16181 printf ("(%#x), ", val);
16182
16183 switch (val & 3)
16184 {
16185 case 0:
16186 printf (_("unspecified hard/soft float\n"));
16187 break;
16188 case 1:
16189 printf (_("hard float\n"));
16190 break;
16191 case 2:
16192 printf (_("soft float\n"));
16193 break;
16194 }
16195 return p;
16196 }
16197
16198 return display_tag_value (tag & 1, p, end);
16199}
16200
34c8bcba 16201static unsigned char *
f6f0e17b 16202display_power_gnu_attribute (unsigned char * p,
60abdbed 16203 unsigned int tag,
f6f0e17b 16204 const unsigned char * const end)
34c8bcba 16205{
005d79fd 16206 unsigned int val;
34c8bcba
JM
16207
16208 if (tag == Tag_GNU_Power_ABI_FP)
16209 {
34c8bcba 16210 printf (" Tag_GNU_Power_ABI_FP: ");
cd30bcef 16211 if (p == end)
005d79fd
AM
16212 {
16213 printf (_("<corrupt>\n"));
16214 return p;
16215 }
cd30bcef 16216 READ_ULEB (val, p, end);
60bca95a 16217
005d79fd
AM
16218 if (val > 15)
16219 printf ("(%#x), ", val);
16220
16221 switch (val & 3)
34c8bcba
JM
16222 {
16223 case 0:
005d79fd 16224 printf (_("unspecified hard/soft float, "));
34c8bcba
JM
16225 break;
16226 case 1:
005d79fd 16227 printf (_("hard float, "));
34c8bcba
JM
16228 break;
16229 case 2:
005d79fd 16230 printf (_("soft float, "));
34c8bcba 16231 break;
3c7b9897 16232 case 3:
005d79fd 16233 printf (_("single-precision hard float, "));
3c7b9897 16234 break;
005d79fd
AM
16235 }
16236
16237 switch (val & 0xC)
16238 {
16239 case 0:
16240 printf (_("unspecified long double\n"));
16241 break;
16242 case 4:
16243 printf (_("128-bit IBM long double\n"));
16244 break;
16245 case 8:
16246 printf (_("64-bit long double\n"));
16247 break;
16248 case 12:
16249 printf (_("128-bit IEEE long double\n"));
34c8bcba
JM
16250 break;
16251 }
16252 return p;
005d79fd 16253 }
34c8bcba 16254
c6e65352
DJ
16255 if (tag == Tag_GNU_Power_ABI_Vector)
16256 {
c6e65352 16257 printf (" Tag_GNU_Power_ABI_Vector: ");
cd30bcef 16258 if (p == end)
005d79fd
AM
16259 {
16260 printf (_("<corrupt>\n"));
16261 return p;
16262 }
cd30bcef 16263 READ_ULEB (val, p, end);
005d79fd
AM
16264
16265 if (val > 3)
16266 printf ("(%#x), ", val);
16267
16268 switch (val & 3)
c6e65352
DJ
16269 {
16270 case 0:
005d79fd 16271 printf (_("unspecified\n"));
c6e65352
DJ
16272 break;
16273 case 1:
005d79fd 16274 printf (_("generic\n"));
c6e65352
DJ
16275 break;
16276 case 2:
16277 printf ("AltiVec\n");
16278 break;
16279 case 3:
16280 printf ("SPE\n");
16281 break;
c6e65352
DJ
16282 }
16283 return p;
005d79fd 16284 }
c6e65352 16285
f82e0623
NF
16286 if (tag == Tag_GNU_Power_ABI_Struct_Return)
16287 {
005d79fd 16288 printf (" Tag_GNU_Power_ABI_Struct_Return: ");
cd30bcef 16289 if (p == end)
f6f0e17b 16290 {
005d79fd 16291 printf (_("<corrupt>\n"));
f6f0e17b
NC
16292 return p;
16293 }
cd30bcef 16294 READ_ULEB (val, p, end);
0b4362b0 16295
005d79fd
AM
16296 if (val > 2)
16297 printf ("(%#x), ", val);
16298
16299 switch (val & 3)
16300 {
16301 case 0:
16302 printf (_("unspecified\n"));
16303 break;
16304 case 1:
16305 printf ("r3/r4\n");
16306 break;
16307 case 2:
16308 printf (_("memory\n"));
16309 break;
16310 case 3:
16311 printf ("???\n");
16312 break;
16313 }
f82e0623
NF
16314 return p;
16315 }
16316
f6f0e17b 16317 return display_tag_value (tag & 1, p, end);
34c8bcba
JM
16318}
16319
643f7afb
AK
16320static unsigned char *
16321display_s390_gnu_attribute (unsigned char * p,
60abdbed 16322 unsigned int tag,
643f7afb
AK
16323 const unsigned char * const end)
16324{
cd30bcef 16325 unsigned int val;
643f7afb
AK
16326
16327 if (tag == Tag_GNU_S390_ABI_Vector)
16328 {
643f7afb 16329 printf (" Tag_GNU_S390_ABI_Vector: ");
cd30bcef 16330 READ_ULEB (val, p, end);
643f7afb
AK
16331
16332 switch (val)
16333 {
16334 case 0:
16335 printf (_("any\n"));
16336 break;
16337 case 1:
16338 printf (_("software\n"));
16339 break;
16340 case 2:
16341 printf (_("hardware\n"));
16342 break;
16343 default:
16344 printf ("??? (%d)\n", val);
16345 break;
16346 }
16347 return p;
16348 }
16349
16350 return display_tag_value (tag & 1, p, end);
16351}
16352
9e8c70f9 16353static void
60abdbed 16354display_sparc_hwcaps (unsigned int mask)
9e8c70f9
DM
16355{
16356 if (mask)
16357 {
015dc7e1 16358 bool first = true;
071436c6 16359
9e8c70f9 16360 if (mask & ELF_SPARC_HWCAP_MUL32)
015dc7e1 16361 fputs ("mul32", stdout), first = false;
9e8c70f9 16362 if (mask & ELF_SPARC_HWCAP_DIV32)
015dc7e1 16363 printf ("%sdiv32", first ? "" : "|"), first = false;
9e8c70f9 16364 if (mask & ELF_SPARC_HWCAP_FSMULD)
015dc7e1 16365 printf ("%sfsmuld", first ? "" : "|"), first = false;
9e8c70f9 16366 if (mask & ELF_SPARC_HWCAP_V8PLUS)
015dc7e1 16367 printf ("%sv8plus", first ? "" : "|"), first = false;
9e8c70f9 16368 if (mask & ELF_SPARC_HWCAP_POPC)
015dc7e1 16369 printf ("%spopc", first ? "" : "|"), first = false;
9e8c70f9 16370 if (mask & ELF_SPARC_HWCAP_VIS)
015dc7e1 16371 printf ("%svis", first ? "" : "|"), first = false;
9e8c70f9 16372 if (mask & ELF_SPARC_HWCAP_VIS2)
015dc7e1 16373 printf ("%svis2", first ? "" : "|"), first = false;
9e8c70f9 16374 if (mask & ELF_SPARC_HWCAP_ASI_BLK_INIT)
015dc7e1 16375 printf ("%sASIBlkInit", first ? "" : "|"), first = false;
9e8c70f9 16376 if (mask & ELF_SPARC_HWCAP_FMAF)
015dc7e1 16377 printf ("%sfmaf", first ? "" : "|"), first = false;
9e8c70f9 16378 if (mask & ELF_SPARC_HWCAP_VIS3)
015dc7e1 16379 printf ("%svis3", first ? "" : "|"), first = false;
9e8c70f9 16380 if (mask & ELF_SPARC_HWCAP_HPC)
015dc7e1 16381 printf ("%shpc", first ? "" : "|"), first = false;
9e8c70f9 16382 if (mask & ELF_SPARC_HWCAP_RANDOM)
015dc7e1 16383 printf ("%srandom", first ? "" : "|"), first = false;
9e8c70f9 16384 if (mask & ELF_SPARC_HWCAP_TRANS)
015dc7e1 16385 printf ("%strans", first ? "" : "|"), first = false;
9e8c70f9 16386 if (mask & ELF_SPARC_HWCAP_FJFMAU)
015dc7e1 16387 printf ("%sfjfmau", first ? "" : "|"), first = false;
9e8c70f9 16388 if (mask & ELF_SPARC_HWCAP_IMA)
015dc7e1 16389 printf ("%sima", first ? "" : "|"), first = false;
9e8c70f9 16390 if (mask & ELF_SPARC_HWCAP_ASI_CACHE_SPARING)
015dc7e1 16391 printf ("%scspare", first ? "" : "|"), first = false;
9e8c70f9
DM
16392 }
16393 else
071436c6
NC
16394 fputc ('0', stdout);
16395 fputc ('\n', stdout);
9e8c70f9
DM
16396}
16397
3d68f91c 16398static void
60abdbed 16399display_sparc_hwcaps2 (unsigned int mask)
3d68f91c
JM
16400{
16401 if (mask)
16402 {
015dc7e1 16403 bool first = true;
071436c6 16404
3d68f91c 16405 if (mask & ELF_SPARC_HWCAP2_FJATHPLUS)
015dc7e1 16406 fputs ("fjathplus", stdout), first = false;
3d68f91c 16407 if (mask & ELF_SPARC_HWCAP2_VIS3B)
015dc7e1 16408 printf ("%svis3b", first ? "" : "|"), first = false;
3d68f91c 16409 if (mask & ELF_SPARC_HWCAP2_ADP)
015dc7e1 16410 printf ("%sadp", first ? "" : "|"), first = false;
3d68f91c 16411 if (mask & ELF_SPARC_HWCAP2_SPARC5)
015dc7e1 16412 printf ("%ssparc5", first ? "" : "|"), first = false;
3d68f91c 16413 if (mask & ELF_SPARC_HWCAP2_MWAIT)
015dc7e1 16414 printf ("%smwait", first ? "" : "|"), first = false;
3d68f91c 16415 if (mask & ELF_SPARC_HWCAP2_XMPMUL)
015dc7e1 16416 printf ("%sxmpmul", first ? "" : "|"), first = false;
3d68f91c 16417 if (mask & ELF_SPARC_HWCAP2_XMONT)
015dc7e1 16418 printf ("%sxmont2", first ? "" : "|"), first = false;
3d68f91c 16419 if (mask & ELF_SPARC_HWCAP2_NSEC)
015dc7e1 16420 printf ("%snsec", first ? "" : "|"), first = false;
3d68f91c 16421 if (mask & ELF_SPARC_HWCAP2_FJATHHPC)
015dc7e1 16422 printf ("%sfjathhpc", first ? "" : "|"), first = false;
3d68f91c 16423 if (mask & ELF_SPARC_HWCAP2_FJDES)
015dc7e1 16424 printf ("%sfjdes", first ? "" : "|"), first = false;
3d68f91c 16425 if (mask & ELF_SPARC_HWCAP2_FJAES)
015dc7e1 16426 printf ("%sfjaes", first ? "" : "|"), first = false;
3d68f91c
JM
16427 }
16428 else
071436c6
NC
16429 fputc ('0', stdout);
16430 fputc ('\n', stdout);
3d68f91c
JM
16431}
16432
9e8c70f9 16433static unsigned char *
f6f0e17b 16434display_sparc_gnu_attribute (unsigned char * p,
60abdbed 16435 unsigned int tag,
f6f0e17b 16436 const unsigned char * const end)
9e8c70f9 16437{
cd30bcef 16438 unsigned int val;
3d68f91c 16439
9e8c70f9
DM
16440 if (tag == Tag_GNU_Sparc_HWCAPS)
16441 {
cd30bcef 16442 READ_ULEB (val, p, end);
9e8c70f9 16443 printf (" Tag_GNU_Sparc_HWCAPS: ");
9e8c70f9
DM
16444 display_sparc_hwcaps (val);
16445 return p;
3d68f91c
JM
16446 }
16447 if (tag == Tag_GNU_Sparc_HWCAPS2)
16448 {
cd30bcef 16449 READ_ULEB (val, p, end);
3d68f91c
JM
16450 printf (" Tag_GNU_Sparc_HWCAPS2: ");
16451 display_sparc_hwcaps2 (val);
16452 return p;
16453 }
9e8c70f9 16454
f6f0e17b 16455 return display_tag_value (tag, p, end);
9e8c70f9
DM
16456}
16457
351cdf24 16458static void
32ec8896 16459print_mips_fp_abi_value (unsigned int val)
351cdf24
MF
16460{
16461 switch (val)
16462 {
16463 case Val_GNU_MIPS_ABI_FP_ANY:
16464 printf (_("Hard or soft float\n"));
16465 break;
16466 case Val_GNU_MIPS_ABI_FP_DOUBLE:
16467 printf (_("Hard float (double precision)\n"));
16468 break;
16469 case Val_GNU_MIPS_ABI_FP_SINGLE:
16470 printf (_("Hard float (single precision)\n"));
16471 break;
16472 case Val_GNU_MIPS_ABI_FP_SOFT:
16473 printf (_("Soft float\n"));
16474 break;
16475 case Val_GNU_MIPS_ABI_FP_OLD_64:
16476 printf (_("Hard float (MIPS32r2 64-bit FPU 12 callee-saved)\n"));
16477 break;
16478 case Val_GNU_MIPS_ABI_FP_XX:
16479 printf (_("Hard float (32-bit CPU, Any FPU)\n"));
16480 break;
16481 case Val_GNU_MIPS_ABI_FP_64:
16482 printf (_("Hard float (32-bit CPU, 64-bit FPU)\n"));
16483 break;
16484 case Val_GNU_MIPS_ABI_FP_64A:
16485 printf (_("Hard float compat (32-bit CPU, 64-bit FPU)\n"));
16486 break;
3350cc01
CM
16487 case Val_GNU_MIPS_ABI_FP_NAN2008:
16488 printf (_("NaN 2008 compatibility\n"));
16489 break;
351cdf24
MF
16490 default:
16491 printf ("??? (%d)\n", val);
16492 break;
16493 }
16494}
16495
2cf19d5c 16496static unsigned char *
f6f0e17b 16497display_mips_gnu_attribute (unsigned char * p,
60abdbed 16498 unsigned int tag,
f6f0e17b 16499 const unsigned char * const end)
2cf19d5c 16500{
2cf19d5c
JM
16501 if (tag == Tag_GNU_MIPS_ABI_FP)
16502 {
32ec8896 16503 unsigned int val;
f6f0e17b 16504
2cf19d5c 16505 printf (" Tag_GNU_MIPS_ABI_FP: ");
cd30bcef 16506 READ_ULEB (val, p, end);
351cdf24 16507 print_mips_fp_abi_value (val);
2cf19d5c
JM
16508 return p;
16509 }
16510
a9f58168
CF
16511 if (tag == Tag_GNU_MIPS_ABI_MSA)
16512 {
32ec8896 16513 unsigned int val;
a9f58168 16514
a9f58168 16515 printf (" Tag_GNU_MIPS_ABI_MSA: ");
cd30bcef 16516 READ_ULEB (val, p, end);
a9f58168
CF
16517
16518 switch (val)
16519 {
16520 case Val_GNU_MIPS_ABI_MSA_ANY:
16521 printf (_("Any MSA or not\n"));
16522 break;
16523 case Val_GNU_MIPS_ABI_MSA_128:
16524 printf (_("128-bit MSA\n"));
16525 break;
16526 default:
16527 printf ("??? (%d)\n", val);
16528 break;
16529 }
16530 return p;
16531 }
16532
f6f0e17b 16533 return display_tag_value (tag & 1, p, end);
2cf19d5c
JM
16534}
16535
59e6276b 16536static unsigned char *
f6f0e17b
NC
16537display_tic6x_attribute (unsigned char * p,
16538 const unsigned char * const end)
59e6276b 16539{
60abdbed 16540 unsigned int tag;
cd30bcef 16541 unsigned int val;
59e6276b 16542
cd30bcef 16543 READ_ULEB (tag, p, end);
59e6276b
JM
16544
16545 switch (tag)
16546 {
75fa6dc1 16547 case Tag_ISA:
75fa6dc1 16548 printf (" Tag_ISA: ");
cd30bcef 16549 READ_ULEB (val, p, end);
59e6276b
JM
16550
16551 switch (val)
16552 {
75fa6dc1 16553 case C6XABI_Tag_ISA_none:
59e6276b
JM
16554 printf (_("None\n"));
16555 break;
75fa6dc1 16556 case C6XABI_Tag_ISA_C62X:
59e6276b
JM
16557 printf ("C62x\n");
16558 break;
75fa6dc1 16559 case C6XABI_Tag_ISA_C67X:
59e6276b
JM
16560 printf ("C67x\n");
16561 break;
75fa6dc1 16562 case C6XABI_Tag_ISA_C67XP:
59e6276b
JM
16563 printf ("C67x+\n");
16564 break;
75fa6dc1 16565 case C6XABI_Tag_ISA_C64X:
59e6276b
JM
16566 printf ("C64x\n");
16567 break;
75fa6dc1 16568 case C6XABI_Tag_ISA_C64XP:
59e6276b
JM
16569 printf ("C64x+\n");
16570 break;
75fa6dc1 16571 case C6XABI_Tag_ISA_C674X:
59e6276b
JM
16572 printf ("C674x\n");
16573 break;
16574 default:
16575 printf ("??? (%d)\n", val);
16576 break;
16577 }
16578 return p;
16579
87779176 16580 case Tag_ABI_wchar_t:
87779176 16581 printf (" Tag_ABI_wchar_t: ");
cd30bcef 16582 READ_ULEB (val, p, end);
87779176
JM
16583 switch (val)
16584 {
16585 case 0:
16586 printf (_("Not used\n"));
16587 break;
16588 case 1:
16589 printf (_("2 bytes\n"));
16590 break;
16591 case 2:
16592 printf (_("4 bytes\n"));
16593 break;
16594 default:
16595 printf ("??? (%d)\n", val);
16596 break;
16597 }
16598 return p;
16599
16600 case Tag_ABI_stack_align_needed:
87779176 16601 printf (" Tag_ABI_stack_align_needed: ");
cd30bcef 16602 READ_ULEB (val, p, end);
87779176
JM
16603 switch (val)
16604 {
16605 case 0:
16606 printf (_("8-byte\n"));
16607 break;
16608 case 1:
16609 printf (_("16-byte\n"));
16610 break;
16611 default:
16612 printf ("??? (%d)\n", val);
16613 break;
16614 }
16615 return p;
16616
16617 case Tag_ABI_stack_align_preserved:
cd30bcef 16618 READ_ULEB (val, p, end);
87779176
JM
16619 printf (" Tag_ABI_stack_align_preserved: ");
16620 switch (val)
16621 {
16622 case 0:
16623 printf (_("8-byte\n"));
16624 break;
16625 case 1:
16626 printf (_("16-byte\n"));
16627 break;
16628 default:
16629 printf ("??? (%d)\n", val);
16630 break;
16631 }
16632 return p;
16633
b5593623 16634 case Tag_ABI_DSBT:
cd30bcef 16635 READ_ULEB (val, p, end);
b5593623
JM
16636 printf (" Tag_ABI_DSBT: ");
16637 switch (val)
16638 {
16639 case 0:
16640 printf (_("DSBT addressing not used\n"));
16641 break;
16642 case 1:
16643 printf (_("DSBT addressing used\n"));
16644 break;
16645 default:
16646 printf ("??? (%d)\n", val);
16647 break;
16648 }
16649 return p;
16650
87779176 16651 case Tag_ABI_PID:
cd30bcef 16652 READ_ULEB (val, p, end);
87779176
JM
16653 printf (" Tag_ABI_PID: ");
16654 switch (val)
16655 {
16656 case 0:
16657 printf (_("Data addressing position-dependent\n"));
16658 break;
16659 case 1:
16660 printf (_("Data addressing position-independent, GOT near DP\n"));
16661 break;
16662 case 2:
16663 printf (_("Data addressing position-independent, GOT far from DP\n"));
16664 break;
16665 default:
16666 printf ("??? (%d)\n", val);
16667 break;
16668 }
16669 return p;
16670
16671 case Tag_ABI_PIC:
cd30bcef 16672 READ_ULEB (val, p, end);
87779176
JM
16673 printf (" Tag_ABI_PIC: ");
16674 switch (val)
16675 {
16676 case 0:
16677 printf (_("Code addressing position-dependent\n"));
16678 break;
16679 case 1:
16680 printf (_("Code addressing position-independent\n"));
16681 break;
16682 default:
16683 printf ("??? (%d)\n", val);
16684 break;
16685 }
16686 return p;
16687
16688 case Tag_ABI_array_object_alignment:
cd30bcef 16689 READ_ULEB (val, p, end);
87779176
JM
16690 printf (" Tag_ABI_array_object_alignment: ");
16691 switch (val)
16692 {
16693 case 0:
16694 printf (_("8-byte\n"));
16695 break;
16696 case 1:
16697 printf (_("4-byte\n"));
16698 break;
16699 case 2:
16700 printf (_("16-byte\n"));
16701 break;
16702 default:
16703 printf ("??? (%d)\n", val);
16704 break;
16705 }
16706 return p;
16707
16708 case Tag_ABI_array_object_align_expected:
cd30bcef 16709 READ_ULEB (val, p, end);
87779176
JM
16710 printf (" Tag_ABI_array_object_align_expected: ");
16711 switch (val)
16712 {
16713 case 0:
16714 printf (_("8-byte\n"));
16715 break;
16716 case 1:
16717 printf (_("4-byte\n"));
16718 break;
16719 case 2:
16720 printf (_("16-byte\n"));
16721 break;
16722 default:
16723 printf ("??? (%d)\n", val);
16724 break;
16725 }
16726 return p;
16727
3cbd1c06 16728 case Tag_ABI_compatibility:
071436c6 16729 {
cd30bcef 16730 READ_ULEB (val, p, end);
071436c6 16731 printf (" Tag_ABI_compatibility: ");
071436c6 16732 printf (_("flag = %d, vendor = "), val);
4082ef84
NC
16733 if (p < end - 1)
16734 {
16735 size_t maxlen = (end - p) - 1;
16736
16737 print_symbol ((int) maxlen, (const char *) p);
16738 p += strnlen ((char *) p, maxlen) + 1;
16739 }
16740 else
16741 {
16742 printf (_("<corrupt>"));
16743 p = (unsigned char *) end;
16744 }
071436c6 16745 putchar ('\n');
071436c6
NC
16746 return p;
16747 }
87779176
JM
16748
16749 case Tag_ABI_conformance:
071436c6 16750 {
4082ef84
NC
16751 printf (" Tag_ABI_conformance: \"");
16752 if (p < end - 1)
16753 {
16754 size_t maxlen = (end - p) - 1;
071436c6 16755
4082ef84
NC
16756 print_symbol ((int) maxlen, (const char *) p);
16757 p += strnlen ((char *) p, maxlen) + 1;
16758 }
16759 else
16760 {
16761 printf (_("<corrupt>"));
16762 p = (unsigned char *) end;
16763 }
071436c6 16764 printf ("\"\n");
071436c6
NC
16765 return p;
16766 }
59e6276b
JM
16767 }
16768
f6f0e17b
NC
16769 return display_tag_value (tag, p, end);
16770}
59e6276b 16771
f6f0e17b 16772static void
60abdbed 16773display_raw_attribute (unsigned char * p, unsigned char const * const end)
f6f0e17b
NC
16774{
16775 unsigned long addr = 0;
16776 size_t bytes = end - p;
16777
feceaa59 16778 assert (end >= p);
f6f0e17b 16779 while (bytes)
87779176 16780 {
f6f0e17b
NC
16781 int j;
16782 int k;
16783 int lbytes = (bytes > 16 ? 16 : bytes);
16784
16785 printf (" 0x%8.8lx ", addr);
16786
16787 for (j = 0; j < 16; j++)
16788 {
16789 if (j < lbytes)
16790 printf ("%2.2x", p[j]);
16791 else
16792 printf (" ");
16793
16794 if ((j & 3) == 3)
16795 printf (" ");
16796 }
16797
16798 for (j = 0; j < lbytes; j++)
16799 {
16800 k = p[j];
16801 if (k >= ' ' && k < 0x7f)
16802 printf ("%c", k);
16803 else
16804 printf (".");
16805 }
16806
16807 putchar ('\n');
16808
16809 p += lbytes;
16810 bytes -= lbytes;
16811 addr += lbytes;
87779176 16812 }
59e6276b 16813
f6f0e17b 16814 putchar ('\n');
59e6276b
JM
16815}
16816
13761a11 16817static unsigned char *
b0191216 16818display_msp430_attribute (unsigned char * p,
13761a11
NC
16819 const unsigned char * const end)
16820{
60abdbed
NC
16821 unsigned int val;
16822 unsigned int tag;
13761a11 16823
cd30bcef 16824 READ_ULEB (tag, p, end);
0b4362b0 16825
13761a11
NC
16826 switch (tag)
16827 {
16828 case OFBA_MSPABI_Tag_ISA:
13761a11 16829 printf (" Tag_ISA: ");
cd30bcef 16830 READ_ULEB (val, p, end);
13761a11
NC
16831 switch (val)
16832 {
16833 case 0: printf (_("None\n")); break;
16834 case 1: printf (_("MSP430\n")); break;
16835 case 2: printf (_("MSP430X\n")); break;
16836 default: printf ("??? (%d)\n", val); break;
16837 }
16838 break;
16839
16840 case OFBA_MSPABI_Tag_Code_Model:
13761a11 16841 printf (" Tag_Code_Model: ");
cd30bcef 16842 READ_ULEB (val, p, end);
13761a11
NC
16843 switch (val)
16844 {
16845 case 0: printf (_("None\n")); break;
16846 case 1: printf (_("Small\n")); break;
16847 case 2: printf (_("Large\n")); break;
16848 default: printf ("??? (%d)\n", val); break;
16849 }
16850 break;
16851
16852 case OFBA_MSPABI_Tag_Data_Model:
13761a11 16853 printf (" Tag_Data_Model: ");
cd30bcef 16854 READ_ULEB (val, p, end);
13761a11
NC
16855 switch (val)
16856 {
16857 case 0: printf (_("None\n")); break;
16858 case 1: printf (_("Small\n")); break;
16859 case 2: printf (_("Large\n")); break;
16860 case 3: printf (_("Restricted Large\n")); break;
16861 default: printf ("??? (%d)\n", val); break;
16862 }
16863 break;
16864
16865 default:
16866 printf (_(" <unknown tag %d>: "), tag);
16867
16868 if (tag & 1)
16869 {
071436c6 16870 putchar ('"');
4082ef84
NC
16871 if (p < end - 1)
16872 {
16873 size_t maxlen = (end - p) - 1;
16874
16875 print_symbol ((int) maxlen, (const char *) p);
16876 p += strnlen ((char *) p, maxlen) + 1;
16877 }
16878 else
16879 {
16880 printf (_("<corrupt>"));
16881 p = (unsigned char *) end;
16882 }
071436c6 16883 printf ("\"\n");
13761a11
NC
16884 }
16885 else
16886 {
cd30bcef 16887 READ_ULEB (val, p, end);
13761a11
NC
16888 printf ("%d (0x%x)\n", val, val);
16889 }
16890 break;
16891 }
16892
4082ef84 16893 assert (p <= end);
13761a11
NC
16894 return p;
16895}
16896
c0ea7c52
JL
16897static unsigned char *
16898display_msp430_gnu_attribute (unsigned char * p,
16899 unsigned int tag,
16900 const unsigned char * const end)
16901{
16902 if (tag == Tag_GNU_MSP430_Data_Region)
16903 {
cd30bcef 16904 unsigned int val;
c0ea7c52 16905
c0ea7c52 16906 printf (" Tag_GNU_MSP430_Data_Region: ");
cd30bcef 16907 READ_ULEB (val, p, end);
c0ea7c52
JL
16908
16909 switch (val)
16910 {
16911 case Val_GNU_MSP430_Data_Region_Any:
16912 printf (_("Any Region\n"));
16913 break;
16914 case Val_GNU_MSP430_Data_Region_Lower:
16915 printf (_("Lower Region Only\n"));
16916 break;
16917 default:
cd30bcef 16918 printf ("??? (%u)\n", val);
c0ea7c52
JL
16919 }
16920 return p;
16921 }
16922 return display_tag_value (tag & 1, p, end);
16923}
16924
2dc8dd17
JW
16925struct riscv_attr_tag_t {
16926 const char *name;
cd30bcef 16927 unsigned int tag;
2dc8dd17
JW
16928};
16929
16930static struct riscv_attr_tag_t riscv_attr_tag[] =
16931{
16932#define T(tag) {"Tag_RISCV_" #tag, Tag_RISCV_##tag}
16933 T(arch),
16934 T(priv_spec),
16935 T(priv_spec_minor),
16936 T(priv_spec_revision),
16937 T(unaligned_access),
16938 T(stack_align),
16939#undef T
16940};
16941
16942static unsigned char *
16943display_riscv_attribute (unsigned char *p,
16944 const unsigned char * const end)
16945{
cd30bcef
AM
16946 unsigned int val;
16947 unsigned int tag;
2dc8dd17
JW
16948 struct riscv_attr_tag_t *attr = NULL;
16949 unsigned i;
16950
cd30bcef 16951 READ_ULEB (tag, p, end);
2dc8dd17
JW
16952
16953 /* Find the name of attribute. */
16954 for (i = 0; i < ARRAY_SIZE (riscv_attr_tag); i++)
16955 {
16956 if (riscv_attr_tag[i].tag == tag)
16957 {
16958 attr = &riscv_attr_tag[i];
16959 break;
16960 }
16961 }
16962
16963 if (attr)
16964 printf (" %s: ", attr->name);
16965 else
16966 return display_tag_value (tag, p, end);
16967
16968 switch (tag)
16969 {
16970 case Tag_RISCV_priv_spec:
16971 case Tag_RISCV_priv_spec_minor:
16972 case Tag_RISCV_priv_spec_revision:
cd30bcef
AM
16973 READ_ULEB (val, p, end);
16974 printf (_("%u\n"), val);
2dc8dd17
JW
16975 break;
16976 case Tag_RISCV_unaligned_access:
cd30bcef 16977 READ_ULEB (val, p, end);
2dc8dd17
JW
16978 switch (val)
16979 {
16980 case 0:
16981 printf (_("No unaligned access\n"));
16982 break;
16983 case 1:
16984 printf (_("Unaligned access\n"));
16985 break;
16986 }
16987 break;
16988 case Tag_RISCV_stack_align:
cd30bcef
AM
16989 READ_ULEB (val, p, end);
16990 printf (_("%u-bytes\n"), val);
2dc8dd17
JW
16991 break;
16992 case Tag_RISCV_arch:
16993 p = display_tag_value (-1, p, end);
16994 break;
16995 default:
16996 return display_tag_value (tag, p, end);
16997 }
16998
16999 return p;
17000}
17001
0861f561
CQ
17002static unsigned char *
17003display_csky_attribute (unsigned char * p,
17004 const unsigned char * const end)
17005{
17006 unsigned int tag;
17007 unsigned int val;
17008 READ_ULEB (tag, p, end);
17009
17010 if (tag >= Tag_CSKY_MAX)
17011 {
17012 return display_tag_value (-1, p, end);
17013 }
17014
17015 switch (tag)
17016 {
17017 case Tag_CSKY_ARCH_NAME:
17018 printf (" Tag_CSKY_ARCH_NAME:\t\t");
17019 return display_tag_value (-1, p, end);
17020 case Tag_CSKY_CPU_NAME:
17021 printf (" Tag_CSKY_CPU_NAME:\t\t");
17022 return display_tag_value (-1, p, end);
17023
17024 case Tag_CSKY_ISA_FLAGS:
17025 printf (" Tag_CSKY_ISA_FLAGS:\t\t");
17026 return display_tag_value (0, p, end);
17027 case Tag_CSKY_ISA_EXT_FLAGS:
17028 printf (" Tag_CSKY_ISA_EXT_FLAGS:\t");
17029 return display_tag_value (0, p, end);
17030
17031 case Tag_CSKY_DSP_VERSION:
17032 printf (" Tag_CSKY_DSP_VERSION:\t\t");
17033 READ_ULEB (val, p, end);
17034 if (val == VAL_CSKY_DSP_VERSION_EXTENSION)
17035 printf ("DSP Extension\n");
17036 else if (val == VAL_CSKY_DSP_VERSION_2)
17037 printf ("DSP 2.0\n");
17038 break;
17039
17040 case Tag_CSKY_VDSP_VERSION:
17041 printf (" Tag_CSKY_VDSP_VERSION:\t");
17042 READ_ULEB (val, p, end);
17043 printf ("VDSP Version %d\n", val);
17044 break;
17045
17046 case Tag_CSKY_FPU_VERSION:
17047 printf (" Tag_CSKY_FPU_VERSION:\t\t");
17048 READ_ULEB (val, p, end);
17049 if (val == VAL_CSKY_FPU_VERSION_1)
17050 printf ("ABIV1 FPU Version 1\n");
17051 else if (val == VAL_CSKY_FPU_VERSION_2)
17052 printf ("FPU Version 2\n");
17053 break;
17054
17055 case Tag_CSKY_FPU_ABI:
17056 printf (" Tag_CSKY_FPU_ABI:\t\t");
17057 READ_ULEB (val, p, end);
17058 if (val == VAL_CSKY_FPU_ABI_HARD)
17059 printf ("Hard\n");
17060 else if (val == VAL_CSKY_FPU_ABI_SOFTFP)
17061 printf ("SoftFP\n");
17062 else if (val == VAL_CSKY_FPU_ABI_SOFT)
17063 printf ("Soft\n");
17064 break;
17065 case Tag_CSKY_FPU_ROUNDING:
17066 READ_ULEB (val, p, end);
17067 if (val == 1) {
17068 printf (" Tag_CSKY_FPU_ROUNDING:\t");
17069 printf ("Needed\n");
17070 }
17071 break;
17072 case Tag_CSKY_FPU_DENORMAL:
17073 READ_ULEB (val, p, end);
17074 if (val == 1) {
17075 printf (" Tag_CSKY_FPU_DENORMAL:\t");
17076 printf ("Needed\n");
17077 }
17078 break;
17079 case Tag_CSKY_FPU_Exception:
17080 READ_ULEB (val, p, end);
17081 if (val == 1) {
17082 printf (" Tag_CSKY_FPU_Exception:\t");
17083 printf ("Needed\n");
17084 }
17085 break;
17086 case Tag_CSKY_FPU_NUMBER_MODULE:
17087 printf (" Tag_CSKY_FPU_NUMBER_MODULE:\t");
17088 return display_tag_value (-1, p, end);
17089 case Tag_CSKY_FPU_HARDFP:
17090 printf (" Tag_CSKY_FPU_HARDFP:\t\t");
17091 READ_ULEB (val, p, end);
17092 if (val & VAL_CSKY_FPU_HARDFP_HALF)
17093 printf (" Half");
17094 if (val & VAL_CSKY_FPU_HARDFP_SINGLE)
17095 printf (" Single");
17096 if (val & VAL_CSKY_FPU_HARDFP_DOUBLE)
17097 printf (" Double");
17098 printf ("\n");
17099 break;
17100 default:
17101 return display_tag_value (tag, p, end);
17102 }
17103 return p;
17104}
17105
015dc7e1 17106static bool
dda8d76d 17107process_attributes (Filedata * filedata,
60bca95a 17108 const char * public_name,
104d59d1 17109 unsigned int proc_type,
f6f0e17b 17110 unsigned char * (* display_pub_attribute) (unsigned char *, const unsigned char * const),
60abdbed 17111 unsigned char * (* display_proc_gnu_attribute) (unsigned char *, unsigned int, const unsigned char * const))
11c1ff18 17112{
2cf0635d 17113 Elf_Internal_Shdr * sect;
11c1ff18 17114 unsigned i;
015dc7e1 17115 bool res = true;
11c1ff18
PB
17116
17117 /* Find the section header so that we get the size. */
dda8d76d
NC
17118 for (i = 0, sect = filedata->section_headers;
17119 i < filedata->file_header.e_shnum;
11c1ff18
PB
17120 i++, sect++)
17121 {
071436c6
NC
17122 unsigned char * contents;
17123 unsigned char * p;
17124
104d59d1 17125 if (sect->sh_type != proc_type && sect->sh_type != SHT_GNU_ATTRIBUTES)
11c1ff18
PB
17126 continue;
17127
dda8d76d 17128 contents = (unsigned char *) get_data (NULL, filedata, sect->sh_offset, 1,
3f5e193b 17129 sect->sh_size, _("attributes"));
60bca95a 17130 if (contents == NULL)
32ec8896 17131 {
015dc7e1 17132 res = false;
32ec8896
NC
17133 continue;
17134 }
60bca95a 17135
11c1ff18 17136 p = contents;
60abdbed
NC
17137 /* The first character is the version of the attributes.
17138 Currently only version 1, (aka 'A') is recognised here. */
17139 if (*p != 'A')
32ec8896
NC
17140 {
17141 printf (_("Unknown attributes version '%c'(%d) - expecting 'A'\n"), *p, *p);
015dc7e1 17142 res = false;
32ec8896 17143 }
60abdbed 17144 else
11c1ff18 17145 {
071436c6
NC
17146 bfd_vma section_len;
17147
17148 section_len = sect->sh_size - 1;
11c1ff18 17149 p++;
60bca95a 17150
071436c6 17151 while (section_len > 0)
11c1ff18 17152 {
071436c6 17153 bfd_vma attr_len;
e9847026 17154 unsigned int namelen;
015dc7e1
AM
17155 bool public_section;
17156 bool gnu_section;
11c1ff18 17157
071436c6 17158 if (section_len <= 4)
e0a31db1
NC
17159 {
17160 error (_("Tag section ends prematurely\n"));
015dc7e1 17161 res = false;
e0a31db1
NC
17162 break;
17163 }
071436c6 17164 attr_len = byte_get (p, 4);
11c1ff18 17165 p += 4;
60bca95a 17166
071436c6 17167 if (attr_len > section_len)
11c1ff18 17168 {
071436c6
NC
17169 error (_("Bad attribute length (%u > %u)\n"),
17170 (unsigned) attr_len, (unsigned) section_len);
17171 attr_len = section_len;
015dc7e1 17172 res = false;
11c1ff18 17173 }
74e1a04b 17174 /* PR 17531: file: 001-101425-0.004 */
071436c6 17175 else if (attr_len < 5)
74e1a04b 17176 {
071436c6 17177 error (_("Attribute length of %u is too small\n"), (unsigned) attr_len);
015dc7e1 17178 res = false;
74e1a04b
NC
17179 break;
17180 }
e9847026 17181
071436c6
NC
17182 section_len -= attr_len;
17183 attr_len -= 4;
17184
17185 namelen = strnlen ((char *) p, attr_len) + 1;
17186 if (namelen == 0 || namelen >= attr_len)
e9847026
NC
17187 {
17188 error (_("Corrupt attribute section name\n"));
015dc7e1 17189 res = false;
e9847026
NC
17190 break;
17191 }
17192
071436c6
NC
17193 printf (_("Attribute Section: "));
17194 print_symbol (INT_MAX, (const char *) p);
17195 putchar ('\n');
60bca95a
NC
17196
17197 if (public_name && streq ((char *) p, public_name))
015dc7e1 17198 public_section = true;
11c1ff18 17199 else
015dc7e1 17200 public_section = false;
60bca95a
NC
17201
17202 if (streq ((char *) p, "gnu"))
015dc7e1 17203 gnu_section = true;
104d59d1 17204 else
015dc7e1 17205 gnu_section = false;
60bca95a 17206
11c1ff18 17207 p += namelen;
071436c6 17208 attr_len -= namelen;
e0a31db1 17209
071436c6 17210 while (attr_len > 0 && p < contents + sect->sh_size)
11c1ff18 17211 {
e0a31db1 17212 int tag;
cd30bcef 17213 unsigned int val;
11c1ff18 17214 bfd_vma size;
071436c6 17215 unsigned char * end;
60bca95a 17216
e0a31db1 17217 /* PR binutils/17531: Safe handling of corrupt files. */
071436c6 17218 if (attr_len < 6)
e0a31db1
NC
17219 {
17220 error (_("Unused bytes at end of section\n"));
015dc7e1 17221 res = false;
e0a31db1
NC
17222 section_len = 0;
17223 break;
17224 }
17225
17226 tag = *(p++);
11c1ff18 17227 size = byte_get (p, 4);
071436c6 17228 if (size > attr_len)
11c1ff18 17229 {
e9847026 17230 error (_("Bad subsection length (%u > %u)\n"),
071436c6 17231 (unsigned) size, (unsigned) attr_len);
015dc7e1 17232 res = false;
071436c6 17233 size = attr_len;
11c1ff18 17234 }
e0a31db1
NC
17235 /* PR binutils/17531: Safe handling of corrupt files. */
17236 if (size < 6)
17237 {
17238 error (_("Bad subsection length (%u < 6)\n"),
17239 (unsigned) size);
015dc7e1 17240 res = false;
e0a31db1
NC
17241 section_len = 0;
17242 break;
17243 }
60bca95a 17244
071436c6 17245 attr_len -= size;
11c1ff18 17246 end = p + size - 1;
071436c6 17247 assert (end <= contents + sect->sh_size);
11c1ff18 17248 p += 4;
60bca95a 17249
11c1ff18
PB
17250 switch (tag)
17251 {
17252 case 1:
2b692964 17253 printf (_("File Attributes\n"));
11c1ff18
PB
17254 break;
17255 case 2:
2b692964 17256 printf (_("Section Attributes:"));
11c1ff18
PB
17257 goto do_numlist;
17258 case 3:
2b692964 17259 printf (_("Symbol Attributes:"));
1a0670f3 17260 /* Fall through. */
11c1ff18
PB
17261 do_numlist:
17262 for (;;)
17263 {
cd30bcef 17264 READ_ULEB (val, p, end);
11c1ff18
PB
17265 if (val == 0)
17266 break;
17267 printf (" %d", val);
17268 }
17269 printf ("\n");
17270 break;
17271 default:
2b692964 17272 printf (_("Unknown tag: %d\n"), tag);
015dc7e1 17273 public_section = false;
11c1ff18
PB
17274 break;
17275 }
60bca95a 17276
071436c6 17277 if (public_section && display_pub_attribute != NULL)
11c1ff18
PB
17278 {
17279 while (p < end)
f6f0e17b 17280 p = display_pub_attribute (p, end);
60abdbed 17281 assert (p == end);
104d59d1 17282 }
071436c6 17283 else if (gnu_section && display_proc_gnu_attribute != NULL)
104d59d1
JM
17284 {
17285 while (p < end)
17286 p = display_gnu_attribute (p,
f6f0e17b
NC
17287 display_proc_gnu_attribute,
17288 end);
60abdbed 17289 assert (p == end);
11c1ff18 17290 }
071436c6 17291 else if (p < end)
11c1ff18 17292 {
071436c6 17293 printf (_(" Unknown attribute:\n"));
f6f0e17b 17294 display_raw_attribute (p, end);
11c1ff18
PB
17295 p = end;
17296 }
071436c6
NC
17297 else
17298 attr_len = 0;
11c1ff18
PB
17299 }
17300 }
17301 }
d70c5fc7 17302
60bca95a 17303 free (contents);
11c1ff18 17304 }
32ec8896
NC
17305
17306 return res;
11c1ff18
PB
17307}
17308
ccb4c951
RS
17309/* DATA points to the contents of a MIPS GOT that starts at VMA PLTGOT.
17310 Print the Address, Access and Initial fields of an entry at VMA ADDR
82b1b41b
NC
17311 and return the VMA of the next entry, or -1 if there was a problem.
17312 Does not read from DATA_END or beyond. */
ccb4c951
RS
17313
17314static bfd_vma
82b1b41b
NC
17315print_mips_got_entry (unsigned char * data, bfd_vma pltgot, bfd_vma addr,
17316 unsigned char * data_end)
ccb4c951
RS
17317{
17318 printf (" ");
17319 print_vma (addr, LONG_HEX);
17320 printf (" ");
17321 if (addr < pltgot + 0xfff0)
17322 printf ("%6d(gp)", (int) (addr - pltgot - 0x7ff0));
17323 else
17324 printf ("%10s", "");
17325 printf (" ");
17326 if (data == NULL)
2b692964 17327 printf ("%*s", is_32bit_elf ? 8 : 16, _("<unknown>"));
ccb4c951
RS
17328 else
17329 {
17330 bfd_vma entry;
82b1b41b 17331 unsigned char * from = data + addr - pltgot;
ccb4c951 17332
82b1b41b
NC
17333 if (from + (is_32bit_elf ? 4 : 8) > data_end)
17334 {
17335 warn (_("MIPS GOT entry extends beyond the end of available data\n"));
17336 printf ("%*s", is_32bit_elf ? 8 : 16, _("<corrupt>"));
17337 return (bfd_vma) -1;
17338 }
17339 else
17340 {
17341 entry = byte_get (data + addr - pltgot, is_32bit_elf ? 4 : 8);
17342 print_vma (entry, LONG_HEX);
17343 }
ccb4c951
RS
17344 }
17345 return addr + (is_32bit_elf ? 4 : 8);
17346}
17347
861fb55a
DJ
17348/* DATA points to the contents of a MIPS PLT GOT that starts at VMA
17349 PLTGOT. Print the Address and Initial fields of an entry at VMA
17350 ADDR and return the VMA of the next entry. */
17351
17352static bfd_vma
2cf0635d 17353print_mips_pltgot_entry (unsigned char * data, bfd_vma pltgot, bfd_vma addr)
861fb55a
DJ
17354{
17355 printf (" ");
17356 print_vma (addr, LONG_HEX);
17357 printf (" ");
17358 if (data == NULL)
2b692964 17359 printf ("%*s", is_32bit_elf ? 8 : 16, _("<unknown>"));
861fb55a
DJ
17360 else
17361 {
17362 bfd_vma entry;
17363
17364 entry = byte_get (data + addr - pltgot, is_32bit_elf ? 4 : 8);
17365 print_vma (entry, LONG_HEX);
17366 }
17367 return addr + (is_32bit_elf ? 4 : 8);
17368}
17369
351cdf24
MF
17370static void
17371print_mips_ases (unsigned int mask)
17372{
17373 if (mask & AFL_ASE_DSP)
17374 fputs ("\n\tDSP ASE", stdout);
17375 if (mask & AFL_ASE_DSPR2)
17376 fputs ("\n\tDSP R2 ASE", stdout);
8f4f9071
MF
17377 if (mask & AFL_ASE_DSPR3)
17378 fputs ("\n\tDSP R3 ASE", stdout);
351cdf24
MF
17379 if (mask & AFL_ASE_EVA)
17380 fputs ("\n\tEnhanced VA Scheme", stdout);
17381 if (mask & AFL_ASE_MCU)
17382 fputs ("\n\tMCU (MicroController) ASE", stdout);
17383 if (mask & AFL_ASE_MDMX)
17384 fputs ("\n\tMDMX ASE", stdout);
17385 if (mask & AFL_ASE_MIPS3D)
17386 fputs ("\n\tMIPS-3D ASE", stdout);
17387 if (mask & AFL_ASE_MT)
17388 fputs ("\n\tMT ASE", stdout);
17389 if (mask & AFL_ASE_SMARTMIPS)
17390 fputs ("\n\tSmartMIPS ASE", stdout);
17391 if (mask & AFL_ASE_VIRT)
17392 fputs ("\n\tVZ ASE", stdout);
17393 if (mask & AFL_ASE_MSA)
17394 fputs ("\n\tMSA ASE", stdout);
17395 if (mask & AFL_ASE_MIPS16)
17396 fputs ("\n\tMIPS16 ASE", stdout);
17397 if (mask & AFL_ASE_MICROMIPS)
17398 fputs ("\n\tMICROMIPS ASE", stdout);
17399 if (mask & AFL_ASE_XPA)
17400 fputs ("\n\tXPA ASE", stdout);
25499ac7
MR
17401 if (mask & AFL_ASE_MIPS16E2)
17402 fputs ("\n\tMIPS16e2 ASE", stdout);
730c3174
SE
17403 if (mask & AFL_ASE_CRC)
17404 fputs ("\n\tCRC ASE", stdout);
6f20c942
FS
17405 if (mask & AFL_ASE_GINV)
17406 fputs ("\n\tGINV ASE", stdout);
8095d2f7
CX
17407 if (mask & AFL_ASE_LOONGSON_MMI)
17408 fputs ("\n\tLoongson MMI ASE", stdout);
716c08de
CX
17409 if (mask & AFL_ASE_LOONGSON_CAM)
17410 fputs ("\n\tLoongson CAM ASE", stdout);
bdc6c06e
CX
17411 if (mask & AFL_ASE_LOONGSON_EXT)
17412 fputs ("\n\tLoongson EXT ASE", stdout);
a693765e
CX
17413 if (mask & AFL_ASE_LOONGSON_EXT2)
17414 fputs ("\n\tLoongson EXT2 ASE", stdout);
351cdf24
MF
17415 if (mask == 0)
17416 fprintf (stdout, "\n\t%s", _("None"));
00ac7aa0
MF
17417 else if ((mask & ~AFL_ASE_MASK) != 0)
17418 fprintf (stdout, "\n\t%s (%x)", _("Unknown"), mask & ~AFL_ASE_MASK);
351cdf24
MF
17419}
17420
17421static void
17422print_mips_isa_ext (unsigned int isa_ext)
17423{
17424 switch (isa_ext)
17425 {
17426 case 0:
17427 fputs (_("None"), stdout);
17428 break;
17429 case AFL_EXT_XLR:
17430 fputs ("RMI XLR", stdout);
17431 break;
2c629856
N
17432 case AFL_EXT_OCTEON3:
17433 fputs ("Cavium Networks Octeon3", stdout);
17434 break;
351cdf24
MF
17435 case AFL_EXT_OCTEON2:
17436 fputs ("Cavium Networks Octeon2", stdout);
17437 break;
17438 case AFL_EXT_OCTEONP:
17439 fputs ("Cavium Networks OcteonP", stdout);
17440 break;
351cdf24
MF
17441 case AFL_EXT_OCTEON:
17442 fputs ("Cavium Networks Octeon", stdout);
17443 break;
17444 case AFL_EXT_5900:
17445 fputs ("Toshiba R5900", stdout);
17446 break;
17447 case AFL_EXT_4650:
17448 fputs ("MIPS R4650", stdout);
17449 break;
17450 case AFL_EXT_4010:
17451 fputs ("LSI R4010", stdout);
17452 break;
17453 case AFL_EXT_4100:
17454 fputs ("NEC VR4100", stdout);
17455 break;
17456 case AFL_EXT_3900:
17457 fputs ("Toshiba R3900", stdout);
17458 break;
17459 case AFL_EXT_10000:
17460 fputs ("MIPS R10000", stdout);
17461 break;
17462 case AFL_EXT_SB1:
17463 fputs ("Broadcom SB-1", stdout);
17464 break;
17465 case AFL_EXT_4111:
17466 fputs ("NEC VR4111/VR4181", stdout);
17467 break;
17468 case AFL_EXT_4120:
17469 fputs ("NEC VR4120", stdout);
17470 break;
17471 case AFL_EXT_5400:
17472 fputs ("NEC VR5400", stdout);
17473 break;
17474 case AFL_EXT_5500:
17475 fputs ("NEC VR5500", stdout);
17476 break;
17477 case AFL_EXT_LOONGSON_2E:
17478 fputs ("ST Microelectronics Loongson 2E", stdout);
17479 break;
17480 case AFL_EXT_LOONGSON_2F:
17481 fputs ("ST Microelectronics Loongson 2F", stdout);
17482 break;
38bf472a
MR
17483 case AFL_EXT_INTERAPTIV_MR2:
17484 fputs ("Imagination interAptiv MR2", stdout);
17485 break;
351cdf24 17486 default:
00ac7aa0 17487 fprintf (stdout, "%s (%d)", _("Unknown"), isa_ext);
351cdf24
MF
17488 }
17489}
17490
32ec8896 17491static signed int
351cdf24
MF
17492get_mips_reg_size (int reg_size)
17493{
17494 return (reg_size == AFL_REG_NONE) ? 0
17495 : (reg_size == AFL_REG_32) ? 32
17496 : (reg_size == AFL_REG_64) ? 64
17497 : (reg_size == AFL_REG_128) ? 128
17498 : -1;
17499}
17500
015dc7e1 17501static bool
dda8d76d 17502process_mips_specific (Filedata * filedata)
5b18a4bc 17503{
2cf0635d 17504 Elf_Internal_Dyn * entry;
351cdf24 17505 Elf_Internal_Shdr *sect = NULL;
19e6b90e
L
17506 size_t liblist_offset = 0;
17507 size_t liblistno = 0;
17508 size_t conflictsno = 0;
17509 size_t options_offset = 0;
17510 size_t conflicts_offset = 0;
861fb55a
DJ
17511 size_t pltrelsz = 0;
17512 size_t pltrel = 0;
ccb4c951 17513 bfd_vma pltgot = 0;
861fb55a
DJ
17514 bfd_vma mips_pltgot = 0;
17515 bfd_vma jmprel = 0;
ccb4c951
RS
17516 bfd_vma local_gotno = 0;
17517 bfd_vma gotsym = 0;
17518 bfd_vma symtabno = 0;
015dc7e1 17519 bool res = true;
103f02d3 17520
dda8d76d 17521 if (! process_attributes (filedata, NULL, SHT_GNU_ATTRIBUTES, NULL,
32ec8896 17522 display_mips_gnu_attribute))
015dc7e1 17523 res = false;
2cf19d5c 17524
dda8d76d 17525 sect = find_section (filedata, ".MIPS.abiflags");
351cdf24
MF
17526
17527 if (sect != NULL)
17528 {
17529 Elf_External_ABIFlags_v0 *abiflags_ext;
17530 Elf_Internal_ABIFlags_v0 abiflags_in;
17531
17532 if (sizeof (Elf_External_ABIFlags_v0) != sect->sh_size)
32ec8896
NC
17533 {
17534 error (_("Corrupt MIPS ABI Flags section.\n"));
015dc7e1 17535 res = false;
32ec8896 17536 }
351cdf24
MF
17537 else
17538 {
dda8d76d 17539 abiflags_ext = get_data (NULL, filedata, sect->sh_offset, 1,
351cdf24
MF
17540 sect->sh_size, _("MIPS ABI Flags section"));
17541 if (abiflags_ext)
17542 {
17543 abiflags_in.version = BYTE_GET (abiflags_ext->version);
17544 abiflags_in.isa_level = BYTE_GET (abiflags_ext->isa_level);
17545 abiflags_in.isa_rev = BYTE_GET (abiflags_ext->isa_rev);
17546 abiflags_in.gpr_size = BYTE_GET (abiflags_ext->gpr_size);
17547 abiflags_in.cpr1_size = BYTE_GET (abiflags_ext->cpr1_size);
17548 abiflags_in.cpr2_size = BYTE_GET (abiflags_ext->cpr2_size);
17549 abiflags_in.fp_abi = BYTE_GET (abiflags_ext->fp_abi);
17550 abiflags_in.isa_ext = BYTE_GET (abiflags_ext->isa_ext);
17551 abiflags_in.ases = BYTE_GET (abiflags_ext->ases);
17552 abiflags_in.flags1 = BYTE_GET (abiflags_ext->flags1);
17553 abiflags_in.flags2 = BYTE_GET (abiflags_ext->flags2);
17554
17555 printf ("\nMIPS ABI Flags Version: %d\n", abiflags_in.version);
17556 printf ("\nISA: MIPS%d", abiflags_in.isa_level);
17557 if (abiflags_in.isa_rev > 1)
17558 printf ("r%d", abiflags_in.isa_rev);
17559 printf ("\nGPR size: %d",
17560 get_mips_reg_size (abiflags_in.gpr_size));
17561 printf ("\nCPR1 size: %d",
17562 get_mips_reg_size (abiflags_in.cpr1_size));
17563 printf ("\nCPR2 size: %d",
17564 get_mips_reg_size (abiflags_in.cpr2_size));
17565 fputs ("\nFP ABI: ", stdout);
17566 print_mips_fp_abi_value (abiflags_in.fp_abi);
17567 fputs ("ISA Extension: ", stdout);
17568 print_mips_isa_ext (abiflags_in.isa_ext);
17569 fputs ("\nASEs:", stdout);
17570 print_mips_ases (abiflags_in.ases);
17571 printf ("\nFLAGS 1: %8.8lx", abiflags_in.flags1);
17572 printf ("\nFLAGS 2: %8.8lx", abiflags_in.flags2);
17573 fputc ('\n', stdout);
17574 free (abiflags_ext);
17575 }
17576 }
17577 }
17578
19e6b90e 17579 /* We have a lot of special sections. Thanks SGI! */
978c4450 17580 if (filedata->dynamic_section == NULL)
bbdd9a68
MR
17581 {
17582 /* No dynamic information available. See if there is static GOT. */
dda8d76d 17583 sect = find_section (filedata, ".got");
bbdd9a68
MR
17584 if (sect != NULL)
17585 {
17586 unsigned char *data_end;
17587 unsigned char *data;
17588 bfd_vma ent, end;
17589 int addr_size;
17590
17591 pltgot = sect->sh_addr;
17592
17593 ent = pltgot;
17594 addr_size = (is_32bit_elf ? 4 : 8);
17595 end = pltgot + sect->sh_size;
17596
dda8d76d 17597 data = (unsigned char *) get_data (NULL, filedata, sect->sh_offset,
bbdd9a68
MR
17598 end - pltgot, 1,
17599 _("Global Offset Table data"));
17600 /* PR 12855: Null data is handled gracefully throughout. */
17601 data_end = data + (end - pltgot);
17602
17603 printf (_("\nStatic GOT:\n"));
17604 printf (_(" Canonical gp value: "));
17605 print_vma (ent + 0x7ff0, LONG_HEX);
17606 printf ("\n\n");
17607
17608 /* In a dynamic binary GOT[0] is reserved for the dynamic
17609 loader to store the lazy resolver pointer, however in
17610 a static binary it may well have been omitted and GOT
17611 reduced to a table of addresses.
17612 PR 21344: Check for the entry being fully available
17613 before fetching it. */
17614 if (data
17615 && data + ent - pltgot + addr_size <= data_end
17616 && byte_get (data + ent - pltgot, addr_size) == 0)
17617 {
17618 printf (_(" Reserved entries:\n"));
17619 printf (_(" %*s %10s %*s\n"),
17620 addr_size * 2, _("Address"), _("Access"),
17621 addr_size * 2, _("Value"));
17622 ent = print_mips_got_entry (data, pltgot, ent, data_end);
17623 printf ("\n");
17624 if (ent == (bfd_vma) -1)
17625 goto sgot_print_fail;
17626
17627 /* Check for the MSB of GOT[1] being set, identifying a
17628 GNU object. This entry will be used by some runtime
17629 loaders, to store the module pointer. Otherwise this
17630 is an ordinary local entry.
17631 PR 21344: Check for the entry being fully available
17632 before fetching it. */
17633 if (data
17634 && data + ent - pltgot + addr_size <= data_end
17635 && (byte_get (data + ent - pltgot, addr_size)
17636 >> (addr_size * 8 - 1)) != 0)
17637 {
17638 ent = print_mips_got_entry (data, pltgot, ent, data_end);
17639 printf ("\n");
17640 if (ent == (bfd_vma) -1)
17641 goto sgot_print_fail;
17642 }
17643 printf ("\n");
17644 }
17645
f17e9d8a 17646 if (data != NULL && ent < end)
bbdd9a68
MR
17647 {
17648 printf (_(" Local entries:\n"));
17649 printf (" %*s %10s %*s\n",
17650 addr_size * 2, _("Address"), _("Access"),
17651 addr_size * 2, _("Value"));
17652 while (ent < end)
17653 {
17654 ent = print_mips_got_entry (data, pltgot, ent, data_end);
17655 printf ("\n");
17656 if (ent == (bfd_vma) -1)
17657 goto sgot_print_fail;
17658 }
17659 printf ("\n");
17660 }
17661
17662 sgot_print_fail:
9db70fc3 17663 free (data);
bbdd9a68
MR
17664 }
17665 return res;
17666 }
252b5132 17667
978c4450 17668 for (entry = filedata->dynamic_section;
071436c6 17669 /* PR 17531 file: 012-50589-0.004. */
978c4450
AM
17670 (entry < filedata->dynamic_section + filedata->dynamic_nent
17671 && entry->d_tag != DT_NULL);
071436c6 17672 ++entry)
252b5132
RH
17673 switch (entry->d_tag)
17674 {
17675 case DT_MIPS_LIBLIST:
d93f0186 17676 liblist_offset
dda8d76d 17677 = offset_from_vma (filedata, entry->d_un.d_val,
d93f0186 17678 liblistno * sizeof (Elf32_External_Lib));
252b5132
RH
17679 break;
17680 case DT_MIPS_LIBLISTNO:
17681 liblistno = entry->d_un.d_val;
17682 break;
17683 case DT_MIPS_OPTIONS:
dda8d76d 17684 options_offset = offset_from_vma (filedata, entry->d_un.d_val, 0);
252b5132
RH
17685 break;
17686 case DT_MIPS_CONFLICT:
d93f0186 17687 conflicts_offset
dda8d76d 17688 = offset_from_vma (filedata, entry->d_un.d_val,
d93f0186 17689 conflictsno * sizeof (Elf32_External_Conflict));
252b5132
RH
17690 break;
17691 case DT_MIPS_CONFLICTNO:
17692 conflictsno = entry->d_un.d_val;
17693 break;
ccb4c951 17694 case DT_PLTGOT:
861fb55a
DJ
17695 pltgot = entry->d_un.d_ptr;
17696 break;
ccb4c951
RS
17697 case DT_MIPS_LOCAL_GOTNO:
17698 local_gotno = entry->d_un.d_val;
17699 break;
17700 case DT_MIPS_GOTSYM:
17701 gotsym = entry->d_un.d_val;
17702 break;
17703 case DT_MIPS_SYMTABNO:
17704 symtabno = entry->d_un.d_val;
17705 break;
861fb55a
DJ
17706 case DT_MIPS_PLTGOT:
17707 mips_pltgot = entry->d_un.d_ptr;
17708 break;
17709 case DT_PLTREL:
17710 pltrel = entry->d_un.d_val;
17711 break;
17712 case DT_PLTRELSZ:
17713 pltrelsz = entry->d_un.d_val;
17714 break;
17715 case DT_JMPREL:
17716 jmprel = entry->d_un.d_ptr;
17717 break;
252b5132
RH
17718 default:
17719 break;
17720 }
17721
17722 if (liblist_offset != 0 && liblistno != 0 && do_dynamic)
17723 {
2cf0635d 17724 Elf32_External_Lib * elib;
252b5132
RH
17725 size_t cnt;
17726
dda8d76d 17727 elib = (Elf32_External_Lib *) get_data (NULL, filedata, liblist_offset,
95099889
AM
17728 sizeof (Elf32_External_Lib),
17729 liblistno,
17730 _("liblist section data"));
a6e9f9df 17731 if (elib)
252b5132 17732 {
d3a49aa8
AM
17733 printf (ngettext ("\nSection '.liblist' contains %lu entry:\n",
17734 "\nSection '.liblist' contains %lu entries:\n",
17735 (unsigned long) liblistno),
a6e9f9df 17736 (unsigned long) liblistno);
2b692964 17737 fputs (_(" Library Time Stamp Checksum Version Flags\n"),
a6e9f9df
AM
17738 stdout);
17739
17740 for (cnt = 0; cnt < liblistno; ++cnt)
252b5132 17741 {
a6e9f9df 17742 Elf32_Lib liblist;
91d6fa6a 17743 time_t atime;
d5b07ef4 17744 char timebuf[128];
2cf0635d 17745 struct tm * tmp;
a6e9f9df
AM
17746
17747 liblist.l_name = BYTE_GET (elib[cnt].l_name);
91d6fa6a 17748 atime = BYTE_GET (elib[cnt].l_time_stamp);
a6e9f9df
AM
17749 liblist.l_checksum = BYTE_GET (elib[cnt].l_checksum);
17750 liblist.l_version = BYTE_GET (elib[cnt].l_version);
17751 liblist.l_flags = BYTE_GET (elib[cnt].l_flags);
17752
91d6fa6a 17753 tmp = gmtime (&atime);
e9e44622
JJ
17754 snprintf (timebuf, sizeof (timebuf),
17755 "%04u-%02u-%02uT%02u:%02u:%02u",
17756 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
17757 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
a6e9f9df 17758
31104126 17759 printf ("%3lu: ", (unsigned long) cnt);
978c4450
AM
17760 if (VALID_DYNAMIC_NAME (filedata, liblist.l_name))
17761 print_symbol (20, GET_DYNAMIC_NAME (filedata, liblist.l_name));
d79b3d50 17762 else
2b692964 17763 printf (_("<corrupt: %9ld>"), liblist.l_name);
31104126
NC
17764 printf (" %s %#10lx %-7ld", timebuf, liblist.l_checksum,
17765 liblist.l_version);
a6e9f9df
AM
17766
17767 if (liblist.l_flags == 0)
2b692964 17768 puts (_(" NONE"));
a6e9f9df
AM
17769 else
17770 {
17771 static const struct
252b5132 17772 {
2cf0635d 17773 const char * name;
a6e9f9df 17774 int bit;
252b5132 17775 }
a6e9f9df
AM
17776 l_flags_vals[] =
17777 {
17778 { " EXACT_MATCH", LL_EXACT_MATCH },
17779 { " IGNORE_INT_VER", LL_IGNORE_INT_VER },
17780 { " REQUIRE_MINOR", LL_REQUIRE_MINOR },
17781 { " EXPORTS", LL_EXPORTS },
17782 { " DELAY_LOAD", LL_DELAY_LOAD },
17783 { " DELTA", LL_DELTA }
17784 };
17785 int flags = liblist.l_flags;
17786 size_t fcnt;
17787
60bca95a 17788 for (fcnt = 0; fcnt < ARRAY_SIZE (l_flags_vals); ++fcnt)
a6e9f9df
AM
17789 if ((flags & l_flags_vals[fcnt].bit) != 0)
17790 {
17791 fputs (l_flags_vals[fcnt].name, stdout);
17792 flags ^= l_flags_vals[fcnt].bit;
17793 }
17794 if (flags != 0)
17795 printf (" %#x", (unsigned int) flags);
252b5132 17796
a6e9f9df
AM
17797 puts ("");
17798 }
252b5132 17799 }
252b5132 17800
a6e9f9df
AM
17801 free (elib);
17802 }
32ec8896 17803 else
015dc7e1 17804 res = false;
252b5132
RH
17805 }
17806
17807 if (options_offset != 0)
17808 {
2cf0635d 17809 Elf_External_Options * eopt;
252b5132
RH
17810 size_t offset;
17811 int cnt;
dda8d76d 17812 sect = filedata->section_headers;
252b5132
RH
17813
17814 /* Find the section header so that we get the size. */
dda8d76d 17815 sect = find_section_by_type (filedata, SHT_MIPS_OPTIONS);
948f632f 17816 /* PR 17533 file: 012-277276-0.004. */
071436c6
NC
17817 if (sect == NULL)
17818 {
17819 error (_("No MIPS_OPTIONS header found\n"));
015dc7e1 17820 return false;
071436c6 17821 }
7fc0c668
NC
17822 /* PR 24243 */
17823 if (sect->sh_size < sizeof (* eopt))
17824 {
17825 error (_("The MIPS options section is too small.\n"));
015dc7e1 17826 return false;
7fc0c668 17827 }
252b5132 17828
dda8d76d 17829 eopt = (Elf_External_Options *) get_data (NULL, filedata, options_offset, 1,
3f5e193b 17830 sect->sh_size, _("options"));
a6e9f9df 17831 if (eopt)
252b5132 17832 {
fd17d1e6 17833 Elf_Internal_Options option;
76da6bbe 17834
a6e9f9df 17835 offset = cnt = 0;
82b1b41b 17836 while (offset <= sect->sh_size - sizeof (* eopt))
a6e9f9df 17837 {
2cf0635d 17838 Elf_External_Options * eoption;
fd17d1e6 17839 unsigned int optsize;
252b5132 17840
a6e9f9df 17841 eoption = (Elf_External_Options *) ((char *) eopt + offset);
252b5132 17842
fd17d1e6 17843 optsize = BYTE_GET (eoption->size);
76da6bbe 17844
82b1b41b 17845 /* PR 17531: file: ffa0fa3b. */
fd17d1e6
AM
17846 if (optsize < sizeof (* eopt)
17847 || optsize > sect->sh_size - offset)
82b1b41b 17848 {
645f43a8 17849 error (_("Invalid size (%u) for MIPS option\n"),
fd17d1e6 17850 optsize);
645f43a8 17851 free (eopt);
015dc7e1 17852 return false;
82b1b41b 17853 }
fd17d1e6 17854 offset += optsize;
a6e9f9df
AM
17855 ++cnt;
17856 }
252b5132 17857
d3a49aa8
AM
17858 printf (ngettext ("\nSection '%s' contains %d entry:\n",
17859 "\nSection '%s' contains %d entries:\n",
17860 cnt),
dda8d76d 17861 printable_section_name (filedata, sect), cnt);
76da6bbe 17862
82b1b41b 17863 offset = 0;
a6e9f9df 17864 while (cnt-- > 0)
252b5132 17865 {
a6e9f9df 17866 size_t len;
fd17d1e6
AM
17867 Elf_External_Options * eoption;
17868
17869 eoption = (Elf_External_Options *) ((char *) eopt + offset);
17870
17871 option.kind = BYTE_GET (eoption->kind);
17872 option.size = BYTE_GET (eoption->size);
17873 option.section = BYTE_GET (eoption->section);
17874 option.info = BYTE_GET (eoption->info);
a6e9f9df 17875
fd17d1e6 17876 switch (option.kind)
252b5132 17877 {
a6e9f9df
AM
17878 case ODK_NULL:
17879 /* This shouldn't happen. */
d0c4e780 17880 printf (" NULL %" PRId16 " %" PRIx32,
fd17d1e6 17881 option.section, option.info);
a6e9f9df 17882 break;
2e6be59c 17883
a6e9f9df
AM
17884 case ODK_REGINFO:
17885 printf (" REGINFO ");
dda8d76d 17886 if (filedata->file_header.e_machine == EM_MIPS)
a6e9f9df 17887 {
2cf0635d 17888 Elf32_External_RegInfo * ereg;
b34976b6 17889 Elf32_RegInfo reginfo;
a6e9f9df 17890
2e6be59c 17891 /* 32bit form. */
fd17d1e6
AM
17892 if (option.size < (sizeof (Elf_External_Options)
17893 + sizeof (Elf32_External_RegInfo)))
2e6be59c
NC
17894 {
17895 printf (_("<corrupt>\n"));
17896 error (_("Truncated MIPS REGINFO option\n"));
17897 cnt = 0;
17898 break;
17899 }
17900
fd17d1e6 17901 ereg = (Elf32_External_RegInfo *) (eoption + 1);
2e6be59c 17902
a6e9f9df
AM
17903 reginfo.ri_gprmask = BYTE_GET (ereg->ri_gprmask);
17904 reginfo.ri_cprmask[0] = BYTE_GET (ereg->ri_cprmask[0]);
17905 reginfo.ri_cprmask[1] = BYTE_GET (ereg->ri_cprmask[1]);
17906 reginfo.ri_cprmask[2] = BYTE_GET (ereg->ri_cprmask[2]);
17907 reginfo.ri_cprmask[3] = BYTE_GET (ereg->ri_cprmask[3]);
17908 reginfo.ri_gp_value = BYTE_GET (ereg->ri_gp_value);
17909
d0c4e780
AM
17910 printf ("GPR %08" PRIx32 " GP 0x%" PRIx32 "\n",
17911 reginfo.ri_gprmask, reginfo.ri_gp_value);
17912 printf (" "
17913 " CPR0 %08" PRIx32 " CPR1 %08" PRIx32
17914 " CPR2 %08" PRIx32 " CPR3 %08" PRIx32 "\n",
a6e9f9df
AM
17915 reginfo.ri_cprmask[0], reginfo.ri_cprmask[1],
17916 reginfo.ri_cprmask[2], reginfo.ri_cprmask[3]);
17917 }
17918 else
17919 {
17920 /* 64 bit form. */
2cf0635d 17921 Elf64_External_RegInfo * ereg;
a6e9f9df
AM
17922 Elf64_Internal_RegInfo reginfo;
17923
fd17d1e6
AM
17924 if (option.size < (sizeof (Elf_External_Options)
17925 + sizeof (Elf64_External_RegInfo)))
2e6be59c
NC
17926 {
17927 printf (_("<corrupt>\n"));
17928 error (_("Truncated MIPS REGINFO option\n"));
17929 cnt = 0;
17930 break;
17931 }
17932
fd17d1e6 17933 ereg = (Elf64_External_RegInfo *) (eoption + 1);
a6e9f9df
AM
17934 reginfo.ri_gprmask = BYTE_GET (ereg->ri_gprmask);
17935 reginfo.ri_cprmask[0] = BYTE_GET (ereg->ri_cprmask[0]);
17936 reginfo.ri_cprmask[1] = BYTE_GET (ereg->ri_cprmask[1]);
17937 reginfo.ri_cprmask[2] = BYTE_GET (ereg->ri_cprmask[2]);
17938 reginfo.ri_cprmask[3] = BYTE_GET (ereg->ri_cprmask[3]);
66543521 17939 reginfo.ri_gp_value = BYTE_GET (ereg->ri_gp_value);
a6e9f9df 17940
d0c4e780
AM
17941 printf ("GPR %08" PRIx32 " GP 0x%" PRIx64 "\n",
17942 reginfo.ri_gprmask, reginfo.ri_gp_value);
17943 printf (" "
17944 " CPR0 %08" PRIx32 " CPR1 %08" PRIx32
17945 " CPR2 %08" PRIx32 " CPR3 %08" PRIx32 "\n",
a6e9f9df
AM
17946 reginfo.ri_cprmask[0], reginfo.ri_cprmask[1],
17947 reginfo.ri_cprmask[2], reginfo.ri_cprmask[3]);
17948 }
fd17d1e6 17949 offset += option.size;
a6e9f9df 17950 continue;
2e6be59c 17951
a6e9f9df
AM
17952 case ODK_EXCEPTIONS:
17953 fputs (" EXCEPTIONS fpe_min(", stdout);
fd17d1e6 17954 process_mips_fpe_exception (option.info & OEX_FPU_MIN);
a6e9f9df 17955 fputs (") fpe_max(", stdout);
fd17d1e6 17956 process_mips_fpe_exception ((option.info & OEX_FPU_MAX) >> 8);
a6e9f9df
AM
17957 fputs (")", stdout);
17958
fd17d1e6 17959 if (option.info & OEX_PAGE0)
a6e9f9df 17960 fputs (" PAGE0", stdout);
fd17d1e6 17961 if (option.info & OEX_SMM)
a6e9f9df 17962 fputs (" SMM", stdout);
fd17d1e6 17963 if (option.info & OEX_FPDBUG)
a6e9f9df 17964 fputs (" FPDBUG", stdout);
fd17d1e6 17965 if (option.info & OEX_DISMISS)
a6e9f9df
AM
17966 fputs (" DISMISS", stdout);
17967 break;
2e6be59c 17968
a6e9f9df
AM
17969 case ODK_PAD:
17970 fputs (" PAD ", stdout);
fd17d1e6 17971 if (option.info & OPAD_PREFIX)
a6e9f9df 17972 fputs (" PREFIX", stdout);
fd17d1e6 17973 if (option.info & OPAD_POSTFIX)
a6e9f9df 17974 fputs (" POSTFIX", stdout);
fd17d1e6 17975 if (option.info & OPAD_SYMBOL)
a6e9f9df
AM
17976 fputs (" SYMBOL", stdout);
17977 break;
2e6be59c 17978
a6e9f9df
AM
17979 case ODK_HWPATCH:
17980 fputs (" HWPATCH ", stdout);
fd17d1e6 17981 if (option.info & OHW_R4KEOP)
a6e9f9df 17982 fputs (" R4KEOP", stdout);
fd17d1e6 17983 if (option.info & OHW_R8KPFETCH)
a6e9f9df 17984 fputs (" R8KPFETCH", stdout);
fd17d1e6 17985 if (option.info & OHW_R5KEOP)
a6e9f9df 17986 fputs (" R5KEOP", stdout);
fd17d1e6 17987 if (option.info & OHW_R5KCVTL)
a6e9f9df
AM
17988 fputs (" R5KCVTL", stdout);
17989 break;
2e6be59c 17990
a6e9f9df
AM
17991 case ODK_FILL:
17992 fputs (" FILL ", stdout);
17993 /* XXX Print content of info word? */
17994 break;
2e6be59c 17995
a6e9f9df
AM
17996 case ODK_TAGS:
17997 fputs (" TAGS ", stdout);
17998 /* XXX Print content of info word? */
17999 break;
2e6be59c 18000
a6e9f9df
AM
18001 case ODK_HWAND:
18002 fputs (" HWAND ", stdout);
fd17d1e6 18003 if (option.info & OHWA0_R4KEOP_CHECKED)
a6e9f9df 18004 fputs (" R4KEOP_CHECKED", stdout);
fd17d1e6 18005 if (option.info & OHWA0_R4KEOP_CLEAN)
a6e9f9df
AM
18006 fputs (" R4KEOP_CLEAN", stdout);
18007 break;
2e6be59c 18008
a6e9f9df
AM
18009 case ODK_HWOR:
18010 fputs (" HWOR ", stdout);
fd17d1e6 18011 if (option.info & OHWA0_R4KEOP_CHECKED)
a6e9f9df 18012 fputs (" R4KEOP_CHECKED", stdout);
fd17d1e6 18013 if (option.info & OHWA0_R4KEOP_CLEAN)
a6e9f9df
AM
18014 fputs (" R4KEOP_CLEAN", stdout);
18015 break;
2e6be59c 18016
a6e9f9df 18017 case ODK_GP_GROUP:
d0c4e780 18018 printf (" GP_GROUP %#06x self-contained %#06x",
fd17d1e6
AM
18019 option.info & OGP_GROUP,
18020 (option.info & OGP_SELF) >> 16);
a6e9f9df 18021 break;
2e6be59c 18022
a6e9f9df 18023 case ODK_IDENT:
d0c4e780 18024 printf (" IDENT %#06x self-contained %#06x",
fd17d1e6
AM
18025 option.info & OGP_GROUP,
18026 (option.info & OGP_SELF) >> 16);
a6e9f9df 18027 break;
2e6be59c 18028
a6e9f9df
AM
18029 default:
18030 /* This shouldn't happen. */
d0c4e780 18031 printf (" %3d ??? %" PRId16 " %" PRIx32,
fd17d1e6 18032 option.kind, option.section, option.info);
a6e9f9df 18033 break;
252b5132 18034 }
a6e9f9df 18035
2cf0635d 18036 len = sizeof (* eopt);
fd17d1e6 18037 while (len < option.size)
82b1b41b 18038 {
fd17d1e6 18039 unsigned char datum = *((unsigned char *) eoption + len);
a6e9f9df 18040
82b1b41b
NC
18041 if (ISPRINT (datum))
18042 printf ("%c", datum);
18043 else
18044 printf ("\\%03o", datum);
18045 len ++;
18046 }
a6e9f9df 18047 fputs ("\n", stdout);
82b1b41b 18048
fd17d1e6 18049 offset += option.size;
252b5132 18050 }
a6e9f9df 18051 free (eopt);
252b5132 18052 }
32ec8896 18053 else
015dc7e1 18054 res = false;
252b5132
RH
18055 }
18056
18057 if (conflicts_offset != 0 && conflictsno != 0)
18058 {
2cf0635d 18059 Elf32_Conflict * iconf;
252b5132
RH
18060 size_t cnt;
18061
978c4450 18062 if (filedata->dynamic_symbols == NULL)
252b5132 18063 {
591a748a 18064 error (_("conflict list found without a dynamic symbol table\n"));
015dc7e1 18065 return false;
252b5132
RH
18066 }
18067
7296a62a
NC
18068 /* PR 21345 - print a slightly more helpful error message
18069 if we are sure that the cmalloc will fail. */
645f43a8 18070 if (conflictsno > filedata->file_size / sizeof (* iconf))
7296a62a
NC
18071 {
18072 error (_("Overlarge number of conflicts detected: %lx\n"),
18073 (long) conflictsno);
015dc7e1 18074 return false;
7296a62a
NC
18075 }
18076
3f5e193b 18077 iconf = (Elf32_Conflict *) cmalloc (conflictsno, sizeof (* iconf));
252b5132
RH
18078 if (iconf == NULL)
18079 {
8b73c356 18080 error (_("Out of memory allocating space for dynamic conflicts\n"));
015dc7e1 18081 return false;
252b5132
RH
18082 }
18083
9ea033b2 18084 if (is_32bit_elf)
252b5132 18085 {
2cf0635d 18086 Elf32_External_Conflict * econf32;
a6e9f9df 18087
3f5e193b 18088 econf32 = (Elf32_External_Conflict *)
95099889
AM
18089 get_data (NULL, filedata, conflicts_offset,
18090 sizeof (*econf32), conflictsno, _("conflict"));
a6e9f9df 18091 if (!econf32)
5a814d6d
AM
18092 {
18093 free (iconf);
015dc7e1 18094 return false;
5a814d6d 18095 }
252b5132
RH
18096
18097 for (cnt = 0; cnt < conflictsno; ++cnt)
18098 iconf[cnt] = BYTE_GET (econf32[cnt]);
a6e9f9df
AM
18099
18100 free (econf32);
252b5132
RH
18101 }
18102 else
18103 {
2cf0635d 18104 Elf64_External_Conflict * econf64;
a6e9f9df 18105
3f5e193b 18106 econf64 = (Elf64_External_Conflict *)
95099889
AM
18107 get_data (NULL, filedata, conflicts_offset,
18108 sizeof (*econf64), conflictsno, _("conflict"));
a6e9f9df 18109 if (!econf64)
5a814d6d
AM
18110 {
18111 free (iconf);
015dc7e1 18112 return false;
5a814d6d 18113 }
252b5132
RH
18114
18115 for (cnt = 0; cnt < conflictsno; ++cnt)
18116 iconf[cnt] = BYTE_GET (econf64[cnt]);
a6e9f9df
AM
18117
18118 free (econf64);
252b5132
RH
18119 }
18120
d3a49aa8
AM
18121 printf (ngettext ("\nSection '.conflict' contains %lu entry:\n",
18122 "\nSection '.conflict' contains %lu entries:\n",
18123 (unsigned long) conflictsno),
c7e7ca54 18124 (unsigned long) conflictsno);
252b5132
RH
18125 puts (_(" Num: Index Value Name"));
18126
18127 for (cnt = 0; cnt < conflictsno; ++cnt)
18128 {
b34976b6 18129 printf ("%5lu: %8lu ", (unsigned long) cnt, iconf[cnt]);
e0a31db1 18130
978c4450 18131 if (iconf[cnt] >= filedata->num_dynamic_syms)
e0a31db1 18132 printf (_("<corrupt symbol index>"));
d79b3d50 18133 else
e0a31db1
NC
18134 {
18135 Elf_Internal_Sym * psym;
18136
978c4450 18137 psym = & filedata->dynamic_symbols[iconf[cnt]];
e0a31db1
NC
18138 print_vma (psym->st_value, FULL_HEX);
18139 putchar (' ');
978c4450
AM
18140 if (VALID_DYNAMIC_NAME (filedata, psym->st_name))
18141 print_symbol (25, GET_DYNAMIC_NAME (filedata, psym->st_name));
e0a31db1
NC
18142 else
18143 printf (_("<corrupt: %14ld>"), psym->st_name);
18144 }
31104126 18145 putchar ('\n');
252b5132
RH
18146 }
18147
252b5132
RH
18148 free (iconf);
18149 }
18150
ccb4c951
RS
18151 if (pltgot != 0 && local_gotno != 0)
18152 {
91d6fa6a 18153 bfd_vma ent, local_end, global_end;
bbeee7ea 18154 size_t i, offset;
2cf0635d 18155 unsigned char * data;
82b1b41b 18156 unsigned char * data_end;
bbeee7ea 18157 int addr_size;
ccb4c951 18158
91d6fa6a 18159 ent = pltgot;
ccb4c951
RS
18160 addr_size = (is_32bit_elf ? 4 : 8);
18161 local_end = pltgot + local_gotno * addr_size;
ccb4c951 18162
74e1a04b
NC
18163 /* PR binutils/17533 file: 012-111227-0.004 */
18164 if (symtabno < gotsym)
18165 {
18166 error (_("The GOT symbol offset (%lu) is greater than the symbol table size (%lu)\n"),
82b1b41b 18167 (unsigned long) gotsym, (unsigned long) symtabno);
015dc7e1 18168 return false;
74e1a04b 18169 }
82b1b41b 18170
74e1a04b 18171 global_end = local_end + (symtabno - gotsym) * addr_size;
82b1b41b
NC
18172 /* PR 17531: file: 54c91a34. */
18173 if (global_end < local_end)
18174 {
18175 error (_("Too many GOT symbols: %lu\n"), (unsigned long) symtabno);
015dc7e1 18176 return false;
82b1b41b 18177 }
948f632f 18178
dda8d76d
NC
18179 offset = offset_from_vma (filedata, pltgot, global_end - pltgot);
18180 data = (unsigned char *) get_data (NULL, filedata, offset,
9cf03b7e
NC
18181 global_end - pltgot, 1,
18182 _("Global Offset Table data"));
919383ac 18183 /* PR 12855: Null data is handled gracefully throughout. */
82b1b41b 18184 data_end = data + (global_end - pltgot);
59245841 18185
ccb4c951
RS
18186 printf (_("\nPrimary GOT:\n"));
18187 printf (_(" Canonical gp value: "));
18188 print_vma (pltgot + 0x7ff0, LONG_HEX);
18189 printf ("\n\n");
18190
18191 printf (_(" Reserved entries:\n"));
18192 printf (_(" %*s %10s %*s Purpose\n"),
2b692964
NC
18193 addr_size * 2, _("Address"), _("Access"),
18194 addr_size * 2, _("Initial"));
82b1b41b 18195 ent = print_mips_got_entry (data, pltgot, ent, data_end);
2b692964 18196 printf (_(" Lazy resolver\n"));
82b1b41b
NC
18197 if (ent == (bfd_vma) -1)
18198 goto got_print_fail;
75ec1fdb 18199
c4ab9505
MR
18200 /* Check for the MSB of GOT[1] being set, denoting a GNU object.
18201 This entry will be used by some runtime loaders, to store the
18202 module pointer. Otherwise this is an ordinary local entry.
18203 PR 21344: Check for the entry being fully available before
18204 fetching it. */
18205 if (data
18206 && data + ent - pltgot + addr_size <= data_end
18207 && (byte_get (data + ent - pltgot, addr_size)
18208 >> (addr_size * 8 - 1)) != 0)
18209 {
18210 ent = print_mips_got_entry (data, pltgot, ent, data_end);
18211 printf (_(" Module pointer (GNU extension)\n"));
18212 if (ent == (bfd_vma) -1)
18213 goto got_print_fail;
ccb4c951
RS
18214 }
18215 printf ("\n");
18216
f17e9d8a 18217 if (data != NULL && ent < local_end)
ccb4c951
RS
18218 {
18219 printf (_(" Local entries:\n"));
cc5914eb 18220 printf (" %*s %10s %*s\n",
2b692964
NC
18221 addr_size * 2, _("Address"), _("Access"),
18222 addr_size * 2, _("Initial"));
91d6fa6a 18223 while (ent < local_end)
ccb4c951 18224 {
82b1b41b 18225 ent = print_mips_got_entry (data, pltgot, ent, data_end);
ccb4c951 18226 printf ("\n");
82b1b41b
NC
18227 if (ent == (bfd_vma) -1)
18228 goto got_print_fail;
ccb4c951
RS
18229 }
18230 printf ("\n");
18231 }
18232
f17e9d8a 18233 if (data != NULL && gotsym < symtabno)
ccb4c951
RS
18234 {
18235 int sym_width;
18236
18237 printf (_(" Global entries:\n"));
cc5914eb 18238 printf (" %*s %10s %*s %*s %-7s %3s %s\n",
9cf03b7e
NC
18239 addr_size * 2, _("Address"),
18240 _("Access"),
2b692964 18241 addr_size * 2, _("Initial"),
9cf03b7e
NC
18242 addr_size * 2, _("Sym.Val."),
18243 _("Type"),
18244 /* Note for translators: "Ndx" = abbreviated form of "Index". */
18245 _("Ndx"), _("Name"));
0b4362b0 18246
ccb4c951 18247 sym_width = (is_32bit_elf ? 80 : 160) - 28 - addr_size * 6 - 1;
e0a31db1 18248
ccb4c951
RS
18249 for (i = gotsym; i < symtabno; i++)
18250 {
82b1b41b 18251 ent = print_mips_got_entry (data, pltgot, ent, data_end);
ccb4c951 18252 printf (" ");
e0a31db1 18253
978c4450 18254 if (filedata->dynamic_symbols == NULL)
e0a31db1 18255 printf (_("<no dynamic symbols>"));
978c4450 18256 else if (i < filedata->num_dynamic_syms)
e0a31db1 18257 {
978c4450 18258 Elf_Internal_Sym * psym = filedata->dynamic_symbols + i;
e0a31db1
NC
18259
18260 print_vma (psym->st_value, LONG_HEX);
18261 printf (" %-7s %3s ",
dda8d76d
NC
18262 get_symbol_type (filedata, ELF_ST_TYPE (psym->st_info)),
18263 get_symbol_index_type (filedata, psym->st_shndx));
e0a31db1 18264
978c4450
AM
18265 if (VALID_DYNAMIC_NAME (filedata, psym->st_name))
18266 print_symbol (sym_width,
18267 GET_DYNAMIC_NAME (filedata, psym->st_name));
e0a31db1
NC
18268 else
18269 printf (_("<corrupt: %14ld>"), psym->st_name);
18270 }
ccb4c951 18271 else
7fc5ac57
JBG
18272 printf (_("<symbol index %lu exceeds number of dynamic symbols>"),
18273 (unsigned long) i);
e0a31db1 18274
ccb4c951 18275 printf ("\n");
82b1b41b
NC
18276 if (ent == (bfd_vma) -1)
18277 break;
ccb4c951
RS
18278 }
18279 printf ("\n");
18280 }
18281
82b1b41b 18282 got_print_fail:
9db70fc3 18283 free (data);
ccb4c951
RS
18284 }
18285
861fb55a
DJ
18286 if (mips_pltgot != 0 && jmprel != 0 && pltrel != 0 && pltrelsz != 0)
18287 {
91d6fa6a 18288 bfd_vma ent, end;
861fb55a
DJ
18289 size_t offset, rel_offset;
18290 unsigned long count, i;
2cf0635d 18291 unsigned char * data;
861fb55a 18292 int addr_size, sym_width;
2cf0635d 18293 Elf_Internal_Rela * rels;
861fb55a 18294
dda8d76d 18295 rel_offset = offset_from_vma (filedata, jmprel, pltrelsz);
861fb55a
DJ
18296 if (pltrel == DT_RELA)
18297 {
dda8d76d 18298 if (!slurp_rela_relocs (filedata, rel_offset, pltrelsz, &rels, &count))
015dc7e1 18299 return false;
861fb55a
DJ
18300 }
18301 else
18302 {
dda8d76d 18303 if (!slurp_rel_relocs (filedata, rel_offset, pltrelsz, &rels, &count))
015dc7e1 18304 return false;
861fb55a
DJ
18305 }
18306
91d6fa6a 18307 ent = mips_pltgot;
861fb55a
DJ
18308 addr_size = (is_32bit_elf ? 4 : 8);
18309 end = mips_pltgot + (2 + count) * addr_size;
18310
dda8d76d
NC
18311 offset = offset_from_vma (filedata, mips_pltgot, end - mips_pltgot);
18312 data = (unsigned char *) get_data (NULL, filedata, offset, end - mips_pltgot,
9cf03b7e 18313 1, _("Procedure Linkage Table data"));
59245841 18314 if (data == NULL)
288f0ba2
AM
18315 {
18316 free (rels);
015dc7e1 18317 return false;
288f0ba2 18318 }
59245841 18319
9cf03b7e 18320 printf ("\nPLT GOT:\n\n");
861fb55a
DJ
18321 printf (_(" Reserved entries:\n"));
18322 printf (_(" %*s %*s Purpose\n"),
2b692964 18323 addr_size * 2, _("Address"), addr_size * 2, _("Initial"));
91d6fa6a 18324 ent = print_mips_pltgot_entry (data, mips_pltgot, ent);
2b692964 18325 printf (_(" PLT lazy resolver\n"));
91d6fa6a 18326 ent = print_mips_pltgot_entry (data, mips_pltgot, ent);
2b692964 18327 printf (_(" Module pointer\n"));
861fb55a
DJ
18328 printf ("\n");
18329
18330 printf (_(" Entries:\n"));
cc5914eb 18331 printf (" %*s %*s %*s %-7s %3s %s\n",
2b692964
NC
18332 addr_size * 2, _("Address"),
18333 addr_size * 2, _("Initial"),
18334 addr_size * 2, _("Sym.Val."), _("Type"), _("Ndx"), _("Name"));
861fb55a
DJ
18335 sym_width = (is_32bit_elf ? 80 : 160) - 17 - addr_size * 6 - 1;
18336 for (i = 0; i < count; i++)
18337 {
df97ab2a 18338 unsigned long idx = get_reloc_symindex (rels[i].r_info);
861fb55a 18339
91d6fa6a 18340 ent = print_mips_pltgot_entry (data, mips_pltgot, ent);
861fb55a 18341 printf (" ");
e0a31db1 18342
978c4450 18343 if (idx >= filedata->num_dynamic_syms)
df97ab2a 18344 printf (_("<corrupt symbol index: %lu>"), idx);
861fb55a 18345 else
e0a31db1 18346 {
978c4450 18347 Elf_Internal_Sym * psym = filedata->dynamic_symbols + idx;
e0a31db1
NC
18348
18349 print_vma (psym->st_value, LONG_HEX);
18350 printf (" %-7s %3s ",
dda8d76d
NC
18351 get_symbol_type (filedata, ELF_ST_TYPE (psym->st_info)),
18352 get_symbol_index_type (filedata, psym->st_shndx));
978c4450
AM
18353 if (VALID_DYNAMIC_NAME (filedata, psym->st_name))
18354 print_symbol (sym_width,
18355 GET_DYNAMIC_NAME (filedata, psym->st_name));
e0a31db1
NC
18356 else
18357 printf (_("<corrupt: %14ld>"), psym->st_name);
18358 }
861fb55a
DJ
18359 printf ("\n");
18360 }
18361 printf ("\n");
18362
9db70fc3 18363 free (data);
861fb55a
DJ
18364 free (rels);
18365 }
18366
32ec8896 18367 return res;
252b5132
RH
18368}
18369
015dc7e1 18370static bool
dda8d76d 18371process_nds32_specific (Filedata * filedata)
35c08157
KLC
18372{
18373 Elf_Internal_Shdr *sect = NULL;
18374
dda8d76d 18375 sect = find_section (filedata, ".nds32_e_flags");
9c7b8e9b 18376 if (sect != NULL && sect->sh_size >= 4)
35c08157 18377 {
9c7b8e9b
AM
18378 unsigned char *buf;
18379 unsigned int flag;
35c08157
KLC
18380
18381 printf ("\nNDS32 elf flags section:\n");
9c7b8e9b
AM
18382 buf = get_data (NULL, filedata, sect->sh_offset, 1, 4,
18383 _("NDS32 elf flags section"));
35c08157 18384
9c7b8e9b 18385 if (buf == NULL)
015dc7e1 18386 return false;
32ec8896 18387
9c7b8e9b
AM
18388 flag = byte_get (buf, 4);
18389 free (buf);
18390 switch (flag & 0x3)
35c08157
KLC
18391 {
18392 case 0:
18393 printf ("(VEC_SIZE):\tNo entry.\n");
18394 break;
18395 case 1:
18396 printf ("(VEC_SIZE):\t4 bytes\n");
18397 break;
18398 case 2:
18399 printf ("(VEC_SIZE):\t16 bytes\n");
18400 break;
18401 case 3:
18402 printf ("(VEC_SIZE):\treserved\n");
18403 break;
18404 }
18405 }
18406
015dc7e1 18407 return true;
35c08157
KLC
18408}
18409
015dc7e1 18410static bool
dda8d76d 18411process_gnu_liblist (Filedata * filedata)
047b2264 18412{
2cf0635d
NC
18413 Elf_Internal_Shdr * section;
18414 Elf_Internal_Shdr * string_sec;
18415 Elf32_External_Lib * elib;
18416 char * strtab;
c256ffe7 18417 size_t strtab_size;
047b2264 18418 size_t cnt;
d3a49aa8 18419 unsigned long num_liblist;
047b2264 18420 unsigned i;
015dc7e1 18421 bool res = true;
047b2264
JJ
18422
18423 if (! do_arch)
015dc7e1 18424 return true;
047b2264 18425
dda8d76d
NC
18426 for (i = 0, section = filedata->section_headers;
18427 i < filedata->file_header.e_shnum;
b34976b6 18428 i++, section++)
047b2264
JJ
18429 {
18430 switch (section->sh_type)
18431 {
18432 case SHT_GNU_LIBLIST:
dda8d76d 18433 if (section->sh_link >= filedata->file_header.e_shnum)
c256ffe7
JJ
18434 break;
18435
3f5e193b 18436 elib = (Elf32_External_Lib *)
dda8d76d 18437 get_data (NULL, filedata, section->sh_offset, 1, section->sh_size,
9cf03b7e 18438 _("liblist section data"));
047b2264
JJ
18439
18440 if (elib == NULL)
32ec8896 18441 {
015dc7e1 18442 res = false;
32ec8896
NC
18443 break;
18444 }
047b2264 18445
dda8d76d
NC
18446 string_sec = filedata->section_headers + section->sh_link;
18447 strtab = (char *) get_data (NULL, filedata, string_sec->sh_offset, 1,
3f5e193b
NC
18448 string_sec->sh_size,
18449 _("liblist string table"));
047b2264
JJ
18450 if (strtab == NULL
18451 || section->sh_entsize != sizeof (Elf32_External_Lib))
18452 {
18453 free (elib);
2842702f 18454 free (strtab);
015dc7e1 18455 res = false;
047b2264
JJ
18456 break;
18457 }
59245841 18458 strtab_size = string_sec->sh_size;
047b2264 18459
d3a49aa8
AM
18460 num_liblist = section->sh_size / sizeof (Elf32_External_Lib);
18461 printf (ngettext ("\nLibrary list section '%s' contains %lu entries:\n",
18462 "\nLibrary list section '%s' contains %lu entries:\n",
18463 num_liblist),
dda8d76d 18464 printable_section_name (filedata, section),
d3a49aa8 18465 num_liblist);
047b2264 18466
2b692964 18467 puts (_(" Library Time Stamp Checksum Version Flags"));
047b2264
JJ
18468
18469 for (cnt = 0; cnt < section->sh_size / sizeof (Elf32_External_Lib);
18470 ++cnt)
18471 {
18472 Elf32_Lib liblist;
91d6fa6a 18473 time_t atime;
d5b07ef4 18474 char timebuf[128];
2cf0635d 18475 struct tm * tmp;
047b2264
JJ
18476
18477 liblist.l_name = BYTE_GET (elib[cnt].l_name);
91d6fa6a 18478 atime = BYTE_GET (elib[cnt].l_time_stamp);
047b2264
JJ
18479 liblist.l_checksum = BYTE_GET (elib[cnt].l_checksum);
18480 liblist.l_version = BYTE_GET (elib[cnt].l_version);
18481 liblist.l_flags = BYTE_GET (elib[cnt].l_flags);
18482
91d6fa6a 18483 tmp = gmtime (&atime);
e9e44622
JJ
18484 snprintf (timebuf, sizeof (timebuf),
18485 "%04u-%02u-%02uT%02u:%02u:%02u",
18486 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
18487 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
047b2264
JJ
18488
18489 printf ("%3lu: ", (unsigned long) cnt);
18490 if (do_wide)
c256ffe7 18491 printf ("%-20s", liblist.l_name < strtab_size
2b692964 18492 ? strtab + liblist.l_name : _("<corrupt>"));
047b2264 18493 else
c256ffe7 18494 printf ("%-20.20s", liblist.l_name < strtab_size
2b692964 18495 ? strtab + liblist.l_name : _("<corrupt>"));
047b2264
JJ
18496 printf (" %s %#010lx %-7ld %-7ld\n", timebuf, liblist.l_checksum,
18497 liblist.l_version, liblist.l_flags);
18498 }
18499
18500 free (elib);
2842702f 18501 free (strtab);
047b2264
JJ
18502 }
18503 }
18504
32ec8896 18505 return res;
047b2264
JJ
18506}
18507
9437c45b 18508static const char *
dda8d76d 18509get_note_type (Filedata * filedata, unsigned e_type)
779fe533
NC
18510{
18511 static char buff[64];
103f02d3 18512
dda8d76d 18513 if (filedata->file_header.e_type == ET_CORE)
1ec5cd37
NC
18514 switch (e_type)
18515 {
57346661 18516 case NT_AUXV:
1ec5cd37 18517 return _("NT_AUXV (auxiliary vector)");
57346661 18518 case NT_PRSTATUS:
1ec5cd37 18519 return _("NT_PRSTATUS (prstatus structure)");
57346661 18520 case NT_FPREGSET:
1ec5cd37 18521 return _("NT_FPREGSET (floating point registers)");
57346661 18522 case NT_PRPSINFO:
1ec5cd37 18523 return _("NT_PRPSINFO (prpsinfo structure)");
57346661 18524 case NT_TASKSTRUCT:
1ec5cd37 18525 return _("NT_TASKSTRUCT (task structure)");
b63a5e38
AB
18526 case NT_GDB_TDESC:
18527 return _("NT_GDB_TDESC (GDB XML target description)");
57346661 18528 case NT_PRXFPREG:
1ec5cd37 18529 return _("NT_PRXFPREG (user_xfpregs structure)");
e1e95dec
AM
18530 case NT_PPC_VMX:
18531 return _("NT_PPC_VMX (ppc Altivec registers)");
89eeb0bc
LM
18532 case NT_PPC_VSX:
18533 return _("NT_PPC_VSX (ppc VSX registers)");
66c3b5f8
GR
18534 case NT_PPC_TAR:
18535 return _("NT_PPC_TAR (ppc TAR register)");
18536 case NT_PPC_PPR:
18537 return _("NT_PPC_PPR (ppc PPR register)");
18538 case NT_PPC_DSCR:
18539 return _("NT_PPC_DSCR (ppc DSCR register)");
18540 case NT_PPC_EBB:
18541 return _("NT_PPC_EBB (ppc EBB registers)");
18542 case NT_PPC_PMU:
18543 return _("NT_PPC_PMU (ppc PMU registers)");
18544 case NT_PPC_TM_CGPR:
18545 return _("NT_PPC_TM_CGPR (ppc checkpointed GPR registers)");
18546 case NT_PPC_TM_CFPR:
18547 return _("NT_PPC_TM_CFPR (ppc checkpointed floating point registers)");
18548 case NT_PPC_TM_CVMX:
18549 return _("NT_PPC_TM_CVMX (ppc checkpointed Altivec registers)");
18550 case NT_PPC_TM_CVSX:
3fd21718 18551 return _("NT_PPC_TM_CVSX (ppc checkpointed VSX registers)");
66c3b5f8
GR
18552 case NT_PPC_TM_SPR:
18553 return _("NT_PPC_TM_SPR (ppc TM special purpose registers)");
18554 case NT_PPC_TM_CTAR:
18555 return _("NT_PPC_TM_CTAR (ppc checkpointed TAR register)");
18556 case NT_PPC_TM_CPPR:
18557 return _("NT_PPC_TM_CPPR (ppc checkpointed PPR register)");
18558 case NT_PPC_TM_CDSCR:
18559 return _("NT_PPC_TM_CDSCR (ppc checkpointed DSCR register)");
ff826ef3
TT
18560 case NT_386_TLS:
18561 return _("NT_386_TLS (x86 TLS information)");
18562 case NT_386_IOPERM:
18563 return _("NT_386_IOPERM (x86 I/O permissions)");
4339cae0
L
18564 case NT_X86_XSTATE:
18565 return _("NT_X86_XSTATE (x86 XSAVE extended state)");
8d58ed37
L
18566 case NT_X86_CET:
18567 return _("NT_X86_CET (x86 CET state)");
0675e188
UW
18568 case NT_S390_HIGH_GPRS:
18569 return _("NT_S390_HIGH_GPRS (s390 upper register halves)");
d7eeb400
MS
18570 case NT_S390_TIMER:
18571 return _("NT_S390_TIMER (s390 timer register)");
18572 case NT_S390_TODCMP:
18573 return _("NT_S390_TODCMP (s390 TOD comparator register)");
18574 case NT_S390_TODPREG:
18575 return _("NT_S390_TODPREG (s390 TOD programmable register)");
18576 case NT_S390_CTRS:
18577 return _("NT_S390_CTRS (s390 control registers)");
18578 case NT_S390_PREFIX:
18579 return _("NT_S390_PREFIX (s390 prefix register)");
a367d729
AK
18580 case NT_S390_LAST_BREAK:
18581 return _("NT_S390_LAST_BREAK (s390 last breaking event address)");
18582 case NT_S390_SYSTEM_CALL:
18583 return _("NT_S390_SYSTEM_CALL (s390 system call restart data)");
abb3f6cc
NC
18584 case NT_S390_TDB:
18585 return _("NT_S390_TDB (s390 transaction diagnostic block)");
4ef9f41a
AA
18586 case NT_S390_VXRS_LOW:
18587 return _("NT_S390_VXRS_LOW (s390 vector registers 0-15 upper half)");
18588 case NT_S390_VXRS_HIGH:
18589 return _("NT_S390_VXRS_HIGH (s390 vector registers 16-31)");
88ab90e8
AA
18590 case NT_S390_GS_CB:
18591 return _("NT_S390_GS_CB (s390 guarded-storage registers)");
18592 case NT_S390_GS_BC:
18593 return _("NT_S390_GS_BC (s390 guarded-storage broadcast control)");
faa9a424
UW
18594 case NT_ARM_VFP:
18595 return _("NT_ARM_VFP (arm VFP registers)");
652451f8
YZ
18596 case NT_ARM_TLS:
18597 return _("NT_ARM_TLS (AArch TLS registers)");
18598 case NT_ARM_HW_BREAK:
18599 return _("NT_ARM_HW_BREAK (AArch hardware breakpoint registers)");
18600 case NT_ARM_HW_WATCH:
18601 return _("NT_ARM_HW_WATCH (AArch hardware watchpoint registers)");
27456742
AK
18602 case NT_ARC_V2:
18603 return _("NT_ARC_V2 (ARC HS accumulator/extra registers)");
db6092f3
AB
18604 case NT_RISCV_CSR:
18605 return _("NT_RISCV_CSR (RISC-V control and status registers)");
57346661 18606 case NT_PSTATUS:
1ec5cd37 18607 return _("NT_PSTATUS (pstatus structure)");
57346661 18608 case NT_FPREGS:
1ec5cd37 18609 return _("NT_FPREGS (floating point registers)");
57346661 18610 case NT_PSINFO:
1ec5cd37 18611 return _("NT_PSINFO (psinfo structure)");
57346661 18612 case NT_LWPSTATUS:
1ec5cd37 18613 return _("NT_LWPSTATUS (lwpstatus_t structure)");
57346661 18614 case NT_LWPSINFO:
1ec5cd37 18615 return _("NT_LWPSINFO (lwpsinfo_t structure)");
57346661 18616 case NT_WIN32PSTATUS:
1ec5cd37 18617 return _("NT_WIN32PSTATUS (win32_pstatus structure)");
9ece1fa9
TT
18618 case NT_SIGINFO:
18619 return _("NT_SIGINFO (siginfo_t data)");
18620 case NT_FILE:
18621 return _("NT_FILE (mapped files)");
1ec5cd37
NC
18622 default:
18623 break;
18624 }
18625 else
18626 switch (e_type)
18627 {
18628 case NT_VERSION:
18629 return _("NT_VERSION (version)");
18630 case NT_ARCH:
18631 return _("NT_ARCH (architecture)");
9ef920e9 18632 case NT_GNU_BUILD_ATTRIBUTE_OPEN:
6f156d7a 18633 return _("OPEN");
9ef920e9 18634 case NT_GNU_BUILD_ATTRIBUTE_FUNC:
6f156d7a 18635 return _("func");
1ec5cd37
NC
18636 default:
18637 break;
18638 }
18639
e9e44622 18640 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
1ec5cd37 18641 return buff;
779fe533
NC
18642}
18643
015dc7e1 18644static bool
9ece1fa9
TT
18645print_core_note (Elf_Internal_Note *pnote)
18646{
18647 unsigned int addr_size = is_32bit_elf ? 4 : 8;
18648 bfd_vma count, page_size;
18649 unsigned char *descdata, *filenames, *descend;
18650
18651 if (pnote->type != NT_FILE)
04ac15ab
AS
18652 {
18653 if (do_wide)
18654 printf ("\n");
015dc7e1 18655 return true;
04ac15ab 18656 }
9ece1fa9
TT
18657
18658#ifndef BFD64
18659 if (!is_32bit_elf)
18660 {
18661 printf (_(" Cannot decode 64-bit note in 32-bit build\n"));
18662 /* Still "successful". */
015dc7e1 18663 return true;
9ece1fa9
TT
18664 }
18665#endif
18666
18667 if (pnote->descsz < 2 * addr_size)
18668 {
32ec8896 18669 error (_(" Malformed note - too short for header\n"));
015dc7e1 18670 return false;
9ece1fa9
TT
18671 }
18672
18673 descdata = (unsigned char *) pnote->descdata;
18674 descend = descdata + pnote->descsz;
18675
18676 if (descdata[pnote->descsz - 1] != '\0')
18677 {
32ec8896 18678 error (_(" Malformed note - does not end with \\0\n"));
015dc7e1 18679 return false;
9ece1fa9
TT
18680 }
18681
18682 count = byte_get (descdata, addr_size);
18683 descdata += addr_size;
18684
18685 page_size = byte_get (descdata, addr_size);
18686 descdata += addr_size;
18687
5396a86e
AM
18688 if (count > ((bfd_vma) -1 - 2 * addr_size) / (3 * addr_size)
18689 || pnote->descsz < 2 * addr_size + count * 3 * addr_size)
9ece1fa9 18690 {
32ec8896 18691 error (_(" Malformed note - too short for supplied file count\n"));
015dc7e1 18692 return false;
9ece1fa9
TT
18693 }
18694
18695 printf (_(" Page size: "));
18696 print_vma (page_size, DEC);
18697 printf ("\n");
18698
18699 printf (_(" %*s%*s%*s\n"),
18700 (int) (2 + 2 * addr_size), _("Start"),
18701 (int) (4 + 2 * addr_size), _("End"),
18702 (int) (4 + 2 * addr_size), _("Page Offset"));
18703 filenames = descdata + count * 3 * addr_size;
595712bb 18704 while (count-- > 0)
9ece1fa9
TT
18705 {
18706 bfd_vma start, end, file_ofs;
18707
18708 if (filenames == descend)
18709 {
32ec8896 18710 error (_(" Malformed note - filenames end too early\n"));
015dc7e1 18711 return false;
9ece1fa9
TT
18712 }
18713
18714 start = byte_get (descdata, addr_size);
18715 descdata += addr_size;
18716 end = byte_get (descdata, addr_size);
18717 descdata += addr_size;
18718 file_ofs = byte_get (descdata, addr_size);
18719 descdata += addr_size;
18720
18721 printf (" ");
18722 print_vma (start, FULL_HEX);
18723 printf (" ");
18724 print_vma (end, FULL_HEX);
18725 printf (" ");
18726 print_vma (file_ofs, FULL_HEX);
18727 printf ("\n %s\n", filenames);
18728
18729 filenames += 1 + strlen ((char *) filenames);
18730 }
18731
015dc7e1 18732 return true;
9ece1fa9
TT
18733}
18734
1118d252
RM
18735static const char *
18736get_gnu_elf_note_type (unsigned e_type)
18737{
1449284b 18738 /* NB/ Keep this switch statement in sync with print_gnu_note (). */
1118d252
RM
18739 switch (e_type)
18740 {
18741 case NT_GNU_ABI_TAG:
18742 return _("NT_GNU_ABI_TAG (ABI version tag)");
18743 case NT_GNU_HWCAP:
18744 return _("NT_GNU_HWCAP (DSO-supplied software HWCAP info)");
18745 case NT_GNU_BUILD_ID:
18746 return _("NT_GNU_BUILD_ID (unique build ID bitstring)");
0297aed6
DM
18747 case NT_GNU_GOLD_VERSION:
18748 return _("NT_GNU_GOLD_VERSION (gold version)");
9ef920e9
NC
18749 case NT_GNU_PROPERTY_TYPE_0:
18750 return _("NT_GNU_PROPERTY_TYPE_0");
18751 case NT_GNU_BUILD_ATTRIBUTE_OPEN:
18752 return _("NT_GNU_BUILD_ATTRIBUTE_OPEN");
18753 case NT_GNU_BUILD_ATTRIBUTE_FUNC:
18754 return _("NT_GNU_BUILD_ATTRIBUTE_FUNC");
1118d252 18755 default:
1449284b
NC
18756 {
18757 static char buff[64];
1118d252 18758
1449284b
NC
18759 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
18760 return buff;
18761 }
18762 }
1118d252
RM
18763}
18764
a9eafb08
L
18765static void
18766decode_x86_compat_isa (unsigned int bitmask)
18767{
18768 while (bitmask)
18769 {
18770 unsigned int bit = bitmask & (- bitmask);
18771
18772 bitmask &= ~ bit;
18773 switch (bit)
18774 {
18775 case GNU_PROPERTY_X86_COMPAT_ISA_1_486:
18776 printf ("i486");
18777 break;
18778 case GNU_PROPERTY_X86_COMPAT_ISA_1_586:
18779 printf ("586");
18780 break;
18781 case GNU_PROPERTY_X86_COMPAT_ISA_1_686:
18782 printf ("686");
18783 break;
18784 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE:
18785 printf ("SSE");
18786 break;
18787 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE2:
18788 printf ("SSE2");
18789 break;
18790 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE3:
18791 printf ("SSE3");
18792 break;
18793 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSSE3:
18794 printf ("SSSE3");
18795 break;
18796 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE4_1:
18797 printf ("SSE4_1");
18798 break;
18799 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE4_2:
18800 printf ("SSE4_2");
18801 break;
18802 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX:
18803 printf ("AVX");
18804 break;
18805 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX2:
18806 printf ("AVX2");
18807 break;
18808 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512F:
18809 printf ("AVX512F");
18810 break;
18811 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512CD:
18812 printf ("AVX512CD");
18813 break;
18814 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512ER:
18815 printf ("AVX512ER");
18816 break;
18817 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512PF:
18818 printf ("AVX512PF");
18819 break;
18820 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512VL:
18821 printf ("AVX512VL");
18822 break;
18823 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512DQ:
18824 printf ("AVX512DQ");
18825 break;
18826 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512BW:
18827 printf ("AVX512BW");
18828 break;
65b3d26e
L
18829 default:
18830 printf (_("<unknown: %x>"), bit);
18831 break;
a9eafb08
L
18832 }
18833 if (bitmask)
18834 printf (", ");
18835 }
18836}
18837
9ef920e9 18838static void
32930e4e 18839decode_x86_compat_2_isa (unsigned int bitmask)
9ef920e9 18840{
0a59decb 18841 if (!bitmask)
90c745dc
L
18842 {
18843 printf (_("<None>"));
18844 return;
18845 }
90c745dc 18846
9ef920e9
NC
18847 while (bitmask)
18848 {
1fc87489 18849 unsigned int bit = bitmask & (- bitmask);
9ef920e9
NC
18850
18851 bitmask &= ~ bit;
18852 switch (bit)
18853 {
32930e4e 18854 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_CMOV:
a9eafb08
L
18855 printf ("CMOV");
18856 break;
32930e4e 18857 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_SSE:
a9eafb08
L
18858 printf ("SSE");
18859 break;
32930e4e 18860 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_SSE2:
a9eafb08
L
18861 printf ("SSE2");
18862 break;
32930e4e 18863 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_SSE3:
a9eafb08
L
18864 printf ("SSE3");
18865 break;
32930e4e 18866 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_SSSE3:
a9eafb08
L
18867 printf ("SSSE3");
18868 break;
32930e4e 18869 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_SSE4_1:
a9eafb08
L
18870 printf ("SSE4_1");
18871 break;
32930e4e 18872 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_SSE4_2:
a9eafb08
L
18873 printf ("SSE4_2");
18874 break;
32930e4e 18875 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX:
a9eafb08
L
18876 printf ("AVX");
18877 break;
32930e4e 18878 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX2:
a9eafb08
L
18879 printf ("AVX2");
18880 break;
32930e4e 18881 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_FMA:
a9eafb08
L
18882 printf ("FMA");
18883 break;
32930e4e 18884 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512F:
a9eafb08
L
18885 printf ("AVX512F");
18886 break;
32930e4e 18887 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512CD:
a9eafb08
L
18888 printf ("AVX512CD");
18889 break;
32930e4e 18890 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512ER:
a9eafb08
L
18891 printf ("AVX512ER");
18892 break;
32930e4e 18893 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512PF:
a9eafb08
L
18894 printf ("AVX512PF");
18895 break;
32930e4e 18896 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512VL:
a9eafb08
L
18897 printf ("AVX512VL");
18898 break;
32930e4e 18899 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512DQ:
a9eafb08
L
18900 printf ("AVX512DQ");
18901 break;
32930e4e 18902 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512BW:
a9eafb08
L
18903 printf ("AVX512BW");
18904 break;
32930e4e 18905 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_4FMAPS:
a9eafb08
L
18906 printf ("AVX512_4FMAPS");
18907 break;
32930e4e 18908 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_4VNNIW:
a9eafb08
L
18909 printf ("AVX512_4VNNIW");
18910 break;
32930e4e 18911 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_BITALG:
a9eafb08
L
18912 printf ("AVX512_BITALG");
18913 break;
32930e4e 18914 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_IFMA:
a9eafb08
L
18915 printf ("AVX512_IFMA");
18916 break;
32930e4e 18917 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_VBMI:
a9eafb08
L
18918 printf ("AVX512_VBMI");
18919 break;
32930e4e 18920 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_VBMI2:
a9eafb08
L
18921 printf ("AVX512_VBMI2");
18922 break;
32930e4e 18923 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_VNNI:
a9eafb08
L
18924 printf ("AVX512_VNNI");
18925 break;
32930e4e 18926 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_BF16:
462cac58
L
18927 printf ("AVX512_BF16");
18928 break;
65b3d26e
L
18929 default:
18930 printf (_("<unknown: %x>"), bit);
18931 break;
9ef920e9
NC
18932 }
18933 if (bitmask)
18934 printf (", ");
18935 }
18936}
18937
32930e4e
L
18938static void
18939decode_x86_isa (unsigned int bitmask)
18940{
32930e4e
L
18941 while (bitmask)
18942 {
18943 unsigned int bit = bitmask & (- bitmask);
18944
18945 bitmask &= ~ bit;
18946 switch (bit)
18947 {
b0ab0693
L
18948 case GNU_PROPERTY_X86_ISA_1_BASELINE:
18949 printf ("x86-64-baseline");
18950 break;
32930e4e
L
18951 case GNU_PROPERTY_X86_ISA_1_V2:
18952 printf ("x86-64-v2");
18953 break;
18954 case GNU_PROPERTY_X86_ISA_1_V3:
18955 printf ("x86-64-v3");
18956 break;
18957 case GNU_PROPERTY_X86_ISA_1_V4:
18958 printf ("x86-64-v4");
18959 break;
18960 default:
18961 printf (_("<unknown: %x>"), bit);
18962 break;
18963 }
18964 if (bitmask)
18965 printf (", ");
18966 }
18967}
18968
ee2fdd6f 18969static void
a9eafb08 18970decode_x86_feature_1 (unsigned int bitmask)
ee2fdd6f 18971{
0a59decb 18972 if (!bitmask)
90c745dc
L
18973 {
18974 printf (_("<None>"));
18975 return;
18976 }
90c745dc 18977
ee2fdd6f
L
18978 while (bitmask)
18979 {
18980 unsigned int bit = bitmask & (- bitmask);
18981
18982 bitmask &= ~ bit;
18983 switch (bit)
18984 {
18985 case GNU_PROPERTY_X86_FEATURE_1_IBT:
a9eafb08 18986 printf ("IBT");
ee2fdd6f 18987 break;
48580982 18988 case GNU_PROPERTY_X86_FEATURE_1_SHSTK:
a9eafb08 18989 printf ("SHSTK");
48580982 18990 break;
279d901e
L
18991 case GNU_PROPERTY_X86_FEATURE_1_LAM_U48:
18992 printf ("LAM_U48");
18993 break;
18994 case GNU_PROPERTY_X86_FEATURE_1_LAM_U57:
18995 printf ("LAM_U57");
18996 break;
ee2fdd6f
L
18997 default:
18998 printf (_("<unknown: %x>"), bit);
18999 break;
19000 }
19001 if (bitmask)
19002 printf (", ");
19003 }
19004}
19005
a9eafb08
L
19006static void
19007decode_x86_feature_2 (unsigned int bitmask)
19008{
0a59decb 19009 if (!bitmask)
90c745dc
L
19010 {
19011 printf (_("<None>"));
19012 return;
19013 }
90c745dc 19014
a9eafb08
L
19015 while (bitmask)
19016 {
19017 unsigned int bit = bitmask & (- bitmask);
19018
19019 bitmask &= ~ bit;
19020 switch (bit)
19021 {
19022 case GNU_PROPERTY_X86_FEATURE_2_X86:
19023 printf ("x86");
19024 break;
19025 case GNU_PROPERTY_X86_FEATURE_2_X87:
19026 printf ("x87");
19027 break;
19028 case GNU_PROPERTY_X86_FEATURE_2_MMX:
19029 printf ("MMX");
19030 break;
19031 case GNU_PROPERTY_X86_FEATURE_2_XMM:
19032 printf ("XMM");
19033 break;
19034 case GNU_PROPERTY_X86_FEATURE_2_YMM:
19035 printf ("YMM");
19036 break;
19037 case GNU_PROPERTY_X86_FEATURE_2_ZMM:
19038 printf ("ZMM");
19039 break;
a308b89d
L
19040 case GNU_PROPERTY_X86_FEATURE_2_TMM:
19041 printf ("TMM");
19042 break;
32930e4e
L
19043 case GNU_PROPERTY_X86_FEATURE_2_MASK:
19044 printf ("MASK");
19045 break;
a9eafb08
L
19046 case GNU_PROPERTY_X86_FEATURE_2_FXSR:
19047 printf ("FXSR");
19048 break;
19049 case GNU_PROPERTY_X86_FEATURE_2_XSAVE:
19050 printf ("XSAVE");
19051 break;
19052 case GNU_PROPERTY_X86_FEATURE_2_XSAVEOPT:
19053 printf ("XSAVEOPT");
19054 break;
19055 case GNU_PROPERTY_X86_FEATURE_2_XSAVEC:
19056 printf ("XSAVEC");
19057 break;
65b3d26e
L
19058 default:
19059 printf (_("<unknown: %x>"), bit);
19060 break;
a9eafb08
L
19061 }
19062 if (bitmask)
19063 printf (", ");
19064 }
19065}
19066
cd702818
SD
19067static void
19068decode_aarch64_feature_1_and (unsigned int bitmask)
19069{
19070 while (bitmask)
19071 {
19072 unsigned int bit = bitmask & (- bitmask);
19073
19074 bitmask &= ~ bit;
19075 switch (bit)
19076 {
19077 case GNU_PROPERTY_AARCH64_FEATURE_1_BTI:
19078 printf ("BTI");
19079 break;
19080
19081 case GNU_PROPERTY_AARCH64_FEATURE_1_PAC:
19082 printf ("PAC");
19083 break;
19084
19085 default:
19086 printf (_("<unknown: %x>"), bit);
19087 break;
19088 }
19089 if (bitmask)
19090 printf (", ");
19091 }
19092}
19093
9ef920e9 19094static void
dda8d76d 19095print_gnu_property_note (Filedata * filedata, Elf_Internal_Note * pnote)
9ef920e9
NC
19096{
19097 unsigned char * ptr = (unsigned char *) pnote->descdata;
19098 unsigned char * ptr_end = ptr + pnote->descsz;
19099 unsigned int size = is_32bit_elf ? 4 : 8;
19100
19101 printf (_(" Properties: "));
19102
1fc87489 19103 if (pnote->descsz < 8 || (pnote->descsz % size) != 0)
9ef920e9
NC
19104 {
19105 printf (_("<corrupt GNU_PROPERTY_TYPE, size = %#lx>\n"), pnote->descsz);
19106 return;
19107 }
19108
6ab2c4ed 19109 while (ptr < ptr_end)
9ef920e9 19110 {
1fc87489 19111 unsigned int j;
6ab2c4ed
MC
19112 unsigned int type;
19113 unsigned int datasz;
19114
19115 if ((size_t) (ptr_end - ptr) < 8)
19116 {
19117 printf (_("<corrupt descsz: %#lx>\n"), pnote->descsz);
19118 break;
19119 }
19120
19121 type = byte_get (ptr, 4);
19122 datasz = byte_get (ptr + 4, 4);
9ef920e9 19123
1fc87489 19124 ptr += 8;
9ef920e9 19125
6ab2c4ed 19126 if (datasz > (size_t) (ptr_end - ptr))
9ef920e9 19127 {
1fc87489
L
19128 printf (_("<corrupt type (%#x) datasz: %#x>\n"),
19129 type, datasz);
9ef920e9 19130 break;
1fc87489 19131 }
9ef920e9 19132
1fc87489
L
19133 if (type >= GNU_PROPERTY_LOPROC && type <= GNU_PROPERTY_HIPROC)
19134 {
dda8d76d
NC
19135 if (filedata->file_header.e_machine == EM_X86_64
19136 || filedata->file_header.e_machine == EM_IAMCU
19137 || filedata->file_header.e_machine == EM_386)
1fc87489 19138 {
aa7bca9b
L
19139 unsigned int bitmask;
19140
19141 if (datasz == 4)
0a59decb 19142 bitmask = byte_get (ptr, 4);
aa7bca9b
L
19143 else
19144 bitmask = 0;
19145
1fc87489
L
19146 switch (type)
19147 {
19148 case GNU_PROPERTY_X86_ISA_1_USED:
1fc87489 19149 if (datasz != 4)
aa7bca9b
L
19150 printf (_("x86 ISA used: <corrupt length: %#x> "),
19151 datasz);
1fc87489 19152 else
aa7bca9b
L
19153 {
19154 printf ("x86 ISA used: ");
19155 decode_x86_isa (bitmask);
19156 }
1fc87489 19157 goto next;
9ef920e9 19158
1fc87489 19159 case GNU_PROPERTY_X86_ISA_1_NEEDED:
1fc87489 19160 if (datasz != 4)
aa7bca9b
L
19161 printf (_("x86 ISA needed: <corrupt length: %#x> "),
19162 datasz);
1fc87489 19163 else
aa7bca9b
L
19164 {
19165 printf ("x86 ISA needed: ");
19166 decode_x86_isa (bitmask);
19167 }
1fc87489 19168 goto next;
9ef920e9 19169
ee2fdd6f 19170 case GNU_PROPERTY_X86_FEATURE_1_AND:
ee2fdd6f 19171 if (datasz != 4)
aa7bca9b
L
19172 printf (_("x86 feature: <corrupt length: %#x> "),
19173 datasz);
ee2fdd6f 19174 else
aa7bca9b
L
19175 {
19176 printf ("x86 feature: ");
a9eafb08
L
19177 decode_x86_feature_1 (bitmask);
19178 }
19179 goto next;
19180
19181 case GNU_PROPERTY_X86_FEATURE_2_USED:
19182 if (datasz != 4)
19183 printf (_("x86 feature used: <corrupt length: %#x> "),
19184 datasz);
19185 else
19186 {
19187 printf ("x86 feature used: ");
19188 decode_x86_feature_2 (bitmask);
19189 }
19190 goto next;
19191
19192 case GNU_PROPERTY_X86_FEATURE_2_NEEDED:
19193 if (datasz != 4)
19194 printf (_("x86 feature needed: <corrupt length: %#x> "), datasz);
19195 else
19196 {
19197 printf ("x86 feature needed: ");
19198 decode_x86_feature_2 (bitmask);
19199 }
19200 goto next;
19201
19202 case GNU_PROPERTY_X86_COMPAT_ISA_1_USED:
19203 if (datasz != 4)
19204 printf (_("x86 ISA used: <corrupt length: %#x> "),
19205 datasz);
19206 else
19207 {
19208 printf ("x86 ISA used: ");
19209 decode_x86_compat_isa (bitmask);
19210 }
19211 goto next;
19212
19213 case GNU_PROPERTY_X86_COMPAT_ISA_1_NEEDED:
19214 if (datasz != 4)
19215 printf (_("x86 ISA needed: <corrupt length: %#x> "),
19216 datasz);
19217 else
19218 {
19219 printf ("x86 ISA needed: ");
19220 decode_x86_compat_isa (bitmask);
aa7bca9b 19221 }
ee2fdd6f
L
19222 goto next;
19223
32930e4e
L
19224 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_USED:
19225 if (datasz != 4)
19226 printf (_("x86 ISA used: <corrupt length: %#x> "),
19227 datasz);
19228 else
19229 {
19230 printf ("x86 ISA used: ");
19231 decode_x86_compat_2_isa (bitmask);
19232 }
19233 goto next;
19234
19235 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_NEEDED:
19236 if (datasz != 4)
19237 printf (_("x86 ISA needed: <corrupt length: %#x> "),
19238 datasz);
19239 else
19240 {
19241 printf ("x86 ISA needed: ");
19242 decode_x86_compat_2_isa (bitmask);
19243 }
19244 goto next;
19245
1fc87489
L
19246 default:
19247 break;
19248 }
19249 }
cd702818
SD
19250 else if (filedata->file_header.e_machine == EM_AARCH64)
19251 {
19252 if (type == GNU_PROPERTY_AARCH64_FEATURE_1_AND)
19253 {
19254 printf ("AArch64 feature: ");
19255 if (datasz != 4)
19256 printf (_("<corrupt length: %#x> "), datasz);
19257 else
19258 decode_aarch64_feature_1_and (byte_get (ptr, 4));
19259 goto next;
19260 }
19261 }
1fc87489
L
19262 }
19263 else
19264 {
19265 switch (type)
9ef920e9 19266 {
1fc87489
L
19267 case GNU_PROPERTY_STACK_SIZE:
19268 printf (_("stack size: "));
19269 if (datasz != size)
19270 printf (_("<corrupt length: %#x> "), datasz);
19271 else
19272 printf ("%#lx", (unsigned long) byte_get (ptr, size));
19273 goto next;
19274
19275 case GNU_PROPERTY_NO_COPY_ON_PROTECTED:
19276 printf ("no copy on protected ");
19277 if (datasz)
19278 printf (_("<corrupt length: %#x> "), datasz);
19279 goto next;
19280
19281 default:
9ef920e9
NC
19282 break;
19283 }
9ef920e9
NC
19284 }
19285
1fc87489
L
19286 if (type < GNU_PROPERTY_LOPROC)
19287 printf (_("<unknown type %#x data: "), type);
19288 else if (type < GNU_PROPERTY_LOUSER)
8c3853d9 19289 printf (_("<processor-specific type %#x data: "), type);
1fc87489
L
19290 else
19291 printf (_("<application-specific type %#x data: "), type);
19292 for (j = 0; j < datasz; ++j)
19293 printf ("%02x ", ptr[j] & 0xff);
19294 printf (">");
19295
dc1e8a47 19296 next:
9ef920e9 19297 ptr += ((datasz + (size - 1)) & ~ (size - 1));
1fc87489
L
19298 if (ptr == ptr_end)
19299 break;
1fc87489 19300
6ab2c4ed
MC
19301 if (do_wide)
19302 printf (", ");
19303 else
19304 printf ("\n\t");
9ef920e9
NC
19305 }
19306
19307 printf ("\n");
19308}
19309
015dc7e1 19310static bool
dda8d76d 19311print_gnu_note (Filedata * filedata, Elf_Internal_Note *pnote)
664f90a3 19312{
1449284b 19313 /* NB/ Keep this switch statement in sync with get_gnu_elf_note_type (). */
664f90a3
TT
19314 switch (pnote->type)
19315 {
19316 case NT_GNU_BUILD_ID:
19317 {
19318 unsigned long i;
19319
19320 printf (_(" Build ID: "));
19321 for (i = 0; i < pnote->descsz; ++i)
19322 printf ("%02x", pnote->descdata[i] & 0xff);
9cf03b7e 19323 printf ("\n");
664f90a3
TT
19324 }
19325 break;
19326
19327 case NT_GNU_ABI_TAG:
19328 {
19329 unsigned long os, major, minor, subminor;
19330 const char *osname;
19331
3102e897
NC
19332 /* PR 17531: file: 030-599401-0.004. */
19333 if (pnote->descsz < 16)
19334 {
19335 printf (_(" <corrupt GNU_ABI_TAG>\n"));
19336 break;
19337 }
19338
664f90a3
TT
19339 os = byte_get ((unsigned char *) pnote->descdata, 4);
19340 major = byte_get ((unsigned char *) pnote->descdata + 4, 4);
19341 minor = byte_get ((unsigned char *) pnote->descdata + 8, 4);
19342 subminor = byte_get ((unsigned char *) pnote->descdata + 12, 4);
19343
19344 switch (os)
19345 {
19346 case GNU_ABI_TAG_LINUX:
19347 osname = "Linux";
19348 break;
19349 case GNU_ABI_TAG_HURD:
19350 osname = "Hurd";
19351 break;
19352 case GNU_ABI_TAG_SOLARIS:
19353 osname = "Solaris";
19354 break;
19355 case GNU_ABI_TAG_FREEBSD:
19356 osname = "FreeBSD";
19357 break;
19358 case GNU_ABI_TAG_NETBSD:
19359 osname = "NetBSD";
19360 break;
14ae95f2
RM
19361 case GNU_ABI_TAG_SYLLABLE:
19362 osname = "Syllable";
19363 break;
19364 case GNU_ABI_TAG_NACL:
19365 osname = "NaCl";
19366 break;
664f90a3
TT
19367 default:
19368 osname = "Unknown";
19369 break;
19370 }
19371
19372 printf (_(" OS: %s, ABI: %ld.%ld.%ld\n"), osname,
19373 major, minor, subminor);
19374 }
19375 break;
926c5385
CC
19376
19377 case NT_GNU_GOLD_VERSION:
19378 {
19379 unsigned long i;
19380
19381 printf (_(" Version: "));
19382 for (i = 0; i < pnote->descsz && pnote->descdata[i] != '\0'; ++i)
19383 printf ("%c", pnote->descdata[i]);
19384 printf ("\n");
19385 }
19386 break;
1449284b
NC
19387
19388 case NT_GNU_HWCAP:
19389 {
19390 unsigned long num_entries, mask;
19391
19392 /* Hardware capabilities information. Word 0 is the number of entries.
19393 Word 1 is a bitmask of enabled entries. The rest of the descriptor
19394 is a series of entries, where each entry is a single byte followed
19395 by a nul terminated string. The byte gives the bit number to test
19396 if enabled in the bitmask. */
19397 printf (_(" Hardware Capabilities: "));
19398 if (pnote->descsz < 8)
19399 {
32ec8896 19400 error (_("<corrupt GNU_HWCAP>\n"));
015dc7e1 19401 return false;
1449284b
NC
19402 }
19403 num_entries = byte_get ((unsigned char *) pnote->descdata, 4);
19404 mask = byte_get ((unsigned char *) pnote->descdata + 4, 4);
19405 printf (_("num entries: %ld, enabled mask: %lx\n"), num_entries, mask);
19406 /* FIXME: Add code to display the entries... */
19407 }
19408 break;
19409
9ef920e9 19410 case NT_GNU_PROPERTY_TYPE_0:
dda8d76d 19411 print_gnu_property_note (filedata, pnote);
9ef920e9 19412 break;
9abca702 19413
1449284b
NC
19414 default:
19415 /* Handle unrecognised types. An error message should have already been
19416 created by get_gnu_elf_note_type(), so all that we need to do is to
19417 display the data. */
19418 {
19419 unsigned long i;
19420
19421 printf (_(" Description data: "));
19422 for (i = 0; i < pnote->descsz; ++i)
19423 printf ("%02x ", pnote->descdata[i] & 0xff);
19424 printf ("\n");
19425 }
19426 break;
664f90a3
TT
19427 }
19428
015dc7e1 19429 return true;
664f90a3
TT
19430}
19431
685080f2
NC
19432static const char *
19433get_v850_elf_note_type (enum v850_notes n_type)
19434{
19435 static char buff[64];
19436
19437 switch (n_type)
19438 {
19439 case V850_NOTE_ALIGNMENT: return _("Alignment of 8-byte objects");
19440 case V850_NOTE_DATA_SIZE: return _("Sizeof double and long double");
19441 case V850_NOTE_FPU_INFO: return _("Type of FPU support needed");
19442 case V850_NOTE_SIMD_INFO: return _("Use of SIMD instructions");
19443 case V850_NOTE_CACHE_INFO: return _("Use of cache");
19444 case V850_NOTE_MMU_INFO: return _("Use of MMU");
19445 default:
19446 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), n_type);
19447 return buff;
19448 }
19449}
19450
015dc7e1 19451static bool
685080f2
NC
19452print_v850_note (Elf_Internal_Note * pnote)
19453{
19454 unsigned int val;
19455
19456 if (pnote->descsz != 4)
015dc7e1 19457 return false;
32ec8896 19458
685080f2
NC
19459 val = byte_get ((unsigned char *) pnote->descdata, pnote->descsz);
19460
19461 if (val == 0)
19462 {
19463 printf (_("not set\n"));
015dc7e1 19464 return true;
685080f2
NC
19465 }
19466
19467 switch (pnote->type)
19468 {
19469 case V850_NOTE_ALIGNMENT:
19470 switch (val)
19471 {
015dc7e1
AM
19472 case EF_RH850_DATA_ALIGN4: printf (_("4-byte\n")); return true;
19473 case EF_RH850_DATA_ALIGN8: printf (_("8-byte\n")); return true;
685080f2
NC
19474 }
19475 break;
14ae95f2 19476
685080f2
NC
19477 case V850_NOTE_DATA_SIZE:
19478 switch (val)
19479 {
015dc7e1
AM
19480 case EF_RH850_DOUBLE32: printf (_("4-bytes\n")); return true;
19481 case EF_RH850_DOUBLE64: printf (_("8-bytes\n")); return true;
685080f2
NC
19482 }
19483 break;
14ae95f2 19484
685080f2
NC
19485 case V850_NOTE_FPU_INFO:
19486 switch (val)
19487 {
015dc7e1
AM
19488 case EF_RH850_FPU20: printf (_("FPU-2.0\n")); return true;
19489 case EF_RH850_FPU30: printf (_("FPU-3.0\n")); return true;
685080f2
NC
19490 }
19491 break;
14ae95f2 19492
685080f2
NC
19493 case V850_NOTE_MMU_INFO:
19494 case V850_NOTE_CACHE_INFO:
19495 case V850_NOTE_SIMD_INFO:
19496 if (val == EF_RH850_SIMD)
19497 {
19498 printf (_("yes\n"));
015dc7e1 19499 return true;
685080f2
NC
19500 }
19501 break;
19502
19503 default:
19504 /* An 'unknown note type' message will already have been displayed. */
19505 break;
19506 }
19507
19508 printf (_("unknown value: %x\n"), val);
015dc7e1 19509 return false;
685080f2
NC
19510}
19511
015dc7e1 19512static bool
c6056a74
SF
19513process_netbsd_elf_note (Elf_Internal_Note * pnote)
19514{
19515 unsigned int version;
19516
19517 switch (pnote->type)
19518 {
19519 case NT_NETBSD_IDENT:
b966f55f
AM
19520 if (pnote->descsz < 1)
19521 break;
c6056a74
SF
19522 version = byte_get ((unsigned char *) pnote->descdata, sizeof (version));
19523 if ((version / 10000) % 100)
b966f55f 19524 printf (" NetBSD\t\t0x%08lx\tIDENT %u (%u.%u%s%c)\n", pnote->descsz,
c6056a74
SF
19525 version, version / 100000000, (version / 1000000) % 100,
19526 (version / 10000) % 100 > 26 ? "Z" : "",
15f205b1 19527 'A' + (version / 10000) % 26);
c6056a74
SF
19528 else
19529 printf (" NetBSD\t\t0x%08lx\tIDENT %u (%u.%u.%u)\n", pnote->descsz,
b966f55f 19530 version, version / 100000000, (version / 1000000) % 100,
15f205b1 19531 (version / 100) % 100);
015dc7e1 19532 return true;
c6056a74
SF
19533
19534 case NT_NETBSD_MARCH:
9abca702 19535 printf (" NetBSD\t\t0x%08lx\tMARCH <%s>\n", pnote->descsz,
c6056a74 19536 pnote->descdata);
015dc7e1 19537 return true;
c6056a74 19538
9abca702 19539 case NT_NETBSD_PAX:
b966f55f
AM
19540 if (pnote->descsz < 1)
19541 break;
9abca702
CZ
19542 version = byte_get ((unsigned char *) pnote->descdata, sizeof (version));
19543 printf (" NetBSD\t\t0x%08lx\tPaX <%s%s%s%s%s%s>\n", pnote->descsz,
19544 ((version & NT_NETBSD_PAX_MPROTECT) ? "+mprotect" : ""),
19545 ((version & NT_NETBSD_PAX_NOMPROTECT) ? "-mprotect" : ""),
19546 ((version & NT_NETBSD_PAX_GUARD) ? "+guard" : ""),
19547 ((version & NT_NETBSD_PAX_NOGUARD) ? "-guard" : ""),
19548 ((version & NT_NETBSD_PAX_ASLR) ? "+ASLR" : ""),
19549 ((version & NT_NETBSD_PAX_NOASLR) ? "-ASLR" : ""));
015dc7e1 19550 return true;
c6056a74 19551 }
b966f55f
AM
19552
19553 printf (" NetBSD\t0x%08lx\tUnknown note type: (0x%08lx)\n",
19554 pnote->descsz, pnote->type);
015dc7e1 19555 return false;
c6056a74
SF
19556}
19557
f4ddf30f 19558static const char *
dda8d76d 19559get_freebsd_elfcore_note_type (Filedata * filedata, unsigned e_type)
f4ddf30f 19560{
f4ddf30f
JB
19561 switch (e_type)
19562 {
19563 case NT_FREEBSD_THRMISC:
19564 return _("NT_THRMISC (thrmisc structure)");
19565 case NT_FREEBSD_PROCSTAT_PROC:
19566 return _("NT_PROCSTAT_PROC (proc data)");
19567 case NT_FREEBSD_PROCSTAT_FILES:
19568 return _("NT_PROCSTAT_FILES (files data)");
19569 case NT_FREEBSD_PROCSTAT_VMMAP:
19570 return _("NT_PROCSTAT_VMMAP (vmmap data)");
19571 case NT_FREEBSD_PROCSTAT_GROUPS:
19572 return _("NT_PROCSTAT_GROUPS (groups data)");
19573 case NT_FREEBSD_PROCSTAT_UMASK:
19574 return _("NT_PROCSTAT_UMASK (umask data)");
19575 case NT_FREEBSD_PROCSTAT_RLIMIT:
19576 return _("NT_PROCSTAT_RLIMIT (rlimit data)");
19577 case NT_FREEBSD_PROCSTAT_OSREL:
19578 return _("NT_PROCSTAT_OSREL (osreldate data)");
19579 case NT_FREEBSD_PROCSTAT_PSSTRINGS:
19580 return _("NT_PROCSTAT_PSSTRINGS (ps_strings data)");
19581 case NT_FREEBSD_PROCSTAT_AUXV:
19582 return _("NT_PROCSTAT_AUXV (auxv data)");
0b9305ed
JB
19583 case NT_FREEBSD_PTLWPINFO:
19584 return _("NT_PTLWPINFO (ptrace_lwpinfo structure)");
f4ddf30f 19585 }
dda8d76d 19586 return get_note_type (filedata, e_type);
f4ddf30f
JB
19587}
19588
9437c45b 19589static const char *
dda8d76d 19590get_netbsd_elfcore_note_type (Filedata * filedata, unsigned e_type)
9437c45b
JT
19591{
19592 static char buff[64];
19593
540e6170
CZ
19594 switch (e_type)
19595 {
19596 case NT_NETBSDCORE_PROCINFO:
19597 /* NetBSD core "procinfo" structure. */
19598 return _("NetBSD procinfo structure");
9437c45b 19599
540e6170
CZ
19600 case NT_NETBSDCORE_AUXV:
19601 return _("NetBSD ELF auxiliary vector data");
9437c45b 19602
06d949ec
KR
19603 case NT_NETBSDCORE_LWPSTATUS:
19604 return _("PT_LWPSTATUS (ptrace_lwpstatus structure)");
06d949ec 19605
540e6170 19606 default:
06d949ec 19607 /* As of Jan 2020 there are no other machine-independent notes
540e6170
CZ
19608 defined for NetBSD core files. If the note type is less
19609 than the start of the machine-dependent note types, we don't
19610 understand it. */
19611
19612 if (e_type < NT_NETBSDCORE_FIRSTMACH)
19613 {
19614 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
19615 return buff;
19616 }
19617 break;
9437c45b
JT
19618 }
19619
dda8d76d 19620 switch (filedata->file_header.e_machine)
9437c45b
JT
19621 {
19622 /* On the Alpha, SPARC (32-bit and 64-bit), PT_GETREGS == mach+0
19623 and PT_GETFPREGS == mach+2. */
19624
19625 case EM_OLD_ALPHA:
19626 case EM_ALPHA:
19627 case EM_SPARC:
19628 case EM_SPARC32PLUS:
19629 case EM_SPARCV9:
19630 switch (e_type)
19631 {
2b692964 19632 case NT_NETBSDCORE_FIRSTMACH + 0:
b4db1224 19633 return _("PT_GETREGS (reg structure)");
2b692964 19634 case NT_NETBSDCORE_FIRSTMACH + 2:
b4db1224 19635 return _("PT_GETFPREGS (fpreg structure)");
9437c45b
JT
19636 default:
19637 break;
19638 }
19639 break;
19640
c0d38b0e
CZ
19641 /* On SuperH, PT_GETREGS == mach+3 and PT_GETFPREGS == mach+5.
19642 There's also old PT___GETREGS40 == mach + 1 for old reg
19643 structure which lacks GBR. */
19644 case EM_SH:
19645 switch (e_type)
19646 {
19647 case NT_NETBSDCORE_FIRSTMACH + 1:
19648 return _("PT___GETREGS40 (old reg structure)");
19649 case NT_NETBSDCORE_FIRSTMACH + 3:
19650 return _("PT_GETREGS (reg structure)");
19651 case NT_NETBSDCORE_FIRSTMACH + 5:
19652 return _("PT_GETFPREGS (fpreg structure)");
19653 default:
19654 break;
19655 }
19656 break;
19657
9437c45b
JT
19658 /* On all other arch's, PT_GETREGS == mach+1 and
19659 PT_GETFPREGS == mach+3. */
19660 default:
19661 switch (e_type)
19662 {
2b692964 19663 case NT_NETBSDCORE_FIRSTMACH + 1:
b4db1224 19664 return _("PT_GETREGS (reg structure)");
2b692964 19665 case NT_NETBSDCORE_FIRSTMACH + 3:
b4db1224 19666 return _("PT_GETFPREGS (fpreg structure)");
9437c45b
JT
19667 default:
19668 break;
19669 }
19670 }
19671
9cf03b7e 19672 snprintf (buff, sizeof (buff), "PT_FIRSTMACH+%d",
e9e44622 19673 e_type - NT_NETBSDCORE_FIRSTMACH);
9437c45b
JT
19674 return buff;
19675}
19676
70616151
TT
19677static const char *
19678get_stapsdt_note_type (unsigned e_type)
19679{
19680 static char buff[64];
19681
19682 switch (e_type)
19683 {
19684 case NT_STAPSDT:
19685 return _("NT_STAPSDT (SystemTap probe descriptors)");
19686
19687 default:
19688 break;
19689 }
19690
19691 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
19692 return buff;
19693}
19694
015dc7e1 19695static bool
c6a9fc58
TT
19696print_stapsdt_note (Elf_Internal_Note *pnote)
19697{
3ca60c57
NC
19698 size_t len, maxlen;
19699 unsigned long addr_size = is_32bit_elf ? 4 : 8;
c6a9fc58
TT
19700 char *data = pnote->descdata;
19701 char *data_end = pnote->descdata + pnote->descsz;
19702 bfd_vma pc, base_addr, semaphore;
19703 char *provider, *probe, *arg_fmt;
19704
3ca60c57
NC
19705 if (pnote->descsz < (addr_size * 3))
19706 goto stapdt_note_too_small;
19707
c6a9fc58
TT
19708 pc = byte_get ((unsigned char *) data, addr_size);
19709 data += addr_size;
3ca60c57 19710
c6a9fc58
TT
19711 base_addr = byte_get ((unsigned char *) data, addr_size);
19712 data += addr_size;
3ca60c57 19713
c6a9fc58
TT
19714 semaphore = byte_get ((unsigned char *) data, addr_size);
19715 data += addr_size;
19716
3ca60c57
NC
19717 if (data >= data_end)
19718 goto stapdt_note_too_small;
19719 maxlen = data_end - data;
19720 len = strnlen (data, maxlen);
19721 if (len < maxlen)
19722 {
19723 provider = data;
19724 data += len + 1;
19725 }
19726 else
19727 goto stapdt_note_too_small;
19728
19729 if (data >= data_end)
19730 goto stapdt_note_too_small;
19731 maxlen = data_end - data;
19732 len = strnlen (data, maxlen);
19733 if (len < maxlen)
19734 {
19735 probe = data;
19736 data += len + 1;
19737 }
19738 else
19739 goto stapdt_note_too_small;
9abca702 19740
3ca60c57
NC
19741 if (data >= data_end)
19742 goto stapdt_note_too_small;
19743 maxlen = data_end - data;
19744 len = strnlen (data, maxlen);
19745 if (len < maxlen)
19746 {
19747 arg_fmt = data;
19748 data += len + 1;
19749 }
19750 else
19751 goto stapdt_note_too_small;
c6a9fc58
TT
19752
19753 printf (_(" Provider: %s\n"), provider);
19754 printf (_(" Name: %s\n"), probe);
19755 printf (_(" Location: "));
19756 print_vma (pc, FULL_HEX);
19757 printf (_(", Base: "));
19758 print_vma (base_addr, FULL_HEX);
19759 printf (_(", Semaphore: "));
19760 print_vma (semaphore, FULL_HEX);
9cf03b7e 19761 printf ("\n");
c6a9fc58
TT
19762 printf (_(" Arguments: %s\n"), arg_fmt);
19763
19764 return data == data_end;
3ca60c57
NC
19765
19766 stapdt_note_too_small:
19767 printf (_(" <corrupt - note is too small>\n"));
19768 error (_("corrupt stapdt note - the data size is too small\n"));
015dc7e1 19769 return false;
c6a9fc58
TT
19770}
19771
00e98fc7
TG
19772static const char *
19773get_ia64_vms_note_type (unsigned e_type)
19774{
19775 static char buff[64];
19776
19777 switch (e_type)
19778 {
19779 case NT_VMS_MHD:
19780 return _("NT_VMS_MHD (module header)");
19781 case NT_VMS_LNM:
19782 return _("NT_VMS_LNM (language name)");
19783 case NT_VMS_SRC:
19784 return _("NT_VMS_SRC (source files)");
19785 case NT_VMS_TITLE:
9cf03b7e 19786 return "NT_VMS_TITLE";
00e98fc7
TG
19787 case NT_VMS_EIDC:
19788 return _("NT_VMS_EIDC (consistency check)");
19789 case NT_VMS_FPMODE:
19790 return _("NT_VMS_FPMODE (FP mode)");
19791 case NT_VMS_LINKTIME:
9cf03b7e 19792 return "NT_VMS_LINKTIME";
00e98fc7
TG
19793 case NT_VMS_IMGNAM:
19794 return _("NT_VMS_IMGNAM (image name)");
19795 case NT_VMS_IMGID:
19796 return _("NT_VMS_IMGID (image id)");
19797 case NT_VMS_LINKID:
19798 return _("NT_VMS_LINKID (link id)");
19799 case NT_VMS_IMGBID:
19800 return _("NT_VMS_IMGBID (build id)");
19801 case NT_VMS_GSTNAM:
19802 return _("NT_VMS_GSTNAM (sym table name)");
19803 case NT_VMS_ORIG_DYN:
9cf03b7e 19804 return "NT_VMS_ORIG_DYN";
00e98fc7 19805 case NT_VMS_PATCHTIME:
9cf03b7e 19806 return "NT_VMS_PATCHTIME";
00e98fc7
TG
19807 default:
19808 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
19809 return buff;
19810 }
19811}
19812
015dc7e1 19813static bool
00e98fc7
TG
19814print_ia64_vms_note (Elf_Internal_Note * pnote)
19815{
8d18bf79
NC
19816 int maxlen = pnote->descsz;
19817
19818 if (maxlen < 2 || (unsigned long) maxlen != pnote->descsz)
19819 goto desc_size_fail;
19820
00e98fc7
TG
19821 switch (pnote->type)
19822 {
19823 case NT_VMS_MHD:
8d18bf79
NC
19824 if (maxlen <= 36)
19825 goto desc_size_fail;
19826
19827 int l = (int) strnlen (pnote->descdata + 34, maxlen - 34);
19828
19829 printf (_(" Creation date : %.17s\n"), pnote->descdata);
19830 printf (_(" Last patch date: %.17s\n"), pnote->descdata + 17);
19831 if (l + 34 < maxlen)
19832 {
19833 printf (_(" Module name : %s\n"), pnote->descdata + 34);
19834 if (l + 35 < maxlen)
19835 printf (_(" Module version : %s\n"), pnote->descdata + 34 + l + 1);
19836 else
19837 printf (_(" Module version : <missing>\n"));
19838 }
00e98fc7 19839 else
8d18bf79
NC
19840 {
19841 printf (_(" Module name : <missing>\n"));
19842 printf (_(" Module version : <missing>\n"));
19843 }
00e98fc7 19844 break;
8d18bf79 19845
00e98fc7 19846 case NT_VMS_LNM:
8d18bf79 19847 printf (_(" Language: %.*s\n"), maxlen, pnote->descdata);
00e98fc7 19848 break;
8d18bf79 19849
00e98fc7
TG
19850#ifdef BFD64
19851 case NT_VMS_FPMODE:
9cf03b7e 19852 printf (_(" Floating Point mode: "));
8d18bf79
NC
19853 if (maxlen < 8)
19854 goto desc_size_fail;
19855 /* FIXME: Generate an error if descsz > 8 ? */
19856
4a5cb34f 19857 printf ("0x%016" BFD_VMA_FMT "x\n",
8d18bf79 19858 (bfd_vma) byte_get ((unsigned char *)pnote->descdata, 8));
00e98fc7 19859 break;
8d18bf79 19860
00e98fc7
TG
19861 case NT_VMS_LINKTIME:
19862 printf (_(" Link time: "));
8d18bf79
NC
19863 if (maxlen < 8)
19864 goto desc_size_fail;
19865 /* FIXME: Generate an error if descsz > 8 ? */
19866
00e98fc7 19867 print_vms_time
8d18bf79 19868 ((bfd_int64_t) byte_get ((unsigned char *)pnote->descdata, 8));
00e98fc7
TG
19869 printf ("\n");
19870 break;
8d18bf79 19871
00e98fc7
TG
19872 case NT_VMS_PATCHTIME:
19873 printf (_(" Patch time: "));
8d18bf79
NC
19874 if (maxlen < 8)
19875 goto desc_size_fail;
19876 /* FIXME: Generate an error if descsz > 8 ? */
19877
00e98fc7 19878 print_vms_time
8d18bf79 19879 ((bfd_int64_t) byte_get ((unsigned char *)pnote->descdata, 8));
00e98fc7
TG
19880 printf ("\n");
19881 break;
8d18bf79 19882
00e98fc7 19883 case NT_VMS_ORIG_DYN:
8d18bf79
NC
19884 if (maxlen < 34)
19885 goto desc_size_fail;
19886
00e98fc7
TG
19887 printf (_(" Major id: %u, minor id: %u\n"),
19888 (unsigned) byte_get ((unsigned char *)pnote->descdata, 4),
19889 (unsigned) byte_get ((unsigned char *)pnote->descdata + 4, 4));
9cf03b7e 19890 printf (_(" Last modified : "));
00e98fc7
TG
19891 print_vms_time
19892 ((bfd_int64_t) byte_get ((unsigned char *)pnote->descdata + 8, 8));
9cf03b7e 19893 printf (_("\n Link flags : "));
4a5cb34f 19894 printf ("0x%016" BFD_VMA_FMT "x\n",
948f632f 19895 (bfd_vma) byte_get ((unsigned char *)pnote->descdata + 16, 8));
00e98fc7 19896 printf (_(" Header flags: 0x%08x\n"),
948f632f 19897 (unsigned) byte_get ((unsigned char *)pnote->descdata + 24, 4));
8d18bf79 19898 printf (_(" Image id : %.*s\n"), maxlen - 32, pnote->descdata + 32);
00e98fc7
TG
19899 break;
19900#endif
8d18bf79 19901
00e98fc7 19902 case NT_VMS_IMGNAM:
8d18bf79 19903 printf (_(" Image name: %.*s\n"), maxlen, pnote->descdata);
00e98fc7 19904 break;
8d18bf79 19905
00e98fc7 19906 case NT_VMS_GSTNAM:
8d18bf79 19907 printf (_(" Global symbol table name: %.*s\n"), maxlen, pnote->descdata);
00e98fc7 19908 break;
8d18bf79 19909
00e98fc7 19910 case NT_VMS_IMGID:
8d18bf79 19911 printf (_(" Image id: %.*s\n"), maxlen, pnote->descdata);
00e98fc7 19912 break;
8d18bf79 19913
00e98fc7 19914 case NT_VMS_LINKID:
8d18bf79 19915 printf (_(" Linker id: %.*s\n"), maxlen, pnote->descdata);
00e98fc7 19916 break;
8d18bf79 19917
00e98fc7 19918 default:
015dc7e1 19919 return false;
00e98fc7 19920 }
8d18bf79 19921
015dc7e1 19922 return true;
8d18bf79
NC
19923
19924 desc_size_fail:
19925 printf (_(" <corrupt - data size is too small>\n"));
19926 error (_("corrupt IA64 note: data size is too small\n"));
015dc7e1 19927 return false;
00e98fc7
TG
19928}
19929
fd486f32
AM
19930struct build_attr_cache {
19931 Filedata *filedata;
19932 char *strtab;
19933 unsigned long strtablen;
19934 Elf_Internal_Sym *symtab;
19935 unsigned long nsyms;
19936} ba_cache;
19937
6f156d7a
NC
19938/* Find the symbol associated with a build attribute that is attached
19939 to address OFFSET. If PNAME is non-NULL then store the name of
19940 the symbol (if found) in the provided pointer, Returns NULL if a
19941 symbol could not be found. */
c799a79d 19942
6f156d7a 19943static Elf_Internal_Sym *
015dc7e1
AM
19944get_symbol_for_build_attribute (Filedata *filedata,
19945 unsigned long offset,
19946 bool is_open_attr,
19947 const char **pname)
9ef920e9 19948{
fd486f32
AM
19949 Elf_Internal_Sym *saved_sym = NULL;
19950 Elf_Internal_Sym *sym;
9ef920e9 19951
dda8d76d 19952 if (filedata->section_headers != NULL
fd486f32 19953 && (ba_cache.filedata == NULL || filedata != ba_cache.filedata))
9ef920e9 19954 {
c799a79d 19955 Elf_Internal_Shdr * symsec;
9ef920e9 19956
fd486f32
AM
19957 free (ba_cache.strtab);
19958 ba_cache.strtab = NULL;
19959 free (ba_cache.symtab);
19960 ba_cache.symtab = NULL;
19961
c799a79d 19962 /* Load the symbol and string sections. */
dda8d76d
NC
19963 for (symsec = filedata->section_headers;
19964 symsec < filedata->section_headers + filedata->file_header.e_shnum;
c799a79d 19965 symsec ++)
9ef920e9 19966 {
28d13567
AM
19967 if (symsec->sh_type == SHT_SYMTAB
19968 && get_symtab (filedata, symsec,
19969 &ba_cache.symtab, &ba_cache.nsyms,
19970 &ba_cache.strtab, &ba_cache.strtablen))
19971 break;
9ef920e9 19972 }
fd486f32 19973 ba_cache.filedata = filedata;
9ef920e9
NC
19974 }
19975
fd486f32 19976 if (ba_cache.symtab == NULL)
6f156d7a 19977 return NULL;
9ef920e9 19978
c799a79d 19979 /* Find a symbol whose value matches offset. */
fd486f32 19980 for (sym = ba_cache.symtab; sym < ba_cache.symtab + ba_cache.nsyms; sym ++)
c799a79d
NC
19981 if (sym->st_value == offset)
19982 {
fd486f32 19983 if (sym->st_name >= ba_cache.strtablen)
c799a79d
NC
19984 /* Huh ? This should not happen. */
19985 continue;
9ef920e9 19986
fd486f32 19987 if (ba_cache.strtab[sym->st_name] == 0)
c799a79d 19988 continue;
9ef920e9 19989
8fd75781
NC
19990 /* The AArch64 and ARM architectures define mapping symbols
19991 (eg $d, $x, $t) which we want to ignore. */
fd486f32
AM
19992 if (ba_cache.strtab[sym->st_name] == '$'
19993 && ba_cache.strtab[sym->st_name + 1] != 0
19994 && ba_cache.strtab[sym->st_name + 2] == 0)
8fd75781
NC
19995 continue;
19996
c799a79d
NC
19997 if (is_open_attr)
19998 {
19999 /* For OPEN attributes we prefer GLOBAL over LOCAL symbols
20000 and FILE or OBJECT symbols over NOTYPE symbols. We skip
20001 FUNC symbols entirely. */
20002 switch (ELF_ST_TYPE (sym->st_info))
20003 {
c799a79d 20004 case STT_OBJECT:
6f156d7a 20005 case STT_FILE:
c799a79d 20006 saved_sym = sym;
6f156d7a
NC
20007 if (sym->st_size)
20008 {
20009 /* If the symbol has a size associated
20010 with it then we can stop searching. */
fd486f32 20011 sym = ba_cache.symtab + ba_cache.nsyms;
6f156d7a 20012 }
c799a79d 20013 continue;
9ef920e9 20014
c799a79d
NC
20015 case STT_FUNC:
20016 /* Ignore function symbols. */
20017 continue;
20018
20019 default:
20020 break;
20021 }
20022
20023 switch (ELF_ST_BIND (sym->st_info))
9ef920e9 20024 {
c799a79d
NC
20025 case STB_GLOBAL:
20026 if (saved_sym == NULL
20027 || ELF_ST_TYPE (saved_sym->st_info) != STT_OBJECT)
20028 saved_sym = sym;
20029 break;
c871dade 20030
c799a79d
NC
20031 case STB_LOCAL:
20032 if (saved_sym == NULL)
20033 saved_sym = sym;
20034 break;
20035
20036 default:
9ef920e9
NC
20037 break;
20038 }
20039 }
c799a79d
NC
20040 else
20041 {
20042 if (ELF_ST_TYPE (sym->st_info) != STT_FUNC)
20043 continue;
20044
20045 saved_sym = sym;
20046 break;
20047 }
20048 }
20049
6f156d7a 20050 if (saved_sym && pname)
fd486f32 20051 * pname = ba_cache.strtab + saved_sym->st_name;
6f156d7a
NC
20052
20053 return saved_sym;
c799a79d
NC
20054}
20055
d20e98ab
NC
20056/* Returns true iff addr1 and addr2 are in the same section. */
20057
015dc7e1 20058static bool
d20e98ab
NC
20059same_section (Filedata * filedata, unsigned long addr1, unsigned long addr2)
20060{
20061 Elf_Internal_Shdr * a1;
20062 Elf_Internal_Shdr * a2;
20063
20064 a1 = find_section_by_address (filedata, addr1);
20065 a2 = find_section_by_address (filedata, addr2);
9abca702 20066
d20e98ab
NC
20067 return a1 == a2 && a1 != NULL;
20068}
20069
015dc7e1 20070static bool
dda8d76d
NC
20071print_gnu_build_attribute_description (Elf_Internal_Note * pnote,
20072 Filedata * filedata)
c799a79d 20073{
015dc7e1
AM
20074 static unsigned long global_offset = 0;
20075 static unsigned long global_end = 0;
20076 static unsigned long func_offset = 0;
20077 static unsigned long func_end = 0;
c871dade 20078
015dc7e1
AM
20079 Elf_Internal_Sym *sym;
20080 const char *name;
20081 unsigned long start;
20082 unsigned long end;
20083 bool is_open_attr = pnote->type == NT_GNU_BUILD_ATTRIBUTE_OPEN;
6f156d7a
NC
20084
20085 switch (pnote->descsz)
c799a79d 20086 {
6f156d7a
NC
20087 case 0:
20088 /* A zero-length description means that the range of
20089 the previous note of the same type should be used. */
c799a79d 20090 if (is_open_attr)
c871dade 20091 {
6f156d7a
NC
20092 if (global_end > global_offset)
20093 printf (_(" Applies to region from %#lx to %#lx\n"),
20094 global_offset, global_end);
20095 else
20096 printf (_(" Applies to region from %#lx\n"), global_offset);
c799a79d
NC
20097 }
20098 else
20099 {
6f156d7a
NC
20100 if (func_end > func_offset)
20101 printf (_(" Applies to region from %#lx to %#lx\n"), func_offset, func_end);
20102 else
20103 printf (_(" Applies to region from %#lx\n"), func_offset);
c871dade 20104 }
015dc7e1 20105 return true;
9ef920e9 20106
6f156d7a
NC
20107 case 4:
20108 start = byte_get ((unsigned char *) pnote->descdata, 4);
20109 end = 0;
20110 break;
20111
20112 case 8:
c74147bb
NC
20113 start = byte_get ((unsigned char *) pnote->descdata, 4);
20114 end = byte_get ((unsigned char *) pnote->descdata + 4, 4);
6f156d7a
NC
20115 break;
20116
20117 case 16:
20118 start = byte_get ((unsigned char *) pnote->descdata, 8);
20119 end = byte_get ((unsigned char *) pnote->descdata + 8, 8);
20120 break;
9abca702 20121
6f156d7a 20122 default:
c799a79d
NC
20123 error (_(" <invalid description size: %lx>\n"), pnote->descsz);
20124 printf (_(" <invalid descsz>"));
015dc7e1 20125 return false;
c799a79d
NC
20126 }
20127
6f156d7a
NC
20128 name = NULL;
20129 sym = get_symbol_for_build_attribute (filedata, start, is_open_attr, & name);
8fd75781
NC
20130 /* As of version 5 of the annobin plugin, filename symbols are biased by 2
20131 in order to avoid them being confused with the start address of the
20132 first function in the file... */
20133 if (sym == NULL && is_open_attr)
20134 sym = get_symbol_for_build_attribute (filedata, start + 2, is_open_attr,
20135 & name);
6f156d7a
NC
20136
20137 if (end == 0 && sym != NULL && sym->st_size > 0)
20138 end = start + sym->st_size;
c799a79d
NC
20139
20140 if (is_open_attr)
20141 {
d20e98ab
NC
20142 /* FIXME: Need to properly allow for section alignment.
20143 16 is just the alignment used on x86_64. */
20144 if (global_end > 0
20145 && start > BFD_ALIGN (global_end, 16)
20146 /* Build notes are not guaranteed to be organised in order of
20147 increasing address, but we should find the all of the notes
20148 for one section in the same place. */
20149 && same_section (filedata, start, global_end))
6f156d7a
NC
20150 warn (_("Gap in build notes detected from %#lx to %#lx\n"),
20151 global_end + 1, start - 1);
20152
20153 printf (_(" Applies to region from %#lx"), start);
20154 global_offset = start;
20155
20156 if (end)
20157 {
20158 printf (_(" to %#lx"), end);
20159 global_end = end;
20160 }
c799a79d
NC
20161 }
20162 else
20163 {
6f156d7a
NC
20164 printf (_(" Applies to region from %#lx"), start);
20165 func_offset = start;
20166
20167 if (end)
20168 {
20169 printf (_(" to %#lx"), end);
20170 func_end = end;
20171 }
c799a79d
NC
20172 }
20173
6f156d7a
NC
20174 if (sym && name)
20175 printf (_(" (%s)"), name);
20176
20177 printf ("\n");
015dc7e1 20178 return true;
9ef920e9
NC
20179}
20180
015dc7e1 20181static bool
9ef920e9
NC
20182print_gnu_build_attribute_name (Elf_Internal_Note * pnote)
20183{
1d15e434
NC
20184 static const char string_expected [2] = { GNU_BUILD_ATTRIBUTE_TYPE_STRING, 0 };
20185 static const char number_expected [2] = { GNU_BUILD_ATTRIBUTE_TYPE_NUMERIC, 0 };
20186 static const char bool_expected [3] = { GNU_BUILD_ATTRIBUTE_TYPE_BOOL_TRUE, GNU_BUILD_ATTRIBUTE_TYPE_BOOL_FALSE, 0 };
9ef920e9
NC
20187 char name_type;
20188 char name_attribute;
1d15e434 20189 const char * expected_types;
9ef920e9
NC
20190 const char * name = pnote->namedata;
20191 const char * text;
88305e1b 20192 signed int left;
9ef920e9
NC
20193
20194 if (name == NULL || pnote->namesz < 2)
20195 {
20196 error (_("corrupt name field in GNU build attribute note: size = %ld\n"), pnote->namesz);
7296a62a 20197 print_symbol (-20, _(" <corrupt name>"));
015dc7e1 20198 return false;
9ef920e9
NC
20199 }
20200
6f156d7a
NC
20201 if (do_wide)
20202 left = 28;
20203 else
20204 left = 20;
88305e1b
NC
20205
20206 /* Version 2 of the spec adds a "GA" prefix to the name field. */
20207 if (name[0] == 'G' && name[1] == 'A')
20208 {
6f156d7a
NC
20209 if (pnote->namesz < 4)
20210 {
20211 error (_("corrupt name field in GNU build attribute note: size = %ld\n"), pnote->namesz);
20212 print_symbol (-20, _(" <corrupt name>"));
015dc7e1 20213 return false;
6f156d7a
NC
20214 }
20215
88305e1b
NC
20216 printf ("GA");
20217 name += 2;
20218 left -= 2;
20219 }
20220
9ef920e9
NC
20221 switch ((name_type = * name))
20222 {
20223 case GNU_BUILD_ATTRIBUTE_TYPE_NUMERIC:
20224 case GNU_BUILD_ATTRIBUTE_TYPE_STRING:
20225 case GNU_BUILD_ATTRIBUTE_TYPE_BOOL_TRUE:
20226 case GNU_BUILD_ATTRIBUTE_TYPE_BOOL_FALSE:
20227 printf ("%c", * name);
88305e1b 20228 left --;
9ef920e9
NC
20229 break;
20230 default:
20231 error (_("unrecognised attribute type in name field: %d\n"), name_type);
20232 print_symbol (-20, _("<unknown name type>"));
015dc7e1 20233 return false;
9ef920e9
NC
20234 }
20235
9ef920e9
NC
20236 ++ name;
20237 text = NULL;
20238
20239 switch ((name_attribute = * name))
20240 {
20241 case GNU_BUILD_ATTRIBUTE_VERSION:
20242 text = _("<version>");
1d15e434 20243 expected_types = string_expected;
9ef920e9
NC
20244 ++ name;
20245 break;
20246 case GNU_BUILD_ATTRIBUTE_STACK_PROT:
20247 text = _("<stack prot>");
75d7d298 20248 expected_types = "!+*";
9ef920e9
NC
20249 ++ name;
20250 break;
20251 case GNU_BUILD_ATTRIBUTE_RELRO:
20252 text = _("<relro>");
1d15e434 20253 expected_types = bool_expected;
9ef920e9
NC
20254 ++ name;
20255 break;
20256 case GNU_BUILD_ATTRIBUTE_STACK_SIZE:
20257 text = _("<stack size>");
1d15e434 20258 expected_types = number_expected;
9ef920e9
NC
20259 ++ name;
20260 break;
20261 case GNU_BUILD_ATTRIBUTE_TOOL:
20262 text = _("<tool>");
1d15e434 20263 expected_types = string_expected;
9ef920e9
NC
20264 ++ name;
20265 break;
20266 case GNU_BUILD_ATTRIBUTE_ABI:
20267 text = _("<ABI>");
20268 expected_types = "$*";
20269 ++ name;
20270 break;
20271 case GNU_BUILD_ATTRIBUTE_PIC:
20272 text = _("<PIC>");
1d15e434 20273 expected_types = number_expected;
9ef920e9
NC
20274 ++ name;
20275 break;
a8be5506
NC
20276 case GNU_BUILD_ATTRIBUTE_SHORT_ENUM:
20277 text = _("<short enum>");
1d15e434 20278 expected_types = bool_expected;
a8be5506
NC
20279 ++ name;
20280 break;
9ef920e9
NC
20281 default:
20282 if (ISPRINT (* name))
20283 {
20284 int len = strnlen (name, pnote->namesz - (name - pnote->namedata)) + 1;
20285
20286 if (len > left && ! do_wide)
20287 len = left;
75d7d298 20288 printf ("%.*s:", len, name);
9ef920e9 20289 left -= len;
0dd6ae21 20290 name += len;
9ef920e9
NC
20291 }
20292 else
20293 {
3e6b6445 20294 static char tmpbuf [128];
88305e1b 20295
3e6b6445
NC
20296 error (_("unrecognised byte in name field: %d\n"), * name);
20297 sprintf (tmpbuf, _("<unknown:_%d>"), * name);
20298 text = tmpbuf;
20299 name ++;
9ef920e9
NC
20300 }
20301 expected_types = "*$!+";
20302 break;
20303 }
20304
20305 if (text)
88305e1b 20306 left -= printf ("%s", text);
9ef920e9
NC
20307
20308 if (strchr (expected_types, name_type) == NULL)
75d7d298 20309 warn (_("attribute does not have an expected type (%c)\n"), name_type);
9ef920e9
NC
20310
20311 if ((unsigned long)(name - pnote->namedata) > pnote->namesz)
20312 {
20313 error (_("corrupt name field: namesz: %lu but parsing gets to %ld\n"),
20314 (unsigned long) pnote->namesz,
20315 (long) (name - pnote->namedata));
015dc7e1 20316 return false;
9ef920e9
NC
20317 }
20318
20319 if (left < 1 && ! do_wide)
015dc7e1 20320 return true;
9ef920e9
NC
20321
20322 switch (name_type)
20323 {
20324 case GNU_BUILD_ATTRIBUTE_TYPE_NUMERIC:
20325 {
b06b2c92 20326 unsigned int bytes;
ddef72cd
NC
20327 unsigned long long val = 0;
20328 unsigned int shift = 0;
20329 char * decoded = NULL;
20330
b06b2c92
NC
20331 bytes = pnote->namesz - (name - pnote->namedata);
20332 if (bytes > 0)
20333 /* The -1 is because the name field is always 0 terminated, and we
20334 want to be able to ensure that the shift in the while loop below
20335 will not overflow. */
20336 -- bytes;
20337
ddef72cd
NC
20338 if (bytes > sizeof (val))
20339 {
3e6b6445
NC
20340 error (_("corrupt numeric name field: too many bytes in the value: %x\n"),
20341 bytes);
20342 bytes = sizeof (val);
ddef72cd 20343 }
3e6b6445
NC
20344 /* We do not bother to warn if bytes == 0 as this can
20345 happen with some early versions of the gcc plugin. */
9ef920e9
NC
20346
20347 while (bytes --)
20348 {
54b8331d 20349 unsigned long long byte = *name++ & 0xff;
79a964dc
NC
20350
20351 val |= byte << shift;
9ef920e9
NC
20352 shift += 8;
20353 }
20354
75d7d298 20355 switch (name_attribute)
9ef920e9 20356 {
75d7d298 20357 case GNU_BUILD_ATTRIBUTE_PIC:
9ef920e9
NC
20358 switch (val)
20359 {
75d7d298
NC
20360 case 0: decoded = "static"; break;
20361 case 1: decoded = "pic"; break;
20362 case 2: decoded = "PIC"; break;
20363 case 3: decoded = "pie"; break;
20364 case 4: decoded = "PIE"; break;
20365 default: break;
9ef920e9 20366 }
75d7d298
NC
20367 break;
20368 case GNU_BUILD_ATTRIBUTE_STACK_PROT:
20369 switch (val)
9ef920e9 20370 {
75d7d298
NC
20371 /* Based upon the SPCT_FLAG_xxx enum values in gcc/cfgexpand.c. */
20372 case 0: decoded = "off"; break;
20373 case 1: decoded = "on"; break;
20374 case 2: decoded = "all"; break;
20375 case 3: decoded = "strong"; break;
20376 case 4: decoded = "explicit"; break;
20377 default: break;
9ef920e9 20378 }
75d7d298
NC
20379 break;
20380 default:
20381 break;
9ef920e9
NC
20382 }
20383
75d7d298 20384 if (decoded != NULL)
3e6b6445
NC
20385 {
20386 print_symbol (-left, decoded);
20387 left = 0;
20388 }
20389 else if (val == 0)
20390 {
20391 printf ("0x0");
20392 left -= 3;
20393 }
9ef920e9 20394 else
75d7d298
NC
20395 {
20396 if (do_wide)
ddef72cd 20397 left -= printf ("0x%llx", val);
75d7d298 20398 else
ddef72cd 20399 left -= printf ("0x%-.*llx", left, val);
75d7d298 20400 }
9ef920e9
NC
20401 }
20402 break;
20403 case GNU_BUILD_ATTRIBUTE_TYPE_STRING:
20404 left -= print_symbol (- left, name);
20405 break;
20406 case GNU_BUILD_ATTRIBUTE_TYPE_BOOL_TRUE:
20407 left -= print_symbol (- left, "true");
20408 break;
20409 case GNU_BUILD_ATTRIBUTE_TYPE_BOOL_FALSE:
20410 left -= print_symbol (- left, "false");
20411 break;
20412 }
20413
20414 if (do_wide && left > 0)
20415 printf ("%-*s", left, " ");
9abca702 20416
015dc7e1 20417 return true;
9ef920e9
NC
20418}
20419
6d118b09
NC
20420/* Note that by the ELF standard, the name field is already null byte
20421 terminated, and namesz includes the terminating null byte.
20422 I.E. the value of namesz for the name "FSF" is 4.
20423
e3c8793a 20424 If the value of namesz is zero, there is no name present. */
9ef920e9 20425
015dc7e1 20426static bool
9ef920e9 20427process_note (Elf_Internal_Note * pnote,
dda8d76d 20428 Filedata * filedata)
779fe533 20429{
2cf0635d
NC
20430 const char * name = pnote->namesz ? pnote->namedata : "(NONE)";
20431 const char * nt;
9437c45b
JT
20432
20433 if (pnote->namesz == 0)
1ec5cd37
NC
20434 /* If there is no note name, then use the default set of
20435 note type strings. */
dda8d76d 20436 nt = get_note_type (filedata, pnote->type);
1ec5cd37 20437
24d127aa 20438 else if (startswith (pnote->namedata, "GNU"))
1118d252
RM
20439 /* GNU-specific object file notes. */
20440 nt = get_gnu_elf_note_type (pnote->type);
f4ddf30f 20441
24d127aa 20442 else if (startswith (pnote->namedata, "FreeBSD"))
f4ddf30f 20443 /* FreeBSD-specific core file notes. */
dda8d76d 20444 nt = get_freebsd_elfcore_note_type (filedata, pnote->type);
1118d252 20445
24d127aa 20446 else if (startswith (pnote->namedata, "NetBSD-CORE"))
1ec5cd37 20447 /* NetBSD-specific core file notes. */
dda8d76d 20448 nt = get_netbsd_elfcore_note_type (filedata, pnote->type);
1ec5cd37 20449
24d127aa 20450 else if (startswith (pnote->namedata, "NetBSD"))
c6056a74
SF
20451 /* NetBSD-specific core file notes. */
20452 return process_netbsd_elf_note (pnote);
20453
24d127aa 20454 else if (startswith (pnote->namedata, "PaX"))
9abca702
CZ
20455 /* NetBSD-specific core file notes. */
20456 return process_netbsd_elf_note (pnote);
20457
e9b095a5 20458 else if (startswith (pnote->namedata, "SPU/"))
b15fa79e
AM
20459 {
20460 /* SPU-specific core file notes. */
20461 nt = pnote->namedata + 4;
20462 name = "SPU";
20463 }
20464
24d127aa 20465 else if (startswith (pnote->namedata, "IPF/VMS"))
00e98fc7
TG
20466 /* VMS/ia64-specific file notes. */
20467 nt = get_ia64_vms_note_type (pnote->type);
20468
24d127aa 20469 else if (startswith (pnote->namedata, "stapsdt"))
70616151
TT
20470 nt = get_stapsdt_note_type (pnote->type);
20471
9437c45b 20472 else
1ec5cd37
NC
20473 /* Don't recognize this note name; just use the default set of
20474 note type strings. */
dda8d76d 20475 nt = get_note_type (filedata, pnote->type);
9437c45b 20476
1449284b 20477 printf (" ");
9ef920e9 20478
24d127aa 20479 if (((startswith (pnote->namedata, "GA")
483767a3
AM
20480 && strchr ("*$!+", pnote->namedata[2]) != NULL)
20481 || strchr ("*$!+", pnote->namedata[0]) != NULL)
20482 && (pnote->type == NT_GNU_BUILD_ATTRIBUTE_OPEN
20483 || pnote->type == NT_GNU_BUILD_ATTRIBUTE_FUNC))
9ef920e9
NC
20484 print_gnu_build_attribute_name (pnote);
20485 else
20486 print_symbol (-20, name);
20487
20488 if (do_wide)
20489 printf (" 0x%08lx\t%s\t", pnote->descsz, nt);
20490 else
20491 printf (" 0x%08lx\t%s\n", pnote->descsz, nt);
00e98fc7 20492
24d127aa 20493 if (startswith (pnote->namedata, "IPF/VMS"))
00e98fc7 20494 return print_ia64_vms_note (pnote);
24d127aa 20495 else if (startswith (pnote->namedata, "GNU"))
dda8d76d 20496 return print_gnu_note (filedata, pnote);
24d127aa 20497 else if (startswith (pnote->namedata, "stapsdt"))
c6a9fc58 20498 return print_stapsdt_note (pnote);
24d127aa 20499 else if (startswith (pnote->namedata, "CORE"))
9ece1fa9 20500 return print_core_note (pnote);
24d127aa 20501 else if (((startswith (pnote->namedata, "GA")
483767a3
AM
20502 && strchr ("*$!+", pnote->namedata[2]) != NULL)
20503 || strchr ("*$!+", pnote->namedata[0]) != NULL)
20504 && (pnote->type == NT_GNU_BUILD_ATTRIBUTE_OPEN
20505 || pnote->type == NT_GNU_BUILD_ATTRIBUTE_FUNC))
dda8d76d 20506 return print_gnu_build_attribute_description (pnote, filedata);
779fe533 20507
9ef920e9 20508 if (pnote->descsz)
1449284b
NC
20509 {
20510 unsigned long i;
20511
20512 printf (_(" description data: "));
20513 for (i = 0; i < pnote->descsz; i++)
178d8719 20514 printf ("%02x ", pnote->descdata[i] & 0xff);
04ac15ab
AS
20515 if (!do_wide)
20516 printf ("\n");
1449284b
NC
20517 }
20518
9ef920e9
NC
20519 if (do_wide)
20520 printf ("\n");
20521
015dc7e1 20522 return true;
1449284b 20523}
6d118b09 20524
015dc7e1 20525static bool
dda8d76d
NC
20526process_notes_at (Filedata * filedata,
20527 Elf_Internal_Shdr * section,
20528 bfd_vma offset,
82ed9683
L
20529 bfd_vma length,
20530 bfd_vma align)
779fe533 20531{
015dc7e1
AM
20532 Elf_External_Note *pnotes;
20533 Elf_External_Note *external;
20534 char *end;
20535 bool res = true;
103f02d3 20536
779fe533 20537 if (length <= 0)
015dc7e1 20538 return false;
103f02d3 20539
1449284b
NC
20540 if (section)
20541 {
dda8d76d 20542 pnotes = (Elf_External_Note *) get_section_contents (section, filedata);
1449284b 20543 if (pnotes)
32ec8896 20544 {
dda8d76d 20545 if (! apply_relocations (filedata, section, (unsigned char *) pnotes, length, NULL, NULL))
f761cb13
AM
20546 {
20547 free (pnotes);
015dc7e1 20548 return false;
f761cb13 20549 }
32ec8896 20550 }
1449284b
NC
20551 }
20552 else
82ed9683 20553 pnotes = (Elf_External_Note *) get_data (NULL, filedata, offset, 1, length,
1449284b 20554 _("notes"));
4dff97b2 20555
dd24e3da 20556 if (pnotes == NULL)
015dc7e1 20557 return false;
779fe533 20558
103f02d3 20559 external = pnotes;
103f02d3 20560
ca0e11aa
NC
20561 if (filedata->is_separate)
20562 printf (_("In linked file '%s': "), filedata->file_name);
20563 else
20564 printf ("\n");
1449284b 20565 if (section)
ca0e11aa 20566 printf (_("Displaying notes found in: %s\n"), printable_section_name (filedata, section));
1449284b 20567 else
ca0e11aa 20568 printf (_("Displaying notes found at file offset 0x%08lx with length 0x%08lx:\n"),
1449284b
NC
20569 (unsigned long) offset, (unsigned long) length);
20570
82ed9683
L
20571 /* NB: Some note sections may have alignment value of 0 or 1. gABI
20572 specifies that notes should be aligned to 4 bytes in 32-bit
20573 objects and to 8 bytes in 64-bit objects. As a Linux extension,
20574 we also support 4 byte alignment in 64-bit objects. If section
20575 alignment is less than 4, we treate alignment as 4 bytes. */
20576 if (align < 4)
20577 align = 4;
20578 else if (align != 4 && align != 8)
20579 {
20580 warn (_("Corrupt note: alignment %ld, expecting 4 or 8\n"),
20581 (long) align);
a788aedd 20582 free (pnotes);
015dc7e1 20583 return false;
82ed9683
L
20584 }
20585
dbe15e4e 20586 printf (_(" %-20s %-10s\tDescription\n"), _("Owner"), _("Data size"));
103f02d3 20587
c8071705
NC
20588 end = (char *) pnotes + length;
20589 while ((char *) external < end)
779fe533 20590 {
b34976b6 20591 Elf_Internal_Note inote;
15b42fb0 20592 size_t min_notesz;
4dff97b2 20593 char * next;
2cf0635d 20594 char * temp = NULL;
c8071705 20595 size_t data_remaining = end - (char *) external;
6d118b09 20596
dda8d76d 20597 if (!is_ia64_vms (filedata))
15b42fb0 20598 {
9dd3a467
NC
20599 /* PR binutils/15191
20600 Make sure that there is enough data to read. */
15b42fb0
AM
20601 min_notesz = offsetof (Elf_External_Note, name);
20602 if (data_remaining < min_notesz)
9dd3a467 20603 {
d3a49aa8
AM
20604 warn (ngettext ("Corrupt note: only %ld byte remains, "
20605 "not enough for a full note\n",
20606 "Corrupt note: only %ld bytes remain, "
20607 "not enough for a full note\n",
20608 data_remaining),
20609 (long) data_remaining);
9dd3a467
NC
20610 break;
20611 }
5396a86e
AM
20612 data_remaining -= min_notesz;
20613
15b42fb0
AM
20614 inote.type = BYTE_GET (external->type);
20615 inote.namesz = BYTE_GET (external->namesz);
20616 inote.namedata = external->name;
20617 inote.descsz = BYTE_GET (external->descsz);
276da9b3 20618 inote.descdata = ((char *) external
4dff97b2 20619 + ELF_NOTE_DESC_OFFSET (inote.namesz, align));
15b42fb0 20620 inote.descpos = offset + (inote.descdata - (char *) pnotes);
276da9b3 20621 next = ((char *) external
4dff97b2 20622 + ELF_NOTE_NEXT_OFFSET (inote.namesz, inote.descsz, align));
15b42fb0 20623 }
00e98fc7 20624 else
15b42fb0
AM
20625 {
20626 Elf64_External_VMS_Note *vms_external;
00e98fc7 20627
9dd3a467
NC
20628 /* PR binutils/15191
20629 Make sure that there is enough data to read. */
15b42fb0
AM
20630 min_notesz = offsetof (Elf64_External_VMS_Note, name);
20631 if (data_remaining < min_notesz)
9dd3a467 20632 {
d3a49aa8
AM
20633 warn (ngettext ("Corrupt note: only %ld byte remains, "
20634 "not enough for a full note\n",
20635 "Corrupt note: only %ld bytes remain, "
20636 "not enough for a full note\n",
20637 data_remaining),
20638 (long) data_remaining);
9dd3a467
NC
20639 break;
20640 }
5396a86e 20641 data_remaining -= min_notesz;
3e55a963 20642
15b42fb0
AM
20643 vms_external = (Elf64_External_VMS_Note *) external;
20644 inote.type = BYTE_GET (vms_external->type);
20645 inote.namesz = BYTE_GET (vms_external->namesz);
20646 inote.namedata = vms_external->name;
20647 inote.descsz = BYTE_GET (vms_external->descsz);
20648 inote.descdata = inote.namedata + align_power (inote.namesz, 3);
20649 inote.descpos = offset + (inote.descdata - (char *) pnotes);
20650 next = inote.descdata + align_power (inote.descsz, 3);
20651 }
20652
5396a86e
AM
20653 /* PR 17531: file: 3443835e. */
20654 /* PR 17531: file: id:000000,sig:11,src:006986,op:havoc,rep:4. */
20655 if ((size_t) (inote.descdata - inote.namedata) < inote.namesz
20656 || (size_t) (inote.descdata - inote.namedata) > data_remaining
20657 || (size_t) (next - inote.descdata) < inote.descsz
20658 || ((size_t) (next - inote.descdata)
20659 > data_remaining - (size_t) (inote.descdata - inote.namedata)))
3e55a963 20660 {
15b42fb0 20661 warn (_("note with invalid namesz and/or descsz found at offset 0x%lx\n"),
0af1713e 20662 (unsigned long) ((char *) external - (char *) pnotes));
4dff97b2
NC
20663 warn (_(" type: 0x%lx, namesize: 0x%08lx, descsize: 0x%08lx, alignment: %u\n"),
20664 inote.type, inote.namesz, inote.descsz, (int) align);
3e55a963
NC
20665 break;
20666 }
20667
15b42fb0 20668 external = (Elf_External_Note *) next;
dd24e3da 20669
6d118b09
NC
20670 /* Verify that name is null terminated. It appears that at least
20671 one version of Linux (RedHat 6.0) generates corefiles that don't
20672 comply with the ELF spec by failing to include the null byte in
20673 namesz. */
18344509 20674 if (inote.namesz > 0 && inote.namedata[inote.namesz - 1] != '\0')
6d118b09 20675 {
5396a86e 20676 if ((size_t) (inote.descdata - inote.namedata) == inote.namesz)
6d118b09 20677 {
5396a86e
AM
20678 temp = (char *) malloc (inote.namesz + 1);
20679 if (temp == NULL)
20680 {
20681 error (_("Out of memory allocating space for inote name\n"));
015dc7e1 20682 res = false;
5396a86e
AM
20683 break;
20684 }
76da6bbe 20685
5396a86e
AM
20686 memcpy (temp, inote.namedata, inote.namesz);
20687 inote.namedata = temp;
20688 }
20689 inote.namedata[inote.namesz] = 0;
6d118b09
NC
20690 }
20691
dda8d76d 20692 if (! process_note (& inote, filedata))
015dc7e1 20693 res = false;
103f02d3 20694
9db70fc3
AM
20695 free (temp);
20696 temp = NULL;
779fe533
NC
20697 }
20698
20699 free (pnotes);
103f02d3 20700
779fe533
NC
20701 return res;
20702}
20703
015dc7e1 20704static bool
dda8d76d 20705process_corefile_note_segments (Filedata * filedata)
779fe533 20706{
015dc7e1 20707 Elf_Internal_Phdr *segment;
b34976b6 20708 unsigned int i;
015dc7e1 20709 bool res = true;
103f02d3 20710
dda8d76d 20711 if (! get_program_headers (filedata))
015dc7e1 20712 return true;
103f02d3 20713
dda8d76d
NC
20714 for (i = 0, segment = filedata->program_headers;
20715 i < filedata->file_header.e_phnum;
b34976b6 20716 i++, segment++)
779fe533
NC
20717 {
20718 if (segment->p_type == PT_NOTE)
dda8d76d 20719 if (! process_notes_at (filedata, NULL,
32ec8896 20720 (bfd_vma) segment->p_offset,
82ed9683
L
20721 (bfd_vma) segment->p_filesz,
20722 (bfd_vma) segment->p_align))
015dc7e1 20723 res = false;
779fe533 20724 }
103f02d3 20725
779fe533
NC
20726 return res;
20727}
20728
015dc7e1 20729static bool
dda8d76d 20730process_v850_notes (Filedata * filedata, bfd_vma offset, bfd_vma length)
685080f2
NC
20731{
20732 Elf_External_Note * pnotes;
20733 Elf_External_Note * external;
c8071705 20734 char * end;
015dc7e1 20735 bool res = true;
685080f2
NC
20736
20737 if (length <= 0)
015dc7e1 20738 return false;
685080f2 20739
dda8d76d 20740 pnotes = (Elf_External_Note *) get_data (NULL, filedata, offset, 1, length,
685080f2
NC
20741 _("v850 notes"));
20742 if (pnotes == NULL)
015dc7e1 20743 return false;
685080f2
NC
20744
20745 external = pnotes;
c8071705 20746 end = (char*) pnotes + length;
685080f2
NC
20747
20748 printf (_("\nDisplaying contents of Renesas V850 notes section at offset 0x%lx with length 0x%lx:\n"),
20749 (unsigned long) offset, (unsigned long) length);
20750
c8071705 20751 while ((char *) external + sizeof (Elf_External_Note) < end)
685080f2
NC
20752 {
20753 Elf_External_Note * next;
20754 Elf_Internal_Note inote;
20755
20756 inote.type = BYTE_GET (external->type);
20757 inote.namesz = BYTE_GET (external->namesz);
20758 inote.namedata = external->name;
20759 inote.descsz = BYTE_GET (external->descsz);
20760 inote.descdata = inote.namedata + align_power (inote.namesz, 2);
20761 inote.descpos = offset + (inote.descdata - (char *) pnotes);
20762
c8071705
NC
20763 if (inote.descdata < (char *) pnotes || inote.descdata >= end)
20764 {
20765 warn (_("Corrupt note: name size is too big: %lx\n"), inote.namesz);
20766 inote.descdata = inote.namedata;
20767 inote.namesz = 0;
20768 }
20769
685080f2
NC
20770 next = (Elf_External_Note *) (inote.descdata + align_power (inote.descsz, 2));
20771
c8071705 20772 if ( ((char *) next > end)
685080f2
NC
20773 || ((char *) next < (char *) pnotes))
20774 {
20775 warn (_("corrupt descsz found in note at offset 0x%lx\n"),
20776 (unsigned long) ((char *) external - (char *) pnotes));
20777 warn (_(" type: 0x%lx, namesize: 0x%lx, descsize: 0x%lx\n"),
20778 inote.type, inote.namesz, inote.descsz);
20779 break;
20780 }
20781
20782 external = next;
20783
20784 /* Prevent out-of-bounds indexing. */
c8071705 20785 if ( inote.namedata + inote.namesz > end
685080f2
NC
20786 || inote.namedata + inote.namesz < inote.namedata)
20787 {
20788 warn (_("corrupt namesz found in note at offset 0x%lx\n"),
20789 (unsigned long) ((char *) external - (char *) pnotes));
20790 warn (_(" type: 0x%lx, namesize: 0x%lx, descsize: 0x%lx\n"),
20791 inote.type, inote.namesz, inote.descsz);
20792 break;
20793 }
20794
20795 printf (" %s: ", get_v850_elf_note_type (inote.type));
20796
20797 if (! print_v850_note (& inote))
20798 {
015dc7e1 20799 res = false;
685080f2
NC
20800 printf ("<corrupt sizes: namesz: %lx, descsz: %lx>\n",
20801 inote.namesz, inote.descsz);
20802 }
20803 }
20804
20805 free (pnotes);
20806
20807 return res;
20808}
20809
015dc7e1 20810static bool
dda8d76d 20811process_note_sections (Filedata * filedata)
1ec5cd37 20812{
015dc7e1 20813 Elf_Internal_Shdr *section;
1ec5cd37 20814 unsigned long i;
32ec8896 20815 unsigned int n = 0;
015dc7e1 20816 bool res = true;
1ec5cd37 20817
dda8d76d
NC
20818 for (i = 0, section = filedata->section_headers;
20819 i < filedata->file_header.e_shnum && section != NULL;
1ec5cd37 20820 i++, section++)
685080f2
NC
20821 {
20822 if (section->sh_type == SHT_NOTE)
20823 {
dda8d76d 20824 if (! process_notes_at (filedata, section,
32ec8896 20825 (bfd_vma) section->sh_offset,
82ed9683
L
20826 (bfd_vma) section->sh_size,
20827 (bfd_vma) section->sh_addralign))
015dc7e1 20828 res = false;
685080f2
NC
20829 n++;
20830 }
20831
dda8d76d
NC
20832 if (( filedata->file_header.e_machine == EM_V800
20833 || filedata->file_header.e_machine == EM_V850
20834 || filedata->file_header.e_machine == EM_CYGNUS_V850)
685080f2
NC
20835 && section->sh_type == SHT_RENESAS_INFO)
20836 {
dda8d76d 20837 if (! process_v850_notes (filedata,
32ec8896
NC
20838 (bfd_vma) section->sh_offset,
20839 (bfd_vma) section->sh_size))
015dc7e1 20840 res = false;
685080f2
NC
20841 n++;
20842 }
20843 }
df565f32
NC
20844
20845 if (n == 0)
20846 /* Try processing NOTE segments instead. */
dda8d76d 20847 return process_corefile_note_segments (filedata);
1ec5cd37
NC
20848
20849 return res;
20850}
20851
015dc7e1 20852static bool
dda8d76d 20853process_notes (Filedata * filedata)
779fe533
NC
20854{
20855 /* If we have not been asked to display the notes then do nothing. */
20856 if (! do_notes)
015dc7e1 20857 return true;
103f02d3 20858
dda8d76d
NC
20859 if (filedata->file_header.e_type != ET_CORE)
20860 return process_note_sections (filedata);
103f02d3 20861
779fe533 20862 /* No program headers means no NOTE segment. */
dda8d76d
NC
20863 if (filedata->file_header.e_phnum > 0)
20864 return process_corefile_note_segments (filedata);
779fe533 20865
ca0e11aa
NC
20866 if (filedata->is_separate)
20867 printf (_("No notes found in linked file '%s'.\n"),
20868 filedata->file_name);
20869 else
20870 printf (_("No notes found file.\n"));
20871
015dc7e1 20872 return true;
779fe533
NC
20873}
20874
60abdbed
NC
20875static unsigned char *
20876display_public_gnu_attributes (unsigned char * start,
20877 const unsigned char * const end)
20878{
20879 printf (_(" Unknown GNU attribute: %s\n"), start);
20880
20881 start += strnlen ((char *) start, end - start);
20882 display_raw_attribute (start, end);
20883
20884 return (unsigned char *) end;
20885}
20886
20887static unsigned char *
20888display_generic_attribute (unsigned char * start,
20889 unsigned int tag,
20890 const unsigned char * const end)
20891{
20892 if (tag == 0)
20893 return (unsigned char *) end;
20894
20895 return display_tag_value (tag, start, end);
20896}
20897
015dc7e1 20898static bool
dda8d76d 20899process_arch_specific (Filedata * filedata)
252b5132 20900{
a952a375 20901 if (! do_arch)
015dc7e1 20902 return true;
a952a375 20903
dda8d76d 20904 switch (filedata->file_header.e_machine)
252b5132 20905 {
53a346d8
CZ
20906 case EM_ARC:
20907 case EM_ARC_COMPACT:
20908 case EM_ARC_COMPACT2:
dda8d76d 20909 return process_attributes (filedata, "ARC", SHT_ARC_ATTRIBUTES,
53a346d8
CZ
20910 display_arc_attribute,
20911 display_generic_attribute);
11c1ff18 20912 case EM_ARM:
dda8d76d 20913 return process_attributes (filedata, "aeabi", SHT_ARM_ATTRIBUTES,
60abdbed
NC
20914 display_arm_attribute,
20915 display_generic_attribute);
20916
252b5132 20917 case EM_MIPS:
4fe85591 20918 case EM_MIPS_RS3_LE:
dda8d76d 20919 return process_mips_specific (filedata);
60abdbed
NC
20920
20921 case EM_MSP430:
dda8d76d 20922 return process_attributes (filedata, "mspabi", SHT_MSP430_ATTRIBUTES,
b0191216 20923 display_msp430_attribute,
c0ea7c52 20924 display_msp430_gnu_attribute);
60abdbed 20925
2dc8dd17
JW
20926 case EM_RISCV:
20927 return process_attributes (filedata, "riscv", SHT_RISCV_ATTRIBUTES,
20928 display_riscv_attribute,
20929 display_generic_attribute);
20930
35c08157 20931 case EM_NDS32:
dda8d76d 20932 return process_nds32_specific (filedata);
60abdbed 20933
85f7484a
PB
20934 case EM_68K:
20935 return process_attributes (filedata, NULL, SHT_GNU_ATTRIBUTES, NULL,
20936 display_m68k_gnu_attribute);
20937
34c8bcba 20938 case EM_PPC:
b82317dd 20939 case EM_PPC64:
dda8d76d 20940 return process_attributes (filedata, NULL, SHT_GNU_ATTRIBUTES, NULL,
60abdbed
NC
20941 display_power_gnu_attribute);
20942
643f7afb
AK
20943 case EM_S390:
20944 case EM_S390_OLD:
dda8d76d 20945 return process_attributes (filedata, NULL, SHT_GNU_ATTRIBUTES, NULL,
60abdbed
NC
20946 display_s390_gnu_attribute);
20947
9e8c70f9
DM
20948 case EM_SPARC:
20949 case EM_SPARC32PLUS:
20950 case EM_SPARCV9:
dda8d76d 20951 return process_attributes (filedata, NULL, SHT_GNU_ATTRIBUTES, NULL,
60abdbed
NC
20952 display_sparc_gnu_attribute);
20953
59e6276b 20954 case EM_TI_C6000:
dda8d76d 20955 return process_attributes (filedata, "c6xabi", SHT_C6000_ATTRIBUTES,
60abdbed
NC
20956 display_tic6x_attribute,
20957 display_generic_attribute);
20958
0861f561
CQ
20959 case EM_CSKY:
20960 return process_attributes (filedata, "csky", SHT_CSKY_ATTRIBUTES,
20961 display_csky_attribute, NULL);
20962
252b5132 20963 default:
dda8d76d 20964 return process_attributes (filedata, "gnu", SHT_GNU_ATTRIBUTES,
60abdbed
NC
20965 display_public_gnu_attributes,
20966 display_generic_attribute);
252b5132 20967 }
252b5132
RH
20968}
20969
015dc7e1 20970static bool
dda8d76d 20971get_file_header (Filedata * filedata)
252b5132 20972{
9ea033b2 20973 /* Read in the identity array. */
dda8d76d 20974 if (fread (filedata->file_header.e_ident, EI_NIDENT, 1, filedata->handle) != 1)
015dc7e1 20975 return false;
252b5132 20976
9ea033b2 20977 /* Determine how to read the rest of the header. */
dda8d76d 20978 switch (filedata->file_header.e_ident[EI_DATA])
9ea033b2 20979 {
1a0670f3
AM
20980 default:
20981 case ELFDATANONE:
adab8cdc
AO
20982 case ELFDATA2LSB:
20983 byte_get = byte_get_little_endian;
20984 byte_put = byte_put_little_endian;
20985 break;
20986 case ELFDATA2MSB:
20987 byte_get = byte_get_big_endian;
20988 byte_put = byte_put_big_endian;
20989 break;
9ea033b2
NC
20990 }
20991
20992 /* For now we only support 32 bit and 64 bit ELF files. */
dda8d76d 20993 is_32bit_elf = (filedata->file_header.e_ident[EI_CLASS] != ELFCLASS64);
9ea033b2
NC
20994
20995 /* Read in the rest of the header. */
20996 if (is_32bit_elf)
20997 {
20998 Elf32_External_Ehdr ehdr32;
252b5132 20999
dda8d76d 21000 if (fread (ehdr32.e_type, sizeof (ehdr32) - EI_NIDENT, 1, filedata->handle) != 1)
015dc7e1 21001 return false;
103f02d3 21002
dda8d76d
NC
21003 filedata->file_header.e_type = BYTE_GET (ehdr32.e_type);
21004 filedata->file_header.e_machine = BYTE_GET (ehdr32.e_machine);
21005 filedata->file_header.e_version = BYTE_GET (ehdr32.e_version);
21006 filedata->file_header.e_entry = BYTE_GET (ehdr32.e_entry);
21007 filedata->file_header.e_phoff = BYTE_GET (ehdr32.e_phoff);
21008 filedata->file_header.e_shoff = BYTE_GET (ehdr32.e_shoff);
21009 filedata->file_header.e_flags = BYTE_GET (ehdr32.e_flags);
21010 filedata->file_header.e_ehsize = BYTE_GET (ehdr32.e_ehsize);
21011 filedata->file_header.e_phentsize = BYTE_GET (ehdr32.e_phentsize);
21012 filedata->file_header.e_phnum = BYTE_GET (ehdr32.e_phnum);
21013 filedata->file_header.e_shentsize = BYTE_GET (ehdr32.e_shentsize);
21014 filedata->file_header.e_shnum = BYTE_GET (ehdr32.e_shnum);
21015 filedata->file_header.e_shstrndx = BYTE_GET (ehdr32.e_shstrndx);
9ea033b2 21016 }
252b5132 21017 else
9ea033b2
NC
21018 {
21019 Elf64_External_Ehdr ehdr64;
a952a375
NC
21020
21021 /* If we have been compiled with sizeof (bfd_vma) == 4, then
21022 we will not be able to cope with the 64bit data found in
21023 64 ELF files. Detect this now and abort before we start
50c2245b 21024 overwriting things. */
a952a375
NC
21025 if (sizeof (bfd_vma) < 8)
21026 {
e3c8793a
NC
21027 error (_("This instance of readelf has been built without support for a\n\
2102864 bit data type and so it cannot read 64 bit ELF files.\n"));
015dc7e1 21029 return false;
a952a375 21030 }
103f02d3 21031
dda8d76d 21032 if (fread (ehdr64.e_type, sizeof (ehdr64) - EI_NIDENT, 1, filedata->handle) != 1)
015dc7e1 21033 return false;
103f02d3 21034
dda8d76d
NC
21035 filedata->file_header.e_type = BYTE_GET (ehdr64.e_type);
21036 filedata->file_header.e_machine = BYTE_GET (ehdr64.e_machine);
21037 filedata->file_header.e_version = BYTE_GET (ehdr64.e_version);
21038 filedata->file_header.e_entry = BYTE_GET (ehdr64.e_entry);
21039 filedata->file_header.e_phoff = BYTE_GET (ehdr64.e_phoff);
21040 filedata->file_header.e_shoff = BYTE_GET (ehdr64.e_shoff);
21041 filedata->file_header.e_flags = BYTE_GET (ehdr64.e_flags);
21042 filedata->file_header.e_ehsize = BYTE_GET (ehdr64.e_ehsize);
21043 filedata->file_header.e_phentsize = BYTE_GET (ehdr64.e_phentsize);
21044 filedata->file_header.e_phnum = BYTE_GET (ehdr64.e_phnum);
21045 filedata->file_header.e_shentsize = BYTE_GET (ehdr64.e_shentsize);
21046 filedata->file_header.e_shnum = BYTE_GET (ehdr64.e_shnum);
21047 filedata->file_header.e_shstrndx = BYTE_GET (ehdr64.e_shstrndx);
9ea033b2 21048 }
252b5132 21049
dda8d76d 21050 if (filedata->file_header.e_shoff)
7ece0d85
JJ
21051 {
21052 /* There may be some extensions in the first section header. Don't
21053 bomb if we can't read it. */
21054 if (is_32bit_elf)
015dc7e1 21055 get_32bit_section_headers (filedata, true);
7ece0d85 21056 else
015dc7e1 21057 get_64bit_section_headers (filedata, true);
7ece0d85 21058 }
560f3c1c 21059
015dc7e1 21060 return true;
252b5132
RH
21061}
21062
13acb58d
AM
21063static void
21064free_filedata (Filedata *filedata)
21065{
21066 free (filedata->program_interpreter);
21067 filedata->program_interpreter = NULL;
21068
21069 free (filedata->program_headers);
21070 filedata->program_headers = NULL;
21071
21072 free (filedata->section_headers);
21073 filedata->section_headers = NULL;
21074
21075 free (filedata->string_table);
21076 filedata->string_table = NULL;
21077 filedata->string_table_length = 0;
21078
21079 free (filedata->dump.dump_sects);
21080 filedata->dump.dump_sects = NULL;
21081 filedata->dump.num_dump_sects = 0;
21082
21083 free (filedata->dynamic_strings);
21084 filedata->dynamic_strings = NULL;
21085 filedata->dynamic_strings_length = 0;
21086
21087 free (filedata->dynamic_symbols);
21088 filedata->dynamic_symbols = NULL;
21089 filedata->num_dynamic_syms = 0;
21090
21091 free (filedata->dynamic_syminfo);
21092 filedata->dynamic_syminfo = NULL;
21093
21094 free (filedata->dynamic_section);
21095 filedata->dynamic_section = NULL;
21096
21097 while (filedata->symtab_shndx_list != NULL)
21098 {
21099 elf_section_list *next = filedata->symtab_shndx_list->next;
21100 free (filedata->symtab_shndx_list);
21101 filedata->symtab_shndx_list = next;
21102 }
21103
21104 free (filedata->section_headers_groups);
21105 filedata->section_headers_groups = NULL;
21106
21107 if (filedata->section_groups)
21108 {
21109 size_t i;
21110 struct group_list * g;
21111 struct group_list * next;
21112
21113 for (i = 0; i < filedata->group_count; i++)
21114 {
21115 for (g = filedata->section_groups [i].root; g != NULL; g = next)
21116 {
21117 next = g->next;
21118 free (g);
21119 }
21120 }
21121
21122 free (filedata->section_groups);
21123 filedata->section_groups = NULL;
21124 }
21125}
21126
dda8d76d
NC
21127static void
21128close_file (Filedata * filedata)
21129{
21130 if (filedata)
21131 {
21132 if (filedata->handle)
21133 fclose (filedata->handle);
21134 free (filedata);
21135 }
21136}
21137
21138void
21139close_debug_file (void * data)
21140{
13acb58d 21141 free_filedata ((Filedata *) data);
dda8d76d
NC
21142 close_file ((Filedata *) data);
21143}
21144
21145static Filedata *
015dc7e1 21146open_file (const char * pathname, bool is_separate)
dda8d76d
NC
21147{
21148 struct stat statbuf;
21149 Filedata * filedata = NULL;
21150
21151 if (stat (pathname, & statbuf) < 0
21152 || ! S_ISREG (statbuf.st_mode))
21153 goto fail;
21154
21155 filedata = calloc (1, sizeof * filedata);
21156 if (filedata == NULL)
21157 goto fail;
21158
21159 filedata->handle = fopen (pathname, "rb");
21160 if (filedata->handle == NULL)
21161 goto fail;
21162
21163 filedata->file_size = (bfd_size_type) statbuf.st_size;
21164 filedata->file_name = pathname;
ca0e11aa 21165 filedata->is_separate = is_separate;
dda8d76d
NC
21166
21167 if (! get_file_header (filedata))
21168 goto fail;
21169
21170 if (filedata->file_header.e_shoff)
21171 {
015dc7e1 21172 bool res;
dda8d76d
NC
21173
21174 /* Read the section headers again, this time for real. */
21175 if (is_32bit_elf)
015dc7e1 21176 res = get_32bit_section_headers (filedata, false);
dda8d76d 21177 else
015dc7e1 21178 res = get_64bit_section_headers (filedata, false);
dda8d76d
NC
21179
21180 if (!res)
21181 goto fail;
21182 }
21183
21184 return filedata;
21185
21186 fail:
21187 if (filedata)
21188 {
21189 if (filedata->handle)
21190 fclose (filedata->handle);
21191 free (filedata);
21192 }
21193 return NULL;
21194}
21195
21196void *
21197open_debug_file (const char * pathname)
21198{
015dc7e1 21199 return open_file (pathname, true);
dda8d76d
NC
21200}
21201
835f2fae
NC
21202static void
21203initialise_dump_sects (Filedata * filedata)
21204{
21205 /* Initialise the dump_sects array from the cmdline_dump_sects array.
21206 Note we do this even if cmdline_dump_sects is empty because we
21207 must make sure that the dump_sets array is zeroed out before each
21208 object file is processed. */
21209 if (filedata->dump.num_dump_sects > cmdline.num_dump_sects)
21210 memset (filedata->dump.dump_sects, 0,
21211 filedata->dump.num_dump_sects * sizeof (*filedata->dump.dump_sects));
21212
21213 if (cmdline.num_dump_sects > 0)
21214 {
21215 if (filedata->dump.num_dump_sects == 0)
21216 /* A sneaky way of allocating the dump_sects array. */
21217 request_dump_bynumber (&filedata->dump, cmdline.num_dump_sects, 0);
21218
21219 assert (filedata->dump.num_dump_sects >= cmdline.num_dump_sects);
21220 memcpy (filedata->dump.dump_sects, cmdline.dump_sects,
21221 cmdline.num_dump_sects * sizeof (*filedata->dump.dump_sects));
21222 }
21223}
21224
fb52b2f4
NC
21225/* Process one ELF object file according to the command line options.
21226 This file may actually be stored in an archive. The file is
32ec8896
NC
21227 positioned at the start of the ELF object. Returns TRUE if no
21228 problems were encountered, FALSE otherwise. */
fb52b2f4 21229
015dc7e1 21230static bool
dda8d76d 21231process_object (Filedata * filedata)
252b5132 21232{
015dc7e1 21233 bool have_separate_files;
252b5132 21234 unsigned int i;
015dc7e1 21235 bool res;
252b5132 21236
dda8d76d 21237 if (! get_file_header (filedata))
252b5132 21238 {
dda8d76d 21239 error (_("%s: Failed to read file header\n"), filedata->file_name);
015dc7e1 21240 return false;
252b5132
RH
21241 }
21242
21243 /* Initialise per file variables. */
978c4450
AM
21244 for (i = ARRAY_SIZE (filedata->version_info); i--;)
21245 filedata->version_info[i] = 0;
252b5132 21246
978c4450
AM
21247 for (i = ARRAY_SIZE (filedata->dynamic_info); i--;)
21248 filedata->dynamic_info[i] = 0;
21249 filedata->dynamic_info_DT_GNU_HASH = 0;
21250 filedata->dynamic_info_DT_MIPS_XHASH = 0;
252b5132
RH
21251
21252 /* Process the file. */
21253 if (show_name)
dda8d76d 21254 printf (_("\nFile: %s\n"), filedata->file_name);
252b5132 21255
835f2fae 21256 initialise_dump_sects (filedata);
d70c5fc7 21257
dda8d76d 21258 if (! process_file_header (filedata))
015dc7e1 21259 return false;
252b5132 21260
dda8d76d 21261 if (! process_section_headers (filedata))
2f62977e 21262 {
32ec8896 21263 /* Without loaded section headers we cannot process lots of things. */
015dc7e1 21264 do_unwind = do_version = do_dump = do_arch = false;
252b5132 21265
2f62977e 21266 if (! do_using_dynamic)
015dc7e1 21267 do_syms = do_dyn_syms = do_reloc = false;
2f62977e 21268 }
252b5132 21269
dda8d76d 21270 if (! process_section_groups (filedata))
32ec8896 21271 /* Without loaded section groups we cannot process unwind. */
015dc7e1 21272 do_unwind = false;
d1f5c6e3 21273
2482f306
AM
21274 res = process_program_headers (filedata);
21275 if (res)
21276 res = process_dynamic_section (filedata);
252b5132 21277
dda8d76d 21278 if (! process_relocs (filedata))
015dc7e1 21279 res = false;
252b5132 21280
dda8d76d 21281 if (! process_unwind (filedata))
015dc7e1 21282 res = false;
4d6ed7c8 21283
dda8d76d 21284 if (! process_symbol_table (filedata))
015dc7e1 21285 res = false;
252b5132 21286
0f03783c 21287 if (! process_lto_symbol_tables (filedata))
015dc7e1 21288 res = false;
b9e920ec 21289
dda8d76d 21290 if (! process_syminfo (filedata))
015dc7e1 21291 res = false;
252b5132 21292
dda8d76d 21293 if (! process_version_sections (filedata))
015dc7e1 21294 res = false;
252b5132 21295
82ed9683 21296 if (filedata->file_header.e_shstrndx != SHN_UNDEF)
24841daa 21297 have_separate_files = load_separate_debug_files (filedata, filedata->file_name);
82ed9683 21298 else
015dc7e1 21299 have_separate_files = false;
dda8d76d
NC
21300
21301 if (! process_section_contents (filedata))
015dc7e1 21302 res = false;
f5842774 21303
24841daa 21304 if (have_separate_files)
dda8d76d 21305 {
24841daa
NC
21306 separate_info * d;
21307
21308 for (d = first_separate_info; d != NULL; d = d->next)
21309 {
835f2fae
NC
21310 initialise_dump_sects (d->handle);
21311
ca0e11aa 21312 if (process_links && ! process_file_header (d->handle))
015dc7e1 21313 res = false;
ca0e11aa 21314 else if (! process_section_headers (d->handle))
015dc7e1 21315 res = false;
d6bfbc39 21316 else if (! process_section_contents (d->handle))
015dc7e1 21317 res = false;
ca0e11aa
NC
21318 else if (process_links)
21319 {
ca0e11aa 21320 if (! process_section_groups (d->handle))
015dc7e1 21321 res = false;
ca0e11aa 21322 if (! process_program_headers (d->handle))
015dc7e1 21323 res = false;
ca0e11aa 21324 if (! process_dynamic_section (d->handle))
015dc7e1 21325 res = false;
ca0e11aa 21326 if (! process_relocs (d->handle))
015dc7e1 21327 res = false;
ca0e11aa 21328 if (! process_unwind (d->handle))
015dc7e1 21329 res = false;
ca0e11aa 21330 if (! process_symbol_table (d->handle))
015dc7e1 21331 res = false;
ca0e11aa 21332 if (! process_lto_symbol_tables (d->handle))
015dc7e1 21333 res = false;
ca0e11aa 21334 if (! process_syminfo (d->handle))
015dc7e1 21335 res = false;
ca0e11aa 21336 if (! process_version_sections (d->handle))
015dc7e1 21337 res = false;
ca0e11aa 21338 if (! process_notes (d->handle))
015dc7e1 21339 res = false;
ca0e11aa 21340 }
24841daa
NC
21341 }
21342
21343 /* The file handles are closed by the call to free_debug_memory() below. */
dda8d76d
NC
21344 }
21345
21346 if (! process_notes (filedata))
015dc7e1 21347 res = false;
103f02d3 21348
dda8d76d 21349 if (! process_gnu_liblist (filedata))
015dc7e1 21350 res = false;
047b2264 21351
dda8d76d 21352 if (! process_arch_specific (filedata))
015dc7e1 21353 res = false;
252b5132 21354
13acb58d 21355 free_filedata (filedata);
e4b17d5c 21356
19e6b90e 21357 free_debug_memory ();
18bd398b 21358
32ec8896 21359 return res;
252b5132
RH
21360}
21361
2cf0635d 21362/* Process an ELF archive.
32ec8896
NC
21363 On entry the file is positioned just after the ARMAG string.
21364 Returns TRUE upon success, FALSE otherwise. */
2cf0635d 21365
015dc7e1
AM
21366static bool
21367process_archive (Filedata * filedata, bool is_thin_archive)
2cf0635d
NC
21368{
21369 struct archive_info arch;
21370 struct archive_info nested_arch;
21371 size_t got;
015dc7e1 21372 bool ret = true;
2cf0635d 21373
015dc7e1 21374 show_name = true;
2cf0635d
NC
21375
21376 /* The ARCH structure is used to hold information about this archive. */
21377 arch.file_name = NULL;
21378 arch.file = NULL;
21379 arch.index_array = NULL;
21380 arch.sym_table = NULL;
21381 arch.longnames = NULL;
21382
21383 /* The NESTED_ARCH structure is used as a single-item cache of information
21384 about a nested archive (when members of a thin archive reside within
21385 another regular archive file). */
21386 nested_arch.file_name = NULL;
21387 nested_arch.file = NULL;
21388 nested_arch.index_array = NULL;
21389 nested_arch.sym_table = NULL;
21390 nested_arch.longnames = NULL;
21391
dda8d76d 21392 if (setup_archive (&arch, filedata->file_name, filedata->handle,
780f96ae
AM
21393 filedata->file_size, is_thin_archive,
21394 do_archive_index) != 0)
2cf0635d 21395 {
015dc7e1 21396 ret = false;
2cf0635d 21397 goto out;
4145f1d5 21398 }
fb52b2f4 21399
4145f1d5
NC
21400 if (do_archive_index)
21401 {
2cf0635d 21402 if (arch.sym_table == NULL)
1cb7d8b1
AM
21403 error (_("%s: unable to dump the index as none was found\n"),
21404 filedata->file_name);
4145f1d5
NC
21405 else
21406 {
591f7597 21407 unsigned long i, l;
4145f1d5
NC
21408 unsigned long current_pos;
21409
1cb7d8b1
AM
21410 printf (_("Index of archive %s: (%lu entries, 0x%lx bytes "
21411 "in the symbol table)\n"),
21412 filedata->file_name, (unsigned long) arch.index_num,
21413 arch.sym_size);
dda8d76d
NC
21414
21415 current_pos = ftell (filedata->handle);
4145f1d5 21416
2cf0635d 21417 for (i = l = 0; i < arch.index_num; i++)
4145f1d5 21418 {
1cb7d8b1
AM
21419 if (i == 0
21420 || (i > 0 && arch.index_array[i] != arch.index_array[i - 1]))
21421 {
21422 char * member_name
21423 = get_archive_member_name_at (&arch, arch.index_array[i],
21424 &nested_arch);
2cf0635d 21425
1cb7d8b1
AM
21426 if (member_name != NULL)
21427 {
21428 char * qualified_name
21429 = make_qualified_name (&arch, &nested_arch,
21430 member_name);
2cf0635d 21431
1cb7d8b1
AM
21432 if (qualified_name != NULL)
21433 {
21434 printf (_("Contents of binary %s at offset "),
21435 qualified_name);
c2a7d3f5
NC
21436 (void) print_vma (arch.index_array[i], PREFIX_HEX);
21437 putchar ('\n');
1cb7d8b1
AM
21438 free (qualified_name);
21439 }
fd486f32 21440 free (member_name);
4145f1d5
NC
21441 }
21442 }
2cf0635d
NC
21443
21444 if (l >= arch.sym_size)
4145f1d5 21445 {
1cb7d8b1
AM
21446 error (_("%s: end of the symbol table reached "
21447 "before the end of the index\n"),
dda8d76d 21448 filedata->file_name);
015dc7e1 21449 ret = false;
cb8f3167 21450 break;
4145f1d5 21451 }
591f7597 21452 /* PR 17531: file: 0b6630b2. */
1cb7d8b1
AM
21453 printf ("\t%.*s\n",
21454 (int) (arch.sym_size - l), arch.sym_table + l);
591f7597 21455 l += strnlen (arch.sym_table + l, arch.sym_size - l) + 1;
4145f1d5
NC
21456 }
21457
67ce483b 21458 if (arch.uses_64bit_indices)
c2a7d3f5
NC
21459 l = (l + 7) & ~ 7;
21460 else
21461 l += l & 1;
21462
2cf0635d 21463 if (l < arch.sym_size)
32ec8896 21464 {
d3a49aa8
AM
21465 error (ngettext ("%s: %ld byte remains in the symbol table, "
21466 "but without corresponding entries in "
21467 "the index table\n",
21468 "%s: %ld bytes remain in the symbol table, "
21469 "but without corresponding entries in "
21470 "the index table\n",
21471 arch.sym_size - l),
dda8d76d 21472 filedata->file_name, arch.sym_size - l);
015dc7e1 21473 ret = false;
32ec8896 21474 }
4145f1d5 21475
dda8d76d 21476 if (fseek (filedata->handle, current_pos, SEEK_SET) != 0)
4145f1d5 21477 {
1cb7d8b1
AM
21478 error (_("%s: failed to seek back to start of object files "
21479 "in the archive\n"),
dda8d76d 21480 filedata->file_name);
015dc7e1 21481 ret = false;
2cf0635d 21482 goto out;
4145f1d5 21483 }
fb52b2f4 21484 }
4145f1d5
NC
21485
21486 if (!do_dynamic && !do_syms && !do_reloc && !do_unwind && !do_sections
21487 && !do_segments && !do_header && !do_dump && !do_version
21488 && !do_histogram && !do_debugging && !do_arch && !do_notes
2c610e4b 21489 && !do_section_groups && !do_dyn_syms)
2cf0635d 21490 {
015dc7e1 21491 ret = true; /* Archive index only. */
2cf0635d
NC
21492 goto out;
21493 }
fb52b2f4
NC
21494 }
21495
fb52b2f4
NC
21496 while (1)
21497 {
2cf0635d
NC
21498 char * name;
21499 size_t namelen;
21500 char * qualified_name;
21501
21502 /* Read the next archive header. */
dda8d76d 21503 if (fseek (filedata->handle, arch.next_arhdr_offset, SEEK_SET) != 0)
1cb7d8b1
AM
21504 {
21505 error (_("%s: failed to seek to next archive header\n"),
21506 arch.file_name);
015dc7e1 21507 ret = false;
1cb7d8b1
AM
21508 break;
21509 }
dda8d76d 21510 got = fread (&arch.arhdr, 1, sizeof arch.arhdr, filedata->handle);
2cf0635d 21511 if (got != sizeof arch.arhdr)
1cb7d8b1
AM
21512 {
21513 if (got == 0)
2cf0635d 21514 break;
28e817cc
NC
21515 /* PR 24049 - we cannot use filedata->file_name as this will
21516 have already been freed. */
21517 error (_("%s: failed to read archive header\n"), arch.file_name);
9abca702 21518
015dc7e1 21519 ret = false;
1cb7d8b1
AM
21520 break;
21521 }
2cf0635d 21522 if (memcmp (arch.arhdr.ar_fmag, ARFMAG, 2) != 0)
1cb7d8b1
AM
21523 {
21524 error (_("%s: did not find a valid archive header\n"),
21525 arch.file_name);
015dc7e1 21526 ret = false;
1cb7d8b1
AM
21527 break;
21528 }
2cf0635d
NC
21529
21530 arch.next_arhdr_offset += sizeof arch.arhdr;
21531
978c4450
AM
21532 filedata->archive_file_size = strtoul (arch.arhdr.ar_size, NULL, 10);
21533 if (filedata->archive_file_size & 01)
21534 ++filedata->archive_file_size;
2cf0635d
NC
21535
21536 name = get_archive_member_name (&arch, &nested_arch);
21537 if (name == NULL)
fb52b2f4 21538 {
28e817cc 21539 error (_("%s: bad archive file name\n"), arch.file_name);
015dc7e1 21540 ret = false;
d989285c 21541 break;
fb52b2f4 21542 }
2cf0635d 21543 namelen = strlen (name);
fb52b2f4 21544
2cf0635d
NC
21545 qualified_name = make_qualified_name (&arch, &nested_arch, name);
21546 if (qualified_name == NULL)
fb52b2f4 21547 {
28e817cc 21548 error (_("%s: bad archive file name\n"), arch.file_name);
fd486f32 21549 free (name);
015dc7e1 21550 ret = false;
d989285c 21551 break;
fb52b2f4
NC
21552 }
21553
2cf0635d 21554 if (is_thin_archive && arch.nested_member_origin == 0)
1cb7d8b1
AM
21555 {
21556 /* This is a proxy for an external member of a thin archive. */
21557 Filedata * member_filedata;
21558 char * member_file_name = adjust_relative_path
dda8d76d 21559 (filedata->file_name, name, namelen);
32ec8896 21560
fd486f32 21561 free (name);
1cb7d8b1
AM
21562 if (member_file_name == NULL)
21563 {
fd486f32 21564 free (qualified_name);
015dc7e1 21565 ret = false;
1cb7d8b1
AM
21566 break;
21567 }
2cf0635d 21568
015dc7e1 21569 member_filedata = open_file (member_file_name, false);
1cb7d8b1
AM
21570 if (member_filedata == NULL)
21571 {
21572 error (_("Input file '%s' is not readable.\n"), member_file_name);
21573 free (member_file_name);
fd486f32 21574 free (qualified_name);
015dc7e1 21575 ret = false;
1cb7d8b1
AM
21576 break;
21577 }
2cf0635d 21578
978c4450 21579 filedata->archive_file_offset = arch.nested_member_origin;
dda8d76d 21580 member_filedata->file_name = qualified_name;
2cf0635d 21581
1cb7d8b1 21582 if (! process_object (member_filedata))
015dc7e1 21583 ret = false;
2cf0635d 21584
1cb7d8b1
AM
21585 close_file (member_filedata);
21586 free (member_file_name);
1cb7d8b1 21587 }
2cf0635d 21588 else if (is_thin_archive)
1cb7d8b1
AM
21589 {
21590 Filedata thin_filedata;
eb02c04d 21591
1cb7d8b1 21592 memset (&thin_filedata, 0, sizeof (thin_filedata));
dda8d76d 21593
a043396b
NC
21594 /* PR 15140: Allow for corrupt thin archives. */
21595 if (nested_arch.file == NULL)
21596 {
21597 error (_("%s: contains corrupt thin archive: %s\n"),
28e817cc 21598 qualified_name, name);
fd486f32
AM
21599 free (qualified_name);
21600 free (name);
015dc7e1 21601 ret = false;
a043396b
NC
21602 break;
21603 }
fd486f32 21604 free (name);
a043396b 21605
1cb7d8b1 21606 /* This is a proxy for a member of a nested archive. */
978c4450
AM
21607 filedata->archive_file_offset
21608 = arch.nested_member_origin + sizeof arch.arhdr;
2cf0635d 21609
1cb7d8b1
AM
21610 /* The nested archive file will have been opened and setup by
21611 get_archive_member_name. */
978c4450
AM
21612 if (fseek (nested_arch.file, filedata->archive_file_offset,
21613 SEEK_SET) != 0)
1cb7d8b1
AM
21614 {
21615 error (_("%s: failed to seek to archive member.\n"),
21616 nested_arch.file_name);
fd486f32 21617 free (qualified_name);
015dc7e1 21618 ret = false;
1cb7d8b1
AM
21619 break;
21620 }
2cf0635d 21621
dda8d76d
NC
21622 thin_filedata.handle = nested_arch.file;
21623 thin_filedata.file_name = qualified_name;
9abca702 21624
1cb7d8b1 21625 if (! process_object (& thin_filedata))
015dc7e1 21626 ret = false;
1cb7d8b1 21627 }
2cf0635d 21628 else
1cb7d8b1 21629 {
fd486f32 21630 free (name);
978c4450 21631 filedata->archive_file_offset = arch.next_arhdr_offset;
6a6196fc 21632 filedata->file_name = qualified_name;
1cb7d8b1 21633 if (! process_object (filedata))
015dc7e1 21634 ret = false;
978c4450 21635 arch.next_arhdr_offset += filedata->archive_file_size;
4c836627 21636 /* Stop looping with "negative" archive_file_size. */
978c4450 21637 if (arch.next_arhdr_offset < filedata->archive_file_size)
80e2a3b6 21638 arch.next_arhdr_offset = -1ul;
1cb7d8b1 21639 }
fb52b2f4 21640
2cf0635d 21641 free (qualified_name);
fb52b2f4
NC
21642 }
21643
4145f1d5 21644 out:
2cf0635d
NC
21645 if (nested_arch.file != NULL)
21646 fclose (nested_arch.file);
21647 release_archive (&nested_arch);
21648 release_archive (&arch);
fb52b2f4 21649
d989285c 21650 return ret;
fb52b2f4
NC
21651}
21652
015dc7e1 21653static bool
2cf0635d 21654process_file (char * file_name)
fb52b2f4 21655{
dda8d76d 21656 Filedata * filedata = NULL;
fb52b2f4
NC
21657 struct stat statbuf;
21658 char armag[SARMAG];
015dc7e1 21659 bool ret = true;
fb52b2f4
NC
21660
21661 if (stat (file_name, &statbuf) < 0)
21662 {
f24ddbdd
NC
21663 if (errno == ENOENT)
21664 error (_("'%s': No such file\n"), file_name);
21665 else
21666 error (_("Could not locate '%s'. System error message: %s\n"),
21667 file_name, strerror (errno));
015dc7e1 21668 return false;
f24ddbdd
NC
21669 }
21670
21671 if (! S_ISREG (statbuf.st_mode))
21672 {
21673 error (_("'%s' is not an ordinary file\n"), file_name);
015dc7e1 21674 return false;
fb52b2f4
NC
21675 }
21676
dda8d76d
NC
21677 filedata = calloc (1, sizeof * filedata);
21678 if (filedata == NULL)
21679 {
21680 error (_("Out of memory allocating file data structure\n"));
015dc7e1 21681 return false;
dda8d76d
NC
21682 }
21683
21684 filedata->file_name = file_name;
21685 filedata->handle = fopen (file_name, "rb");
21686 if (filedata->handle == NULL)
fb52b2f4 21687 {
f24ddbdd 21688 error (_("Input file '%s' is not readable.\n"), file_name);
dda8d76d 21689 free (filedata);
015dc7e1 21690 return false;
fb52b2f4
NC
21691 }
21692
dda8d76d 21693 if (fread (armag, SARMAG, 1, filedata->handle) != 1)
fb52b2f4 21694 {
4145f1d5 21695 error (_("%s: Failed to read file's magic number\n"), file_name);
dda8d76d
NC
21696 fclose (filedata->handle);
21697 free (filedata);
015dc7e1 21698 return false;
fb52b2f4
NC
21699 }
21700
dda8d76d 21701 filedata->file_size = (bfd_size_type) statbuf.st_size;
015dc7e1 21702 filedata->is_separate = false;
f54498b4 21703
fb52b2f4 21704 if (memcmp (armag, ARMAG, SARMAG) == 0)
32ec8896 21705 {
015dc7e1
AM
21706 if (! process_archive (filedata, false))
21707 ret = false;
32ec8896 21708 }
2cf0635d 21709 else if (memcmp (armag, ARMAGT, SARMAG) == 0)
32ec8896 21710 {
015dc7e1
AM
21711 if ( ! process_archive (filedata, true))
21712 ret = false;
32ec8896 21713 }
fb52b2f4
NC
21714 else
21715 {
1b513401 21716 if (do_archive_index && !check_all)
4145f1d5
NC
21717 error (_("File %s is not an archive so its index cannot be displayed.\n"),
21718 file_name);
21719
dda8d76d 21720 rewind (filedata->handle);
978c4450 21721 filedata->archive_file_size = filedata->archive_file_offset = 0;
32ec8896 21722
dda8d76d 21723 if (! process_object (filedata))
015dc7e1 21724 ret = false;
fb52b2f4
NC
21725 }
21726
dda8d76d 21727 fclose (filedata->handle);
8fb879cd
AM
21728 free (filedata->section_headers);
21729 free (filedata->program_headers);
21730 free (filedata->string_table);
6431e409 21731 free (filedata->dump.dump_sects);
dda8d76d 21732 free (filedata);
32ec8896 21733
fd486f32 21734 free (ba_cache.strtab);
1bd6175a 21735 ba_cache.strtab = NULL;
fd486f32 21736 free (ba_cache.symtab);
1bd6175a 21737 ba_cache.symtab = NULL;
fd486f32
AM
21738 ba_cache.filedata = NULL;
21739
fb52b2f4
NC
21740 return ret;
21741}
21742
252b5132
RH
21743#ifdef SUPPORT_DISASSEMBLY
21744/* Needed by the i386 disassembler. For extra credit, someone could
9ea033b2 21745 fix this so that we insert symbolic addresses here, esp for GOT/PLT
e3c8793a 21746 symbols. */
252b5132
RH
21747
21748void
2cf0635d 21749print_address (unsigned int addr, FILE * outfile)
252b5132
RH
21750{
21751 fprintf (outfile,"0x%8.8x", addr);
21752}
21753
e3c8793a 21754/* Needed by the i386 disassembler. */
dda8d76d 21755
252b5132
RH
21756void
21757db_task_printsym (unsigned int addr)
21758{
21759 print_address (addr, stderr);
21760}
21761#endif
21762
21763int
2cf0635d 21764main (int argc, char ** argv)
252b5132 21765{
ff78d6d6
L
21766 int err;
21767
87b9f255 21768#ifdef HAVE_LC_MESSAGES
252b5132 21769 setlocale (LC_MESSAGES, "");
3882b010 21770#endif
3882b010 21771 setlocale (LC_CTYPE, "");
252b5132
RH
21772 bindtextdomain (PACKAGE, LOCALEDIR);
21773 textdomain (PACKAGE);
21774
869b9d07
MM
21775 expandargv (&argc, &argv);
21776
dda8d76d 21777 parse_args (& cmdline, argc, argv);
59f14fc0 21778
18bd398b 21779 if (optind < (argc - 1))
1b513401
NC
21780 /* When displaying information for more than one file,
21781 prefix the information with the file name. */
015dc7e1 21782 show_name = true;
5656ba2c
L
21783 else if (optind >= argc)
21784 {
1b513401 21785 /* Ensure that the warning is always displayed. */
015dc7e1 21786 do_checks = true;
1b513401 21787
5656ba2c
L
21788 warn (_("Nothing to do.\n"));
21789 usage (stderr);
21790 }
18bd398b 21791
015dc7e1 21792 err = false;
252b5132 21793 while (optind < argc)
32ec8896 21794 if (! process_file (argv[optind++]))
015dc7e1 21795 err = true;
252b5132 21796
9db70fc3 21797 free (cmdline.dump_sects);
252b5132 21798
7d9813f1
NA
21799 free (dump_ctf_symtab_name);
21800 free (dump_ctf_strtab_name);
21801 free (dump_ctf_parent_name);
21802
32ec8896 21803 return err ? EXIT_FAILURE : EXIT_SUCCESS;
252b5132 21804}