Automatic date update in version.in
[deliverable/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;
12384 Elf_Internal_Sym *psym = symtab + si;
b9e920ec 12385
10ca4b04
L
12386 printf ("%6ld: ", si);
12387 print_vma (psym->st_value, LONG_HEX);
12388 putchar (' ');
12389 print_vma (psym->st_size, DEC_5);
12390 printf (" %-7s", get_symbol_type (filedata, ELF_ST_TYPE (psym->st_info)));
12391 printf (" %-6s", get_symbol_binding (filedata, ELF_ST_BIND (psym->st_info)));
12392 if (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_SOLARIS)
12393 printf (" %-7s", get_solaris_symbol_visibility (psym->st_other));
12394 else
252b5132 12395 {
10ca4b04 12396 unsigned int vis = ELF_ST_VISIBILITY (psym->st_other);
252b5132 12397
10ca4b04
L
12398 printf (" %-7s", get_symbol_visibility (vis));
12399 /* Check to see if any other bits in the st_other field are set.
12400 Note - displaying this information disrupts the layout of the
12401 table being generated, but for the moment this case is very rare. */
12402 if (psym->st_other ^ vis)
12403 printf (" [%s] ", get_symbol_other (filedata, psym->st_other ^ vis));
252b5132 12404 }
10ca4b04 12405 printf (" %4s ", get_symbol_index_type (filedata, psym->st_shndx));
0942c7ab 12406
015dc7e1 12407 bool is_valid = VALID_SYMBOL_NAME (strtab, strtab_size, psym->st_name);
0942c7ab 12408 const char * sstr = is_valid ? strtab + psym->st_name : _("<corrupt>");
10ca4b04
L
12409
12410 version_string
12411 = get_symbol_version_string (filedata,
12412 (section == NULL
12413 || section->sh_type == SHT_DYNSYM),
12414 strtab, strtab_size, si,
12415 psym, &sym_info, &vna_other);
b9e920ec 12416
0942c7ab
NC
12417 int len_avail = 21;
12418 if (! do_wide && version_string != NULL)
12419 {
ddb43bab 12420 char buffer[16];
0942c7ab 12421
ddb43bab 12422 len_avail -= 1 + strlen (version_string);
0942c7ab
NC
12423
12424 if (sym_info == symbol_undefined)
12425 len_avail -= sprintf (buffer," (%d)", vna_other);
12426 else if (sym_info != symbol_hidden)
12427 len_avail -= 1;
12428 }
12429
12430 print_symbol (len_avail, sstr);
b9e920ec 12431
10ca4b04
L
12432 if (version_string)
12433 {
12434 if (sym_info == symbol_undefined)
12435 printf ("@%s (%d)", version_string, vna_other);
f7a99963 12436 else
10ca4b04
L
12437 printf (sym_info == symbol_hidden ? "@%s" : "@@%s",
12438 version_string);
12439 }
6bd1a22c 12440
10ca4b04 12441 putchar ('\n');
6bd1a22c 12442
10ca4b04
L
12443 if (ELF_ST_BIND (psym->st_info) == STB_LOCAL
12444 && section != NULL
12445 && si >= section->sh_info
12446 /* Irix 5 and 6 MIPS binaries are known to ignore this requirement. */
12447 && filedata->file_header.e_machine != EM_MIPS
12448 /* Solaris binaries have been found to violate this requirement as
12449 well. Not sure if this is a bug or an ABI requirement. */
12450 && filedata->file_header.e_ident[EI_OSABI] != ELFOSABI_SOLARIS)
12451 warn (_("local symbol %lu found at index >= %s's sh_info value of %u\n"),
12452 si, printable_section_name (filedata, section), section->sh_info);
12453}
f16a9783 12454
0f03783c
NC
12455static const char *
12456get_lto_kind (unsigned int kind)
12457{
12458 switch (kind)
12459 {
12460 case 0: return "DEF";
12461 case 1: return "WEAKDEF";
12462 case 2: return "UNDEF";
12463 case 3: return "WEAKUNDEF";
12464 case 4: return "COMMON";
12465 default:
12466 break;
12467 }
12468
12469 static char buffer[30];
12470 error (_("Unknown LTO symbol definition encountered: %u\n"), kind);
12471 sprintf (buffer, "<unknown: %u>", kind);
12472 return buffer;
12473}
12474
12475static const char *
12476get_lto_visibility (unsigned int visibility)
12477{
12478 switch (visibility)
12479 {
12480 case 0: return "DEFAULT";
12481 case 1: return "PROTECTED";
12482 case 2: return "INTERNAL";
12483 case 3: return "HIDDEN";
12484 default:
12485 break;
12486 }
12487
12488 static char buffer[30];
12489 error (_("Unknown LTO symbol visibility encountered: %u\n"), visibility);
12490 sprintf (buffer, "<unknown: %u>", visibility);
12491 return buffer;
12492}
12493
12494static const char *
12495get_lto_sym_type (unsigned int sym_type)
12496{
12497 switch (sym_type)
12498 {
12499 case 0: return "UNKNOWN";
12500 case 1: return "FUNCTION";
12501 case 2: return "VARIABLE";
12502 default:
12503 break;
12504 }
12505
12506 static char buffer[30];
12507 error (_("Unknown LTO symbol type encountered: %u\n"), sym_type);
12508 sprintf (buffer, "<unknown: %u>", sym_type);
12509 return buffer;
12510}
12511
12512/* Display an LTO format symbol table.
12513 FIXME: The format of LTO symbol tables is not formalized.
12514 So this code could need changing in the future. */
12515
015dc7e1 12516static bool
0f03783c
NC
12517display_lto_symtab (Filedata * filedata,
12518 Elf_Internal_Shdr * section)
12519{
12520 if (section->sh_size == 0)
12521 {
ca0e11aa
NC
12522 if (filedata->is_separate)
12523 printf (_("\nThe LTO Symbol table section '%s' in linked file '%s' is empty!\n"),
12524 printable_section_name (filedata, section),
12525 filedata->file_name);
12526 else
12527 printf (_("\nLTO Symbol table '%s' is empty!\n"),
12528 printable_section_name (filedata, section));
12529
015dc7e1 12530 return true;
0f03783c
NC
12531 }
12532
12533 if (section->sh_size > filedata->file_size)
12534 {
12535 error (_("Section %s has an invalid sh_size of 0x%lx\n"),
12536 printable_section_name (filedata, section),
12537 (unsigned long) section->sh_size);
015dc7e1 12538 return false;
0f03783c
NC
12539 }
12540
12541 void * alloced_data = get_data (NULL, filedata, section->sh_offset,
12542 section->sh_size, 1, _("LTO symbols"));
12543 if (alloced_data == NULL)
015dc7e1 12544 return false;
0f03783c
NC
12545
12546 /* Look for extended data for the symbol table. */
12547 Elf_Internal_Shdr * ext;
12548 void * ext_data_orig = NULL;
12549 char * ext_data = NULL;
12550 char * ext_data_end = NULL;
12551 char * ext_name = NULL;
12552
12553 if (asprintf (& ext_name, ".gnu.lto_.ext_symtab.%s",
b9e920ec 12554 SECTION_NAME (section) + sizeof (".gnu.lto_.symtab.") - 1) > 0
0f03783c
NC
12555 && ext_name != NULL /* Paranoia. */
12556 && (ext = find_section (filedata, ext_name)) != NULL)
12557 {
12558 if (ext->sh_size < 3)
12559 error (_("LTO Symbol extension table '%s' is empty!\n"),
12560 printable_section_name (filedata, ext));
12561 else
12562 {
12563 ext_data_orig = ext_data = get_data (NULL, filedata, ext->sh_offset,
12564 ext->sh_size, 1,
12565 _("LTO ext symbol data"));
12566 if (ext_data != NULL)
12567 {
12568 ext_data_end = ext_data + ext->sh_size;
12569 if (* ext_data++ != 1)
12570 error (_("Unexpected version number in symbol extension table\n"));
12571 }
12572 }
12573 }
b9e920ec 12574
0f03783c
NC
12575 const unsigned char * data = (const unsigned char *) alloced_data;
12576 const unsigned char * end = data + section->sh_size;
12577
ca0e11aa
NC
12578 if (filedata->is_separate)
12579 printf (_("\nIn linked file '%s': "), filedata->file_name);
12580 else
12581 printf ("\n");
12582
0f03783c
NC
12583 if (ext_data_orig != NULL)
12584 {
12585 if (do_wide)
ca0e11aa 12586 printf (_("LTO Symbol table '%s' and extension table '%s' contain:\n"),
0f03783c
NC
12587 printable_section_name (filedata, section),
12588 printable_section_name (filedata, ext));
12589 else
12590 {
ca0e11aa 12591 printf (_("LTO Symbol table '%s'\n"),
0f03783c
NC
12592 printable_section_name (filedata, section));
12593 printf (_(" and extension table '%s' contain:\n"),
12594 printable_section_name (filedata, ext));
12595 }
12596 }
12597 else
ca0e11aa 12598 printf (_("LTO Symbol table '%s' contains:\n"),
0f03783c 12599 printable_section_name (filedata, section));
b9e920ec 12600
0f03783c 12601 /* FIXME: Add a wide version. */
b9e920ec 12602 if (ext_data_orig != NULL)
0f03783c
NC
12603 printf (_(" Comdat_Key Kind Visibility Size Slot Type Section Name\n"));
12604 else
12605 printf (_(" Comdat_Key Kind Visibility Size Slot Name\n"));
12606
12607 /* FIXME: We do not handle style prefixes. */
12608
12609 while (data < end)
12610 {
12611 const unsigned char * sym_name = data;
12612 data += strnlen ((const char *) sym_name, end - data) + 1;
12613 if (data >= end)
12614 goto fail;
12615
12616 const unsigned char * comdat_key = data;
12617 data += strnlen ((const char *) comdat_key, end - data) + 1;
12618 if (data >= end)
12619 goto fail;
12620
12621 if (data + 2 + 8 + 4 > end)
12622 goto fail;
12623
12624 unsigned int kind = *data++;
12625 unsigned int visibility = *data++;
12626
12627 elf_vma size = byte_get (data, 8);
12628 data += 8;
12629
12630 elf_vma slot = byte_get (data, 4);
12631 data += 4;
12632
12633 if (ext_data != NULL)
12634 {
12635 if (ext_data < (ext_data_end - 1))
12636 {
12637 unsigned int sym_type = * ext_data ++;
12638 unsigned int sec_kind = * ext_data ++;
12639
12640 printf (" %10s %10s %11s %08lx %08lx %9s %08lx _",
12641 * comdat_key == 0 ? "-" : (char *) comdat_key,
12642 get_lto_kind (kind),
12643 get_lto_visibility (visibility),
12644 (long) size,
12645 (long) slot,
12646 get_lto_sym_type (sym_type),
12647 (long) sec_kind);
12648 print_symbol (6, (const char *) sym_name);
12649 }
12650 else
12651 {
12652 error (_("Ran out of LTO symbol extension data\n"));
12653 ext_data = NULL;
12654 /* FIXME: return FAIL result ? */
12655 }
12656 }
12657 else
12658 {
12659 printf (" %10s %10s %11s %08lx %08lx _",
12660 * comdat_key == 0 ? "-" : (char *) comdat_key,
12661 get_lto_kind (kind),
12662 get_lto_visibility (visibility),
12663 (long) size,
12664 (long) slot);
12665 print_symbol (21, (const char *) sym_name);
12666 }
12667 putchar ('\n');
12668 }
12669
12670 if (ext_data != NULL && ext_data < ext_data_end)
12671 {
12672 error (_("Data remains in the LTO symbol extension table\n"));
12673 goto fail;
12674 }
12675
12676 free (alloced_data);
12677 free (ext_data_orig);
12678 free (ext_name);
015dc7e1 12679 return true;
b9e920ec 12680
0f03783c
NC
12681 fail:
12682 error (_("Buffer overrun encountered whilst decoding LTO symbol table\n"));
12683 free (alloced_data);
12684 free (ext_data_orig);
12685 free (ext_name);
015dc7e1 12686 return false;
0f03783c
NC
12687}
12688
12689/* Display LTO symbol tables. */
12690
015dc7e1 12691static bool
0f03783c
NC
12692process_lto_symbol_tables (Filedata * filedata)
12693{
12694 Elf_Internal_Shdr * section;
12695 unsigned int i;
015dc7e1 12696 bool res = true;
0f03783c
NC
12697
12698 if (!do_lto_syms)
015dc7e1 12699 return true;
0f03783c
NC
12700
12701 if (filedata->section_headers == NULL)
015dc7e1 12702 return true;
0f03783c
NC
12703
12704 for (i = 0, section = filedata->section_headers;
12705 i < filedata->file_header.e_shnum;
12706 i++, section++)
b9e920ec 12707 if (SECTION_NAME_VALID (section)
08dedd66 12708 && startswith (SECTION_NAME (section), ".gnu.lto_.symtab."))
0f03783c
NC
12709 res &= display_lto_symtab (filedata, section);
12710
b9e920ec 12711 return res;
0f03783c
NC
12712}
12713
10ca4b04 12714/* Dump the symbol table. */
0f03783c 12715
015dc7e1 12716static bool
10ca4b04
L
12717process_symbol_table (Filedata * filedata)
12718{
12719 Elf_Internal_Shdr * section;
f16a9783 12720
10ca4b04 12721 if (!do_syms && !do_dyn_syms && !do_histogram)
015dc7e1 12722 return true;
6bd1a22c 12723
978c4450 12724 if ((filedata->dynamic_info[DT_HASH] || filedata->dynamic_info_DT_GNU_HASH)
6bd1a22c
L
12725 && do_syms
12726 && do_using_dynamic
978c4450
AM
12727 && filedata->dynamic_strings != NULL
12728 && filedata->dynamic_symbols != NULL)
6bd1a22c 12729 {
10ca4b04 12730 unsigned long si;
6bd1a22c 12731
ca0e11aa
NC
12732 if (filedata->is_separate)
12733 {
12734 printf (ngettext ("\nIn linked file '%s' the dynamic symbol table contains %lu entry:\n",
12735 "\nIn linked file '%s' the dynamic symbol table contains %lu entries:\n",
12736 filedata->num_dynamic_syms),
12737 filedata->file_name,
12738 filedata->num_dynamic_syms);
12739 }
12740 else
12741 {
12742 printf (ngettext ("\nSymbol table for image contains %lu entry:\n",
12743 "\nSymbol table for image contains %lu entries:\n",
12744 filedata->num_dynamic_syms),
12745 filedata->num_dynamic_syms);
12746 }
10ca4b04
L
12747 if (is_32bit_elf)
12748 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
12749 else
12750 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
6bd1a22c 12751
978c4450
AM
12752 for (si = 0; si < filedata->num_dynamic_syms; si++)
12753 print_dynamic_symbol (filedata, si, filedata->dynamic_symbols, NULL,
12754 filedata->dynamic_strings,
12755 filedata->dynamic_strings_length);
252b5132 12756 }
8b73c356 12757 else if ((do_dyn_syms || (do_syms && !do_using_dynamic))
dda8d76d 12758 && filedata->section_headers != NULL)
252b5132 12759 {
b34976b6 12760 unsigned int i;
252b5132 12761
dda8d76d
NC
12762 for (i = 0, section = filedata->section_headers;
12763 i < filedata->file_header.e_shnum;
252b5132
RH
12764 i++, section++)
12765 {
2cf0635d 12766 char * strtab = NULL;
c256ffe7 12767 unsigned long int strtab_size = 0;
2cf0635d 12768 Elf_Internal_Sym * symtab;
ef3df110 12769 unsigned long si, num_syms;
252b5132 12770
2c610e4b
L
12771 if ((section->sh_type != SHT_SYMTAB
12772 && section->sh_type != SHT_DYNSYM)
12773 || (!do_syms
12774 && section->sh_type == SHT_SYMTAB))
252b5132
RH
12775 continue;
12776
dd24e3da
NC
12777 if (section->sh_entsize == 0)
12778 {
12779 printf (_("\nSymbol table '%s' has a sh_entsize of zero!\n"),
dda8d76d 12780 printable_section_name (filedata, section));
dd24e3da
NC
12781 continue;
12782 }
12783
d3a49aa8 12784 num_syms = section->sh_size / section->sh_entsize;
ca0e11aa
NC
12785
12786 if (filedata->is_separate)
12787 printf (ngettext ("\nIn linked file '%s' symbol section '%s' contains %lu entry:\n",
12788 "\nIn linked file '%s' symbol section '%s' contains %lu entries:\n",
12789 num_syms),
12790 filedata->file_name,
12791 printable_section_name (filedata, section),
12792 num_syms);
12793 else
12794 printf (ngettext ("\nSymbol table '%s' contains %lu entry:\n",
12795 "\nSymbol table '%s' contains %lu entries:\n",
12796 num_syms),
12797 printable_section_name (filedata, section),
12798 num_syms);
dd24e3da 12799
f7a99963 12800 if (is_32bit_elf)
ca47b30c 12801 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
f7a99963 12802 else
ca47b30c 12803 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
252b5132 12804
dda8d76d 12805 symtab = GET_ELF_SYMBOLS (filedata, section, & num_syms);
252b5132
RH
12806 if (symtab == NULL)
12807 continue;
12808
dda8d76d 12809 if (section->sh_link == filedata->file_header.e_shstrndx)
c256ffe7 12810 {
dda8d76d
NC
12811 strtab = filedata->string_table;
12812 strtab_size = filedata->string_table_length;
c256ffe7 12813 }
dda8d76d 12814 else if (section->sh_link < filedata->file_header.e_shnum)
252b5132 12815 {
2cf0635d 12816 Elf_Internal_Shdr * string_sec;
252b5132 12817
dda8d76d 12818 string_sec = filedata->section_headers + section->sh_link;
252b5132 12819
dda8d76d 12820 strtab = (char *) get_data (NULL, filedata, string_sec->sh_offset,
3f5e193b
NC
12821 1, string_sec->sh_size,
12822 _("string table"));
c256ffe7 12823 strtab_size = strtab != NULL ? string_sec->sh_size : 0;
252b5132
RH
12824 }
12825
10ca4b04
L
12826 for (si = 0; si < num_syms; si++)
12827 print_dynamic_symbol (filedata, si, symtab, section,
12828 strtab, strtab_size);
252b5132
RH
12829
12830 free (symtab);
dda8d76d 12831 if (strtab != filedata->string_table)
252b5132
RH
12832 free (strtab);
12833 }
12834 }
12835 else if (do_syms)
12836 printf
12837 (_("\nDynamic symbol information is not available for displaying symbols.\n"));
12838
978c4450 12839 if (do_histogram && filedata->buckets != NULL)
252b5132 12840 {
2cf0635d
NC
12841 unsigned long * lengths;
12842 unsigned long * counts;
66543521
AM
12843 unsigned long hn;
12844 bfd_vma si;
12845 unsigned long maxlength = 0;
12846 unsigned long nzero_counts = 0;
12847 unsigned long nsyms = 0;
6bd6a03d 12848 char *visited;
252b5132 12849
d3a49aa8
AM
12850 printf (ngettext ("\nHistogram for bucket list length "
12851 "(total of %lu bucket):\n",
12852 "\nHistogram for bucket list length "
12853 "(total of %lu buckets):\n",
978c4450
AM
12854 (unsigned long) filedata->nbuckets),
12855 (unsigned long) filedata->nbuckets);
252b5132 12856
978c4450
AM
12857 lengths = (unsigned long *) calloc (filedata->nbuckets,
12858 sizeof (*lengths));
252b5132
RH
12859 if (lengths == NULL)
12860 {
8b73c356 12861 error (_("Out of memory allocating space for histogram buckets\n"));
fd486f32 12862 goto err_out;
252b5132 12863 }
978c4450
AM
12864 visited = xcmalloc (filedata->nchains, 1);
12865 memset (visited, 0, filedata->nchains);
8b73c356
NC
12866
12867 printf (_(" Length Number %% of total Coverage\n"));
978c4450 12868 for (hn = 0; hn < filedata->nbuckets; ++hn)
252b5132 12869 {
978c4450 12870 for (si = filedata->buckets[hn]; si > 0; si = filedata->chains[si])
252b5132 12871 {
b34976b6 12872 ++nsyms;
252b5132 12873 if (maxlength < ++lengths[hn])
b34976b6 12874 ++maxlength;
978c4450 12875 if (si >= filedata->nchains || visited[si])
6bd6a03d
AM
12876 {
12877 error (_("histogram chain is corrupt\n"));
12878 break;
12879 }
12880 visited[si] = 1;
252b5132
RH
12881 }
12882 }
6bd6a03d 12883 free (visited);
252b5132 12884
3f5e193b 12885 counts = (unsigned long *) calloc (maxlength + 1, sizeof (*counts));
252b5132
RH
12886 if (counts == NULL)
12887 {
b2e951ec 12888 free (lengths);
8b73c356 12889 error (_("Out of memory allocating space for histogram counts\n"));
fd486f32 12890 goto err_out;
252b5132
RH
12891 }
12892
978c4450 12893 for (hn = 0; hn < filedata->nbuckets; ++hn)
b34976b6 12894 ++counts[lengths[hn]];
252b5132 12895
978c4450 12896 if (filedata->nbuckets > 0)
252b5132 12897 {
66543521
AM
12898 unsigned long i;
12899 printf (" 0 %-10lu (%5.1f%%)\n",
978c4450 12900 counts[0], (counts[0] * 100.0) / filedata->nbuckets);
66543521 12901 for (i = 1; i <= maxlength; ++i)
103f02d3 12902 {
66543521
AM
12903 nzero_counts += counts[i] * i;
12904 printf ("%7lu %-10lu (%5.1f%%) %5.1f%%\n",
978c4450 12905 i, counts[i], (counts[i] * 100.0) / filedata->nbuckets,
103f02d3
UD
12906 (nzero_counts * 100.0) / nsyms);
12907 }
252b5132
RH
12908 }
12909
12910 free (counts);
12911 free (lengths);
12912 }
12913
978c4450
AM
12914 free (filedata->buckets);
12915 filedata->buckets = NULL;
12916 filedata->nbuckets = 0;
12917 free (filedata->chains);
12918 filedata->chains = NULL;
252b5132 12919
978c4450 12920 if (do_histogram && filedata->gnubuckets != NULL)
fdc90cb4 12921 {
2cf0635d
NC
12922 unsigned long * lengths;
12923 unsigned long * counts;
fdc90cb4
JJ
12924 unsigned long hn;
12925 unsigned long maxlength = 0;
12926 unsigned long nzero_counts = 0;
12927 unsigned long nsyms = 0;
fdc90cb4 12928
f16a9783 12929 printf (ngettext ("\nHistogram for `%s' bucket list length "
d3a49aa8 12930 "(total of %lu bucket):\n",
f16a9783 12931 "\nHistogram for `%s' bucket list length "
d3a49aa8 12932 "(total of %lu buckets):\n",
978c4450
AM
12933 (unsigned long) filedata->ngnubuckets),
12934 GNU_HASH_SECTION_NAME (filedata),
12935 (unsigned long) filedata->ngnubuckets);
8b73c356 12936
978c4450
AM
12937 lengths = (unsigned long *) calloc (filedata->ngnubuckets,
12938 sizeof (*lengths));
fdc90cb4
JJ
12939 if (lengths == NULL)
12940 {
8b73c356 12941 error (_("Out of memory allocating space for gnu histogram buckets\n"));
fd486f32 12942 goto err_out;
fdc90cb4
JJ
12943 }
12944
fdc90cb4
JJ
12945 printf (_(" Length Number %% of total Coverage\n"));
12946
978c4450
AM
12947 for (hn = 0; hn < filedata->ngnubuckets; ++hn)
12948 if (filedata->gnubuckets[hn] != 0)
fdc90cb4
JJ
12949 {
12950 bfd_vma off, length = 1;
12951
978c4450 12952 for (off = filedata->gnubuckets[hn] - filedata->gnusymidx;
071436c6 12953 /* PR 17531 file: 010-77222-0.004. */
978c4450
AM
12954 off < filedata->ngnuchains
12955 && (filedata->gnuchains[off] & 1) == 0;
071436c6 12956 ++off)
fdc90cb4
JJ
12957 ++length;
12958 lengths[hn] = length;
12959 if (length > maxlength)
12960 maxlength = length;
12961 nsyms += length;
12962 }
12963
3f5e193b 12964 counts = (unsigned long *) calloc (maxlength + 1, sizeof (*counts));
fdc90cb4
JJ
12965 if (counts == NULL)
12966 {
b2e951ec 12967 free (lengths);
8b73c356 12968 error (_("Out of memory allocating space for gnu histogram counts\n"));
fd486f32 12969 goto err_out;
fdc90cb4
JJ
12970 }
12971
978c4450 12972 for (hn = 0; hn < filedata->ngnubuckets; ++hn)
fdc90cb4
JJ
12973 ++counts[lengths[hn]];
12974
978c4450 12975 if (filedata->ngnubuckets > 0)
fdc90cb4
JJ
12976 {
12977 unsigned long j;
12978 printf (" 0 %-10lu (%5.1f%%)\n",
978c4450 12979 counts[0], (counts[0] * 100.0) / filedata->ngnubuckets);
fdc90cb4
JJ
12980 for (j = 1; j <= maxlength; ++j)
12981 {
12982 nzero_counts += counts[j] * j;
12983 printf ("%7lu %-10lu (%5.1f%%) %5.1f%%\n",
978c4450 12984 j, counts[j], (counts[j] * 100.0) / filedata->ngnubuckets,
fdc90cb4
JJ
12985 (nzero_counts * 100.0) / nsyms);
12986 }
12987 }
12988
12989 free (counts);
12990 free (lengths);
fdc90cb4 12991 }
978c4450
AM
12992 free (filedata->gnubuckets);
12993 filedata->gnubuckets = NULL;
12994 filedata->ngnubuckets = 0;
12995 free (filedata->gnuchains);
12996 filedata->gnuchains = NULL;
12997 filedata->ngnuchains = 0;
12998 free (filedata->mipsxlat);
12999 filedata->mipsxlat = NULL;
015dc7e1 13000 return true;
fd486f32
AM
13001
13002 err_out:
978c4450
AM
13003 free (filedata->gnubuckets);
13004 filedata->gnubuckets = NULL;
13005 filedata->ngnubuckets = 0;
13006 free (filedata->gnuchains);
13007 filedata->gnuchains = NULL;
13008 filedata->ngnuchains = 0;
13009 free (filedata->mipsxlat);
13010 filedata->mipsxlat = NULL;
13011 free (filedata->buckets);
13012 filedata->buckets = NULL;
13013 filedata->nbuckets = 0;
13014 free (filedata->chains);
13015 filedata->chains = NULL;
015dc7e1 13016 return false;
252b5132
RH
13017}
13018
015dc7e1 13019static bool
ca0e11aa 13020process_syminfo (Filedata * filedata)
252b5132 13021{
b4c96d0d 13022 unsigned int i;
252b5132 13023
978c4450 13024 if (filedata->dynamic_syminfo == NULL
252b5132
RH
13025 || !do_dynamic)
13026 /* No syminfo, this is ok. */
015dc7e1 13027 return true;
252b5132
RH
13028
13029 /* There better should be a dynamic symbol section. */
978c4450 13030 if (filedata->dynamic_symbols == NULL || filedata->dynamic_strings == NULL)
015dc7e1 13031 return false;
252b5132 13032
ca0e11aa
NC
13033 if (filedata->is_separate)
13034 printf (ngettext ("\nIn linked file '%s: the dynamic info segment at offset 0x%lx contains %d entry:\n",
13035 "\nIn linked file '%s: the dynamic info segment at offset 0x%lx contains %d entries:\n",
13036 filedata->dynamic_syminfo_nent),
13037 filedata->file_name,
13038 filedata->dynamic_syminfo_offset,
13039 filedata->dynamic_syminfo_nent);
13040 else
d3a49aa8
AM
13041 printf (ngettext ("\nDynamic info segment at offset 0x%lx "
13042 "contains %d entry:\n",
13043 "\nDynamic info segment at offset 0x%lx "
13044 "contains %d entries:\n",
978c4450 13045 filedata->dynamic_syminfo_nent),
ca0e11aa
NC
13046 filedata->dynamic_syminfo_offset,
13047 filedata->dynamic_syminfo_nent);
252b5132
RH
13048
13049 printf (_(" Num: Name BoundTo Flags\n"));
978c4450 13050 for (i = 0; i < filedata->dynamic_syminfo_nent; ++i)
252b5132 13051 {
978c4450 13052 unsigned short int flags = filedata->dynamic_syminfo[i].si_flags;
252b5132 13053
31104126 13054 printf ("%4d: ", i);
978c4450 13055 if (i >= filedata->num_dynamic_syms)
4082ef84 13056 printf (_("<corrupt index>"));
978c4450
AM
13057 else if (VALID_DYNAMIC_NAME (filedata, filedata->dynamic_symbols[i].st_name))
13058 print_symbol (30, GET_DYNAMIC_NAME (filedata,
13059 filedata->dynamic_symbols[i].st_name));
d79b3d50 13060 else
978c4450 13061 printf (_("<corrupt: %19ld>"), filedata->dynamic_symbols[i].st_name);
31104126 13062 putchar (' ');
252b5132 13063
978c4450 13064 switch (filedata->dynamic_syminfo[i].si_boundto)
252b5132
RH
13065 {
13066 case SYMINFO_BT_SELF:
13067 fputs ("SELF ", stdout);
13068 break;
13069 case SYMINFO_BT_PARENT:
13070 fputs ("PARENT ", stdout);
13071 break;
13072 default:
978c4450
AM
13073 if (filedata->dynamic_syminfo[i].si_boundto > 0
13074 && filedata->dynamic_syminfo[i].si_boundto < filedata->dynamic_nent
13075 && VALID_DYNAMIC_NAME (filedata,
13076 filedata->dynamic_section[filedata->dynamic_syminfo[i].si_boundto].d_un.d_val))
31104126 13077 {
978c4450
AM
13078 print_symbol (10, GET_DYNAMIC_NAME (filedata,
13079 filedata->dynamic_section[filedata->dynamic_syminfo[i].si_boundto].d_un.d_val));
31104126
NC
13080 putchar (' ' );
13081 }
252b5132 13082 else
978c4450 13083 printf ("%-10d ", filedata->dynamic_syminfo[i].si_boundto);
252b5132
RH
13084 break;
13085 }
13086
13087 if (flags & SYMINFO_FLG_DIRECT)
13088 printf (" DIRECT");
13089 if (flags & SYMINFO_FLG_PASSTHRU)
13090 printf (" PASSTHRU");
13091 if (flags & SYMINFO_FLG_COPY)
13092 printf (" COPY");
13093 if (flags & SYMINFO_FLG_LAZYLOAD)
13094 printf (" LAZYLOAD");
13095
13096 puts ("");
13097 }
13098
015dc7e1 13099 return true;
252b5132
RH
13100}
13101
75802ccb
CE
13102/* A macro which evaluates to TRUE if the region ADDR .. ADDR + NELEM
13103 is contained by the region START .. END. The types of ADDR, START
13104 and END should all be the same. Note both ADDR + NELEM and END
13105 point to just beyond the end of the regions that are being tested. */
13106#define IN_RANGE(START,END,ADDR,NELEM) \
13107 (((ADDR) >= (START)) && ((ADDR) < (END)) && ((ADDR) + (NELEM) <= (END)))
b32e566b 13108
cf13d699
NC
13109/* Check to see if the given reloc needs to be handled in a target specific
13110 manner. If so then process the reloc and return TRUE otherwise return
f84ce13b
NC
13111 FALSE.
13112
13113 If called with reloc == NULL, then this is a signal that reloc processing
13114 for the current section has finished, and any saved state should be
13115 discarded. */
09c11c86 13116
015dc7e1 13117static bool
dda8d76d
NC
13118target_specific_reloc_handling (Filedata * filedata,
13119 Elf_Internal_Rela * reloc,
13120 unsigned char * start,
13121 unsigned char * end,
13122 Elf_Internal_Sym * symtab,
13123 unsigned long num_syms)
252b5132 13124{
f84ce13b
NC
13125 unsigned int reloc_type = 0;
13126 unsigned long sym_index = 0;
13127
13128 if (reloc)
13129 {
dda8d76d 13130 reloc_type = get_reloc_type (filedata, reloc->r_info);
f84ce13b
NC
13131 sym_index = get_reloc_symindex (reloc->r_info);
13132 }
252b5132 13133
dda8d76d 13134 switch (filedata->file_header.e_machine)
252b5132 13135 {
13761a11
NC
13136 case EM_MSP430:
13137 case EM_MSP430_OLD:
13138 {
13139 static Elf_Internal_Sym * saved_sym = NULL;
13140
f84ce13b
NC
13141 if (reloc == NULL)
13142 {
13143 saved_sym = NULL;
015dc7e1 13144 return true;
f84ce13b
NC
13145 }
13146
13761a11
NC
13147 switch (reloc_type)
13148 {
13149 case 10: /* R_MSP430_SYM_DIFF */
7d81bc93 13150 case 12: /* R_MSP430_GNU_SUB_ULEB128 */
dda8d76d 13151 if (uses_msp430x_relocs (filedata))
13761a11 13152 break;
1a0670f3 13153 /* Fall through. */
13761a11 13154 case 21: /* R_MSP430X_SYM_DIFF */
7d81bc93 13155 case 23: /* R_MSP430X_GNU_SUB_ULEB128 */
f84ce13b
NC
13156 /* PR 21139. */
13157 if (sym_index >= num_syms)
13158 error (_("MSP430 SYM_DIFF reloc contains invalid symbol index %lu\n"),
13159 sym_index);
13160 else
13161 saved_sym = symtab + sym_index;
015dc7e1 13162 return true;
13761a11
NC
13163
13164 case 1: /* R_MSP430_32 or R_MSP430_ABS32 */
13165 case 3: /* R_MSP430_16 or R_MSP430_ABS8 */
13166 goto handle_sym_diff;
0b4362b0 13167
13761a11
NC
13168 case 5: /* R_MSP430_16_BYTE */
13169 case 9: /* R_MSP430_8 */
7d81bc93 13170 case 11: /* R_MSP430_GNU_SET_ULEB128 */
dda8d76d 13171 if (uses_msp430x_relocs (filedata))
13761a11
NC
13172 break;
13173 goto handle_sym_diff;
13174
13175 case 2: /* R_MSP430_ABS16 */
13176 case 15: /* R_MSP430X_ABS16 */
7d81bc93 13177 case 22: /* R_MSP430X_GNU_SET_ULEB128 */
dda8d76d 13178 if (! uses_msp430x_relocs (filedata))
13761a11
NC
13179 break;
13180 goto handle_sym_diff;
0b4362b0 13181
13761a11
NC
13182 handle_sym_diff:
13183 if (saved_sym != NULL)
13184 {
13185 bfd_vma value;
5a805384 13186 unsigned int reloc_size = 0;
7d81bc93
JL
13187 int leb_ret = 0;
13188 switch (reloc_type)
13189 {
13190 case 1: /* R_MSP430_32 or R_MSP430_ABS32 */
13191 reloc_size = 4;
13192 break;
13193 case 11: /* R_MSP430_GNU_SET_ULEB128 */
13194 case 22: /* R_MSP430X_GNU_SET_ULEB128 */
5a805384 13195 if (reloc->r_offset < (size_t) (end - start))
015dc7e1 13196 read_leb128 (start + reloc->r_offset, end, false,
5a805384 13197 &reloc_size, &leb_ret);
7d81bc93
JL
13198 break;
13199 default:
13200 reloc_size = 2;
13201 break;
13202 }
13761a11 13203
5a805384 13204 if (leb_ret != 0 || reloc_size == 0 || reloc_size > 8)
7d81bc93
JL
13205 error (_("MSP430 ULEB128 field at 0x%lx contains invalid "
13206 "ULEB128 value\n"),
13207 (long) reloc->r_offset);
13208 else if (sym_index >= num_syms)
f84ce13b
NC
13209 error (_("MSP430 reloc contains invalid symbol index %lu\n"),
13210 sym_index);
03f7786e 13211 else
f84ce13b
NC
13212 {
13213 value = reloc->r_addend + (symtab[sym_index].st_value
13214 - saved_sym->st_value);
13215
b32e566b 13216 if (IN_RANGE (start, end, start + reloc->r_offset, reloc_size))
f84ce13b 13217 byte_put (start + reloc->r_offset, value, reloc_size);
b32e566b
NC
13218 else
13219 /* PR 21137 */
13220 error (_("MSP430 sym diff reloc contains invalid offset: 0x%lx\n"),
13221 (long) reloc->r_offset);
f84ce13b 13222 }
13761a11
NC
13223
13224 saved_sym = NULL;
015dc7e1 13225 return true;
13761a11
NC
13226 }
13227 break;
13228
13229 default:
13230 if (saved_sym != NULL)
071436c6 13231 error (_("Unhandled MSP430 reloc type found after SYM_DIFF reloc\n"));
13761a11
NC
13232 break;
13233 }
13234 break;
13235 }
13236
cf13d699
NC
13237 case EM_MN10300:
13238 case EM_CYGNUS_MN10300:
13239 {
13240 static Elf_Internal_Sym * saved_sym = NULL;
252b5132 13241
f84ce13b
NC
13242 if (reloc == NULL)
13243 {
13244 saved_sym = NULL;
015dc7e1 13245 return true;
f84ce13b
NC
13246 }
13247
cf13d699
NC
13248 switch (reloc_type)
13249 {
13250 case 34: /* R_MN10300_ALIGN */
015dc7e1 13251 return true;
cf13d699 13252 case 33: /* R_MN10300_SYM_DIFF */
f84ce13b
NC
13253 if (sym_index >= num_syms)
13254 error (_("MN10300_SYM_DIFF reloc contains invalid symbol index %lu\n"),
13255 sym_index);
13256 else
13257 saved_sym = symtab + sym_index;
015dc7e1 13258 return true;
f84ce13b 13259
cf13d699
NC
13260 case 1: /* R_MN10300_32 */
13261 case 2: /* R_MN10300_16 */
13262 if (saved_sym != NULL)
13263 {
03f7786e 13264 int reloc_size = reloc_type == 1 ? 4 : 2;
cf13d699 13265 bfd_vma value;
252b5132 13266
f84ce13b
NC
13267 if (sym_index >= num_syms)
13268 error (_("MN10300 reloc contains invalid symbol index %lu\n"),
13269 sym_index);
03f7786e 13270 else
f84ce13b
NC
13271 {
13272 value = reloc->r_addend + (symtab[sym_index].st_value
13273 - saved_sym->st_value);
13274
b32e566b 13275 if (IN_RANGE (start, end, start + reloc->r_offset, reloc_size))
f84ce13b 13276 byte_put (start + reloc->r_offset, value, reloc_size);
b32e566b
NC
13277 else
13278 error (_("MN10300 sym diff reloc contains invalid offset: 0x%lx\n"),
13279 (long) reloc->r_offset);
f84ce13b 13280 }
252b5132 13281
cf13d699 13282 saved_sym = NULL;
015dc7e1 13283 return true;
cf13d699
NC
13284 }
13285 break;
13286 default:
13287 if (saved_sym != NULL)
071436c6 13288 error (_("Unhandled MN10300 reloc type found after SYM_DIFF reloc\n"));
cf13d699
NC
13289 break;
13290 }
13291 break;
13292 }
6ff71e76
NC
13293
13294 case EM_RL78:
13295 {
13296 static bfd_vma saved_sym1 = 0;
13297 static bfd_vma saved_sym2 = 0;
13298 static bfd_vma value;
13299
f84ce13b
NC
13300 if (reloc == NULL)
13301 {
13302 saved_sym1 = saved_sym2 = 0;
015dc7e1 13303 return true;
f84ce13b
NC
13304 }
13305
6ff71e76
NC
13306 switch (reloc_type)
13307 {
13308 case 0x80: /* R_RL78_SYM. */
13309 saved_sym1 = saved_sym2;
f84ce13b
NC
13310 if (sym_index >= num_syms)
13311 error (_("RL78_SYM reloc contains invalid symbol index %lu\n"),
13312 sym_index);
13313 else
13314 {
13315 saved_sym2 = symtab[sym_index].st_value;
13316 saved_sym2 += reloc->r_addend;
13317 }
015dc7e1 13318 return true;
6ff71e76
NC
13319
13320 case 0x83: /* R_RL78_OPsub. */
13321 value = saved_sym1 - saved_sym2;
13322 saved_sym2 = saved_sym1 = 0;
015dc7e1 13323 return true;
6ff71e76
NC
13324 break;
13325
13326 case 0x41: /* R_RL78_ABS32. */
b32e566b 13327 if (IN_RANGE (start, end, start + reloc->r_offset, 4))
03f7786e 13328 byte_put (start + reloc->r_offset, value, 4);
b32e566b
NC
13329 else
13330 error (_("RL78 sym diff reloc contains invalid offset: 0x%lx\n"),
13331 (long) reloc->r_offset);
6ff71e76 13332 value = 0;
015dc7e1 13333 return true;
6ff71e76
NC
13334
13335 case 0x43: /* R_RL78_ABS16. */
b32e566b 13336 if (IN_RANGE (start, end, start + reloc->r_offset, 2))
03f7786e 13337 byte_put (start + reloc->r_offset, value, 2);
b32e566b
NC
13338 else
13339 error (_("RL78 sym diff reloc contains invalid offset: 0x%lx\n"),
13340 (long) reloc->r_offset);
6ff71e76 13341 value = 0;
015dc7e1 13342 return true;
6ff71e76
NC
13343
13344 default:
13345 break;
13346 }
13347 break;
13348 }
252b5132
RH
13349 }
13350
015dc7e1 13351 return false;
252b5132
RH
13352}
13353
aca88567
NC
13354/* Returns TRUE iff RELOC_TYPE is a 32-bit absolute RELA relocation used in
13355 DWARF debug sections. This is a target specific test. Note - we do not
13356 go through the whole including-target-headers-multiple-times route, (as
13357 we have already done with <elf/h8.h>) because this would become very
13358 messy and even then this function would have to contain target specific
13359 information (the names of the relocs instead of their numeric values).
13360 FIXME: This is not the correct way to solve this problem. The proper way
13361 is to have target specific reloc sizing and typing functions created by
13362 the reloc-macros.h header, in the same way that it already creates the
13363 reloc naming functions. */
13364
015dc7e1 13365static bool
dda8d76d 13366is_32bit_abs_reloc (Filedata * filedata, unsigned int reloc_type)
aca88567 13367{
d347c9df 13368 /* Please keep this table alpha-sorted for ease of visual lookup. */
dda8d76d 13369 switch (filedata->file_header.e_machine)
aca88567 13370 {
41e92641 13371 case EM_386:
22abe556 13372 case EM_IAMCU:
41e92641 13373 return reloc_type == 1; /* R_386_32. */
aca88567
NC
13374 case EM_68K:
13375 return reloc_type == 1; /* R_68K_32. */
f954747f
AM
13376 case EM_860:
13377 return reloc_type == 1; /* R_860_32. */
13378 case EM_960:
13379 return reloc_type == 2; /* R_960_32. */
a06ea964 13380 case EM_AARCH64:
9282b95a
JW
13381 return (reloc_type == 258
13382 || reloc_type == 1); /* R_AARCH64_ABS32 || R_AARCH64_P32_ABS32 */
aca4efc7
JM
13383 case EM_BPF:
13384 return reloc_type == 11; /* R_BPF_DATA_32 */
d347c9df
PS
13385 case EM_ADAPTEVA_EPIPHANY:
13386 return reloc_type == 3;
aca88567 13387 case EM_ALPHA:
137b6b5f 13388 return reloc_type == 1; /* R_ALPHA_REFLONG. */
41e92641
NC
13389 case EM_ARC:
13390 return reloc_type == 1; /* R_ARC_32. */
886a2506
NC
13391 case EM_ARC_COMPACT:
13392 case EM_ARC_COMPACT2:
13393 return reloc_type == 4; /* R_ARC_32. */
41e92641
NC
13394 case EM_ARM:
13395 return reloc_type == 2; /* R_ARM_ABS32 */
cb8f3167 13396 case EM_AVR_OLD:
aca88567
NC
13397 case EM_AVR:
13398 return reloc_type == 1;
13399 case EM_BLACKFIN:
13400 return reloc_type == 0x12; /* R_byte4_data. */
13401 case EM_CRIS:
13402 return reloc_type == 3; /* R_CRIS_32. */
13403 case EM_CR16:
13404 return reloc_type == 3; /* R_CR16_NUM32. */
13405 case EM_CRX:
13406 return reloc_type == 15; /* R_CRX_NUM32. */
b8891f8d
AJ
13407 case EM_CSKY:
13408 return reloc_type == 1; /* R_CKCORE_ADDR32. */
aca88567
NC
13409 case EM_CYGNUS_FRV:
13410 return reloc_type == 1;
41e92641
NC
13411 case EM_CYGNUS_D10V:
13412 case EM_D10V:
13413 return reloc_type == 6; /* R_D10V_32. */
aca88567
NC
13414 case EM_CYGNUS_D30V:
13415 case EM_D30V:
13416 return reloc_type == 12; /* R_D30V_32_NORMAL. */
41e92641
NC
13417 case EM_DLX:
13418 return reloc_type == 3; /* R_DLX_RELOC_32. */
aca88567
NC
13419 case EM_CYGNUS_FR30:
13420 case EM_FR30:
13421 return reloc_type == 3; /* R_FR30_32. */
3f8107ab
AM
13422 case EM_FT32:
13423 return reloc_type == 1; /* R_FT32_32. */
aca88567
NC
13424 case EM_H8S:
13425 case EM_H8_300:
13426 case EM_H8_300H:
13427 return reloc_type == 1; /* R_H8_DIR32. */
3730236a 13428 case EM_IA_64:
262cdac7
AM
13429 return (reloc_type == 0x64 /* R_IA64_SECREL32MSB. */
13430 || reloc_type == 0x65 /* R_IA64_SECREL32LSB. */
13431 || reloc_type == 0x24 /* R_IA64_DIR32MSB. */
13432 || reloc_type == 0x25 /* R_IA64_DIR32LSB. */);
aca88567
NC
13433 case EM_IP2K_OLD:
13434 case EM_IP2K:
13435 return reloc_type == 2; /* R_IP2K_32. */
13436 case EM_IQ2000:
13437 return reloc_type == 2; /* R_IQ2000_32. */
84e94c90
NC
13438 case EM_LATTICEMICO32:
13439 return reloc_type == 3; /* R_LM32_32. */
ff7eeb89 13440 case EM_M32C_OLD:
aca88567
NC
13441 case EM_M32C:
13442 return reloc_type == 3; /* R_M32C_32. */
13443 case EM_M32R:
13444 return reloc_type == 34; /* R_M32R_32_RELA. */
adec12c1
AM
13445 case EM_68HC11:
13446 case EM_68HC12:
13447 return reloc_type == 6; /* R_M68HC11_32. */
7b4ae824 13448 case EM_S12Z:
2849d19f
JD
13449 return reloc_type == 7 || /* R_S12Z_EXT32 */
13450 reloc_type == 6; /* R_S12Z_CW32. */
aca88567
NC
13451 case EM_MCORE:
13452 return reloc_type == 1; /* R_MCORE_ADDR32. */
13453 case EM_CYGNUS_MEP:
13454 return reloc_type == 4; /* R_MEP_32. */
a3c62988
NC
13455 case EM_METAG:
13456 return reloc_type == 2; /* R_METAG_ADDR32. */
137b6b5f
AM
13457 case EM_MICROBLAZE:
13458 return reloc_type == 1; /* R_MICROBLAZE_32. */
aca88567
NC
13459 case EM_MIPS:
13460 return reloc_type == 2; /* R_MIPS_32. */
13461 case EM_MMIX:
13462 return reloc_type == 4; /* R_MMIX_32. */
13463 case EM_CYGNUS_MN10200:
13464 case EM_MN10200:
13465 return reloc_type == 1; /* R_MN10200_32. */
13466 case EM_CYGNUS_MN10300:
13467 case EM_MN10300:
13468 return reloc_type == 1; /* R_MN10300_32. */
5506d11a
AM
13469 case EM_MOXIE:
13470 return reloc_type == 1; /* R_MOXIE_32. */
aca88567
NC
13471 case EM_MSP430_OLD:
13472 case EM_MSP430:
13761a11 13473 return reloc_type == 1; /* R_MSP430_32 or R_MSP320_ABS32. */
aca88567
NC
13474 case EM_MT:
13475 return reloc_type == 2; /* R_MT_32. */
35c08157
KLC
13476 case EM_NDS32:
13477 return reloc_type == 20; /* R_NDS32_RELA. */
3e0873ac 13478 case EM_ALTERA_NIOS2:
36591ba1 13479 return reloc_type == 12; /* R_NIOS2_BFD_RELOC_32. */
3e0873ac
NC
13480 case EM_NIOS32:
13481 return reloc_type == 1; /* R_NIOS_32. */
73589c9d
CS
13482 case EM_OR1K:
13483 return reloc_type == 1; /* R_OR1K_32. */
aca88567 13484 case EM_PARISC:
9abca702 13485 return (reloc_type == 1 /* R_PARISC_DIR32. */
0df8ad28 13486 || reloc_type == 2 /* R_PARISC_DIR21L. */
5fda8eca 13487 || reloc_type == 41); /* R_PARISC_SECREL32. */
aca88567
NC
13488 case EM_PJ:
13489 case EM_PJ_OLD:
13490 return reloc_type == 1; /* R_PJ_DATA_DIR32. */
13491 case EM_PPC64:
13492 return reloc_type == 1; /* R_PPC64_ADDR32. */
13493 case EM_PPC:
13494 return reloc_type == 1; /* R_PPC_ADDR32. */
2b100bb5
DD
13495 case EM_TI_PRU:
13496 return reloc_type == 11; /* R_PRU_BFD_RELOC_32. */
e23eba97
NC
13497 case EM_RISCV:
13498 return reloc_type == 1; /* R_RISCV_32. */
99c513f6
DD
13499 case EM_RL78:
13500 return reloc_type == 1; /* R_RL78_DIR32. */
c7927a3c
NC
13501 case EM_RX:
13502 return reloc_type == 1; /* R_RX_DIR32. */
f954747f
AM
13503 case EM_S370:
13504 return reloc_type == 1; /* R_I370_ADDR31. */
aca88567
NC
13505 case EM_S390_OLD:
13506 case EM_S390:
13507 return reloc_type == 4; /* R_S390_32. */
41e92641
NC
13508 case EM_SCORE:
13509 return reloc_type == 8; /* R_SCORE_ABS32. */
aca88567
NC
13510 case EM_SH:
13511 return reloc_type == 1; /* R_SH_DIR32. */
13512 case EM_SPARC32PLUS:
13513 case EM_SPARCV9:
13514 case EM_SPARC:
13515 return reloc_type == 3 /* R_SPARC_32. */
13516 || reloc_type == 23; /* R_SPARC_UA32. */
a7dd7d05
AM
13517 case EM_SPU:
13518 return reloc_type == 6; /* R_SPU_ADDR32 */
40b36596
JM
13519 case EM_TI_C6000:
13520 return reloc_type == 1; /* R_C6000_ABS32. */
aa137e4d
NC
13521 case EM_TILEGX:
13522 return reloc_type == 2; /* R_TILEGX_32. */
13523 case EM_TILEPRO:
13524 return reloc_type == 1; /* R_TILEPRO_32. */
aca88567
NC
13525 case EM_CYGNUS_V850:
13526 case EM_V850:
13527 return reloc_type == 6; /* R_V850_ABS32. */
708e2187
NC
13528 case EM_V800:
13529 return reloc_type == 0x33; /* R_V810_WORD. */
aca88567
NC
13530 case EM_VAX:
13531 return reloc_type == 1; /* R_VAX_32. */
619ed720
EB
13532 case EM_VISIUM:
13533 return reloc_type == 3; /* R_VISIUM_32. */
f96bd6c2
PC
13534 case EM_WEBASSEMBLY:
13535 return reloc_type == 1; /* R_WASM32_32. */
aca88567 13536 case EM_X86_64:
8a9036a4 13537 case EM_L1OM:
7a9068fe 13538 case EM_K1OM:
aca88567 13539 return reloc_type == 10; /* R_X86_64_32. */
c29aca4a
NC
13540 case EM_XC16X:
13541 case EM_C166:
13542 return reloc_type == 3; /* R_XC16C_ABS_32. */
f6c1a2d5
NC
13543 case EM_XGATE:
13544 return reloc_type == 4; /* R_XGATE_32. */
aca88567
NC
13545 case EM_XSTORMY16:
13546 return reloc_type == 1; /* R_XSTROMY16_32. */
13547 case EM_XTENSA_OLD:
13548 case EM_XTENSA:
13549 return reloc_type == 1; /* R_XTENSA_32. */
6655dba2
SB
13550 case EM_Z80:
13551 return reloc_type == 6; /* R_Z80_32. */
aca88567 13552 default:
bee0ee85
NC
13553 {
13554 static unsigned int prev_warn = 0;
13555
13556 /* Avoid repeating the same warning multiple times. */
dda8d76d 13557 if (prev_warn != filedata->file_header.e_machine)
bee0ee85 13558 error (_("Missing knowledge of 32-bit reloc types used in DWARF sections of machine number %d\n"),
dda8d76d
NC
13559 filedata->file_header.e_machine);
13560 prev_warn = filedata->file_header.e_machine;
015dc7e1 13561 return false;
bee0ee85 13562 }
aca88567
NC
13563 }
13564}
13565
13566/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13567 a 32-bit pc-relative RELA relocation used in DWARF debug sections. */
13568
015dc7e1 13569static bool
dda8d76d 13570is_32bit_pcrel_reloc (Filedata * filedata, unsigned int reloc_type)
aca88567 13571{
dda8d76d 13572 switch (filedata->file_header.e_machine)
d347c9df 13573 /* Please keep this table alpha-sorted for ease of visual lookup. */
aca88567 13574 {
41e92641 13575 case EM_386:
22abe556 13576 case EM_IAMCU:
3e0873ac 13577 return reloc_type == 2; /* R_386_PC32. */
aca88567 13578 case EM_68K:
3e0873ac 13579 return reloc_type == 4; /* R_68K_PC32. */
a06ea964
NC
13580 case EM_AARCH64:
13581 return reloc_type == 261; /* R_AARCH64_PREL32 */
cfb8c092
NC
13582 case EM_ADAPTEVA_EPIPHANY:
13583 return reloc_type == 6;
aca88567
NC
13584 case EM_ALPHA:
13585 return reloc_type == 10; /* R_ALPHA_SREL32. */
726c18e1
CZ
13586 case EM_ARC_COMPACT:
13587 case EM_ARC_COMPACT2:
13588 return reloc_type == 49; /* R_ARC_32_PCREL. */
41e92641 13589 case EM_ARM:
3e0873ac 13590 return reloc_type == 3; /* R_ARM_REL32 */
d347c9df
PS
13591 case EM_AVR_OLD:
13592 case EM_AVR:
13593 return reloc_type == 36; /* R_AVR_32_PCREL. */
137b6b5f
AM
13594 case EM_MICROBLAZE:
13595 return reloc_type == 2; /* R_MICROBLAZE_32_PCREL. */
73589c9d
CS
13596 case EM_OR1K:
13597 return reloc_type == 9; /* R_OR1K_32_PCREL. */
aca88567 13598 case EM_PARISC:
85acf597 13599 return reloc_type == 9; /* R_PARISC_PCREL32. */
aca88567
NC
13600 case EM_PPC:
13601 return reloc_type == 26; /* R_PPC_REL32. */
13602 case EM_PPC64:
3e0873ac 13603 return reloc_type == 26; /* R_PPC64_REL32. */
25cbdcbb
AS
13604 case EM_RISCV:
13605 return reloc_type == 57; /* R_RISCV_32_PCREL. */
aca88567
NC
13606 case EM_S390_OLD:
13607 case EM_S390:
3e0873ac 13608 return reloc_type == 5; /* R_390_PC32. */
aca88567 13609 case EM_SH:
3e0873ac 13610 return reloc_type == 2; /* R_SH_REL32. */
aca88567
NC
13611 case EM_SPARC32PLUS:
13612 case EM_SPARCV9:
13613 case EM_SPARC:
3e0873ac 13614 return reloc_type == 6; /* R_SPARC_DISP32. */
a7dd7d05
AM
13615 case EM_SPU:
13616 return reloc_type == 13; /* R_SPU_REL32. */
aa137e4d
NC
13617 case EM_TILEGX:
13618 return reloc_type == 6; /* R_TILEGX_32_PCREL. */
13619 case EM_TILEPRO:
13620 return reloc_type == 4; /* R_TILEPRO_32_PCREL. */
619ed720
EB
13621 case EM_VISIUM:
13622 return reloc_type == 6; /* R_VISIUM_32_PCREL */
aca88567 13623 case EM_X86_64:
8a9036a4 13624 case EM_L1OM:
7a9068fe 13625 case EM_K1OM:
3e0873ac 13626 return reloc_type == 2; /* R_X86_64_PC32. */
2057d69d
CZ
13627 case EM_VAX:
13628 return reloc_type == 4; /* R_VAX_PCREL32. */
2fcb9706
BW
13629 case EM_XTENSA_OLD:
13630 case EM_XTENSA:
13631 return reloc_type == 14; /* R_XTENSA_32_PCREL. */
aca88567
NC
13632 default:
13633 /* Do not abort or issue an error message here. Not all targets use
13634 pc-relative 32-bit relocs in their DWARF debug information and we
13635 have already tested for target coverage in is_32bit_abs_reloc. A
cf13d699
NC
13636 more helpful warning message will be generated by apply_relocations
13637 anyway, so just return. */
015dc7e1 13638 return false;
aca88567
NC
13639 }
13640}
13641
13642/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13643 a 64-bit absolute RELA relocation used in DWARF debug sections. */
13644
015dc7e1 13645static bool
dda8d76d 13646is_64bit_abs_reloc (Filedata * filedata, unsigned int reloc_type)
aca88567 13647{
dda8d76d 13648 switch (filedata->file_header.e_machine)
aca88567 13649 {
a06ea964
NC
13650 case EM_AARCH64:
13651 return reloc_type == 257; /* R_AARCH64_ABS64. */
aca88567
NC
13652 case EM_ALPHA:
13653 return reloc_type == 2; /* R_ALPHA_REFQUAD. */
3730236a 13654 case EM_IA_64:
262cdac7
AM
13655 return (reloc_type == 0x26 /* R_IA64_DIR64MSB. */
13656 || reloc_type == 0x27 /* R_IA64_DIR64LSB. */);
3e0873ac
NC
13657 case EM_PARISC:
13658 return reloc_type == 80; /* R_PARISC_DIR64. */
aca88567
NC
13659 case EM_PPC64:
13660 return reloc_type == 38; /* R_PPC64_ADDR64. */
e23eba97
NC
13661 case EM_RISCV:
13662 return reloc_type == 2; /* R_RISCV_64. */
aca88567
NC
13663 case EM_SPARC32PLUS:
13664 case EM_SPARCV9:
13665 case EM_SPARC:
714da62f
NC
13666 return reloc_type == 32 /* R_SPARC_64. */
13667 || reloc_type == 54; /* R_SPARC_UA64. */
aca88567 13668 case EM_X86_64:
8a9036a4 13669 case EM_L1OM:
7a9068fe 13670 case EM_K1OM:
aca88567 13671 return reloc_type == 1; /* R_X86_64_64. */
e819ade1
AS
13672 case EM_S390_OLD:
13673 case EM_S390:
aa137e4d
NC
13674 return reloc_type == 22; /* R_S390_64. */
13675 case EM_TILEGX:
13676 return reloc_type == 1; /* R_TILEGX_64. */
85a82265 13677 case EM_MIPS:
aa137e4d 13678 return reloc_type == 18; /* R_MIPS_64. */
aca88567 13679 default:
015dc7e1 13680 return false;
aca88567
NC
13681 }
13682}
13683
85acf597
RH
13684/* Like is_32bit_pcrel_reloc except that it returns TRUE iff RELOC_TYPE is
13685 a 64-bit pc-relative RELA relocation used in DWARF debug sections. */
13686
015dc7e1 13687static bool
dda8d76d 13688is_64bit_pcrel_reloc (Filedata * filedata, unsigned int reloc_type)
85acf597 13689{
dda8d76d 13690 switch (filedata->file_header.e_machine)
85acf597 13691 {
a06ea964
NC
13692 case EM_AARCH64:
13693 return reloc_type == 260; /* R_AARCH64_PREL64. */
85acf597 13694 case EM_ALPHA:
aa137e4d 13695 return reloc_type == 11; /* R_ALPHA_SREL64. */
85acf597 13696 case EM_IA_64:
262cdac7
AM
13697 return (reloc_type == 0x4e /* R_IA64_PCREL64MSB. */
13698 || reloc_type == 0x4f /* R_IA64_PCREL64LSB. */);
85acf597 13699 case EM_PARISC:
aa137e4d 13700 return reloc_type == 72; /* R_PARISC_PCREL64. */
85acf597 13701 case EM_PPC64:
aa137e4d 13702 return reloc_type == 44; /* R_PPC64_REL64. */
85acf597
RH
13703 case EM_SPARC32PLUS:
13704 case EM_SPARCV9:
13705 case EM_SPARC:
aa137e4d 13706 return reloc_type == 46; /* R_SPARC_DISP64. */
85acf597 13707 case EM_X86_64:
8a9036a4 13708 case EM_L1OM:
7a9068fe 13709 case EM_K1OM:
aa137e4d 13710 return reloc_type == 24; /* R_X86_64_PC64. */
85acf597
RH
13711 case EM_S390_OLD:
13712 case EM_S390:
aa137e4d
NC
13713 return reloc_type == 23; /* R_S390_PC64. */
13714 case EM_TILEGX:
13715 return reloc_type == 5; /* R_TILEGX_64_PCREL. */
85acf597 13716 default:
015dc7e1 13717 return false;
85acf597
RH
13718 }
13719}
13720
4dc3c23d
AM
13721/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13722 a 24-bit absolute RELA relocation used in DWARF debug sections. */
13723
015dc7e1 13724static bool
dda8d76d 13725is_24bit_abs_reloc (Filedata * filedata, unsigned int reloc_type)
4dc3c23d 13726{
dda8d76d 13727 switch (filedata->file_header.e_machine)
4dc3c23d
AM
13728 {
13729 case EM_CYGNUS_MN10200:
13730 case EM_MN10200:
13731 return reloc_type == 4; /* R_MN10200_24. */
3ee6e4fb
NC
13732 case EM_FT32:
13733 return reloc_type == 5; /* R_FT32_20. */
6655dba2
SB
13734 case EM_Z80:
13735 return reloc_type == 5; /* R_Z80_24. */
4dc3c23d 13736 default:
015dc7e1 13737 return false;
4dc3c23d
AM
13738 }
13739}
13740
aca88567
NC
13741/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13742 a 16-bit absolute RELA relocation used in DWARF debug sections. */
13743
015dc7e1 13744static bool
dda8d76d 13745is_16bit_abs_reloc (Filedata * filedata, unsigned int reloc_type)
4b78141a 13746{
d347c9df 13747 /* Please keep this table alpha-sorted for ease of visual lookup. */
dda8d76d 13748 switch (filedata->file_header.e_machine)
4b78141a 13749 {
886a2506
NC
13750 case EM_ARC:
13751 case EM_ARC_COMPACT:
13752 case EM_ARC_COMPACT2:
13753 return reloc_type == 2; /* R_ARC_16. */
d347c9df
PS
13754 case EM_ADAPTEVA_EPIPHANY:
13755 return reloc_type == 5;
aca88567
NC
13756 case EM_AVR_OLD:
13757 case EM_AVR:
13758 return reloc_type == 4; /* R_AVR_16. */
41e92641
NC
13759 case EM_CYGNUS_D10V:
13760 case EM_D10V:
13761 return reloc_type == 3; /* R_D10V_16. */
81b42bca
JB
13762 case EM_FT32:
13763 return reloc_type == 2; /* R_FT32_16. */
4b78141a
NC
13764 case EM_H8S:
13765 case EM_H8_300:
13766 case EM_H8_300H:
aca88567
NC
13767 return reloc_type == R_H8_DIR16;
13768 case EM_IP2K_OLD:
13769 case EM_IP2K:
13770 return reloc_type == 1; /* R_IP2K_16. */
ff7eeb89 13771 case EM_M32C_OLD:
f4236fe4
DD
13772 case EM_M32C:
13773 return reloc_type == 1; /* R_M32C_16 */
d347c9df
PS
13774 case EM_CYGNUS_MN10200:
13775 case EM_MN10200:
13776 return reloc_type == 2; /* R_MN10200_16. */
13777 case EM_CYGNUS_MN10300:
13778 case EM_MN10300:
13779 return reloc_type == 2; /* R_MN10300_16. */
aca88567 13780 case EM_MSP430:
dda8d76d 13781 if (uses_msp430x_relocs (filedata))
13761a11 13782 return reloc_type == 2; /* R_MSP430_ABS16. */
1a0670f3 13783 /* Fall through. */
78c8d46c 13784 case EM_MSP430_OLD:
aca88567 13785 return reloc_type == 5; /* R_MSP430_16_BYTE. */
35c08157
KLC
13786 case EM_NDS32:
13787 return reloc_type == 19; /* R_NDS32_RELA. */
3e0873ac 13788 case EM_ALTERA_NIOS2:
36591ba1 13789 return reloc_type == 13; /* R_NIOS2_BFD_RELOC_16. */
3e0873ac
NC
13790 case EM_NIOS32:
13791 return reloc_type == 9; /* R_NIOS_16. */
73589c9d
CS
13792 case EM_OR1K:
13793 return reloc_type == 2; /* R_OR1K_16. */
39e07931
AS
13794 case EM_RISCV:
13795 return reloc_type == 55; /* R_RISCV_SET16. */
2b100bb5
DD
13796 case EM_TI_PRU:
13797 return reloc_type == 8; /* R_PRU_BFD_RELOC_16. */
40b36596
JM
13798 case EM_TI_C6000:
13799 return reloc_type == 2; /* R_C6000_ABS16. */
d347c9df
PS
13800 case EM_VISIUM:
13801 return reloc_type == 2; /* R_VISIUM_16. */
c29aca4a
NC
13802 case EM_XC16X:
13803 case EM_C166:
13804 return reloc_type == 2; /* R_XC16C_ABS_16. */
f6c1a2d5
NC
13805 case EM_XGATE:
13806 return reloc_type == 3; /* R_XGATE_16. */
6655dba2
SB
13807 case EM_Z80:
13808 return reloc_type == 4; /* R_Z80_16. */
4b78141a 13809 default:
015dc7e1 13810 return false;
4b78141a
NC
13811 }
13812}
13813
39e07931
AS
13814/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13815 a 8-bit absolute RELA relocation used in DWARF debug sections. */
13816
015dc7e1 13817static bool
39e07931
AS
13818is_8bit_abs_reloc (Filedata * filedata, unsigned int reloc_type)
13819{
13820 switch (filedata->file_header.e_machine)
13821 {
13822 case EM_RISCV:
13823 return reloc_type == 54; /* R_RISCV_SET8. */
6655dba2
SB
13824 case EM_Z80:
13825 return reloc_type == 1; /* R_Z80_8. */
39e07931 13826 default:
015dc7e1 13827 return false;
39e07931
AS
13828 }
13829}
13830
13831/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13832 a 6-bit absolute RELA relocation used in DWARF debug sections. */
13833
015dc7e1 13834static bool
39e07931
AS
13835is_6bit_abs_reloc (Filedata * filedata, unsigned int reloc_type)
13836{
13837 switch (filedata->file_header.e_machine)
13838 {
13839 case EM_RISCV:
13840 return reloc_type == 53; /* R_RISCV_SET6. */
13841 default:
015dc7e1 13842 return false;
39e07931
AS
13843 }
13844}
13845
03336641
JW
13846/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13847 a 32-bit inplace add RELA relocation used in DWARF debug sections. */
13848
015dc7e1 13849static bool
03336641
JW
13850is_32bit_inplace_add_reloc (Filedata * filedata, unsigned int reloc_type)
13851{
13852 /* Please keep this table alpha-sorted for ease of visual lookup. */
13853 switch (filedata->file_header.e_machine)
13854 {
13855 case EM_RISCV:
13856 return reloc_type == 35; /* R_RISCV_ADD32. */
13857 default:
015dc7e1 13858 return false;
03336641
JW
13859 }
13860}
13861
13862/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13863 a 32-bit inplace sub RELA relocation used in DWARF debug sections. */
13864
015dc7e1 13865static bool
03336641
JW
13866is_32bit_inplace_sub_reloc (Filedata * filedata, unsigned int reloc_type)
13867{
13868 /* Please keep this table alpha-sorted for ease of visual lookup. */
13869 switch (filedata->file_header.e_machine)
13870 {
13871 case EM_RISCV:
13872 return reloc_type == 39; /* R_RISCV_SUB32. */
13873 default:
015dc7e1 13874 return false;
03336641
JW
13875 }
13876}
13877
13878/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13879 a 64-bit inplace add RELA relocation used in DWARF debug sections. */
13880
015dc7e1 13881static bool
03336641
JW
13882is_64bit_inplace_add_reloc (Filedata * filedata, unsigned int reloc_type)
13883{
13884 /* Please keep this table alpha-sorted for ease of visual lookup. */
13885 switch (filedata->file_header.e_machine)
13886 {
13887 case EM_RISCV:
13888 return reloc_type == 36; /* R_RISCV_ADD64. */
13889 default:
015dc7e1 13890 return false;
03336641
JW
13891 }
13892}
13893
13894/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13895 a 64-bit inplace sub RELA relocation used in DWARF debug sections. */
13896
015dc7e1 13897static bool
03336641
JW
13898is_64bit_inplace_sub_reloc (Filedata * filedata, unsigned int reloc_type)
13899{
13900 /* Please keep this table alpha-sorted for ease of visual lookup. */
13901 switch (filedata->file_header.e_machine)
13902 {
13903 case EM_RISCV:
13904 return reloc_type == 40; /* R_RISCV_SUB64. */
13905 default:
015dc7e1 13906 return false;
03336641
JW
13907 }
13908}
13909
13910/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13911 a 16-bit inplace add RELA relocation used in DWARF debug sections. */
13912
015dc7e1 13913static bool
03336641
JW
13914is_16bit_inplace_add_reloc (Filedata * filedata, unsigned int reloc_type)
13915{
13916 /* Please keep this table alpha-sorted for ease of visual lookup. */
13917 switch (filedata->file_header.e_machine)
13918 {
13919 case EM_RISCV:
13920 return reloc_type == 34; /* R_RISCV_ADD16. */
13921 default:
015dc7e1 13922 return false;
03336641
JW
13923 }
13924}
13925
13926/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13927 a 16-bit inplace sub RELA relocation used in DWARF debug sections. */
13928
015dc7e1 13929static bool
03336641
JW
13930is_16bit_inplace_sub_reloc (Filedata * filedata, unsigned int reloc_type)
13931{
13932 /* Please keep this table alpha-sorted for ease of visual lookup. */
13933 switch (filedata->file_header.e_machine)
13934 {
13935 case EM_RISCV:
13936 return reloc_type == 38; /* R_RISCV_SUB16. */
13937 default:
015dc7e1 13938 return false;
03336641
JW
13939 }
13940}
13941
13942/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13943 a 8-bit inplace add RELA relocation used in DWARF debug sections. */
13944
015dc7e1 13945static bool
03336641
JW
13946is_8bit_inplace_add_reloc (Filedata * filedata, unsigned int reloc_type)
13947{
13948 /* Please keep this table alpha-sorted for ease of visual lookup. */
13949 switch (filedata->file_header.e_machine)
13950 {
13951 case EM_RISCV:
13952 return reloc_type == 33; /* R_RISCV_ADD8. */
13953 default:
015dc7e1 13954 return false;
03336641
JW
13955 }
13956}
13957
13958/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13959 a 8-bit inplace sub RELA relocation used in DWARF debug sections. */
13960
015dc7e1 13961static bool
03336641
JW
13962is_8bit_inplace_sub_reloc (Filedata * filedata, unsigned int reloc_type)
13963{
13964 /* Please keep this table alpha-sorted for ease of visual lookup. */
13965 switch (filedata->file_header.e_machine)
13966 {
13967 case EM_RISCV:
13968 return reloc_type == 37; /* R_RISCV_SUB8. */
13969 default:
015dc7e1 13970 return false;
03336641
JW
13971 }
13972}
13973
39e07931
AS
13974/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13975 a 6-bit inplace sub RELA relocation used in DWARF debug sections. */
13976
015dc7e1 13977static bool
39e07931
AS
13978is_6bit_inplace_sub_reloc (Filedata * filedata, unsigned int reloc_type)
13979{
13980 switch (filedata->file_header.e_machine)
13981 {
13982 case EM_RISCV:
13983 return reloc_type == 52; /* R_RISCV_SUB6. */
13984 default:
015dc7e1 13985 return false;
39e07931
AS
13986 }
13987}
13988
2a7b2e88
JK
13989/* Returns TRUE iff RELOC_TYPE is a NONE relocation used for discarded
13990 relocation entries (possibly formerly used for SHT_GROUP sections). */
13991
015dc7e1 13992static bool
dda8d76d 13993is_none_reloc (Filedata * filedata, unsigned int reloc_type)
2a7b2e88 13994{
dda8d76d 13995 switch (filedata->file_header.e_machine)
2a7b2e88 13996 {
cb8f3167 13997 case EM_386: /* R_386_NONE. */
d347c9df 13998 case EM_68K: /* R_68K_NONE. */
cfb8c092 13999 case EM_ADAPTEVA_EPIPHANY:
d347c9df
PS
14000 case EM_ALPHA: /* R_ALPHA_NONE. */
14001 case EM_ALTERA_NIOS2: /* R_NIOS2_NONE. */
886a2506 14002 case EM_ARC: /* R_ARC_NONE. */
886a2506 14003 case EM_ARC_COMPACT2: /* R_ARC_NONE. */
d347c9df 14004 case EM_ARC_COMPACT: /* R_ARC_NONE. */
cb8f3167 14005 case EM_ARM: /* R_ARM_NONE. */
d347c9df 14006 case EM_C166: /* R_XC16X_NONE. */
cb8f3167 14007 case EM_CRIS: /* R_CRIS_NONE. */
d347c9df
PS
14008 case EM_FT32: /* R_FT32_NONE. */
14009 case EM_IA_64: /* R_IA64_NONE. */
7a9068fe 14010 case EM_K1OM: /* R_X86_64_NONE. */
d347c9df
PS
14011 case EM_L1OM: /* R_X86_64_NONE. */
14012 case EM_M32R: /* R_M32R_NONE. */
14013 case EM_MIPS: /* R_MIPS_NONE. */
cb8f3167 14014 case EM_MN10300: /* R_MN10300_NONE. */
5506d11a 14015 case EM_MOXIE: /* R_MOXIE_NONE. */
d347c9df
PS
14016 case EM_NIOS32: /* R_NIOS_NONE. */
14017 case EM_OR1K: /* R_OR1K_NONE. */
14018 case EM_PARISC: /* R_PARISC_NONE. */
14019 case EM_PPC64: /* R_PPC64_NONE. */
14020 case EM_PPC: /* R_PPC_NONE. */
e23eba97 14021 case EM_RISCV: /* R_RISCV_NONE. */
d347c9df
PS
14022 case EM_S390: /* R_390_NONE. */
14023 case EM_S390_OLD:
14024 case EM_SH: /* R_SH_NONE. */
14025 case EM_SPARC32PLUS:
14026 case EM_SPARC: /* R_SPARC_NONE. */
14027 case EM_SPARCV9:
aa137e4d
NC
14028 case EM_TILEGX: /* R_TILEGX_NONE. */
14029 case EM_TILEPRO: /* R_TILEPRO_NONE. */
d347c9df
PS
14030 case EM_TI_C6000:/* R_C6000_NONE. */
14031 case EM_X86_64: /* R_X86_64_NONE. */
c29aca4a 14032 case EM_XC16X:
6655dba2 14033 case EM_Z80: /* R_Z80_NONE. */
f96bd6c2 14034 case EM_WEBASSEMBLY: /* R_WASM32_NONE. */
cb8f3167 14035 return reloc_type == 0;
d347c9df 14036
a06ea964
NC
14037 case EM_AARCH64:
14038 return reloc_type == 0 || reloc_type == 256;
d347c9df
PS
14039 case EM_AVR_OLD:
14040 case EM_AVR:
14041 return (reloc_type == 0 /* R_AVR_NONE. */
14042 || reloc_type == 30 /* R_AVR_DIFF8. */
14043 || reloc_type == 31 /* R_AVR_DIFF16. */
14044 || reloc_type == 32 /* R_AVR_DIFF32. */);
14045 case EM_METAG:
14046 return reloc_type == 3; /* R_METAG_NONE. */
35c08157
KLC
14047 case EM_NDS32:
14048 return (reloc_type == 0 /* R_XTENSA_NONE. */
14049 || reloc_type == 204 /* R_NDS32_DIFF8. */
14050 || reloc_type == 205 /* R_NDS32_DIFF16. */
14051 || reloc_type == 206 /* R_NDS32_DIFF32. */
14052 || reloc_type == 207 /* R_NDS32_ULEB128. */);
2b100bb5
DD
14053 case EM_TI_PRU:
14054 return (reloc_type == 0 /* R_PRU_NONE. */
14055 || reloc_type == 65 /* R_PRU_DIFF8. */
14056 || reloc_type == 66 /* R_PRU_DIFF16. */
14057 || reloc_type == 67 /* R_PRU_DIFF32. */);
58332dda
JK
14058 case EM_XTENSA_OLD:
14059 case EM_XTENSA:
4dc3c23d
AM
14060 return (reloc_type == 0 /* R_XTENSA_NONE. */
14061 || reloc_type == 17 /* R_XTENSA_DIFF8. */
14062 || reloc_type == 18 /* R_XTENSA_DIFF16. */
30ce8e47
MF
14063 || reloc_type == 19 /* R_XTENSA_DIFF32. */
14064 || reloc_type == 57 /* R_XTENSA_PDIFF8. */
14065 || reloc_type == 58 /* R_XTENSA_PDIFF16. */
14066 || reloc_type == 59 /* R_XTENSA_PDIFF32. */
14067 || reloc_type == 60 /* R_XTENSA_NDIFF8. */
14068 || reloc_type == 61 /* R_XTENSA_NDIFF16. */
14069 || reloc_type == 62 /* R_XTENSA_NDIFF32. */);
2a7b2e88 14070 }
015dc7e1 14071 return false;
2a7b2e88
JK
14072}
14073
d1c4b12b
NC
14074/* Returns TRUE if there is a relocation against
14075 section NAME at OFFSET bytes. */
14076
015dc7e1 14077bool
d1c4b12b
NC
14078reloc_at (struct dwarf_section * dsec, dwarf_vma offset)
14079{
14080 Elf_Internal_Rela * relocs;
14081 Elf_Internal_Rela * rp;
14082
14083 if (dsec == NULL || dsec->reloc_info == NULL)
015dc7e1 14084 return false;
d1c4b12b
NC
14085
14086 relocs = (Elf_Internal_Rela *) dsec->reloc_info;
14087
14088 for (rp = relocs; rp < relocs + dsec->num_relocs; ++rp)
14089 if (rp->r_offset == offset)
015dc7e1 14090 return true;
d1c4b12b 14091
015dc7e1 14092 return false;
d1c4b12b
NC
14093}
14094
cf13d699 14095/* Apply relocations to a section.
32ec8896
NC
14096 Returns TRUE upon success, FALSE otherwise.
14097 If RELOCS_RETURN is non-NULL then it is set to point to the loaded relocs.
14098 It is then the caller's responsibility to free them. NUM_RELOCS_RETURN
14099 will be set to the number of relocs loaded.
14100
cf13d699 14101 Note: So far support has been added only for those relocations
32ec8896
NC
14102 which can be found in debug sections. FIXME: Add support for
14103 more relocations ? */
1b315056 14104
015dc7e1 14105static bool
dda8d76d 14106apply_relocations (Filedata * filedata,
d1c4b12b
NC
14107 const Elf_Internal_Shdr * section,
14108 unsigned char * start,
14109 bfd_size_type size,
1449284b 14110 void ** relocs_return,
d1c4b12b 14111 unsigned long * num_relocs_return)
1b315056 14112{
cf13d699 14113 Elf_Internal_Shdr * relsec;
0d2a7a93 14114 unsigned char * end = start + size;
cb8f3167 14115
d1c4b12b
NC
14116 if (relocs_return != NULL)
14117 {
14118 * (Elf_Internal_Rela **) relocs_return = NULL;
14119 * num_relocs_return = 0;
14120 }
14121
dda8d76d 14122 if (filedata->file_header.e_type != ET_REL)
32ec8896 14123 /* No relocs to apply. */
015dc7e1 14124 return true;
1b315056 14125
cf13d699 14126 /* Find the reloc section associated with the section. */
dda8d76d
NC
14127 for (relsec = filedata->section_headers;
14128 relsec < filedata->section_headers + filedata->file_header.e_shnum;
5b18a4bc 14129 ++relsec)
252b5132 14130 {
015dc7e1 14131 bool is_rela;
41e92641 14132 unsigned long num_relocs;
2cf0635d
NC
14133 Elf_Internal_Rela * relocs;
14134 Elf_Internal_Rela * rp;
14135 Elf_Internal_Shdr * symsec;
14136 Elf_Internal_Sym * symtab;
ba5cdace 14137 unsigned long num_syms;
2cf0635d 14138 Elf_Internal_Sym * sym;
252b5132 14139
41e92641 14140 if ((relsec->sh_type != SHT_RELA && relsec->sh_type != SHT_REL)
dda8d76d
NC
14141 || relsec->sh_info >= filedata->file_header.e_shnum
14142 || filedata->section_headers + relsec->sh_info != section
c256ffe7 14143 || relsec->sh_size == 0
dda8d76d 14144 || relsec->sh_link >= filedata->file_header.e_shnum)
5b18a4bc 14145 continue;
428409d5 14146
a788aedd
AM
14147 symsec = filedata->section_headers + relsec->sh_link;
14148 if (symsec->sh_type != SHT_SYMTAB
14149 && symsec->sh_type != SHT_DYNSYM)
015dc7e1 14150 return false;
a788aedd 14151
41e92641
NC
14152 is_rela = relsec->sh_type == SHT_RELA;
14153
14154 if (is_rela)
14155 {
dda8d76d 14156 if (!slurp_rela_relocs (filedata, relsec->sh_offset,
3f5e193b 14157 relsec->sh_size, & relocs, & num_relocs))
015dc7e1 14158 return false;
41e92641
NC
14159 }
14160 else
14161 {
dda8d76d 14162 if (!slurp_rel_relocs (filedata, relsec->sh_offset,
3f5e193b 14163 relsec->sh_size, & relocs, & num_relocs))
015dc7e1 14164 return false;
41e92641
NC
14165 }
14166
14167 /* SH uses RELA but uses in place value instead of the addend field. */
dda8d76d 14168 if (filedata->file_header.e_machine == EM_SH)
015dc7e1 14169 is_rela = false;
428409d5 14170
dda8d76d 14171 symtab = GET_ELF_SYMBOLS (filedata, symsec, & num_syms);
103f02d3 14172
41e92641 14173 for (rp = relocs; rp < relocs + num_relocs; ++rp)
252b5132 14174 {
015dc7e1
AM
14175 bfd_vma addend;
14176 unsigned int reloc_type;
14177 unsigned int reloc_size;
14178 bool reloc_inplace = false;
14179 bool reloc_subtract = false;
14180 unsigned char *rloc;
14181 unsigned long sym_index;
4b78141a 14182
dda8d76d 14183 reloc_type = get_reloc_type (filedata, rp->r_info);
41e92641 14184
dda8d76d 14185 if (target_specific_reloc_handling (filedata, rp, start, end, symtab, num_syms))
2a7b2e88 14186 continue;
dda8d76d 14187 else if (is_none_reloc (filedata, reloc_type))
98fb390a 14188 continue;
dda8d76d
NC
14189 else if (is_32bit_abs_reloc (filedata, reloc_type)
14190 || is_32bit_pcrel_reloc (filedata, reloc_type))
aca88567 14191 reloc_size = 4;
dda8d76d
NC
14192 else if (is_64bit_abs_reloc (filedata, reloc_type)
14193 || is_64bit_pcrel_reloc (filedata, reloc_type))
aca88567 14194 reloc_size = 8;
dda8d76d 14195 else if (is_24bit_abs_reloc (filedata, reloc_type))
4dc3c23d 14196 reloc_size = 3;
dda8d76d 14197 else if (is_16bit_abs_reloc (filedata, reloc_type))
aca88567 14198 reloc_size = 2;
39e07931
AS
14199 else if (is_8bit_abs_reloc (filedata, reloc_type)
14200 || is_6bit_abs_reloc (filedata, reloc_type))
14201 reloc_size = 1;
03336641
JW
14202 else if ((reloc_subtract = is_32bit_inplace_sub_reloc (filedata,
14203 reloc_type))
14204 || is_32bit_inplace_add_reloc (filedata, reloc_type))
14205 {
14206 reloc_size = 4;
015dc7e1 14207 reloc_inplace = true;
03336641
JW
14208 }
14209 else if ((reloc_subtract = is_64bit_inplace_sub_reloc (filedata,
14210 reloc_type))
14211 || is_64bit_inplace_add_reloc (filedata, reloc_type))
14212 {
14213 reloc_size = 8;
015dc7e1 14214 reloc_inplace = true;
03336641
JW
14215 }
14216 else if ((reloc_subtract = is_16bit_inplace_sub_reloc (filedata,
14217 reloc_type))
14218 || is_16bit_inplace_add_reloc (filedata, reloc_type))
14219 {
14220 reloc_size = 2;
015dc7e1 14221 reloc_inplace = true;
03336641
JW
14222 }
14223 else if ((reloc_subtract = is_8bit_inplace_sub_reloc (filedata,
14224 reloc_type))
14225 || is_8bit_inplace_add_reloc (filedata, reloc_type))
14226 {
14227 reloc_size = 1;
015dc7e1 14228 reloc_inplace = true;
03336641 14229 }
39e07931
AS
14230 else if ((reloc_subtract = is_6bit_inplace_sub_reloc (filedata,
14231 reloc_type)))
14232 {
14233 reloc_size = 1;
015dc7e1 14234 reloc_inplace = true;
39e07931 14235 }
aca88567 14236 else
4b78141a 14237 {
bee0ee85 14238 static unsigned int prev_reloc = 0;
dda8d76d 14239
bee0ee85
NC
14240 if (reloc_type != prev_reloc)
14241 warn (_("unable to apply unsupported reloc type %d to section %s\n"),
dda8d76d 14242 reloc_type, printable_section_name (filedata, section));
bee0ee85 14243 prev_reloc = reloc_type;
4b78141a
NC
14244 continue;
14245 }
103f02d3 14246
91d6fa6a 14247 rloc = start + rp->r_offset;
75802ccb 14248 if (!IN_RANGE (start, end, rloc, reloc_size))
700dd8b7
L
14249 {
14250 warn (_("skipping invalid relocation offset 0x%lx in section %s\n"),
14251 (unsigned long) rp->r_offset,
dda8d76d 14252 printable_section_name (filedata, section));
700dd8b7
L
14253 continue;
14254 }
103f02d3 14255
ba5cdace
NC
14256 sym_index = (unsigned long) get_reloc_symindex (rp->r_info);
14257 if (sym_index >= num_syms)
14258 {
14259 warn (_("skipping invalid relocation symbol index 0x%lx in section %s\n"),
dda8d76d 14260 sym_index, printable_section_name (filedata, section));
ba5cdace
NC
14261 continue;
14262 }
14263 sym = symtab + sym_index;
41e92641
NC
14264
14265 /* If the reloc has a symbol associated with it,
55f25fc3
L
14266 make sure that it is of an appropriate type.
14267
14268 Relocations against symbols without type can happen.
14269 Gcc -feliminate-dwarf2-dups may generate symbols
14270 without type for debug info.
14271
14272 Icc generates relocations against function symbols
14273 instead of local labels.
14274
14275 Relocations against object symbols can happen, eg when
14276 referencing a global array. For an example of this see
14277 the _clz.o binary in libgcc.a. */
aca88567 14278 if (sym != symtab
b8871f35 14279 && ELF_ST_TYPE (sym->st_info) != STT_COMMON
55f25fc3 14280 && ELF_ST_TYPE (sym->st_info) > STT_SECTION)
5b18a4bc 14281 {
d3a49aa8 14282 warn (_("skipping unexpected symbol type %s in section %s relocation %ld\n"),
dda8d76d
NC
14283 get_symbol_type (filedata, ELF_ST_TYPE (sym->st_info)),
14284 printable_section_name (filedata, relsec),
d3a49aa8 14285 (long int)(rp - relocs));
aca88567 14286 continue;
5b18a4bc 14287 }
252b5132 14288
4dc3c23d
AM
14289 addend = 0;
14290 if (is_rela)
14291 addend += rp->r_addend;
c47320c3
AM
14292 /* R_XTENSA_32, R_PJ_DATA_DIR32 and R_D30V_32_NORMAL are
14293 partial_inplace. */
4dc3c23d 14294 if (!is_rela
dda8d76d 14295 || (filedata->file_header.e_machine == EM_XTENSA
4dc3c23d 14296 && reloc_type == 1)
dda8d76d
NC
14297 || ((filedata->file_header.e_machine == EM_PJ
14298 || filedata->file_header.e_machine == EM_PJ_OLD)
c47320c3 14299 && reloc_type == 1)
dda8d76d
NC
14300 || ((filedata->file_header.e_machine == EM_D30V
14301 || filedata->file_header.e_machine == EM_CYGNUS_D30V)
03336641
JW
14302 && reloc_type == 12)
14303 || reloc_inplace)
39e07931
AS
14304 {
14305 if (is_6bit_inplace_sub_reloc (filedata, reloc_type))
14306 addend += byte_get (rloc, reloc_size) & 0x3f;
14307 else
14308 addend += byte_get (rloc, reloc_size);
14309 }
cb8f3167 14310
dda8d76d
NC
14311 if (is_32bit_pcrel_reloc (filedata, reloc_type)
14312 || is_64bit_pcrel_reloc (filedata, reloc_type))
85acf597
RH
14313 {
14314 /* On HPPA, all pc-relative relocations are biased by 8. */
dda8d76d 14315 if (filedata->file_header.e_machine == EM_PARISC)
85acf597 14316 addend -= 8;
91d6fa6a 14317 byte_put (rloc, (addend + sym->st_value) - rp->r_offset,
85acf597
RH
14318 reloc_size);
14319 }
39e07931
AS
14320 else if (is_6bit_abs_reloc (filedata, reloc_type)
14321 || is_6bit_inplace_sub_reloc (filedata, reloc_type))
14322 {
14323 if (reloc_subtract)
14324 addend -= sym->st_value;
14325 else
14326 addend += sym->st_value;
14327 addend = (addend & 0x3f) | (byte_get (rloc, reloc_size) & 0xc0);
14328 byte_put (rloc, addend, reloc_size);
14329 }
03336641
JW
14330 else if (reloc_subtract)
14331 byte_put (rloc, addend - sym->st_value, reloc_size);
41e92641 14332 else
91d6fa6a 14333 byte_put (rloc, addend + sym->st_value, reloc_size);
5b18a4bc 14334 }
252b5132 14335
5b18a4bc 14336 free (symtab);
f84ce13b
NC
14337 /* Let the target specific reloc processing code know that
14338 we have finished with these relocs. */
dda8d76d 14339 target_specific_reloc_handling (filedata, NULL, NULL, NULL, NULL, 0);
d1c4b12b
NC
14340
14341 if (relocs_return)
14342 {
14343 * (Elf_Internal_Rela **) relocs_return = relocs;
14344 * num_relocs_return = num_relocs;
14345 }
14346 else
14347 free (relocs);
14348
5b18a4bc
NC
14349 break;
14350 }
32ec8896 14351
015dc7e1 14352 return true;
5b18a4bc 14353}
103f02d3 14354
cf13d699 14355#ifdef SUPPORT_DISASSEMBLY
015dc7e1 14356static bool
dda8d76d 14357disassemble_section (Elf_Internal_Shdr * section, Filedata * filedata)
cf13d699 14358{
dda8d76d 14359 printf (_("\nAssembly dump of section %s\n"), printable_section_name (filedata, section));
cf13d699 14360
74e1a04b 14361 /* FIXME: XXX -- to be done --- XXX */
cf13d699 14362
015dc7e1 14363 return true;
cf13d699
NC
14364}
14365#endif
14366
14367/* Reads in the contents of SECTION from FILE, returning a pointer
14368 to a malloc'ed buffer or NULL if something went wrong. */
14369
14370static char *
dda8d76d 14371get_section_contents (Elf_Internal_Shdr * section, Filedata * filedata)
cf13d699 14372{
dda8d76d 14373 bfd_size_type num_bytes = section->sh_size;
cf13d699
NC
14374
14375 if (num_bytes == 0 || section->sh_type == SHT_NOBITS)
14376 {
c6b78c96 14377 printf (_("Section '%s' has no data to dump.\n"),
dda8d76d 14378 printable_section_name (filedata, section));
cf13d699
NC
14379 return NULL;
14380 }
14381
dda8d76d 14382 return (char *) get_data (NULL, filedata, section->sh_offset, 1, num_bytes,
3f5e193b 14383 _("section contents"));
cf13d699
NC
14384}
14385
0e602686
NC
14386/* Uncompresses a section that was compressed using zlib, in place. */
14387
015dc7e1 14388static bool
dda8d76d
NC
14389uncompress_section_contents (unsigned char ** buffer,
14390 dwarf_size_type uncompressed_size,
14391 dwarf_size_type * size)
0e602686
NC
14392{
14393 dwarf_size_type compressed_size = *size;
14394 unsigned char * compressed_buffer = *buffer;
14395 unsigned char * uncompressed_buffer;
14396 z_stream strm;
14397 int rc;
14398
14399 /* It is possible the section consists of several compressed
14400 buffers concatenated together, so we uncompress in a loop. */
14401 /* PR 18313: The state field in the z_stream structure is supposed
14402 to be invisible to the user (ie us), but some compilers will
14403 still complain about it being used without initialisation. So
14404 we first zero the entire z_stream structure and then set the fields
14405 that we need. */
14406 memset (& strm, 0, sizeof strm);
14407 strm.avail_in = compressed_size;
14408 strm.next_in = (Bytef *) compressed_buffer;
14409 strm.avail_out = uncompressed_size;
14410 uncompressed_buffer = (unsigned char *) xmalloc (uncompressed_size);
14411
14412 rc = inflateInit (& strm);
14413 while (strm.avail_in > 0)
14414 {
14415 if (rc != Z_OK)
3624a6c1 14416 break;
0e602686
NC
14417 strm.next_out = ((Bytef *) uncompressed_buffer
14418 + (uncompressed_size - strm.avail_out));
14419 rc = inflate (&strm, Z_FINISH);
14420 if (rc != Z_STREAM_END)
3624a6c1 14421 break;
0e602686
NC
14422 rc = inflateReset (& strm);
14423 }
ad92f33d
AM
14424 if (inflateEnd (& strm) != Z_OK
14425 || rc != Z_OK
0e602686
NC
14426 || strm.avail_out != 0)
14427 goto fail;
14428
14429 *buffer = uncompressed_buffer;
14430 *size = uncompressed_size;
015dc7e1 14431 return true;
0e602686
NC
14432
14433 fail:
14434 free (uncompressed_buffer);
14435 /* Indicate decompression failure. */
14436 *buffer = NULL;
015dc7e1 14437 return false;
0e602686 14438}
dd24e3da 14439
015dc7e1 14440static bool
dda8d76d 14441dump_section_as_strings (Elf_Internal_Shdr * section, Filedata * filedata)
cf13d699 14442{
015dc7e1
AM
14443 Elf_Internal_Shdr *relsec;
14444 bfd_size_type num_bytes;
14445 unsigned char *data;
14446 unsigned char *end;
14447 unsigned char *real_start;
14448 unsigned char *start;
14449 bool some_strings_shown;
cf13d699 14450
dda8d76d 14451 real_start = start = (unsigned char *) get_section_contents (section, filedata);
cf13d699 14452 if (start == NULL)
c6b78c96 14453 /* PR 21820: Do not fail if the section was empty. */
63b4cc53 14454 return section->sh_size == 0 || section->sh_type == SHT_NOBITS;
c6b78c96 14455
0e602686 14456 num_bytes = section->sh_size;
cf13d699 14457
835f2fae
NC
14458 if (filedata->is_separate)
14459 printf (_("\nString dump of section '%s' in linked file %s:\n"),
14460 printable_section_name (filedata, section),
14461 filedata->file_name);
14462 else
14463 printf (_("\nString dump of section '%s':\n"),
14464 printable_section_name (filedata, section));
cf13d699 14465
0e602686
NC
14466 if (decompress_dumps)
14467 {
14468 dwarf_size_type new_size = num_bytes;
14469 dwarf_size_type uncompressed_size = 0;
14470
14471 if ((section->sh_flags & SHF_COMPRESSED) != 0)
14472 {
14473 Elf_Internal_Chdr chdr;
14474 unsigned int compression_header_size
ebdf1ebf
NC
14475 = get_compression_header (& chdr, (unsigned char *) start,
14476 num_bytes);
5844b465
NC
14477 if (compression_header_size == 0)
14478 /* An error message will have already been generated
14479 by get_compression_header. */
14480 goto error_out;
0e602686 14481
813dabb9 14482 if (chdr.ch_type != ELFCOMPRESS_ZLIB)
0e602686 14483 {
813dabb9 14484 warn (_("section '%s' has unsupported compress type: %d\n"),
dda8d76d 14485 printable_section_name (filedata, section), chdr.ch_type);
f761cb13 14486 goto error_out;
813dabb9 14487 }
813dabb9
L
14488 uncompressed_size = chdr.ch_size;
14489 start += compression_header_size;
14490 new_size -= compression_header_size;
0e602686
NC
14491 }
14492 else if (new_size > 12 && streq ((char *) start, "ZLIB"))
14493 {
14494 /* Read the zlib header. In this case, it should be "ZLIB"
14495 followed by the uncompressed section size, 8 bytes in
14496 big-endian order. */
14497 uncompressed_size = start[4]; uncompressed_size <<= 8;
14498 uncompressed_size += start[5]; uncompressed_size <<= 8;
14499 uncompressed_size += start[6]; uncompressed_size <<= 8;
14500 uncompressed_size += start[7]; uncompressed_size <<= 8;
14501 uncompressed_size += start[8]; uncompressed_size <<= 8;
14502 uncompressed_size += start[9]; uncompressed_size <<= 8;
14503 uncompressed_size += start[10]; uncompressed_size <<= 8;
14504 uncompressed_size += start[11];
14505 start += 12;
14506 new_size -= 12;
14507 }
14508
1835f746
NC
14509 if (uncompressed_size)
14510 {
14511 if (uncompress_section_contents (& start,
14512 uncompressed_size, & new_size))
14513 num_bytes = new_size;
14514 else
14515 {
14516 error (_("Unable to decompress section %s\n"),
dda8d76d 14517 printable_section_name (filedata, section));
f761cb13 14518 goto error_out;
1835f746
NC
14519 }
14520 }
bc303e5d
NC
14521 else
14522 start = real_start;
0e602686 14523 }
fd8008d8 14524
cf13d699
NC
14525 /* If the section being dumped has relocations against it the user might
14526 be expecting these relocations to have been applied. Check for this
14527 case and issue a warning message in order to avoid confusion.
14528 FIXME: Maybe we ought to have an option that dumps a section with
14529 relocs applied ? */
dda8d76d
NC
14530 for (relsec = filedata->section_headers;
14531 relsec < filedata->section_headers + filedata->file_header.e_shnum;
cf13d699
NC
14532 ++relsec)
14533 {
14534 if ((relsec->sh_type != SHT_RELA && relsec->sh_type != SHT_REL)
dda8d76d
NC
14535 || relsec->sh_info >= filedata->file_header.e_shnum
14536 || filedata->section_headers + relsec->sh_info != section
cf13d699 14537 || relsec->sh_size == 0
dda8d76d 14538 || relsec->sh_link >= filedata->file_header.e_shnum)
cf13d699
NC
14539 continue;
14540
14541 printf (_(" Note: This section has relocations against it, but these have NOT been applied to this dump.\n"));
14542 break;
14543 }
14544
cf13d699
NC
14545 data = start;
14546 end = start + num_bytes;
015dc7e1 14547 some_strings_shown = false;
cf13d699 14548
ba3265d0
NC
14549#ifdef HAVE_MBSTATE_T
14550 mbstate_t state;
14551 /* Initialise the multibyte conversion state. */
14552 memset (& state, 0, sizeof (state));
14553#endif
14554
015dc7e1 14555 bool continuing = false;
ba3265d0 14556
cf13d699
NC
14557 while (data < end)
14558 {
14559 while (!ISPRINT (* data))
14560 if (++ data >= end)
14561 break;
14562
14563 if (data < end)
14564 {
071436c6
NC
14565 size_t maxlen = end - data;
14566
ba3265d0
NC
14567 if (continuing)
14568 {
14569 printf (" ");
015dc7e1 14570 continuing = false;
ba3265d0
NC
14571 }
14572 else
14573 {
d1ce973e 14574 printf (" [%6lx] ", (unsigned long) (data - start));
ba3265d0
NC
14575 }
14576
4082ef84
NC
14577 if (maxlen > 0)
14578 {
f3da8a96 14579 char c = 0;
ba3265d0
NC
14580
14581 while (maxlen)
14582 {
14583 c = *data++;
14584
14585 if (c == 0)
14586 break;
14587
14588 /* PR 25543: Treat new-lines as string-ending characters. */
14589 if (c == '\n')
14590 {
14591 printf ("\\n\n");
14592 if (*data != 0)
015dc7e1 14593 continuing = true;
ba3265d0
NC
14594 break;
14595 }
14596
14597 /* Do not print control characters directly as they can affect terminal
14598 settings. Such characters usually appear in the names generated
14599 by the assembler for local labels. */
14600 if (ISCNTRL (c))
14601 {
14602 printf ("^%c", c + 0x40);
14603 }
14604 else if (ISPRINT (c))
14605 {
14606 putchar (c);
14607 }
14608 else
14609 {
14610 size_t n;
14611#ifdef HAVE_MBSTATE_T
14612 wchar_t w;
14613#endif
14614 /* Let printf do the hard work of displaying multibyte characters. */
14615 printf ("%.1s", data - 1);
14616#ifdef HAVE_MBSTATE_T
14617 /* Try to find out how many bytes made up the character that was
14618 just printed. Advance the symbol pointer past the bytes that
14619 were displayed. */
14620 n = mbrtowc (& w, (char *)(data - 1), MB_CUR_MAX, & state);
14621#else
14622 n = 1;
14623#endif
14624 if (n != (size_t) -1 && n != (size_t) -2 && n > 0)
14625 data += (n - 1);
14626 }
14627 }
14628
14629 if (c != '\n')
14630 putchar ('\n');
4082ef84
NC
14631 }
14632 else
14633 {
14634 printf (_("<corrupt>\n"));
14635 data = end;
14636 }
015dc7e1 14637 some_strings_shown = true;
cf13d699
NC
14638 }
14639 }
14640
14641 if (! some_strings_shown)
14642 printf (_(" No strings found in this section."));
14643
0e602686 14644 free (real_start);
cf13d699
NC
14645
14646 putchar ('\n');
015dc7e1 14647 return true;
f761cb13
AM
14648
14649error_out:
14650 free (real_start);
015dc7e1 14651 return false;
cf13d699
NC
14652}
14653
015dc7e1
AM
14654static bool
14655dump_section_as_bytes (Elf_Internal_Shdr *section,
14656 Filedata *filedata,
14657 bool relocate)
cf13d699
NC
14658{
14659 Elf_Internal_Shdr * relsec;
0e602686
NC
14660 bfd_size_type bytes;
14661 bfd_size_type section_size;
14662 bfd_vma addr;
14663 unsigned char * data;
14664 unsigned char * real_start;
14665 unsigned char * start;
14666
dda8d76d 14667 real_start = start = (unsigned char *) get_section_contents (section, filedata);
cf13d699 14668 if (start == NULL)
c6b78c96 14669 /* PR 21820: Do not fail if the section was empty. */
63b4cc53 14670 return section->sh_size == 0 || section->sh_type == SHT_NOBITS;
32ec8896 14671
0e602686 14672 section_size = section->sh_size;
cf13d699 14673
835f2fae
NC
14674 if (filedata->is_separate)
14675 printf (_("\nHex dump of section '%s' in linked file %s:\n"),
14676 printable_section_name (filedata, section),
14677 filedata->file_name);
14678 else
14679 printf (_("\nHex dump of section '%s':\n"),
14680 printable_section_name (filedata, section));
cf13d699 14681
0e602686
NC
14682 if (decompress_dumps)
14683 {
14684 dwarf_size_type new_size = section_size;
14685 dwarf_size_type uncompressed_size = 0;
14686
14687 if ((section->sh_flags & SHF_COMPRESSED) != 0)
14688 {
14689 Elf_Internal_Chdr chdr;
14690 unsigned int compression_header_size
ebdf1ebf 14691 = get_compression_header (& chdr, start, section_size);
0e602686 14692
5844b465
NC
14693 if (compression_header_size == 0)
14694 /* An error message will have already been generated
14695 by get_compression_header. */
14696 goto error_out;
14697
813dabb9 14698 if (chdr.ch_type != ELFCOMPRESS_ZLIB)
0e602686 14699 {
813dabb9 14700 warn (_("section '%s' has unsupported compress type: %d\n"),
dda8d76d 14701 printable_section_name (filedata, section), chdr.ch_type);
f761cb13 14702 goto error_out;
0e602686 14703 }
813dabb9
L
14704 uncompressed_size = chdr.ch_size;
14705 start += compression_header_size;
14706 new_size -= compression_header_size;
0e602686
NC
14707 }
14708 else if (new_size > 12 && streq ((char *) start, "ZLIB"))
14709 {
14710 /* Read the zlib header. In this case, it should be "ZLIB"
14711 followed by the uncompressed section size, 8 bytes in
14712 big-endian order. */
14713 uncompressed_size = start[4]; uncompressed_size <<= 8;
14714 uncompressed_size += start[5]; uncompressed_size <<= 8;
14715 uncompressed_size += start[6]; uncompressed_size <<= 8;
14716 uncompressed_size += start[7]; uncompressed_size <<= 8;
14717 uncompressed_size += start[8]; uncompressed_size <<= 8;
14718 uncompressed_size += start[9]; uncompressed_size <<= 8;
14719 uncompressed_size += start[10]; uncompressed_size <<= 8;
14720 uncompressed_size += start[11];
14721 start += 12;
14722 new_size -= 12;
14723 }
14724
f055032e
NC
14725 if (uncompressed_size)
14726 {
14727 if (uncompress_section_contents (& start, uncompressed_size,
14728 & new_size))
bc303e5d
NC
14729 {
14730 section_size = new_size;
14731 }
f055032e
NC
14732 else
14733 {
14734 error (_("Unable to decompress section %s\n"),
dda8d76d 14735 printable_section_name (filedata, section));
bc303e5d 14736 /* FIXME: Print the section anyway ? */
f761cb13 14737 goto error_out;
f055032e
NC
14738 }
14739 }
bc303e5d
NC
14740 else
14741 start = real_start;
0e602686 14742 }
14ae95f2 14743
cf13d699
NC
14744 if (relocate)
14745 {
dda8d76d 14746 if (! apply_relocations (filedata, section, start, section_size, NULL, NULL))
f761cb13 14747 goto error_out;
cf13d699
NC
14748 }
14749 else
14750 {
14751 /* If the section being dumped has relocations against it the user might
14752 be expecting these relocations to have been applied. Check for this
14753 case and issue a warning message in order to avoid confusion.
14754 FIXME: Maybe we ought to have an option that dumps a section with
14755 relocs applied ? */
dda8d76d
NC
14756 for (relsec = filedata->section_headers;
14757 relsec < filedata->section_headers + filedata->file_header.e_shnum;
cf13d699
NC
14758 ++relsec)
14759 {
14760 if ((relsec->sh_type != SHT_RELA && relsec->sh_type != SHT_REL)
dda8d76d
NC
14761 || relsec->sh_info >= filedata->file_header.e_shnum
14762 || filedata->section_headers + relsec->sh_info != section
cf13d699 14763 || relsec->sh_size == 0
dda8d76d 14764 || relsec->sh_link >= filedata->file_header.e_shnum)
cf13d699
NC
14765 continue;
14766
14767 printf (_(" NOTE: This section has relocations against it, but these have NOT been applied to this dump.\n"));
14768 break;
14769 }
14770 }
14771
14772 addr = section->sh_addr;
0e602686 14773 bytes = section_size;
cf13d699
NC
14774 data = start;
14775
14776 while (bytes)
14777 {
14778 int j;
14779 int k;
14780 int lbytes;
14781
14782 lbytes = (bytes > 16 ? 16 : bytes);
14783
14784 printf (" 0x%8.8lx ", (unsigned long) addr);
14785
14786 for (j = 0; j < 16; j++)
14787 {
14788 if (j < lbytes)
14789 printf ("%2.2x", data[j]);
14790 else
14791 printf (" ");
14792
14793 if ((j & 3) == 3)
14794 printf (" ");
14795 }
14796
14797 for (j = 0; j < lbytes; j++)
14798 {
14799 k = data[j];
14800 if (k >= ' ' && k < 0x7f)
14801 printf ("%c", k);
14802 else
14803 printf (".");
14804 }
14805
14806 putchar ('\n');
14807
14808 data += lbytes;
14809 addr += lbytes;
14810 bytes -= lbytes;
14811 }
14812
0e602686 14813 free (real_start);
cf13d699
NC
14814
14815 putchar ('\n');
015dc7e1 14816 return true;
f761cb13
AM
14817
14818 error_out:
14819 free (real_start);
015dc7e1 14820 return false;
cf13d699
NC
14821}
14822
094e34f2 14823#ifdef ENABLE_LIBCTF
7d9813f1
NA
14824static ctf_sect_t *
14825shdr_to_ctf_sect (ctf_sect_t *buf, Elf_Internal_Shdr *shdr, Filedata *filedata)
14826{
b9e920ec 14827 buf->cts_name = SECTION_NAME_PRINT (shdr);
7d9813f1
NA
14828 buf->cts_size = shdr->sh_size;
14829 buf->cts_entsize = shdr->sh_entsize;
7d9813f1
NA
14830
14831 return buf;
14832}
14833
14834/* Formatting callback function passed to ctf_dump. Returns either the pointer
14835 it is passed, or a pointer to newly-allocated storage, in which case
14836 dump_ctf() will free it when it no longer needs it. */
14837
2f6ecaed
NA
14838static char *
14839dump_ctf_indent_lines (ctf_sect_names_t sect ATTRIBUTE_UNUSED,
14840 char *s, void *arg)
7d9813f1 14841{
3e50a591 14842 const char *blanks = arg;
7d9813f1
NA
14843 char *new_s;
14844
3e50a591 14845 if (asprintf (&new_s, "%s%s", blanks, s) < 0)
7d9813f1
NA
14846 return s;
14847 return new_s;
14848}
14849
926c9e76
NA
14850/* Dump CTF errors/warnings. */
14851static void
139633c3 14852dump_ctf_errs (ctf_dict_t *fp)
926c9e76
NA
14853{
14854 ctf_next_t *it = NULL;
14855 char *errtext;
14856 int is_warning;
14857 int err;
14858
14859 /* Dump accumulated errors and warnings. */
14860 while ((errtext = ctf_errwarning_next (fp, &it, &is_warning, &err)) != NULL)
14861 {
5e9b84f7 14862 error (_("%s: %s"), is_warning ? _("warning"): _("error"),
926c9e76
NA
14863 errtext);
14864 free (errtext);
14865 }
14866 if (err != ECTF_NEXT_END)
14867 error (_("CTF error: cannot get CTF errors: `%s'"), ctf_errmsg (err));
14868}
14869
2f6ecaed
NA
14870/* Dump one CTF archive member. */
14871
14872static int
139633c3 14873dump_ctf_archive_member (ctf_dict_t *ctf, const char *name, void *arg)
2f6ecaed 14874{
139633c3 14875 ctf_dict_t *parent = (ctf_dict_t *) arg;
2f6ecaed
NA
14876 const char *things[] = {"Header", "Labels", "Data objects",
14877 "Function objects", "Variables", "Types", "Strings",
14878 ""};
14879 const char **thing;
14880 size_t i;
8b37e7b6 14881 int err = 0;
2f6ecaed
NA
14882
14883 /* Only print out the name of non-default-named archive members.
14884 The name .ctf appears everywhere, even for things that aren't
14885 really archives, so printing it out is liable to be confusing.
14886
14887 The parent, if there is one, is the default-owned archive member:
14888 avoid importing it into itself. (This does no harm, but looks
14889 confusing.) */
14890
14891 if (strcmp (name, ".ctf") != 0)
14892 {
14893 printf (_("\nCTF archive member: %s:\n"), name);
14894 ctf_import (ctf, parent);
14895 }
14896
14897 for (i = 0, thing = things; *thing[0]; thing++, i++)
14898 {
14899 ctf_dump_state_t *s = NULL;
14900 char *item;
14901
14902 printf ("\n %s:\n", *thing);
14903 while ((item = ctf_dump (ctf, &s, i, dump_ctf_indent_lines,
14904 (void *) " ")) != NULL)
14905 {
14906 printf ("%s\n", item);
14907 free (item);
14908 }
14909
14910 if (ctf_errno (ctf))
14911 {
14912 error (_("Iteration failed: %s, %s\n"), *thing,
14913 ctf_errmsg (ctf_errno (ctf)));
8b37e7b6
NA
14914 err = 1;
14915 goto out;
2f6ecaed
NA
14916 }
14917 }
8b37e7b6
NA
14918
14919 out:
926c9e76 14920 dump_ctf_errs (ctf);
8b37e7b6 14921 return err;
2f6ecaed
NA
14922}
14923
015dc7e1 14924static bool
7d9813f1
NA
14925dump_section_as_ctf (Elf_Internal_Shdr * section, Filedata * filedata)
14926{
14927 Elf_Internal_Shdr * parent_sec = NULL;
14928 Elf_Internal_Shdr * symtab_sec = NULL;
14929 Elf_Internal_Shdr * strtab_sec = NULL;
d344b407
NA
14930 void * data = NULL;
14931 void * symdata = NULL;
14932 void * strdata = NULL;
14933 void * parentdata = NULL;
14934 ctf_sect_t ctfsect, symsect, strsect, parentsect;
14935 ctf_sect_t * symsectp = NULL;
14936 ctf_sect_t * strsectp = NULL;
2f6ecaed
NA
14937 ctf_archive_t * ctfa = NULL;
14938 ctf_archive_t * parenta = NULL, *lookparent;
139633c3 14939 ctf_dict_t * parent = NULL;
7d9813f1 14940
7d9813f1 14941 int err;
015dc7e1 14942 bool ret = false;
7d9813f1
NA
14943
14944 shdr_to_ctf_sect (&ctfsect, section, filedata);
14945 data = get_section_contents (section, filedata);
14946 ctfsect.cts_data = data;
14947
616febde 14948 if (!dump_ctf_symtab_name)
3d16b64e 14949 dump_ctf_symtab_name = strdup (".dynsym");
616febde
NA
14950
14951 if (!dump_ctf_strtab_name)
3d16b64e 14952 dump_ctf_strtab_name = strdup (".dynstr");
616febde
NA
14953
14954 if (dump_ctf_symtab_name && dump_ctf_symtab_name[0] != 0)
7d9813f1
NA
14955 {
14956 if ((symtab_sec = find_section (filedata, dump_ctf_symtab_name)) == NULL)
14957 {
14958 error (_("No symbol section named %s\n"), dump_ctf_symtab_name);
14959 goto fail;
14960 }
14961 if ((symdata = (void *) get_data (NULL, filedata,
14962 symtab_sec->sh_offset, 1,
14963 symtab_sec->sh_size,
14964 _("symbols"))) == NULL)
14965 goto fail;
14966 symsectp = shdr_to_ctf_sect (&symsect, symtab_sec, filedata);
14967 symsect.cts_data = symdata;
14968 }
835f2fae 14969
df16e041 14970 if (dump_ctf_strtab_name && dump_ctf_strtab_name[0] != 0)
7d9813f1
NA
14971 {
14972 if ((strtab_sec = find_section (filedata, dump_ctf_strtab_name)) == NULL)
14973 {
14974 error (_("No string table section named %s\n"),
14975 dump_ctf_strtab_name);
14976 goto fail;
14977 }
14978 if ((strdata = (void *) get_data (NULL, filedata,
14979 strtab_sec->sh_offset, 1,
14980 strtab_sec->sh_size,
14981 _("strings"))) == NULL)
14982 goto fail;
14983 strsectp = shdr_to_ctf_sect (&strsect, strtab_sec, filedata);
14984 strsect.cts_data = strdata;
14985 }
835f2fae 14986
7d9813f1
NA
14987 if (dump_ctf_parent_name)
14988 {
14989 if ((parent_sec = find_section (filedata, dump_ctf_parent_name)) == NULL)
14990 {
14991 error (_("No CTF parent section named %s\n"), dump_ctf_parent_name);
14992 goto fail;
14993 }
14994 if ((parentdata = (void *) get_data (NULL, filedata,
14995 parent_sec->sh_offset, 1,
14996 parent_sec->sh_size,
14997 _("CTF parent"))) == NULL)
14998 goto fail;
14999 shdr_to_ctf_sect (&parentsect, parent_sec, filedata);
15000 parentsect.cts_data = parentdata;
15001 }
15002
2f6ecaed
NA
15003 /* Load the CTF file and dump it. It may be a raw CTF section, or an archive:
15004 libctf papers over the difference, so we can pretend it is always an
15005 archive. Possibly open the parent as well, if one was specified. */
7d9813f1 15006
2f6ecaed 15007 if ((ctfa = ctf_arc_bufopen (&ctfsect, symsectp, strsectp, &err)) == NULL)
7d9813f1 15008 {
926c9e76 15009 dump_ctf_errs (NULL);
7d9813f1
NA
15010 error (_("CTF open failure: %s\n"), ctf_errmsg (err));
15011 goto fail;
15012 }
15013
96c61be5
NA
15014 ctf_arc_symsect_endianness (ctfa, filedata->file_header.e_ident[EI_DATA]
15015 != ELFDATA2MSB);
15016
7d9813f1
NA
15017 if (parentdata)
15018 {
2f6ecaed
NA
15019 if ((parenta = ctf_arc_bufopen (&parentsect, symsectp, strsectp,
15020 &err)) == NULL)
7d9813f1 15021 {
926c9e76 15022 dump_ctf_errs (NULL);
7d9813f1
NA
15023 error (_("CTF open failure: %s\n"), ctf_errmsg (err));
15024 goto fail;
15025 }
2f6ecaed
NA
15026 lookparent = parenta;
15027 }
15028 else
15029 lookparent = ctfa;
7d9813f1 15030
2f6ecaed
NA
15031 /* Assume that the applicable parent archive member is the default one.
15032 (This is what all known implementations are expected to do, if they
15033 put CTFs and their parents in archives together.) */
ae41200b 15034 if ((parent = ctf_dict_open (lookparent, NULL, &err)) == NULL)
2f6ecaed 15035 {
926c9e76 15036 dump_ctf_errs (NULL);
2f6ecaed
NA
15037 error (_("CTF open failure: %s\n"), ctf_errmsg (err));
15038 goto fail;
7d9813f1
NA
15039 }
15040
015dc7e1 15041 ret = true;
7d9813f1 15042
835f2fae
NC
15043 if (filedata->is_separate)
15044 printf (_("\nDump of CTF section '%s' in linked file %s:\n"),
15045 printable_section_name (filedata, section),
15046 filedata->file_name);
15047 else
15048 printf (_("\nDump of CTF section '%s':\n"),
15049 printable_section_name (filedata, section));
7d9813f1 15050
83d59285
NA
15051 if ((err = ctf_archive_iter (ctfa, dump_ctf_archive_member, parent)) != 0)
15052 {
15053 dump_ctf_errs (NULL);
15054 error (_("CTF member open failure: %s\n"), ctf_errmsg (err));
015dc7e1 15055 ret = false;
83d59285 15056 }
7d9813f1
NA
15057
15058 fail:
139633c3 15059 ctf_dict_close (parent);
2f6ecaed
NA
15060 ctf_close (ctfa);
15061 ctf_close (parenta);
7d9813f1
NA
15062 free (parentdata);
15063 free (data);
15064 free (symdata);
15065 free (strdata);
15066 return ret;
15067}
094e34f2 15068#endif
7d9813f1 15069
015dc7e1 15070static bool
dda8d76d
NC
15071load_specific_debug_section (enum dwarf_section_display_enum debug,
15072 const Elf_Internal_Shdr * sec,
15073 void * data)
1007acb3 15074{
2cf0635d 15075 struct dwarf_section * section = &debug_displays [debug].section;
19e6b90e 15076 char buf [64];
dda8d76d 15077 Filedata * filedata = (Filedata *) data;
9abca702 15078
19e6b90e 15079 if (section->start != NULL)
dda8d76d
NC
15080 {
15081 /* If it is already loaded, do nothing. */
15082 if (streq (section->filename, filedata->file_name))
015dc7e1 15083 return true;
dda8d76d
NC
15084 free (section->start);
15085 }
1007acb3 15086
19e6b90e
L
15087 snprintf (buf, sizeof (buf), _("%s section data"), section->name);
15088 section->address = sec->sh_addr;
dda8d76d
NC
15089 section->filename = filedata->file_name;
15090 section->start = (unsigned char *) get_data (NULL, filedata,
3f5e193b
NC
15091 sec->sh_offset, 1,
15092 sec->sh_size, buf);
59245841
NC
15093 if (section->start == NULL)
15094 section->size = 0;
15095 else
15096 {
77115a4a
L
15097 unsigned char *start = section->start;
15098 dwarf_size_type size = sec->sh_size;
dab394de 15099 dwarf_size_type uncompressed_size = 0;
77115a4a
L
15100
15101 if ((sec->sh_flags & SHF_COMPRESSED) != 0)
15102 {
15103 Elf_Internal_Chdr chdr;
d8024a91
NC
15104 unsigned int compression_header_size;
15105
f53be977
L
15106 if (size < (is_32bit_elf
15107 ? sizeof (Elf32_External_Chdr)
15108 : sizeof (Elf64_External_Chdr)))
d8024a91 15109 {
55be8fd0 15110 warn (_("compressed section %s is too small to contain a compression header\n"),
d8024a91 15111 section->name);
015dc7e1 15112 return false;
d8024a91
NC
15113 }
15114
ebdf1ebf 15115 compression_header_size = get_compression_header (&chdr, start, size);
5844b465
NC
15116 if (compression_header_size == 0)
15117 /* An error message will have already been generated
15118 by get_compression_header. */
015dc7e1 15119 return false;
d8024a91 15120
813dabb9
L
15121 if (chdr.ch_type != ELFCOMPRESS_ZLIB)
15122 {
15123 warn (_("section '%s' has unsupported compress type: %d\n"),
15124 section->name, chdr.ch_type);
015dc7e1 15125 return false;
813dabb9 15126 }
dab394de 15127 uncompressed_size = chdr.ch_size;
77115a4a
L
15128 start += compression_header_size;
15129 size -= compression_header_size;
15130 }
dab394de
L
15131 else if (size > 12 && streq ((char *) start, "ZLIB"))
15132 {
15133 /* Read the zlib header. In this case, it should be "ZLIB"
15134 followed by the uncompressed section size, 8 bytes in
15135 big-endian order. */
15136 uncompressed_size = start[4]; uncompressed_size <<= 8;
15137 uncompressed_size += start[5]; uncompressed_size <<= 8;
15138 uncompressed_size += start[6]; uncompressed_size <<= 8;
15139 uncompressed_size += start[7]; uncompressed_size <<= 8;
15140 uncompressed_size += start[8]; uncompressed_size <<= 8;
15141 uncompressed_size += start[9]; uncompressed_size <<= 8;
15142 uncompressed_size += start[10]; uncompressed_size <<= 8;
15143 uncompressed_size += start[11];
15144 start += 12;
15145 size -= 12;
15146 }
15147
1835f746 15148 if (uncompressed_size)
77115a4a 15149 {
1835f746
NC
15150 if (uncompress_section_contents (&start, uncompressed_size,
15151 &size))
15152 {
15153 /* Free the compressed buffer, update the section buffer
15154 and the section size if uncompress is successful. */
15155 free (section->start);
15156 section->start = start;
15157 }
15158 else
15159 {
15160 error (_("Unable to decompress section %s\n"),
dda8d76d 15161 printable_section_name (filedata, sec));
015dc7e1 15162 return false;
1835f746 15163 }
77115a4a 15164 }
bc303e5d 15165
77115a4a 15166 section->size = size;
59245841 15167 }
4a114e3e 15168
1b315056 15169 if (section->start == NULL)
015dc7e1 15170 return false;
1b315056 15171
19e6b90e 15172 if (debug_displays [debug].relocate)
32ec8896 15173 {
dda8d76d 15174 if (! apply_relocations (filedata, sec, section->start, section->size,
32ec8896 15175 & section->reloc_info, & section->num_relocs))
015dc7e1 15176 return false;
32ec8896 15177 }
d1c4b12b
NC
15178 else
15179 {
15180 section->reloc_info = NULL;
15181 section->num_relocs = 0;
15182 }
1007acb3 15183
015dc7e1 15184 return true;
1007acb3
L
15185}
15186
301a9420
AM
15187#if HAVE_LIBDEBUGINFOD
15188/* Return a hex string representation of the build-id. */
15189unsigned char *
15190get_build_id (void * data)
15191{
ca0e11aa 15192 Filedata * filedata = (Filedata *) data;
301a9420
AM
15193 Elf_Internal_Shdr * shdr;
15194 unsigned long i;
15195
55be8fd0
NC
15196 /* Iterate through notes to find note.gnu.build-id.
15197 FIXME: Only the first note in any note section is examined. */
301a9420
AM
15198 for (i = 0, shdr = filedata->section_headers;
15199 i < filedata->file_header.e_shnum && shdr != NULL;
15200 i++, shdr++)
15201 {
15202 if (shdr->sh_type != SHT_NOTE)
15203 continue;
15204
15205 char * next;
15206 char * end;
15207 size_t data_remaining;
15208 size_t min_notesz;
15209 Elf_External_Note * enote;
15210 Elf_Internal_Note inote;
15211
15212 bfd_vma offset = shdr->sh_offset;
15213 bfd_vma align = shdr->sh_addralign;
15214 bfd_vma length = shdr->sh_size;
15215
15216 enote = (Elf_External_Note *) get_section_contents (shdr, filedata);
15217 if (enote == NULL)
15218 continue;
15219
15220 if (align < 4)
15221 align = 4;
15222 else if (align != 4 && align != 8)
f761cb13
AM
15223 {
15224 free (enote);
15225 continue;
15226 }
301a9420
AM
15227
15228 end = (char *) enote + length;
15229 data_remaining = end - (char *) enote;
15230
15231 if (!is_ia64_vms (filedata))
15232 {
15233 min_notesz = offsetof (Elf_External_Note, name);
15234 if (data_remaining < min_notesz)
15235 {
55be8fd0
NC
15236 warn (_("\
15237malformed note encountered in section %s whilst scanning for build-id note\n"),
15238 printable_section_name (filedata, shdr));
f761cb13 15239 free (enote);
55be8fd0 15240 continue;
301a9420
AM
15241 }
15242 data_remaining -= min_notesz;
15243
15244 inote.type = BYTE_GET (enote->type);
15245 inote.namesz = BYTE_GET (enote->namesz);
15246 inote.namedata = enote->name;
15247 inote.descsz = BYTE_GET (enote->descsz);
15248 inote.descdata = ((char *) enote
15249 + ELF_NOTE_DESC_OFFSET (inote.namesz, align));
15250 inote.descpos = offset + (inote.descdata - (char *) enote);
15251 next = ((char *) enote
15252 + ELF_NOTE_NEXT_OFFSET (inote.namesz, inote.descsz, align));
15253 }
15254 else
15255 {
15256 Elf64_External_VMS_Note *vms_enote;
15257
15258 /* PR binutils/15191
15259 Make sure that there is enough data to read. */
15260 min_notesz = offsetof (Elf64_External_VMS_Note, name);
15261 if (data_remaining < min_notesz)
15262 {
55be8fd0
NC
15263 warn (_("\
15264malformed note encountered in section %s whilst scanning for build-id note\n"),
15265 printable_section_name (filedata, shdr));
f761cb13 15266 free (enote);
55be8fd0 15267 continue;
301a9420
AM
15268 }
15269 data_remaining -= min_notesz;
15270
15271 vms_enote = (Elf64_External_VMS_Note *) enote;
15272 inote.type = BYTE_GET (vms_enote->type);
15273 inote.namesz = BYTE_GET (vms_enote->namesz);
15274 inote.namedata = vms_enote->name;
15275 inote.descsz = BYTE_GET (vms_enote->descsz);
15276 inote.descdata = inote.namedata + align_power (inote.namesz, 3);
15277 inote.descpos = offset + (inote.descdata - (char *) enote);
15278 next = inote.descdata + align_power (inote.descsz, 3);
15279 }
15280
15281 /* Skip malformed notes. */
15282 if ((size_t) (inote.descdata - inote.namedata) < inote.namesz
15283 || (size_t) (inote.descdata - inote.namedata) > data_remaining
15284 || (size_t) (next - inote.descdata) < inote.descsz
15285 || ((size_t) (next - inote.descdata)
15286 > data_remaining - (size_t) (inote.descdata - inote.namedata)))
15287 {
55be8fd0
NC
15288 warn (_("\
15289malformed note encountered in section %s whilst scanning for build-id note\n"),
15290 printable_section_name (filedata, shdr));
f761cb13 15291 free (enote);
301a9420
AM
15292 continue;
15293 }
15294
15295 /* Check if this is the build-id note. If so then convert the build-id
15296 bytes to a hex string. */
15297 if (inote.namesz > 0
24d127aa 15298 && startswith (inote.namedata, "GNU")
301a9420
AM
15299 && inote.type == NT_GNU_BUILD_ID)
15300 {
15301 unsigned long j;
15302 char * build_id;
15303
15304 build_id = malloc (inote.descsz * 2 + 1);
15305 if (build_id == NULL)
f761cb13
AM
15306 {
15307 free (enote);
15308 return NULL;
15309 }
301a9420
AM
15310
15311 for (j = 0; j < inote.descsz; ++j)
15312 sprintf (build_id + (j * 2), "%02x", inote.descdata[j] & 0xff);
15313 build_id[inote.descsz * 2] = '\0';
f761cb13 15314 free (enote);
301a9420 15315
55be8fd0 15316 return (unsigned char *) build_id;
301a9420 15317 }
f761cb13 15318 free (enote);
301a9420
AM
15319 }
15320
15321 return NULL;
15322}
15323#endif /* HAVE_LIBDEBUGINFOD */
15324
657d0d47
CC
15325/* If this is not NULL, load_debug_section will only look for sections
15326 within the list of sections given here. */
32ec8896 15327static unsigned int * section_subset = NULL;
657d0d47 15328
015dc7e1 15329bool
dda8d76d 15330load_debug_section (enum dwarf_section_display_enum debug, void * data)
d966045b 15331{
2cf0635d
NC
15332 struct dwarf_section * section = &debug_displays [debug].section;
15333 Elf_Internal_Shdr * sec;
dda8d76d
NC
15334 Filedata * filedata = (Filedata *) data;
15335
f425ec66
NC
15336 /* Without section headers we cannot find any sections. */
15337 if (filedata->section_headers == NULL)
015dc7e1 15338 return false;
f425ec66 15339
9c1ce108
AM
15340 if (filedata->string_table == NULL
15341 && filedata->file_header.e_shstrndx != SHN_UNDEF
15342 && filedata->file_header.e_shstrndx < filedata->file_header.e_shnum)
dda8d76d
NC
15343 {
15344 Elf_Internal_Shdr * strs;
15345
15346 /* Read in the string table, so that we have section names to scan. */
15347 strs = filedata->section_headers + filedata->file_header.e_shstrndx;
15348
4dff97b2 15349 if (strs != NULL && strs->sh_size != 0)
dda8d76d 15350 {
9c1ce108
AM
15351 filedata->string_table
15352 = (char *) get_data (NULL, filedata, strs->sh_offset,
15353 1, strs->sh_size, _("string table"));
dda8d76d 15354
9c1ce108
AM
15355 filedata->string_table_length
15356 = filedata->string_table != NULL ? strs->sh_size : 0;
dda8d76d
NC
15357 }
15358 }
d966045b
DJ
15359
15360 /* Locate the debug section. */
dda8d76d 15361 sec = find_section_in_set (filedata, section->uncompressed_name, section_subset);
d966045b
DJ
15362 if (sec != NULL)
15363 section->name = section->uncompressed_name;
15364 else
15365 {
dda8d76d 15366 sec = find_section_in_set (filedata, section->compressed_name, section_subset);
d966045b
DJ
15367 if (sec != NULL)
15368 section->name = section->compressed_name;
15369 }
15370 if (sec == NULL)
015dc7e1 15371 return false;
d966045b 15372
657d0d47
CC
15373 /* If we're loading from a subset of sections, and we've loaded
15374 a section matching this name before, it's likely that it's a
15375 different one. */
15376 if (section_subset != NULL)
15377 free_debug_section (debug);
15378
dda8d76d 15379 return load_specific_debug_section (debug, sec, data);
d966045b
DJ
15380}
15381
19e6b90e
L
15382void
15383free_debug_section (enum dwarf_section_display_enum debug)
1007acb3 15384{
2cf0635d 15385 struct dwarf_section * section = &debug_displays [debug].section;
1007acb3 15386
19e6b90e
L
15387 if (section->start == NULL)
15388 return;
1007acb3 15389
19e6b90e
L
15390 free ((char *) section->start);
15391 section->start = NULL;
15392 section->address = 0;
15393 section->size = 0;
a788aedd 15394
9db70fc3
AM
15395 free (section->reloc_info);
15396 section->reloc_info = NULL;
15397 section->num_relocs = 0;
1007acb3
L
15398}
15399
015dc7e1 15400static bool
dda8d76d 15401display_debug_section (int shndx, Elf_Internal_Shdr * section, Filedata * filedata)
1007acb3 15402{
b9e920ec 15403 char * name = SECTION_NAME_VALID (section) ? SECTION_NAME (section) : "";
dda8d76d 15404 const char * print_name = printable_section_name (filedata, section);
19e6b90e 15405 bfd_size_type length;
015dc7e1 15406 bool result = true;
3f5e193b 15407 int i;
1007acb3 15408
19e6b90e
L
15409 length = section->sh_size;
15410 if (length == 0)
1007acb3 15411 {
74e1a04b 15412 printf (_("\nSection '%s' has no debugging data.\n"), print_name);
015dc7e1 15413 return true;
1007acb3 15414 }
5dff79d8
NC
15415 if (section->sh_type == SHT_NOBITS)
15416 {
15417 /* There is no point in dumping the contents of a debugging section
15418 which has the NOBITS type - the bits in the file will be random.
15419 This can happen when a file containing a .eh_frame section is
15420 stripped with the --only-keep-debug command line option. */
74e1a04b
NC
15421 printf (_("section '%s' has the NOBITS type - its contents are unreliable.\n"),
15422 print_name);
015dc7e1 15423 return false;
5dff79d8 15424 }
1007acb3 15425
24d127aa 15426 if (startswith (name, ".gnu.linkonce.wi."))
19e6b90e 15427 name = ".debug_info";
1007acb3 15428
19e6b90e
L
15429 /* See if we know how to display the contents of this section. */
15430 for (i = 0; i < max; i++)
d85bf2ba
NC
15431 {
15432 enum dwarf_section_display_enum id = (enum dwarf_section_display_enum) i;
15433 struct dwarf_section_display * display = debug_displays + i;
15434 struct dwarf_section * sec = & display->section;
d966045b 15435
d85bf2ba 15436 if (streq (sec->uncompressed_name, name)
24d127aa 15437 || (id == line && startswith (name, ".debug_line."))
d85bf2ba
NC
15438 || streq (sec->compressed_name, name))
15439 {
015dc7e1 15440 bool secondary = (section != find_section (filedata, name));
1007acb3 15441
d85bf2ba
NC
15442 if (secondary)
15443 free_debug_section (id);
dda8d76d 15444
24d127aa 15445 if (i == line && startswith (name, ".debug_line."))
d85bf2ba
NC
15446 sec->name = name;
15447 else if (streq (sec->uncompressed_name, name))
15448 sec->name = sec->uncompressed_name;
15449 else
15450 sec->name = sec->compressed_name;
657d0d47 15451
d85bf2ba
NC
15452 if (load_specific_debug_section (id, section, filedata))
15453 {
15454 /* If this debug section is part of a CU/TU set in a .dwp file,
15455 restrict load_debug_section to the sections in that set. */
15456 section_subset = find_cu_tu_set (filedata, shndx);
1007acb3 15457
d85bf2ba 15458 result &= display->display (sec, filedata);
657d0d47 15459
d85bf2ba 15460 section_subset = NULL;
1007acb3 15461
44266f36 15462 if (secondary || (id != info && id != abbrev && id != debug_addr))
d85bf2ba
NC
15463 free_debug_section (id);
15464 }
15465 break;
15466 }
15467 }
1007acb3 15468
19e6b90e 15469 if (i == max)
1007acb3 15470 {
74e1a04b 15471 printf (_("Unrecognized debug section: %s\n"), print_name);
015dc7e1 15472 result = false;
1007acb3
L
15473 }
15474
19e6b90e 15475 return result;
5b18a4bc 15476}
103f02d3 15477
aef1f6d0
DJ
15478/* Set DUMP_SECTS for all sections where dumps were requested
15479 based on section name. */
15480
15481static void
dda8d76d 15482initialise_dumps_byname (Filedata * filedata)
aef1f6d0 15483{
2cf0635d 15484 struct dump_list_entry * cur;
aef1f6d0
DJ
15485
15486 for (cur = dump_sects_byname; cur; cur = cur->next)
15487 {
15488 unsigned int i;
015dc7e1 15489 bool any = false;
aef1f6d0 15490
dda8d76d 15491 for (i = 0; i < filedata->file_header.e_shnum; i++)
b9e920ec
AM
15492 if (SECTION_NAME_VALID (filedata->section_headers + i)
15493 && streq (SECTION_NAME (filedata->section_headers + i), cur->name))
aef1f6d0 15494 {
6431e409 15495 request_dump_bynumber (&filedata->dump, i, cur->type);
015dc7e1 15496 any = true;
aef1f6d0
DJ
15497 }
15498
835f2fae
NC
15499 if (!any && !filedata->is_separate)
15500 warn (_("Section '%s' was not dumped because it does not exist\n"),
15501 cur->name);
aef1f6d0
DJ
15502 }
15503}
15504
015dc7e1 15505static bool
dda8d76d 15506process_section_contents (Filedata * filedata)
5b18a4bc 15507{
2cf0635d 15508 Elf_Internal_Shdr * section;
19e6b90e 15509 unsigned int i;
015dc7e1 15510 bool res = true;
103f02d3 15511
19e6b90e 15512 if (! do_dump)
015dc7e1 15513 return true;
103f02d3 15514
dda8d76d 15515 initialise_dumps_byname (filedata);
aef1f6d0 15516
dda8d76d 15517 for (i = 0, section = filedata->section_headers;
6431e409 15518 i < filedata->file_header.e_shnum && i < filedata->dump.num_dump_sects;
19e6b90e
L
15519 i++, section++)
15520 {
6431e409 15521 dump_type dump = filedata->dump.dump_sects[i];
dda8d76d 15522
d6bfbc39
NC
15523 if (filedata->is_separate && ! process_links)
15524 dump &= DEBUG_DUMP;
15525
19e6b90e 15526#ifdef SUPPORT_DISASSEMBLY
dda8d76d
NC
15527 if (dump & DISASS_DUMP)
15528 {
15529 if (! disassemble_section (section, filedata))
015dc7e1 15530 res = false;
dda8d76d 15531 }
19e6b90e 15532#endif
dda8d76d 15533 if (dump & HEX_DUMP)
32ec8896 15534 {
015dc7e1
AM
15535 if (! dump_section_as_bytes (section, filedata, false))
15536 res = false;
32ec8896 15537 }
103f02d3 15538
dda8d76d 15539 if (dump & RELOC_DUMP)
32ec8896 15540 {
015dc7e1
AM
15541 if (! dump_section_as_bytes (section, filedata, true))
15542 res = false;
32ec8896 15543 }
09c11c86 15544
dda8d76d 15545 if (dump & STRING_DUMP)
32ec8896 15546 {
dda8d76d 15547 if (! dump_section_as_strings (section, filedata))
015dc7e1 15548 res = false;
32ec8896 15549 }
cf13d699 15550
dda8d76d 15551 if (dump & DEBUG_DUMP)
32ec8896 15552 {
dda8d76d 15553 if (! display_debug_section (i, section, filedata))
015dc7e1 15554 res = false;
32ec8896 15555 }
7d9813f1 15556
094e34f2 15557#ifdef ENABLE_LIBCTF
7d9813f1
NA
15558 if (dump & CTF_DUMP)
15559 {
15560 if (! dump_section_as_ctf (section, filedata))
015dc7e1 15561 res = false;
7d9813f1 15562 }
094e34f2 15563#endif
5b18a4bc 15564 }
103f02d3 15565
835f2fae 15566 if (! filedata->is_separate)
0ee3043f 15567 {
835f2fae
NC
15568 /* Check to see if the user requested a
15569 dump of a section that does not exist. */
15570 for (; i < filedata->dump.num_dump_sects; i++)
15571 if (filedata->dump.dump_sects[i])
15572 {
ca0e11aa 15573 warn (_("Section %d was not dumped because it does not exist!\n"), i);
015dc7e1 15574 res = false;
835f2fae 15575 }
0ee3043f 15576 }
32ec8896
NC
15577
15578 return res;
5b18a4bc 15579}
103f02d3 15580
5b18a4bc 15581static void
19e6b90e 15582process_mips_fpe_exception (int mask)
5b18a4bc 15583{
19e6b90e
L
15584 if (mask)
15585 {
015dc7e1 15586 bool first = true;
32ec8896 15587
19e6b90e 15588 if (mask & OEX_FPU_INEX)
015dc7e1 15589 fputs ("INEX", stdout), first = false;
19e6b90e 15590 if (mask & OEX_FPU_UFLO)
015dc7e1 15591 printf ("%sUFLO", first ? "" : "|"), first = false;
19e6b90e 15592 if (mask & OEX_FPU_OFLO)
015dc7e1 15593 printf ("%sOFLO", first ? "" : "|"), first = false;
19e6b90e 15594 if (mask & OEX_FPU_DIV0)
015dc7e1 15595 printf ("%sDIV0", first ? "" : "|"), first = false;
19e6b90e
L
15596 if (mask & OEX_FPU_INVAL)
15597 printf ("%sINVAL", first ? "" : "|");
15598 }
5b18a4bc 15599 else
19e6b90e 15600 fputs ("0", stdout);
5b18a4bc 15601}
103f02d3 15602
f6f0e17b
NC
15603/* Display's the value of TAG at location P. If TAG is
15604 greater than 0 it is assumed to be an unknown tag, and
15605 a message is printed to this effect. Otherwise it is
15606 assumed that a message has already been printed.
15607
15608 If the bottom bit of TAG is set it assumed to have a
15609 string value, otherwise it is assumed to have an integer
15610 value.
15611
15612 Returns an updated P pointing to the first unread byte
15613 beyond the end of TAG's value.
15614
15615 Reads at or beyond END will not be made. */
15616
15617static unsigned char *
60abdbed 15618display_tag_value (signed int tag,
f6f0e17b
NC
15619 unsigned char * p,
15620 const unsigned char * const end)
15621{
15622 unsigned long val;
15623
15624 if (tag > 0)
15625 printf (" Tag_unknown_%d: ", tag);
15626
15627 if (p >= end)
15628 {
4082ef84 15629 warn (_("<corrupt tag>\n"));
f6f0e17b
NC
15630 }
15631 else if (tag & 1)
15632 {
071436c6
NC
15633 /* PR 17531 file: 027-19978-0.004. */
15634 size_t maxlen = (end - p) - 1;
15635
15636 putchar ('"');
4082ef84
NC
15637 if (maxlen > 0)
15638 {
15639 print_symbol ((int) maxlen, (const char *) p);
15640 p += strnlen ((char *) p, maxlen) + 1;
15641 }
15642 else
15643 {
15644 printf (_("<corrupt string tag>"));
15645 p = (unsigned char *) end;
15646 }
071436c6 15647 printf ("\"\n");
f6f0e17b
NC
15648 }
15649 else
15650 {
cd30bcef 15651 READ_ULEB (val, p, end);
f6f0e17b
NC
15652 printf ("%ld (0x%lx)\n", val, val);
15653 }
15654
4082ef84 15655 assert (p <= end);
f6f0e17b
NC
15656 return p;
15657}
15658
53a346d8
CZ
15659/* ARC ABI attributes section. */
15660
15661static unsigned char *
15662display_arc_attribute (unsigned char * p,
15663 const unsigned char * const end)
15664{
15665 unsigned int tag;
53a346d8
CZ
15666 unsigned int val;
15667
cd30bcef 15668 READ_ULEB (tag, p, end);
53a346d8
CZ
15669
15670 switch (tag)
15671 {
15672 case Tag_ARC_PCS_config:
cd30bcef 15673 READ_ULEB (val, p, end);
53a346d8
CZ
15674 printf (" Tag_ARC_PCS_config: ");
15675 switch (val)
15676 {
15677 case 0:
15678 printf (_("Absent/Non standard\n"));
15679 break;
15680 case 1:
15681 printf (_("Bare metal/mwdt\n"));
15682 break;
15683 case 2:
15684 printf (_("Bare metal/newlib\n"));
15685 break;
15686 case 3:
15687 printf (_("Linux/uclibc\n"));
15688 break;
15689 case 4:
15690 printf (_("Linux/glibc\n"));
15691 break;
15692 default:
15693 printf (_("Unknown\n"));
15694 break;
15695 }
15696 break;
15697
15698 case Tag_ARC_CPU_base:
cd30bcef 15699 READ_ULEB (val, p, end);
53a346d8
CZ
15700 printf (" Tag_ARC_CPU_base: ");
15701 switch (val)
15702 {
15703 default:
15704 case TAG_CPU_NONE:
15705 printf (_("Absent\n"));
15706 break;
15707 case TAG_CPU_ARC6xx:
15708 printf ("ARC6xx\n");
15709 break;
15710 case TAG_CPU_ARC7xx:
15711 printf ("ARC7xx\n");
15712 break;
15713 case TAG_CPU_ARCEM:
15714 printf ("ARCEM\n");
15715 break;
15716 case TAG_CPU_ARCHS:
15717 printf ("ARCHS\n");
15718 break;
15719 }
15720 break;
15721
15722 case Tag_ARC_CPU_variation:
cd30bcef 15723 READ_ULEB (val, p, end);
53a346d8
CZ
15724 printf (" Tag_ARC_CPU_variation: ");
15725 switch (val)
15726 {
15727 default:
15728 if (val > 0 && val < 16)
53a346d8 15729 printf ("Core%d\n", val);
d8cbc93b
JL
15730 else
15731 printf ("Unknown\n");
15732 break;
15733
53a346d8
CZ
15734 case 0:
15735 printf (_("Absent\n"));
15736 break;
15737 }
15738 break;
15739
15740 case Tag_ARC_CPU_name:
15741 printf (" Tag_ARC_CPU_name: ");
15742 p = display_tag_value (-1, p, end);
15743 break;
15744
15745 case Tag_ARC_ABI_rf16:
cd30bcef 15746 READ_ULEB (val, p, end);
53a346d8
CZ
15747 printf (" Tag_ARC_ABI_rf16: %s\n", val ? _("yes") : _("no"));
15748 break;
15749
15750 case Tag_ARC_ABI_osver:
cd30bcef 15751 READ_ULEB (val, p, end);
53a346d8
CZ
15752 printf (" Tag_ARC_ABI_osver: v%d\n", val);
15753 break;
15754
15755 case Tag_ARC_ABI_pic:
15756 case Tag_ARC_ABI_sda:
cd30bcef 15757 READ_ULEB (val, p, end);
53a346d8
CZ
15758 printf (tag == Tag_ARC_ABI_sda ? " Tag_ARC_ABI_sda: "
15759 : " Tag_ARC_ABI_pic: ");
15760 switch (val)
15761 {
15762 case 0:
15763 printf (_("Absent\n"));
15764 break;
15765 case 1:
15766 printf ("MWDT\n");
15767 break;
15768 case 2:
15769 printf ("GNU\n");
15770 break;
15771 default:
15772 printf (_("Unknown\n"));
15773 break;
15774 }
15775 break;
15776
15777 case Tag_ARC_ABI_tls:
cd30bcef 15778 READ_ULEB (val, p, end);
53a346d8
CZ
15779 printf (" Tag_ARC_ABI_tls: %s\n", val ? "r25": "none");
15780 break;
15781
15782 case Tag_ARC_ABI_enumsize:
cd30bcef 15783 READ_ULEB (val, p, end);
53a346d8
CZ
15784 printf (" Tag_ARC_ABI_enumsize: %s\n", val ? _("default") :
15785 _("smallest"));
15786 break;
15787
15788 case Tag_ARC_ABI_exceptions:
cd30bcef 15789 READ_ULEB (val, p, end);
53a346d8
CZ
15790 printf (" Tag_ARC_ABI_exceptions: %s\n", val ? _("OPTFP")
15791 : _("default"));
15792 break;
15793
15794 case Tag_ARC_ABI_double_size:
cd30bcef 15795 READ_ULEB (val, p, end);
53a346d8
CZ
15796 printf (" Tag_ARC_ABI_double_size: %d\n", val);
15797 break;
15798
15799 case Tag_ARC_ISA_config:
15800 printf (" Tag_ARC_ISA_config: ");
15801 p = display_tag_value (-1, p, end);
15802 break;
15803
15804 case Tag_ARC_ISA_apex:
15805 printf (" Tag_ARC_ISA_apex: ");
15806 p = display_tag_value (-1, p, end);
15807 break;
15808
15809 case Tag_ARC_ISA_mpy_option:
cd30bcef 15810 READ_ULEB (val, p, end);
53a346d8
CZ
15811 printf (" Tag_ARC_ISA_mpy_option: %d\n", val);
15812 break;
15813
db1e1b45 15814 case Tag_ARC_ATR_version:
cd30bcef 15815 READ_ULEB (val, p, end);
db1e1b45 15816 printf (" Tag_ARC_ATR_version: %d\n", val);
15817 break;
15818
53a346d8
CZ
15819 default:
15820 return display_tag_value (tag & 1, p, end);
15821 }
15822
15823 return p;
15824}
15825
11c1ff18
PB
15826/* ARM EABI attributes section. */
15827typedef struct
15828{
70e99720 15829 unsigned int tag;
2cf0635d 15830 const char * name;
11c1ff18 15831 /* 0 = special, 1 = string, 2 = uleb123, > 0x80 == table lookup. */
70e99720 15832 unsigned int type;
288f0ba2 15833 const char *const *table;
11c1ff18
PB
15834} arm_attr_public_tag;
15835
288f0ba2 15836static const char *const arm_attr_tag_CPU_arch[] =
11c1ff18 15837 {"Pre-v4", "v4", "v4T", "v5T", "v5TE", "v5TEJ", "v6", "v6KZ", "v6T2",
ced40572 15838 "v6K", "v7", "v6-M", "v6S-M", "v7E-M", "v8", "v8-R", "v8-M.baseline",
031254f2 15839 "v8-M.mainline", "", "", "", "v8.1-M.mainline"};
288f0ba2
AM
15840static const char *const arm_attr_tag_ARM_ISA_use[] = {"No", "Yes"};
15841static const char *const arm_attr_tag_THUMB_ISA_use[] =
4ed7ed8d 15842 {"No", "Thumb-1", "Thumb-2", "Yes"};
288f0ba2 15843static const char *const arm_attr_tag_FP_arch[] =
bca38921 15844 {"No", "VFPv1", "VFPv2", "VFPv3", "VFPv3-D16", "VFPv4", "VFPv4-D16",
a715796b 15845 "FP for ARMv8", "FPv5/FP-D16 for ARMv8"};
288f0ba2
AM
15846static const char *const arm_attr_tag_WMMX_arch[] = {"No", "WMMXv1", "WMMXv2"};
15847static const char *const arm_attr_tag_Advanced_SIMD_arch[] =
9411fd44
MW
15848 {"No", "NEONv1", "NEONv1 with Fused-MAC", "NEON for ARMv8",
15849 "NEON for ARMv8.1"};
288f0ba2 15850static const char *const arm_attr_tag_PCS_config[] =
11c1ff18
PB
15851 {"None", "Bare platform", "Linux application", "Linux DSO", "PalmOS 2004",
15852 "PalmOS (reserved)", "SymbianOS 2004", "SymbianOS (reserved)"};
288f0ba2 15853static const char *const arm_attr_tag_ABI_PCS_R9_use[] =
11c1ff18 15854 {"V6", "SB", "TLS", "Unused"};
288f0ba2 15855static const char *const arm_attr_tag_ABI_PCS_RW_data[] =
11c1ff18 15856 {"Absolute", "PC-relative", "SB-relative", "None"};
288f0ba2 15857static const char *const arm_attr_tag_ABI_PCS_RO_data[] =
11c1ff18 15858 {"Absolute", "PC-relative", "None"};
288f0ba2 15859static const char *const arm_attr_tag_ABI_PCS_GOT_use[] =
11c1ff18 15860 {"None", "direct", "GOT-indirect"};
288f0ba2 15861static const char *const arm_attr_tag_ABI_PCS_wchar_t[] =
11c1ff18 15862 {"None", "??? 1", "2", "??? 3", "4"};
288f0ba2
AM
15863static const char *const arm_attr_tag_ABI_FP_rounding[] = {"Unused", "Needed"};
15864static const char *const arm_attr_tag_ABI_FP_denormal[] =
f5f53991 15865 {"Unused", "Needed", "Sign only"};
288f0ba2
AM
15866static const char *const arm_attr_tag_ABI_FP_exceptions[] = {"Unused", "Needed"};
15867static const char *const arm_attr_tag_ABI_FP_user_exceptions[] = {"Unused", "Needed"};
15868static const char *const arm_attr_tag_ABI_FP_number_model[] =
11c1ff18 15869 {"Unused", "Finite", "RTABI", "IEEE 754"};
288f0ba2 15870static const char *const arm_attr_tag_ABI_enum_size[] =
11c1ff18 15871 {"Unused", "small", "int", "forced to int"};
288f0ba2 15872static const char *const arm_attr_tag_ABI_HardFP_use[] =
99654aaf 15873 {"As Tag_FP_arch", "SP only", "Reserved", "Deprecated"};
288f0ba2 15874static const char *const arm_attr_tag_ABI_VFP_args[] =
5c294fee 15875 {"AAPCS", "VFP registers", "custom", "compatible"};
288f0ba2 15876static const char *const arm_attr_tag_ABI_WMMX_args[] =
11c1ff18 15877 {"AAPCS", "WMMX registers", "custom"};
288f0ba2 15878static const char *const arm_attr_tag_ABI_optimization_goals[] =
11c1ff18
PB
15879 {"None", "Prefer Speed", "Aggressive Speed", "Prefer Size",
15880 "Aggressive Size", "Prefer Debug", "Aggressive Debug"};
288f0ba2 15881static const char *const arm_attr_tag_ABI_FP_optimization_goals[] =
11c1ff18
PB
15882 {"None", "Prefer Speed", "Aggressive Speed", "Prefer Size",
15883 "Aggressive Size", "Prefer Accuracy", "Aggressive Accuracy"};
288f0ba2
AM
15884static const char *const arm_attr_tag_CPU_unaligned_access[] = {"None", "v6"};
15885static const char *const arm_attr_tag_FP_HP_extension[] =
8e79c3df 15886 {"Not Allowed", "Allowed"};
288f0ba2 15887static const char *const arm_attr_tag_ABI_FP_16bit_format[] =
8e79c3df 15888 {"None", "IEEE 754", "Alternative Format"};
288f0ba2 15889static const char *const arm_attr_tag_DSP_extension[] =
15afaa63 15890 {"Follow architecture", "Allowed"};
288f0ba2 15891static const char *const arm_attr_tag_MPextension_use[] =
cd21e546 15892 {"Not Allowed", "Allowed"};
288f0ba2 15893static const char *const arm_attr_tag_DIV_use[] =
dd24e3da 15894 {"Allowed in Thumb-ISA, v7-R or v7-M", "Not allowed",
cd21e546 15895 "Allowed in v7-A with integer division extension"};
288f0ba2
AM
15896static const char *const arm_attr_tag_T2EE_use[] = {"Not Allowed", "Allowed"};
15897static const char *const arm_attr_tag_Virtualization_use[] =
dd24e3da 15898 {"Not Allowed", "TrustZone", "Virtualization Extensions",
cd21e546 15899 "TrustZone and Virtualization Extensions"};
288f0ba2 15900static const char *const arm_attr_tag_MPextension_use_legacy[] =
f5f53991 15901 {"Not Allowed", "Allowed"};
11c1ff18 15902
288f0ba2 15903static const char *const arm_attr_tag_MVE_arch[] =
a7ad558c
AV
15904 {"No MVE", "MVE Integer only", "MVE Integer and FP"};
15905
11c1ff18
PB
15906#define LOOKUP(id, name) \
15907 {id, #name, 0x80 | ARRAY_SIZE(arm_attr_tag_##name), arm_attr_tag_##name}
d70c5fc7 15908static arm_attr_public_tag arm_attr_public_tags[] =
11c1ff18
PB
15909{
15910 {4, "CPU_raw_name", 1, NULL},
15911 {5, "CPU_name", 1, NULL},
15912 LOOKUP(6, CPU_arch),
15913 {7, "CPU_arch_profile", 0, NULL},
15914 LOOKUP(8, ARM_ISA_use),
15915 LOOKUP(9, THUMB_ISA_use),
75375b3e 15916 LOOKUP(10, FP_arch),
11c1ff18 15917 LOOKUP(11, WMMX_arch),
f5f53991
AS
15918 LOOKUP(12, Advanced_SIMD_arch),
15919 LOOKUP(13, PCS_config),
11c1ff18
PB
15920 LOOKUP(14, ABI_PCS_R9_use),
15921 LOOKUP(15, ABI_PCS_RW_data),
f5f53991 15922 LOOKUP(16, ABI_PCS_RO_data),
11c1ff18
PB
15923 LOOKUP(17, ABI_PCS_GOT_use),
15924 LOOKUP(18, ABI_PCS_wchar_t),
15925 LOOKUP(19, ABI_FP_rounding),
15926 LOOKUP(20, ABI_FP_denormal),
15927 LOOKUP(21, ABI_FP_exceptions),
15928 LOOKUP(22, ABI_FP_user_exceptions),
15929 LOOKUP(23, ABI_FP_number_model),
75375b3e
MGD
15930 {24, "ABI_align_needed", 0, NULL},
15931 {25, "ABI_align_preserved", 0, NULL},
11c1ff18
PB
15932 LOOKUP(26, ABI_enum_size),
15933 LOOKUP(27, ABI_HardFP_use),
15934 LOOKUP(28, ABI_VFP_args),
15935 LOOKUP(29, ABI_WMMX_args),
15936 LOOKUP(30, ABI_optimization_goals),
15937 LOOKUP(31, ABI_FP_optimization_goals),
8e79c3df 15938 {32, "compatibility", 0, NULL},
f5f53991 15939 LOOKUP(34, CPU_unaligned_access),
75375b3e 15940 LOOKUP(36, FP_HP_extension),
8e79c3df 15941 LOOKUP(38, ABI_FP_16bit_format),
cd21e546
MGD
15942 LOOKUP(42, MPextension_use),
15943 LOOKUP(44, DIV_use),
15afaa63 15944 LOOKUP(46, DSP_extension),
a7ad558c 15945 LOOKUP(48, MVE_arch),
f5f53991
AS
15946 {64, "nodefaults", 0, NULL},
15947 {65, "also_compatible_with", 0, NULL},
15948 LOOKUP(66, T2EE_use),
15949 {67, "conformance", 1, NULL},
15950 LOOKUP(68, Virtualization_use),
cd21e546 15951 LOOKUP(70, MPextension_use_legacy)
11c1ff18
PB
15952};
15953#undef LOOKUP
15954
11c1ff18 15955static unsigned char *
f6f0e17b
NC
15956display_arm_attribute (unsigned char * p,
15957 const unsigned char * const end)
11c1ff18 15958{
70e99720 15959 unsigned int tag;
70e99720 15960 unsigned int val;
2cf0635d 15961 arm_attr_public_tag * attr;
11c1ff18 15962 unsigned i;
70e99720 15963 unsigned int type;
11c1ff18 15964
cd30bcef 15965 READ_ULEB (tag, p, end);
11c1ff18 15966 attr = NULL;
2cf0635d 15967 for (i = 0; i < ARRAY_SIZE (arm_attr_public_tags); i++)
11c1ff18
PB
15968 {
15969 if (arm_attr_public_tags[i].tag == tag)
15970 {
15971 attr = &arm_attr_public_tags[i];
15972 break;
15973 }
15974 }
15975
15976 if (attr)
15977 {
15978 printf (" Tag_%s: ", attr->name);
15979 switch (attr->type)
15980 {
15981 case 0:
15982 switch (tag)
15983 {
15984 case 7: /* Tag_CPU_arch_profile. */
cd30bcef 15985 READ_ULEB (val, p, end);
11c1ff18
PB
15986 switch (val)
15987 {
2b692964
NC
15988 case 0: printf (_("None\n")); break;
15989 case 'A': printf (_("Application\n")); break;
15990 case 'R': printf (_("Realtime\n")); break;
15991 case 'M': printf (_("Microcontroller\n")); break;
15992 case 'S': printf (_("Application or Realtime\n")); break;
11c1ff18
PB
15993 default: printf ("??? (%d)\n", val); break;
15994 }
15995 break;
15996
75375b3e 15997 case 24: /* Tag_align_needed. */
cd30bcef 15998 READ_ULEB (val, p, end);
75375b3e
MGD
15999 switch (val)
16000 {
2b692964
NC
16001 case 0: printf (_("None\n")); break;
16002 case 1: printf (_("8-byte\n")); break;
16003 case 2: printf (_("4-byte\n")); break;
75375b3e
MGD
16004 case 3: printf ("??? 3\n"); break;
16005 default:
16006 if (val <= 12)
dd24e3da 16007 printf (_("8-byte and up to %d-byte extended\n"),
75375b3e
MGD
16008 1 << val);
16009 else
16010 printf ("??? (%d)\n", val);
16011 break;
16012 }
16013 break;
16014
16015 case 25: /* Tag_align_preserved. */
cd30bcef 16016 READ_ULEB (val, p, end);
75375b3e
MGD
16017 switch (val)
16018 {
2b692964
NC
16019 case 0: printf (_("None\n")); break;
16020 case 1: printf (_("8-byte, except leaf SP\n")); break;
16021 case 2: printf (_("8-byte\n")); break;
75375b3e
MGD
16022 case 3: printf ("??? 3\n"); break;
16023 default:
16024 if (val <= 12)
dd24e3da 16025 printf (_("8-byte and up to %d-byte extended\n"),
75375b3e
MGD
16026 1 << val);
16027 else
16028 printf ("??? (%d)\n", val);
16029 break;
16030 }
16031 break;
16032
11c1ff18 16033 case 32: /* Tag_compatibility. */
071436c6 16034 {
cd30bcef 16035 READ_ULEB (val, p, end);
071436c6 16036 printf (_("flag = %d, vendor = "), val);
4082ef84
NC
16037 if (p < end - 1)
16038 {
16039 size_t maxlen = (end - p) - 1;
16040
16041 print_symbol ((int) maxlen, (const char *) p);
16042 p += strnlen ((char *) p, maxlen) + 1;
16043 }
16044 else
16045 {
16046 printf (_("<corrupt>"));
16047 p = (unsigned char *) end;
16048 }
071436c6 16049 putchar ('\n');
071436c6 16050 }
11c1ff18
PB
16051 break;
16052
f5f53991 16053 case 64: /* Tag_nodefaults. */
541a3cbd
NC
16054 /* PR 17531: file: 001-505008-0.01. */
16055 if (p < end)
16056 p++;
2b692964 16057 printf (_("True\n"));
f5f53991
AS
16058 break;
16059
16060 case 65: /* Tag_also_compatible_with. */
cd30bcef 16061 READ_ULEB (val, p, end);
f5f53991
AS
16062 if (val == 6 /* Tag_CPU_arch. */)
16063 {
cd30bcef 16064 READ_ULEB (val, p, end);
071436c6 16065 if ((unsigned int) val >= ARRAY_SIZE (arm_attr_tag_CPU_arch))
f5f53991
AS
16066 printf ("??? (%d)\n", val);
16067 else
16068 printf ("%s\n", arm_attr_tag_CPU_arch[val]);
16069 }
16070 else
16071 printf ("???\n");
071436c6
NC
16072 while (p < end && *(p++) != '\0' /* NUL terminator. */)
16073 ;
f5f53991
AS
16074 break;
16075
11c1ff18 16076 default:
bee0ee85
NC
16077 printf (_("<unknown: %d>\n"), tag);
16078 break;
11c1ff18
PB
16079 }
16080 return p;
16081
16082 case 1:
f6f0e17b 16083 return display_tag_value (-1, p, end);
11c1ff18 16084 case 2:
f6f0e17b 16085 return display_tag_value (0, p, end);
11c1ff18
PB
16086
16087 default:
16088 assert (attr->type & 0x80);
cd30bcef 16089 READ_ULEB (val, p, end);
11c1ff18
PB
16090 type = attr->type & 0x7f;
16091 if (val >= type)
16092 printf ("??? (%d)\n", val);
16093 else
16094 printf ("%s\n", attr->table[val]);
16095 return p;
16096 }
16097 }
11c1ff18 16098
f6f0e17b 16099 return display_tag_value (tag, p, end);
11c1ff18
PB
16100}
16101
104d59d1 16102static unsigned char *
60bca95a 16103display_gnu_attribute (unsigned char * p,
60abdbed 16104 unsigned char * (* display_proc_gnu_attribute) (unsigned char *, unsigned int, const unsigned char * const),
f6f0e17b 16105 const unsigned char * const end)
104d59d1 16106{
cd30bcef 16107 unsigned int tag;
60abdbed 16108 unsigned int val;
104d59d1 16109
cd30bcef 16110 READ_ULEB (tag, p, end);
104d59d1
JM
16111
16112 /* Tag_compatibility is the only generic GNU attribute defined at
16113 present. */
16114 if (tag == 32)
16115 {
cd30bcef 16116 READ_ULEB (val, p, end);
071436c6
NC
16117
16118 printf (_("flag = %d, vendor = "), val);
f6f0e17b
NC
16119 if (p == end)
16120 {
071436c6 16121 printf (_("<corrupt>\n"));
f6f0e17b
NC
16122 warn (_("corrupt vendor attribute\n"));
16123 }
16124 else
16125 {
4082ef84
NC
16126 if (p < end - 1)
16127 {
16128 size_t maxlen = (end - p) - 1;
071436c6 16129
4082ef84
NC
16130 print_symbol ((int) maxlen, (const char *) p);
16131 p += strnlen ((char *) p, maxlen) + 1;
16132 }
16133 else
16134 {
16135 printf (_("<corrupt>"));
16136 p = (unsigned char *) end;
16137 }
071436c6 16138 putchar ('\n');
f6f0e17b 16139 }
104d59d1
JM
16140 return p;
16141 }
16142
16143 if ((tag & 2) == 0 && display_proc_gnu_attribute)
f6f0e17b 16144 return display_proc_gnu_attribute (p, tag, end);
104d59d1 16145
f6f0e17b 16146 return display_tag_value (tag, p, end);
104d59d1
JM
16147}
16148
85f7484a
PB
16149static unsigned char *
16150display_m68k_gnu_attribute (unsigned char * p,
16151 unsigned int tag,
16152 const unsigned char * const end)
16153{
16154 unsigned int val;
16155
16156 if (tag == Tag_GNU_M68K_ABI_FP)
16157 {
16158 printf (" Tag_GNU_M68K_ABI_FP: ");
16159 if (p == end)
16160 {
16161 printf (_("<corrupt>\n"));
16162 return p;
16163 }
16164 READ_ULEB (val, p, end);
16165
16166 if (val > 3)
16167 printf ("(%#x), ", val);
16168
16169 switch (val & 3)
16170 {
16171 case 0:
16172 printf (_("unspecified hard/soft float\n"));
16173 break;
16174 case 1:
16175 printf (_("hard float\n"));
16176 break;
16177 case 2:
16178 printf (_("soft float\n"));
16179 break;
16180 }
16181 return p;
16182 }
16183
16184 return display_tag_value (tag & 1, p, end);
16185}
16186
34c8bcba 16187static unsigned char *
f6f0e17b 16188display_power_gnu_attribute (unsigned char * p,
60abdbed 16189 unsigned int tag,
f6f0e17b 16190 const unsigned char * const end)
34c8bcba 16191{
005d79fd 16192 unsigned int val;
34c8bcba
JM
16193
16194 if (tag == Tag_GNU_Power_ABI_FP)
16195 {
34c8bcba 16196 printf (" Tag_GNU_Power_ABI_FP: ");
cd30bcef 16197 if (p == end)
005d79fd
AM
16198 {
16199 printf (_("<corrupt>\n"));
16200 return p;
16201 }
cd30bcef 16202 READ_ULEB (val, p, end);
60bca95a 16203
005d79fd
AM
16204 if (val > 15)
16205 printf ("(%#x), ", val);
16206
16207 switch (val & 3)
34c8bcba
JM
16208 {
16209 case 0:
005d79fd 16210 printf (_("unspecified hard/soft float, "));
34c8bcba
JM
16211 break;
16212 case 1:
005d79fd 16213 printf (_("hard float, "));
34c8bcba
JM
16214 break;
16215 case 2:
005d79fd 16216 printf (_("soft float, "));
34c8bcba 16217 break;
3c7b9897 16218 case 3:
005d79fd 16219 printf (_("single-precision hard float, "));
3c7b9897 16220 break;
005d79fd
AM
16221 }
16222
16223 switch (val & 0xC)
16224 {
16225 case 0:
16226 printf (_("unspecified long double\n"));
16227 break;
16228 case 4:
16229 printf (_("128-bit IBM long double\n"));
16230 break;
16231 case 8:
16232 printf (_("64-bit long double\n"));
16233 break;
16234 case 12:
16235 printf (_("128-bit IEEE long double\n"));
34c8bcba
JM
16236 break;
16237 }
16238 return p;
005d79fd 16239 }
34c8bcba 16240
c6e65352
DJ
16241 if (tag == Tag_GNU_Power_ABI_Vector)
16242 {
c6e65352 16243 printf (" Tag_GNU_Power_ABI_Vector: ");
cd30bcef 16244 if (p == end)
005d79fd
AM
16245 {
16246 printf (_("<corrupt>\n"));
16247 return p;
16248 }
cd30bcef 16249 READ_ULEB (val, p, end);
005d79fd
AM
16250
16251 if (val > 3)
16252 printf ("(%#x), ", val);
16253
16254 switch (val & 3)
c6e65352
DJ
16255 {
16256 case 0:
005d79fd 16257 printf (_("unspecified\n"));
c6e65352
DJ
16258 break;
16259 case 1:
005d79fd 16260 printf (_("generic\n"));
c6e65352
DJ
16261 break;
16262 case 2:
16263 printf ("AltiVec\n");
16264 break;
16265 case 3:
16266 printf ("SPE\n");
16267 break;
c6e65352
DJ
16268 }
16269 return p;
005d79fd 16270 }
c6e65352 16271
f82e0623
NF
16272 if (tag == Tag_GNU_Power_ABI_Struct_Return)
16273 {
005d79fd 16274 printf (" Tag_GNU_Power_ABI_Struct_Return: ");
cd30bcef 16275 if (p == end)
f6f0e17b 16276 {
005d79fd 16277 printf (_("<corrupt>\n"));
f6f0e17b
NC
16278 return p;
16279 }
cd30bcef 16280 READ_ULEB (val, p, end);
0b4362b0 16281
005d79fd
AM
16282 if (val > 2)
16283 printf ("(%#x), ", val);
16284
16285 switch (val & 3)
16286 {
16287 case 0:
16288 printf (_("unspecified\n"));
16289 break;
16290 case 1:
16291 printf ("r3/r4\n");
16292 break;
16293 case 2:
16294 printf (_("memory\n"));
16295 break;
16296 case 3:
16297 printf ("???\n");
16298 break;
16299 }
f82e0623
NF
16300 return p;
16301 }
16302
f6f0e17b 16303 return display_tag_value (tag & 1, p, end);
34c8bcba
JM
16304}
16305
643f7afb
AK
16306static unsigned char *
16307display_s390_gnu_attribute (unsigned char * p,
60abdbed 16308 unsigned int tag,
643f7afb
AK
16309 const unsigned char * const end)
16310{
cd30bcef 16311 unsigned int val;
643f7afb
AK
16312
16313 if (tag == Tag_GNU_S390_ABI_Vector)
16314 {
643f7afb 16315 printf (" Tag_GNU_S390_ABI_Vector: ");
cd30bcef 16316 READ_ULEB (val, p, end);
643f7afb
AK
16317
16318 switch (val)
16319 {
16320 case 0:
16321 printf (_("any\n"));
16322 break;
16323 case 1:
16324 printf (_("software\n"));
16325 break;
16326 case 2:
16327 printf (_("hardware\n"));
16328 break;
16329 default:
16330 printf ("??? (%d)\n", val);
16331 break;
16332 }
16333 return p;
16334 }
16335
16336 return display_tag_value (tag & 1, p, end);
16337}
16338
9e8c70f9 16339static void
60abdbed 16340display_sparc_hwcaps (unsigned int mask)
9e8c70f9
DM
16341{
16342 if (mask)
16343 {
015dc7e1 16344 bool first = true;
071436c6 16345
9e8c70f9 16346 if (mask & ELF_SPARC_HWCAP_MUL32)
015dc7e1 16347 fputs ("mul32", stdout), first = false;
9e8c70f9 16348 if (mask & ELF_SPARC_HWCAP_DIV32)
015dc7e1 16349 printf ("%sdiv32", first ? "" : "|"), first = false;
9e8c70f9 16350 if (mask & ELF_SPARC_HWCAP_FSMULD)
015dc7e1 16351 printf ("%sfsmuld", first ? "" : "|"), first = false;
9e8c70f9 16352 if (mask & ELF_SPARC_HWCAP_V8PLUS)
015dc7e1 16353 printf ("%sv8plus", first ? "" : "|"), first = false;
9e8c70f9 16354 if (mask & ELF_SPARC_HWCAP_POPC)
015dc7e1 16355 printf ("%spopc", first ? "" : "|"), first = false;
9e8c70f9 16356 if (mask & ELF_SPARC_HWCAP_VIS)
015dc7e1 16357 printf ("%svis", first ? "" : "|"), first = false;
9e8c70f9 16358 if (mask & ELF_SPARC_HWCAP_VIS2)
015dc7e1 16359 printf ("%svis2", first ? "" : "|"), first = false;
9e8c70f9 16360 if (mask & ELF_SPARC_HWCAP_ASI_BLK_INIT)
015dc7e1 16361 printf ("%sASIBlkInit", first ? "" : "|"), first = false;
9e8c70f9 16362 if (mask & ELF_SPARC_HWCAP_FMAF)
015dc7e1 16363 printf ("%sfmaf", first ? "" : "|"), first = false;
9e8c70f9 16364 if (mask & ELF_SPARC_HWCAP_VIS3)
015dc7e1 16365 printf ("%svis3", first ? "" : "|"), first = false;
9e8c70f9 16366 if (mask & ELF_SPARC_HWCAP_HPC)
015dc7e1 16367 printf ("%shpc", first ? "" : "|"), first = false;
9e8c70f9 16368 if (mask & ELF_SPARC_HWCAP_RANDOM)
015dc7e1 16369 printf ("%srandom", first ? "" : "|"), first = false;
9e8c70f9 16370 if (mask & ELF_SPARC_HWCAP_TRANS)
015dc7e1 16371 printf ("%strans", first ? "" : "|"), first = false;
9e8c70f9 16372 if (mask & ELF_SPARC_HWCAP_FJFMAU)
015dc7e1 16373 printf ("%sfjfmau", first ? "" : "|"), first = false;
9e8c70f9 16374 if (mask & ELF_SPARC_HWCAP_IMA)
015dc7e1 16375 printf ("%sima", first ? "" : "|"), first = false;
9e8c70f9 16376 if (mask & ELF_SPARC_HWCAP_ASI_CACHE_SPARING)
015dc7e1 16377 printf ("%scspare", first ? "" : "|"), first = false;
9e8c70f9
DM
16378 }
16379 else
071436c6
NC
16380 fputc ('0', stdout);
16381 fputc ('\n', stdout);
9e8c70f9
DM
16382}
16383
3d68f91c 16384static void
60abdbed 16385display_sparc_hwcaps2 (unsigned int mask)
3d68f91c
JM
16386{
16387 if (mask)
16388 {
015dc7e1 16389 bool first = true;
071436c6 16390
3d68f91c 16391 if (mask & ELF_SPARC_HWCAP2_FJATHPLUS)
015dc7e1 16392 fputs ("fjathplus", stdout), first = false;
3d68f91c 16393 if (mask & ELF_SPARC_HWCAP2_VIS3B)
015dc7e1 16394 printf ("%svis3b", first ? "" : "|"), first = false;
3d68f91c 16395 if (mask & ELF_SPARC_HWCAP2_ADP)
015dc7e1 16396 printf ("%sadp", first ? "" : "|"), first = false;
3d68f91c 16397 if (mask & ELF_SPARC_HWCAP2_SPARC5)
015dc7e1 16398 printf ("%ssparc5", first ? "" : "|"), first = false;
3d68f91c 16399 if (mask & ELF_SPARC_HWCAP2_MWAIT)
015dc7e1 16400 printf ("%smwait", first ? "" : "|"), first = false;
3d68f91c 16401 if (mask & ELF_SPARC_HWCAP2_XMPMUL)
015dc7e1 16402 printf ("%sxmpmul", first ? "" : "|"), first = false;
3d68f91c 16403 if (mask & ELF_SPARC_HWCAP2_XMONT)
015dc7e1 16404 printf ("%sxmont2", first ? "" : "|"), first = false;
3d68f91c 16405 if (mask & ELF_SPARC_HWCAP2_NSEC)
015dc7e1 16406 printf ("%snsec", first ? "" : "|"), first = false;
3d68f91c 16407 if (mask & ELF_SPARC_HWCAP2_FJATHHPC)
015dc7e1 16408 printf ("%sfjathhpc", first ? "" : "|"), first = false;
3d68f91c 16409 if (mask & ELF_SPARC_HWCAP2_FJDES)
015dc7e1 16410 printf ("%sfjdes", first ? "" : "|"), first = false;
3d68f91c 16411 if (mask & ELF_SPARC_HWCAP2_FJAES)
015dc7e1 16412 printf ("%sfjaes", first ? "" : "|"), first = false;
3d68f91c
JM
16413 }
16414 else
071436c6
NC
16415 fputc ('0', stdout);
16416 fputc ('\n', stdout);
3d68f91c
JM
16417}
16418
9e8c70f9 16419static unsigned char *
f6f0e17b 16420display_sparc_gnu_attribute (unsigned char * p,
60abdbed 16421 unsigned int tag,
f6f0e17b 16422 const unsigned char * const end)
9e8c70f9 16423{
cd30bcef 16424 unsigned int val;
3d68f91c 16425
9e8c70f9
DM
16426 if (tag == Tag_GNU_Sparc_HWCAPS)
16427 {
cd30bcef 16428 READ_ULEB (val, p, end);
9e8c70f9 16429 printf (" Tag_GNU_Sparc_HWCAPS: ");
9e8c70f9
DM
16430 display_sparc_hwcaps (val);
16431 return p;
3d68f91c
JM
16432 }
16433 if (tag == Tag_GNU_Sparc_HWCAPS2)
16434 {
cd30bcef 16435 READ_ULEB (val, p, end);
3d68f91c
JM
16436 printf (" Tag_GNU_Sparc_HWCAPS2: ");
16437 display_sparc_hwcaps2 (val);
16438 return p;
16439 }
9e8c70f9 16440
f6f0e17b 16441 return display_tag_value (tag, p, end);
9e8c70f9
DM
16442}
16443
351cdf24 16444static void
32ec8896 16445print_mips_fp_abi_value (unsigned int val)
351cdf24
MF
16446{
16447 switch (val)
16448 {
16449 case Val_GNU_MIPS_ABI_FP_ANY:
16450 printf (_("Hard or soft float\n"));
16451 break;
16452 case Val_GNU_MIPS_ABI_FP_DOUBLE:
16453 printf (_("Hard float (double precision)\n"));
16454 break;
16455 case Val_GNU_MIPS_ABI_FP_SINGLE:
16456 printf (_("Hard float (single precision)\n"));
16457 break;
16458 case Val_GNU_MIPS_ABI_FP_SOFT:
16459 printf (_("Soft float\n"));
16460 break;
16461 case Val_GNU_MIPS_ABI_FP_OLD_64:
16462 printf (_("Hard float (MIPS32r2 64-bit FPU 12 callee-saved)\n"));
16463 break;
16464 case Val_GNU_MIPS_ABI_FP_XX:
16465 printf (_("Hard float (32-bit CPU, Any FPU)\n"));
16466 break;
16467 case Val_GNU_MIPS_ABI_FP_64:
16468 printf (_("Hard float (32-bit CPU, 64-bit FPU)\n"));
16469 break;
16470 case Val_GNU_MIPS_ABI_FP_64A:
16471 printf (_("Hard float compat (32-bit CPU, 64-bit FPU)\n"));
16472 break;
3350cc01
CM
16473 case Val_GNU_MIPS_ABI_FP_NAN2008:
16474 printf (_("NaN 2008 compatibility\n"));
16475 break;
351cdf24
MF
16476 default:
16477 printf ("??? (%d)\n", val);
16478 break;
16479 }
16480}
16481
2cf19d5c 16482static unsigned char *
f6f0e17b 16483display_mips_gnu_attribute (unsigned char * p,
60abdbed 16484 unsigned int tag,
f6f0e17b 16485 const unsigned char * const end)
2cf19d5c 16486{
2cf19d5c
JM
16487 if (tag == Tag_GNU_MIPS_ABI_FP)
16488 {
32ec8896 16489 unsigned int val;
f6f0e17b 16490
2cf19d5c 16491 printf (" Tag_GNU_MIPS_ABI_FP: ");
cd30bcef 16492 READ_ULEB (val, p, end);
351cdf24 16493 print_mips_fp_abi_value (val);
2cf19d5c
JM
16494 return p;
16495 }
16496
a9f58168
CF
16497 if (tag == Tag_GNU_MIPS_ABI_MSA)
16498 {
32ec8896 16499 unsigned int val;
a9f58168 16500
a9f58168 16501 printf (" Tag_GNU_MIPS_ABI_MSA: ");
cd30bcef 16502 READ_ULEB (val, p, end);
a9f58168
CF
16503
16504 switch (val)
16505 {
16506 case Val_GNU_MIPS_ABI_MSA_ANY:
16507 printf (_("Any MSA or not\n"));
16508 break;
16509 case Val_GNU_MIPS_ABI_MSA_128:
16510 printf (_("128-bit MSA\n"));
16511 break;
16512 default:
16513 printf ("??? (%d)\n", val);
16514 break;
16515 }
16516 return p;
16517 }
16518
f6f0e17b 16519 return display_tag_value (tag & 1, p, end);
2cf19d5c
JM
16520}
16521
59e6276b 16522static unsigned char *
f6f0e17b
NC
16523display_tic6x_attribute (unsigned char * p,
16524 const unsigned char * const end)
59e6276b 16525{
60abdbed 16526 unsigned int tag;
cd30bcef 16527 unsigned int val;
59e6276b 16528
cd30bcef 16529 READ_ULEB (tag, p, end);
59e6276b
JM
16530
16531 switch (tag)
16532 {
75fa6dc1 16533 case Tag_ISA:
75fa6dc1 16534 printf (" Tag_ISA: ");
cd30bcef 16535 READ_ULEB (val, p, end);
59e6276b
JM
16536
16537 switch (val)
16538 {
75fa6dc1 16539 case C6XABI_Tag_ISA_none:
59e6276b
JM
16540 printf (_("None\n"));
16541 break;
75fa6dc1 16542 case C6XABI_Tag_ISA_C62X:
59e6276b
JM
16543 printf ("C62x\n");
16544 break;
75fa6dc1 16545 case C6XABI_Tag_ISA_C67X:
59e6276b
JM
16546 printf ("C67x\n");
16547 break;
75fa6dc1 16548 case C6XABI_Tag_ISA_C67XP:
59e6276b
JM
16549 printf ("C67x+\n");
16550 break;
75fa6dc1 16551 case C6XABI_Tag_ISA_C64X:
59e6276b
JM
16552 printf ("C64x\n");
16553 break;
75fa6dc1 16554 case C6XABI_Tag_ISA_C64XP:
59e6276b
JM
16555 printf ("C64x+\n");
16556 break;
75fa6dc1 16557 case C6XABI_Tag_ISA_C674X:
59e6276b
JM
16558 printf ("C674x\n");
16559 break;
16560 default:
16561 printf ("??? (%d)\n", val);
16562 break;
16563 }
16564 return p;
16565
87779176 16566 case Tag_ABI_wchar_t:
87779176 16567 printf (" Tag_ABI_wchar_t: ");
cd30bcef 16568 READ_ULEB (val, p, end);
87779176
JM
16569 switch (val)
16570 {
16571 case 0:
16572 printf (_("Not used\n"));
16573 break;
16574 case 1:
16575 printf (_("2 bytes\n"));
16576 break;
16577 case 2:
16578 printf (_("4 bytes\n"));
16579 break;
16580 default:
16581 printf ("??? (%d)\n", val);
16582 break;
16583 }
16584 return p;
16585
16586 case Tag_ABI_stack_align_needed:
87779176 16587 printf (" Tag_ABI_stack_align_needed: ");
cd30bcef 16588 READ_ULEB (val, p, end);
87779176
JM
16589 switch (val)
16590 {
16591 case 0:
16592 printf (_("8-byte\n"));
16593 break;
16594 case 1:
16595 printf (_("16-byte\n"));
16596 break;
16597 default:
16598 printf ("??? (%d)\n", val);
16599 break;
16600 }
16601 return p;
16602
16603 case Tag_ABI_stack_align_preserved:
cd30bcef 16604 READ_ULEB (val, p, end);
87779176
JM
16605 printf (" Tag_ABI_stack_align_preserved: ");
16606 switch (val)
16607 {
16608 case 0:
16609 printf (_("8-byte\n"));
16610 break;
16611 case 1:
16612 printf (_("16-byte\n"));
16613 break;
16614 default:
16615 printf ("??? (%d)\n", val);
16616 break;
16617 }
16618 return p;
16619
b5593623 16620 case Tag_ABI_DSBT:
cd30bcef 16621 READ_ULEB (val, p, end);
b5593623
JM
16622 printf (" Tag_ABI_DSBT: ");
16623 switch (val)
16624 {
16625 case 0:
16626 printf (_("DSBT addressing not used\n"));
16627 break;
16628 case 1:
16629 printf (_("DSBT addressing used\n"));
16630 break;
16631 default:
16632 printf ("??? (%d)\n", val);
16633 break;
16634 }
16635 return p;
16636
87779176 16637 case Tag_ABI_PID:
cd30bcef 16638 READ_ULEB (val, p, end);
87779176
JM
16639 printf (" Tag_ABI_PID: ");
16640 switch (val)
16641 {
16642 case 0:
16643 printf (_("Data addressing position-dependent\n"));
16644 break;
16645 case 1:
16646 printf (_("Data addressing position-independent, GOT near DP\n"));
16647 break;
16648 case 2:
16649 printf (_("Data addressing position-independent, GOT far from DP\n"));
16650 break;
16651 default:
16652 printf ("??? (%d)\n", val);
16653 break;
16654 }
16655 return p;
16656
16657 case Tag_ABI_PIC:
cd30bcef 16658 READ_ULEB (val, p, end);
87779176
JM
16659 printf (" Tag_ABI_PIC: ");
16660 switch (val)
16661 {
16662 case 0:
16663 printf (_("Code addressing position-dependent\n"));
16664 break;
16665 case 1:
16666 printf (_("Code addressing position-independent\n"));
16667 break;
16668 default:
16669 printf ("??? (%d)\n", val);
16670 break;
16671 }
16672 return p;
16673
16674 case Tag_ABI_array_object_alignment:
cd30bcef 16675 READ_ULEB (val, p, end);
87779176
JM
16676 printf (" Tag_ABI_array_object_alignment: ");
16677 switch (val)
16678 {
16679 case 0:
16680 printf (_("8-byte\n"));
16681 break;
16682 case 1:
16683 printf (_("4-byte\n"));
16684 break;
16685 case 2:
16686 printf (_("16-byte\n"));
16687 break;
16688 default:
16689 printf ("??? (%d)\n", val);
16690 break;
16691 }
16692 return p;
16693
16694 case Tag_ABI_array_object_align_expected:
cd30bcef 16695 READ_ULEB (val, p, end);
87779176
JM
16696 printf (" Tag_ABI_array_object_align_expected: ");
16697 switch (val)
16698 {
16699 case 0:
16700 printf (_("8-byte\n"));
16701 break;
16702 case 1:
16703 printf (_("4-byte\n"));
16704 break;
16705 case 2:
16706 printf (_("16-byte\n"));
16707 break;
16708 default:
16709 printf ("??? (%d)\n", val);
16710 break;
16711 }
16712 return p;
16713
3cbd1c06 16714 case Tag_ABI_compatibility:
071436c6 16715 {
cd30bcef 16716 READ_ULEB (val, p, end);
071436c6 16717 printf (" Tag_ABI_compatibility: ");
071436c6 16718 printf (_("flag = %d, vendor = "), val);
4082ef84
NC
16719 if (p < end - 1)
16720 {
16721 size_t maxlen = (end - p) - 1;
16722
16723 print_symbol ((int) maxlen, (const char *) p);
16724 p += strnlen ((char *) p, maxlen) + 1;
16725 }
16726 else
16727 {
16728 printf (_("<corrupt>"));
16729 p = (unsigned char *) end;
16730 }
071436c6 16731 putchar ('\n');
071436c6
NC
16732 return p;
16733 }
87779176
JM
16734
16735 case Tag_ABI_conformance:
071436c6 16736 {
4082ef84
NC
16737 printf (" Tag_ABI_conformance: \"");
16738 if (p < end - 1)
16739 {
16740 size_t maxlen = (end - p) - 1;
071436c6 16741
4082ef84
NC
16742 print_symbol ((int) maxlen, (const char *) p);
16743 p += strnlen ((char *) p, maxlen) + 1;
16744 }
16745 else
16746 {
16747 printf (_("<corrupt>"));
16748 p = (unsigned char *) end;
16749 }
071436c6 16750 printf ("\"\n");
071436c6
NC
16751 return p;
16752 }
59e6276b
JM
16753 }
16754
f6f0e17b
NC
16755 return display_tag_value (tag, p, end);
16756}
59e6276b 16757
f6f0e17b 16758static void
60abdbed 16759display_raw_attribute (unsigned char * p, unsigned char const * const end)
f6f0e17b
NC
16760{
16761 unsigned long addr = 0;
16762 size_t bytes = end - p;
16763
feceaa59 16764 assert (end >= p);
f6f0e17b 16765 while (bytes)
87779176 16766 {
f6f0e17b
NC
16767 int j;
16768 int k;
16769 int lbytes = (bytes > 16 ? 16 : bytes);
16770
16771 printf (" 0x%8.8lx ", addr);
16772
16773 for (j = 0; j < 16; j++)
16774 {
16775 if (j < lbytes)
16776 printf ("%2.2x", p[j]);
16777 else
16778 printf (" ");
16779
16780 if ((j & 3) == 3)
16781 printf (" ");
16782 }
16783
16784 for (j = 0; j < lbytes; j++)
16785 {
16786 k = p[j];
16787 if (k >= ' ' && k < 0x7f)
16788 printf ("%c", k);
16789 else
16790 printf (".");
16791 }
16792
16793 putchar ('\n');
16794
16795 p += lbytes;
16796 bytes -= lbytes;
16797 addr += lbytes;
87779176 16798 }
59e6276b 16799
f6f0e17b 16800 putchar ('\n');
59e6276b
JM
16801}
16802
13761a11 16803static unsigned char *
b0191216 16804display_msp430_attribute (unsigned char * p,
13761a11
NC
16805 const unsigned char * const end)
16806{
60abdbed
NC
16807 unsigned int val;
16808 unsigned int tag;
13761a11 16809
cd30bcef 16810 READ_ULEB (tag, p, end);
0b4362b0 16811
13761a11
NC
16812 switch (tag)
16813 {
16814 case OFBA_MSPABI_Tag_ISA:
13761a11 16815 printf (" Tag_ISA: ");
cd30bcef 16816 READ_ULEB (val, p, end);
13761a11
NC
16817 switch (val)
16818 {
16819 case 0: printf (_("None\n")); break;
16820 case 1: printf (_("MSP430\n")); break;
16821 case 2: printf (_("MSP430X\n")); break;
16822 default: printf ("??? (%d)\n", val); break;
16823 }
16824 break;
16825
16826 case OFBA_MSPABI_Tag_Code_Model:
13761a11 16827 printf (" Tag_Code_Model: ");
cd30bcef 16828 READ_ULEB (val, p, end);
13761a11
NC
16829 switch (val)
16830 {
16831 case 0: printf (_("None\n")); break;
16832 case 1: printf (_("Small\n")); break;
16833 case 2: printf (_("Large\n")); break;
16834 default: printf ("??? (%d)\n", val); break;
16835 }
16836 break;
16837
16838 case OFBA_MSPABI_Tag_Data_Model:
13761a11 16839 printf (" Tag_Data_Model: ");
cd30bcef 16840 READ_ULEB (val, p, end);
13761a11
NC
16841 switch (val)
16842 {
16843 case 0: printf (_("None\n")); break;
16844 case 1: printf (_("Small\n")); break;
16845 case 2: printf (_("Large\n")); break;
16846 case 3: printf (_("Restricted Large\n")); break;
16847 default: printf ("??? (%d)\n", val); break;
16848 }
16849 break;
16850
16851 default:
16852 printf (_(" <unknown tag %d>: "), tag);
16853
16854 if (tag & 1)
16855 {
071436c6 16856 putchar ('"');
4082ef84
NC
16857 if (p < end - 1)
16858 {
16859 size_t maxlen = (end - p) - 1;
16860
16861 print_symbol ((int) maxlen, (const char *) p);
16862 p += strnlen ((char *) p, maxlen) + 1;
16863 }
16864 else
16865 {
16866 printf (_("<corrupt>"));
16867 p = (unsigned char *) end;
16868 }
071436c6 16869 printf ("\"\n");
13761a11
NC
16870 }
16871 else
16872 {
cd30bcef 16873 READ_ULEB (val, p, end);
13761a11
NC
16874 printf ("%d (0x%x)\n", val, val);
16875 }
16876 break;
16877 }
16878
4082ef84 16879 assert (p <= end);
13761a11
NC
16880 return p;
16881}
16882
c0ea7c52
JL
16883static unsigned char *
16884display_msp430_gnu_attribute (unsigned char * p,
16885 unsigned int tag,
16886 const unsigned char * const end)
16887{
16888 if (tag == Tag_GNU_MSP430_Data_Region)
16889 {
cd30bcef 16890 unsigned int val;
c0ea7c52 16891
c0ea7c52 16892 printf (" Tag_GNU_MSP430_Data_Region: ");
cd30bcef 16893 READ_ULEB (val, p, end);
c0ea7c52
JL
16894
16895 switch (val)
16896 {
16897 case Val_GNU_MSP430_Data_Region_Any:
16898 printf (_("Any Region\n"));
16899 break;
16900 case Val_GNU_MSP430_Data_Region_Lower:
16901 printf (_("Lower Region Only\n"));
16902 break;
16903 default:
cd30bcef 16904 printf ("??? (%u)\n", val);
c0ea7c52
JL
16905 }
16906 return p;
16907 }
16908 return display_tag_value (tag & 1, p, end);
16909}
16910
2dc8dd17
JW
16911struct riscv_attr_tag_t {
16912 const char *name;
cd30bcef 16913 unsigned int tag;
2dc8dd17
JW
16914};
16915
16916static struct riscv_attr_tag_t riscv_attr_tag[] =
16917{
16918#define T(tag) {"Tag_RISCV_" #tag, Tag_RISCV_##tag}
16919 T(arch),
16920 T(priv_spec),
16921 T(priv_spec_minor),
16922 T(priv_spec_revision),
16923 T(unaligned_access),
16924 T(stack_align),
16925#undef T
16926};
16927
16928static unsigned char *
16929display_riscv_attribute (unsigned char *p,
16930 const unsigned char * const end)
16931{
cd30bcef
AM
16932 unsigned int val;
16933 unsigned int tag;
2dc8dd17
JW
16934 struct riscv_attr_tag_t *attr = NULL;
16935 unsigned i;
16936
cd30bcef 16937 READ_ULEB (tag, p, end);
2dc8dd17
JW
16938
16939 /* Find the name of attribute. */
16940 for (i = 0; i < ARRAY_SIZE (riscv_attr_tag); i++)
16941 {
16942 if (riscv_attr_tag[i].tag == tag)
16943 {
16944 attr = &riscv_attr_tag[i];
16945 break;
16946 }
16947 }
16948
16949 if (attr)
16950 printf (" %s: ", attr->name);
16951 else
16952 return display_tag_value (tag, p, end);
16953
16954 switch (tag)
16955 {
16956 case Tag_RISCV_priv_spec:
16957 case Tag_RISCV_priv_spec_minor:
16958 case Tag_RISCV_priv_spec_revision:
cd30bcef
AM
16959 READ_ULEB (val, p, end);
16960 printf (_("%u\n"), val);
2dc8dd17
JW
16961 break;
16962 case Tag_RISCV_unaligned_access:
cd30bcef 16963 READ_ULEB (val, p, end);
2dc8dd17
JW
16964 switch (val)
16965 {
16966 case 0:
16967 printf (_("No unaligned access\n"));
16968 break;
16969 case 1:
16970 printf (_("Unaligned access\n"));
16971 break;
16972 }
16973 break;
16974 case Tag_RISCV_stack_align:
cd30bcef
AM
16975 READ_ULEB (val, p, end);
16976 printf (_("%u-bytes\n"), val);
2dc8dd17
JW
16977 break;
16978 case Tag_RISCV_arch:
16979 p = display_tag_value (-1, p, end);
16980 break;
16981 default:
16982 return display_tag_value (tag, p, end);
16983 }
16984
16985 return p;
16986}
16987
0861f561
CQ
16988static unsigned char *
16989display_csky_attribute (unsigned char * p,
16990 const unsigned char * const end)
16991{
16992 unsigned int tag;
16993 unsigned int val;
16994 READ_ULEB (tag, p, end);
16995
16996 if (tag >= Tag_CSKY_MAX)
16997 {
16998 return display_tag_value (-1, p, end);
16999 }
17000
17001 switch (tag)
17002 {
17003 case Tag_CSKY_ARCH_NAME:
17004 printf (" Tag_CSKY_ARCH_NAME:\t\t");
17005 return display_tag_value (-1, p, end);
17006 case Tag_CSKY_CPU_NAME:
17007 printf (" Tag_CSKY_CPU_NAME:\t\t");
17008 return display_tag_value (-1, p, end);
17009
17010 case Tag_CSKY_ISA_FLAGS:
17011 printf (" Tag_CSKY_ISA_FLAGS:\t\t");
17012 return display_tag_value (0, p, end);
17013 case Tag_CSKY_ISA_EXT_FLAGS:
17014 printf (" Tag_CSKY_ISA_EXT_FLAGS:\t");
17015 return display_tag_value (0, p, end);
17016
17017 case Tag_CSKY_DSP_VERSION:
17018 printf (" Tag_CSKY_DSP_VERSION:\t\t");
17019 READ_ULEB (val, p, end);
17020 if (val == VAL_CSKY_DSP_VERSION_EXTENSION)
17021 printf ("DSP Extension\n");
17022 else if (val == VAL_CSKY_DSP_VERSION_2)
17023 printf ("DSP 2.0\n");
17024 break;
17025
17026 case Tag_CSKY_VDSP_VERSION:
17027 printf (" Tag_CSKY_VDSP_VERSION:\t");
17028 READ_ULEB (val, p, end);
17029 printf ("VDSP Version %d\n", val);
17030 break;
17031
17032 case Tag_CSKY_FPU_VERSION:
17033 printf (" Tag_CSKY_FPU_VERSION:\t\t");
17034 READ_ULEB (val, p, end);
17035 if (val == VAL_CSKY_FPU_VERSION_1)
17036 printf ("ABIV1 FPU Version 1\n");
17037 else if (val == VAL_CSKY_FPU_VERSION_2)
17038 printf ("FPU Version 2\n");
17039 break;
17040
17041 case Tag_CSKY_FPU_ABI:
17042 printf (" Tag_CSKY_FPU_ABI:\t\t");
17043 READ_ULEB (val, p, end);
17044 if (val == VAL_CSKY_FPU_ABI_HARD)
17045 printf ("Hard\n");
17046 else if (val == VAL_CSKY_FPU_ABI_SOFTFP)
17047 printf ("SoftFP\n");
17048 else if (val == VAL_CSKY_FPU_ABI_SOFT)
17049 printf ("Soft\n");
17050 break;
17051 case Tag_CSKY_FPU_ROUNDING:
17052 READ_ULEB (val, p, end);
17053 if (val == 1) {
17054 printf (" Tag_CSKY_FPU_ROUNDING:\t");
17055 printf ("Needed\n");
17056 }
17057 break;
17058 case Tag_CSKY_FPU_DENORMAL:
17059 READ_ULEB (val, p, end);
17060 if (val == 1) {
17061 printf (" Tag_CSKY_FPU_DENORMAL:\t");
17062 printf ("Needed\n");
17063 }
17064 break;
17065 case Tag_CSKY_FPU_Exception:
17066 READ_ULEB (val, p, end);
17067 if (val == 1) {
17068 printf (" Tag_CSKY_FPU_Exception:\t");
17069 printf ("Needed\n");
17070 }
17071 break;
17072 case Tag_CSKY_FPU_NUMBER_MODULE:
17073 printf (" Tag_CSKY_FPU_NUMBER_MODULE:\t");
17074 return display_tag_value (-1, p, end);
17075 case Tag_CSKY_FPU_HARDFP:
17076 printf (" Tag_CSKY_FPU_HARDFP:\t\t");
17077 READ_ULEB (val, p, end);
17078 if (val & VAL_CSKY_FPU_HARDFP_HALF)
17079 printf (" Half");
17080 if (val & VAL_CSKY_FPU_HARDFP_SINGLE)
17081 printf (" Single");
17082 if (val & VAL_CSKY_FPU_HARDFP_DOUBLE)
17083 printf (" Double");
17084 printf ("\n");
17085 break;
17086 default:
17087 return display_tag_value (tag, p, end);
17088 }
17089 return p;
17090}
17091
015dc7e1 17092static bool
dda8d76d 17093process_attributes (Filedata * filedata,
60bca95a 17094 const char * public_name,
104d59d1 17095 unsigned int proc_type,
f6f0e17b 17096 unsigned char * (* display_pub_attribute) (unsigned char *, const unsigned char * const),
60abdbed 17097 unsigned char * (* display_proc_gnu_attribute) (unsigned char *, unsigned int, const unsigned char * const))
11c1ff18 17098{
2cf0635d 17099 Elf_Internal_Shdr * sect;
11c1ff18 17100 unsigned i;
015dc7e1 17101 bool res = true;
11c1ff18
PB
17102
17103 /* Find the section header so that we get the size. */
dda8d76d
NC
17104 for (i = 0, sect = filedata->section_headers;
17105 i < filedata->file_header.e_shnum;
11c1ff18
PB
17106 i++, sect++)
17107 {
071436c6
NC
17108 unsigned char * contents;
17109 unsigned char * p;
17110
104d59d1 17111 if (sect->sh_type != proc_type && sect->sh_type != SHT_GNU_ATTRIBUTES)
11c1ff18
PB
17112 continue;
17113
dda8d76d 17114 contents = (unsigned char *) get_data (NULL, filedata, sect->sh_offset, 1,
3f5e193b 17115 sect->sh_size, _("attributes"));
60bca95a 17116 if (contents == NULL)
32ec8896 17117 {
015dc7e1 17118 res = false;
32ec8896
NC
17119 continue;
17120 }
60bca95a 17121
11c1ff18 17122 p = contents;
60abdbed
NC
17123 /* The first character is the version of the attributes.
17124 Currently only version 1, (aka 'A') is recognised here. */
17125 if (*p != 'A')
32ec8896
NC
17126 {
17127 printf (_("Unknown attributes version '%c'(%d) - expecting 'A'\n"), *p, *p);
015dc7e1 17128 res = false;
32ec8896 17129 }
60abdbed 17130 else
11c1ff18 17131 {
071436c6
NC
17132 bfd_vma section_len;
17133
17134 section_len = sect->sh_size - 1;
11c1ff18 17135 p++;
60bca95a 17136
071436c6 17137 while (section_len > 0)
11c1ff18 17138 {
071436c6 17139 bfd_vma attr_len;
e9847026 17140 unsigned int namelen;
015dc7e1
AM
17141 bool public_section;
17142 bool gnu_section;
11c1ff18 17143
071436c6 17144 if (section_len <= 4)
e0a31db1
NC
17145 {
17146 error (_("Tag section ends prematurely\n"));
015dc7e1 17147 res = false;
e0a31db1
NC
17148 break;
17149 }
071436c6 17150 attr_len = byte_get (p, 4);
11c1ff18 17151 p += 4;
60bca95a 17152
071436c6 17153 if (attr_len > section_len)
11c1ff18 17154 {
071436c6
NC
17155 error (_("Bad attribute length (%u > %u)\n"),
17156 (unsigned) attr_len, (unsigned) section_len);
17157 attr_len = section_len;
015dc7e1 17158 res = false;
11c1ff18 17159 }
74e1a04b 17160 /* PR 17531: file: 001-101425-0.004 */
071436c6 17161 else if (attr_len < 5)
74e1a04b 17162 {
071436c6 17163 error (_("Attribute length of %u is too small\n"), (unsigned) attr_len);
015dc7e1 17164 res = false;
74e1a04b
NC
17165 break;
17166 }
e9847026 17167
071436c6
NC
17168 section_len -= attr_len;
17169 attr_len -= 4;
17170
17171 namelen = strnlen ((char *) p, attr_len) + 1;
17172 if (namelen == 0 || namelen >= attr_len)
e9847026
NC
17173 {
17174 error (_("Corrupt attribute section name\n"));
015dc7e1 17175 res = false;
e9847026
NC
17176 break;
17177 }
17178
071436c6
NC
17179 printf (_("Attribute Section: "));
17180 print_symbol (INT_MAX, (const char *) p);
17181 putchar ('\n');
60bca95a
NC
17182
17183 if (public_name && streq ((char *) p, public_name))
015dc7e1 17184 public_section = true;
11c1ff18 17185 else
015dc7e1 17186 public_section = false;
60bca95a
NC
17187
17188 if (streq ((char *) p, "gnu"))
015dc7e1 17189 gnu_section = true;
104d59d1 17190 else
015dc7e1 17191 gnu_section = false;
60bca95a 17192
11c1ff18 17193 p += namelen;
071436c6 17194 attr_len -= namelen;
e0a31db1 17195
071436c6 17196 while (attr_len > 0 && p < contents + sect->sh_size)
11c1ff18 17197 {
e0a31db1 17198 int tag;
cd30bcef 17199 unsigned int val;
11c1ff18 17200 bfd_vma size;
071436c6 17201 unsigned char * end;
60bca95a 17202
e0a31db1 17203 /* PR binutils/17531: Safe handling of corrupt files. */
071436c6 17204 if (attr_len < 6)
e0a31db1
NC
17205 {
17206 error (_("Unused bytes at end of section\n"));
015dc7e1 17207 res = false;
e0a31db1
NC
17208 section_len = 0;
17209 break;
17210 }
17211
17212 tag = *(p++);
11c1ff18 17213 size = byte_get (p, 4);
071436c6 17214 if (size > attr_len)
11c1ff18 17215 {
e9847026 17216 error (_("Bad subsection length (%u > %u)\n"),
071436c6 17217 (unsigned) size, (unsigned) attr_len);
015dc7e1 17218 res = false;
071436c6 17219 size = attr_len;
11c1ff18 17220 }
e0a31db1
NC
17221 /* PR binutils/17531: Safe handling of corrupt files. */
17222 if (size < 6)
17223 {
17224 error (_("Bad subsection length (%u < 6)\n"),
17225 (unsigned) size);
015dc7e1 17226 res = false;
e0a31db1
NC
17227 section_len = 0;
17228 break;
17229 }
60bca95a 17230
071436c6 17231 attr_len -= size;
11c1ff18 17232 end = p + size - 1;
071436c6 17233 assert (end <= contents + sect->sh_size);
11c1ff18 17234 p += 4;
60bca95a 17235
11c1ff18
PB
17236 switch (tag)
17237 {
17238 case 1:
2b692964 17239 printf (_("File Attributes\n"));
11c1ff18
PB
17240 break;
17241 case 2:
2b692964 17242 printf (_("Section Attributes:"));
11c1ff18
PB
17243 goto do_numlist;
17244 case 3:
2b692964 17245 printf (_("Symbol Attributes:"));
1a0670f3 17246 /* Fall through. */
11c1ff18
PB
17247 do_numlist:
17248 for (;;)
17249 {
cd30bcef 17250 READ_ULEB (val, p, end);
11c1ff18
PB
17251 if (val == 0)
17252 break;
17253 printf (" %d", val);
17254 }
17255 printf ("\n");
17256 break;
17257 default:
2b692964 17258 printf (_("Unknown tag: %d\n"), tag);
015dc7e1 17259 public_section = false;
11c1ff18
PB
17260 break;
17261 }
60bca95a 17262
071436c6 17263 if (public_section && display_pub_attribute != NULL)
11c1ff18
PB
17264 {
17265 while (p < end)
f6f0e17b 17266 p = display_pub_attribute (p, end);
60abdbed 17267 assert (p == end);
104d59d1 17268 }
071436c6 17269 else if (gnu_section && display_proc_gnu_attribute != NULL)
104d59d1
JM
17270 {
17271 while (p < end)
17272 p = display_gnu_attribute (p,
f6f0e17b
NC
17273 display_proc_gnu_attribute,
17274 end);
60abdbed 17275 assert (p == end);
11c1ff18 17276 }
071436c6 17277 else if (p < end)
11c1ff18 17278 {
071436c6 17279 printf (_(" Unknown attribute:\n"));
f6f0e17b 17280 display_raw_attribute (p, end);
11c1ff18
PB
17281 p = end;
17282 }
071436c6
NC
17283 else
17284 attr_len = 0;
11c1ff18
PB
17285 }
17286 }
17287 }
d70c5fc7 17288
60bca95a 17289 free (contents);
11c1ff18 17290 }
32ec8896
NC
17291
17292 return res;
11c1ff18
PB
17293}
17294
ccb4c951
RS
17295/* DATA points to the contents of a MIPS GOT that starts at VMA PLTGOT.
17296 Print the Address, Access and Initial fields of an entry at VMA ADDR
82b1b41b
NC
17297 and return the VMA of the next entry, or -1 if there was a problem.
17298 Does not read from DATA_END or beyond. */
ccb4c951
RS
17299
17300static bfd_vma
82b1b41b
NC
17301print_mips_got_entry (unsigned char * data, bfd_vma pltgot, bfd_vma addr,
17302 unsigned char * data_end)
ccb4c951
RS
17303{
17304 printf (" ");
17305 print_vma (addr, LONG_HEX);
17306 printf (" ");
17307 if (addr < pltgot + 0xfff0)
17308 printf ("%6d(gp)", (int) (addr - pltgot - 0x7ff0));
17309 else
17310 printf ("%10s", "");
17311 printf (" ");
17312 if (data == NULL)
2b692964 17313 printf ("%*s", is_32bit_elf ? 8 : 16, _("<unknown>"));
ccb4c951
RS
17314 else
17315 {
17316 bfd_vma entry;
82b1b41b 17317 unsigned char * from = data + addr - pltgot;
ccb4c951 17318
82b1b41b
NC
17319 if (from + (is_32bit_elf ? 4 : 8) > data_end)
17320 {
17321 warn (_("MIPS GOT entry extends beyond the end of available data\n"));
17322 printf ("%*s", is_32bit_elf ? 8 : 16, _("<corrupt>"));
17323 return (bfd_vma) -1;
17324 }
17325 else
17326 {
17327 entry = byte_get (data + addr - pltgot, is_32bit_elf ? 4 : 8);
17328 print_vma (entry, LONG_HEX);
17329 }
ccb4c951
RS
17330 }
17331 return addr + (is_32bit_elf ? 4 : 8);
17332}
17333
861fb55a
DJ
17334/* DATA points to the contents of a MIPS PLT GOT that starts at VMA
17335 PLTGOT. Print the Address and Initial fields of an entry at VMA
17336 ADDR and return the VMA of the next entry. */
17337
17338static bfd_vma
2cf0635d 17339print_mips_pltgot_entry (unsigned char * data, bfd_vma pltgot, bfd_vma addr)
861fb55a
DJ
17340{
17341 printf (" ");
17342 print_vma (addr, LONG_HEX);
17343 printf (" ");
17344 if (data == NULL)
2b692964 17345 printf ("%*s", is_32bit_elf ? 8 : 16, _("<unknown>"));
861fb55a
DJ
17346 else
17347 {
17348 bfd_vma entry;
17349
17350 entry = byte_get (data + addr - pltgot, is_32bit_elf ? 4 : 8);
17351 print_vma (entry, LONG_HEX);
17352 }
17353 return addr + (is_32bit_elf ? 4 : 8);
17354}
17355
351cdf24
MF
17356static void
17357print_mips_ases (unsigned int mask)
17358{
17359 if (mask & AFL_ASE_DSP)
17360 fputs ("\n\tDSP ASE", stdout);
17361 if (mask & AFL_ASE_DSPR2)
17362 fputs ("\n\tDSP R2 ASE", stdout);
8f4f9071
MF
17363 if (mask & AFL_ASE_DSPR3)
17364 fputs ("\n\tDSP R3 ASE", stdout);
351cdf24
MF
17365 if (mask & AFL_ASE_EVA)
17366 fputs ("\n\tEnhanced VA Scheme", stdout);
17367 if (mask & AFL_ASE_MCU)
17368 fputs ("\n\tMCU (MicroController) ASE", stdout);
17369 if (mask & AFL_ASE_MDMX)
17370 fputs ("\n\tMDMX ASE", stdout);
17371 if (mask & AFL_ASE_MIPS3D)
17372 fputs ("\n\tMIPS-3D ASE", stdout);
17373 if (mask & AFL_ASE_MT)
17374 fputs ("\n\tMT ASE", stdout);
17375 if (mask & AFL_ASE_SMARTMIPS)
17376 fputs ("\n\tSmartMIPS ASE", stdout);
17377 if (mask & AFL_ASE_VIRT)
17378 fputs ("\n\tVZ ASE", stdout);
17379 if (mask & AFL_ASE_MSA)
17380 fputs ("\n\tMSA ASE", stdout);
17381 if (mask & AFL_ASE_MIPS16)
17382 fputs ("\n\tMIPS16 ASE", stdout);
17383 if (mask & AFL_ASE_MICROMIPS)
17384 fputs ("\n\tMICROMIPS ASE", stdout);
17385 if (mask & AFL_ASE_XPA)
17386 fputs ("\n\tXPA ASE", stdout);
25499ac7
MR
17387 if (mask & AFL_ASE_MIPS16E2)
17388 fputs ("\n\tMIPS16e2 ASE", stdout);
730c3174
SE
17389 if (mask & AFL_ASE_CRC)
17390 fputs ("\n\tCRC ASE", stdout);
6f20c942
FS
17391 if (mask & AFL_ASE_GINV)
17392 fputs ("\n\tGINV ASE", stdout);
8095d2f7
CX
17393 if (mask & AFL_ASE_LOONGSON_MMI)
17394 fputs ("\n\tLoongson MMI ASE", stdout);
716c08de
CX
17395 if (mask & AFL_ASE_LOONGSON_CAM)
17396 fputs ("\n\tLoongson CAM ASE", stdout);
bdc6c06e
CX
17397 if (mask & AFL_ASE_LOONGSON_EXT)
17398 fputs ("\n\tLoongson EXT ASE", stdout);
a693765e
CX
17399 if (mask & AFL_ASE_LOONGSON_EXT2)
17400 fputs ("\n\tLoongson EXT2 ASE", stdout);
351cdf24
MF
17401 if (mask == 0)
17402 fprintf (stdout, "\n\t%s", _("None"));
00ac7aa0
MF
17403 else if ((mask & ~AFL_ASE_MASK) != 0)
17404 fprintf (stdout, "\n\t%s (%x)", _("Unknown"), mask & ~AFL_ASE_MASK);
351cdf24
MF
17405}
17406
17407static void
17408print_mips_isa_ext (unsigned int isa_ext)
17409{
17410 switch (isa_ext)
17411 {
17412 case 0:
17413 fputs (_("None"), stdout);
17414 break;
17415 case AFL_EXT_XLR:
17416 fputs ("RMI XLR", stdout);
17417 break;
2c629856
N
17418 case AFL_EXT_OCTEON3:
17419 fputs ("Cavium Networks Octeon3", stdout);
17420 break;
351cdf24
MF
17421 case AFL_EXT_OCTEON2:
17422 fputs ("Cavium Networks Octeon2", stdout);
17423 break;
17424 case AFL_EXT_OCTEONP:
17425 fputs ("Cavium Networks OcteonP", stdout);
17426 break;
351cdf24
MF
17427 case AFL_EXT_OCTEON:
17428 fputs ("Cavium Networks Octeon", stdout);
17429 break;
17430 case AFL_EXT_5900:
17431 fputs ("Toshiba R5900", stdout);
17432 break;
17433 case AFL_EXT_4650:
17434 fputs ("MIPS R4650", stdout);
17435 break;
17436 case AFL_EXT_4010:
17437 fputs ("LSI R4010", stdout);
17438 break;
17439 case AFL_EXT_4100:
17440 fputs ("NEC VR4100", stdout);
17441 break;
17442 case AFL_EXT_3900:
17443 fputs ("Toshiba R3900", stdout);
17444 break;
17445 case AFL_EXT_10000:
17446 fputs ("MIPS R10000", stdout);
17447 break;
17448 case AFL_EXT_SB1:
17449 fputs ("Broadcom SB-1", stdout);
17450 break;
17451 case AFL_EXT_4111:
17452 fputs ("NEC VR4111/VR4181", stdout);
17453 break;
17454 case AFL_EXT_4120:
17455 fputs ("NEC VR4120", stdout);
17456 break;
17457 case AFL_EXT_5400:
17458 fputs ("NEC VR5400", stdout);
17459 break;
17460 case AFL_EXT_5500:
17461 fputs ("NEC VR5500", stdout);
17462 break;
17463 case AFL_EXT_LOONGSON_2E:
17464 fputs ("ST Microelectronics Loongson 2E", stdout);
17465 break;
17466 case AFL_EXT_LOONGSON_2F:
17467 fputs ("ST Microelectronics Loongson 2F", stdout);
17468 break;
38bf472a
MR
17469 case AFL_EXT_INTERAPTIV_MR2:
17470 fputs ("Imagination interAptiv MR2", stdout);
17471 break;
351cdf24 17472 default:
00ac7aa0 17473 fprintf (stdout, "%s (%d)", _("Unknown"), isa_ext);
351cdf24
MF
17474 }
17475}
17476
32ec8896 17477static signed int
351cdf24
MF
17478get_mips_reg_size (int reg_size)
17479{
17480 return (reg_size == AFL_REG_NONE) ? 0
17481 : (reg_size == AFL_REG_32) ? 32
17482 : (reg_size == AFL_REG_64) ? 64
17483 : (reg_size == AFL_REG_128) ? 128
17484 : -1;
17485}
17486
015dc7e1 17487static bool
dda8d76d 17488process_mips_specific (Filedata * filedata)
5b18a4bc 17489{
2cf0635d 17490 Elf_Internal_Dyn * entry;
351cdf24 17491 Elf_Internal_Shdr *sect = NULL;
19e6b90e
L
17492 size_t liblist_offset = 0;
17493 size_t liblistno = 0;
17494 size_t conflictsno = 0;
17495 size_t options_offset = 0;
17496 size_t conflicts_offset = 0;
861fb55a
DJ
17497 size_t pltrelsz = 0;
17498 size_t pltrel = 0;
ccb4c951 17499 bfd_vma pltgot = 0;
861fb55a
DJ
17500 bfd_vma mips_pltgot = 0;
17501 bfd_vma jmprel = 0;
ccb4c951
RS
17502 bfd_vma local_gotno = 0;
17503 bfd_vma gotsym = 0;
17504 bfd_vma symtabno = 0;
015dc7e1 17505 bool res = true;
103f02d3 17506
dda8d76d 17507 if (! process_attributes (filedata, NULL, SHT_GNU_ATTRIBUTES, NULL,
32ec8896 17508 display_mips_gnu_attribute))
015dc7e1 17509 res = false;
2cf19d5c 17510
dda8d76d 17511 sect = find_section (filedata, ".MIPS.abiflags");
351cdf24
MF
17512
17513 if (sect != NULL)
17514 {
17515 Elf_External_ABIFlags_v0 *abiflags_ext;
17516 Elf_Internal_ABIFlags_v0 abiflags_in;
17517
17518 if (sizeof (Elf_External_ABIFlags_v0) != sect->sh_size)
32ec8896
NC
17519 {
17520 error (_("Corrupt MIPS ABI Flags section.\n"));
015dc7e1 17521 res = false;
32ec8896 17522 }
351cdf24
MF
17523 else
17524 {
dda8d76d 17525 abiflags_ext = get_data (NULL, filedata, sect->sh_offset, 1,
351cdf24
MF
17526 sect->sh_size, _("MIPS ABI Flags section"));
17527 if (abiflags_ext)
17528 {
17529 abiflags_in.version = BYTE_GET (abiflags_ext->version);
17530 abiflags_in.isa_level = BYTE_GET (abiflags_ext->isa_level);
17531 abiflags_in.isa_rev = BYTE_GET (abiflags_ext->isa_rev);
17532 abiflags_in.gpr_size = BYTE_GET (abiflags_ext->gpr_size);
17533 abiflags_in.cpr1_size = BYTE_GET (abiflags_ext->cpr1_size);
17534 abiflags_in.cpr2_size = BYTE_GET (abiflags_ext->cpr2_size);
17535 abiflags_in.fp_abi = BYTE_GET (abiflags_ext->fp_abi);
17536 abiflags_in.isa_ext = BYTE_GET (abiflags_ext->isa_ext);
17537 abiflags_in.ases = BYTE_GET (abiflags_ext->ases);
17538 abiflags_in.flags1 = BYTE_GET (abiflags_ext->flags1);
17539 abiflags_in.flags2 = BYTE_GET (abiflags_ext->flags2);
17540
17541 printf ("\nMIPS ABI Flags Version: %d\n", abiflags_in.version);
17542 printf ("\nISA: MIPS%d", abiflags_in.isa_level);
17543 if (abiflags_in.isa_rev > 1)
17544 printf ("r%d", abiflags_in.isa_rev);
17545 printf ("\nGPR size: %d",
17546 get_mips_reg_size (abiflags_in.gpr_size));
17547 printf ("\nCPR1 size: %d",
17548 get_mips_reg_size (abiflags_in.cpr1_size));
17549 printf ("\nCPR2 size: %d",
17550 get_mips_reg_size (abiflags_in.cpr2_size));
17551 fputs ("\nFP ABI: ", stdout);
17552 print_mips_fp_abi_value (abiflags_in.fp_abi);
17553 fputs ("ISA Extension: ", stdout);
17554 print_mips_isa_ext (abiflags_in.isa_ext);
17555 fputs ("\nASEs:", stdout);
17556 print_mips_ases (abiflags_in.ases);
17557 printf ("\nFLAGS 1: %8.8lx", abiflags_in.flags1);
17558 printf ("\nFLAGS 2: %8.8lx", abiflags_in.flags2);
17559 fputc ('\n', stdout);
17560 free (abiflags_ext);
17561 }
17562 }
17563 }
17564
19e6b90e 17565 /* We have a lot of special sections. Thanks SGI! */
978c4450 17566 if (filedata->dynamic_section == NULL)
bbdd9a68
MR
17567 {
17568 /* No dynamic information available. See if there is static GOT. */
dda8d76d 17569 sect = find_section (filedata, ".got");
bbdd9a68
MR
17570 if (sect != NULL)
17571 {
17572 unsigned char *data_end;
17573 unsigned char *data;
17574 bfd_vma ent, end;
17575 int addr_size;
17576
17577 pltgot = sect->sh_addr;
17578
17579 ent = pltgot;
17580 addr_size = (is_32bit_elf ? 4 : 8);
17581 end = pltgot + sect->sh_size;
17582
dda8d76d 17583 data = (unsigned char *) get_data (NULL, filedata, sect->sh_offset,
bbdd9a68
MR
17584 end - pltgot, 1,
17585 _("Global Offset Table data"));
17586 /* PR 12855: Null data is handled gracefully throughout. */
17587 data_end = data + (end - pltgot);
17588
17589 printf (_("\nStatic GOT:\n"));
17590 printf (_(" Canonical gp value: "));
17591 print_vma (ent + 0x7ff0, LONG_HEX);
17592 printf ("\n\n");
17593
17594 /* In a dynamic binary GOT[0] is reserved for the dynamic
17595 loader to store the lazy resolver pointer, however in
17596 a static binary it may well have been omitted and GOT
17597 reduced to a table of addresses.
17598 PR 21344: Check for the entry being fully available
17599 before fetching it. */
17600 if (data
17601 && data + ent - pltgot + addr_size <= data_end
17602 && byte_get (data + ent - pltgot, addr_size) == 0)
17603 {
17604 printf (_(" Reserved entries:\n"));
17605 printf (_(" %*s %10s %*s\n"),
17606 addr_size * 2, _("Address"), _("Access"),
17607 addr_size * 2, _("Value"));
17608 ent = print_mips_got_entry (data, pltgot, ent, data_end);
17609 printf ("\n");
17610 if (ent == (bfd_vma) -1)
17611 goto sgot_print_fail;
17612
17613 /* Check for the MSB of GOT[1] being set, identifying a
17614 GNU object. This entry will be used by some runtime
17615 loaders, to store the module pointer. Otherwise this
17616 is an ordinary local entry.
17617 PR 21344: Check for the entry being fully available
17618 before fetching it. */
17619 if (data
17620 && data + ent - pltgot + addr_size <= data_end
17621 && (byte_get (data + ent - pltgot, addr_size)
17622 >> (addr_size * 8 - 1)) != 0)
17623 {
17624 ent = print_mips_got_entry (data, pltgot, ent, data_end);
17625 printf ("\n");
17626 if (ent == (bfd_vma) -1)
17627 goto sgot_print_fail;
17628 }
17629 printf ("\n");
17630 }
17631
f17e9d8a 17632 if (data != NULL && ent < end)
bbdd9a68
MR
17633 {
17634 printf (_(" Local entries:\n"));
17635 printf (" %*s %10s %*s\n",
17636 addr_size * 2, _("Address"), _("Access"),
17637 addr_size * 2, _("Value"));
17638 while (ent < end)
17639 {
17640 ent = print_mips_got_entry (data, pltgot, ent, data_end);
17641 printf ("\n");
17642 if (ent == (bfd_vma) -1)
17643 goto sgot_print_fail;
17644 }
17645 printf ("\n");
17646 }
17647
17648 sgot_print_fail:
9db70fc3 17649 free (data);
bbdd9a68
MR
17650 }
17651 return res;
17652 }
252b5132 17653
978c4450 17654 for (entry = filedata->dynamic_section;
071436c6 17655 /* PR 17531 file: 012-50589-0.004. */
978c4450
AM
17656 (entry < filedata->dynamic_section + filedata->dynamic_nent
17657 && entry->d_tag != DT_NULL);
071436c6 17658 ++entry)
252b5132
RH
17659 switch (entry->d_tag)
17660 {
17661 case DT_MIPS_LIBLIST:
d93f0186 17662 liblist_offset
dda8d76d 17663 = offset_from_vma (filedata, entry->d_un.d_val,
d93f0186 17664 liblistno * sizeof (Elf32_External_Lib));
252b5132
RH
17665 break;
17666 case DT_MIPS_LIBLISTNO:
17667 liblistno = entry->d_un.d_val;
17668 break;
17669 case DT_MIPS_OPTIONS:
dda8d76d 17670 options_offset = offset_from_vma (filedata, entry->d_un.d_val, 0);
252b5132
RH
17671 break;
17672 case DT_MIPS_CONFLICT:
d93f0186 17673 conflicts_offset
dda8d76d 17674 = offset_from_vma (filedata, entry->d_un.d_val,
d93f0186 17675 conflictsno * sizeof (Elf32_External_Conflict));
252b5132
RH
17676 break;
17677 case DT_MIPS_CONFLICTNO:
17678 conflictsno = entry->d_un.d_val;
17679 break;
ccb4c951 17680 case DT_PLTGOT:
861fb55a
DJ
17681 pltgot = entry->d_un.d_ptr;
17682 break;
ccb4c951
RS
17683 case DT_MIPS_LOCAL_GOTNO:
17684 local_gotno = entry->d_un.d_val;
17685 break;
17686 case DT_MIPS_GOTSYM:
17687 gotsym = entry->d_un.d_val;
17688 break;
17689 case DT_MIPS_SYMTABNO:
17690 symtabno = entry->d_un.d_val;
17691 break;
861fb55a
DJ
17692 case DT_MIPS_PLTGOT:
17693 mips_pltgot = entry->d_un.d_ptr;
17694 break;
17695 case DT_PLTREL:
17696 pltrel = entry->d_un.d_val;
17697 break;
17698 case DT_PLTRELSZ:
17699 pltrelsz = entry->d_un.d_val;
17700 break;
17701 case DT_JMPREL:
17702 jmprel = entry->d_un.d_ptr;
17703 break;
252b5132
RH
17704 default:
17705 break;
17706 }
17707
17708 if (liblist_offset != 0 && liblistno != 0 && do_dynamic)
17709 {
2cf0635d 17710 Elf32_External_Lib * elib;
252b5132
RH
17711 size_t cnt;
17712
dda8d76d 17713 elib = (Elf32_External_Lib *) get_data (NULL, filedata, liblist_offset,
95099889
AM
17714 sizeof (Elf32_External_Lib),
17715 liblistno,
17716 _("liblist section data"));
a6e9f9df 17717 if (elib)
252b5132 17718 {
d3a49aa8
AM
17719 printf (ngettext ("\nSection '.liblist' contains %lu entry:\n",
17720 "\nSection '.liblist' contains %lu entries:\n",
17721 (unsigned long) liblistno),
a6e9f9df 17722 (unsigned long) liblistno);
2b692964 17723 fputs (_(" Library Time Stamp Checksum Version Flags\n"),
a6e9f9df
AM
17724 stdout);
17725
17726 for (cnt = 0; cnt < liblistno; ++cnt)
252b5132 17727 {
a6e9f9df 17728 Elf32_Lib liblist;
91d6fa6a 17729 time_t atime;
d5b07ef4 17730 char timebuf[128];
2cf0635d 17731 struct tm * tmp;
a6e9f9df
AM
17732
17733 liblist.l_name = BYTE_GET (elib[cnt].l_name);
91d6fa6a 17734 atime = BYTE_GET (elib[cnt].l_time_stamp);
a6e9f9df
AM
17735 liblist.l_checksum = BYTE_GET (elib[cnt].l_checksum);
17736 liblist.l_version = BYTE_GET (elib[cnt].l_version);
17737 liblist.l_flags = BYTE_GET (elib[cnt].l_flags);
17738
91d6fa6a 17739 tmp = gmtime (&atime);
e9e44622
JJ
17740 snprintf (timebuf, sizeof (timebuf),
17741 "%04u-%02u-%02uT%02u:%02u:%02u",
17742 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
17743 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
a6e9f9df 17744
31104126 17745 printf ("%3lu: ", (unsigned long) cnt);
978c4450
AM
17746 if (VALID_DYNAMIC_NAME (filedata, liblist.l_name))
17747 print_symbol (20, GET_DYNAMIC_NAME (filedata, liblist.l_name));
d79b3d50 17748 else
2b692964 17749 printf (_("<corrupt: %9ld>"), liblist.l_name);
31104126
NC
17750 printf (" %s %#10lx %-7ld", timebuf, liblist.l_checksum,
17751 liblist.l_version);
a6e9f9df
AM
17752
17753 if (liblist.l_flags == 0)
2b692964 17754 puts (_(" NONE"));
a6e9f9df
AM
17755 else
17756 {
17757 static const struct
252b5132 17758 {
2cf0635d 17759 const char * name;
a6e9f9df 17760 int bit;
252b5132 17761 }
a6e9f9df
AM
17762 l_flags_vals[] =
17763 {
17764 { " EXACT_MATCH", LL_EXACT_MATCH },
17765 { " IGNORE_INT_VER", LL_IGNORE_INT_VER },
17766 { " REQUIRE_MINOR", LL_REQUIRE_MINOR },
17767 { " EXPORTS", LL_EXPORTS },
17768 { " DELAY_LOAD", LL_DELAY_LOAD },
17769 { " DELTA", LL_DELTA }
17770 };
17771 int flags = liblist.l_flags;
17772 size_t fcnt;
17773
60bca95a 17774 for (fcnt = 0; fcnt < ARRAY_SIZE (l_flags_vals); ++fcnt)
a6e9f9df
AM
17775 if ((flags & l_flags_vals[fcnt].bit) != 0)
17776 {
17777 fputs (l_flags_vals[fcnt].name, stdout);
17778 flags ^= l_flags_vals[fcnt].bit;
17779 }
17780 if (flags != 0)
17781 printf (" %#x", (unsigned int) flags);
252b5132 17782
a6e9f9df
AM
17783 puts ("");
17784 }
252b5132 17785 }
252b5132 17786
a6e9f9df
AM
17787 free (elib);
17788 }
32ec8896 17789 else
015dc7e1 17790 res = false;
252b5132
RH
17791 }
17792
17793 if (options_offset != 0)
17794 {
2cf0635d 17795 Elf_External_Options * eopt;
252b5132
RH
17796 size_t offset;
17797 int cnt;
dda8d76d 17798 sect = filedata->section_headers;
252b5132
RH
17799
17800 /* Find the section header so that we get the size. */
dda8d76d 17801 sect = find_section_by_type (filedata, SHT_MIPS_OPTIONS);
948f632f 17802 /* PR 17533 file: 012-277276-0.004. */
071436c6
NC
17803 if (sect == NULL)
17804 {
17805 error (_("No MIPS_OPTIONS header found\n"));
015dc7e1 17806 return false;
071436c6 17807 }
7fc0c668
NC
17808 /* PR 24243 */
17809 if (sect->sh_size < sizeof (* eopt))
17810 {
17811 error (_("The MIPS options section is too small.\n"));
015dc7e1 17812 return false;
7fc0c668 17813 }
252b5132 17814
dda8d76d 17815 eopt = (Elf_External_Options *) get_data (NULL, filedata, options_offset, 1,
3f5e193b 17816 sect->sh_size, _("options"));
a6e9f9df 17817 if (eopt)
252b5132 17818 {
fd17d1e6 17819 Elf_Internal_Options option;
76da6bbe 17820
a6e9f9df 17821 offset = cnt = 0;
82b1b41b 17822 while (offset <= sect->sh_size - sizeof (* eopt))
a6e9f9df 17823 {
2cf0635d 17824 Elf_External_Options * eoption;
fd17d1e6 17825 unsigned int optsize;
252b5132 17826
a6e9f9df 17827 eoption = (Elf_External_Options *) ((char *) eopt + offset);
252b5132 17828
fd17d1e6 17829 optsize = BYTE_GET (eoption->size);
76da6bbe 17830
82b1b41b 17831 /* PR 17531: file: ffa0fa3b. */
fd17d1e6
AM
17832 if (optsize < sizeof (* eopt)
17833 || optsize > sect->sh_size - offset)
82b1b41b 17834 {
645f43a8 17835 error (_("Invalid size (%u) for MIPS option\n"),
fd17d1e6 17836 optsize);
645f43a8 17837 free (eopt);
015dc7e1 17838 return false;
82b1b41b 17839 }
fd17d1e6 17840 offset += optsize;
a6e9f9df
AM
17841 ++cnt;
17842 }
252b5132 17843
d3a49aa8
AM
17844 printf (ngettext ("\nSection '%s' contains %d entry:\n",
17845 "\nSection '%s' contains %d entries:\n",
17846 cnt),
dda8d76d 17847 printable_section_name (filedata, sect), cnt);
76da6bbe 17848
82b1b41b 17849 offset = 0;
a6e9f9df 17850 while (cnt-- > 0)
252b5132 17851 {
a6e9f9df 17852 size_t len;
fd17d1e6
AM
17853 Elf_External_Options * eoption;
17854
17855 eoption = (Elf_External_Options *) ((char *) eopt + offset);
17856
17857 option.kind = BYTE_GET (eoption->kind);
17858 option.size = BYTE_GET (eoption->size);
17859 option.section = BYTE_GET (eoption->section);
17860 option.info = BYTE_GET (eoption->info);
a6e9f9df 17861
fd17d1e6 17862 switch (option.kind)
252b5132 17863 {
a6e9f9df
AM
17864 case ODK_NULL:
17865 /* This shouldn't happen. */
d0c4e780 17866 printf (" NULL %" PRId16 " %" PRIx32,
fd17d1e6 17867 option.section, option.info);
a6e9f9df 17868 break;
2e6be59c 17869
a6e9f9df
AM
17870 case ODK_REGINFO:
17871 printf (" REGINFO ");
dda8d76d 17872 if (filedata->file_header.e_machine == EM_MIPS)
a6e9f9df 17873 {
2cf0635d 17874 Elf32_External_RegInfo * ereg;
b34976b6 17875 Elf32_RegInfo reginfo;
a6e9f9df 17876
2e6be59c 17877 /* 32bit form. */
fd17d1e6
AM
17878 if (option.size < (sizeof (Elf_External_Options)
17879 + sizeof (Elf32_External_RegInfo)))
2e6be59c
NC
17880 {
17881 printf (_("<corrupt>\n"));
17882 error (_("Truncated MIPS REGINFO option\n"));
17883 cnt = 0;
17884 break;
17885 }
17886
fd17d1e6 17887 ereg = (Elf32_External_RegInfo *) (eoption + 1);
2e6be59c 17888
a6e9f9df
AM
17889 reginfo.ri_gprmask = BYTE_GET (ereg->ri_gprmask);
17890 reginfo.ri_cprmask[0] = BYTE_GET (ereg->ri_cprmask[0]);
17891 reginfo.ri_cprmask[1] = BYTE_GET (ereg->ri_cprmask[1]);
17892 reginfo.ri_cprmask[2] = BYTE_GET (ereg->ri_cprmask[2]);
17893 reginfo.ri_cprmask[3] = BYTE_GET (ereg->ri_cprmask[3]);
17894 reginfo.ri_gp_value = BYTE_GET (ereg->ri_gp_value);
17895
d0c4e780
AM
17896 printf ("GPR %08" PRIx32 " GP 0x%" PRIx32 "\n",
17897 reginfo.ri_gprmask, reginfo.ri_gp_value);
17898 printf (" "
17899 " CPR0 %08" PRIx32 " CPR1 %08" PRIx32
17900 " CPR2 %08" PRIx32 " CPR3 %08" PRIx32 "\n",
a6e9f9df
AM
17901 reginfo.ri_cprmask[0], reginfo.ri_cprmask[1],
17902 reginfo.ri_cprmask[2], reginfo.ri_cprmask[3]);
17903 }
17904 else
17905 {
17906 /* 64 bit form. */
2cf0635d 17907 Elf64_External_RegInfo * ereg;
a6e9f9df
AM
17908 Elf64_Internal_RegInfo reginfo;
17909
fd17d1e6
AM
17910 if (option.size < (sizeof (Elf_External_Options)
17911 + sizeof (Elf64_External_RegInfo)))
2e6be59c
NC
17912 {
17913 printf (_("<corrupt>\n"));
17914 error (_("Truncated MIPS REGINFO option\n"));
17915 cnt = 0;
17916 break;
17917 }
17918
fd17d1e6 17919 ereg = (Elf64_External_RegInfo *) (eoption + 1);
a6e9f9df
AM
17920 reginfo.ri_gprmask = BYTE_GET (ereg->ri_gprmask);
17921 reginfo.ri_cprmask[0] = BYTE_GET (ereg->ri_cprmask[0]);
17922 reginfo.ri_cprmask[1] = BYTE_GET (ereg->ri_cprmask[1]);
17923 reginfo.ri_cprmask[2] = BYTE_GET (ereg->ri_cprmask[2]);
17924 reginfo.ri_cprmask[3] = BYTE_GET (ereg->ri_cprmask[3]);
66543521 17925 reginfo.ri_gp_value = BYTE_GET (ereg->ri_gp_value);
a6e9f9df 17926
d0c4e780
AM
17927 printf ("GPR %08" PRIx32 " GP 0x%" PRIx64 "\n",
17928 reginfo.ri_gprmask, reginfo.ri_gp_value);
17929 printf (" "
17930 " CPR0 %08" PRIx32 " CPR1 %08" PRIx32
17931 " CPR2 %08" PRIx32 " CPR3 %08" PRIx32 "\n",
a6e9f9df
AM
17932 reginfo.ri_cprmask[0], reginfo.ri_cprmask[1],
17933 reginfo.ri_cprmask[2], reginfo.ri_cprmask[3]);
17934 }
fd17d1e6 17935 offset += option.size;
a6e9f9df 17936 continue;
2e6be59c 17937
a6e9f9df
AM
17938 case ODK_EXCEPTIONS:
17939 fputs (" EXCEPTIONS fpe_min(", stdout);
fd17d1e6 17940 process_mips_fpe_exception (option.info & OEX_FPU_MIN);
a6e9f9df 17941 fputs (") fpe_max(", stdout);
fd17d1e6 17942 process_mips_fpe_exception ((option.info & OEX_FPU_MAX) >> 8);
a6e9f9df
AM
17943 fputs (")", stdout);
17944
fd17d1e6 17945 if (option.info & OEX_PAGE0)
a6e9f9df 17946 fputs (" PAGE0", stdout);
fd17d1e6 17947 if (option.info & OEX_SMM)
a6e9f9df 17948 fputs (" SMM", stdout);
fd17d1e6 17949 if (option.info & OEX_FPDBUG)
a6e9f9df 17950 fputs (" FPDBUG", stdout);
fd17d1e6 17951 if (option.info & OEX_DISMISS)
a6e9f9df
AM
17952 fputs (" DISMISS", stdout);
17953 break;
2e6be59c 17954
a6e9f9df
AM
17955 case ODK_PAD:
17956 fputs (" PAD ", stdout);
fd17d1e6 17957 if (option.info & OPAD_PREFIX)
a6e9f9df 17958 fputs (" PREFIX", stdout);
fd17d1e6 17959 if (option.info & OPAD_POSTFIX)
a6e9f9df 17960 fputs (" POSTFIX", stdout);
fd17d1e6 17961 if (option.info & OPAD_SYMBOL)
a6e9f9df
AM
17962 fputs (" SYMBOL", stdout);
17963 break;
2e6be59c 17964
a6e9f9df
AM
17965 case ODK_HWPATCH:
17966 fputs (" HWPATCH ", stdout);
fd17d1e6 17967 if (option.info & OHW_R4KEOP)
a6e9f9df 17968 fputs (" R4KEOP", stdout);
fd17d1e6 17969 if (option.info & OHW_R8KPFETCH)
a6e9f9df 17970 fputs (" R8KPFETCH", stdout);
fd17d1e6 17971 if (option.info & OHW_R5KEOP)
a6e9f9df 17972 fputs (" R5KEOP", stdout);
fd17d1e6 17973 if (option.info & OHW_R5KCVTL)
a6e9f9df
AM
17974 fputs (" R5KCVTL", stdout);
17975 break;
2e6be59c 17976
a6e9f9df
AM
17977 case ODK_FILL:
17978 fputs (" FILL ", stdout);
17979 /* XXX Print content of info word? */
17980 break;
2e6be59c 17981
a6e9f9df
AM
17982 case ODK_TAGS:
17983 fputs (" TAGS ", stdout);
17984 /* XXX Print content of info word? */
17985 break;
2e6be59c 17986
a6e9f9df
AM
17987 case ODK_HWAND:
17988 fputs (" HWAND ", stdout);
fd17d1e6 17989 if (option.info & OHWA0_R4KEOP_CHECKED)
a6e9f9df 17990 fputs (" R4KEOP_CHECKED", stdout);
fd17d1e6 17991 if (option.info & OHWA0_R4KEOP_CLEAN)
a6e9f9df
AM
17992 fputs (" R4KEOP_CLEAN", stdout);
17993 break;
2e6be59c 17994
a6e9f9df
AM
17995 case ODK_HWOR:
17996 fputs (" HWOR ", stdout);
fd17d1e6 17997 if (option.info & OHWA0_R4KEOP_CHECKED)
a6e9f9df 17998 fputs (" R4KEOP_CHECKED", stdout);
fd17d1e6 17999 if (option.info & OHWA0_R4KEOP_CLEAN)
a6e9f9df
AM
18000 fputs (" R4KEOP_CLEAN", stdout);
18001 break;
2e6be59c 18002
a6e9f9df 18003 case ODK_GP_GROUP:
d0c4e780 18004 printf (" GP_GROUP %#06x self-contained %#06x",
fd17d1e6
AM
18005 option.info & OGP_GROUP,
18006 (option.info & OGP_SELF) >> 16);
a6e9f9df 18007 break;
2e6be59c 18008
a6e9f9df 18009 case ODK_IDENT:
d0c4e780 18010 printf (" IDENT %#06x self-contained %#06x",
fd17d1e6
AM
18011 option.info & OGP_GROUP,
18012 (option.info & OGP_SELF) >> 16);
a6e9f9df 18013 break;
2e6be59c 18014
a6e9f9df
AM
18015 default:
18016 /* This shouldn't happen. */
d0c4e780 18017 printf (" %3d ??? %" PRId16 " %" PRIx32,
fd17d1e6 18018 option.kind, option.section, option.info);
a6e9f9df 18019 break;
252b5132 18020 }
a6e9f9df 18021
2cf0635d 18022 len = sizeof (* eopt);
fd17d1e6 18023 while (len < option.size)
82b1b41b 18024 {
fd17d1e6 18025 unsigned char datum = *((unsigned char *) eoption + len);
a6e9f9df 18026
82b1b41b
NC
18027 if (ISPRINT (datum))
18028 printf ("%c", datum);
18029 else
18030 printf ("\\%03o", datum);
18031 len ++;
18032 }
a6e9f9df 18033 fputs ("\n", stdout);
82b1b41b 18034
fd17d1e6 18035 offset += option.size;
252b5132 18036 }
a6e9f9df 18037 free (eopt);
252b5132 18038 }
32ec8896 18039 else
015dc7e1 18040 res = false;
252b5132
RH
18041 }
18042
18043 if (conflicts_offset != 0 && conflictsno != 0)
18044 {
2cf0635d 18045 Elf32_Conflict * iconf;
252b5132
RH
18046 size_t cnt;
18047
978c4450 18048 if (filedata->dynamic_symbols == NULL)
252b5132 18049 {
591a748a 18050 error (_("conflict list found without a dynamic symbol table\n"));
015dc7e1 18051 return false;
252b5132
RH
18052 }
18053
7296a62a
NC
18054 /* PR 21345 - print a slightly more helpful error message
18055 if we are sure that the cmalloc will fail. */
645f43a8 18056 if (conflictsno > filedata->file_size / sizeof (* iconf))
7296a62a
NC
18057 {
18058 error (_("Overlarge number of conflicts detected: %lx\n"),
18059 (long) conflictsno);
015dc7e1 18060 return false;
7296a62a
NC
18061 }
18062
3f5e193b 18063 iconf = (Elf32_Conflict *) cmalloc (conflictsno, sizeof (* iconf));
252b5132
RH
18064 if (iconf == NULL)
18065 {
8b73c356 18066 error (_("Out of memory allocating space for dynamic conflicts\n"));
015dc7e1 18067 return false;
252b5132
RH
18068 }
18069
9ea033b2 18070 if (is_32bit_elf)
252b5132 18071 {
2cf0635d 18072 Elf32_External_Conflict * econf32;
a6e9f9df 18073
3f5e193b 18074 econf32 = (Elf32_External_Conflict *)
95099889
AM
18075 get_data (NULL, filedata, conflicts_offset,
18076 sizeof (*econf32), conflictsno, _("conflict"));
a6e9f9df 18077 if (!econf32)
5a814d6d
AM
18078 {
18079 free (iconf);
015dc7e1 18080 return false;
5a814d6d 18081 }
252b5132
RH
18082
18083 for (cnt = 0; cnt < conflictsno; ++cnt)
18084 iconf[cnt] = BYTE_GET (econf32[cnt]);
a6e9f9df
AM
18085
18086 free (econf32);
252b5132
RH
18087 }
18088 else
18089 {
2cf0635d 18090 Elf64_External_Conflict * econf64;
a6e9f9df 18091
3f5e193b 18092 econf64 = (Elf64_External_Conflict *)
95099889
AM
18093 get_data (NULL, filedata, conflicts_offset,
18094 sizeof (*econf64), conflictsno, _("conflict"));
a6e9f9df 18095 if (!econf64)
5a814d6d
AM
18096 {
18097 free (iconf);
015dc7e1 18098 return false;
5a814d6d 18099 }
252b5132
RH
18100
18101 for (cnt = 0; cnt < conflictsno; ++cnt)
18102 iconf[cnt] = BYTE_GET (econf64[cnt]);
a6e9f9df
AM
18103
18104 free (econf64);
252b5132
RH
18105 }
18106
d3a49aa8
AM
18107 printf (ngettext ("\nSection '.conflict' contains %lu entry:\n",
18108 "\nSection '.conflict' contains %lu entries:\n",
18109 (unsigned long) conflictsno),
c7e7ca54 18110 (unsigned long) conflictsno);
252b5132
RH
18111 puts (_(" Num: Index Value Name"));
18112
18113 for (cnt = 0; cnt < conflictsno; ++cnt)
18114 {
b34976b6 18115 printf ("%5lu: %8lu ", (unsigned long) cnt, iconf[cnt]);
e0a31db1 18116
978c4450 18117 if (iconf[cnt] >= filedata->num_dynamic_syms)
e0a31db1 18118 printf (_("<corrupt symbol index>"));
d79b3d50 18119 else
e0a31db1
NC
18120 {
18121 Elf_Internal_Sym * psym;
18122
978c4450 18123 psym = & filedata->dynamic_symbols[iconf[cnt]];
e0a31db1
NC
18124 print_vma (psym->st_value, FULL_HEX);
18125 putchar (' ');
978c4450
AM
18126 if (VALID_DYNAMIC_NAME (filedata, psym->st_name))
18127 print_symbol (25, GET_DYNAMIC_NAME (filedata, psym->st_name));
e0a31db1
NC
18128 else
18129 printf (_("<corrupt: %14ld>"), psym->st_name);
18130 }
31104126 18131 putchar ('\n');
252b5132
RH
18132 }
18133
252b5132
RH
18134 free (iconf);
18135 }
18136
ccb4c951
RS
18137 if (pltgot != 0 && local_gotno != 0)
18138 {
91d6fa6a 18139 bfd_vma ent, local_end, global_end;
bbeee7ea 18140 size_t i, offset;
2cf0635d 18141 unsigned char * data;
82b1b41b 18142 unsigned char * data_end;
bbeee7ea 18143 int addr_size;
ccb4c951 18144
91d6fa6a 18145 ent = pltgot;
ccb4c951
RS
18146 addr_size = (is_32bit_elf ? 4 : 8);
18147 local_end = pltgot + local_gotno * addr_size;
ccb4c951 18148
74e1a04b
NC
18149 /* PR binutils/17533 file: 012-111227-0.004 */
18150 if (symtabno < gotsym)
18151 {
18152 error (_("The GOT symbol offset (%lu) is greater than the symbol table size (%lu)\n"),
82b1b41b 18153 (unsigned long) gotsym, (unsigned long) symtabno);
015dc7e1 18154 return false;
74e1a04b 18155 }
82b1b41b 18156
74e1a04b 18157 global_end = local_end + (symtabno - gotsym) * addr_size;
82b1b41b
NC
18158 /* PR 17531: file: 54c91a34. */
18159 if (global_end < local_end)
18160 {
18161 error (_("Too many GOT symbols: %lu\n"), (unsigned long) symtabno);
015dc7e1 18162 return false;
82b1b41b 18163 }
948f632f 18164
dda8d76d
NC
18165 offset = offset_from_vma (filedata, pltgot, global_end - pltgot);
18166 data = (unsigned char *) get_data (NULL, filedata, offset,
9cf03b7e
NC
18167 global_end - pltgot, 1,
18168 _("Global Offset Table data"));
919383ac 18169 /* PR 12855: Null data is handled gracefully throughout. */
82b1b41b 18170 data_end = data + (global_end - pltgot);
59245841 18171
ccb4c951
RS
18172 printf (_("\nPrimary GOT:\n"));
18173 printf (_(" Canonical gp value: "));
18174 print_vma (pltgot + 0x7ff0, LONG_HEX);
18175 printf ("\n\n");
18176
18177 printf (_(" Reserved entries:\n"));
18178 printf (_(" %*s %10s %*s Purpose\n"),
2b692964
NC
18179 addr_size * 2, _("Address"), _("Access"),
18180 addr_size * 2, _("Initial"));
82b1b41b 18181 ent = print_mips_got_entry (data, pltgot, ent, data_end);
2b692964 18182 printf (_(" Lazy resolver\n"));
82b1b41b
NC
18183 if (ent == (bfd_vma) -1)
18184 goto got_print_fail;
75ec1fdb 18185
c4ab9505
MR
18186 /* Check for the MSB of GOT[1] being set, denoting a GNU object.
18187 This entry will be used by some runtime loaders, to store the
18188 module pointer. Otherwise this is an ordinary local entry.
18189 PR 21344: Check for the entry being fully available before
18190 fetching it. */
18191 if (data
18192 && data + ent - pltgot + addr_size <= data_end
18193 && (byte_get (data + ent - pltgot, addr_size)
18194 >> (addr_size * 8 - 1)) != 0)
18195 {
18196 ent = print_mips_got_entry (data, pltgot, ent, data_end);
18197 printf (_(" Module pointer (GNU extension)\n"));
18198 if (ent == (bfd_vma) -1)
18199 goto got_print_fail;
ccb4c951
RS
18200 }
18201 printf ("\n");
18202
f17e9d8a 18203 if (data != NULL && ent < local_end)
ccb4c951
RS
18204 {
18205 printf (_(" Local entries:\n"));
cc5914eb 18206 printf (" %*s %10s %*s\n",
2b692964
NC
18207 addr_size * 2, _("Address"), _("Access"),
18208 addr_size * 2, _("Initial"));
91d6fa6a 18209 while (ent < local_end)
ccb4c951 18210 {
82b1b41b 18211 ent = print_mips_got_entry (data, pltgot, ent, data_end);
ccb4c951 18212 printf ("\n");
82b1b41b
NC
18213 if (ent == (bfd_vma) -1)
18214 goto got_print_fail;
ccb4c951
RS
18215 }
18216 printf ("\n");
18217 }
18218
f17e9d8a 18219 if (data != NULL && gotsym < symtabno)
ccb4c951
RS
18220 {
18221 int sym_width;
18222
18223 printf (_(" Global entries:\n"));
cc5914eb 18224 printf (" %*s %10s %*s %*s %-7s %3s %s\n",
9cf03b7e
NC
18225 addr_size * 2, _("Address"),
18226 _("Access"),
2b692964 18227 addr_size * 2, _("Initial"),
9cf03b7e
NC
18228 addr_size * 2, _("Sym.Val."),
18229 _("Type"),
18230 /* Note for translators: "Ndx" = abbreviated form of "Index". */
18231 _("Ndx"), _("Name"));
0b4362b0 18232
ccb4c951 18233 sym_width = (is_32bit_elf ? 80 : 160) - 28 - addr_size * 6 - 1;
e0a31db1 18234
ccb4c951
RS
18235 for (i = gotsym; i < symtabno; i++)
18236 {
82b1b41b 18237 ent = print_mips_got_entry (data, pltgot, ent, data_end);
ccb4c951 18238 printf (" ");
e0a31db1 18239
978c4450 18240 if (filedata->dynamic_symbols == NULL)
e0a31db1 18241 printf (_("<no dynamic symbols>"));
978c4450 18242 else if (i < filedata->num_dynamic_syms)
e0a31db1 18243 {
978c4450 18244 Elf_Internal_Sym * psym = filedata->dynamic_symbols + i;
e0a31db1
NC
18245
18246 print_vma (psym->st_value, LONG_HEX);
18247 printf (" %-7s %3s ",
dda8d76d
NC
18248 get_symbol_type (filedata, ELF_ST_TYPE (psym->st_info)),
18249 get_symbol_index_type (filedata, psym->st_shndx));
e0a31db1 18250
978c4450
AM
18251 if (VALID_DYNAMIC_NAME (filedata, psym->st_name))
18252 print_symbol (sym_width,
18253 GET_DYNAMIC_NAME (filedata, psym->st_name));
e0a31db1
NC
18254 else
18255 printf (_("<corrupt: %14ld>"), psym->st_name);
18256 }
ccb4c951 18257 else
7fc5ac57
JBG
18258 printf (_("<symbol index %lu exceeds number of dynamic symbols>"),
18259 (unsigned long) i);
e0a31db1 18260
ccb4c951 18261 printf ("\n");
82b1b41b
NC
18262 if (ent == (bfd_vma) -1)
18263 break;
ccb4c951
RS
18264 }
18265 printf ("\n");
18266 }
18267
82b1b41b 18268 got_print_fail:
9db70fc3 18269 free (data);
ccb4c951
RS
18270 }
18271
861fb55a
DJ
18272 if (mips_pltgot != 0 && jmprel != 0 && pltrel != 0 && pltrelsz != 0)
18273 {
91d6fa6a 18274 bfd_vma ent, end;
861fb55a
DJ
18275 size_t offset, rel_offset;
18276 unsigned long count, i;
2cf0635d 18277 unsigned char * data;
861fb55a 18278 int addr_size, sym_width;
2cf0635d 18279 Elf_Internal_Rela * rels;
861fb55a 18280
dda8d76d 18281 rel_offset = offset_from_vma (filedata, jmprel, pltrelsz);
861fb55a
DJ
18282 if (pltrel == DT_RELA)
18283 {
dda8d76d 18284 if (!slurp_rela_relocs (filedata, rel_offset, pltrelsz, &rels, &count))
015dc7e1 18285 return false;
861fb55a
DJ
18286 }
18287 else
18288 {
dda8d76d 18289 if (!slurp_rel_relocs (filedata, rel_offset, pltrelsz, &rels, &count))
015dc7e1 18290 return false;
861fb55a
DJ
18291 }
18292
91d6fa6a 18293 ent = mips_pltgot;
861fb55a
DJ
18294 addr_size = (is_32bit_elf ? 4 : 8);
18295 end = mips_pltgot + (2 + count) * addr_size;
18296
dda8d76d
NC
18297 offset = offset_from_vma (filedata, mips_pltgot, end - mips_pltgot);
18298 data = (unsigned char *) get_data (NULL, filedata, offset, end - mips_pltgot,
9cf03b7e 18299 1, _("Procedure Linkage Table data"));
59245841 18300 if (data == NULL)
288f0ba2
AM
18301 {
18302 free (rels);
015dc7e1 18303 return false;
288f0ba2 18304 }
59245841 18305
9cf03b7e 18306 printf ("\nPLT GOT:\n\n");
861fb55a
DJ
18307 printf (_(" Reserved entries:\n"));
18308 printf (_(" %*s %*s Purpose\n"),
2b692964 18309 addr_size * 2, _("Address"), addr_size * 2, _("Initial"));
91d6fa6a 18310 ent = print_mips_pltgot_entry (data, mips_pltgot, ent);
2b692964 18311 printf (_(" PLT lazy resolver\n"));
91d6fa6a 18312 ent = print_mips_pltgot_entry (data, mips_pltgot, ent);
2b692964 18313 printf (_(" Module pointer\n"));
861fb55a
DJ
18314 printf ("\n");
18315
18316 printf (_(" Entries:\n"));
cc5914eb 18317 printf (" %*s %*s %*s %-7s %3s %s\n",
2b692964
NC
18318 addr_size * 2, _("Address"),
18319 addr_size * 2, _("Initial"),
18320 addr_size * 2, _("Sym.Val."), _("Type"), _("Ndx"), _("Name"));
861fb55a
DJ
18321 sym_width = (is_32bit_elf ? 80 : 160) - 17 - addr_size * 6 - 1;
18322 for (i = 0; i < count; i++)
18323 {
df97ab2a 18324 unsigned long idx = get_reloc_symindex (rels[i].r_info);
861fb55a 18325
91d6fa6a 18326 ent = print_mips_pltgot_entry (data, mips_pltgot, ent);
861fb55a 18327 printf (" ");
e0a31db1 18328
978c4450 18329 if (idx >= filedata->num_dynamic_syms)
df97ab2a 18330 printf (_("<corrupt symbol index: %lu>"), idx);
861fb55a 18331 else
e0a31db1 18332 {
978c4450 18333 Elf_Internal_Sym * psym = filedata->dynamic_symbols + idx;
e0a31db1
NC
18334
18335 print_vma (psym->st_value, LONG_HEX);
18336 printf (" %-7s %3s ",
dda8d76d
NC
18337 get_symbol_type (filedata, ELF_ST_TYPE (psym->st_info)),
18338 get_symbol_index_type (filedata, psym->st_shndx));
978c4450
AM
18339 if (VALID_DYNAMIC_NAME (filedata, psym->st_name))
18340 print_symbol (sym_width,
18341 GET_DYNAMIC_NAME (filedata, psym->st_name));
e0a31db1
NC
18342 else
18343 printf (_("<corrupt: %14ld>"), psym->st_name);
18344 }
861fb55a
DJ
18345 printf ("\n");
18346 }
18347 printf ("\n");
18348
9db70fc3 18349 free (data);
861fb55a
DJ
18350 free (rels);
18351 }
18352
32ec8896 18353 return res;
252b5132
RH
18354}
18355
015dc7e1 18356static bool
dda8d76d 18357process_nds32_specific (Filedata * filedata)
35c08157
KLC
18358{
18359 Elf_Internal_Shdr *sect = NULL;
18360
dda8d76d 18361 sect = find_section (filedata, ".nds32_e_flags");
9c7b8e9b 18362 if (sect != NULL && sect->sh_size >= 4)
35c08157 18363 {
9c7b8e9b
AM
18364 unsigned char *buf;
18365 unsigned int flag;
35c08157
KLC
18366
18367 printf ("\nNDS32 elf flags section:\n");
9c7b8e9b
AM
18368 buf = get_data (NULL, filedata, sect->sh_offset, 1, 4,
18369 _("NDS32 elf flags section"));
35c08157 18370
9c7b8e9b 18371 if (buf == NULL)
015dc7e1 18372 return false;
32ec8896 18373
9c7b8e9b
AM
18374 flag = byte_get (buf, 4);
18375 free (buf);
18376 switch (flag & 0x3)
35c08157
KLC
18377 {
18378 case 0:
18379 printf ("(VEC_SIZE):\tNo entry.\n");
18380 break;
18381 case 1:
18382 printf ("(VEC_SIZE):\t4 bytes\n");
18383 break;
18384 case 2:
18385 printf ("(VEC_SIZE):\t16 bytes\n");
18386 break;
18387 case 3:
18388 printf ("(VEC_SIZE):\treserved\n");
18389 break;
18390 }
18391 }
18392
015dc7e1 18393 return true;
35c08157
KLC
18394}
18395
015dc7e1 18396static bool
dda8d76d 18397process_gnu_liblist (Filedata * filedata)
047b2264 18398{
2cf0635d
NC
18399 Elf_Internal_Shdr * section;
18400 Elf_Internal_Shdr * string_sec;
18401 Elf32_External_Lib * elib;
18402 char * strtab;
c256ffe7 18403 size_t strtab_size;
047b2264 18404 size_t cnt;
d3a49aa8 18405 unsigned long num_liblist;
047b2264 18406 unsigned i;
015dc7e1 18407 bool res = true;
047b2264
JJ
18408
18409 if (! do_arch)
015dc7e1 18410 return true;
047b2264 18411
dda8d76d
NC
18412 for (i = 0, section = filedata->section_headers;
18413 i < filedata->file_header.e_shnum;
b34976b6 18414 i++, section++)
047b2264
JJ
18415 {
18416 switch (section->sh_type)
18417 {
18418 case SHT_GNU_LIBLIST:
dda8d76d 18419 if (section->sh_link >= filedata->file_header.e_shnum)
c256ffe7
JJ
18420 break;
18421
3f5e193b 18422 elib = (Elf32_External_Lib *)
dda8d76d 18423 get_data (NULL, filedata, section->sh_offset, 1, section->sh_size,
9cf03b7e 18424 _("liblist section data"));
047b2264
JJ
18425
18426 if (elib == NULL)
32ec8896 18427 {
015dc7e1 18428 res = false;
32ec8896
NC
18429 break;
18430 }
047b2264 18431
dda8d76d
NC
18432 string_sec = filedata->section_headers + section->sh_link;
18433 strtab = (char *) get_data (NULL, filedata, string_sec->sh_offset, 1,
3f5e193b
NC
18434 string_sec->sh_size,
18435 _("liblist string table"));
047b2264
JJ
18436 if (strtab == NULL
18437 || section->sh_entsize != sizeof (Elf32_External_Lib))
18438 {
18439 free (elib);
2842702f 18440 free (strtab);
015dc7e1 18441 res = false;
047b2264
JJ
18442 break;
18443 }
59245841 18444 strtab_size = string_sec->sh_size;
047b2264 18445
d3a49aa8
AM
18446 num_liblist = section->sh_size / sizeof (Elf32_External_Lib);
18447 printf (ngettext ("\nLibrary list section '%s' contains %lu entries:\n",
18448 "\nLibrary list section '%s' contains %lu entries:\n",
18449 num_liblist),
dda8d76d 18450 printable_section_name (filedata, section),
d3a49aa8 18451 num_liblist);
047b2264 18452
2b692964 18453 puts (_(" Library Time Stamp Checksum Version Flags"));
047b2264
JJ
18454
18455 for (cnt = 0; cnt < section->sh_size / sizeof (Elf32_External_Lib);
18456 ++cnt)
18457 {
18458 Elf32_Lib liblist;
91d6fa6a 18459 time_t atime;
d5b07ef4 18460 char timebuf[128];
2cf0635d 18461 struct tm * tmp;
047b2264
JJ
18462
18463 liblist.l_name = BYTE_GET (elib[cnt].l_name);
91d6fa6a 18464 atime = BYTE_GET (elib[cnt].l_time_stamp);
047b2264
JJ
18465 liblist.l_checksum = BYTE_GET (elib[cnt].l_checksum);
18466 liblist.l_version = BYTE_GET (elib[cnt].l_version);
18467 liblist.l_flags = BYTE_GET (elib[cnt].l_flags);
18468
91d6fa6a 18469 tmp = gmtime (&atime);
e9e44622
JJ
18470 snprintf (timebuf, sizeof (timebuf),
18471 "%04u-%02u-%02uT%02u:%02u:%02u",
18472 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
18473 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
047b2264
JJ
18474
18475 printf ("%3lu: ", (unsigned long) cnt);
18476 if (do_wide)
c256ffe7 18477 printf ("%-20s", liblist.l_name < strtab_size
2b692964 18478 ? strtab + liblist.l_name : _("<corrupt>"));
047b2264 18479 else
c256ffe7 18480 printf ("%-20.20s", liblist.l_name < strtab_size
2b692964 18481 ? strtab + liblist.l_name : _("<corrupt>"));
047b2264
JJ
18482 printf (" %s %#010lx %-7ld %-7ld\n", timebuf, liblist.l_checksum,
18483 liblist.l_version, liblist.l_flags);
18484 }
18485
18486 free (elib);
2842702f 18487 free (strtab);
047b2264
JJ
18488 }
18489 }
18490
32ec8896 18491 return res;
047b2264
JJ
18492}
18493
9437c45b 18494static const char *
dda8d76d 18495get_note_type (Filedata * filedata, unsigned e_type)
779fe533
NC
18496{
18497 static char buff[64];
103f02d3 18498
dda8d76d 18499 if (filedata->file_header.e_type == ET_CORE)
1ec5cd37
NC
18500 switch (e_type)
18501 {
57346661 18502 case NT_AUXV:
1ec5cd37 18503 return _("NT_AUXV (auxiliary vector)");
57346661 18504 case NT_PRSTATUS:
1ec5cd37 18505 return _("NT_PRSTATUS (prstatus structure)");
57346661 18506 case NT_FPREGSET:
1ec5cd37 18507 return _("NT_FPREGSET (floating point registers)");
57346661 18508 case NT_PRPSINFO:
1ec5cd37 18509 return _("NT_PRPSINFO (prpsinfo structure)");
57346661 18510 case NT_TASKSTRUCT:
1ec5cd37 18511 return _("NT_TASKSTRUCT (task structure)");
b63a5e38
AB
18512 case NT_GDB_TDESC:
18513 return _("NT_GDB_TDESC (GDB XML target description)");
57346661 18514 case NT_PRXFPREG:
1ec5cd37 18515 return _("NT_PRXFPREG (user_xfpregs structure)");
e1e95dec
AM
18516 case NT_PPC_VMX:
18517 return _("NT_PPC_VMX (ppc Altivec registers)");
89eeb0bc
LM
18518 case NT_PPC_VSX:
18519 return _("NT_PPC_VSX (ppc VSX registers)");
66c3b5f8
GR
18520 case NT_PPC_TAR:
18521 return _("NT_PPC_TAR (ppc TAR register)");
18522 case NT_PPC_PPR:
18523 return _("NT_PPC_PPR (ppc PPR register)");
18524 case NT_PPC_DSCR:
18525 return _("NT_PPC_DSCR (ppc DSCR register)");
18526 case NT_PPC_EBB:
18527 return _("NT_PPC_EBB (ppc EBB registers)");
18528 case NT_PPC_PMU:
18529 return _("NT_PPC_PMU (ppc PMU registers)");
18530 case NT_PPC_TM_CGPR:
18531 return _("NT_PPC_TM_CGPR (ppc checkpointed GPR registers)");
18532 case NT_PPC_TM_CFPR:
18533 return _("NT_PPC_TM_CFPR (ppc checkpointed floating point registers)");
18534 case NT_PPC_TM_CVMX:
18535 return _("NT_PPC_TM_CVMX (ppc checkpointed Altivec registers)");
18536 case NT_PPC_TM_CVSX:
3fd21718 18537 return _("NT_PPC_TM_CVSX (ppc checkpointed VSX registers)");
66c3b5f8
GR
18538 case NT_PPC_TM_SPR:
18539 return _("NT_PPC_TM_SPR (ppc TM special purpose registers)");
18540 case NT_PPC_TM_CTAR:
18541 return _("NT_PPC_TM_CTAR (ppc checkpointed TAR register)");
18542 case NT_PPC_TM_CPPR:
18543 return _("NT_PPC_TM_CPPR (ppc checkpointed PPR register)");
18544 case NT_PPC_TM_CDSCR:
18545 return _("NT_PPC_TM_CDSCR (ppc checkpointed DSCR register)");
ff826ef3
TT
18546 case NT_386_TLS:
18547 return _("NT_386_TLS (x86 TLS information)");
18548 case NT_386_IOPERM:
18549 return _("NT_386_IOPERM (x86 I/O permissions)");
4339cae0
L
18550 case NT_X86_XSTATE:
18551 return _("NT_X86_XSTATE (x86 XSAVE extended state)");
8d58ed37
L
18552 case NT_X86_CET:
18553 return _("NT_X86_CET (x86 CET state)");
0675e188
UW
18554 case NT_S390_HIGH_GPRS:
18555 return _("NT_S390_HIGH_GPRS (s390 upper register halves)");
d7eeb400
MS
18556 case NT_S390_TIMER:
18557 return _("NT_S390_TIMER (s390 timer register)");
18558 case NT_S390_TODCMP:
18559 return _("NT_S390_TODCMP (s390 TOD comparator register)");
18560 case NT_S390_TODPREG:
18561 return _("NT_S390_TODPREG (s390 TOD programmable register)");
18562 case NT_S390_CTRS:
18563 return _("NT_S390_CTRS (s390 control registers)");
18564 case NT_S390_PREFIX:
18565 return _("NT_S390_PREFIX (s390 prefix register)");
a367d729
AK
18566 case NT_S390_LAST_BREAK:
18567 return _("NT_S390_LAST_BREAK (s390 last breaking event address)");
18568 case NT_S390_SYSTEM_CALL:
18569 return _("NT_S390_SYSTEM_CALL (s390 system call restart data)");
abb3f6cc
NC
18570 case NT_S390_TDB:
18571 return _("NT_S390_TDB (s390 transaction diagnostic block)");
4ef9f41a
AA
18572 case NT_S390_VXRS_LOW:
18573 return _("NT_S390_VXRS_LOW (s390 vector registers 0-15 upper half)");
18574 case NT_S390_VXRS_HIGH:
18575 return _("NT_S390_VXRS_HIGH (s390 vector registers 16-31)");
88ab90e8
AA
18576 case NT_S390_GS_CB:
18577 return _("NT_S390_GS_CB (s390 guarded-storage registers)");
18578 case NT_S390_GS_BC:
18579 return _("NT_S390_GS_BC (s390 guarded-storage broadcast control)");
faa9a424
UW
18580 case NT_ARM_VFP:
18581 return _("NT_ARM_VFP (arm VFP registers)");
652451f8
YZ
18582 case NT_ARM_TLS:
18583 return _("NT_ARM_TLS (AArch TLS registers)");
18584 case NT_ARM_HW_BREAK:
18585 return _("NT_ARM_HW_BREAK (AArch hardware breakpoint registers)");
18586 case NT_ARM_HW_WATCH:
18587 return _("NT_ARM_HW_WATCH (AArch hardware watchpoint registers)");
27456742
AK
18588 case NT_ARC_V2:
18589 return _("NT_ARC_V2 (ARC HS accumulator/extra registers)");
db6092f3
AB
18590 case NT_RISCV_CSR:
18591 return _("NT_RISCV_CSR (RISC-V control and status registers)");
57346661 18592 case NT_PSTATUS:
1ec5cd37 18593 return _("NT_PSTATUS (pstatus structure)");
57346661 18594 case NT_FPREGS:
1ec5cd37 18595 return _("NT_FPREGS (floating point registers)");
57346661 18596 case NT_PSINFO:
1ec5cd37 18597 return _("NT_PSINFO (psinfo structure)");
57346661 18598 case NT_LWPSTATUS:
1ec5cd37 18599 return _("NT_LWPSTATUS (lwpstatus_t structure)");
57346661 18600 case NT_LWPSINFO:
1ec5cd37 18601 return _("NT_LWPSINFO (lwpsinfo_t structure)");
57346661 18602 case NT_WIN32PSTATUS:
1ec5cd37 18603 return _("NT_WIN32PSTATUS (win32_pstatus structure)");
9ece1fa9
TT
18604 case NT_SIGINFO:
18605 return _("NT_SIGINFO (siginfo_t data)");
18606 case NT_FILE:
18607 return _("NT_FILE (mapped files)");
1ec5cd37
NC
18608 default:
18609 break;
18610 }
18611 else
18612 switch (e_type)
18613 {
18614 case NT_VERSION:
18615 return _("NT_VERSION (version)");
18616 case NT_ARCH:
18617 return _("NT_ARCH (architecture)");
9ef920e9 18618 case NT_GNU_BUILD_ATTRIBUTE_OPEN:
6f156d7a 18619 return _("OPEN");
9ef920e9 18620 case NT_GNU_BUILD_ATTRIBUTE_FUNC:
6f156d7a 18621 return _("func");
1ec5cd37
NC
18622 default:
18623 break;
18624 }
18625
e9e44622 18626 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
1ec5cd37 18627 return buff;
779fe533
NC
18628}
18629
015dc7e1 18630static bool
9ece1fa9
TT
18631print_core_note (Elf_Internal_Note *pnote)
18632{
18633 unsigned int addr_size = is_32bit_elf ? 4 : 8;
18634 bfd_vma count, page_size;
18635 unsigned char *descdata, *filenames, *descend;
18636
18637 if (pnote->type != NT_FILE)
04ac15ab
AS
18638 {
18639 if (do_wide)
18640 printf ("\n");
015dc7e1 18641 return true;
04ac15ab 18642 }
9ece1fa9
TT
18643
18644#ifndef BFD64
18645 if (!is_32bit_elf)
18646 {
18647 printf (_(" Cannot decode 64-bit note in 32-bit build\n"));
18648 /* Still "successful". */
015dc7e1 18649 return true;
9ece1fa9
TT
18650 }
18651#endif
18652
18653 if (pnote->descsz < 2 * addr_size)
18654 {
32ec8896 18655 error (_(" Malformed note - too short for header\n"));
015dc7e1 18656 return false;
9ece1fa9
TT
18657 }
18658
18659 descdata = (unsigned char *) pnote->descdata;
18660 descend = descdata + pnote->descsz;
18661
18662 if (descdata[pnote->descsz - 1] != '\0')
18663 {
32ec8896 18664 error (_(" Malformed note - does not end with \\0\n"));
015dc7e1 18665 return false;
9ece1fa9
TT
18666 }
18667
18668 count = byte_get (descdata, addr_size);
18669 descdata += addr_size;
18670
18671 page_size = byte_get (descdata, addr_size);
18672 descdata += addr_size;
18673
5396a86e
AM
18674 if (count > ((bfd_vma) -1 - 2 * addr_size) / (3 * addr_size)
18675 || pnote->descsz < 2 * addr_size + count * 3 * addr_size)
9ece1fa9 18676 {
32ec8896 18677 error (_(" Malformed note - too short for supplied file count\n"));
015dc7e1 18678 return false;
9ece1fa9
TT
18679 }
18680
18681 printf (_(" Page size: "));
18682 print_vma (page_size, DEC);
18683 printf ("\n");
18684
18685 printf (_(" %*s%*s%*s\n"),
18686 (int) (2 + 2 * addr_size), _("Start"),
18687 (int) (4 + 2 * addr_size), _("End"),
18688 (int) (4 + 2 * addr_size), _("Page Offset"));
18689 filenames = descdata + count * 3 * addr_size;
595712bb 18690 while (count-- > 0)
9ece1fa9
TT
18691 {
18692 bfd_vma start, end, file_ofs;
18693
18694 if (filenames == descend)
18695 {
32ec8896 18696 error (_(" Malformed note - filenames end too early\n"));
015dc7e1 18697 return false;
9ece1fa9
TT
18698 }
18699
18700 start = byte_get (descdata, addr_size);
18701 descdata += addr_size;
18702 end = byte_get (descdata, addr_size);
18703 descdata += addr_size;
18704 file_ofs = byte_get (descdata, addr_size);
18705 descdata += addr_size;
18706
18707 printf (" ");
18708 print_vma (start, FULL_HEX);
18709 printf (" ");
18710 print_vma (end, FULL_HEX);
18711 printf (" ");
18712 print_vma (file_ofs, FULL_HEX);
18713 printf ("\n %s\n", filenames);
18714
18715 filenames += 1 + strlen ((char *) filenames);
18716 }
18717
015dc7e1 18718 return true;
9ece1fa9
TT
18719}
18720
1118d252
RM
18721static const char *
18722get_gnu_elf_note_type (unsigned e_type)
18723{
1449284b 18724 /* NB/ Keep this switch statement in sync with print_gnu_note (). */
1118d252
RM
18725 switch (e_type)
18726 {
18727 case NT_GNU_ABI_TAG:
18728 return _("NT_GNU_ABI_TAG (ABI version tag)");
18729 case NT_GNU_HWCAP:
18730 return _("NT_GNU_HWCAP (DSO-supplied software HWCAP info)");
18731 case NT_GNU_BUILD_ID:
18732 return _("NT_GNU_BUILD_ID (unique build ID bitstring)");
0297aed6
DM
18733 case NT_GNU_GOLD_VERSION:
18734 return _("NT_GNU_GOLD_VERSION (gold version)");
9ef920e9
NC
18735 case NT_GNU_PROPERTY_TYPE_0:
18736 return _("NT_GNU_PROPERTY_TYPE_0");
18737 case NT_GNU_BUILD_ATTRIBUTE_OPEN:
18738 return _("NT_GNU_BUILD_ATTRIBUTE_OPEN");
18739 case NT_GNU_BUILD_ATTRIBUTE_FUNC:
18740 return _("NT_GNU_BUILD_ATTRIBUTE_FUNC");
1118d252 18741 default:
1449284b
NC
18742 {
18743 static char buff[64];
1118d252 18744
1449284b
NC
18745 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
18746 return buff;
18747 }
18748 }
1118d252
RM
18749}
18750
a9eafb08
L
18751static void
18752decode_x86_compat_isa (unsigned int bitmask)
18753{
18754 while (bitmask)
18755 {
18756 unsigned int bit = bitmask & (- bitmask);
18757
18758 bitmask &= ~ bit;
18759 switch (bit)
18760 {
18761 case GNU_PROPERTY_X86_COMPAT_ISA_1_486:
18762 printf ("i486");
18763 break;
18764 case GNU_PROPERTY_X86_COMPAT_ISA_1_586:
18765 printf ("586");
18766 break;
18767 case GNU_PROPERTY_X86_COMPAT_ISA_1_686:
18768 printf ("686");
18769 break;
18770 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE:
18771 printf ("SSE");
18772 break;
18773 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE2:
18774 printf ("SSE2");
18775 break;
18776 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE3:
18777 printf ("SSE3");
18778 break;
18779 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSSE3:
18780 printf ("SSSE3");
18781 break;
18782 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE4_1:
18783 printf ("SSE4_1");
18784 break;
18785 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE4_2:
18786 printf ("SSE4_2");
18787 break;
18788 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX:
18789 printf ("AVX");
18790 break;
18791 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX2:
18792 printf ("AVX2");
18793 break;
18794 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512F:
18795 printf ("AVX512F");
18796 break;
18797 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512CD:
18798 printf ("AVX512CD");
18799 break;
18800 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512ER:
18801 printf ("AVX512ER");
18802 break;
18803 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512PF:
18804 printf ("AVX512PF");
18805 break;
18806 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512VL:
18807 printf ("AVX512VL");
18808 break;
18809 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512DQ:
18810 printf ("AVX512DQ");
18811 break;
18812 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512BW:
18813 printf ("AVX512BW");
18814 break;
65b3d26e
L
18815 default:
18816 printf (_("<unknown: %x>"), bit);
18817 break;
a9eafb08
L
18818 }
18819 if (bitmask)
18820 printf (", ");
18821 }
18822}
18823
9ef920e9 18824static void
32930e4e 18825decode_x86_compat_2_isa (unsigned int bitmask)
9ef920e9 18826{
0a59decb 18827 if (!bitmask)
90c745dc
L
18828 {
18829 printf (_("<None>"));
18830 return;
18831 }
90c745dc 18832
9ef920e9
NC
18833 while (bitmask)
18834 {
1fc87489 18835 unsigned int bit = bitmask & (- bitmask);
9ef920e9
NC
18836
18837 bitmask &= ~ bit;
18838 switch (bit)
18839 {
32930e4e 18840 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_CMOV:
a9eafb08
L
18841 printf ("CMOV");
18842 break;
32930e4e 18843 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_SSE:
a9eafb08
L
18844 printf ("SSE");
18845 break;
32930e4e 18846 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_SSE2:
a9eafb08
L
18847 printf ("SSE2");
18848 break;
32930e4e 18849 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_SSE3:
a9eafb08
L
18850 printf ("SSE3");
18851 break;
32930e4e 18852 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_SSSE3:
a9eafb08
L
18853 printf ("SSSE3");
18854 break;
32930e4e 18855 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_SSE4_1:
a9eafb08
L
18856 printf ("SSE4_1");
18857 break;
32930e4e 18858 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_SSE4_2:
a9eafb08
L
18859 printf ("SSE4_2");
18860 break;
32930e4e 18861 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX:
a9eafb08
L
18862 printf ("AVX");
18863 break;
32930e4e 18864 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX2:
a9eafb08
L
18865 printf ("AVX2");
18866 break;
32930e4e 18867 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_FMA:
a9eafb08
L
18868 printf ("FMA");
18869 break;
32930e4e 18870 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512F:
a9eafb08
L
18871 printf ("AVX512F");
18872 break;
32930e4e 18873 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512CD:
a9eafb08
L
18874 printf ("AVX512CD");
18875 break;
32930e4e 18876 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512ER:
a9eafb08
L
18877 printf ("AVX512ER");
18878 break;
32930e4e 18879 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512PF:
a9eafb08
L
18880 printf ("AVX512PF");
18881 break;
32930e4e 18882 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512VL:
a9eafb08
L
18883 printf ("AVX512VL");
18884 break;
32930e4e 18885 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512DQ:
a9eafb08
L
18886 printf ("AVX512DQ");
18887 break;
32930e4e 18888 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512BW:
a9eafb08
L
18889 printf ("AVX512BW");
18890 break;
32930e4e 18891 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_4FMAPS:
a9eafb08
L
18892 printf ("AVX512_4FMAPS");
18893 break;
32930e4e 18894 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_4VNNIW:
a9eafb08
L
18895 printf ("AVX512_4VNNIW");
18896 break;
32930e4e 18897 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_BITALG:
a9eafb08
L
18898 printf ("AVX512_BITALG");
18899 break;
32930e4e 18900 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_IFMA:
a9eafb08
L
18901 printf ("AVX512_IFMA");
18902 break;
32930e4e 18903 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_VBMI:
a9eafb08
L
18904 printf ("AVX512_VBMI");
18905 break;
32930e4e 18906 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_VBMI2:
a9eafb08
L
18907 printf ("AVX512_VBMI2");
18908 break;
32930e4e 18909 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_VNNI:
a9eafb08
L
18910 printf ("AVX512_VNNI");
18911 break;
32930e4e 18912 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_AVX512_BF16:
462cac58
L
18913 printf ("AVX512_BF16");
18914 break;
65b3d26e
L
18915 default:
18916 printf (_("<unknown: %x>"), bit);
18917 break;
9ef920e9
NC
18918 }
18919 if (bitmask)
18920 printf (", ");
18921 }
18922}
18923
32930e4e
L
18924static void
18925decode_x86_isa (unsigned int bitmask)
18926{
32930e4e
L
18927 while (bitmask)
18928 {
18929 unsigned int bit = bitmask & (- bitmask);
18930
18931 bitmask &= ~ bit;
18932 switch (bit)
18933 {
b0ab0693
L
18934 case GNU_PROPERTY_X86_ISA_1_BASELINE:
18935 printf ("x86-64-baseline");
18936 break;
32930e4e
L
18937 case GNU_PROPERTY_X86_ISA_1_V2:
18938 printf ("x86-64-v2");
18939 break;
18940 case GNU_PROPERTY_X86_ISA_1_V3:
18941 printf ("x86-64-v3");
18942 break;
18943 case GNU_PROPERTY_X86_ISA_1_V4:
18944 printf ("x86-64-v4");
18945 break;
18946 default:
18947 printf (_("<unknown: %x>"), bit);
18948 break;
18949 }
18950 if (bitmask)
18951 printf (", ");
18952 }
18953}
18954
ee2fdd6f 18955static void
a9eafb08 18956decode_x86_feature_1 (unsigned int bitmask)
ee2fdd6f 18957{
0a59decb 18958 if (!bitmask)
90c745dc
L
18959 {
18960 printf (_("<None>"));
18961 return;
18962 }
90c745dc 18963
ee2fdd6f
L
18964 while (bitmask)
18965 {
18966 unsigned int bit = bitmask & (- bitmask);
18967
18968 bitmask &= ~ bit;
18969 switch (bit)
18970 {
18971 case GNU_PROPERTY_X86_FEATURE_1_IBT:
a9eafb08 18972 printf ("IBT");
ee2fdd6f 18973 break;
48580982 18974 case GNU_PROPERTY_X86_FEATURE_1_SHSTK:
a9eafb08 18975 printf ("SHSTK");
48580982 18976 break;
279d901e
L
18977 case GNU_PROPERTY_X86_FEATURE_1_LAM_U48:
18978 printf ("LAM_U48");
18979 break;
18980 case GNU_PROPERTY_X86_FEATURE_1_LAM_U57:
18981 printf ("LAM_U57");
18982 break;
ee2fdd6f
L
18983 default:
18984 printf (_("<unknown: %x>"), bit);
18985 break;
18986 }
18987 if (bitmask)
18988 printf (", ");
18989 }
18990}
18991
a9eafb08
L
18992static void
18993decode_x86_feature_2 (unsigned int bitmask)
18994{
0a59decb 18995 if (!bitmask)
90c745dc
L
18996 {
18997 printf (_("<None>"));
18998 return;
18999 }
90c745dc 19000
a9eafb08
L
19001 while (bitmask)
19002 {
19003 unsigned int bit = bitmask & (- bitmask);
19004
19005 bitmask &= ~ bit;
19006 switch (bit)
19007 {
19008 case GNU_PROPERTY_X86_FEATURE_2_X86:
19009 printf ("x86");
19010 break;
19011 case GNU_PROPERTY_X86_FEATURE_2_X87:
19012 printf ("x87");
19013 break;
19014 case GNU_PROPERTY_X86_FEATURE_2_MMX:
19015 printf ("MMX");
19016 break;
19017 case GNU_PROPERTY_X86_FEATURE_2_XMM:
19018 printf ("XMM");
19019 break;
19020 case GNU_PROPERTY_X86_FEATURE_2_YMM:
19021 printf ("YMM");
19022 break;
19023 case GNU_PROPERTY_X86_FEATURE_2_ZMM:
19024 printf ("ZMM");
19025 break;
a308b89d
L
19026 case GNU_PROPERTY_X86_FEATURE_2_TMM:
19027 printf ("TMM");
19028 break;
32930e4e
L
19029 case GNU_PROPERTY_X86_FEATURE_2_MASK:
19030 printf ("MASK");
19031 break;
a9eafb08
L
19032 case GNU_PROPERTY_X86_FEATURE_2_FXSR:
19033 printf ("FXSR");
19034 break;
19035 case GNU_PROPERTY_X86_FEATURE_2_XSAVE:
19036 printf ("XSAVE");
19037 break;
19038 case GNU_PROPERTY_X86_FEATURE_2_XSAVEOPT:
19039 printf ("XSAVEOPT");
19040 break;
19041 case GNU_PROPERTY_X86_FEATURE_2_XSAVEC:
19042 printf ("XSAVEC");
19043 break;
65b3d26e
L
19044 default:
19045 printf (_("<unknown: %x>"), bit);
19046 break;
a9eafb08
L
19047 }
19048 if (bitmask)
19049 printf (", ");
19050 }
19051}
19052
cd702818
SD
19053static void
19054decode_aarch64_feature_1_and (unsigned int bitmask)
19055{
19056 while (bitmask)
19057 {
19058 unsigned int bit = bitmask & (- bitmask);
19059
19060 bitmask &= ~ bit;
19061 switch (bit)
19062 {
19063 case GNU_PROPERTY_AARCH64_FEATURE_1_BTI:
19064 printf ("BTI");
19065 break;
19066
19067 case GNU_PROPERTY_AARCH64_FEATURE_1_PAC:
19068 printf ("PAC");
19069 break;
19070
19071 default:
19072 printf (_("<unknown: %x>"), bit);
19073 break;
19074 }
19075 if (bitmask)
19076 printf (", ");
19077 }
19078}
19079
9ef920e9 19080static void
dda8d76d 19081print_gnu_property_note (Filedata * filedata, Elf_Internal_Note * pnote)
9ef920e9
NC
19082{
19083 unsigned char * ptr = (unsigned char *) pnote->descdata;
19084 unsigned char * ptr_end = ptr + pnote->descsz;
19085 unsigned int size = is_32bit_elf ? 4 : 8;
19086
19087 printf (_(" Properties: "));
19088
1fc87489 19089 if (pnote->descsz < 8 || (pnote->descsz % size) != 0)
9ef920e9
NC
19090 {
19091 printf (_("<corrupt GNU_PROPERTY_TYPE, size = %#lx>\n"), pnote->descsz);
19092 return;
19093 }
19094
6ab2c4ed 19095 while (ptr < ptr_end)
9ef920e9 19096 {
1fc87489 19097 unsigned int j;
6ab2c4ed
MC
19098 unsigned int type;
19099 unsigned int datasz;
19100
19101 if ((size_t) (ptr_end - ptr) < 8)
19102 {
19103 printf (_("<corrupt descsz: %#lx>\n"), pnote->descsz);
19104 break;
19105 }
19106
19107 type = byte_get (ptr, 4);
19108 datasz = byte_get (ptr + 4, 4);
9ef920e9 19109
1fc87489 19110 ptr += 8;
9ef920e9 19111
6ab2c4ed 19112 if (datasz > (size_t) (ptr_end - ptr))
9ef920e9 19113 {
1fc87489
L
19114 printf (_("<corrupt type (%#x) datasz: %#x>\n"),
19115 type, datasz);
9ef920e9 19116 break;
1fc87489 19117 }
9ef920e9 19118
1fc87489
L
19119 if (type >= GNU_PROPERTY_LOPROC && type <= GNU_PROPERTY_HIPROC)
19120 {
dda8d76d
NC
19121 if (filedata->file_header.e_machine == EM_X86_64
19122 || filedata->file_header.e_machine == EM_IAMCU
19123 || filedata->file_header.e_machine == EM_386)
1fc87489 19124 {
aa7bca9b
L
19125 unsigned int bitmask;
19126
19127 if (datasz == 4)
0a59decb 19128 bitmask = byte_get (ptr, 4);
aa7bca9b
L
19129 else
19130 bitmask = 0;
19131
1fc87489
L
19132 switch (type)
19133 {
19134 case GNU_PROPERTY_X86_ISA_1_USED:
1fc87489 19135 if (datasz != 4)
aa7bca9b
L
19136 printf (_("x86 ISA used: <corrupt length: %#x> "),
19137 datasz);
1fc87489 19138 else
aa7bca9b
L
19139 {
19140 printf ("x86 ISA used: ");
19141 decode_x86_isa (bitmask);
19142 }
1fc87489 19143 goto next;
9ef920e9 19144
1fc87489 19145 case GNU_PROPERTY_X86_ISA_1_NEEDED:
1fc87489 19146 if (datasz != 4)
aa7bca9b
L
19147 printf (_("x86 ISA needed: <corrupt length: %#x> "),
19148 datasz);
1fc87489 19149 else
aa7bca9b
L
19150 {
19151 printf ("x86 ISA needed: ");
19152 decode_x86_isa (bitmask);
19153 }
1fc87489 19154 goto next;
9ef920e9 19155
ee2fdd6f 19156 case GNU_PROPERTY_X86_FEATURE_1_AND:
ee2fdd6f 19157 if (datasz != 4)
aa7bca9b
L
19158 printf (_("x86 feature: <corrupt length: %#x> "),
19159 datasz);
ee2fdd6f 19160 else
aa7bca9b
L
19161 {
19162 printf ("x86 feature: ");
a9eafb08
L
19163 decode_x86_feature_1 (bitmask);
19164 }
19165 goto next;
19166
19167 case GNU_PROPERTY_X86_FEATURE_2_USED:
19168 if (datasz != 4)
19169 printf (_("x86 feature used: <corrupt length: %#x> "),
19170 datasz);
19171 else
19172 {
19173 printf ("x86 feature used: ");
19174 decode_x86_feature_2 (bitmask);
19175 }
19176 goto next;
19177
19178 case GNU_PROPERTY_X86_FEATURE_2_NEEDED:
19179 if (datasz != 4)
19180 printf (_("x86 feature needed: <corrupt length: %#x> "), datasz);
19181 else
19182 {
19183 printf ("x86 feature needed: ");
19184 decode_x86_feature_2 (bitmask);
19185 }
19186 goto next;
19187
19188 case GNU_PROPERTY_X86_COMPAT_ISA_1_USED:
19189 if (datasz != 4)
19190 printf (_("x86 ISA used: <corrupt length: %#x> "),
19191 datasz);
19192 else
19193 {
19194 printf ("x86 ISA used: ");
19195 decode_x86_compat_isa (bitmask);
19196 }
19197 goto next;
19198
19199 case GNU_PROPERTY_X86_COMPAT_ISA_1_NEEDED:
19200 if (datasz != 4)
19201 printf (_("x86 ISA needed: <corrupt length: %#x> "),
19202 datasz);
19203 else
19204 {
19205 printf ("x86 ISA needed: ");
19206 decode_x86_compat_isa (bitmask);
aa7bca9b 19207 }
ee2fdd6f
L
19208 goto next;
19209
32930e4e
L
19210 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_USED:
19211 if (datasz != 4)
19212 printf (_("x86 ISA used: <corrupt length: %#x> "),
19213 datasz);
19214 else
19215 {
19216 printf ("x86 ISA used: ");
19217 decode_x86_compat_2_isa (bitmask);
19218 }
19219 goto next;
19220
19221 case GNU_PROPERTY_X86_COMPAT_2_ISA_1_NEEDED:
19222 if (datasz != 4)
19223 printf (_("x86 ISA needed: <corrupt length: %#x> "),
19224 datasz);
19225 else
19226 {
19227 printf ("x86 ISA needed: ");
19228 decode_x86_compat_2_isa (bitmask);
19229 }
19230 goto next;
19231
1fc87489
L
19232 default:
19233 break;
19234 }
19235 }
cd702818
SD
19236 else if (filedata->file_header.e_machine == EM_AARCH64)
19237 {
19238 if (type == GNU_PROPERTY_AARCH64_FEATURE_1_AND)
19239 {
19240 printf ("AArch64 feature: ");
19241 if (datasz != 4)
19242 printf (_("<corrupt length: %#x> "), datasz);
19243 else
19244 decode_aarch64_feature_1_and (byte_get (ptr, 4));
19245 goto next;
19246 }
19247 }
1fc87489
L
19248 }
19249 else
19250 {
19251 switch (type)
9ef920e9 19252 {
1fc87489
L
19253 case GNU_PROPERTY_STACK_SIZE:
19254 printf (_("stack size: "));
19255 if (datasz != size)
19256 printf (_("<corrupt length: %#x> "), datasz);
19257 else
19258 printf ("%#lx", (unsigned long) byte_get (ptr, size));
19259 goto next;
19260
19261 case GNU_PROPERTY_NO_COPY_ON_PROTECTED:
19262 printf ("no copy on protected ");
19263 if (datasz)
19264 printf (_("<corrupt length: %#x> "), datasz);
19265 goto next;
19266
19267 default:
9ef920e9
NC
19268 break;
19269 }
9ef920e9
NC
19270 }
19271
1fc87489
L
19272 if (type < GNU_PROPERTY_LOPROC)
19273 printf (_("<unknown type %#x data: "), type);
19274 else if (type < GNU_PROPERTY_LOUSER)
8c3853d9 19275 printf (_("<processor-specific type %#x data: "), type);
1fc87489
L
19276 else
19277 printf (_("<application-specific type %#x data: "), type);
19278 for (j = 0; j < datasz; ++j)
19279 printf ("%02x ", ptr[j] & 0xff);
19280 printf (">");
19281
dc1e8a47 19282 next:
9ef920e9 19283 ptr += ((datasz + (size - 1)) & ~ (size - 1));
1fc87489
L
19284 if (ptr == ptr_end)
19285 break;
1fc87489 19286
6ab2c4ed
MC
19287 if (do_wide)
19288 printf (", ");
19289 else
19290 printf ("\n\t");
9ef920e9
NC
19291 }
19292
19293 printf ("\n");
19294}
19295
015dc7e1 19296static bool
dda8d76d 19297print_gnu_note (Filedata * filedata, Elf_Internal_Note *pnote)
664f90a3 19298{
1449284b 19299 /* NB/ Keep this switch statement in sync with get_gnu_elf_note_type (). */
664f90a3
TT
19300 switch (pnote->type)
19301 {
19302 case NT_GNU_BUILD_ID:
19303 {
19304 unsigned long i;
19305
19306 printf (_(" Build ID: "));
19307 for (i = 0; i < pnote->descsz; ++i)
19308 printf ("%02x", pnote->descdata[i] & 0xff);
9cf03b7e 19309 printf ("\n");
664f90a3
TT
19310 }
19311 break;
19312
19313 case NT_GNU_ABI_TAG:
19314 {
19315 unsigned long os, major, minor, subminor;
19316 const char *osname;
19317
3102e897
NC
19318 /* PR 17531: file: 030-599401-0.004. */
19319 if (pnote->descsz < 16)
19320 {
19321 printf (_(" <corrupt GNU_ABI_TAG>\n"));
19322 break;
19323 }
19324
664f90a3
TT
19325 os = byte_get ((unsigned char *) pnote->descdata, 4);
19326 major = byte_get ((unsigned char *) pnote->descdata + 4, 4);
19327 minor = byte_get ((unsigned char *) pnote->descdata + 8, 4);
19328 subminor = byte_get ((unsigned char *) pnote->descdata + 12, 4);
19329
19330 switch (os)
19331 {
19332 case GNU_ABI_TAG_LINUX:
19333 osname = "Linux";
19334 break;
19335 case GNU_ABI_TAG_HURD:
19336 osname = "Hurd";
19337 break;
19338 case GNU_ABI_TAG_SOLARIS:
19339 osname = "Solaris";
19340 break;
19341 case GNU_ABI_TAG_FREEBSD:
19342 osname = "FreeBSD";
19343 break;
19344 case GNU_ABI_TAG_NETBSD:
19345 osname = "NetBSD";
19346 break;
14ae95f2
RM
19347 case GNU_ABI_TAG_SYLLABLE:
19348 osname = "Syllable";
19349 break;
19350 case GNU_ABI_TAG_NACL:
19351 osname = "NaCl";
19352 break;
664f90a3
TT
19353 default:
19354 osname = "Unknown";
19355 break;
19356 }
19357
19358 printf (_(" OS: %s, ABI: %ld.%ld.%ld\n"), osname,
19359 major, minor, subminor);
19360 }
19361 break;
926c5385
CC
19362
19363 case NT_GNU_GOLD_VERSION:
19364 {
19365 unsigned long i;
19366
19367 printf (_(" Version: "));
19368 for (i = 0; i < pnote->descsz && pnote->descdata[i] != '\0'; ++i)
19369 printf ("%c", pnote->descdata[i]);
19370 printf ("\n");
19371 }
19372 break;
1449284b
NC
19373
19374 case NT_GNU_HWCAP:
19375 {
19376 unsigned long num_entries, mask;
19377
19378 /* Hardware capabilities information. Word 0 is the number of entries.
19379 Word 1 is a bitmask of enabled entries. The rest of the descriptor
19380 is a series of entries, where each entry is a single byte followed
19381 by a nul terminated string. The byte gives the bit number to test
19382 if enabled in the bitmask. */
19383 printf (_(" Hardware Capabilities: "));
19384 if (pnote->descsz < 8)
19385 {
32ec8896 19386 error (_("<corrupt GNU_HWCAP>\n"));
015dc7e1 19387 return false;
1449284b
NC
19388 }
19389 num_entries = byte_get ((unsigned char *) pnote->descdata, 4);
19390 mask = byte_get ((unsigned char *) pnote->descdata + 4, 4);
19391 printf (_("num entries: %ld, enabled mask: %lx\n"), num_entries, mask);
19392 /* FIXME: Add code to display the entries... */
19393 }
19394 break;
19395
9ef920e9 19396 case NT_GNU_PROPERTY_TYPE_0:
dda8d76d 19397 print_gnu_property_note (filedata, pnote);
9ef920e9 19398 break;
9abca702 19399
1449284b
NC
19400 default:
19401 /* Handle unrecognised types. An error message should have already been
19402 created by get_gnu_elf_note_type(), so all that we need to do is to
19403 display the data. */
19404 {
19405 unsigned long i;
19406
19407 printf (_(" Description data: "));
19408 for (i = 0; i < pnote->descsz; ++i)
19409 printf ("%02x ", pnote->descdata[i] & 0xff);
19410 printf ("\n");
19411 }
19412 break;
664f90a3
TT
19413 }
19414
015dc7e1 19415 return true;
664f90a3
TT
19416}
19417
685080f2
NC
19418static const char *
19419get_v850_elf_note_type (enum v850_notes n_type)
19420{
19421 static char buff[64];
19422
19423 switch (n_type)
19424 {
19425 case V850_NOTE_ALIGNMENT: return _("Alignment of 8-byte objects");
19426 case V850_NOTE_DATA_SIZE: return _("Sizeof double and long double");
19427 case V850_NOTE_FPU_INFO: return _("Type of FPU support needed");
19428 case V850_NOTE_SIMD_INFO: return _("Use of SIMD instructions");
19429 case V850_NOTE_CACHE_INFO: return _("Use of cache");
19430 case V850_NOTE_MMU_INFO: return _("Use of MMU");
19431 default:
19432 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), n_type);
19433 return buff;
19434 }
19435}
19436
015dc7e1 19437static bool
685080f2
NC
19438print_v850_note (Elf_Internal_Note * pnote)
19439{
19440 unsigned int val;
19441
19442 if (pnote->descsz != 4)
015dc7e1 19443 return false;
32ec8896 19444
685080f2
NC
19445 val = byte_get ((unsigned char *) pnote->descdata, pnote->descsz);
19446
19447 if (val == 0)
19448 {
19449 printf (_("not set\n"));
015dc7e1 19450 return true;
685080f2
NC
19451 }
19452
19453 switch (pnote->type)
19454 {
19455 case V850_NOTE_ALIGNMENT:
19456 switch (val)
19457 {
015dc7e1
AM
19458 case EF_RH850_DATA_ALIGN4: printf (_("4-byte\n")); return true;
19459 case EF_RH850_DATA_ALIGN8: printf (_("8-byte\n")); return true;
685080f2
NC
19460 }
19461 break;
14ae95f2 19462
685080f2
NC
19463 case V850_NOTE_DATA_SIZE:
19464 switch (val)
19465 {
015dc7e1
AM
19466 case EF_RH850_DOUBLE32: printf (_("4-bytes\n")); return true;
19467 case EF_RH850_DOUBLE64: printf (_("8-bytes\n")); return true;
685080f2
NC
19468 }
19469 break;
14ae95f2 19470
685080f2
NC
19471 case V850_NOTE_FPU_INFO:
19472 switch (val)
19473 {
015dc7e1
AM
19474 case EF_RH850_FPU20: printf (_("FPU-2.0\n")); return true;
19475 case EF_RH850_FPU30: printf (_("FPU-3.0\n")); return true;
685080f2
NC
19476 }
19477 break;
14ae95f2 19478
685080f2
NC
19479 case V850_NOTE_MMU_INFO:
19480 case V850_NOTE_CACHE_INFO:
19481 case V850_NOTE_SIMD_INFO:
19482 if (val == EF_RH850_SIMD)
19483 {
19484 printf (_("yes\n"));
015dc7e1 19485 return true;
685080f2
NC
19486 }
19487 break;
19488
19489 default:
19490 /* An 'unknown note type' message will already have been displayed. */
19491 break;
19492 }
19493
19494 printf (_("unknown value: %x\n"), val);
015dc7e1 19495 return false;
685080f2
NC
19496}
19497
015dc7e1 19498static bool
c6056a74
SF
19499process_netbsd_elf_note (Elf_Internal_Note * pnote)
19500{
19501 unsigned int version;
19502
19503 switch (pnote->type)
19504 {
19505 case NT_NETBSD_IDENT:
b966f55f
AM
19506 if (pnote->descsz < 1)
19507 break;
c6056a74
SF
19508 version = byte_get ((unsigned char *) pnote->descdata, sizeof (version));
19509 if ((version / 10000) % 100)
b966f55f 19510 printf (" NetBSD\t\t0x%08lx\tIDENT %u (%u.%u%s%c)\n", pnote->descsz,
c6056a74
SF
19511 version, version / 100000000, (version / 1000000) % 100,
19512 (version / 10000) % 100 > 26 ? "Z" : "",
15f205b1 19513 'A' + (version / 10000) % 26);
c6056a74
SF
19514 else
19515 printf (" NetBSD\t\t0x%08lx\tIDENT %u (%u.%u.%u)\n", pnote->descsz,
b966f55f 19516 version, version / 100000000, (version / 1000000) % 100,
15f205b1 19517 (version / 100) % 100);
015dc7e1 19518 return true;
c6056a74
SF
19519
19520 case NT_NETBSD_MARCH:
9abca702 19521 printf (" NetBSD\t\t0x%08lx\tMARCH <%s>\n", pnote->descsz,
c6056a74 19522 pnote->descdata);
015dc7e1 19523 return true;
c6056a74 19524
9abca702 19525 case NT_NETBSD_PAX:
b966f55f
AM
19526 if (pnote->descsz < 1)
19527 break;
9abca702
CZ
19528 version = byte_get ((unsigned char *) pnote->descdata, sizeof (version));
19529 printf (" NetBSD\t\t0x%08lx\tPaX <%s%s%s%s%s%s>\n", pnote->descsz,
19530 ((version & NT_NETBSD_PAX_MPROTECT) ? "+mprotect" : ""),
19531 ((version & NT_NETBSD_PAX_NOMPROTECT) ? "-mprotect" : ""),
19532 ((version & NT_NETBSD_PAX_GUARD) ? "+guard" : ""),
19533 ((version & NT_NETBSD_PAX_NOGUARD) ? "-guard" : ""),
19534 ((version & NT_NETBSD_PAX_ASLR) ? "+ASLR" : ""),
19535 ((version & NT_NETBSD_PAX_NOASLR) ? "-ASLR" : ""));
015dc7e1 19536 return true;
c6056a74 19537 }
b966f55f
AM
19538
19539 printf (" NetBSD\t0x%08lx\tUnknown note type: (0x%08lx)\n",
19540 pnote->descsz, pnote->type);
015dc7e1 19541 return false;
c6056a74
SF
19542}
19543
f4ddf30f 19544static const char *
dda8d76d 19545get_freebsd_elfcore_note_type (Filedata * filedata, unsigned e_type)
f4ddf30f 19546{
f4ddf30f
JB
19547 switch (e_type)
19548 {
19549 case NT_FREEBSD_THRMISC:
19550 return _("NT_THRMISC (thrmisc structure)");
19551 case NT_FREEBSD_PROCSTAT_PROC:
19552 return _("NT_PROCSTAT_PROC (proc data)");
19553 case NT_FREEBSD_PROCSTAT_FILES:
19554 return _("NT_PROCSTAT_FILES (files data)");
19555 case NT_FREEBSD_PROCSTAT_VMMAP:
19556 return _("NT_PROCSTAT_VMMAP (vmmap data)");
19557 case NT_FREEBSD_PROCSTAT_GROUPS:
19558 return _("NT_PROCSTAT_GROUPS (groups data)");
19559 case NT_FREEBSD_PROCSTAT_UMASK:
19560 return _("NT_PROCSTAT_UMASK (umask data)");
19561 case NT_FREEBSD_PROCSTAT_RLIMIT:
19562 return _("NT_PROCSTAT_RLIMIT (rlimit data)");
19563 case NT_FREEBSD_PROCSTAT_OSREL:
19564 return _("NT_PROCSTAT_OSREL (osreldate data)");
19565 case NT_FREEBSD_PROCSTAT_PSSTRINGS:
19566 return _("NT_PROCSTAT_PSSTRINGS (ps_strings data)");
19567 case NT_FREEBSD_PROCSTAT_AUXV:
19568 return _("NT_PROCSTAT_AUXV (auxv data)");
0b9305ed
JB
19569 case NT_FREEBSD_PTLWPINFO:
19570 return _("NT_PTLWPINFO (ptrace_lwpinfo structure)");
f4ddf30f 19571 }
dda8d76d 19572 return get_note_type (filedata, e_type);
f4ddf30f
JB
19573}
19574
9437c45b 19575static const char *
dda8d76d 19576get_netbsd_elfcore_note_type (Filedata * filedata, unsigned e_type)
9437c45b
JT
19577{
19578 static char buff[64];
19579
540e6170
CZ
19580 switch (e_type)
19581 {
19582 case NT_NETBSDCORE_PROCINFO:
19583 /* NetBSD core "procinfo" structure. */
19584 return _("NetBSD procinfo structure");
9437c45b 19585
540e6170
CZ
19586 case NT_NETBSDCORE_AUXV:
19587 return _("NetBSD ELF auxiliary vector data");
9437c45b 19588
06d949ec
KR
19589 case NT_NETBSDCORE_LWPSTATUS:
19590 return _("PT_LWPSTATUS (ptrace_lwpstatus structure)");
06d949ec 19591
540e6170 19592 default:
06d949ec 19593 /* As of Jan 2020 there are no other machine-independent notes
540e6170
CZ
19594 defined for NetBSD core files. If the note type is less
19595 than the start of the machine-dependent note types, we don't
19596 understand it. */
19597
19598 if (e_type < NT_NETBSDCORE_FIRSTMACH)
19599 {
19600 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
19601 return buff;
19602 }
19603 break;
9437c45b
JT
19604 }
19605
dda8d76d 19606 switch (filedata->file_header.e_machine)
9437c45b
JT
19607 {
19608 /* On the Alpha, SPARC (32-bit and 64-bit), PT_GETREGS == mach+0
19609 and PT_GETFPREGS == mach+2. */
19610
19611 case EM_OLD_ALPHA:
19612 case EM_ALPHA:
19613 case EM_SPARC:
19614 case EM_SPARC32PLUS:
19615 case EM_SPARCV9:
19616 switch (e_type)
19617 {
2b692964 19618 case NT_NETBSDCORE_FIRSTMACH + 0:
b4db1224 19619 return _("PT_GETREGS (reg structure)");
2b692964 19620 case NT_NETBSDCORE_FIRSTMACH + 2:
b4db1224 19621 return _("PT_GETFPREGS (fpreg structure)");
9437c45b
JT
19622 default:
19623 break;
19624 }
19625 break;
19626
c0d38b0e
CZ
19627 /* On SuperH, PT_GETREGS == mach+3 and PT_GETFPREGS == mach+5.
19628 There's also old PT___GETREGS40 == mach + 1 for old reg
19629 structure which lacks GBR. */
19630 case EM_SH:
19631 switch (e_type)
19632 {
19633 case NT_NETBSDCORE_FIRSTMACH + 1:
19634 return _("PT___GETREGS40 (old reg structure)");
19635 case NT_NETBSDCORE_FIRSTMACH + 3:
19636 return _("PT_GETREGS (reg structure)");
19637 case NT_NETBSDCORE_FIRSTMACH + 5:
19638 return _("PT_GETFPREGS (fpreg structure)");
19639 default:
19640 break;
19641 }
19642 break;
19643
9437c45b
JT
19644 /* On all other arch's, PT_GETREGS == mach+1 and
19645 PT_GETFPREGS == mach+3. */
19646 default:
19647 switch (e_type)
19648 {
2b692964 19649 case NT_NETBSDCORE_FIRSTMACH + 1:
b4db1224 19650 return _("PT_GETREGS (reg structure)");
2b692964 19651 case NT_NETBSDCORE_FIRSTMACH + 3:
b4db1224 19652 return _("PT_GETFPREGS (fpreg structure)");
9437c45b
JT
19653 default:
19654 break;
19655 }
19656 }
19657
9cf03b7e 19658 snprintf (buff, sizeof (buff), "PT_FIRSTMACH+%d",
e9e44622 19659 e_type - NT_NETBSDCORE_FIRSTMACH);
9437c45b
JT
19660 return buff;
19661}
19662
70616151
TT
19663static const char *
19664get_stapsdt_note_type (unsigned e_type)
19665{
19666 static char buff[64];
19667
19668 switch (e_type)
19669 {
19670 case NT_STAPSDT:
19671 return _("NT_STAPSDT (SystemTap probe descriptors)");
19672
19673 default:
19674 break;
19675 }
19676
19677 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
19678 return buff;
19679}
19680
015dc7e1 19681static bool
c6a9fc58
TT
19682print_stapsdt_note (Elf_Internal_Note *pnote)
19683{
3ca60c57
NC
19684 size_t len, maxlen;
19685 unsigned long addr_size = is_32bit_elf ? 4 : 8;
c6a9fc58
TT
19686 char *data = pnote->descdata;
19687 char *data_end = pnote->descdata + pnote->descsz;
19688 bfd_vma pc, base_addr, semaphore;
19689 char *provider, *probe, *arg_fmt;
19690
3ca60c57
NC
19691 if (pnote->descsz < (addr_size * 3))
19692 goto stapdt_note_too_small;
19693
c6a9fc58
TT
19694 pc = byte_get ((unsigned char *) data, addr_size);
19695 data += addr_size;
3ca60c57 19696
c6a9fc58
TT
19697 base_addr = byte_get ((unsigned char *) data, addr_size);
19698 data += addr_size;
3ca60c57 19699
c6a9fc58
TT
19700 semaphore = byte_get ((unsigned char *) data, addr_size);
19701 data += addr_size;
19702
3ca60c57
NC
19703 if (data >= data_end)
19704 goto stapdt_note_too_small;
19705 maxlen = data_end - data;
19706 len = strnlen (data, maxlen);
19707 if (len < maxlen)
19708 {
19709 provider = data;
19710 data += len + 1;
19711 }
19712 else
19713 goto stapdt_note_too_small;
19714
19715 if (data >= data_end)
19716 goto stapdt_note_too_small;
19717 maxlen = data_end - data;
19718 len = strnlen (data, maxlen);
19719 if (len < maxlen)
19720 {
19721 probe = data;
19722 data += len + 1;
19723 }
19724 else
19725 goto stapdt_note_too_small;
9abca702 19726
3ca60c57
NC
19727 if (data >= data_end)
19728 goto stapdt_note_too_small;
19729 maxlen = data_end - data;
19730 len = strnlen (data, maxlen);
19731 if (len < maxlen)
19732 {
19733 arg_fmt = data;
19734 data += len + 1;
19735 }
19736 else
19737 goto stapdt_note_too_small;
c6a9fc58
TT
19738
19739 printf (_(" Provider: %s\n"), provider);
19740 printf (_(" Name: %s\n"), probe);
19741 printf (_(" Location: "));
19742 print_vma (pc, FULL_HEX);
19743 printf (_(", Base: "));
19744 print_vma (base_addr, FULL_HEX);
19745 printf (_(", Semaphore: "));
19746 print_vma (semaphore, FULL_HEX);
9cf03b7e 19747 printf ("\n");
c6a9fc58
TT
19748 printf (_(" Arguments: %s\n"), arg_fmt);
19749
19750 return data == data_end;
3ca60c57
NC
19751
19752 stapdt_note_too_small:
19753 printf (_(" <corrupt - note is too small>\n"));
19754 error (_("corrupt stapdt note - the data size is too small\n"));
015dc7e1 19755 return false;
c6a9fc58
TT
19756}
19757
00e98fc7
TG
19758static const char *
19759get_ia64_vms_note_type (unsigned e_type)
19760{
19761 static char buff[64];
19762
19763 switch (e_type)
19764 {
19765 case NT_VMS_MHD:
19766 return _("NT_VMS_MHD (module header)");
19767 case NT_VMS_LNM:
19768 return _("NT_VMS_LNM (language name)");
19769 case NT_VMS_SRC:
19770 return _("NT_VMS_SRC (source files)");
19771 case NT_VMS_TITLE:
9cf03b7e 19772 return "NT_VMS_TITLE";
00e98fc7
TG
19773 case NT_VMS_EIDC:
19774 return _("NT_VMS_EIDC (consistency check)");
19775 case NT_VMS_FPMODE:
19776 return _("NT_VMS_FPMODE (FP mode)");
19777 case NT_VMS_LINKTIME:
9cf03b7e 19778 return "NT_VMS_LINKTIME";
00e98fc7
TG
19779 case NT_VMS_IMGNAM:
19780 return _("NT_VMS_IMGNAM (image name)");
19781 case NT_VMS_IMGID:
19782 return _("NT_VMS_IMGID (image id)");
19783 case NT_VMS_LINKID:
19784 return _("NT_VMS_LINKID (link id)");
19785 case NT_VMS_IMGBID:
19786 return _("NT_VMS_IMGBID (build id)");
19787 case NT_VMS_GSTNAM:
19788 return _("NT_VMS_GSTNAM (sym table name)");
19789 case NT_VMS_ORIG_DYN:
9cf03b7e 19790 return "NT_VMS_ORIG_DYN";
00e98fc7 19791 case NT_VMS_PATCHTIME:
9cf03b7e 19792 return "NT_VMS_PATCHTIME";
00e98fc7
TG
19793 default:
19794 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
19795 return buff;
19796 }
19797}
19798
015dc7e1 19799static bool
00e98fc7
TG
19800print_ia64_vms_note (Elf_Internal_Note * pnote)
19801{
8d18bf79
NC
19802 int maxlen = pnote->descsz;
19803
19804 if (maxlen < 2 || (unsigned long) maxlen != pnote->descsz)
19805 goto desc_size_fail;
19806
00e98fc7
TG
19807 switch (pnote->type)
19808 {
19809 case NT_VMS_MHD:
8d18bf79
NC
19810 if (maxlen <= 36)
19811 goto desc_size_fail;
19812
19813 int l = (int) strnlen (pnote->descdata + 34, maxlen - 34);
19814
19815 printf (_(" Creation date : %.17s\n"), pnote->descdata);
19816 printf (_(" Last patch date: %.17s\n"), pnote->descdata + 17);
19817 if (l + 34 < maxlen)
19818 {
19819 printf (_(" Module name : %s\n"), pnote->descdata + 34);
19820 if (l + 35 < maxlen)
19821 printf (_(" Module version : %s\n"), pnote->descdata + 34 + l + 1);
19822 else
19823 printf (_(" Module version : <missing>\n"));
19824 }
00e98fc7 19825 else
8d18bf79
NC
19826 {
19827 printf (_(" Module name : <missing>\n"));
19828 printf (_(" Module version : <missing>\n"));
19829 }
00e98fc7 19830 break;
8d18bf79 19831
00e98fc7 19832 case NT_VMS_LNM:
8d18bf79 19833 printf (_(" Language: %.*s\n"), maxlen, pnote->descdata);
00e98fc7 19834 break;
8d18bf79 19835
00e98fc7
TG
19836#ifdef BFD64
19837 case NT_VMS_FPMODE:
9cf03b7e 19838 printf (_(" Floating Point mode: "));
8d18bf79
NC
19839 if (maxlen < 8)
19840 goto desc_size_fail;
19841 /* FIXME: Generate an error if descsz > 8 ? */
19842
4a5cb34f 19843 printf ("0x%016" BFD_VMA_FMT "x\n",
8d18bf79 19844 (bfd_vma) byte_get ((unsigned char *)pnote->descdata, 8));
00e98fc7 19845 break;
8d18bf79 19846
00e98fc7
TG
19847 case NT_VMS_LINKTIME:
19848 printf (_(" Link time: "));
8d18bf79
NC
19849 if (maxlen < 8)
19850 goto desc_size_fail;
19851 /* FIXME: Generate an error if descsz > 8 ? */
19852
00e98fc7 19853 print_vms_time
8d18bf79 19854 ((bfd_int64_t) byte_get ((unsigned char *)pnote->descdata, 8));
00e98fc7
TG
19855 printf ("\n");
19856 break;
8d18bf79 19857
00e98fc7
TG
19858 case NT_VMS_PATCHTIME:
19859 printf (_(" Patch time: "));
8d18bf79
NC
19860 if (maxlen < 8)
19861 goto desc_size_fail;
19862 /* FIXME: Generate an error if descsz > 8 ? */
19863
00e98fc7 19864 print_vms_time
8d18bf79 19865 ((bfd_int64_t) byte_get ((unsigned char *)pnote->descdata, 8));
00e98fc7
TG
19866 printf ("\n");
19867 break;
8d18bf79 19868
00e98fc7 19869 case NT_VMS_ORIG_DYN:
8d18bf79
NC
19870 if (maxlen < 34)
19871 goto desc_size_fail;
19872
00e98fc7
TG
19873 printf (_(" Major id: %u, minor id: %u\n"),
19874 (unsigned) byte_get ((unsigned char *)pnote->descdata, 4),
19875 (unsigned) byte_get ((unsigned char *)pnote->descdata + 4, 4));
9cf03b7e 19876 printf (_(" Last modified : "));
00e98fc7
TG
19877 print_vms_time
19878 ((bfd_int64_t) byte_get ((unsigned char *)pnote->descdata + 8, 8));
9cf03b7e 19879 printf (_("\n Link flags : "));
4a5cb34f 19880 printf ("0x%016" BFD_VMA_FMT "x\n",
948f632f 19881 (bfd_vma) byte_get ((unsigned char *)pnote->descdata + 16, 8));
00e98fc7 19882 printf (_(" Header flags: 0x%08x\n"),
948f632f 19883 (unsigned) byte_get ((unsigned char *)pnote->descdata + 24, 4));
8d18bf79 19884 printf (_(" Image id : %.*s\n"), maxlen - 32, pnote->descdata + 32);
00e98fc7
TG
19885 break;
19886#endif
8d18bf79 19887
00e98fc7 19888 case NT_VMS_IMGNAM:
8d18bf79 19889 printf (_(" Image name: %.*s\n"), maxlen, pnote->descdata);
00e98fc7 19890 break;
8d18bf79 19891
00e98fc7 19892 case NT_VMS_GSTNAM:
8d18bf79 19893 printf (_(" Global symbol table name: %.*s\n"), maxlen, pnote->descdata);
00e98fc7 19894 break;
8d18bf79 19895
00e98fc7 19896 case NT_VMS_IMGID:
8d18bf79 19897 printf (_(" Image id: %.*s\n"), maxlen, pnote->descdata);
00e98fc7 19898 break;
8d18bf79 19899
00e98fc7 19900 case NT_VMS_LINKID:
8d18bf79 19901 printf (_(" Linker id: %.*s\n"), maxlen, pnote->descdata);
00e98fc7 19902 break;
8d18bf79 19903
00e98fc7 19904 default:
015dc7e1 19905 return false;
00e98fc7 19906 }
8d18bf79 19907
015dc7e1 19908 return true;
8d18bf79
NC
19909
19910 desc_size_fail:
19911 printf (_(" <corrupt - data size is too small>\n"));
19912 error (_("corrupt IA64 note: data size is too small\n"));
015dc7e1 19913 return false;
00e98fc7
TG
19914}
19915
fd486f32
AM
19916struct build_attr_cache {
19917 Filedata *filedata;
19918 char *strtab;
19919 unsigned long strtablen;
19920 Elf_Internal_Sym *symtab;
19921 unsigned long nsyms;
19922} ba_cache;
19923
6f156d7a
NC
19924/* Find the symbol associated with a build attribute that is attached
19925 to address OFFSET. If PNAME is non-NULL then store the name of
19926 the symbol (if found) in the provided pointer, Returns NULL if a
19927 symbol could not be found. */
c799a79d 19928
6f156d7a 19929static Elf_Internal_Sym *
015dc7e1
AM
19930get_symbol_for_build_attribute (Filedata *filedata,
19931 unsigned long offset,
19932 bool is_open_attr,
19933 const char **pname)
9ef920e9 19934{
fd486f32
AM
19935 Elf_Internal_Sym *saved_sym = NULL;
19936 Elf_Internal_Sym *sym;
9ef920e9 19937
dda8d76d 19938 if (filedata->section_headers != NULL
fd486f32 19939 && (ba_cache.filedata == NULL || filedata != ba_cache.filedata))
9ef920e9 19940 {
c799a79d 19941 Elf_Internal_Shdr * symsec;
9ef920e9 19942
fd486f32
AM
19943 free (ba_cache.strtab);
19944 ba_cache.strtab = NULL;
19945 free (ba_cache.symtab);
19946 ba_cache.symtab = NULL;
19947
c799a79d 19948 /* Load the symbol and string sections. */
dda8d76d
NC
19949 for (symsec = filedata->section_headers;
19950 symsec < filedata->section_headers + filedata->file_header.e_shnum;
c799a79d 19951 symsec ++)
9ef920e9 19952 {
28d13567
AM
19953 if (symsec->sh_type == SHT_SYMTAB
19954 && get_symtab (filedata, symsec,
19955 &ba_cache.symtab, &ba_cache.nsyms,
19956 &ba_cache.strtab, &ba_cache.strtablen))
19957 break;
9ef920e9 19958 }
fd486f32 19959 ba_cache.filedata = filedata;
9ef920e9
NC
19960 }
19961
fd486f32 19962 if (ba_cache.symtab == NULL)
6f156d7a 19963 return NULL;
9ef920e9 19964
c799a79d 19965 /* Find a symbol whose value matches offset. */
fd486f32 19966 for (sym = ba_cache.symtab; sym < ba_cache.symtab + ba_cache.nsyms; sym ++)
c799a79d
NC
19967 if (sym->st_value == offset)
19968 {
fd486f32 19969 if (sym->st_name >= ba_cache.strtablen)
c799a79d
NC
19970 /* Huh ? This should not happen. */
19971 continue;
9ef920e9 19972
fd486f32 19973 if (ba_cache.strtab[sym->st_name] == 0)
c799a79d 19974 continue;
9ef920e9 19975
8fd75781
NC
19976 /* The AArch64 and ARM architectures define mapping symbols
19977 (eg $d, $x, $t) which we want to ignore. */
fd486f32
AM
19978 if (ba_cache.strtab[sym->st_name] == '$'
19979 && ba_cache.strtab[sym->st_name + 1] != 0
19980 && ba_cache.strtab[sym->st_name + 2] == 0)
8fd75781
NC
19981 continue;
19982
c799a79d
NC
19983 if (is_open_attr)
19984 {
19985 /* For OPEN attributes we prefer GLOBAL over LOCAL symbols
19986 and FILE or OBJECT symbols over NOTYPE symbols. We skip
19987 FUNC symbols entirely. */
19988 switch (ELF_ST_TYPE (sym->st_info))
19989 {
c799a79d 19990 case STT_OBJECT:
6f156d7a 19991 case STT_FILE:
c799a79d 19992 saved_sym = sym;
6f156d7a
NC
19993 if (sym->st_size)
19994 {
19995 /* If the symbol has a size associated
19996 with it then we can stop searching. */
fd486f32 19997 sym = ba_cache.symtab + ba_cache.nsyms;
6f156d7a 19998 }
c799a79d 19999 continue;
9ef920e9 20000
c799a79d
NC
20001 case STT_FUNC:
20002 /* Ignore function symbols. */
20003 continue;
20004
20005 default:
20006 break;
20007 }
20008
20009 switch (ELF_ST_BIND (sym->st_info))
9ef920e9 20010 {
c799a79d
NC
20011 case STB_GLOBAL:
20012 if (saved_sym == NULL
20013 || ELF_ST_TYPE (saved_sym->st_info) != STT_OBJECT)
20014 saved_sym = sym;
20015 break;
c871dade 20016
c799a79d
NC
20017 case STB_LOCAL:
20018 if (saved_sym == NULL)
20019 saved_sym = sym;
20020 break;
20021
20022 default:
9ef920e9
NC
20023 break;
20024 }
20025 }
c799a79d
NC
20026 else
20027 {
20028 if (ELF_ST_TYPE (sym->st_info) != STT_FUNC)
20029 continue;
20030
20031 saved_sym = sym;
20032 break;
20033 }
20034 }
20035
6f156d7a 20036 if (saved_sym && pname)
fd486f32 20037 * pname = ba_cache.strtab + saved_sym->st_name;
6f156d7a
NC
20038
20039 return saved_sym;
c799a79d
NC
20040}
20041
d20e98ab
NC
20042/* Returns true iff addr1 and addr2 are in the same section. */
20043
015dc7e1 20044static bool
d20e98ab
NC
20045same_section (Filedata * filedata, unsigned long addr1, unsigned long addr2)
20046{
20047 Elf_Internal_Shdr * a1;
20048 Elf_Internal_Shdr * a2;
20049
20050 a1 = find_section_by_address (filedata, addr1);
20051 a2 = find_section_by_address (filedata, addr2);
9abca702 20052
d20e98ab
NC
20053 return a1 == a2 && a1 != NULL;
20054}
20055
015dc7e1 20056static bool
dda8d76d
NC
20057print_gnu_build_attribute_description (Elf_Internal_Note * pnote,
20058 Filedata * filedata)
c799a79d 20059{
015dc7e1
AM
20060 static unsigned long global_offset = 0;
20061 static unsigned long global_end = 0;
20062 static unsigned long func_offset = 0;
20063 static unsigned long func_end = 0;
c871dade 20064
015dc7e1
AM
20065 Elf_Internal_Sym *sym;
20066 const char *name;
20067 unsigned long start;
20068 unsigned long end;
20069 bool is_open_attr = pnote->type == NT_GNU_BUILD_ATTRIBUTE_OPEN;
6f156d7a
NC
20070
20071 switch (pnote->descsz)
c799a79d 20072 {
6f156d7a
NC
20073 case 0:
20074 /* A zero-length description means that the range of
20075 the previous note of the same type should be used. */
c799a79d 20076 if (is_open_attr)
c871dade 20077 {
6f156d7a
NC
20078 if (global_end > global_offset)
20079 printf (_(" Applies to region from %#lx to %#lx\n"),
20080 global_offset, global_end);
20081 else
20082 printf (_(" Applies to region from %#lx\n"), global_offset);
c799a79d
NC
20083 }
20084 else
20085 {
6f156d7a
NC
20086 if (func_end > func_offset)
20087 printf (_(" Applies to region from %#lx to %#lx\n"), func_offset, func_end);
20088 else
20089 printf (_(" Applies to region from %#lx\n"), func_offset);
c871dade 20090 }
015dc7e1 20091 return true;
9ef920e9 20092
6f156d7a
NC
20093 case 4:
20094 start = byte_get ((unsigned char *) pnote->descdata, 4);
20095 end = 0;
20096 break;
20097
20098 case 8:
c74147bb
NC
20099 start = byte_get ((unsigned char *) pnote->descdata, 4);
20100 end = byte_get ((unsigned char *) pnote->descdata + 4, 4);
6f156d7a
NC
20101 break;
20102
20103 case 16:
20104 start = byte_get ((unsigned char *) pnote->descdata, 8);
20105 end = byte_get ((unsigned char *) pnote->descdata + 8, 8);
20106 break;
9abca702 20107
6f156d7a 20108 default:
c799a79d
NC
20109 error (_(" <invalid description size: %lx>\n"), pnote->descsz);
20110 printf (_(" <invalid descsz>"));
015dc7e1 20111 return false;
c799a79d
NC
20112 }
20113
6f156d7a
NC
20114 name = NULL;
20115 sym = get_symbol_for_build_attribute (filedata, start, is_open_attr, & name);
8fd75781
NC
20116 /* As of version 5 of the annobin plugin, filename symbols are biased by 2
20117 in order to avoid them being confused with the start address of the
20118 first function in the file... */
20119 if (sym == NULL && is_open_attr)
20120 sym = get_symbol_for_build_attribute (filedata, start + 2, is_open_attr,
20121 & name);
6f156d7a
NC
20122
20123 if (end == 0 && sym != NULL && sym->st_size > 0)
20124 end = start + sym->st_size;
c799a79d
NC
20125
20126 if (is_open_attr)
20127 {
d20e98ab
NC
20128 /* FIXME: Need to properly allow for section alignment.
20129 16 is just the alignment used on x86_64. */
20130 if (global_end > 0
20131 && start > BFD_ALIGN (global_end, 16)
20132 /* Build notes are not guaranteed to be organised in order of
20133 increasing address, but we should find the all of the notes
20134 for one section in the same place. */
20135 && same_section (filedata, start, global_end))
6f156d7a
NC
20136 warn (_("Gap in build notes detected from %#lx to %#lx\n"),
20137 global_end + 1, start - 1);
20138
20139 printf (_(" Applies to region from %#lx"), start);
20140 global_offset = start;
20141
20142 if (end)
20143 {
20144 printf (_(" to %#lx"), end);
20145 global_end = end;
20146 }
c799a79d
NC
20147 }
20148 else
20149 {
6f156d7a
NC
20150 printf (_(" Applies to region from %#lx"), start);
20151 func_offset = start;
20152
20153 if (end)
20154 {
20155 printf (_(" to %#lx"), end);
20156 func_end = end;
20157 }
c799a79d
NC
20158 }
20159
6f156d7a
NC
20160 if (sym && name)
20161 printf (_(" (%s)"), name);
20162
20163 printf ("\n");
015dc7e1 20164 return true;
9ef920e9
NC
20165}
20166
015dc7e1 20167static bool
9ef920e9
NC
20168print_gnu_build_attribute_name (Elf_Internal_Note * pnote)
20169{
1d15e434
NC
20170 static const char string_expected [2] = { GNU_BUILD_ATTRIBUTE_TYPE_STRING, 0 };
20171 static const char number_expected [2] = { GNU_BUILD_ATTRIBUTE_TYPE_NUMERIC, 0 };
20172 static const char bool_expected [3] = { GNU_BUILD_ATTRIBUTE_TYPE_BOOL_TRUE, GNU_BUILD_ATTRIBUTE_TYPE_BOOL_FALSE, 0 };
9ef920e9
NC
20173 char name_type;
20174 char name_attribute;
1d15e434 20175 const char * expected_types;
9ef920e9
NC
20176 const char * name = pnote->namedata;
20177 const char * text;
88305e1b 20178 signed int left;
9ef920e9
NC
20179
20180 if (name == NULL || pnote->namesz < 2)
20181 {
20182 error (_("corrupt name field in GNU build attribute note: size = %ld\n"), pnote->namesz);
7296a62a 20183 print_symbol (-20, _(" <corrupt name>"));
015dc7e1 20184 return false;
9ef920e9
NC
20185 }
20186
6f156d7a
NC
20187 if (do_wide)
20188 left = 28;
20189 else
20190 left = 20;
88305e1b
NC
20191
20192 /* Version 2 of the spec adds a "GA" prefix to the name field. */
20193 if (name[0] == 'G' && name[1] == 'A')
20194 {
6f156d7a
NC
20195 if (pnote->namesz < 4)
20196 {
20197 error (_("corrupt name field in GNU build attribute note: size = %ld\n"), pnote->namesz);
20198 print_symbol (-20, _(" <corrupt name>"));
015dc7e1 20199 return false;
6f156d7a
NC
20200 }
20201
88305e1b
NC
20202 printf ("GA");
20203 name += 2;
20204 left -= 2;
20205 }
20206
9ef920e9
NC
20207 switch ((name_type = * name))
20208 {
20209 case GNU_BUILD_ATTRIBUTE_TYPE_NUMERIC:
20210 case GNU_BUILD_ATTRIBUTE_TYPE_STRING:
20211 case GNU_BUILD_ATTRIBUTE_TYPE_BOOL_TRUE:
20212 case GNU_BUILD_ATTRIBUTE_TYPE_BOOL_FALSE:
20213 printf ("%c", * name);
88305e1b 20214 left --;
9ef920e9
NC
20215 break;
20216 default:
20217 error (_("unrecognised attribute type in name field: %d\n"), name_type);
20218 print_symbol (-20, _("<unknown name type>"));
015dc7e1 20219 return false;
9ef920e9
NC
20220 }
20221
9ef920e9
NC
20222 ++ name;
20223 text = NULL;
20224
20225 switch ((name_attribute = * name))
20226 {
20227 case GNU_BUILD_ATTRIBUTE_VERSION:
20228 text = _("<version>");
1d15e434 20229 expected_types = string_expected;
9ef920e9
NC
20230 ++ name;
20231 break;
20232 case GNU_BUILD_ATTRIBUTE_STACK_PROT:
20233 text = _("<stack prot>");
75d7d298 20234 expected_types = "!+*";
9ef920e9
NC
20235 ++ name;
20236 break;
20237 case GNU_BUILD_ATTRIBUTE_RELRO:
20238 text = _("<relro>");
1d15e434 20239 expected_types = bool_expected;
9ef920e9
NC
20240 ++ name;
20241 break;
20242 case GNU_BUILD_ATTRIBUTE_STACK_SIZE:
20243 text = _("<stack size>");
1d15e434 20244 expected_types = number_expected;
9ef920e9
NC
20245 ++ name;
20246 break;
20247 case GNU_BUILD_ATTRIBUTE_TOOL:
20248 text = _("<tool>");
1d15e434 20249 expected_types = string_expected;
9ef920e9
NC
20250 ++ name;
20251 break;
20252 case GNU_BUILD_ATTRIBUTE_ABI:
20253 text = _("<ABI>");
20254 expected_types = "$*";
20255 ++ name;
20256 break;
20257 case GNU_BUILD_ATTRIBUTE_PIC:
20258 text = _("<PIC>");
1d15e434 20259 expected_types = number_expected;
9ef920e9
NC
20260 ++ name;
20261 break;
a8be5506
NC
20262 case GNU_BUILD_ATTRIBUTE_SHORT_ENUM:
20263 text = _("<short enum>");
1d15e434 20264 expected_types = bool_expected;
a8be5506
NC
20265 ++ name;
20266 break;
9ef920e9
NC
20267 default:
20268 if (ISPRINT (* name))
20269 {
20270 int len = strnlen (name, pnote->namesz - (name - pnote->namedata)) + 1;
20271
20272 if (len > left && ! do_wide)
20273 len = left;
75d7d298 20274 printf ("%.*s:", len, name);
9ef920e9 20275 left -= len;
0dd6ae21 20276 name += len;
9ef920e9
NC
20277 }
20278 else
20279 {
3e6b6445 20280 static char tmpbuf [128];
88305e1b 20281
3e6b6445
NC
20282 error (_("unrecognised byte in name field: %d\n"), * name);
20283 sprintf (tmpbuf, _("<unknown:_%d>"), * name);
20284 text = tmpbuf;
20285 name ++;
9ef920e9
NC
20286 }
20287 expected_types = "*$!+";
20288 break;
20289 }
20290
20291 if (text)
88305e1b 20292 left -= printf ("%s", text);
9ef920e9
NC
20293
20294 if (strchr (expected_types, name_type) == NULL)
75d7d298 20295 warn (_("attribute does not have an expected type (%c)\n"), name_type);
9ef920e9
NC
20296
20297 if ((unsigned long)(name - pnote->namedata) > pnote->namesz)
20298 {
20299 error (_("corrupt name field: namesz: %lu but parsing gets to %ld\n"),
20300 (unsigned long) pnote->namesz,
20301 (long) (name - pnote->namedata));
015dc7e1 20302 return false;
9ef920e9
NC
20303 }
20304
20305 if (left < 1 && ! do_wide)
015dc7e1 20306 return true;
9ef920e9
NC
20307
20308 switch (name_type)
20309 {
20310 case GNU_BUILD_ATTRIBUTE_TYPE_NUMERIC:
20311 {
b06b2c92 20312 unsigned int bytes;
ddef72cd
NC
20313 unsigned long long val = 0;
20314 unsigned int shift = 0;
20315 char * decoded = NULL;
20316
b06b2c92
NC
20317 bytes = pnote->namesz - (name - pnote->namedata);
20318 if (bytes > 0)
20319 /* The -1 is because the name field is always 0 terminated, and we
20320 want to be able to ensure that the shift in the while loop below
20321 will not overflow. */
20322 -- bytes;
20323
ddef72cd
NC
20324 if (bytes > sizeof (val))
20325 {
3e6b6445
NC
20326 error (_("corrupt numeric name field: too many bytes in the value: %x\n"),
20327 bytes);
20328 bytes = sizeof (val);
ddef72cd 20329 }
3e6b6445
NC
20330 /* We do not bother to warn if bytes == 0 as this can
20331 happen with some early versions of the gcc plugin. */
9ef920e9
NC
20332
20333 while (bytes --)
20334 {
54b8331d 20335 unsigned long long byte = *name++ & 0xff;
79a964dc
NC
20336
20337 val |= byte << shift;
9ef920e9
NC
20338 shift += 8;
20339 }
20340
75d7d298 20341 switch (name_attribute)
9ef920e9 20342 {
75d7d298 20343 case GNU_BUILD_ATTRIBUTE_PIC:
9ef920e9
NC
20344 switch (val)
20345 {
75d7d298
NC
20346 case 0: decoded = "static"; break;
20347 case 1: decoded = "pic"; break;
20348 case 2: decoded = "PIC"; break;
20349 case 3: decoded = "pie"; break;
20350 case 4: decoded = "PIE"; break;
20351 default: break;
9ef920e9 20352 }
75d7d298
NC
20353 break;
20354 case GNU_BUILD_ATTRIBUTE_STACK_PROT:
20355 switch (val)
9ef920e9 20356 {
75d7d298
NC
20357 /* Based upon the SPCT_FLAG_xxx enum values in gcc/cfgexpand.c. */
20358 case 0: decoded = "off"; break;
20359 case 1: decoded = "on"; break;
20360 case 2: decoded = "all"; break;
20361 case 3: decoded = "strong"; break;
20362 case 4: decoded = "explicit"; break;
20363 default: break;
9ef920e9 20364 }
75d7d298
NC
20365 break;
20366 default:
20367 break;
9ef920e9
NC
20368 }
20369
75d7d298 20370 if (decoded != NULL)
3e6b6445
NC
20371 {
20372 print_symbol (-left, decoded);
20373 left = 0;
20374 }
20375 else if (val == 0)
20376 {
20377 printf ("0x0");
20378 left -= 3;
20379 }
9ef920e9 20380 else
75d7d298
NC
20381 {
20382 if (do_wide)
ddef72cd 20383 left -= printf ("0x%llx", val);
75d7d298 20384 else
ddef72cd 20385 left -= printf ("0x%-.*llx", left, val);
75d7d298 20386 }
9ef920e9
NC
20387 }
20388 break;
20389 case GNU_BUILD_ATTRIBUTE_TYPE_STRING:
20390 left -= print_symbol (- left, name);
20391 break;
20392 case GNU_BUILD_ATTRIBUTE_TYPE_BOOL_TRUE:
20393 left -= print_symbol (- left, "true");
20394 break;
20395 case GNU_BUILD_ATTRIBUTE_TYPE_BOOL_FALSE:
20396 left -= print_symbol (- left, "false");
20397 break;
20398 }
20399
20400 if (do_wide && left > 0)
20401 printf ("%-*s", left, " ");
9abca702 20402
015dc7e1 20403 return true;
9ef920e9
NC
20404}
20405
6d118b09
NC
20406/* Note that by the ELF standard, the name field is already null byte
20407 terminated, and namesz includes the terminating null byte.
20408 I.E. the value of namesz for the name "FSF" is 4.
20409
e3c8793a 20410 If the value of namesz is zero, there is no name present. */
9ef920e9 20411
015dc7e1 20412static bool
9ef920e9 20413process_note (Elf_Internal_Note * pnote,
dda8d76d 20414 Filedata * filedata)
779fe533 20415{
2cf0635d
NC
20416 const char * name = pnote->namesz ? pnote->namedata : "(NONE)";
20417 const char * nt;
9437c45b
JT
20418
20419 if (pnote->namesz == 0)
1ec5cd37
NC
20420 /* If there is no note name, then use the default set of
20421 note type strings. */
dda8d76d 20422 nt = get_note_type (filedata, pnote->type);
1ec5cd37 20423
24d127aa 20424 else if (startswith (pnote->namedata, "GNU"))
1118d252
RM
20425 /* GNU-specific object file notes. */
20426 nt = get_gnu_elf_note_type (pnote->type);
f4ddf30f 20427
24d127aa 20428 else if (startswith (pnote->namedata, "FreeBSD"))
f4ddf30f 20429 /* FreeBSD-specific core file notes. */
dda8d76d 20430 nt = get_freebsd_elfcore_note_type (filedata, pnote->type);
1118d252 20431
24d127aa 20432 else if (startswith (pnote->namedata, "NetBSD-CORE"))
1ec5cd37 20433 /* NetBSD-specific core file notes. */
dda8d76d 20434 nt = get_netbsd_elfcore_note_type (filedata, pnote->type);
1ec5cd37 20435
24d127aa 20436 else if (startswith (pnote->namedata, "NetBSD"))
c6056a74
SF
20437 /* NetBSD-specific core file notes. */
20438 return process_netbsd_elf_note (pnote);
20439
24d127aa 20440 else if (startswith (pnote->namedata, "PaX"))
9abca702
CZ
20441 /* NetBSD-specific core file notes. */
20442 return process_netbsd_elf_note (pnote);
20443
e9b095a5 20444 else if (startswith (pnote->namedata, "SPU/"))
b15fa79e
AM
20445 {
20446 /* SPU-specific core file notes. */
20447 nt = pnote->namedata + 4;
20448 name = "SPU";
20449 }
20450
24d127aa 20451 else if (startswith (pnote->namedata, "IPF/VMS"))
00e98fc7
TG
20452 /* VMS/ia64-specific file notes. */
20453 nt = get_ia64_vms_note_type (pnote->type);
20454
24d127aa 20455 else if (startswith (pnote->namedata, "stapsdt"))
70616151
TT
20456 nt = get_stapsdt_note_type (pnote->type);
20457
9437c45b 20458 else
1ec5cd37
NC
20459 /* Don't recognize this note name; just use the default set of
20460 note type strings. */
dda8d76d 20461 nt = get_note_type (filedata, pnote->type);
9437c45b 20462
1449284b 20463 printf (" ");
9ef920e9 20464
24d127aa 20465 if (((startswith (pnote->namedata, "GA")
483767a3
AM
20466 && strchr ("*$!+", pnote->namedata[2]) != NULL)
20467 || strchr ("*$!+", pnote->namedata[0]) != NULL)
20468 && (pnote->type == NT_GNU_BUILD_ATTRIBUTE_OPEN
20469 || pnote->type == NT_GNU_BUILD_ATTRIBUTE_FUNC))
9ef920e9
NC
20470 print_gnu_build_attribute_name (pnote);
20471 else
20472 print_symbol (-20, name);
20473
20474 if (do_wide)
20475 printf (" 0x%08lx\t%s\t", pnote->descsz, nt);
20476 else
20477 printf (" 0x%08lx\t%s\n", pnote->descsz, nt);
00e98fc7 20478
24d127aa 20479 if (startswith (pnote->namedata, "IPF/VMS"))
00e98fc7 20480 return print_ia64_vms_note (pnote);
24d127aa 20481 else if (startswith (pnote->namedata, "GNU"))
dda8d76d 20482 return print_gnu_note (filedata, pnote);
24d127aa 20483 else if (startswith (pnote->namedata, "stapsdt"))
c6a9fc58 20484 return print_stapsdt_note (pnote);
24d127aa 20485 else if (startswith (pnote->namedata, "CORE"))
9ece1fa9 20486 return print_core_note (pnote);
24d127aa 20487 else if (((startswith (pnote->namedata, "GA")
483767a3
AM
20488 && strchr ("*$!+", pnote->namedata[2]) != NULL)
20489 || strchr ("*$!+", pnote->namedata[0]) != NULL)
20490 && (pnote->type == NT_GNU_BUILD_ATTRIBUTE_OPEN
20491 || pnote->type == NT_GNU_BUILD_ATTRIBUTE_FUNC))
dda8d76d 20492 return print_gnu_build_attribute_description (pnote, filedata);
779fe533 20493
9ef920e9 20494 if (pnote->descsz)
1449284b
NC
20495 {
20496 unsigned long i;
20497
20498 printf (_(" description data: "));
20499 for (i = 0; i < pnote->descsz; i++)
178d8719 20500 printf ("%02x ", pnote->descdata[i] & 0xff);
04ac15ab
AS
20501 if (!do_wide)
20502 printf ("\n");
1449284b
NC
20503 }
20504
9ef920e9
NC
20505 if (do_wide)
20506 printf ("\n");
20507
015dc7e1 20508 return true;
1449284b 20509}
6d118b09 20510
015dc7e1 20511static bool
dda8d76d
NC
20512process_notes_at (Filedata * filedata,
20513 Elf_Internal_Shdr * section,
20514 bfd_vma offset,
82ed9683
L
20515 bfd_vma length,
20516 bfd_vma align)
779fe533 20517{
015dc7e1
AM
20518 Elf_External_Note *pnotes;
20519 Elf_External_Note *external;
20520 char *end;
20521 bool res = true;
103f02d3 20522
779fe533 20523 if (length <= 0)
015dc7e1 20524 return false;
103f02d3 20525
1449284b
NC
20526 if (section)
20527 {
dda8d76d 20528 pnotes = (Elf_External_Note *) get_section_contents (section, filedata);
1449284b 20529 if (pnotes)
32ec8896 20530 {
dda8d76d 20531 if (! apply_relocations (filedata, section, (unsigned char *) pnotes, length, NULL, NULL))
f761cb13
AM
20532 {
20533 free (pnotes);
015dc7e1 20534 return false;
f761cb13 20535 }
32ec8896 20536 }
1449284b
NC
20537 }
20538 else
82ed9683 20539 pnotes = (Elf_External_Note *) get_data (NULL, filedata, offset, 1, length,
1449284b 20540 _("notes"));
4dff97b2 20541
dd24e3da 20542 if (pnotes == NULL)
015dc7e1 20543 return false;
779fe533 20544
103f02d3 20545 external = pnotes;
103f02d3 20546
ca0e11aa
NC
20547 if (filedata->is_separate)
20548 printf (_("In linked file '%s': "), filedata->file_name);
20549 else
20550 printf ("\n");
1449284b 20551 if (section)
ca0e11aa 20552 printf (_("Displaying notes found in: %s\n"), printable_section_name (filedata, section));
1449284b 20553 else
ca0e11aa 20554 printf (_("Displaying notes found at file offset 0x%08lx with length 0x%08lx:\n"),
1449284b
NC
20555 (unsigned long) offset, (unsigned long) length);
20556
82ed9683
L
20557 /* NB: Some note sections may have alignment value of 0 or 1. gABI
20558 specifies that notes should be aligned to 4 bytes in 32-bit
20559 objects and to 8 bytes in 64-bit objects. As a Linux extension,
20560 we also support 4 byte alignment in 64-bit objects. If section
20561 alignment is less than 4, we treate alignment as 4 bytes. */
20562 if (align < 4)
20563 align = 4;
20564 else if (align != 4 && align != 8)
20565 {
20566 warn (_("Corrupt note: alignment %ld, expecting 4 or 8\n"),
20567 (long) align);
a788aedd 20568 free (pnotes);
015dc7e1 20569 return false;
82ed9683
L
20570 }
20571
dbe15e4e 20572 printf (_(" %-20s %-10s\tDescription\n"), _("Owner"), _("Data size"));
103f02d3 20573
c8071705
NC
20574 end = (char *) pnotes + length;
20575 while ((char *) external < end)
779fe533 20576 {
b34976b6 20577 Elf_Internal_Note inote;
15b42fb0 20578 size_t min_notesz;
4dff97b2 20579 char * next;
2cf0635d 20580 char * temp = NULL;
c8071705 20581 size_t data_remaining = end - (char *) external;
6d118b09 20582
dda8d76d 20583 if (!is_ia64_vms (filedata))
15b42fb0 20584 {
9dd3a467
NC
20585 /* PR binutils/15191
20586 Make sure that there is enough data to read. */
15b42fb0
AM
20587 min_notesz = offsetof (Elf_External_Note, name);
20588 if (data_remaining < min_notesz)
9dd3a467 20589 {
d3a49aa8
AM
20590 warn (ngettext ("Corrupt note: only %ld byte remains, "
20591 "not enough for a full note\n",
20592 "Corrupt note: only %ld bytes remain, "
20593 "not enough for a full note\n",
20594 data_remaining),
20595 (long) data_remaining);
9dd3a467
NC
20596 break;
20597 }
5396a86e
AM
20598 data_remaining -= min_notesz;
20599
15b42fb0
AM
20600 inote.type = BYTE_GET (external->type);
20601 inote.namesz = BYTE_GET (external->namesz);
20602 inote.namedata = external->name;
20603 inote.descsz = BYTE_GET (external->descsz);
276da9b3 20604 inote.descdata = ((char *) external
4dff97b2 20605 + ELF_NOTE_DESC_OFFSET (inote.namesz, align));
15b42fb0 20606 inote.descpos = offset + (inote.descdata - (char *) pnotes);
276da9b3 20607 next = ((char *) external
4dff97b2 20608 + ELF_NOTE_NEXT_OFFSET (inote.namesz, inote.descsz, align));
15b42fb0 20609 }
00e98fc7 20610 else
15b42fb0
AM
20611 {
20612 Elf64_External_VMS_Note *vms_external;
00e98fc7 20613
9dd3a467
NC
20614 /* PR binutils/15191
20615 Make sure that there is enough data to read. */
15b42fb0
AM
20616 min_notesz = offsetof (Elf64_External_VMS_Note, name);
20617 if (data_remaining < min_notesz)
9dd3a467 20618 {
d3a49aa8
AM
20619 warn (ngettext ("Corrupt note: only %ld byte remains, "
20620 "not enough for a full note\n",
20621 "Corrupt note: only %ld bytes remain, "
20622 "not enough for a full note\n",
20623 data_remaining),
20624 (long) data_remaining);
9dd3a467
NC
20625 break;
20626 }
5396a86e 20627 data_remaining -= min_notesz;
3e55a963 20628
15b42fb0
AM
20629 vms_external = (Elf64_External_VMS_Note *) external;
20630 inote.type = BYTE_GET (vms_external->type);
20631 inote.namesz = BYTE_GET (vms_external->namesz);
20632 inote.namedata = vms_external->name;
20633 inote.descsz = BYTE_GET (vms_external->descsz);
20634 inote.descdata = inote.namedata + align_power (inote.namesz, 3);
20635 inote.descpos = offset + (inote.descdata - (char *) pnotes);
20636 next = inote.descdata + align_power (inote.descsz, 3);
20637 }
20638
5396a86e
AM
20639 /* PR 17531: file: 3443835e. */
20640 /* PR 17531: file: id:000000,sig:11,src:006986,op:havoc,rep:4. */
20641 if ((size_t) (inote.descdata - inote.namedata) < inote.namesz
20642 || (size_t) (inote.descdata - inote.namedata) > data_remaining
20643 || (size_t) (next - inote.descdata) < inote.descsz
20644 || ((size_t) (next - inote.descdata)
20645 > data_remaining - (size_t) (inote.descdata - inote.namedata)))
3e55a963 20646 {
15b42fb0 20647 warn (_("note with invalid namesz and/or descsz found at offset 0x%lx\n"),
0af1713e 20648 (unsigned long) ((char *) external - (char *) pnotes));
4dff97b2
NC
20649 warn (_(" type: 0x%lx, namesize: 0x%08lx, descsize: 0x%08lx, alignment: %u\n"),
20650 inote.type, inote.namesz, inote.descsz, (int) align);
3e55a963
NC
20651 break;
20652 }
20653
15b42fb0 20654 external = (Elf_External_Note *) next;
dd24e3da 20655
6d118b09
NC
20656 /* Verify that name is null terminated. It appears that at least
20657 one version of Linux (RedHat 6.0) generates corefiles that don't
20658 comply with the ELF spec by failing to include the null byte in
20659 namesz. */
18344509 20660 if (inote.namesz > 0 && inote.namedata[inote.namesz - 1] != '\0')
6d118b09 20661 {
5396a86e 20662 if ((size_t) (inote.descdata - inote.namedata) == inote.namesz)
6d118b09 20663 {
5396a86e
AM
20664 temp = (char *) malloc (inote.namesz + 1);
20665 if (temp == NULL)
20666 {
20667 error (_("Out of memory allocating space for inote name\n"));
015dc7e1 20668 res = false;
5396a86e
AM
20669 break;
20670 }
76da6bbe 20671
5396a86e
AM
20672 memcpy (temp, inote.namedata, inote.namesz);
20673 inote.namedata = temp;
20674 }
20675 inote.namedata[inote.namesz] = 0;
6d118b09
NC
20676 }
20677
dda8d76d 20678 if (! process_note (& inote, filedata))
015dc7e1 20679 res = false;
103f02d3 20680
9db70fc3
AM
20681 free (temp);
20682 temp = NULL;
779fe533
NC
20683 }
20684
20685 free (pnotes);
103f02d3 20686
779fe533
NC
20687 return res;
20688}
20689
015dc7e1 20690static bool
dda8d76d 20691process_corefile_note_segments (Filedata * filedata)
779fe533 20692{
015dc7e1 20693 Elf_Internal_Phdr *segment;
b34976b6 20694 unsigned int i;
015dc7e1 20695 bool res = true;
103f02d3 20696
dda8d76d 20697 if (! get_program_headers (filedata))
015dc7e1 20698 return true;
103f02d3 20699
dda8d76d
NC
20700 for (i = 0, segment = filedata->program_headers;
20701 i < filedata->file_header.e_phnum;
b34976b6 20702 i++, segment++)
779fe533
NC
20703 {
20704 if (segment->p_type == PT_NOTE)
dda8d76d 20705 if (! process_notes_at (filedata, NULL,
32ec8896 20706 (bfd_vma) segment->p_offset,
82ed9683
L
20707 (bfd_vma) segment->p_filesz,
20708 (bfd_vma) segment->p_align))
015dc7e1 20709 res = false;
779fe533 20710 }
103f02d3 20711
779fe533
NC
20712 return res;
20713}
20714
015dc7e1 20715static bool
dda8d76d 20716process_v850_notes (Filedata * filedata, bfd_vma offset, bfd_vma length)
685080f2
NC
20717{
20718 Elf_External_Note * pnotes;
20719 Elf_External_Note * external;
c8071705 20720 char * end;
015dc7e1 20721 bool res = true;
685080f2
NC
20722
20723 if (length <= 0)
015dc7e1 20724 return false;
685080f2 20725
dda8d76d 20726 pnotes = (Elf_External_Note *) get_data (NULL, filedata, offset, 1, length,
685080f2
NC
20727 _("v850 notes"));
20728 if (pnotes == NULL)
015dc7e1 20729 return false;
685080f2
NC
20730
20731 external = pnotes;
c8071705 20732 end = (char*) pnotes + length;
685080f2
NC
20733
20734 printf (_("\nDisplaying contents of Renesas V850 notes section at offset 0x%lx with length 0x%lx:\n"),
20735 (unsigned long) offset, (unsigned long) length);
20736
c8071705 20737 while ((char *) external + sizeof (Elf_External_Note) < end)
685080f2
NC
20738 {
20739 Elf_External_Note * next;
20740 Elf_Internal_Note inote;
20741
20742 inote.type = BYTE_GET (external->type);
20743 inote.namesz = BYTE_GET (external->namesz);
20744 inote.namedata = external->name;
20745 inote.descsz = BYTE_GET (external->descsz);
20746 inote.descdata = inote.namedata + align_power (inote.namesz, 2);
20747 inote.descpos = offset + (inote.descdata - (char *) pnotes);
20748
c8071705
NC
20749 if (inote.descdata < (char *) pnotes || inote.descdata >= end)
20750 {
20751 warn (_("Corrupt note: name size is too big: %lx\n"), inote.namesz);
20752 inote.descdata = inote.namedata;
20753 inote.namesz = 0;
20754 }
20755
685080f2
NC
20756 next = (Elf_External_Note *) (inote.descdata + align_power (inote.descsz, 2));
20757
c8071705 20758 if ( ((char *) next > end)
685080f2
NC
20759 || ((char *) next < (char *) pnotes))
20760 {
20761 warn (_("corrupt descsz found in note at offset 0x%lx\n"),
20762 (unsigned long) ((char *) external - (char *) pnotes));
20763 warn (_(" type: 0x%lx, namesize: 0x%lx, descsize: 0x%lx\n"),
20764 inote.type, inote.namesz, inote.descsz);
20765 break;
20766 }
20767
20768 external = next;
20769
20770 /* Prevent out-of-bounds indexing. */
c8071705 20771 if ( inote.namedata + inote.namesz > end
685080f2
NC
20772 || inote.namedata + inote.namesz < inote.namedata)
20773 {
20774 warn (_("corrupt namesz found in note at offset 0x%lx\n"),
20775 (unsigned long) ((char *) external - (char *) pnotes));
20776 warn (_(" type: 0x%lx, namesize: 0x%lx, descsize: 0x%lx\n"),
20777 inote.type, inote.namesz, inote.descsz);
20778 break;
20779 }
20780
20781 printf (" %s: ", get_v850_elf_note_type (inote.type));
20782
20783 if (! print_v850_note (& inote))
20784 {
015dc7e1 20785 res = false;
685080f2
NC
20786 printf ("<corrupt sizes: namesz: %lx, descsz: %lx>\n",
20787 inote.namesz, inote.descsz);
20788 }
20789 }
20790
20791 free (pnotes);
20792
20793 return res;
20794}
20795
015dc7e1 20796static bool
dda8d76d 20797process_note_sections (Filedata * filedata)
1ec5cd37 20798{
015dc7e1 20799 Elf_Internal_Shdr *section;
1ec5cd37 20800 unsigned long i;
32ec8896 20801 unsigned int n = 0;
015dc7e1 20802 bool res = true;
1ec5cd37 20803
dda8d76d
NC
20804 for (i = 0, section = filedata->section_headers;
20805 i < filedata->file_header.e_shnum && section != NULL;
1ec5cd37 20806 i++, section++)
685080f2
NC
20807 {
20808 if (section->sh_type == SHT_NOTE)
20809 {
dda8d76d 20810 if (! process_notes_at (filedata, section,
32ec8896 20811 (bfd_vma) section->sh_offset,
82ed9683
L
20812 (bfd_vma) section->sh_size,
20813 (bfd_vma) section->sh_addralign))
015dc7e1 20814 res = false;
685080f2
NC
20815 n++;
20816 }
20817
dda8d76d
NC
20818 if (( filedata->file_header.e_machine == EM_V800
20819 || filedata->file_header.e_machine == EM_V850
20820 || filedata->file_header.e_machine == EM_CYGNUS_V850)
685080f2
NC
20821 && section->sh_type == SHT_RENESAS_INFO)
20822 {
dda8d76d 20823 if (! process_v850_notes (filedata,
32ec8896
NC
20824 (bfd_vma) section->sh_offset,
20825 (bfd_vma) section->sh_size))
015dc7e1 20826 res = false;
685080f2
NC
20827 n++;
20828 }
20829 }
df565f32
NC
20830
20831 if (n == 0)
20832 /* Try processing NOTE segments instead. */
dda8d76d 20833 return process_corefile_note_segments (filedata);
1ec5cd37
NC
20834
20835 return res;
20836}
20837
015dc7e1 20838static bool
dda8d76d 20839process_notes (Filedata * filedata)
779fe533
NC
20840{
20841 /* If we have not been asked to display the notes then do nothing. */
20842 if (! do_notes)
015dc7e1 20843 return true;
103f02d3 20844
dda8d76d
NC
20845 if (filedata->file_header.e_type != ET_CORE)
20846 return process_note_sections (filedata);
103f02d3 20847
779fe533 20848 /* No program headers means no NOTE segment. */
dda8d76d
NC
20849 if (filedata->file_header.e_phnum > 0)
20850 return process_corefile_note_segments (filedata);
779fe533 20851
ca0e11aa
NC
20852 if (filedata->is_separate)
20853 printf (_("No notes found in linked file '%s'.\n"),
20854 filedata->file_name);
20855 else
20856 printf (_("No notes found file.\n"));
20857
015dc7e1 20858 return true;
779fe533
NC
20859}
20860
60abdbed
NC
20861static unsigned char *
20862display_public_gnu_attributes (unsigned char * start,
20863 const unsigned char * const end)
20864{
20865 printf (_(" Unknown GNU attribute: %s\n"), start);
20866
20867 start += strnlen ((char *) start, end - start);
20868 display_raw_attribute (start, end);
20869
20870 return (unsigned char *) end;
20871}
20872
20873static unsigned char *
20874display_generic_attribute (unsigned char * start,
20875 unsigned int tag,
20876 const unsigned char * const end)
20877{
20878 if (tag == 0)
20879 return (unsigned char *) end;
20880
20881 return display_tag_value (tag, start, end);
20882}
20883
015dc7e1 20884static bool
dda8d76d 20885process_arch_specific (Filedata * filedata)
252b5132 20886{
a952a375 20887 if (! do_arch)
015dc7e1 20888 return true;
a952a375 20889
dda8d76d 20890 switch (filedata->file_header.e_machine)
252b5132 20891 {
53a346d8
CZ
20892 case EM_ARC:
20893 case EM_ARC_COMPACT:
20894 case EM_ARC_COMPACT2:
dda8d76d 20895 return process_attributes (filedata, "ARC", SHT_ARC_ATTRIBUTES,
53a346d8
CZ
20896 display_arc_attribute,
20897 display_generic_attribute);
11c1ff18 20898 case EM_ARM:
dda8d76d 20899 return process_attributes (filedata, "aeabi", SHT_ARM_ATTRIBUTES,
60abdbed
NC
20900 display_arm_attribute,
20901 display_generic_attribute);
20902
252b5132 20903 case EM_MIPS:
4fe85591 20904 case EM_MIPS_RS3_LE:
dda8d76d 20905 return process_mips_specific (filedata);
60abdbed
NC
20906
20907 case EM_MSP430:
dda8d76d 20908 return process_attributes (filedata, "mspabi", SHT_MSP430_ATTRIBUTES,
b0191216 20909 display_msp430_attribute,
c0ea7c52 20910 display_msp430_gnu_attribute);
60abdbed 20911
2dc8dd17
JW
20912 case EM_RISCV:
20913 return process_attributes (filedata, "riscv", SHT_RISCV_ATTRIBUTES,
20914 display_riscv_attribute,
20915 display_generic_attribute);
20916
35c08157 20917 case EM_NDS32:
dda8d76d 20918 return process_nds32_specific (filedata);
60abdbed 20919
85f7484a
PB
20920 case EM_68K:
20921 return process_attributes (filedata, NULL, SHT_GNU_ATTRIBUTES, NULL,
20922 display_m68k_gnu_attribute);
20923
34c8bcba 20924 case EM_PPC:
b82317dd 20925 case EM_PPC64:
dda8d76d 20926 return process_attributes (filedata, NULL, SHT_GNU_ATTRIBUTES, NULL,
60abdbed
NC
20927 display_power_gnu_attribute);
20928
643f7afb
AK
20929 case EM_S390:
20930 case EM_S390_OLD:
dda8d76d 20931 return process_attributes (filedata, NULL, SHT_GNU_ATTRIBUTES, NULL,
60abdbed
NC
20932 display_s390_gnu_attribute);
20933
9e8c70f9
DM
20934 case EM_SPARC:
20935 case EM_SPARC32PLUS:
20936 case EM_SPARCV9:
dda8d76d 20937 return process_attributes (filedata, NULL, SHT_GNU_ATTRIBUTES, NULL,
60abdbed
NC
20938 display_sparc_gnu_attribute);
20939
59e6276b 20940 case EM_TI_C6000:
dda8d76d 20941 return process_attributes (filedata, "c6xabi", SHT_C6000_ATTRIBUTES,
60abdbed
NC
20942 display_tic6x_attribute,
20943 display_generic_attribute);
20944
0861f561
CQ
20945 case EM_CSKY:
20946 return process_attributes (filedata, "csky", SHT_CSKY_ATTRIBUTES,
20947 display_csky_attribute, NULL);
20948
252b5132 20949 default:
dda8d76d 20950 return process_attributes (filedata, "gnu", SHT_GNU_ATTRIBUTES,
60abdbed
NC
20951 display_public_gnu_attributes,
20952 display_generic_attribute);
252b5132 20953 }
252b5132
RH
20954}
20955
015dc7e1 20956static bool
dda8d76d 20957get_file_header (Filedata * filedata)
252b5132 20958{
9ea033b2 20959 /* Read in the identity array. */
dda8d76d 20960 if (fread (filedata->file_header.e_ident, EI_NIDENT, 1, filedata->handle) != 1)
015dc7e1 20961 return false;
252b5132 20962
9ea033b2 20963 /* Determine how to read the rest of the header. */
dda8d76d 20964 switch (filedata->file_header.e_ident[EI_DATA])
9ea033b2 20965 {
1a0670f3
AM
20966 default:
20967 case ELFDATANONE:
adab8cdc
AO
20968 case ELFDATA2LSB:
20969 byte_get = byte_get_little_endian;
20970 byte_put = byte_put_little_endian;
20971 break;
20972 case ELFDATA2MSB:
20973 byte_get = byte_get_big_endian;
20974 byte_put = byte_put_big_endian;
20975 break;
9ea033b2
NC
20976 }
20977
20978 /* For now we only support 32 bit and 64 bit ELF files. */
dda8d76d 20979 is_32bit_elf = (filedata->file_header.e_ident[EI_CLASS] != ELFCLASS64);
9ea033b2
NC
20980
20981 /* Read in the rest of the header. */
20982 if (is_32bit_elf)
20983 {
20984 Elf32_External_Ehdr ehdr32;
252b5132 20985
dda8d76d 20986 if (fread (ehdr32.e_type, sizeof (ehdr32) - EI_NIDENT, 1, filedata->handle) != 1)
015dc7e1 20987 return false;
103f02d3 20988
dda8d76d
NC
20989 filedata->file_header.e_type = BYTE_GET (ehdr32.e_type);
20990 filedata->file_header.e_machine = BYTE_GET (ehdr32.e_machine);
20991 filedata->file_header.e_version = BYTE_GET (ehdr32.e_version);
20992 filedata->file_header.e_entry = BYTE_GET (ehdr32.e_entry);
20993 filedata->file_header.e_phoff = BYTE_GET (ehdr32.e_phoff);
20994 filedata->file_header.e_shoff = BYTE_GET (ehdr32.e_shoff);
20995 filedata->file_header.e_flags = BYTE_GET (ehdr32.e_flags);
20996 filedata->file_header.e_ehsize = BYTE_GET (ehdr32.e_ehsize);
20997 filedata->file_header.e_phentsize = BYTE_GET (ehdr32.e_phentsize);
20998 filedata->file_header.e_phnum = BYTE_GET (ehdr32.e_phnum);
20999 filedata->file_header.e_shentsize = BYTE_GET (ehdr32.e_shentsize);
21000 filedata->file_header.e_shnum = BYTE_GET (ehdr32.e_shnum);
21001 filedata->file_header.e_shstrndx = BYTE_GET (ehdr32.e_shstrndx);
9ea033b2 21002 }
252b5132 21003 else
9ea033b2
NC
21004 {
21005 Elf64_External_Ehdr ehdr64;
a952a375
NC
21006
21007 /* If we have been compiled with sizeof (bfd_vma) == 4, then
21008 we will not be able to cope with the 64bit data found in
21009 64 ELF files. Detect this now and abort before we start
50c2245b 21010 overwriting things. */
a952a375
NC
21011 if (sizeof (bfd_vma) < 8)
21012 {
e3c8793a
NC
21013 error (_("This instance of readelf has been built without support for a\n\
2101464 bit data type and so it cannot read 64 bit ELF files.\n"));
015dc7e1 21015 return false;
a952a375 21016 }
103f02d3 21017
dda8d76d 21018 if (fread (ehdr64.e_type, sizeof (ehdr64) - EI_NIDENT, 1, filedata->handle) != 1)
015dc7e1 21019 return false;
103f02d3 21020
dda8d76d
NC
21021 filedata->file_header.e_type = BYTE_GET (ehdr64.e_type);
21022 filedata->file_header.e_machine = BYTE_GET (ehdr64.e_machine);
21023 filedata->file_header.e_version = BYTE_GET (ehdr64.e_version);
21024 filedata->file_header.e_entry = BYTE_GET (ehdr64.e_entry);
21025 filedata->file_header.e_phoff = BYTE_GET (ehdr64.e_phoff);
21026 filedata->file_header.e_shoff = BYTE_GET (ehdr64.e_shoff);
21027 filedata->file_header.e_flags = BYTE_GET (ehdr64.e_flags);
21028 filedata->file_header.e_ehsize = BYTE_GET (ehdr64.e_ehsize);
21029 filedata->file_header.e_phentsize = BYTE_GET (ehdr64.e_phentsize);
21030 filedata->file_header.e_phnum = BYTE_GET (ehdr64.e_phnum);
21031 filedata->file_header.e_shentsize = BYTE_GET (ehdr64.e_shentsize);
21032 filedata->file_header.e_shnum = BYTE_GET (ehdr64.e_shnum);
21033 filedata->file_header.e_shstrndx = BYTE_GET (ehdr64.e_shstrndx);
9ea033b2 21034 }
252b5132 21035
dda8d76d 21036 if (filedata->file_header.e_shoff)
7ece0d85
JJ
21037 {
21038 /* There may be some extensions in the first section header. Don't
21039 bomb if we can't read it. */
21040 if (is_32bit_elf)
015dc7e1 21041 get_32bit_section_headers (filedata, true);
7ece0d85 21042 else
015dc7e1 21043 get_64bit_section_headers (filedata, true);
7ece0d85 21044 }
560f3c1c 21045
015dc7e1 21046 return true;
252b5132
RH
21047}
21048
13acb58d
AM
21049static void
21050free_filedata (Filedata *filedata)
21051{
21052 free (filedata->program_interpreter);
21053 filedata->program_interpreter = NULL;
21054
21055 free (filedata->program_headers);
21056 filedata->program_headers = NULL;
21057
21058 free (filedata->section_headers);
21059 filedata->section_headers = NULL;
21060
21061 free (filedata->string_table);
21062 filedata->string_table = NULL;
21063 filedata->string_table_length = 0;
21064
21065 free (filedata->dump.dump_sects);
21066 filedata->dump.dump_sects = NULL;
21067 filedata->dump.num_dump_sects = 0;
21068
21069 free (filedata->dynamic_strings);
21070 filedata->dynamic_strings = NULL;
21071 filedata->dynamic_strings_length = 0;
21072
21073 free (filedata->dynamic_symbols);
21074 filedata->dynamic_symbols = NULL;
21075 filedata->num_dynamic_syms = 0;
21076
21077 free (filedata->dynamic_syminfo);
21078 filedata->dynamic_syminfo = NULL;
21079
21080 free (filedata->dynamic_section);
21081 filedata->dynamic_section = NULL;
21082
21083 while (filedata->symtab_shndx_list != NULL)
21084 {
21085 elf_section_list *next = filedata->symtab_shndx_list->next;
21086 free (filedata->symtab_shndx_list);
21087 filedata->symtab_shndx_list = next;
21088 }
21089
21090 free (filedata->section_headers_groups);
21091 filedata->section_headers_groups = NULL;
21092
21093 if (filedata->section_groups)
21094 {
21095 size_t i;
21096 struct group_list * g;
21097 struct group_list * next;
21098
21099 for (i = 0; i < filedata->group_count; i++)
21100 {
21101 for (g = filedata->section_groups [i].root; g != NULL; g = next)
21102 {
21103 next = g->next;
21104 free (g);
21105 }
21106 }
21107
21108 free (filedata->section_groups);
21109 filedata->section_groups = NULL;
21110 }
21111}
21112
dda8d76d
NC
21113static void
21114close_file (Filedata * filedata)
21115{
21116 if (filedata)
21117 {
21118 if (filedata->handle)
21119 fclose (filedata->handle);
21120 free (filedata);
21121 }
21122}
21123
21124void
21125close_debug_file (void * data)
21126{
13acb58d 21127 free_filedata ((Filedata *) data);
dda8d76d
NC
21128 close_file ((Filedata *) data);
21129}
21130
21131static Filedata *
015dc7e1 21132open_file (const char * pathname, bool is_separate)
dda8d76d
NC
21133{
21134 struct stat statbuf;
21135 Filedata * filedata = NULL;
21136
21137 if (stat (pathname, & statbuf) < 0
21138 || ! S_ISREG (statbuf.st_mode))
21139 goto fail;
21140
21141 filedata = calloc (1, sizeof * filedata);
21142 if (filedata == NULL)
21143 goto fail;
21144
21145 filedata->handle = fopen (pathname, "rb");
21146 if (filedata->handle == NULL)
21147 goto fail;
21148
21149 filedata->file_size = (bfd_size_type) statbuf.st_size;
21150 filedata->file_name = pathname;
ca0e11aa 21151 filedata->is_separate = is_separate;
dda8d76d
NC
21152
21153 if (! get_file_header (filedata))
21154 goto fail;
21155
21156 if (filedata->file_header.e_shoff)
21157 {
015dc7e1 21158 bool res;
dda8d76d
NC
21159
21160 /* Read the section headers again, this time for real. */
21161 if (is_32bit_elf)
015dc7e1 21162 res = get_32bit_section_headers (filedata, false);
dda8d76d 21163 else
015dc7e1 21164 res = get_64bit_section_headers (filedata, false);
dda8d76d
NC
21165
21166 if (!res)
21167 goto fail;
21168 }
21169
21170 return filedata;
21171
21172 fail:
21173 if (filedata)
21174 {
21175 if (filedata->handle)
21176 fclose (filedata->handle);
21177 free (filedata);
21178 }
21179 return NULL;
21180}
21181
21182void *
21183open_debug_file (const char * pathname)
21184{
015dc7e1 21185 return open_file (pathname, true);
dda8d76d
NC
21186}
21187
835f2fae
NC
21188static void
21189initialise_dump_sects (Filedata * filedata)
21190{
21191 /* Initialise the dump_sects array from the cmdline_dump_sects array.
21192 Note we do this even if cmdline_dump_sects is empty because we
21193 must make sure that the dump_sets array is zeroed out before each
21194 object file is processed. */
21195 if (filedata->dump.num_dump_sects > cmdline.num_dump_sects)
21196 memset (filedata->dump.dump_sects, 0,
21197 filedata->dump.num_dump_sects * sizeof (*filedata->dump.dump_sects));
21198
21199 if (cmdline.num_dump_sects > 0)
21200 {
21201 if (filedata->dump.num_dump_sects == 0)
21202 /* A sneaky way of allocating the dump_sects array. */
21203 request_dump_bynumber (&filedata->dump, cmdline.num_dump_sects, 0);
21204
21205 assert (filedata->dump.num_dump_sects >= cmdline.num_dump_sects);
21206 memcpy (filedata->dump.dump_sects, cmdline.dump_sects,
21207 cmdline.num_dump_sects * sizeof (*filedata->dump.dump_sects));
21208 }
21209}
21210
fb52b2f4
NC
21211/* Process one ELF object file according to the command line options.
21212 This file may actually be stored in an archive. The file is
32ec8896
NC
21213 positioned at the start of the ELF object. Returns TRUE if no
21214 problems were encountered, FALSE otherwise. */
fb52b2f4 21215
015dc7e1 21216static bool
dda8d76d 21217process_object (Filedata * filedata)
252b5132 21218{
015dc7e1 21219 bool have_separate_files;
252b5132 21220 unsigned int i;
015dc7e1 21221 bool res;
252b5132 21222
dda8d76d 21223 if (! get_file_header (filedata))
252b5132 21224 {
dda8d76d 21225 error (_("%s: Failed to read file header\n"), filedata->file_name);
015dc7e1 21226 return false;
252b5132
RH
21227 }
21228
21229 /* Initialise per file variables. */
978c4450
AM
21230 for (i = ARRAY_SIZE (filedata->version_info); i--;)
21231 filedata->version_info[i] = 0;
252b5132 21232
978c4450
AM
21233 for (i = ARRAY_SIZE (filedata->dynamic_info); i--;)
21234 filedata->dynamic_info[i] = 0;
21235 filedata->dynamic_info_DT_GNU_HASH = 0;
21236 filedata->dynamic_info_DT_MIPS_XHASH = 0;
252b5132
RH
21237
21238 /* Process the file. */
21239 if (show_name)
dda8d76d 21240 printf (_("\nFile: %s\n"), filedata->file_name);
252b5132 21241
835f2fae 21242 initialise_dump_sects (filedata);
d70c5fc7 21243
dda8d76d 21244 if (! process_file_header (filedata))
015dc7e1 21245 return false;
252b5132 21246
dda8d76d 21247 if (! process_section_headers (filedata))
2f62977e 21248 {
32ec8896 21249 /* Without loaded section headers we cannot process lots of things. */
015dc7e1 21250 do_unwind = do_version = do_dump = do_arch = false;
252b5132 21251
2f62977e 21252 if (! do_using_dynamic)
015dc7e1 21253 do_syms = do_dyn_syms = do_reloc = false;
2f62977e 21254 }
252b5132 21255
dda8d76d 21256 if (! process_section_groups (filedata))
32ec8896 21257 /* Without loaded section groups we cannot process unwind. */
015dc7e1 21258 do_unwind = false;
d1f5c6e3 21259
2482f306
AM
21260 res = process_program_headers (filedata);
21261 if (res)
21262 res = process_dynamic_section (filedata);
252b5132 21263
dda8d76d 21264 if (! process_relocs (filedata))
015dc7e1 21265 res = false;
252b5132 21266
dda8d76d 21267 if (! process_unwind (filedata))
015dc7e1 21268 res = false;
4d6ed7c8 21269
dda8d76d 21270 if (! process_symbol_table (filedata))
015dc7e1 21271 res = false;
252b5132 21272
0f03783c 21273 if (! process_lto_symbol_tables (filedata))
015dc7e1 21274 res = false;
b9e920ec 21275
dda8d76d 21276 if (! process_syminfo (filedata))
015dc7e1 21277 res = false;
252b5132 21278
dda8d76d 21279 if (! process_version_sections (filedata))
015dc7e1 21280 res = false;
252b5132 21281
82ed9683 21282 if (filedata->file_header.e_shstrndx != SHN_UNDEF)
24841daa 21283 have_separate_files = load_separate_debug_files (filedata, filedata->file_name);
82ed9683 21284 else
015dc7e1 21285 have_separate_files = false;
dda8d76d
NC
21286
21287 if (! process_section_contents (filedata))
015dc7e1 21288 res = false;
f5842774 21289
24841daa 21290 if (have_separate_files)
dda8d76d 21291 {
24841daa
NC
21292 separate_info * d;
21293
21294 for (d = first_separate_info; d != NULL; d = d->next)
21295 {
835f2fae
NC
21296 initialise_dump_sects (d->handle);
21297
ca0e11aa 21298 if (process_links && ! process_file_header (d->handle))
015dc7e1 21299 res = false;
ca0e11aa 21300 else if (! process_section_headers (d->handle))
015dc7e1 21301 res = false;
d6bfbc39 21302 else if (! process_section_contents (d->handle))
015dc7e1 21303 res = false;
ca0e11aa
NC
21304 else if (process_links)
21305 {
ca0e11aa 21306 if (! process_section_groups (d->handle))
015dc7e1 21307 res = false;
ca0e11aa 21308 if (! process_program_headers (d->handle))
015dc7e1 21309 res = false;
ca0e11aa 21310 if (! process_dynamic_section (d->handle))
015dc7e1 21311 res = false;
ca0e11aa 21312 if (! process_relocs (d->handle))
015dc7e1 21313 res = false;
ca0e11aa 21314 if (! process_unwind (d->handle))
015dc7e1 21315 res = false;
ca0e11aa 21316 if (! process_symbol_table (d->handle))
015dc7e1 21317 res = false;
ca0e11aa 21318 if (! process_lto_symbol_tables (d->handle))
015dc7e1 21319 res = false;
ca0e11aa 21320 if (! process_syminfo (d->handle))
015dc7e1 21321 res = false;
ca0e11aa 21322 if (! process_version_sections (d->handle))
015dc7e1 21323 res = false;
ca0e11aa 21324 if (! process_notes (d->handle))
015dc7e1 21325 res = false;
ca0e11aa 21326 }
24841daa
NC
21327 }
21328
21329 /* The file handles are closed by the call to free_debug_memory() below. */
dda8d76d
NC
21330 }
21331
21332 if (! process_notes (filedata))
015dc7e1 21333 res = false;
103f02d3 21334
dda8d76d 21335 if (! process_gnu_liblist (filedata))
015dc7e1 21336 res = false;
047b2264 21337
dda8d76d 21338 if (! process_arch_specific (filedata))
015dc7e1 21339 res = false;
252b5132 21340
13acb58d 21341 free_filedata (filedata);
e4b17d5c 21342
19e6b90e 21343 free_debug_memory ();
18bd398b 21344
32ec8896 21345 return res;
252b5132
RH
21346}
21347
2cf0635d 21348/* Process an ELF archive.
32ec8896
NC
21349 On entry the file is positioned just after the ARMAG string.
21350 Returns TRUE upon success, FALSE otherwise. */
2cf0635d 21351
015dc7e1
AM
21352static bool
21353process_archive (Filedata * filedata, bool is_thin_archive)
2cf0635d
NC
21354{
21355 struct archive_info arch;
21356 struct archive_info nested_arch;
21357 size_t got;
015dc7e1 21358 bool ret = true;
2cf0635d 21359
015dc7e1 21360 show_name = true;
2cf0635d
NC
21361
21362 /* The ARCH structure is used to hold information about this archive. */
21363 arch.file_name = NULL;
21364 arch.file = NULL;
21365 arch.index_array = NULL;
21366 arch.sym_table = NULL;
21367 arch.longnames = NULL;
21368
21369 /* The NESTED_ARCH structure is used as a single-item cache of information
21370 about a nested archive (when members of a thin archive reside within
21371 another regular archive file). */
21372 nested_arch.file_name = NULL;
21373 nested_arch.file = NULL;
21374 nested_arch.index_array = NULL;
21375 nested_arch.sym_table = NULL;
21376 nested_arch.longnames = NULL;
21377
dda8d76d 21378 if (setup_archive (&arch, filedata->file_name, filedata->handle,
780f96ae
AM
21379 filedata->file_size, is_thin_archive,
21380 do_archive_index) != 0)
2cf0635d 21381 {
015dc7e1 21382 ret = false;
2cf0635d 21383 goto out;
4145f1d5 21384 }
fb52b2f4 21385
4145f1d5
NC
21386 if (do_archive_index)
21387 {
2cf0635d 21388 if (arch.sym_table == NULL)
1cb7d8b1
AM
21389 error (_("%s: unable to dump the index as none was found\n"),
21390 filedata->file_name);
4145f1d5
NC
21391 else
21392 {
591f7597 21393 unsigned long i, l;
4145f1d5
NC
21394 unsigned long current_pos;
21395
1cb7d8b1
AM
21396 printf (_("Index of archive %s: (%lu entries, 0x%lx bytes "
21397 "in the symbol table)\n"),
21398 filedata->file_name, (unsigned long) arch.index_num,
21399 arch.sym_size);
dda8d76d
NC
21400
21401 current_pos = ftell (filedata->handle);
4145f1d5 21402
2cf0635d 21403 for (i = l = 0; i < arch.index_num; i++)
4145f1d5 21404 {
1cb7d8b1
AM
21405 if (i == 0
21406 || (i > 0 && arch.index_array[i] != arch.index_array[i - 1]))
21407 {
21408 char * member_name
21409 = get_archive_member_name_at (&arch, arch.index_array[i],
21410 &nested_arch);
2cf0635d 21411
1cb7d8b1
AM
21412 if (member_name != NULL)
21413 {
21414 char * qualified_name
21415 = make_qualified_name (&arch, &nested_arch,
21416 member_name);
2cf0635d 21417
1cb7d8b1
AM
21418 if (qualified_name != NULL)
21419 {
21420 printf (_("Contents of binary %s at offset "),
21421 qualified_name);
c2a7d3f5
NC
21422 (void) print_vma (arch.index_array[i], PREFIX_HEX);
21423 putchar ('\n');
1cb7d8b1
AM
21424 free (qualified_name);
21425 }
fd486f32 21426 free (member_name);
4145f1d5
NC
21427 }
21428 }
2cf0635d
NC
21429
21430 if (l >= arch.sym_size)
4145f1d5 21431 {
1cb7d8b1
AM
21432 error (_("%s: end of the symbol table reached "
21433 "before the end of the index\n"),
dda8d76d 21434 filedata->file_name);
015dc7e1 21435 ret = false;
cb8f3167 21436 break;
4145f1d5 21437 }
591f7597 21438 /* PR 17531: file: 0b6630b2. */
1cb7d8b1
AM
21439 printf ("\t%.*s\n",
21440 (int) (arch.sym_size - l), arch.sym_table + l);
591f7597 21441 l += strnlen (arch.sym_table + l, arch.sym_size - l) + 1;
4145f1d5
NC
21442 }
21443
67ce483b 21444 if (arch.uses_64bit_indices)
c2a7d3f5
NC
21445 l = (l + 7) & ~ 7;
21446 else
21447 l += l & 1;
21448
2cf0635d 21449 if (l < arch.sym_size)
32ec8896 21450 {
d3a49aa8
AM
21451 error (ngettext ("%s: %ld byte remains in the symbol table, "
21452 "but without corresponding entries in "
21453 "the index table\n",
21454 "%s: %ld bytes remain in the symbol table, "
21455 "but without corresponding entries in "
21456 "the index table\n",
21457 arch.sym_size - l),
dda8d76d 21458 filedata->file_name, arch.sym_size - l);
015dc7e1 21459 ret = false;
32ec8896 21460 }
4145f1d5 21461
dda8d76d 21462 if (fseek (filedata->handle, current_pos, SEEK_SET) != 0)
4145f1d5 21463 {
1cb7d8b1
AM
21464 error (_("%s: failed to seek back to start of object files "
21465 "in the archive\n"),
dda8d76d 21466 filedata->file_name);
015dc7e1 21467 ret = false;
2cf0635d 21468 goto out;
4145f1d5 21469 }
fb52b2f4 21470 }
4145f1d5
NC
21471
21472 if (!do_dynamic && !do_syms && !do_reloc && !do_unwind && !do_sections
21473 && !do_segments && !do_header && !do_dump && !do_version
21474 && !do_histogram && !do_debugging && !do_arch && !do_notes
2c610e4b 21475 && !do_section_groups && !do_dyn_syms)
2cf0635d 21476 {
015dc7e1 21477 ret = true; /* Archive index only. */
2cf0635d
NC
21478 goto out;
21479 }
fb52b2f4
NC
21480 }
21481
fb52b2f4
NC
21482 while (1)
21483 {
2cf0635d
NC
21484 char * name;
21485 size_t namelen;
21486 char * qualified_name;
21487
21488 /* Read the next archive header. */
dda8d76d 21489 if (fseek (filedata->handle, arch.next_arhdr_offset, SEEK_SET) != 0)
1cb7d8b1
AM
21490 {
21491 error (_("%s: failed to seek to next archive header\n"),
21492 arch.file_name);
015dc7e1 21493 ret = false;
1cb7d8b1
AM
21494 break;
21495 }
dda8d76d 21496 got = fread (&arch.arhdr, 1, sizeof arch.arhdr, filedata->handle);
2cf0635d 21497 if (got != sizeof arch.arhdr)
1cb7d8b1
AM
21498 {
21499 if (got == 0)
2cf0635d 21500 break;
28e817cc
NC
21501 /* PR 24049 - we cannot use filedata->file_name as this will
21502 have already been freed. */
21503 error (_("%s: failed to read archive header\n"), arch.file_name);
9abca702 21504
015dc7e1 21505 ret = false;
1cb7d8b1
AM
21506 break;
21507 }
2cf0635d 21508 if (memcmp (arch.arhdr.ar_fmag, ARFMAG, 2) != 0)
1cb7d8b1
AM
21509 {
21510 error (_("%s: did not find a valid archive header\n"),
21511 arch.file_name);
015dc7e1 21512 ret = false;
1cb7d8b1
AM
21513 break;
21514 }
2cf0635d
NC
21515
21516 arch.next_arhdr_offset += sizeof arch.arhdr;
21517
978c4450
AM
21518 filedata->archive_file_size = strtoul (arch.arhdr.ar_size, NULL, 10);
21519 if (filedata->archive_file_size & 01)
21520 ++filedata->archive_file_size;
2cf0635d
NC
21521
21522 name = get_archive_member_name (&arch, &nested_arch);
21523 if (name == NULL)
fb52b2f4 21524 {
28e817cc 21525 error (_("%s: bad archive file name\n"), arch.file_name);
015dc7e1 21526 ret = false;
d989285c 21527 break;
fb52b2f4 21528 }
2cf0635d 21529 namelen = strlen (name);
fb52b2f4 21530
2cf0635d
NC
21531 qualified_name = make_qualified_name (&arch, &nested_arch, name);
21532 if (qualified_name == NULL)
fb52b2f4 21533 {
28e817cc 21534 error (_("%s: bad archive file name\n"), arch.file_name);
fd486f32 21535 free (name);
015dc7e1 21536 ret = false;
d989285c 21537 break;
fb52b2f4
NC
21538 }
21539
2cf0635d 21540 if (is_thin_archive && arch.nested_member_origin == 0)
1cb7d8b1
AM
21541 {
21542 /* This is a proxy for an external member of a thin archive. */
21543 Filedata * member_filedata;
21544 char * member_file_name = adjust_relative_path
dda8d76d 21545 (filedata->file_name, name, namelen);
32ec8896 21546
fd486f32 21547 free (name);
1cb7d8b1
AM
21548 if (member_file_name == NULL)
21549 {
fd486f32 21550 free (qualified_name);
015dc7e1 21551 ret = false;
1cb7d8b1
AM
21552 break;
21553 }
2cf0635d 21554
015dc7e1 21555 member_filedata = open_file (member_file_name, false);
1cb7d8b1
AM
21556 if (member_filedata == NULL)
21557 {
21558 error (_("Input file '%s' is not readable.\n"), member_file_name);
21559 free (member_file_name);
fd486f32 21560 free (qualified_name);
015dc7e1 21561 ret = false;
1cb7d8b1
AM
21562 break;
21563 }
2cf0635d 21564
978c4450 21565 filedata->archive_file_offset = arch.nested_member_origin;
dda8d76d 21566 member_filedata->file_name = qualified_name;
2cf0635d 21567
1cb7d8b1 21568 if (! process_object (member_filedata))
015dc7e1 21569 ret = false;
2cf0635d 21570
1cb7d8b1
AM
21571 close_file (member_filedata);
21572 free (member_file_name);
1cb7d8b1 21573 }
2cf0635d 21574 else if (is_thin_archive)
1cb7d8b1
AM
21575 {
21576 Filedata thin_filedata;
eb02c04d 21577
1cb7d8b1 21578 memset (&thin_filedata, 0, sizeof (thin_filedata));
dda8d76d 21579
a043396b
NC
21580 /* PR 15140: Allow for corrupt thin archives. */
21581 if (nested_arch.file == NULL)
21582 {
21583 error (_("%s: contains corrupt thin archive: %s\n"),
28e817cc 21584 qualified_name, name);
fd486f32
AM
21585 free (qualified_name);
21586 free (name);
015dc7e1 21587 ret = false;
a043396b
NC
21588 break;
21589 }
fd486f32 21590 free (name);
a043396b 21591
1cb7d8b1 21592 /* This is a proxy for a member of a nested archive. */
978c4450
AM
21593 filedata->archive_file_offset
21594 = arch.nested_member_origin + sizeof arch.arhdr;
2cf0635d 21595
1cb7d8b1
AM
21596 /* The nested archive file will have been opened and setup by
21597 get_archive_member_name. */
978c4450
AM
21598 if (fseek (nested_arch.file, filedata->archive_file_offset,
21599 SEEK_SET) != 0)
1cb7d8b1
AM
21600 {
21601 error (_("%s: failed to seek to archive member.\n"),
21602 nested_arch.file_name);
fd486f32 21603 free (qualified_name);
015dc7e1 21604 ret = false;
1cb7d8b1
AM
21605 break;
21606 }
2cf0635d 21607
dda8d76d
NC
21608 thin_filedata.handle = nested_arch.file;
21609 thin_filedata.file_name = qualified_name;
9abca702 21610
1cb7d8b1 21611 if (! process_object (& thin_filedata))
015dc7e1 21612 ret = false;
1cb7d8b1 21613 }
2cf0635d 21614 else
1cb7d8b1 21615 {
fd486f32 21616 free (name);
978c4450 21617 filedata->archive_file_offset = arch.next_arhdr_offset;
6a6196fc 21618 filedata->file_name = qualified_name;
1cb7d8b1 21619 if (! process_object (filedata))
015dc7e1 21620 ret = false;
978c4450 21621 arch.next_arhdr_offset += filedata->archive_file_size;
4c836627 21622 /* Stop looping with "negative" archive_file_size. */
978c4450 21623 if (arch.next_arhdr_offset < filedata->archive_file_size)
80e2a3b6 21624 arch.next_arhdr_offset = -1ul;
1cb7d8b1 21625 }
fb52b2f4 21626
2cf0635d 21627 free (qualified_name);
fb52b2f4
NC
21628 }
21629
4145f1d5 21630 out:
2cf0635d
NC
21631 if (nested_arch.file != NULL)
21632 fclose (nested_arch.file);
21633 release_archive (&nested_arch);
21634 release_archive (&arch);
fb52b2f4 21635
d989285c 21636 return ret;
fb52b2f4
NC
21637}
21638
015dc7e1 21639static bool
2cf0635d 21640process_file (char * file_name)
fb52b2f4 21641{
dda8d76d 21642 Filedata * filedata = NULL;
fb52b2f4
NC
21643 struct stat statbuf;
21644 char armag[SARMAG];
015dc7e1 21645 bool ret = true;
fb52b2f4
NC
21646
21647 if (stat (file_name, &statbuf) < 0)
21648 {
f24ddbdd
NC
21649 if (errno == ENOENT)
21650 error (_("'%s': No such file\n"), file_name);
21651 else
21652 error (_("Could not locate '%s'. System error message: %s\n"),
21653 file_name, strerror (errno));
015dc7e1 21654 return false;
f24ddbdd
NC
21655 }
21656
21657 if (! S_ISREG (statbuf.st_mode))
21658 {
21659 error (_("'%s' is not an ordinary file\n"), file_name);
015dc7e1 21660 return false;
fb52b2f4
NC
21661 }
21662
dda8d76d
NC
21663 filedata = calloc (1, sizeof * filedata);
21664 if (filedata == NULL)
21665 {
21666 error (_("Out of memory allocating file data structure\n"));
015dc7e1 21667 return false;
dda8d76d
NC
21668 }
21669
21670 filedata->file_name = file_name;
21671 filedata->handle = fopen (file_name, "rb");
21672 if (filedata->handle == NULL)
fb52b2f4 21673 {
f24ddbdd 21674 error (_("Input file '%s' is not readable.\n"), file_name);
dda8d76d 21675 free (filedata);
015dc7e1 21676 return false;
fb52b2f4
NC
21677 }
21678
dda8d76d 21679 if (fread (armag, SARMAG, 1, filedata->handle) != 1)
fb52b2f4 21680 {
4145f1d5 21681 error (_("%s: Failed to read file's magic number\n"), file_name);
dda8d76d
NC
21682 fclose (filedata->handle);
21683 free (filedata);
015dc7e1 21684 return false;
fb52b2f4
NC
21685 }
21686
dda8d76d 21687 filedata->file_size = (bfd_size_type) statbuf.st_size;
015dc7e1 21688 filedata->is_separate = false;
f54498b4 21689
fb52b2f4 21690 if (memcmp (armag, ARMAG, SARMAG) == 0)
32ec8896 21691 {
015dc7e1
AM
21692 if (! process_archive (filedata, false))
21693 ret = false;
32ec8896 21694 }
2cf0635d 21695 else if (memcmp (armag, ARMAGT, SARMAG) == 0)
32ec8896 21696 {
015dc7e1
AM
21697 if ( ! process_archive (filedata, true))
21698 ret = false;
32ec8896 21699 }
fb52b2f4
NC
21700 else
21701 {
1b513401 21702 if (do_archive_index && !check_all)
4145f1d5
NC
21703 error (_("File %s is not an archive so its index cannot be displayed.\n"),
21704 file_name);
21705
dda8d76d 21706 rewind (filedata->handle);
978c4450 21707 filedata->archive_file_size = filedata->archive_file_offset = 0;
32ec8896 21708
dda8d76d 21709 if (! process_object (filedata))
015dc7e1 21710 ret = false;
fb52b2f4
NC
21711 }
21712
dda8d76d 21713 fclose (filedata->handle);
8fb879cd
AM
21714 free (filedata->section_headers);
21715 free (filedata->program_headers);
21716 free (filedata->string_table);
6431e409 21717 free (filedata->dump.dump_sects);
dda8d76d 21718 free (filedata);
32ec8896 21719
fd486f32 21720 free (ba_cache.strtab);
1bd6175a 21721 ba_cache.strtab = NULL;
fd486f32 21722 free (ba_cache.symtab);
1bd6175a 21723 ba_cache.symtab = NULL;
fd486f32
AM
21724 ba_cache.filedata = NULL;
21725
fb52b2f4
NC
21726 return ret;
21727}
21728
252b5132
RH
21729#ifdef SUPPORT_DISASSEMBLY
21730/* Needed by the i386 disassembler. For extra credit, someone could
9ea033b2 21731 fix this so that we insert symbolic addresses here, esp for GOT/PLT
e3c8793a 21732 symbols. */
252b5132
RH
21733
21734void
2cf0635d 21735print_address (unsigned int addr, FILE * outfile)
252b5132
RH
21736{
21737 fprintf (outfile,"0x%8.8x", addr);
21738}
21739
e3c8793a 21740/* Needed by the i386 disassembler. */
dda8d76d 21741
252b5132
RH
21742void
21743db_task_printsym (unsigned int addr)
21744{
21745 print_address (addr, stderr);
21746}
21747#endif
21748
21749int
2cf0635d 21750main (int argc, char ** argv)
252b5132 21751{
ff78d6d6
L
21752 int err;
21753
87b9f255 21754#ifdef HAVE_LC_MESSAGES
252b5132 21755 setlocale (LC_MESSAGES, "");
3882b010 21756#endif
3882b010 21757 setlocale (LC_CTYPE, "");
252b5132
RH
21758 bindtextdomain (PACKAGE, LOCALEDIR);
21759 textdomain (PACKAGE);
21760
869b9d07
MM
21761 expandargv (&argc, &argv);
21762
dda8d76d 21763 parse_args (& cmdline, argc, argv);
59f14fc0 21764
18bd398b 21765 if (optind < (argc - 1))
1b513401
NC
21766 /* When displaying information for more than one file,
21767 prefix the information with the file name. */
015dc7e1 21768 show_name = true;
5656ba2c
L
21769 else if (optind >= argc)
21770 {
1b513401 21771 /* Ensure that the warning is always displayed. */
015dc7e1 21772 do_checks = true;
1b513401 21773
5656ba2c
L
21774 warn (_("Nothing to do.\n"));
21775 usage (stderr);
21776 }
18bd398b 21777
015dc7e1 21778 err = false;
252b5132 21779 while (optind < argc)
32ec8896 21780 if (! process_file (argv[optind++]))
015dc7e1 21781 err = true;
252b5132 21782
9db70fc3 21783 free (cmdline.dump_sects);
252b5132 21784
7d9813f1
NA
21785 free (dump_ctf_symtab_name);
21786 free (dump_ctf_strtab_name);
21787 free (dump_ctf_parent_name);
21788
32ec8896 21789 return err ? EXIT_FAILURE : EXIT_SUCCESS;
252b5132 21790}
This page took 3.595738 seconds and 4 git commands to generate.