]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - binutils/readelf.c
daily update
[thirdparty/binutils-gdb.git] / binutils / readelf.c
CommitLineData
252b5132 1/* readelf.c -- display contents of an ELF format file
4b95cf5c 2 Copyright (C) 1998-2014 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
CS
46#ifdef HAVE_ZLIB_H
47#include <zlib.h>
48#endif
3bfcb652 49#ifdef HAVE_WCHAR_H
7bfd842d 50#include <wchar.h>
3bfcb652 51#endif
252b5132 52
a952a375 53#if __GNUC__ >= 2
19936277 54/* Define BFD64 here, even if our default architecture is 32 bit ELF
a952a375 55 as this will allow us to read in and parse 64bit and 32bit ELF files.
b34976b6 56 Only do this if we believe that the compiler can support a 64 bit
a952a375 57 data type. For now we only rely on GCC being able to do this. */
19936277 58#define BFD64
a952a375
NC
59#endif
60
3db64b00
AM
61#include "bfd.h"
62#include "bucomm.h"
3284fe0c 63#include "elfcomm.h"
19e6b90e 64#include "dwarf.h"
252b5132
RH
65
66#include "elf/common.h"
67#include "elf/external.h"
68#include "elf/internal.h"
252b5132 69
4b78141a
NC
70
71/* Included here, before RELOC_MACROS_GEN_FUNC is defined, so that
72 we can obtain the H8 reloc numbers. We need these for the
73 get_reloc_size() function. We include h8.h again after defining
74 RELOC_MACROS_GEN_FUNC so that we get the naming function as well. */
75
76#include "elf/h8.h"
77#undef _ELF_H8_H
78
79/* Undo the effects of #including reloc-macros.h. */
80
81#undef START_RELOC_NUMBERS
82#undef RELOC_NUMBER
83#undef FAKE_RELOC
84#undef EMPTY_RELOC
85#undef END_RELOC_NUMBERS
86#undef _RELOC_MACROS_H
87
252b5132
RH
88/* The following headers use the elf/reloc-macros.h file to
89 automatically generate relocation recognition functions
90 such as elf_mips_reloc_type() */
91
92#define RELOC_MACROS_GEN_FUNC
93
a06ea964 94#include "elf/aarch64.h"
252b5132 95#include "elf/alpha.h"
3b16e843 96#include "elf/arc.h"
252b5132 97#include "elf/arm.h"
3b16e843 98#include "elf/avr.h"
1d65ded4 99#include "elf/bfin.h"
60bca95a 100#include "elf/cr16.h"
3b16e843 101#include "elf/cris.h"
1c0d3aa6 102#include "elf/crx.h"
252b5132
RH
103#include "elf/d10v.h"
104#include "elf/d30v.h"
d172d4ba 105#include "elf/dlx.h"
cfb8c092 106#include "elf/epiphany.h"
252b5132 107#include "elf/fr30.h"
5c70f934 108#include "elf/frv.h"
3b16e843
NC
109#include "elf/h8.h"
110#include "elf/hppa.h"
111#include "elf/i386.h"
35b1837e 112#include "elf/i370.h"
3b16e843
NC
113#include "elf/i860.h"
114#include "elf/i960.h"
115#include "elf/ia64.h"
1e4cf259 116#include "elf/ip2k.h"
84e94c90 117#include "elf/lm32.h"
1c0d3aa6 118#include "elf/iq2000.h"
49f58d10 119#include "elf/m32c.h"
3b16e843
NC
120#include "elf/m32r.h"
121#include "elf/m68k.h"
75751cd9 122#include "elf/m68hc11.h"
252b5132 123#include "elf/mcore.h"
15ab5209 124#include "elf/mep.h"
a3c62988 125#include "elf/metag.h"
7ba29e2a 126#include "elf/microblaze.h"
3b16e843 127#include "elf/mips.h"
3c3bdf30 128#include "elf/mmix.h"
3b16e843
NC
129#include "elf/mn10200.h"
130#include "elf/mn10300.h"
5506d11a 131#include "elf/moxie.h"
4970f871 132#include "elf/mt.h"
2469cfa2 133#include "elf/msp430.h"
35c08157 134#include "elf/nds32.h"
13761a11 135#include "elf/nios2.h"
73589c9d 136#include "elf/or1k.h"
7d466069 137#include "elf/pj.h"
3b16e843 138#include "elf/ppc.h"
c833c019 139#include "elf/ppc64.h"
99c513f6 140#include "elf/rl78.h"
c7927a3c 141#include "elf/rx.h"
a85d7ed0 142#include "elf/s390.h"
1c0d3aa6 143#include "elf/score.h"
3b16e843
NC
144#include "elf/sh.h"
145#include "elf/sparc.h"
e9f53129 146#include "elf/spu.h"
40b36596 147#include "elf/tic6x.h"
aa137e4d
NC
148#include "elf/tilegx.h"
149#include "elf/tilepro.h"
3b16e843 150#include "elf/v850.h"
179d3252 151#include "elf/vax.h"
3b16e843 152#include "elf/x86-64.h"
c29aca4a 153#include "elf/xc16x.h"
f6c1a2d5 154#include "elf/xgate.h"
93fbbb04 155#include "elf/xstormy16.h"
88da6820 156#include "elf/xtensa.h"
252b5132 157
252b5132 158#include "getopt.h"
566b0d53 159#include "libiberty.h"
09c11c86 160#include "safe-ctype.h"
2cf0635d 161#include "filenames.h"
252b5132 162
15b42fb0
AM
163#ifndef offsetof
164#define offsetof(TYPE, MEMBER) ((size_t) &(((TYPE *) 0)->MEMBER))
165#endif
166
2cf0635d 167char * program_name = "readelf";
85b1c36d
BE
168static long archive_file_offset;
169static unsigned long archive_file_size;
f54498b4 170static bfd_size_type current_file_size;
85b1c36d
BE
171static unsigned long dynamic_addr;
172static bfd_size_type dynamic_size;
8b73c356 173static size_t dynamic_nent;
2cf0635d 174static char * dynamic_strings;
85b1c36d 175static unsigned long dynamic_strings_length;
2cf0635d 176static char * string_table;
85b1c36d
BE
177static unsigned long string_table_length;
178static unsigned long num_dynamic_syms;
2cf0635d
NC
179static Elf_Internal_Sym * dynamic_symbols;
180static Elf_Internal_Syminfo * dynamic_syminfo;
85b1c36d
BE
181static unsigned long dynamic_syminfo_offset;
182static unsigned int dynamic_syminfo_nent;
f8eae8b2 183static char program_interpreter[PATH_MAX];
bb8a0291 184static bfd_vma dynamic_info[DT_ENCODING];
fdc90cb4 185static bfd_vma dynamic_info_DT_GNU_HASH;
85b1c36d
BE
186static bfd_vma version_info[16];
187static Elf_Internal_Ehdr elf_header;
2cf0635d
NC
188static Elf_Internal_Shdr * section_headers;
189static Elf_Internal_Phdr * program_headers;
190static Elf_Internal_Dyn * dynamic_section;
191static Elf_Internal_Shdr * symtab_shndx_hdr;
85b1c36d
BE
192static int show_name;
193static int do_dynamic;
194static int do_syms;
2c610e4b 195static int do_dyn_syms;
85b1c36d
BE
196static int do_reloc;
197static int do_sections;
198static int do_section_groups;
5477e8a0 199static int do_section_details;
85b1c36d
BE
200static int do_segments;
201static int do_unwind;
202static int do_using_dynamic;
203static int do_header;
204static int do_dump;
205static int do_version;
85b1c36d
BE
206static int do_histogram;
207static int do_debugging;
85b1c36d
BE
208static int do_arch;
209static int do_notes;
4145f1d5 210static int do_archive_index;
85b1c36d 211static int is_32bit_elf;
252b5132 212
e4b17d5c
L
213struct group_list
214{
2cf0635d 215 struct group_list * next;
e4b17d5c
L
216 unsigned int section_index;
217};
218
219struct group
220{
2cf0635d 221 struct group_list * root;
e4b17d5c
L
222 unsigned int group_index;
223};
224
85b1c36d 225static size_t group_count;
2cf0635d
NC
226static struct group * section_groups;
227static struct group ** section_headers_groups;
e4b17d5c 228
09c11c86
NC
229
230/* Flag bits indicating particular types of dump. */
231#define HEX_DUMP (1 << 0) /* The -x command line switch. */
232#define DISASS_DUMP (1 << 1) /* The -i command line switch. */
233#define DEBUG_DUMP (1 << 2) /* The -w command line switch. */
234#define STRING_DUMP (1 << 3) /* The -p command line switch. */
cf13d699 235#define RELOC_DUMP (1 << 4) /* The -R command line switch. */
09c11c86
NC
236
237typedef unsigned char dump_type;
238
239/* A linked list of the section names for which dumps were requested. */
aef1f6d0
DJ
240struct dump_list_entry
241{
2cf0635d 242 char * name;
09c11c86 243 dump_type type;
2cf0635d 244 struct dump_list_entry * next;
aef1f6d0 245};
2cf0635d 246static struct dump_list_entry * dump_sects_byname;
aef1f6d0 247
09c11c86
NC
248/* A dynamic array of flags indicating for which sections a dump
249 has been requested via command line switches. */
250static dump_type * cmdline_dump_sects = NULL;
251static unsigned int num_cmdline_dump_sects = 0;
18bd398b
NC
252
253/* A dynamic array of flags indicating for which sections a dump of
254 some kind has been requested. It is reset on a per-object file
aef1f6d0
DJ
255 basis and then initialised from the cmdline_dump_sects array,
256 the results of interpreting the -w switch, and the
257 dump_sects_byname list. */
09c11c86
NC
258static dump_type * dump_sects = NULL;
259static unsigned int num_dump_sects = 0;
252b5132 260
252b5132 261
c256ffe7 262/* How to print a vma value. */
843dd992
NC
263typedef enum print_mode
264{
265 HEX,
266 DEC,
267 DEC_5,
268 UNSIGNED,
269 PREFIX_HEX,
270 FULL_HEX,
271 LONG_HEX
272}
273print_mode;
274
9c19a809
NC
275#define UNKNOWN -1
276
2b692964
NC
277#define SECTION_NAME(X) \
278 ((X) == NULL ? _("<none>") \
279 : string_table == NULL ? _("<no-name>") \
280 : ((X)->sh_name >= string_table_length ? _("<corrupt>") \
0b49d371 281 : string_table + (X)->sh_name))
252b5132 282
ee42cf8c 283#define DT_VERSIONTAGIDX(tag) (DT_VERNEEDNUM - (tag)) /* Reverse order! */
252b5132 284
ba5cdace
NC
285#define GET_ELF_SYMBOLS(file, section, sym_count) \
286 (is_32bit_elf ? get_32bit_elf_symbols (file, section, sym_count) \
287 : get_64bit_elf_symbols (file, section, sym_count))
9ea033b2 288
d79b3d50
NC
289#define VALID_DYNAMIC_NAME(offset) ((dynamic_strings != NULL) && (offset < dynamic_strings_length))
290/* GET_DYNAMIC_NAME asssumes that VALID_DYNAMIC_NAME has
291 already been called and verified that the string exists. */
292#define GET_DYNAMIC_NAME(offset) (dynamic_strings + offset)
18bd398b 293
61865e30
NC
294#define REMOVE_ARCH_BITS(ADDR) \
295 do \
296 { \
297 if (elf_header.e_machine == EM_ARM) \
298 (ADDR) &= ~1; \
299 } \
300 while (0)
d79b3d50 301\f
59245841
NC
302/* Retrieve NMEMB structures, each SIZE bytes long from FILE starting at OFFSET.
303 Put the retrieved data into VAR, if it is not NULL. Otherwise allocate a buffer
304 using malloc and fill that. In either case return the pointer to the start of
305 the retrieved data or NULL if something went wrong. If something does go wrong
306 emit an error message using REASON as part of the context. */
307
c256ffe7 308static void *
2cf0635d
NC
309get_data (void * var, FILE * file, long offset, size_t size, size_t nmemb,
310 const char * reason)
a6e9f9df 311{
2cf0635d 312 void * mvar;
a6e9f9df 313
c256ffe7 314 if (size == 0 || nmemb == 0)
a6e9f9df
AM
315 return NULL;
316
fb52b2f4 317 if (fseek (file, archive_file_offset + offset, SEEK_SET))
a6e9f9df 318 {
049b0c3a
NC
319 if (reason)
320 error (_("Unable to seek to 0x%lx for %s\n"),
321 (unsigned long) archive_file_offset + offset, reason);
a6e9f9df
AM
322 return NULL;
323 }
324
071436c6
NC
325 /* Be kind to memory chekers (eg valgrind, address sanitizer) by not
326 attempting to allocate memory when the read is bound to fail. */
327 if (offset + archive_file_offset + size * nmemb > current_file_size)
328 {
329 if (reason)
330 error (_("Reading 0x%lx bytes extends past end of file for %s\n"),
331 (unsigned long) (size * nmemb), reason);
332 return NULL;
333 }
334
a6e9f9df
AM
335 mvar = var;
336 if (mvar == NULL)
337 {
c256ffe7
JJ
338 /* Check for overflow. */
339 if (nmemb < (~(size_t) 0 - 1) / size)
340 /* + 1 so that we can '\0' terminate invalid string table sections. */
341 mvar = malloc (size * nmemb + 1);
a6e9f9df
AM
342
343 if (mvar == NULL)
344 {
049b0c3a
NC
345 if (reason)
346 error (_("Out of memory allocating 0x%lx bytes for %s\n"),
347 (unsigned long)(size * nmemb), reason);
a6e9f9df
AM
348 return NULL;
349 }
c256ffe7
JJ
350
351 ((char *) mvar)[size * nmemb] = '\0';
a6e9f9df
AM
352 }
353
c256ffe7 354 if (fread (mvar, size, nmemb, file) != nmemb)
a6e9f9df 355 {
049b0c3a
NC
356 if (reason)
357 error (_("Unable to read in 0x%lx bytes of %s\n"),
358 (unsigned long)(size * nmemb), reason);
a6e9f9df
AM
359 if (mvar != var)
360 free (mvar);
361 return NULL;
362 }
363
364 return mvar;
365}
366
14a91970 367/* Print a VMA value. */
cb8f3167 368
66543521 369static int
14a91970 370print_vma (bfd_vma vma, print_mode mode)
66543521 371{
66543521
AM
372 int nc = 0;
373
14a91970 374 switch (mode)
66543521 375 {
14a91970
AM
376 case FULL_HEX:
377 nc = printf ("0x");
378 /* Drop through. */
66543521 379
14a91970 380 case LONG_HEX:
f7a99963 381#ifdef BFD64
14a91970 382 if (is_32bit_elf)
437c2fb7 383 return nc + printf ("%8.8" BFD_VMA_FMT "x", vma);
f7a99963 384#endif
14a91970
AM
385 printf_vma (vma);
386 return nc + 16;
b19aac67 387
14a91970
AM
388 case DEC_5:
389 if (vma <= 99999)
390 return printf ("%5" BFD_VMA_FMT "d", vma);
391 /* Drop through. */
66543521 392
14a91970
AM
393 case PREFIX_HEX:
394 nc = printf ("0x");
395 /* Drop through. */
66543521 396
14a91970
AM
397 case HEX:
398 return nc + printf ("%" BFD_VMA_FMT "x", vma);
b19aac67 399
14a91970
AM
400 case DEC:
401 return printf ("%" BFD_VMA_FMT "d", vma);
b19aac67 402
14a91970
AM
403 case UNSIGNED:
404 return printf ("%" BFD_VMA_FMT "u", vma);
f7a99963 405 }
66543521 406 return 0;
f7a99963
NC
407}
408
7bfd842d 409/* Display a symbol on stdout. Handles the display of control characters and
3bfcb652 410 multibye characters (assuming the host environment supports them).
31104126 411
7bfd842d
NC
412 Display at most abs(WIDTH) characters, truncating as necessary, unless do_wide is true.
413
414 If WIDTH is negative then ensure that the output is at least (- WIDTH) characters,
415 padding as necessary.
171191ba
NC
416
417 Returns the number of emitted characters. */
418
419static unsigned int
7a88bc9c 420print_symbol (int width, const char *symbol)
31104126 421{
171191ba 422 bfd_boolean extra_padding = FALSE;
7bfd842d 423 int num_printed = 0;
3bfcb652 424#ifdef HAVE_MBSTATE_T
7bfd842d 425 mbstate_t state;
3bfcb652 426#endif
7bfd842d 427 int width_remaining;
961c521f 428
7bfd842d 429 if (width < 0)
961c521f 430 {
961c521f
NC
431 /* Keep the width positive. This also helps. */
432 width = - width;
171191ba 433 extra_padding = TRUE;
0b4362b0 434 }
74e1a04b 435 assert (width != 0);
961c521f 436
7bfd842d
NC
437 if (do_wide)
438 /* Set the remaining width to a very large value.
439 This simplifies the code below. */
440 width_remaining = INT_MAX;
441 else
442 width_remaining = width;
cb8f3167 443
3bfcb652 444#ifdef HAVE_MBSTATE_T
7bfd842d
NC
445 /* Initialise the multibyte conversion state. */
446 memset (& state, 0, sizeof (state));
3bfcb652 447#endif
961c521f 448
7bfd842d
NC
449 while (width_remaining)
450 {
451 size_t n;
7bfd842d 452 const char c = *symbol++;
961c521f 453
7bfd842d 454 if (c == 0)
961c521f
NC
455 break;
456
7bfd842d
NC
457 /* Do not print control characters directly as they can affect terminal
458 settings. Such characters usually appear in the names generated
459 by the assembler for local labels. */
460 if (ISCNTRL (c))
961c521f 461 {
7bfd842d 462 if (width_remaining < 2)
961c521f
NC
463 break;
464
7bfd842d
NC
465 printf ("^%c", c + 0x40);
466 width_remaining -= 2;
171191ba 467 num_printed += 2;
961c521f 468 }
7bfd842d
NC
469 else if (ISPRINT (c))
470 {
471 putchar (c);
472 width_remaining --;
473 num_printed ++;
474 }
961c521f
NC
475 else
476 {
3bfcb652
NC
477#ifdef HAVE_MBSTATE_T
478 wchar_t w;
479#endif
7bfd842d
NC
480 /* Let printf do the hard work of displaying multibyte characters. */
481 printf ("%.1s", symbol - 1);
482 width_remaining --;
483 num_printed ++;
484
3bfcb652 485#ifdef HAVE_MBSTATE_T
7bfd842d
NC
486 /* Try to find out how many bytes made up the character that was
487 just printed. Advance the symbol pointer past the bytes that
488 were displayed. */
489 n = mbrtowc (& w, symbol - 1, MB_CUR_MAX, & state);
3bfcb652
NC
490#else
491 n = 1;
492#endif
7bfd842d
NC
493 if (n != (size_t) -1 && n != (size_t) -2 && n > 0)
494 symbol += (n - 1);
961c521f 495 }
961c521f 496 }
171191ba 497
7bfd842d 498 if (extra_padding && num_printed < width)
171191ba
NC
499 {
500 /* Fill in the remaining spaces. */
7bfd842d
NC
501 printf ("%-*s", width - num_printed, " ");
502 num_printed = width;
171191ba
NC
503 }
504
505 return num_printed;
31104126
NC
506}
507
74e1a04b
NC
508/* Returns a pointer to a static buffer containing a printable version of
509 the given section's name. Like print_symbol, except that it does not try
510 to print multibyte characters, it just interprets them as hex values. */
511
512static const char *
513printable_section_name (Elf_Internal_Shdr * sec)
514{
515#define MAX_PRINT_SEC_NAME_LEN 128
516 static char sec_name_buf [MAX_PRINT_SEC_NAME_LEN + 1];
517 const char * name = SECTION_NAME (sec);
518 char * buf = sec_name_buf;
519 char c;
520 unsigned int remaining = MAX_PRINT_SEC_NAME_LEN;
521
522 while ((c = * name ++) != 0)
523 {
524 if (ISCNTRL (c))
525 {
526 if (remaining < 2)
527 break;
528
529 * buf ++ = '^';
530 * buf ++ = c + 0x40;
531 remaining -= 2;
532 }
533 else if (ISPRINT (c))
534 {
535 * buf ++ = c;
536 remaining -= 1;
537 }
538 else
539 {
540 static char hex[17] = "0123456789ABCDEF";
541
542 if (remaining < 4)
543 break;
544 * buf ++ = '<';
545 * buf ++ = hex[(c & 0xf0) >> 4];
546 * buf ++ = hex[c & 0x0f];
547 * buf ++ = '>';
548 remaining -= 4;
549 }
550
551 if (remaining == 0)
552 break;
553 }
554
555 * buf = 0;
556 return sec_name_buf;
557}
558
559static const char *
560printable_section_name_from_index (unsigned long ndx)
561{
562 if (ndx >= elf_header.e_shnum)
563 return _("<corrupt>");
564
565 return printable_section_name (section_headers + ndx);
566}
567
89fac5e3
RS
568/* Return a pointer to section NAME, or NULL if no such section exists. */
569
570static Elf_Internal_Shdr *
2cf0635d 571find_section (const char * name)
89fac5e3
RS
572{
573 unsigned int i;
574
575 for (i = 0; i < elf_header.e_shnum; i++)
576 if (streq (SECTION_NAME (section_headers + i), name))
577 return section_headers + i;
578
579 return NULL;
580}
581
0b6ae522
DJ
582/* Return a pointer to a section containing ADDR, or NULL if no such
583 section exists. */
584
585static Elf_Internal_Shdr *
586find_section_by_address (bfd_vma addr)
587{
588 unsigned int i;
589
590 for (i = 0; i < elf_header.e_shnum; i++)
591 {
592 Elf_Internal_Shdr *sec = section_headers + i;
593 if (addr >= sec->sh_addr && addr < sec->sh_addr + sec->sh_size)
594 return sec;
595 }
596
597 return NULL;
598}
599
071436c6
NC
600static Elf_Internal_Shdr *
601find_section_by_type (unsigned int type)
602{
603 unsigned int i;
604
605 for (i = 0; i < elf_header.e_shnum; i++)
606 {
607 Elf_Internal_Shdr *sec = section_headers + i;
608 if (sec->sh_type == type)
609 return sec;
610 }
611
612 return NULL;
613}
614
657d0d47
CC
615/* Return a pointer to section NAME, or NULL if no such section exists,
616 restricted to the list of sections given in SET. */
617
618static Elf_Internal_Shdr *
619find_section_in_set (const char * name, unsigned int * set)
620{
621 unsigned int i;
622
623 if (set != NULL)
624 {
625 while ((i = *set++) > 0)
626 if (streq (SECTION_NAME (section_headers + i), name))
627 return section_headers + i;
628 }
629
630 return find_section (name);
631}
632
0b6ae522
DJ
633/* Read an unsigned LEB128 encoded value from p. Set *PLEN to the number of
634 bytes read. */
635
f6f0e17b
NC
636static inline unsigned long
637read_uleb128 (unsigned char *data,
638 unsigned int *length_return,
639 const unsigned char * const end)
0b6ae522 640{
f6f0e17b 641 return read_leb128 (data, length_return, FALSE, end);
0b6ae522
DJ
642}
643
28f997cf
TG
644/* Return true if the current file is for IA-64 machine and OpenVMS ABI.
645 This OS has so many departures from the ELF standard that we test it at
646 many places. */
647
648static inline int
649is_ia64_vms (void)
650{
651 return elf_header.e_machine == EM_IA_64
652 && elf_header.e_ident[EI_OSABI] == ELFOSABI_OPENVMS;
653}
654
bcedfee6 655/* Guess the relocation size commonly used by the specific machines. */
252b5132 656
252b5132 657static int
2dc4cec1 658guess_is_rela (unsigned int e_machine)
252b5132 659{
9c19a809 660 switch (e_machine)
252b5132
RH
661 {
662 /* Targets that use REL relocations. */
252b5132
RH
663 case EM_386:
664 case EM_486:
63fcb9e9 665 case EM_960:
e9f53129 666 case EM_ARM:
2b0337b0 667 case EM_D10V:
252b5132 668 case EM_CYGNUS_D10V:
e9f53129 669 case EM_DLX:
252b5132 670 case EM_MIPS:
4fe85591 671 case EM_MIPS_RS3_LE:
e9f53129 672 case EM_CYGNUS_M32R:
1c0d3aa6 673 case EM_SCORE:
f6c1a2d5 674 case EM_XGATE:
9c19a809 675 return FALSE;
103f02d3 676
252b5132
RH
677 /* Targets that use RELA relocations. */
678 case EM_68K:
e9f53129 679 case EM_860:
a06ea964 680 case EM_AARCH64:
cfb8c092 681 case EM_ADAPTEVA_EPIPHANY:
e9f53129
AM
682 case EM_ALPHA:
683 case EM_ALTERA_NIOS2:
684 case EM_AVR:
685 case EM_AVR_OLD:
686 case EM_BLACKFIN:
60bca95a 687 case EM_CR16:
e9f53129
AM
688 case EM_CRIS:
689 case EM_CRX:
2b0337b0 690 case EM_D30V:
252b5132 691 case EM_CYGNUS_D30V:
2b0337b0 692 case EM_FR30:
252b5132 693 case EM_CYGNUS_FR30:
5c70f934 694 case EM_CYGNUS_FRV:
e9f53129
AM
695 case EM_H8S:
696 case EM_H8_300:
697 case EM_H8_300H:
800eeca4 698 case EM_IA_64:
1e4cf259
NC
699 case EM_IP2K:
700 case EM_IP2K_OLD:
3b36097d 701 case EM_IQ2000:
84e94c90 702 case EM_LATTICEMICO32:
ff7eeb89 703 case EM_M32C_OLD:
49f58d10 704 case EM_M32C:
e9f53129
AM
705 case EM_M32R:
706 case EM_MCORE:
15ab5209 707 case EM_CYGNUS_MEP:
a3c62988 708 case EM_METAG:
e9f53129
AM
709 case EM_MMIX:
710 case EM_MN10200:
711 case EM_CYGNUS_MN10200:
712 case EM_MN10300:
713 case EM_CYGNUS_MN10300:
5506d11a 714 case EM_MOXIE:
e9f53129
AM
715 case EM_MSP430:
716 case EM_MSP430_OLD:
d031aafb 717 case EM_MT:
35c08157 718 case EM_NDS32:
64fd6348 719 case EM_NIOS32:
73589c9d 720 case EM_OR1K:
e9f53129
AM
721 case EM_PPC64:
722 case EM_PPC:
99c513f6 723 case EM_RL78:
c7927a3c 724 case EM_RX:
e9f53129
AM
725 case EM_S390:
726 case EM_S390_OLD:
727 case EM_SH:
728 case EM_SPARC:
729 case EM_SPARC32PLUS:
730 case EM_SPARCV9:
731 case EM_SPU:
40b36596 732 case EM_TI_C6000:
aa137e4d
NC
733 case EM_TILEGX:
734 case EM_TILEPRO:
708e2187 735 case EM_V800:
e9f53129
AM
736 case EM_V850:
737 case EM_CYGNUS_V850:
738 case EM_VAX:
739 case EM_X86_64:
8a9036a4 740 case EM_L1OM:
7a9068fe 741 case EM_K1OM:
e9f53129
AM
742 case EM_XSTORMY16:
743 case EM_XTENSA:
744 case EM_XTENSA_OLD:
7ba29e2a
NC
745 case EM_MICROBLAZE:
746 case EM_MICROBLAZE_OLD:
9c19a809 747 return TRUE;
103f02d3 748
e9f53129
AM
749 case EM_68HC05:
750 case EM_68HC08:
751 case EM_68HC11:
752 case EM_68HC16:
753 case EM_FX66:
754 case EM_ME16:
d1133906 755 case EM_MMA:
d1133906
NC
756 case EM_NCPU:
757 case EM_NDR1:
e9f53129 758 case EM_PCP:
d1133906 759 case EM_ST100:
e9f53129 760 case EM_ST19:
d1133906 761 case EM_ST7:
e9f53129
AM
762 case EM_ST9PLUS:
763 case EM_STARCORE:
d1133906 764 case EM_SVX:
e9f53129 765 case EM_TINYJ:
9c19a809
NC
766 default:
767 warn (_("Don't know about relocations on this machine architecture\n"));
768 return FALSE;
769 }
770}
252b5132 771
9c19a809 772static int
2cf0635d 773slurp_rela_relocs (FILE * file,
d3ba0551
AM
774 unsigned long rel_offset,
775 unsigned long rel_size,
2cf0635d
NC
776 Elf_Internal_Rela ** relasp,
777 unsigned long * nrelasp)
9c19a809 778{
2cf0635d 779 Elf_Internal_Rela * relas;
8b73c356 780 size_t nrelas;
4d6ed7c8 781 unsigned int i;
252b5132 782
4d6ed7c8
NC
783 if (is_32bit_elf)
784 {
2cf0635d 785 Elf32_External_Rela * erelas;
103f02d3 786
3f5e193b 787 erelas = (Elf32_External_Rela *) get_data (NULL, file, rel_offset, 1,
9cf03b7e 788 rel_size, _("32-bit relocation data"));
a6e9f9df
AM
789 if (!erelas)
790 return 0;
252b5132 791
4d6ed7c8 792 nrelas = rel_size / sizeof (Elf32_External_Rela);
103f02d3 793
3f5e193b
NC
794 relas = (Elf_Internal_Rela *) cmalloc (nrelas,
795 sizeof (Elf_Internal_Rela));
103f02d3 796
4d6ed7c8
NC
797 if (relas == NULL)
798 {
c256ffe7 799 free (erelas);
591a748a 800 error (_("out of memory parsing relocs\n"));
4d6ed7c8
NC
801 return 0;
802 }
103f02d3 803
4d6ed7c8
NC
804 for (i = 0; i < nrelas; i++)
805 {
806 relas[i].r_offset = BYTE_GET (erelas[i].r_offset);
807 relas[i].r_info = BYTE_GET (erelas[i].r_info);
598aaa76 808 relas[i].r_addend = BYTE_GET_SIGNED (erelas[i].r_addend);
4d6ed7c8 809 }
103f02d3 810
4d6ed7c8
NC
811 free (erelas);
812 }
813 else
814 {
2cf0635d 815 Elf64_External_Rela * erelas;
103f02d3 816
3f5e193b 817 erelas = (Elf64_External_Rela *) get_data (NULL, file, rel_offset, 1,
9cf03b7e 818 rel_size, _("64-bit relocation data"));
a6e9f9df
AM
819 if (!erelas)
820 return 0;
4d6ed7c8
NC
821
822 nrelas = rel_size / sizeof (Elf64_External_Rela);
103f02d3 823
3f5e193b
NC
824 relas = (Elf_Internal_Rela *) cmalloc (nrelas,
825 sizeof (Elf_Internal_Rela));
103f02d3 826
4d6ed7c8
NC
827 if (relas == NULL)
828 {
c256ffe7 829 free (erelas);
591a748a 830 error (_("out of memory parsing relocs\n"));
4d6ed7c8 831 return 0;
9c19a809 832 }
4d6ed7c8
NC
833
834 for (i = 0; i < nrelas; i++)
9c19a809 835 {
66543521
AM
836 relas[i].r_offset = BYTE_GET (erelas[i].r_offset);
837 relas[i].r_info = BYTE_GET (erelas[i].r_info);
598aaa76 838 relas[i].r_addend = BYTE_GET_SIGNED (erelas[i].r_addend);
861fb55a
DJ
839
840 /* The #ifdef BFD64 below is to prevent a compile time
841 warning. We know that if we do not have a 64 bit data
842 type that we will never execute this code anyway. */
843#ifdef BFD64
844 if (elf_header.e_machine == EM_MIPS
845 && elf_header.e_ident[EI_DATA] != ELFDATA2MSB)
846 {
847 /* In little-endian objects, r_info isn't really a
848 64-bit little-endian value: it has a 32-bit
849 little-endian symbol index followed by four
850 individual byte fields. Reorder INFO
851 accordingly. */
91d6fa6a
NC
852 bfd_vma inf = relas[i].r_info;
853 inf = (((inf & 0xffffffff) << 32)
854 | ((inf >> 56) & 0xff)
855 | ((inf >> 40) & 0xff00)
856 | ((inf >> 24) & 0xff0000)
857 | ((inf >> 8) & 0xff000000));
858 relas[i].r_info = inf;
861fb55a
DJ
859 }
860#endif /* BFD64 */
4d6ed7c8 861 }
103f02d3 862
4d6ed7c8
NC
863 free (erelas);
864 }
865 *relasp = relas;
866 *nrelasp = nrelas;
867 return 1;
868}
103f02d3 869
4d6ed7c8 870static int
2cf0635d 871slurp_rel_relocs (FILE * file,
d3ba0551
AM
872 unsigned long rel_offset,
873 unsigned long rel_size,
2cf0635d
NC
874 Elf_Internal_Rela ** relsp,
875 unsigned long * nrelsp)
4d6ed7c8 876{
2cf0635d 877 Elf_Internal_Rela * rels;
8b73c356 878 size_t nrels;
4d6ed7c8 879 unsigned int i;
103f02d3 880
4d6ed7c8
NC
881 if (is_32bit_elf)
882 {
2cf0635d 883 Elf32_External_Rel * erels;
103f02d3 884
3f5e193b 885 erels = (Elf32_External_Rel *) get_data (NULL, file, rel_offset, 1,
9cf03b7e 886 rel_size, _("32-bit relocation data"));
a6e9f9df
AM
887 if (!erels)
888 return 0;
103f02d3 889
4d6ed7c8 890 nrels = rel_size / sizeof (Elf32_External_Rel);
103f02d3 891
3f5e193b 892 rels = (Elf_Internal_Rela *) cmalloc (nrels, sizeof (Elf_Internal_Rela));
103f02d3 893
4d6ed7c8
NC
894 if (rels == NULL)
895 {
c256ffe7 896 free (erels);
591a748a 897 error (_("out of memory parsing relocs\n"));
4d6ed7c8
NC
898 return 0;
899 }
900
901 for (i = 0; i < nrels; i++)
902 {
903 rels[i].r_offset = BYTE_GET (erels[i].r_offset);
904 rels[i].r_info = BYTE_GET (erels[i].r_info);
c8286bd1 905 rels[i].r_addend = 0;
9ea033b2 906 }
4d6ed7c8
NC
907
908 free (erels);
9c19a809
NC
909 }
910 else
911 {
2cf0635d 912 Elf64_External_Rel * erels;
9ea033b2 913
3f5e193b 914 erels = (Elf64_External_Rel *) get_data (NULL, file, rel_offset, 1,
9cf03b7e 915 rel_size, _("64-bit relocation data"));
a6e9f9df
AM
916 if (!erels)
917 return 0;
103f02d3 918
4d6ed7c8 919 nrels = rel_size / sizeof (Elf64_External_Rel);
103f02d3 920
3f5e193b 921 rels = (Elf_Internal_Rela *) cmalloc (nrels, sizeof (Elf_Internal_Rela));
103f02d3 922
4d6ed7c8 923 if (rels == NULL)
9c19a809 924 {
c256ffe7 925 free (erels);
591a748a 926 error (_("out of memory parsing relocs\n"));
4d6ed7c8
NC
927 return 0;
928 }
103f02d3 929
4d6ed7c8
NC
930 for (i = 0; i < nrels; i++)
931 {
66543521
AM
932 rels[i].r_offset = BYTE_GET (erels[i].r_offset);
933 rels[i].r_info = BYTE_GET (erels[i].r_info);
c8286bd1 934 rels[i].r_addend = 0;
861fb55a
DJ
935
936 /* The #ifdef BFD64 below is to prevent a compile time
937 warning. We know that if we do not have a 64 bit data
938 type that we will never execute this code anyway. */
939#ifdef BFD64
940 if (elf_header.e_machine == EM_MIPS
941 && elf_header.e_ident[EI_DATA] != ELFDATA2MSB)
942 {
943 /* In little-endian objects, r_info isn't really a
944 64-bit little-endian value: it has a 32-bit
945 little-endian symbol index followed by four
946 individual byte fields. Reorder INFO
947 accordingly. */
91d6fa6a
NC
948 bfd_vma inf = rels[i].r_info;
949 inf = (((inf & 0xffffffff) << 32)
950 | ((inf >> 56) & 0xff)
951 | ((inf >> 40) & 0xff00)
952 | ((inf >> 24) & 0xff0000)
953 | ((inf >> 8) & 0xff000000));
954 rels[i].r_info = inf;
861fb55a
DJ
955 }
956#endif /* BFD64 */
4d6ed7c8 957 }
103f02d3 958
4d6ed7c8
NC
959 free (erels);
960 }
961 *relsp = rels;
962 *nrelsp = nrels;
963 return 1;
964}
103f02d3 965
aca88567
NC
966/* Returns the reloc type extracted from the reloc info field. */
967
968static unsigned int
969get_reloc_type (bfd_vma reloc_info)
970{
971 if (is_32bit_elf)
972 return ELF32_R_TYPE (reloc_info);
973
974 switch (elf_header.e_machine)
975 {
976 case EM_MIPS:
977 /* Note: We assume that reloc_info has already been adjusted for us. */
978 return ELF64_MIPS_R_TYPE (reloc_info);
979
980 case EM_SPARCV9:
981 return ELF64_R_TYPE_ID (reloc_info);
982
983 default:
984 return ELF64_R_TYPE (reloc_info);
985 }
986}
987
988/* Return the symbol index extracted from the reloc info field. */
989
990static bfd_vma
991get_reloc_symindex (bfd_vma reloc_info)
992{
993 return is_32bit_elf ? ELF32_R_SYM (reloc_info) : ELF64_R_SYM (reloc_info);
994}
995
13761a11
NC
996static inline bfd_boolean
997uses_msp430x_relocs (void)
998{
999 return
1000 elf_header.e_machine == EM_MSP430 /* Paranoia. */
1001 /* GCC uses osabi == ELFOSBI_STANDALONE. */
1002 && (((elf_header.e_flags & EF_MSP430_MACH) == E_MSP430_MACH_MSP430X)
1003 /* TI compiler uses ELFOSABI_NONE. */
1004 || (elf_header.e_ident[EI_OSABI] == ELFOSABI_NONE));
1005}
1006
d3ba0551
AM
1007/* Display the contents of the relocation data found at the specified
1008 offset. */
ee42cf8c 1009
41e92641 1010static void
2cf0635d 1011dump_relocations (FILE * file,
d3ba0551
AM
1012 unsigned long rel_offset,
1013 unsigned long rel_size,
2cf0635d 1014 Elf_Internal_Sym * symtab,
d3ba0551 1015 unsigned long nsyms,
2cf0635d 1016 char * strtab,
d79b3d50 1017 unsigned long strtablen,
d3ba0551 1018 int is_rela)
4d6ed7c8 1019{
b34976b6 1020 unsigned int i;
2cf0635d 1021 Elf_Internal_Rela * rels;
103f02d3 1022
4d6ed7c8
NC
1023 if (is_rela == UNKNOWN)
1024 is_rela = guess_is_rela (elf_header.e_machine);
103f02d3 1025
4d6ed7c8
NC
1026 if (is_rela)
1027 {
c8286bd1 1028 if (!slurp_rela_relocs (file, rel_offset, rel_size, &rels, &rel_size))
41e92641 1029 return;
4d6ed7c8
NC
1030 }
1031 else
1032 {
1033 if (!slurp_rel_relocs (file, rel_offset, rel_size, &rels, &rel_size))
41e92641 1034 return;
252b5132
RH
1035 }
1036
410f7a12
L
1037 if (is_32bit_elf)
1038 {
1039 if (is_rela)
2c71103e
NC
1040 {
1041 if (do_wide)
1042 printf (_(" Offset Info Type Sym. Value Symbol's Name + Addend\n"));
1043 else
1044 printf (_(" Offset Info Type Sym.Value Sym. Name + Addend\n"));
1045 }
410f7a12 1046 else
2c71103e
NC
1047 {
1048 if (do_wide)
1049 printf (_(" Offset Info Type Sym. Value Symbol's Name\n"));
1050 else
1051 printf (_(" Offset Info Type Sym.Value Sym. Name\n"));
1052 }
410f7a12 1053 }
252b5132 1054 else
410f7a12
L
1055 {
1056 if (is_rela)
2c71103e
NC
1057 {
1058 if (do_wide)
8beeaeb7 1059 printf (_(" Offset Info Type Symbol's Value Symbol's Name + Addend\n"));
2c71103e
NC
1060 else
1061 printf (_(" Offset Info Type Sym. Value Sym. Name + Addend\n"));
1062 }
410f7a12 1063 else
2c71103e
NC
1064 {
1065 if (do_wide)
8beeaeb7 1066 printf (_(" Offset Info Type Symbol's Value Symbol's Name\n"));
2c71103e
NC
1067 else
1068 printf (_(" Offset Info Type Sym. Value Sym. Name\n"));
1069 }
410f7a12 1070 }
252b5132
RH
1071
1072 for (i = 0; i < rel_size; i++)
1073 {
2cf0635d 1074 const char * rtype;
b34976b6 1075 bfd_vma offset;
91d6fa6a 1076 bfd_vma inf;
b34976b6
AM
1077 bfd_vma symtab_index;
1078 bfd_vma type;
103f02d3 1079
b34976b6 1080 offset = rels[i].r_offset;
91d6fa6a 1081 inf = rels[i].r_info;
103f02d3 1082
91d6fa6a
NC
1083 type = get_reloc_type (inf);
1084 symtab_index = get_reloc_symindex (inf);
252b5132 1085
410f7a12
L
1086 if (is_32bit_elf)
1087 {
39dbeff8
AM
1088 printf ("%8.8lx %8.8lx ",
1089 (unsigned long) offset & 0xffffffff,
91d6fa6a 1090 (unsigned long) inf & 0xffffffff);
410f7a12
L
1091 }
1092 else
1093 {
39dbeff8
AM
1094#if BFD_HOST_64BIT_LONG
1095 printf (do_wide
1096 ? "%16.16lx %16.16lx "
1097 : "%12.12lx %12.12lx ",
91d6fa6a 1098 offset, inf);
39dbeff8 1099#elif BFD_HOST_64BIT_LONG_LONG
6e3d6dc1 1100#ifndef __MSVCRT__
39dbeff8
AM
1101 printf (do_wide
1102 ? "%16.16llx %16.16llx "
1103 : "%12.12llx %12.12llx ",
91d6fa6a 1104 offset, inf);
6e3d6dc1
NC
1105#else
1106 printf (do_wide
1107 ? "%16.16I64x %16.16I64x "
1108 : "%12.12I64x %12.12I64x ",
91d6fa6a 1109 offset, inf);
6e3d6dc1 1110#endif
39dbeff8 1111#else
2c71103e
NC
1112 printf (do_wide
1113 ? "%8.8lx%8.8lx %8.8lx%8.8lx "
1114 : "%4.4lx%8.8lx %4.4lx%8.8lx ",
410f7a12
L
1115 _bfd_int64_high (offset),
1116 _bfd_int64_low (offset),
91d6fa6a
NC
1117 _bfd_int64_high (inf),
1118 _bfd_int64_low (inf));
9ea033b2 1119#endif
410f7a12 1120 }
103f02d3 1121
252b5132
RH
1122 switch (elf_header.e_machine)
1123 {
1124 default:
1125 rtype = NULL;
1126 break;
1127
a06ea964
NC
1128 case EM_AARCH64:
1129 rtype = elf_aarch64_reloc_type (type);
1130 break;
1131
2b0337b0 1132 case EM_M32R:
252b5132 1133 case EM_CYGNUS_M32R:
9ea033b2 1134 rtype = elf_m32r_reloc_type (type);
252b5132
RH
1135 break;
1136
1137 case EM_386:
1138 case EM_486:
9ea033b2 1139 rtype = elf_i386_reloc_type (type);
252b5132
RH
1140 break;
1141
ba2685cc
AM
1142 case EM_68HC11:
1143 case EM_68HC12:
1144 rtype = elf_m68hc11_reloc_type (type);
1145 break;
75751cd9 1146
252b5132 1147 case EM_68K:
9ea033b2 1148 rtype = elf_m68k_reloc_type (type);
252b5132
RH
1149 break;
1150
63fcb9e9 1151 case EM_960:
9ea033b2 1152 rtype = elf_i960_reloc_type (type);
63fcb9e9
ILT
1153 break;
1154
adde6300 1155 case EM_AVR:
2b0337b0 1156 case EM_AVR_OLD:
adde6300
AM
1157 rtype = elf_avr_reloc_type (type);
1158 break;
1159
9ea033b2
NC
1160 case EM_OLD_SPARCV9:
1161 case EM_SPARC32PLUS:
1162 case EM_SPARCV9:
252b5132 1163 case EM_SPARC:
9ea033b2 1164 rtype = elf_sparc_reloc_type (type);
252b5132
RH
1165 break;
1166
e9f53129
AM
1167 case EM_SPU:
1168 rtype = elf_spu_reloc_type (type);
1169 break;
1170
708e2187
NC
1171 case EM_V800:
1172 rtype = v800_reloc_type (type);
1173 break;
2b0337b0 1174 case EM_V850:
252b5132 1175 case EM_CYGNUS_V850:
9ea033b2 1176 rtype = v850_reloc_type (type);
252b5132
RH
1177 break;
1178
2b0337b0 1179 case EM_D10V:
252b5132 1180 case EM_CYGNUS_D10V:
9ea033b2 1181 rtype = elf_d10v_reloc_type (type);
252b5132
RH
1182 break;
1183
2b0337b0 1184 case EM_D30V:
252b5132 1185 case EM_CYGNUS_D30V:
9ea033b2 1186 rtype = elf_d30v_reloc_type (type);
252b5132
RH
1187 break;
1188
d172d4ba
NC
1189 case EM_DLX:
1190 rtype = elf_dlx_reloc_type (type);
1191 break;
1192
252b5132 1193 case EM_SH:
9ea033b2 1194 rtype = elf_sh_reloc_type (type);
252b5132
RH
1195 break;
1196
2b0337b0 1197 case EM_MN10300:
252b5132 1198 case EM_CYGNUS_MN10300:
9ea033b2 1199 rtype = elf_mn10300_reloc_type (type);
252b5132
RH
1200 break;
1201
2b0337b0 1202 case EM_MN10200:
252b5132 1203 case EM_CYGNUS_MN10200:
9ea033b2 1204 rtype = elf_mn10200_reloc_type (type);
252b5132
RH
1205 break;
1206
2b0337b0 1207 case EM_FR30:
252b5132 1208 case EM_CYGNUS_FR30:
9ea033b2 1209 rtype = elf_fr30_reloc_type (type);
252b5132
RH
1210 break;
1211
ba2685cc
AM
1212 case EM_CYGNUS_FRV:
1213 rtype = elf_frv_reloc_type (type);
1214 break;
5c70f934 1215
252b5132 1216 case EM_MCORE:
9ea033b2 1217 rtype = elf_mcore_reloc_type (type);
252b5132
RH
1218 break;
1219
3c3bdf30
NC
1220 case EM_MMIX:
1221 rtype = elf_mmix_reloc_type (type);
1222 break;
1223
5506d11a
AM
1224 case EM_MOXIE:
1225 rtype = elf_moxie_reloc_type (type);
1226 break;
1227
2469cfa2 1228 case EM_MSP430:
13761a11
NC
1229 if (uses_msp430x_relocs ())
1230 {
1231 rtype = elf_msp430x_reloc_type (type);
1232 break;
1233 }
2469cfa2
NC
1234 case EM_MSP430_OLD:
1235 rtype = elf_msp430_reloc_type (type);
1236 break;
1237
35c08157
KLC
1238 case EM_NDS32:
1239 rtype = elf_nds32_reloc_type (type);
1240 break;
1241
252b5132 1242 case EM_PPC:
9ea033b2 1243 rtype = elf_ppc_reloc_type (type);
252b5132
RH
1244 break;
1245
c833c019
AM
1246 case EM_PPC64:
1247 rtype = elf_ppc64_reloc_type (type);
1248 break;
1249
252b5132 1250 case EM_MIPS:
4fe85591 1251 case EM_MIPS_RS3_LE:
9ea033b2 1252 rtype = elf_mips_reloc_type (type);
252b5132
RH
1253 break;
1254
1255 case EM_ALPHA:
9ea033b2 1256 rtype = elf_alpha_reloc_type (type);
252b5132
RH
1257 break;
1258
1259 case EM_ARM:
9ea033b2 1260 rtype = elf_arm_reloc_type (type);
252b5132
RH
1261 break;
1262
584da044 1263 case EM_ARC:
9ea033b2 1264 rtype = elf_arc_reloc_type (type);
252b5132
RH
1265 break;
1266
1267 case EM_PARISC:
69e617ca 1268 rtype = elf_hppa_reloc_type (type);
252b5132 1269 break;
7d466069 1270
b8720f9d
JL
1271 case EM_H8_300:
1272 case EM_H8_300H:
1273 case EM_H8S:
1274 rtype = elf_h8_reloc_type (type);
1275 break;
1276
73589c9d
CS
1277 case EM_OR1K:
1278 rtype = elf_or1k_reloc_type (type);
3b16e843
NC
1279 break;
1280
7d466069 1281 case EM_PJ:
2b0337b0 1282 case EM_PJ_OLD:
7d466069
ILT
1283 rtype = elf_pj_reloc_type (type);
1284 break;
800eeca4
JW
1285 case EM_IA_64:
1286 rtype = elf_ia64_reloc_type (type);
1287 break;
1b61cf92
HPN
1288
1289 case EM_CRIS:
1290 rtype = elf_cris_reloc_type (type);
1291 break;
535c37ff
JE
1292
1293 case EM_860:
1294 rtype = elf_i860_reloc_type (type);
1295 break;
bcedfee6
NC
1296
1297 case EM_X86_64:
8a9036a4 1298 case EM_L1OM:
7a9068fe 1299 case EM_K1OM:
bcedfee6
NC
1300 rtype = elf_x86_64_reloc_type (type);
1301 break;
a85d7ed0 1302
35b1837e
AM
1303 case EM_S370:
1304 rtype = i370_reloc_type (type);
1305 break;
1306
53c7db4b
KH
1307 case EM_S390_OLD:
1308 case EM_S390:
1309 rtype = elf_s390_reloc_type (type);
1310 break;
93fbbb04 1311
1c0d3aa6
NC
1312 case EM_SCORE:
1313 rtype = elf_score_reloc_type (type);
1314 break;
1315
93fbbb04
GK
1316 case EM_XSTORMY16:
1317 rtype = elf_xstormy16_reloc_type (type);
1318 break;
179d3252 1319
1fe1f39c
NC
1320 case EM_CRX:
1321 rtype = elf_crx_reloc_type (type);
1322 break;
1323
179d3252
JT
1324 case EM_VAX:
1325 rtype = elf_vax_reloc_type (type);
1326 break;
1e4cf259 1327
cfb8c092
NC
1328 case EM_ADAPTEVA_EPIPHANY:
1329 rtype = elf_epiphany_reloc_type (type);
1330 break;
1331
1e4cf259
NC
1332 case EM_IP2K:
1333 case EM_IP2K_OLD:
1334 rtype = elf_ip2k_reloc_type (type);
1335 break;
3b36097d
SC
1336
1337 case EM_IQ2000:
1338 rtype = elf_iq2000_reloc_type (type);
1339 break;
88da6820
NC
1340
1341 case EM_XTENSA_OLD:
1342 case EM_XTENSA:
1343 rtype = elf_xtensa_reloc_type (type);
1344 break;
a34e3ecb 1345
84e94c90
NC
1346 case EM_LATTICEMICO32:
1347 rtype = elf_lm32_reloc_type (type);
1348 break;
1349
ff7eeb89 1350 case EM_M32C_OLD:
49f58d10
JB
1351 case EM_M32C:
1352 rtype = elf_m32c_reloc_type (type);
1353 break;
1354
d031aafb
NS
1355 case EM_MT:
1356 rtype = elf_mt_reloc_type (type);
a34e3ecb 1357 break;
1d65ded4
CM
1358
1359 case EM_BLACKFIN:
1360 rtype = elf_bfin_reloc_type (type);
1361 break;
15ab5209
DB
1362
1363 case EM_CYGNUS_MEP:
1364 rtype = elf_mep_reloc_type (type);
1365 break;
60bca95a
NC
1366
1367 case EM_CR16:
1368 rtype = elf_cr16_reloc_type (type);
1369 break;
dd24e3da 1370
7ba29e2a
NC
1371 case EM_MICROBLAZE:
1372 case EM_MICROBLAZE_OLD:
1373 rtype = elf_microblaze_reloc_type (type);
1374 break;
c7927a3c 1375
99c513f6
DD
1376 case EM_RL78:
1377 rtype = elf_rl78_reloc_type (type);
1378 break;
1379
c7927a3c
NC
1380 case EM_RX:
1381 rtype = elf_rx_reloc_type (type);
1382 break;
c29aca4a 1383
a3c62988
NC
1384 case EM_METAG:
1385 rtype = elf_metag_reloc_type (type);
1386 break;
1387
c29aca4a
NC
1388 case EM_XC16X:
1389 case EM_C166:
1390 rtype = elf_xc16x_reloc_type (type);
1391 break;
40b36596
JM
1392
1393 case EM_TI_C6000:
1394 rtype = elf_tic6x_reloc_type (type);
1395 break;
aa137e4d
NC
1396
1397 case EM_TILEGX:
1398 rtype = elf_tilegx_reloc_type (type);
1399 break;
1400
1401 case EM_TILEPRO:
1402 rtype = elf_tilepro_reloc_type (type);
1403 break;
f6c1a2d5
NC
1404
1405 case EM_XGATE:
1406 rtype = elf_xgate_reloc_type (type);
1407 break;
36591ba1
SL
1408
1409 case EM_ALTERA_NIOS2:
1410 rtype = elf_nios2_reloc_type (type);
1411 break;
252b5132
RH
1412 }
1413
1414 if (rtype == NULL)
39dbeff8 1415 printf (_("unrecognized: %-7lx"), (unsigned long) type & 0xffffffff);
252b5132 1416 else
8beeaeb7 1417 printf (do_wide ? "%-22.22s" : "%-17.17s", rtype);
252b5132 1418
7ace3541 1419 if (elf_header.e_machine == EM_ALPHA
157c2599 1420 && rtype != NULL
7ace3541
RH
1421 && streq (rtype, "R_ALPHA_LITUSE")
1422 && is_rela)
1423 {
1424 switch (rels[i].r_addend)
1425 {
1426 case LITUSE_ALPHA_ADDR: rtype = "ADDR"; break;
1427 case LITUSE_ALPHA_BASE: rtype = "BASE"; break;
1428 case LITUSE_ALPHA_BYTOFF: rtype = "BYTOFF"; break;
1429 case LITUSE_ALPHA_JSR: rtype = "JSR"; break;
1430 case LITUSE_ALPHA_TLSGD: rtype = "TLSGD"; break;
1431 case LITUSE_ALPHA_TLSLDM: rtype = "TLSLDM"; break;
1432 case LITUSE_ALPHA_JSRDIRECT: rtype = "JSRDIRECT"; break;
1433 default: rtype = NULL;
1434 }
1435 if (rtype)
1436 printf (" (%s)", rtype);
1437 else
1438 {
1439 putchar (' ');
1440 printf (_("<unknown addend: %lx>"),
1441 (unsigned long) rels[i].r_addend);
1442 }
1443 }
1444 else if (symtab_index)
252b5132 1445 {
af3fc3bc 1446 if (symtab == NULL || symtab_index >= nsyms)
2b692964 1447 printf (_(" bad symbol index: %08lx"), (unsigned long) symtab_index);
af3fc3bc 1448 else
19936277 1449 {
2cf0635d 1450 Elf_Internal_Sym * psym;
19936277 1451
af3fc3bc 1452 psym = symtab + symtab_index;
103f02d3 1453
af3fc3bc 1454 printf (" ");
171191ba 1455
d8045f23
NC
1456 if (ELF_ST_TYPE (psym->st_info) == STT_GNU_IFUNC)
1457 {
1458 const char * name;
1459 unsigned int len;
1460 unsigned int width = is_32bit_elf ? 8 : 14;
1461
1462 /* Relocations against GNU_IFUNC symbols do not use the value
1463 of the symbol as the address to relocate against. Instead
1464 they invoke the function named by the symbol and use its
1465 result as the address for relocation.
1466
1467 To indicate this to the user, do not display the value of
1468 the symbol in the "Symbols's Value" field. Instead show
1469 its name followed by () as a hint that the symbol is
1470 invoked. */
1471
1472 if (strtab == NULL
1473 || psym->st_name == 0
1474 || psym->st_name >= strtablen)
1475 name = "??";
1476 else
1477 name = strtab + psym->st_name;
1478
1479 len = print_symbol (width, name);
1480 printf ("()%-*s", len <= width ? (width + 1) - len : 1, " ");
1481 }
1482 else
1483 {
1484 print_vma (psym->st_value, LONG_HEX);
171191ba 1485
d8045f23
NC
1486 printf (is_32bit_elf ? " " : " ");
1487 }
103f02d3 1488
af3fc3bc 1489 if (psym->st_name == 0)
f1ef08cb 1490 {
2cf0635d 1491 const char * sec_name = "<null>";
f1ef08cb
AM
1492 char name_buf[40];
1493
1494 if (ELF_ST_TYPE (psym->st_info) == STT_SECTION)
1495 {
4fbb74a6 1496 if (psym->st_shndx < elf_header.e_shnum)
74e1a04b 1497 sec_name = SECTION_NAME (section_headers + psym->st_shndx);
f1ef08cb
AM
1498 else if (psym->st_shndx == SHN_ABS)
1499 sec_name = "ABS";
1500 else if (psym->st_shndx == SHN_COMMON)
1501 sec_name = "COMMON";
ac145307
BS
1502 else if ((elf_header.e_machine == EM_MIPS
1503 && psym->st_shndx == SHN_MIPS_SCOMMON)
1504 || (elf_header.e_machine == EM_TI_C6000
1505 && psym->st_shndx == SHN_TIC6X_SCOMMON))
172553c7
TS
1506 sec_name = "SCOMMON";
1507 else if (elf_header.e_machine == EM_MIPS
1508 && psym->st_shndx == SHN_MIPS_SUNDEFINED)
1509 sec_name = "SUNDEF";
8a9036a4 1510 else if ((elf_header.e_machine == EM_X86_64
7a9068fe
L
1511 || elf_header.e_machine == EM_L1OM
1512 || elf_header.e_machine == EM_K1OM)
3b22753a
L
1513 && psym->st_shndx == SHN_X86_64_LCOMMON)
1514 sec_name = "LARGE_COMMON";
9ce701e2
L
1515 else if (elf_header.e_machine == EM_IA_64
1516 && elf_header.e_ident[EI_OSABI] == ELFOSABI_HPUX
1517 && psym->st_shndx == SHN_IA_64_ANSI_COMMON)
1518 sec_name = "ANSI_COM";
28f997cf 1519 else if (is_ia64_vms ()
148b93f2
NC
1520 && psym->st_shndx == SHN_IA_64_VMS_SYMVEC)
1521 sec_name = "VMS_SYMVEC";
f1ef08cb
AM
1522 else
1523 {
1524 sprintf (name_buf, "<section 0x%x>",
1525 (unsigned int) psym->st_shndx);
1526 sec_name = name_buf;
1527 }
1528 }
1529 print_symbol (22, sec_name);
1530 }
af3fc3bc 1531 else if (strtab == NULL)
d79b3d50 1532 printf (_("<string table index: %3ld>"), psym->st_name);
c256ffe7 1533 else if (psym->st_name >= strtablen)
d79b3d50 1534 printf (_("<corrupt string table index: %3ld>"), psym->st_name);
af3fc3bc 1535 else
2c71103e 1536 print_symbol (22, strtab + psym->st_name);
103f02d3 1537
af3fc3bc 1538 if (is_rela)
171191ba 1539 {
598aaa76 1540 bfd_signed_vma off = rels[i].r_addend;
171191ba 1541
91d6fa6a 1542 if (off < 0)
598aaa76 1543 printf (" - %" BFD_VMA_FMT "x", - off);
171191ba 1544 else
598aaa76 1545 printf (" + %" BFD_VMA_FMT "x", off);
171191ba 1546 }
19936277 1547 }
252b5132 1548 }
1b228002 1549 else if (is_rela)
f7a99963 1550 {
e04d7088
L
1551 bfd_signed_vma off = rels[i].r_addend;
1552
1553 printf ("%*c", is_32bit_elf ? 12 : 20, ' ');
1554 if (off < 0)
1555 printf ("-%" BFD_VMA_FMT "x", - off);
1556 else
1557 printf ("%" BFD_VMA_FMT "x", off);
f7a99963 1558 }
252b5132 1559
157c2599
NC
1560 if (elf_header.e_machine == EM_SPARCV9
1561 && rtype != NULL
1562 && streq (rtype, "R_SPARC_OLO10"))
91d6fa6a 1563 printf (" + %lx", (unsigned long) ELF64_R_TYPE_DATA (inf));
351b4b40 1564
252b5132 1565 putchar ('\n');
2c71103e 1566
aca88567 1567#ifdef BFD64
53c7db4b 1568 if (! is_32bit_elf && elf_header.e_machine == EM_MIPS)
2c71103e 1569 {
91d6fa6a
NC
1570 bfd_vma type2 = ELF64_MIPS_R_TYPE2 (inf);
1571 bfd_vma type3 = ELF64_MIPS_R_TYPE3 (inf);
2cf0635d
NC
1572 const char * rtype2 = elf_mips_reloc_type (type2);
1573 const char * rtype3 = elf_mips_reloc_type (type3);
aca88567 1574
2c71103e
NC
1575 printf (" Type2: ");
1576
1577 if (rtype2 == NULL)
39dbeff8
AM
1578 printf (_("unrecognized: %-7lx"),
1579 (unsigned long) type2 & 0xffffffff);
2c71103e
NC
1580 else
1581 printf ("%-17.17s", rtype2);
1582
18bd398b 1583 printf ("\n Type3: ");
2c71103e
NC
1584
1585 if (rtype3 == NULL)
39dbeff8
AM
1586 printf (_("unrecognized: %-7lx"),
1587 (unsigned long) type3 & 0xffffffff);
2c71103e
NC
1588 else
1589 printf ("%-17.17s", rtype3);
1590
53c7db4b 1591 putchar ('\n');
2c71103e 1592 }
aca88567 1593#endif /* BFD64 */
252b5132
RH
1594 }
1595
c8286bd1 1596 free (rels);
252b5132
RH
1597}
1598
1599static const char *
d3ba0551 1600get_mips_dynamic_type (unsigned long type)
252b5132
RH
1601{
1602 switch (type)
1603 {
1604 case DT_MIPS_RLD_VERSION: return "MIPS_RLD_VERSION";
1605 case DT_MIPS_TIME_STAMP: return "MIPS_TIME_STAMP";
1606 case DT_MIPS_ICHECKSUM: return "MIPS_ICHECKSUM";
1607 case DT_MIPS_IVERSION: return "MIPS_IVERSION";
1608 case DT_MIPS_FLAGS: return "MIPS_FLAGS";
1609 case DT_MIPS_BASE_ADDRESS: return "MIPS_BASE_ADDRESS";
1610 case DT_MIPS_MSYM: return "MIPS_MSYM";
1611 case DT_MIPS_CONFLICT: return "MIPS_CONFLICT";
1612 case DT_MIPS_LIBLIST: return "MIPS_LIBLIST";
1613 case DT_MIPS_LOCAL_GOTNO: return "MIPS_LOCAL_GOTNO";
1614 case DT_MIPS_CONFLICTNO: return "MIPS_CONFLICTNO";
1615 case DT_MIPS_LIBLISTNO: return "MIPS_LIBLISTNO";
1616 case DT_MIPS_SYMTABNO: return "MIPS_SYMTABNO";
1617 case DT_MIPS_UNREFEXTNO: return "MIPS_UNREFEXTNO";
1618 case DT_MIPS_GOTSYM: return "MIPS_GOTSYM";
1619 case DT_MIPS_HIPAGENO: return "MIPS_HIPAGENO";
1620 case DT_MIPS_RLD_MAP: return "MIPS_RLD_MAP";
1621 case DT_MIPS_DELTA_CLASS: return "MIPS_DELTA_CLASS";
1622 case DT_MIPS_DELTA_CLASS_NO: return "MIPS_DELTA_CLASS_NO";
1623 case DT_MIPS_DELTA_INSTANCE: return "MIPS_DELTA_INSTANCE";
1624 case DT_MIPS_DELTA_INSTANCE_NO: return "MIPS_DELTA_INSTANCE_NO";
1625 case DT_MIPS_DELTA_RELOC: return "MIPS_DELTA_RELOC";
1626 case DT_MIPS_DELTA_RELOC_NO: return "MIPS_DELTA_RELOC_NO";
1627 case DT_MIPS_DELTA_SYM: return "MIPS_DELTA_SYM";
1628 case DT_MIPS_DELTA_SYM_NO: return "MIPS_DELTA_SYM_NO";
1629 case DT_MIPS_DELTA_CLASSSYM: return "MIPS_DELTA_CLASSSYM";
1630 case DT_MIPS_DELTA_CLASSSYM_NO: return "MIPS_DELTA_CLASSSYM_NO";
1631 case DT_MIPS_CXX_FLAGS: return "MIPS_CXX_FLAGS";
1632 case DT_MIPS_PIXIE_INIT: return "MIPS_PIXIE_INIT";
1633 case DT_MIPS_SYMBOL_LIB: return "MIPS_SYMBOL_LIB";
1634 case DT_MIPS_LOCALPAGE_GOTIDX: return "MIPS_LOCALPAGE_GOTIDX";
1635 case DT_MIPS_LOCAL_GOTIDX: return "MIPS_LOCAL_GOTIDX";
1636 case DT_MIPS_HIDDEN_GOTIDX: return "MIPS_HIDDEN_GOTIDX";
1637 case DT_MIPS_PROTECTED_GOTIDX: return "MIPS_PROTECTED_GOTIDX";
1638 case DT_MIPS_OPTIONS: return "MIPS_OPTIONS";
1639 case DT_MIPS_INTERFACE: return "MIPS_INTERFACE";
1640 case DT_MIPS_DYNSTR_ALIGN: return "MIPS_DYNSTR_ALIGN";
1641 case DT_MIPS_INTERFACE_SIZE: return "MIPS_INTERFACE_SIZE";
1642 case DT_MIPS_RLD_TEXT_RESOLVE_ADDR: return "MIPS_RLD_TEXT_RESOLVE_ADDR";
1643 case DT_MIPS_PERF_SUFFIX: return "MIPS_PERF_SUFFIX";
1644 case DT_MIPS_COMPACT_SIZE: return "MIPS_COMPACT_SIZE";
1645 case DT_MIPS_GP_VALUE: return "MIPS_GP_VALUE";
1646 case DT_MIPS_AUX_DYNAMIC: return "MIPS_AUX_DYNAMIC";
861fb55a
DJ
1647 case DT_MIPS_PLTGOT: return "MIPS_PLTGOT";
1648 case DT_MIPS_RWPLT: return "MIPS_RWPLT";
252b5132
RH
1649 default:
1650 return NULL;
1651 }
1652}
1653
9a097730 1654static const char *
d3ba0551 1655get_sparc64_dynamic_type (unsigned long type)
9a097730
RH
1656{
1657 switch (type)
1658 {
1659 case DT_SPARC_REGISTER: return "SPARC_REGISTER";
1660 default:
1661 return NULL;
1662 }
103f02d3
UD
1663}
1664
7490d522
AM
1665static const char *
1666get_ppc_dynamic_type (unsigned long type)
1667{
1668 switch (type)
1669 {
a7f2871e 1670 case DT_PPC_GOT: return "PPC_GOT";
e8910a83 1671 case DT_PPC_OPT: return "PPC_OPT";
7490d522
AM
1672 default:
1673 return NULL;
1674 }
1675}
1676
f1cb7e17 1677static const char *
d3ba0551 1678get_ppc64_dynamic_type (unsigned long type)
f1cb7e17
AM
1679{
1680 switch (type)
1681 {
a7f2871e
AM
1682 case DT_PPC64_GLINK: return "PPC64_GLINK";
1683 case DT_PPC64_OPD: return "PPC64_OPD";
1684 case DT_PPC64_OPDSZ: return "PPC64_OPDSZ";
e8910a83 1685 case DT_PPC64_OPT: return "PPC64_OPT";
f1cb7e17
AM
1686 default:
1687 return NULL;
1688 }
1689}
1690
103f02d3 1691static const char *
d3ba0551 1692get_parisc_dynamic_type (unsigned long type)
103f02d3
UD
1693{
1694 switch (type)
1695 {
1696 case DT_HP_LOAD_MAP: return "HP_LOAD_MAP";
1697 case DT_HP_DLD_FLAGS: return "HP_DLD_FLAGS";
1698 case DT_HP_DLD_HOOK: return "HP_DLD_HOOK";
1699 case DT_HP_UX10_INIT: return "HP_UX10_INIT";
1700 case DT_HP_UX10_INITSZ: return "HP_UX10_INITSZ";
1701 case DT_HP_PREINIT: return "HP_PREINIT";
1702 case DT_HP_PREINITSZ: return "HP_PREINITSZ";
1703 case DT_HP_NEEDED: return "HP_NEEDED";
1704 case DT_HP_TIME_STAMP: return "HP_TIME_STAMP";
1705 case DT_HP_CHECKSUM: return "HP_CHECKSUM";
1706 case DT_HP_GST_SIZE: return "HP_GST_SIZE";
1707 case DT_HP_GST_VERSION: return "HP_GST_VERSION";
1708 case DT_HP_GST_HASHVAL: return "HP_GST_HASHVAL";
eec8f817
DA
1709 case DT_HP_EPLTREL: return "HP_GST_EPLTREL";
1710 case DT_HP_EPLTRELSZ: return "HP_GST_EPLTRELSZ";
1711 case DT_HP_FILTERED: return "HP_FILTERED";
1712 case DT_HP_FILTER_TLS: return "HP_FILTER_TLS";
1713 case DT_HP_COMPAT_FILTERED: return "HP_COMPAT_FILTERED";
1714 case DT_HP_LAZYLOAD: return "HP_LAZYLOAD";
1715 case DT_HP_BIND_NOW_COUNT: return "HP_BIND_NOW_COUNT";
1716 case DT_PLT: return "PLT";
1717 case DT_PLT_SIZE: return "PLT_SIZE";
1718 case DT_DLT: return "DLT";
1719 case DT_DLT_SIZE: return "DLT_SIZE";
103f02d3
UD
1720 default:
1721 return NULL;
1722 }
1723}
9a097730 1724
ecc51f48 1725static const char *
d3ba0551 1726get_ia64_dynamic_type (unsigned long type)
ecc51f48
NC
1727{
1728 switch (type)
1729 {
148b93f2
NC
1730 case DT_IA_64_PLT_RESERVE: return "IA_64_PLT_RESERVE";
1731 case DT_IA_64_VMS_SUBTYPE: return "VMS_SUBTYPE";
1732 case DT_IA_64_VMS_IMGIOCNT: return "VMS_IMGIOCNT";
1733 case DT_IA_64_VMS_LNKFLAGS: return "VMS_LNKFLAGS";
1734 case DT_IA_64_VMS_VIR_MEM_BLK_SIZ: return "VMS_VIR_MEM_BLK_SIZ";
1735 case DT_IA_64_VMS_IDENT: return "VMS_IDENT";
1736 case DT_IA_64_VMS_NEEDED_IDENT: return "VMS_NEEDED_IDENT";
1737 case DT_IA_64_VMS_IMG_RELA_CNT: return "VMS_IMG_RELA_CNT";
1738 case DT_IA_64_VMS_SEG_RELA_CNT: return "VMS_SEG_RELA_CNT";
1739 case DT_IA_64_VMS_FIXUP_RELA_CNT: return "VMS_FIXUP_RELA_CNT";
1740 case DT_IA_64_VMS_FIXUP_NEEDED: return "VMS_FIXUP_NEEDED";
1741 case DT_IA_64_VMS_SYMVEC_CNT: return "VMS_SYMVEC_CNT";
1742 case DT_IA_64_VMS_XLATED: return "VMS_XLATED";
1743 case DT_IA_64_VMS_STACKSIZE: return "VMS_STACKSIZE";
1744 case DT_IA_64_VMS_UNWINDSZ: return "VMS_UNWINDSZ";
1745 case DT_IA_64_VMS_UNWIND_CODSEG: return "VMS_UNWIND_CODSEG";
1746 case DT_IA_64_VMS_UNWIND_INFOSEG: return "VMS_UNWIND_INFOSEG";
1747 case DT_IA_64_VMS_LINKTIME: return "VMS_LINKTIME";
1748 case DT_IA_64_VMS_SEG_NO: return "VMS_SEG_NO";
1749 case DT_IA_64_VMS_SYMVEC_OFFSET: return "VMS_SYMVEC_OFFSET";
1750 case DT_IA_64_VMS_SYMVEC_SEG: return "VMS_SYMVEC_SEG";
1751 case DT_IA_64_VMS_UNWIND_OFFSET: return "VMS_UNWIND_OFFSET";
1752 case DT_IA_64_VMS_UNWIND_SEG: return "VMS_UNWIND_SEG";
1753 case DT_IA_64_VMS_STRTAB_OFFSET: return "VMS_STRTAB_OFFSET";
1754 case DT_IA_64_VMS_SYSVER_OFFSET: return "VMS_SYSVER_OFFSET";
1755 case DT_IA_64_VMS_IMG_RELA_OFF: return "VMS_IMG_RELA_OFF";
1756 case DT_IA_64_VMS_SEG_RELA_OFF: return "VMS_SEG_RELA_OFF";
1757 case DT_IA_64_VMS_FIXUP_RELA_OFF: return "VMS_FIXUP_RELA_OFF";
1758 case DT_IA_64_VMS_PLTGOT_OFFSET: return "VMS_PLTGOT_OFFSET";
1759 case DT_IA_64_VMS_PLTGOT_SEG: return "VMS_PLTGOT_SEG";
1760 case DT_IA_64_VMS_FPMODE: return "VMS_FPMODE";
ecc51f48
NC
1761 default:
1762 return NULL;
1763 }
1764}
1765
fabcb361
RH
1766static const char *
1767get_alpha_dynamic_type (unsigned long type)
1768{
1769 switch (type)
1770 {
1771 case DT_ALPHA_PLTRO: return "ALPHA_PLTRO";
1772 default:
1773 return NULL;
1774 }
1775}
1776
1c0d3aa6
NC
1777static const char *
1778get_score_dynamic_type (unsigned long type)
1779{
1780 switch (type)
1781 {
1782 case DT_SCORE_BASE_ADDRESS: return "SCORE_BASE_ADDRESS";
1783 case DT_SCORE_LOCAL_GOTNO: return "SCORE_LOCAL_GOTNO";
1784 case DT_SCORE_SYMTABNO: return "SCORE_SYMTABNO";
1785 case DT_SCORE_GOTSYM: return "SCORE_GOTSYM";
1786 case DT_SCORE_UNREFEXTNO: return "SCORE_UNREFEXTNO";
1787 case DT_SCORE_HIPAGENO: return "SCORE_HIPAGENO";
1788 default:
1789 return NULL;
1790 }
1791}
1792
40b36596
JM
1793static const char *
1794get_tic6x_dynamic_type (unsigned long type)
1795{
1796 switch (type)
1797 {
1798 case DT_C6000_GSYM_OFFSET: return "C6000_GSYM_OFFSET";
1799 case DT_C6000_GSTR_OFFSET: return "C6000_GSTR_OFFSET";
1800 case DT_C6000_DSBT_BASE: return "C6000_DSBT_BASE";
1801 case DT_C6000_DSBT_SIZE: return "C6000_DSBT_SIZE";
1802 case DT_C6000_PREEMPTMAP: return "C6000_PREEMPTMAP";
1803 case DT_C6000_DSBT_INDEX: return "C6000_DSBT_INDEX";
1804 default:
1805 return NULL;
1806 }
1807}
1c0d3aa6 1808
36591ba1
SL
1809static const char *
1810get_nios2_dynamic_type (unsigned long type)
1811{
1812 switch (type)
1813 {
1814 case DT_NIOS2_GP: return "NIOS2_GP";
1815 default:
1816 return NULL;
1817 }
1818}
1819
252b5132 1820static const char *
d3ba0551 1821get_dynamic_type (unsigned long type)
252b5132 1822{
e9e44622 1823 static char buff[64];
252b5132
RH
1824
1825 switch (type)
1826 {
1827 case DT_NULL: return "NULL";
1828 case DT_NEEDED: return "NEEDED";
1829 case DT_PLTRELSZ: return "PLTRELSZ";
1830 case DT_PLTGOT: return "PLTGOT";
1831 case DT_HASH: return "HASH";
1832 case DT_STRTAB: return "STRTAB";
1833 case DT_SYMTAB: return "SYMTAB";
1834 case DT_RELA: return "RELA";
1835 case DT_RELASZ: return "RELASZ";
1836 case DT_RELAENT: return "RELAENT";
1837 case DT_STRSZ: return "STRSZ";
1838 case DT_SYMENT: return "SYMENT";
1839 case DT_INIT: return "INIT";
1840 case DT_FINI: return "FINI";
1841 case DT_SONAME: return "SONAME";
1842 case DT_RPATH: return "RPATH";
1843 case DT_SYMBOLIC: return "SYMBOLIC";
1844 case DT_REL: return "REL";
1845 case DT_RELSZ: return "RELSZ";
1846 case DT_RELENT: return "RELENT";
1847 case DT_PLTREL: return "PLTREL";
1848 case DT_DEBUG: return "DEBUG";
1849 case DT_TEXTREL: return "TEXTREL";
1850 case DT_JMPREL: return "JMPREL";
1851 case DT_BIND_NOW: return "BIND_NOW";
1852 case DT_INIT_ARRAY: return "INIT_ARRAY";
1853 case DT_FINI_ARRAY: return "FINI_ARRAY";
1854 case DT_INIT_ARRAYSZ: return "INIT_ARRAYSZ";
1855 case DT_FINI_ARRAYSZ: return "FINI_ARRAYSZ";
d1133906
NC
1856 case DT_RUNPATH: return "RUNPATH";
1857 case DT_FLAGS: return "FLAGS";
2d0e6f43 1858
d1133906
NC
1859 case DT_PREINIT_ARRAY: return "PREINIT_ARRAY";
1860 case DT_PREINIT_ARRAYSZ: return "PREINIT_ARRAYSZ";
103f02d3 1861
05107a46 1862 case DT_CHECKSUM: return "CHECKSUM";
252b5132
RH
1863 case DT_PLTPADSZ: return "PLTPADSZ";
1864 case DT_MOVEENT: return "MOVEENT";
1865 case DT_MOVESZ: return "MOVESZ";
dcefbbbd 1866 case DT_FEATURE: return "FEATURE";
252b5132
RH
1867 case DT_POSFLAG_1: return "POSFLAG_1";
1868 case DT_SYMINSZ: return "SYMINSZ";
1869 case DT_SYMINENT: return "SYMINENT"; /* aka VALRNGHI */
103f02d3 1870
252b5132 1871 case DT_ADDRRNGLO: return "ADDRRNGLO";
dcefbbbd
L
1872 case DT_CONFIG: return "CONFIG";
1873 case DT_DEPAUDIT: return "DEPAUDIT";
1874 case DT_AUDIT: return "AUDIT";
1875 case DT_PLTPAD: return "PLTPAD";
1876 case DT_MOVETAB: return "MOVETAB";
252b5132 1877 case DT_SYMINFO: return "SYMINFO"; /* aka ADDRRNGHI */
103f02d3 1878
252b5132 1879 case DT_VERSYM: return "VERSYM";
103f02d3 1880
67a4f2b7
AO
1881 case DT_TLSDESC_GOT: return "TLSDESC_GOT";
1882 case DT_TLSDESC_PLT: return "TLSDESC_PLT";
252b5132
RH
1883 case DT_RELACOUNT: return "RELACOUNT";
1884 case DT_RELCOUNT: return "RELCOUNT";
1885 case DT_FLAGS_1: return "FLAGS_1";
1886 case DT_VERDEF: return "VERDEF";
1887 case DT_VERDEFNUM: return "VERDEFNUM";
1888 case DT_VERNEED: return "VERNEED";
1889 case DT_VERNEEDNUM: return "VERNEEDNUM";
103f02d3 1890
019148e4 1891 case DT_AUXILIARY: return "AUXILIARY";
252b5132
RH
1892 case DT_USED: return "USED";
1893 case DT_FILTER: return "FILTER";
103f02d3 1894
047b2264
JJ
1895 case DT_GNU_PRELINKED: return "GNU_PRELINKED";
1896 case DT_GNU_CONFLICT: return "GNU_CONFLICT";
1897 case DT_GNU_CONFLICTSZ: return "GNU_CONFLICTSZ";
1898 case DT_GNU_LIBLIST: return "GNU_LIBLIST";
1899 case DT_GNU_LIBLISTSZ: return "GNU_LIBLISTSZ";
fdc90cb4 1900 case DT_GNU_HASH: return "GNU_HASH";
047b2264 1901
252b5132
RH
1902 default:
1903 if ((type >= DT_LOPROC) && (type <= DT_HIPROC))
1904 {
2cf0635d 1905 const char * result;
103f02d3 1906
252b5132
RH
1907 switch (elf_header.e_machine)
1908 {
1909 case EM_MIPS:
4fe85591 1910 case EM_MIPS_RS3_LE:
252b5132
RH
1911 result = get_mips_dynamic_type (type);
1912 break;
9a097730
RH
1913 case EM_SPARCV9:
1914 result = get_sparc64_dynamic_type (type);
1915 break;
7490d522
AM
1916 case EM_PPC:
1917 result = get_ppc_dynamic_type (type);
1918 break;
f1cb7e17
AM
1919 case EM_PPC64:
1920 result = get_ppc64_dynamic_type (type);
1921 break;
ecc51f48
NC
1922 case EM_IA_64:
1923 result = get_ia64_dynamic_type (type);
1924 break;
fabcb361
RH
1925 case EM_ALPHA:
1926 result = get_alpha_dynamic_type (type);
1927 break;
1c0d3aa6
NC
1928 case EM_SCORE:
1929 result = get_score_dynamic_type (type);
1930 break;
40b36596
JM
1931 case EM_TI_C6000:
1932 result = get_tic6x_dynamic_type (type);
1933 break;
36591ba1
SL
1934 case EM_ALTERA_NIOS2:
1935 result = get_nios2_dynamic_type (type);
1936 break;
252b5132
RH
1937 default:
1938 result = NULL;
1939 break;
1940 }
1941
1942 if (result != NULL)
1943 return result;
1944
e9e44622 1945 snprintf (buff, sizeof (buff), _("Processor Specific: %lx"), type);
252b5132 1946 }
eec8f817
DA
1947 else if (((type >= DT_LOOS) && (type <= DT_HIOS))
1948 || (elf_header.e_machine == EM_PARISC
1949 && (type >= OLD_DT_LOOS) && (type <= OLD_DT_HIOS)))
103f02d3 1950 {
2cf0635d 1951 const char * result;
103f02d3
UD
1952
1953 switch (elf_header.e_machine)
1954 {
1955 case EM_PARISC:
1956 result = get_parisc_dynamic_type (type);
1957 break;
148b93f2
NC
1958 case EM_IA_64:
1959 result = get_ia64_dynamic_type (type);
1960 break;
103f02d3
UD
1961 default:
1962 result = NULL;
1963 break;
1964 }
1965
1966 if (result != NULL)
1967 return result;
1968
e9e44622
JJ
1969 snprintf (buff, sizeof (buff), _("Operating System specific: %lx"),
1970 type);
103f02d3 1971 }
252b5132 1972 else
e9e44622 1973 snprintf (buff, sizeof (buff), _("<unknown>: %lx"), type);
103f02d3 1974
252b5132
RH
1975 return buff;
1976 }
1977}
1978
1979static char *
d3ba0551 1980get_file_type (unsigned e_type)
252b5132 1981{
b34976b6 1982 static char buff[32];
252b5132
RH
1983
1984 switch (e_type)
1985 {
1986 case ET_NONE: return _("NONE (None)");
1987 case ET_REL: return _("REL (Relocatable file)");
ba2685cc
AM
1988 case ET_EXEC: return _("EXEC (Executable file)");
1989 case ET_DYN: return _("DYN (Shared object file)");
1990 case ET_CORE: return _("CORE (Core file)");
252b5132
RH
1991
1992 default:
1993 if ((e_type >= ET_LOPROC) && (e_type <= ET_HIPROC))
e9e44622 1994 snprintf (buff, sizeof (buff), _("Processor Specific: (%x)"), e_type);
252b5132 1995 else if ((e_type >= ET_LOOS) && (e_type <= ET_HIOS))
e9e44622 1996 snprintf (buff, sizeof (buff), _("OS Specific: (%x)"), e_type);
252b5132 1997 else
e9e44622 1998 snprintf (buff, sizeof (buff), _("<unknown>: %x"), e_type);
252b5132
RH
1999 return buff;
2000 }
2001}
2002
2003static char *
d3ba0551 2004get_machine_name (unsigned e_machine)
252b5132 2005{
b34976b6 2006 static char buff[64]; /* XXX */
252b5132
RH
2007
2008 switch (e_machine)
2009 {
c45021f2 2010 case EM_NONE: return _("None");
a06ea964 2011 case EM_AARCH64: return "AArch64";
c45021f2
NC
2012 case EM_M32: return "WE32100";
2013 case EM_SPARC: return "Sparc";
e9f53129 2014 case EM_SPU: return "SPU";
c45021f2
NC
2015 case EM_386: return "Intel 80386";
2016 case EM_68K: return "MC68000";
2017 case EM_88K: return "MC88000";
2018 case EM_486: return "Intel 80486";
2019 case EM_860: return "Intel 80860";
2020 case EM_MIPS: return "MIPS R3000";
2021 case EM_S370: return "IBM System/370";
7036c0e1 2022 case EM_MIPS_RS3_LE: return "MIPS R4000 big-endian";
252b5132 2023 case EM_OLD_SPARCV9: return "Sparc v9 (old)";
c45021f2 2024 case EM_PARISC: return "HPPA";
252b5132 2025 case EM_PPC_OLD: return "Power PC (old)";
7036c0e1 2026 case EM_SPARC32PLUS: return "Sparc v8+" ;
c45021f2
NC
2027 case EM_960: return "Intel 90860";
2028 case EM_PPC: return "PowerPC";
285d1771 2029 case EM_PPC64: return "PowerPC64";
c45021f2
NC
2030 case EM_FR20: return "Fujitsu FR20";
2031 case EM_RH32: return "TRW RH32";
b34976b6 2032 case EM_MCORE: return "MCORE";
7036c0e1
AJ
2033 case EM_ARM: return "ARM";
2034 case EM_OLD_ALPHA: return "Digital Alpha (old)";
ef230218 2035 case EM_SH: return "Renesas / SuperH SH";
c45021f2
NC
2036 case EM_SPARCV9: return "Sparc v9";
2037 case EM_TRICORE: return "Siemens Tricore";
584da044 2038 case EM_ARC: return "ARC";
c2dcd04e
NC
2039 case EM_H8_300: return "Renesas H8/300";
2040 case EM_H8_300H: return "Renesas H8/300H";
2041 case EM_H8S: return "Renesas H8S";
2042 case EM_H8_500: return "Renesas H8/500";
30800947 2043 case EM_IA_64: return "Intel IA-64";
252b5132
RH
2044 case EM_MIPS_X: return "Stanford MIPS-X";
2045 case EM_COLDFIRE: return "Motorola Coldfire";
c45021f2 2046 case EM_ALPHA: return "Alpha";
2b0337b0
AO
2047 case EM_CYGNUS_D10V:
2048 case EM_D10V: return "d10v";
2049 case EM_CYGNUS_D30V:
b34976b6 2050 case EM_D30V: return "d30v";
2b0337b0 2051 case EM_CYGNUS_M32R:
26597c86 2052 case EM_M32R: return "Renesas M32R (formerly Mitsubishi M32r)";
2b0337b0 2053 case EM_CYGNUS_V850:
708e2187 2054 case EM_V800: return "Renesas V850 (using RH850 ABI)";
f6c1a2d5 2055 case EM_V850: return "Renesas V850";
2b0337b0
AO
2056 case EM_CYGNUS_MN10300:
2057 case EM_MN10300: return "mn10300";
2058 case EM_CYGNUS_MN10200:
2059 case EM_MN10200: return "mn10200";
5506d11a 2060 case EM_MOXIE: return "Moxie";
2b0337b0
AO
2061 case EM_CYGNUS_FR30:
2062 case EM_FR30: return "Fujitsu FR30";
b34976b6 2063 case EM_CYGNUS_FRV: return "Fujitsu FR-V";
2b0337b0 2064 case EM_PJ_OLD:
b34976b6 2065 case EM_PJ: return "picoJava";
7036c0e1
AJ
2066 case EM_MMA: return "Fujitsu Multimedia Accelerator";
2067 case EM_PCP: return "Siemens PCP";
2068 case EM_NCPU: return "Sony nCPU embedded RISC processor";
2069 case EM_NDR1: return "Denso NDR1 microprocesspr";
2070 case EM_STARCORE: return "Motorola Star*Core processor";
2071 case EM_ME16: return "Toyota ME16 processor";
2072 case EM_ST100: return "STMicroelectronics ST100 processor";
2073 case EM_TINYJ: return "Advanced Logic Corp. TinyJ embedded processor";
11636f9e
JM
2074 case EM_PDSP: return "Sony DSP processor";
2075 case EM_PDP10: return "Digital Equipment Corp. PDP-10";
2076 case EM_PDP11: return "Digital Equipment Corp. PDP-11";
7036c0e1
AJ
2077 case EM_FX66: return "Siemens FX66 microcontroller";
2078 case EM_ST9PLUS: return "STMicroelectronics ST9+ 8/16 bit microcontroller";
2079 case EM_ST7: return "STMicroelectronics ST7 8-bit microcontroller";
2080 case EM_68HC16: return "Motorola MC68HC16 Microcontroller";
6927f982 2081 case EM_68HC12: return "Motorola MC68HC12 Microcontroller";
7036c0e1
AJ
2082 case EM_68HC11: return "Motorola MC68HC11 Microcontroller";
2083 case EM_68HC08: return "Motorola MC68HC08 Microcontroller";
2084 case EM_68HC05: return "Motorola MC68HC05 Microcontroller";
2085 case EM_SVX: return "Silicon Graphics SVx";
2086 case EM_ST19: return "STMicroelectronics ST19 8-bit microcontroller";
2087 case EM_VAX: return "Digital VAX";
2b0337b0 2088 case EM_AVR_OLD:
b34976b6 2089 case EM_AVR: return "Atmel AVR 8-bit microcontroller";
1b61cf92 2090 case EM_CRIS: return "Axis Communications 32-bit embedded processor";
c45021f2
NC
2091 case EM_JAVELIN: return "Infineon Technologies 32-bit embedded cpu";
2092 case EM_FIREPATH: return "Element 14 64-bit DSP processor";
2093 case EM_ZSP: return "LSI Logic's 16-bit DSP processor";
b34976b6 2094 case EM_MMIX: return "Donald Knuth's educational 64-bit processor";
c45021f2 2095 case EM_HUANY: return "Harvard Universitys's machine-independent object format";
3b36097d 2096 case EM_PRISM: return "Vitesse Prism";
bcedfee6 2097 case EM_X86_64: return "Advanced Micro Devices X86-64";
8a9036a4 2098 case EM_L1OM: return "Intel L1OM";
7a9068fe 2099 case EM_K1OM: return "Intel K1OM";
b7498e0e 2100 case EM_S390_OLD:
b34976b6 2101 case EM_S390: return "IBM S/390";
1c0d3aa6 2102 case EM_SCORE: return "SUNPLUS S+Core";
61865e30 2103 case EM_XSTORMY16: return "Sanyo XStormy16 CPU core";
73589c9d 2104 case EM_OR1K: return "OpenRISC 1000";
11636f9e 2105 case EM_ARC_A5: return "ARC International ARCompact processor";
1fe1f39c 2106 case EM_CRX: return "National Semiconductor CRX microprocessor";
cfb8c092 2107 case EM_ADAPTEVA_EPIPHANY: return "Adapteva EPIPHANY";
d172d4ba 2108 case EM_DLX: return "OpenDLX";
1e4cf259 2109 case EM_IP2K_OLD:
b34976b6 2110 case EM_IP2K: return "Ubicom IP2xxx 8-bit microcontrollers";
3b36097d 2111 case EM_IQ2000: return "Vitesse IQ2000";
88da6820
NC
2112 case EM_XTENSA_OLD:
2113 case EM_XTENSA: return "Tensilica Xtensa Processor";
11636f9e
JM
2114 case EM_VIDEOCORE: return "Alphamosaic VideoCore processor";
2115 case EM_TMM_GPP: return "Thompson Multimedia General Purpose Processor";
2116 case EM_NS32K: return "National Semiconductor 32000 series";
2117 case EM_TPC: return "Tenor Network TPC processor";
2118 case EM_ST200: return "STMicroelectronics ST200 microcontroller";
2119 case EM_MAX: return "MAX Processor";
2120 case EM_CR: return "National Semiconductor CompactRISC";
2121 case EM_F2MC16: return "Fujitsu F2MC16";
2122 case EM_MSP430: return "Texas Instruments msp430 microcontroller";
84e94c90 2123 case EM_LATTICEMICO32: return "Lattice Mico32";
ff7eeb89 2124 case EM_M32C_OLD:
49f58d10 2125 case EM_M32C: return "Renesas M32c";
d031aafb 2126 case EM_MT: return "Morpho Techologies MT processor";
7bbe5bc5 2127 case EM_BLACKFIN: return "Analog Devices Blackfin";
11636f9e
JM
2128 case EM_SE_C33: return "S1C33 Family of Seiko Epson processors";
2129 case EM_SEP: return "Sharp embedded microprocessor";
2130 case EM_ARCA: return "Arca RISC microprocessor";
2131 case EM_UNICORE: return "Unicore";
2132 case EM_EXCESS: return "eXcess 16/32/64-bit configurable embedded CPU";
2133 case EM_DXP: return "Icera Semiconductor Inc. Deep Execution Processor";
64fd6348
NC
2134 case EM_NIOS32: return "Altera Nios";
2135 case EM_ALTERA_NIOS2: return "Altera Nios II";
c29aca4a 2136 case EM_C166:
d70c5fc7 2137 case EM_XC16X: return "Infineon Technologies xc16x";
11636f9e
JM
2138 case EM_M16C: return "Renesas M16C series microprocessors";
2139 case EM_DSPIC30F: return "Microchip Technology dsPIC30F Digital Signal Controller";
2140 case EM_CE: return "Freescale Communication Engine RISC core";
2141 case EM_TSK3000: return "Altium TSK3000 core";
2142 case EM_RS08: return "Freescale RS08 embedded processor";
2143 case EM_ECOG2: return "Cyan Technology eCOG2 microprocessor";
2144 case EM_DSP24: return "New Japan Radio (NJR) 24-bit DSP Processor";
2145 case EM_VIDEOCORE3: return "Broadcom VideoCore III processor";
2146 case EM_SE_C17: return "Seiko Epson C17 family";
2147 case EM_TI_C6000: return "Texas Instruments TMS320C6000 DSP family";
2148 case EM_TI_C2000: return "Texas Instruments TMS320C2000 DSP family";
2149 case EM_TI_C5500: return "Texas Instruments TMS320C55x DSP family";
2150 case EM_MMDSP_PLUS: return "STMicroelectronics 64bit VLIW Data Signal Processor";
2151 case EM_CYPRESS_M8C: return "Cypress M8C microprocessor";
2152 case EM_R32C: return "Renesas R32C series microprocessors";
2153 case EM_TRIMEDIA: return "NXP Semiconductors TriMedia architecture family";
2154 case EM_QDSP6: return "QUALCOMM DSP6 Processor";
2155 case EM_8051: return "Intel 8051 and variants";
2156 case EM_STXP7X: return "STMicroelectronics STxP7x family";
2157 case EM_NDS32: return "Andes Technology compact code size embedded RISC processor family";
2158 case EM_ECOG1X: return "Cyan Technology eCOG1X family";
2159 case EM_MAXQ30: return "Dallas Semiconductor MAXQ30 Core microcontrollers";
2160 case EM_XIMO16: return "New Japan Radio (NJR) 16-bit DSP Processor";
2161 case EM_MANIK: return "M2000 Reconfigurable RISC Microprocessor";
2162 case EM_CRAYNV2: return "Cray Inc. NV2 vector architecture";
15ab5209 2163 case EM_CYGNUS_MEP: return "Toshiba MeP Media Engine";
cb8f3167 2164 case EM_CR16:
f6c1a2d5 2165 case EM_MICROBLAZE:
7ba29e2a 2166 case EM_MICROBLAZE_OLD: return "Xilinx MicroBlaze";
99c513f6 2167 case EM_RL78: return "Renesas RL78";
c7927a3c 2168 case EM_RX: return "Renesas RX";
a3c62988 2169 case EM_METAG: return "Imagination Technologies Meta processor architecture";
11636f9e
JM
2170 case EM_MCST_ELBRUS: return "MCST Elbrus general purpose hardware architecture";
2171 case EM_ECOG16: return "Cyan Technology eCOG16 family";
2172 case EM_ETPU: return "Freescale Extended Time Processing Unit";
2173 case EM_SLE9X: return "Infineon Technologies SLE9X core";
2174 case EM_AVR32: return "Atmel Corporation 32-bit microprocessor family";
2175 case EM_STM8: return "STMicroeletronics STM8 8-bit microcontroller";
2176 case EM_TILE64: return "Tilera TILE64 multicore architecture family";
2177 case EM_TILEPRO: return "Tilera TILEPro multicore architecture family";
aa137e4d 2178 case EM_TILEGX: return "Tilera TILE-Gx multicore architecture family";
11636f9e 2179 case EM_CUDA: return "NVIDIA CUDA architecture";
f6c1a2d5 2180 case EM_XGATE: return "Motorola XGATE embedded processor";
252b5132 2181 default:
35d9dd2f 2182 snprintf (buff, sizeof (buff), _("<unknown>: 0x%x"), e_machine);
252b5132
RH
2183 return buff;
2184 }
2185}
2186
f3485b74 2187static void
d3ba0551 2188decode_ARM_machine_flags (unsigned e_flags, char buf[])
f3485b74
NC
2189{
2190 unsigned eabi;
2191 int unknown = 0;
2192
2193 eabi = EF_ARM_EABI_VERSION (e_flags);
2194 e_flags &= ~ EF_ARM_EABIMASK;
2195
2196 /* Handle "generic" ARM flags. */
2197 if (e_flags & EF_ARM_RELEXEC)
2198 {
2199 strcat (buf, ", relocatable executable");
2200 e_flags &= ~ EF_ARM_RELEXEC;
2201 }
76da6bbe 2202
f3485b74
NC
2203 if (e_flags & EF_ARM_HASENTRY)
2204 {
2205 strcat (buf, ", has entry point");
2206 e_flags &= ~ EF_ARM_HASENTRY;
2207 }
76da6bbe 2208
f3485b74
NC
2209 /* Now handle EABI specific flags. */
2210 switch (eabi)
2211 {
2212 default:
2c71103e 2213 strcat (buf, ", <unrecognized EABI>");
f3485b74
NC
2214 if (e_flags)
2215 unknown = 1;
2216 break;
2217
2218 case EF_ARM_EABI_VER1:
a5bcd848 2219 strcat (buf, ", Version1 EABI");
f3485b74
NC
2220 while (e_flags)
2221 {
2222 unsigned flag;
76da6bbe 2223
f3485b74
NC
2224 /* Process flags one bit at a time. */
2225 flag = e_flags & - e_flags;
2226 e_flags &= ~ flag;
76da6bbe 2227
f3485b74
NC
2228 switch (flag)
2229 {
a5bcd848 2230 case EF_ARM_SYMSARESORTED: /* Conflicts with EF_ARM_INTERWORK. */
f3485b74
NC
2231 strcat (buf, ", sorted symbol tables");
2232 break;
76da6bbe 2233
f3485b74
NC
2234 default:
2235 unknown = 1;
2236 break;
2237 }
2238 }
2239 break;
76da6bbe 2240
a5bcd848
PB
2241 case EF_ARM_EABI_VER2:
2242 strcat (buf, ", Version2 EABI");
2243 while (e_flags)
2244 {
2245 unsigned flag;
2246
2247 /* Process flags one bit at a time. */
2248 flag = e_flags & - e_flags;
2249 e_flags &= ~ flag;
2250
2251 switch (flag)
2252 {
2253 case EF_ARM_SYMSARESORTED: /* Conflicts with EF_ARM_INTERWORK. */
2254 strcat (buf, ", sorted symbol tables");
2255 break;
2256
2257 case EF_ARM_DYNSYMSUSESEGIDX:
2258 strcat (buf, ", dynamic symbols use segment index");
2259 break;
2260
2261 case EF_ARM_MAPSYMSFIRST:
2262 strcat (buf, ", mapping symbols precede others");
2263 break;
2264
2265 default:
2266 unknown = 1;
2267 break;
2268 }
2269 }
2270 break;
2271
d507cf36
PB
2272 case EF_ARM_EABI_VER3:
2273 strcat (buf, ", Version3 EABI");
8cb51566
PB
2274 break;
2275
2276 case EF_ARM_EABI_VER4:
2277 strcat (buf, ", Version4 EABI");
3bfcb652
NC
2278 while (e_flags)
2279 {
2280 unsigned flag;
2281
2282 /* Process flags one bit at a time. */
2283 flag = e_flags & - e_flags;
2284 e_flags &= ~ flag;
2285
2286 switch (flag)
2287 {
2288 case EF_ARM_BE8:
2289 strcat (buf, ", BE8");
2290 break;
2291
2292 case EF_ARM_LE8:
2293 strcat (buf, ", LE8");
2294 break;
2295
2296 default:
2297 unknown = 1;
2298 break;
2299 }
2300 break;
2301 }
2302 break;
3a4a14e9
PB
2303
2304 case EF_ARM_EABI_VER5:
2305 strcat (buf, ", Version5 EABI");
d507cf36
PB
2306 while (e_flags)
2307 {
2308 unsigned flag;
2309
2310 /* Process flags one bit at a time. */
2311 flag = e_flags & - e_flags;
2312 e_flags &= ~ flag;
2313
2314 switch (flag)
2315 {
2316 case EF_ARM_BE8:
2317 strcat (buf, ", BE8");
2318 break;
2319
2320 case EF_ARM_LE8:
2321 strcat (buf, ", LE8");
2322 break;
2323
3bfcb652
NC
2324 case EF_ARM_ABI_FLOAT_SOFT: /* Conflicts with EF_ARM_SOFT_FLOAT. */
2325 strcat (buf, ", soft-float ABI");
2326 break;
2327
2328 case EF_ARM_ABI_FLOAT_HARD: /* Conflicts with EF_ARM_VFP_FLOAT. */
2329 strcat (buf, ", hard-float ABI");
2330 break;
2331
d507cf36
PB
2332 default:
2333 unknown = 1;
2334 break;
2335 }
2336 }
2337 break;
2338
f3485b74 2339 case EF_ARM_EABI_UNKNOWN:
a5bcd848 2340 strcat (buf, ", GNU EABI");
f3485b74
NC
2341 while (e_flags)
2342 {
2343 unsigned flag;
76da6bbe 2344
f3485b74
NC
2345 /* Process flags one bit at a time. */
2346 flag = e_flags & - e_flags;
2347 e_flags &= ~ flag;
76da6bbe 2348
f3485b74
NC
2349 switch (flag)
2350 {
a5bcd848 2351 case EF_ARM_INTERWORK:
f3485b74
NC
2352 strcat (buf, ", interworking enabled");
2353 break;
76da6bbe 2354
a5bcd848 2355 case EF_ARM_APCS_26:
f3485b74
NC
2356 strcat (buf, ", uses APCS/26");
2357 break;
76da6bbe 2358
a5bcd848 2359 case EF_ARM_APCS_FLOAT:
f3485b74
NC
2360 strcat (buf, ", uses APCS/float");
2361 break;
76da6bbe 2362
a5bcd848 2363 case EF_ARM_PIC:
f3485b74
NC
2364 strcat (buf, ", position independent");
2365 break;
76da6bbe 2366
a5bcd848 2367 case EF_ARM_ALIGN8:
f3485b74
NC
2368 strcat (buf, ", 8 bit structure alignment");
2369 break;
76da6bbe 2370
a5bcd848 2371 case EF_ARM_NEW_ABI:
f3485b74
NC
2372 strcat (buf, ", uses new ABI");
2373 break;
76da6bbe 2374
a5bcd848 2375 case EF_ARM_OLD_ABI:
f3485b74
NC
2376 strcat (buf, ", uses old ABI");
2377 break;
76da6bbe 2378
a5bcd848 2379 case EF_ARM_SOFT_FLOAT:
f3485b74
NC
2380 strcat (buf, ", software FP");
2381 break;
76da6bbe 2382
90e01f86
ILT
2383 case EF_ARM_VFP_FLOAT:
2384 strcat (buf, ", VFP");
2385 break;
2386
fde78edd
NC
2387 case EF_ARM_MAVERICK_FLOAT:
2388 strcat (buf, ", Maverick FP");
2389 break;
2390
f3485b74
NC
2391 default:
2392 unknown = 1;
2393 break;
2394 }
2395 }
2396 }
f3485b74
NC
2397
2398 if (unknown)
2b692964 2399 strcat (buf,_(", <unknown>"));
f3485b74
NC
2400}
2401
35c08157
KLC
2402static void
2403decode_NDS32_machine_flags (unsigned e_flags, char buf[], size_t size)
2404{
2405 unsigned abi;
2406 unsigned arch;
2407 unsigned config;
2408 unsigned version;
2409 int has_fpu = 0;
2410 int r = 0;
2411
2412 static const char *ABI_STRINGS[] =
2413 {
2414 "ABI v0", /* use r5 as return register; only used in N1213HC */
2415 "ABI v1", /* use r0 as return register */
2416 "ABI v2", /* use r0 as return register and don't reserve 24 bytes for arguments */
2417 "ABI v2fp", /* for FPU */
40c7a7cb
KLC
2418 "AABI",
2419 "ABI2 FP+"
35c08157
KLC
2420 };
2421 static const char *VER_STRINGS[] =
2422 {
2423 "Andes ELF V1.3 or older",
2424 "Andes ELF V1.3.1",
2425 "Andes ELF V1.4"
2426 };
2427 static const char *ARCH_STRINGS[] =
2428 {
2429 "",
2430 "Andes Star v1.0",
2431 "Andes Star v2.0",
2432 "Andes Star v3.0",
2433 "Andes Star v3.0m"
2434 };
2435
2436 abi = EF_NDS_ABI & e_flags;
2437 arch = EF_NDS_ARCH & e_flags;
2438 config = EF_NDS_INST & e_flags;
2439 version = EF_NDS32_ELF_VERSION & e_flags;
2440
2441 memset (buf, 0, size);
2442
2443 switch (abi)
2444 {
2445 case E_NDS_ABI_V0:
2446 case E_NDS_ABI_V1:
2447 case E_NDS_ABI_V2:
2448 case E_NDS_ABI_V2FP:
2449 case E_NDS_ABI_AABI:
40c7a7cb 2450 case E_NDS_ABI_V2FP_PLUS:
35c08157
KLC
2451 /* In case there are holes in the array. */
2452 r += snprintf (buf + r, size - r, ", %s", ABI_STRINGS[abi >> EF_NDS_ABI_SHIFT]);
2453 break;
2454
2455 default:
2456 r += snprintf (buf + r, size - r, ", <unrecognized ABI>");
2457 break;
2458 }
2459
2460 switch (version)
2461 {
2462 case E_NDS32_ELF_VER_1_2:
2463 case E_NDS32_ELF_VER_1_3:
2464 case E_NDS32_ELF_VER_1_4:
2465 r += snprintf (buf + r, size - r, ", %s", VER_STRINGS[version >> EF_NDS32_ELF_VERSION_SHIFT]);
2466 break;
2467
2468 default:
2469 r += snprintf (buf + r, size - r, ", <unrecognized ELF version number>");
2470 break;
2471 }
2472
2473 if (E_NDS_ABI_V0 == abi)
2474 {
2475 /* OLD ABI; only used in N1213HC, has performance extension 1. */
2476 r += snprintf (buf + r, size - r, ", Andes Star v1.0, N1213HC, MAC, PERF1");
2477 if (arch == E_NDS_ARCH_STAR_V1_0)
2478 r += snprintf (buf + r, size -r, ", 16b"); /* has 16-bit instructions */
2479 return;
2480 }
2481
2482 switch (arch)
2483 {
2484 case E_NDS_ARCH_STAR_V1_0:
2485 case E_NDS_ARCH_STAR_V2_0:
2486 case E_NDS_ARCH_STAR_V3_0:
2487 case E_NDS_ARCH_STAR_V3_M:
2488 r += snprintf (buf + r, size - r, ", %s", ARCH_STRINGS[arch >> EF_NDS_ARCH_SHIFT]);
2489 break;
2490
2491 default:
2492 r += snprintf (buf + r, size - r, ", <unrecognized architecture>");
2493 /* ARCH version determines how the e_flags are interpreted.
2494 If it is unknown, we cannot proceed. */
2495 return;
2496 }
2497
2498 /* Newer ABI; Now handle architecture specific flags. */
2499 if (arch == E_NDS_ARCH_STAR_V1_0)
2500 {
2501 if (config & E_NDS32_HAS_MFUSR_PC_INST)
2502 r += snprintf (buf + r, size -r, ", MFUSR_PC");
2503
2504 if (!(config & E_NDS32_HAS_NO_MAC_INST))
2505 r += snprintf (buf + r, size -r, ", MAC");
2506
2507 if (config & E_NDS32_HAS_DIV_INST)
2508 r += snprintf (buf + r, size -r, ", DIV");
2509
2510 if (config & E_NDS32_HAS_16BIT_INST)
2511 r += snprintf (buf + r, size -r, ", 16b");
2512 }
2513 else
2514 {
2515 if (config & E_NDS32_HAS_MFUSR_PC_INST)
2516 {
2517 if (version <= E_NDS32_ELF_VER_1_3)
2518 r += snprintf (buf + r, size -r, ", [B8]");
2519 else
2520 r += snprintf (buf + r, size -r, ", EX9");
2521 }
2522
2523 if (config & E_NDS32_HAS_MAC_DX_INST)
2524 r += snprintf (buf + r, size -r, ", MAC_DX");
2525
2526 if (config & E_NDS32_HAS_DIV_DX_INST)
2527 r += snprintf (buf + r, size -r, ", DIV_DX");
2528
2529 if (config & E_NDS32_HAS_16BIT_INST)
2530 {
2531 if (version <= E_NDS32_ELF_VER_1_3)
2532 r += snprintf (buf + r, size -r, ", 16b");
2533 else
2534 r += snprintf (buf + r, size -r, ", IFC");
2535 }
2536 }
2537
2538 if (config & E_NDS32_HAS_EXT_INST)
2539 r += snprintf (buf + r, size -r, ", PERF1");
2540
2541 if (config & E_NDS32_HAS_EXT2_INST)
2542 r += snprintf (buf + r, size -r, ", PERF2");
2543
2544 if (config & E_NDS32_HAS_FPU_INST)
2545 {
2546 has_fpu = 1;
2547 r += snprintf (buf + r, size -r, ", FPU_SP");
2548 }
2549
2550 if (config & E_NDS32_HAS_FPU_DP_INST)
2551 {
2552 has_fpu = 1;
2553 r += snprintf (buf + r, size -r, ", FPU_DP");
2554 }
2555
2556 if (config & E_NDS32_HAS_FPU_MAC_INST)
2557 {
2558 has_fpu = 1;
2559 r += snprintf (buf + r, size -r, ", FPU_MAC");
2560 }
2561
2562 if (has_fpu)
2563 {
2564 switch ((config & E_NDS32_FPU_REG_CONF) >> E_NDS32_FPU_REG_CONF_SHIFT)
2565 {
2566 case E_NDS32_FPU_REG_8SP_4DP:
2567 r += snprintf (buf + r, size -r, ", FPU_REG:8/4");
2568 break;
2569 case E_NDS32_FPU_REG_16SP_8DP:
2570 r += snprintf (buf + r, size -r, ", FPU_REG:16/8");
2571 break;
2572 case E_NDS32_FPU_REG_32SP_16DP:
2573 r += snprintf (buf + r, size -r, ", FPU_REG:32/16");
2574 break;
2575 case E_NDS32_FPU_REG_32SP_32DP:
2576 r += snprintf (buf + r, size -r, ", FPU_REG:32/32");
2577 break;
2578 }
2579 }
2580
2581 if (config & E_NDS32_HAS_AUDIO_INST)
2582 r += snprintf (buf + r, size -r, ", AUDIO");
2583
2584 if (config & E_NDS32_HAS_STRING_INST)
2585 r += snprintf (buf + r, size -r, ", STR");
2586
2587 if (config & E_NDS32_HAS_REDUCED_REGS)
2588 r += snprintf (buf + r, size -r, ", 16REG");
2589
2590 if (config & E_NDS32_HAS_VIDEO_INST)
2591 {
2592 if (version <= E_NDS32_ELF_VER_1_3)
2593 r += snprintf (buf + r, size -r, ", VIDEO");
2594 else
2595 r += snprintf (buf + r, size -r, ", SATURATION");
2596 }
2597
2598 if (config & E_NDS32_HAS_ENCRIPT_INST)
2599 r += snprintf (buf + r, size -r, ", ENCRP");
2600
2601 if (config & E_NDS32_HAS_L2C_INST)
2602 r += snprintf (buf + r, size -r, ", L2C");
2603}
2604
252b5132 2605static char *
d3ba0551 2606get_machine_flags (unsigned e_flags, unsigned e_machine)
252b5132 2607{
b34976b6 2608 static char buf[1024];
252b5132
RH
2609
2610 buf[0] = '\0';
76da6bbe 2611
252b5132
RH
2612 if (e_flags)
2613 {
2614 switch (e_machine)
2615 {
2616 default:
2617 break;
2618
f3485b74
NC
2619 case EM_ARM:
2620 decode_ARM_machine_flags (e_flags, buf);
2621 break;
76da6bbe 2622
781303ce
MF
2623 case EM_BLACKFIN:
2624 if (e_flags & EF_BFIN_PIC)
2625 strcat (buf, ", PIC");
2626
2627 if (e_flags & EF_BFIN_FDPIC)
2628 strcat (buf, ", FDPIC");
2629
2630 if (e_flags & EF_BFIN_CODE_IN_L1)
2631 strcat (buf, ", code in L1");
2632
2633 if (e_flags & EF_BFIN_DATA_IN_L1)
2634 strcat (buf, ", data in L1");
2635
2636 break;
2637
ec2dfb42
AO
2638 case EM_CYGNUS_FRV:
2639 switch (e_flags & EF_FRV_CPU_MASK)
2640 {
2641 case EF_FRV_CPU_GENERIC:
2642 break;
2643
2644 default:
2645 strcat (buf, ", fr???");
2646 break;
57346661 2647
ec2dfb42
AO
2648 case EF_FRV_CPU_FR300:
2649 strcat (buf, ", fr300");
2650 break;
2651
2652 case EF_FRV_CPU_FR400:
2653 strcat (buf, ", fr400");
2654 break;
2655 case EF_FRV_CPU_FR405:
2656 strcat (buf, ", fr405");
2657 break;
2658
2659 case EF_FRV_CPU_FR450:
2660 strcat (buf, ", fr450");
2661 break;
2662
2663 case EF_FRV_CPU_FR500:
2664 strcat (buf, ", fr500");
2665 break;
2666 case EF_FRV_CPU_FR550:
2667 strcat (buf, ", fr550");
2668 break;
2669
2670 case EF_FRV_CPU_SIMPLE:
2671 strcat (buf, ", simple");
2672 break;
2673 case EF_FRV_CPU_TOMCAT:
2674 strcat (buf, ", tomcat");
2675 break;
2676 }
1c877e87 2677 break;
ec2dfb42 2678
53c7db4b 2679 case EM_68K:
425c6cb0 2680 if ((e_flags & EF_M68K_ARCH_MASK) == EF_M68K_M68000)
76f57f3a 2681 strcat (buf, ", m68000");
425c6cb0 2682 else if ((e_flags & EF_M68K_ARCH_MASK) == EF_M68K_CPU32)
3bdcfdf4
KH
2683 strcat (buf, ", cpu32");
2684 else if ((e_flags & EF_M68K_ARCH_MASK) == EF_M68K_FIDO)
2685 strcat (buf, ", fido_a");
425c6cb0 2686 else
266abb8f 2687 {
2cf0635d
NC
2688 char const * isa = _("unknown");
2689 char const * mac = _("unknown mac");
2690 char const * additional = NULL;
0112cd26 2691
c694fd50 2692 switch (e_flags & EF_M68K_CF_ISA_MASK)
266abb8f 2693 {
c694fd50 2694 case EF_M68K_CF_ISA_A_NODIV:
0b2e31dc
NS
2695 isa = "A";
2696 additional = ", nodiv";
2697 break;
c694fd50 2698 case EF_M68K_CF_ISA_A:
266abb8f
NS
2699 isa = "A";
2700 break;
c694fd50 2701 case EF_M68K_CF_ISA_A_PLUS:
266abb8f
NS
2702 isa = "A+";
2703 break;
c694fd50 2704 case EF_M68K_CF_ISA_B_NOUSP:
0b2e31dc
NS
2705 isa = "B";
2706 additional = ", nousp";
2707 break;
c694fd50 2708 case EF_M68K_CF_ISA_B:
266abb8f
NS
2709 isa = "B";
2710 break;
f608cd77
NS
2711 case EF_M68K_CF_ISA_C:
2712 isa = "C";
2713 break;
2714 case EF_M68K_CF_ISA_C_NODIV:
2715 isa = "C";
2716 additional = ", nodiv";
2717 break;
266abb8f
NS
2718 }
2719 strcat (buf, ", cf, isa ");
2720 strcat (buf, isa);
0b2e31dc
NS
2721 if (additional)
2722 strcat (buf, additional);
c694fd50 2723 if (e_flags & EF_M68K_CF_FLOAT)
0b2e31dc 2724 strcat (buf, ", float");
c694fd50 2725 switch (e_flags & EF_M68K_CF_MAC_MASK)
266abb8f
NS
2726 {
2727 case 0:
2728 mac = NULL;
2729 break;
c694fd50 2730 case EF_M68K_CF_MAC:
266abb8f
NS
2731 mac = "mac";
2732 break;
c694fd50 2733 case EF_M68K_CF_EMAC:
266abb8f
NS
2734 mac = "emac";
2735 break;
f608cd77
NS
2736 case EF_M68K_CF_EMAC_B:
2737 mac = "emac_b";
2738 break;
266abb8f
NS
2739 }
2740 if (mac)
2741 {
2742 strcat (buf, ", ");
2743 strcat (buf, mac);
2744 }
266abb8f 2745 }
53c7db4b 2746 break;
33c63f9d 2747
252b5132
RH
2748 case EM_PPC:
2749 if (e_flags & EF_PPC_EMB)
2750 strcat (buf, ", emb");
2751
2752 if (e_flags & EF_PPC_RELOCATABLE)
2b692964 2753 strcat (buf, _(", relocatable"));
252b5132
RH
2754
2755 if (e_flags & EF_PPC_RELOCATABLE_LIB)
2b692964 2756 strcat (buf, _(", relocatable-lib"));
252b5132
RH
2757 break;
2758
ee67d69a
AM
2759 case EM_PPC64:
2760 if (e_flags & EF_PPC64_ABI)
2761 {
2762 char abi[] = ", abiv0";
2763
2764 abi[6] += e_flags & EF_PPC64_ABI;
2765 strcat (buf, abi);
2766 }
2767 break;
2768
708e2187
NC
2769 case EM_V800:
2770 if ((e_flags & EF_RH850_ABI) == EF_RH850_ABI)
2771 strcat (buf, ", RH850 ABI");
0b4362b0 2772
708e2187
NC
2773 if (e_flags & EF_V800_850E3)
2774 strcat (buf, ", V3 architecture");
2775
2776 if ((e_flags & (EF_RH850_FPU_DOUBLE | EF_RH850_FPU_SINGLE)) == 0)
2777 strcat (buf, ", FPU not used");
2778
2779 if ((e_flags & (EF_RH850_REGMODE22 | EF_RH850_REGMODE32)) == 0)
2780 strcat (buf, ", regmode: COMMON");
2781
2782 if ((e_flags & (EF_RH850_GP_FIX | EF_RH850_GP_NOFIX)) == 0)
2783 strcat (buf, ", r4 not used");
2784
2785 if ((e_flags & (EF_RH850_EP_FIX | EF_RH850_EP_NOFIX)) == 0)
2786 strcat (buf, ", r30 not used");
2787
2788 if ((e_flags & (EF_RH850_TP_FIX | EF_RH850_TP_NOFIX)) == 0)
2789 strcat (buf, ", r5 not used");
2790
2791 if ((e_flags & (EF_RH850_REG2_RESERVE | EF_RH850_REG2_NORESERVE)) == 0)
2792 strcat (buf, ", r2 not used");
2793
2794 for (e_flags &= 0xFFFF; e_flags; e_flags &= ~ (e_flags & - e_flags))
2795 {
2796 switch (e_flags & - e_flags)
2797 {
2798 case EF_RH850_FPU_DOUBLE: strcat (buf, ", double precision FPU"); break;
2799 case EF_RH850_FPU_SINGLE: strcat (buf, ", single precision FPU"); break;
2800 case EF_RH850_SIMD: strcat (buf, ", SIMD"); break;
2801 case EF_RH850_CACHE: strcat (buf, ", CACHE"); break;
2802 case EF_RH850_MMU: strcat (buf, ", MMU"); break;
2803 case EF_RH850_REGMODE22: strcat (buf, ", regmode:22"); break;
2804 case EF_RH850_REGMODE32: strcat (buf, ", regmode:23"); break;
2805 case EF_RH850_DATA_ALIGN8: strcat (buf, ", 8-byte alignment"); break;
2806 case EF_RH850_GP_FIX: strcat (buf, ", r4 fixed"); break;
2807 case EF_RH850_GP_NOFIX: strcat (buf, ", r4 free"); break;
2808 case EF_RH850_EP_FIX: strcat (buf, ", r30 fixed"); break;
2809 case EF_RH850_EP_NOFIX: strcat (buf, ", r30 free"); break;
2810 case EF_RH850_TP_FIX: strcat (buf, ", r5 fixed"); break;
2811 case EF_RH850_TP_NOFIX: strcat (buf, ", r5 free"); break;
2812 case EF_RH850_REG2_RESERVE: strcat (buf, ", r2 fixed"); break;
2813 case EF_RH850_REG2_NORESERVE: strcat (buf, ", r2 free"); break;
2814 default: break;
2815 }
2816 }
2817 break;
2818
2b0337b0 2819 case EM_V850:
252b5132
RH
2820 case EM_CYGNUS_V850:
2821 switch (e_flags & EF_V850_ARCH)
2822 {
78c8d46c
NC
2823 case E_V850E3V5_ARCH:
2824 strcat (buf, ", v850e3v5");
2825 break;
1cd986c5
NC
2826 case E_V850E2V3_ARCH:
2827 strcat (buf, ", v850e2v3");
2828 break;
2829 case E_V850E2_ARCH:
2830 strcat (buf, ", v850e2");
2831 break;
2832 case E_V850E1_ARCH:
2833 strcat (buf, ", v850e1");
8ad30312 2834 break;
252b5132
RH
2835 case E_V850E_ARCH:
2836 strcat (buf, ", v850e");
2837 break;
252b5132
RH
2838 case E_V850_ARCH:
2839 strcat (buf, ", v850");
2840 break;
2841 default:
2b692964 2842 strcat (buf, _(", unknown v850 architecture variant"));
252b5132
RH
2843 break;
2844 }
2845 break;
2846
2b0337b0 2847 case EM_M32R:
252b5132
RH
2848 case EM_CYGNUS_M32R:
2849 if ((e_flags & EF_M32R_ARCH) == E_M32R_ARCH)
2850 strcat (buf, ", m32r");
252b5132
RH
2851 break;
2852
2853 case EM_MIPS:
4fe85591 2854 case EM_MIPS_RS3_LE:
252b5132
RH
2855 if (e_flags & EF_MIPS_NOREORDER)
2856 strcat (buf, ", noreorder");
2857
2858 if (e_flags & EF_MIPS_PIC)
2859 strcat (buf, ", pic");
2860
2861 if (e_flags & EF_MIPS_CPIC)
2862 strcat (buf, ", cpic");
2863
d1bdd336
TS
2864 if (e_flags & EF_MIPS_UCODE)
2865 strcat (buf, ", ugen_reserved");
2866
252b5132
RH
2867 if (e_flags & EF_MIPS_ABI2)
2868 strcat (buf, ", abi2");
2869
43521d43
TS
2870 if (e_flags & EF_MIPS_OPTIONS_FIRST)
2871 strcat (buf, ", odk first");
2872
a5d22d2a
TS
2873 if (e_flags & EF_MIPS_32BITMODE)
2874 strcat (buf, ", 32bitmode");
2875
ba92f887
MR
2876 if (e_flags & EF_MIPS_NAN2008)
2877 strcat (buf, ", nan2008");
2878
fef1b0b3
SE
2879 if (e_flags & EF_MIPS_FP64)
2880 strcat (buf, ", fp64");
2881
156c2f8b
NC
2882 switch ((e_flags & EF_MIPS_MACH))
2883 {
2884 case E_MIPS_MACH_3900: strcat (buf, ", 3900"); break;
2885 case E_MIPS_MACH_4010: strcat (buf, ", 4010"); break;
2886 case E_MIPS_MACH_4100: strcat (buf, ", 4100"); break;
156c2f8b 2887 case E_MIPS_MACH_4111: strcat (buf, ", 4111"); break;
810dfa6e
L
2888 case E_MIPS_MACH_4120: strcat (buf, ", 4120"); break;
2889 case E_MIPS_MACH_4650: strcat (buf, ", 4650"); break;
2890 case E_MIPS_MACH_5400: strcat (buf, ", 5400"); break;
2891 case E_MIPS_MACH_5500: strcat (buf, ", 5500"); break;
c6c98b38 2892 case E_MIPS_MACH_SB1: strcat (buf, ", sb1"); break;
ebcb91b7 2893 case E_MIPS_MACH_9000: strcat (buf, ", 9000"); break;
350cc38d
MS
2894 case E_MIPS_MACH_LS2E: strcat (buf, ", loongson-2e"); break;
2895 case E_MIPS_MACH_LS2F: strcat (buf, ", loongson-2f"); break;
fd503541 2896 case E_MIPS_MACH_LS3A: strcat (buf, ", loongson-3a"); break;
05c6f050 2897 case E_MIPS_MACH_OCTEON: strcat (buf, ", octeon"); break;
67c2a3e8 2898 case E_MIPS_MACH_OCTEON2: strcat (buf, ", octeon2"); break;
d32e5c54 2899 case E_MIPS_MACH_OCTEON3: strcat (buf, ", octeon3"); break;
52b6b6b9 2900 case E_MIPS_MACH_XLR: strcat (buf, ", xlr"); break;
43521d43
TS
2901 case 0:
2902 /* We simply ignore the field in this case to avoid confusion:
2903 MIPS ELF does not specify EF_MIPS_MACH, it is a GNU
2904 extension. */
2905 break;
2b692964 2906 default: strcat (buf, _(", unknown CPU")); break;
156c2f8b 2907 }
43521d43
TS
2908
2909 switch ((e_flags & EF_MIPS_ABI))
2910 {
2911 case E_MIPS_ABI_O32: strcat (buf, ", o32"); break;
2912 case E_MIPS_ABI_O64: strcat (buf, ", o64"); break;
2913 case E_MIPS_ABI_EABI32: strcat (buf, ", eabi32"); break;
2914 case E_MIPS_ABI_EABI64: strcat (buf, ", eabi64"); break;
2915 case 0:
2916 /* We simply ignore the field in this case to avoid confusion:
2917 MIPS ELF does not specify EF_MIPS_ABI, it is a GNU extension.
2918 This means it is likely to be an o32 file, but not for
2919 sure. */
2920 break;
2b692964 2921 default: strcat (buf, _(", unknown ABI")); break;
43521d43
TS
2922 }
2923
2924 if (e_flags & EF_MIPS_ARCH_ASE_MDMX)
2925 strcat (buf, ", mdmx");
2926
2927 if (e_flags & EF_MIPS_ARCH_ASE_M16)
2928 strcat (buf, ", mips16");
2929
df58fc94
RS
2930 if (e_flags & EF_MIPS_ARCH_ASE_MICROMIPS)
2931 strcat (buf, ", micromips");
2932
43521d43
TS
2933 switch ((e_flags & EF_MIPS_ARCH))
2934 {
2935 case E_MIPS_ARCH_1: strcat (buf, ", mips1"); break;
2936 case E_MIPS_ARCH_2: strcat (buf, ", mips2"); break;
2937 case E_MIPS_ARCH_3: strcat (buf, ", mips3"); break;
2938 case E_MIPS_ARCH_4: strcat (buf, ", mips4"); break;
2939 case E_MIPS_ARCH_5: strcat (buf, ", mips5"); break;
2940 case E_MIPS_ARCH_32: strcat (buf, ", mips32"); break;
cb44e358 2941 case E_MIPS_ARCH_32R2: strcat (buf, ", mips32r2"); break;
7361da2c 2942 case E_MIPS_ARCH_32R6: strcat (buf, ", mips32r6"); break;
43521d43 2943 case E_MIPS_ARCH_64: strcat (buf, ", mips64"); break;
5f74bc13 2944 case E_MIPS_ARCH_64R2: strcat (buf, ", mips64r2"); break;
7361da2c 2945 case E_MIPS_ARCH_64R6: strcat (buf, ", mips64r6"); break;
2b692964 2946 default: strcat (buf, _(", unknown ISA")); break;
43521d43 2947 }
252b5132 2948 break;
351b4b40 2949
35c08157
KLC
2950 case EM_NDS32:
2951 decode_NDS32_machine_flags (e_flags, buf, sizeof buf);
2952 break;
2953
ccde1100
AO
2954 case EM_SH:
2955 switch ((e_flags & EF_SH_MACH_MASK))
2956 {
2957 case EF_SH1: strcat (buf, ", sh1"); break;
2958 case EF_SH2: strcat (buf, ", sh2"); break;
2959 case EF_SH3: strcat (buf, ", sh3"); break;
2960 case EF_SH_DSP: strcat (buf, ", sh-dsp"); break;
2961 case EF_SH3_DSP: strcat (buf, ", sh3-dsp"); break;
2962 case EF_SH4AL_DSP: strcat (buf, ", sh4al-dsp"); break;
2963 case EF_SH3E: strcat (buf, ", sh3e"); break;
2964 case EF_SH4: strcat (buf, ", sh4"); break;
2965 case EF_SH5: strcat (buf, ", sh5"); break;
2966 case EF_SH2E: strcat (buf, ", sh2e"); break;
2967 case EF_SH4A: strcat (buf, ", sh4a"); break;
1d70c7fb 2968 case EF_SH2A: strcat (buf, ", sh2a"); break;
ccde1100
AO
2969 case EF_SH4_NOFPU: strcat (buf, ", sh4-nofpu"); break;
2970 case EF_SH4A_NOFPU: strcat (buf, ", sh4a-nofpu"); break;
1d70c7fb 2971 case EF_SH2A_NOFPU: strcat (buf, ", sh2a-nofpu"); break;
0b92ab21
NH
2972 case EF_SH3_NOMMU: strcat (buf, ", sh3-nommu"); break;
2973 case EF_SH4_NOMMU_NOFPU: strcat (buf, ", sh4-nommu-nofpu"); break;
2974 case EF_SH2A_SH4_NOFPU: strcat (buf, ", sh2a-nofpu-or-sh4-nommu-nofpu"); break;
2975 case EF_SH2A_SH3_NOFPU: strcat (buf, ", sh2a-nofpu-or-sh3-nommu"); break;
2976 case EF_SH2A_SH4: strcat (buf, ", sh2a-or-sh4"); break;
2977 case EF_SH2A_SH3E: strcat (buf, ", sh2a-or-sh3e"); break;
2b692964 2978 default: strcat (buf, _(", unknown ISA")); break;
ccde1100
AO
2979 }
2980
cec6a5b8
MR
2981 if (e_flags & EF_SH_PIC)
2982 strcat (buf, ", pic");
2983
2984 if (e_flags & EF_SH_FDPIC)
2985 strcat (buf, ", fdpic");
ccde1100 2986 break;
73589c9d
CS
2987
2988 case EM_OR1K:
2989 if (e_flags & EF_OR1K_NODELAY)
2990 strcat (buf, ", no delay");
2991 break;
57346661 2992
351b4b40
RH
2993 case EM_SPARCV9:
2994 if (e_flags & EF_SPARC_32PLUS)
2995 strcat (buf, ", v8+");
2996
2997 if (e_flags & EF_SPARC_SUN_US1)
d07faca2
RH
2998 strcat (buf, ", ultrasparcI");
2999
3000 if (e_flags & EF_SPARC_SUN_US3)
3001 strcat (buf, ", ultrasparcIII");
351b4b40
RH
3002
3003 if (e_flags & EF_SPARC_HAL_R1)
3004 strcat (buf, ", halr1");
3005
3006 if (e_flags & EF_SPARC_LEDATA)
3007 strcat (buf, ", ledata");
3008
3009 if ((e_flags & EF_SPARCV9_MM) == EF_SPARCV9_TSO)
3010 strcat (buf, ", tso");
3011
3012 if ((e_flags & EF_SPARCV9_MM) == EF_SPARCV9_PSO)
3013 strcat (buf, ", pso");
3014
3015 if ((e_flags & EF_SPARCV9_MM) == EF_SPARCV9_RMO)
3016 strcat (buf, ", rmo");
3017 break;
7d466069 3018
103f02d3
UD
3019 case EM_PARISC:
3020 switch (e_flags & EF_PARISC_ARCH)
3021 {
3022 case EFA_PARISC_1_0:
3023 strcpy (buf, ", PA-RISC 1.0");
3024 break;
3025 case EFA_PARISC_1_1:
3026 strcpy (buf, ", PA-RISC 1.1");
3027 break;
3028 case EFA_PARISC_2_0:
3029 strcpy (buf, ", PA-RISC 2.0");
3030 break;
3031 default:
3032 break;
3033 }
3034 if (e_flags & EF_PARISC_TRAPNIL)
3035 strcat (buf, ", trapnil");
3036 if (e_flags & EF_PARISC_EXT)
3037 strcat (buf, ", ext");
3038 if (e_flags & EF_PARISC_LSB)
3039 strcat (buf, ", lsb");
3040 if (e_flags & EF_PARISC_WIDE)
3041 strcat (buf, ", wide");
3042 if (e_flags & EF_PARISC_NO_KABP)
3043 strcat (buf, ", no kabp");
3044 if (e_flags & EF_PARISC_LAZYSWAP)
3045 strcat (buf, ", lazyswap");
30800947 3046 break;
76da6bbe 3047
7d466069 3048 case EM_PJ:
2b0337b0 3049 case EM_PJ_OLD:
7d466069
ILT
3050 if ((e_flags & EF_PICOJAVA_NEWCALLS) == EF_PICOJAVA_NEWCALLS)
3051 strcat (buf, ", new calling convention");
3052
3053 if ((e_flags & EF_PICOJAVA_GNUCALLS) == EF_PICOJAVA_GNUCALLS)
3054 strcat (buf, ", gnu calling convention");
3055 break;
4d6ed7c8
NC
3056
3057 case EM_IA_64:
3058 if ((e_flags & EF_IA_64_ABI64))
3059 strcat (buf, ", 64-bit");
3060 else
3061 strcat (buf, ", 32-bit");
3062 if ((e_flags & EF_IA_64_REDUCEDFP))
3063 strcat (buf, ", reduced fp model");
3064 if ((e_flags & EF_IA_64_NOFUNCDESC_CONS_GP))
3065 strcat (buf, ", no function descriptors, constant gp");
3066 else if ((e_flags & EF_IA_64_CONS_GP))
3067 strcat (buf, ", constant gp");
3068 if ((e_flags & EF_IA_64_ABSOLUTE))
3069 strcat (buf, ", absolute");
28f997cf
TG
3070 if (elf_header.e_ident[EI_OSABI] == ELFOSABI_OPENVMS)
3071 {
3072 if ((e_flags & EF_IA_64_VMS_LINKAGES))
3073 strcat (buf, ", vms_linkages");
3074 switch ((e_flags & EF_IA_64_VMS_COMCOD))
3075 {
3076 case EF_IA_64_VMS_COMCOD_SUCCESS:
3077 break;
3078 case EF_IA_64_VMS_COMCOD_WARNING:
3079 strcat (buf, ", warning");
3080 break;
3081 case EF_IA_64_VMS_COMCOD_ERROR:
3082 strcat (buf, ", error");
3083 break;
3084 case EF_IA_64_VMS_COMCOD_ABORT:
3085 strcat (buf, ", abort");
3086 break;
3087 default:
3088 abort ();
3089 }
3090 }
4d6ed7c8 3091 break;
179d3252
JT
3092
3093 case EM_VAX:
3094 if ((e_flags & EF_VAX_NONPIC))
3095 strcat (buf, ", non-PIC");
3096 if ((e_flags & EF_VAX_DFLOAT))
3097 strcat (buf, ", D-Float");
3098 if ((e_flags & EF_VAX_GFLOAT))
3099 strcat (buf, ", G-Float");
3100 break;
c7927a3c 3101
4046d87a
NC
3102 case EM_RL78:
3103 if (e_flags & E_FLAG_RL78_G10)
3104 strcat (buf, ", G10");
856ea05c
KP
3105 if (e_flags & E_FLAG_RL78_64BIT_DOUBLES)
3106 strcat (buf, ", 64-bit doubles");
4046d87a 3107 break;
0b4362b0 3108
c7927a3c
NC
3109 case EM_RX:
3110 if (e_flags & E_FLAG_RX_64BIT_DOUBLES)
3111 strcat (buf, ", 64-bit doubles");
3112 if (e_flags & E_FLAG_RX_DSP)
dd24e3da 3113 strcat (buf, ", dsp");
d4cb0ea0 3114 if (e_flags & E_FLAG_RX_PID)
0b4362b0 3115 strcat (buf, ", pid");
708e2187
NC
3116 if (e_flags & E_FLAG_RX_ABI)
3117 strcat (buf, ", RX ABI");
d4cb0ea0 3118 break;
55786da2
AK
3119
3120 case EM_S390:
3121 if (e_flags & EF_S390_HIGH_GPRS)
3122 strcat (buf, ", highgprs");
d4cb0ea0 3123 break;
40b36596
JM
3124
3125 case EM_TI_C6000:
3126 if ((e_flags & EF_C6000_REL))
3127 strcat (buf, ", relocatable module");
d4cb0ea0 3128 break;
13761a11
NC
3129
3130 case EM_MSP430:
3131 strcat (buf, _(": architecture variant: "));
3132 switch (e_flags & EF_MSP430_MACH)
3133 {
3134 case E_MSP430_MACH_MSP430x11: strcat (buf, "MSP430x11"); break;
3135 case E_MSP430_MACH_MSP430x11x1 : strcat (buf, "MSP430x11x1 "); break;
3136 case E_MSP430_MACH_MSP430x12: strcat (buf, "MSP430x12"); break;
3137 case E_MSP430_MACH_MSP430x13: strcat (buf, "MSP430x13"); break;
3138 case E_MSP430_MACH_MSP430x14: strcat (buf, "MSP430x14"); break;
3139 case E_MSP430_MACH_MSP430x15: strcat (buf, "MSP430x15"); break;
3140 case E_MSP430_MACH_MSP430x16: strcat (buf, "MSP430x16"); break;
3141 case E_MSP430_MACH_MSP430x31: strcat (buf, "MSP430x31"); break;
3142 case E_MSP430_MACH_MSP430x32: strcat (buf, "MSP430x32"); break;
3143 case E_MSP430_MACH_MSP430x33: strcat (buf, "MSP430x33"); break;
3144 case E_MSP430_MACH_MSP430x41: strcat (buf, "MSP430x41"); break;
3145 case E_MSP430_MACH_MSP430x42: strcat (buf, "MSP430x42"); break;
3146 case E_MSP430_MACH_MSP430x43: strcat (buf, "MSP430x43"); break;
3147 case E_MSP430_MACH_MSP430x44: strcat (buf, "MSP430x44"); break;
3148 case E_MSP430_MACH_MSP430X : strcat (buf, "MSP430X"); break;
3149 default:
3150 strcat (buf, _(": unknown")); break;
3151 }
3152
3153 if (e_flags & ~ EF_MSP430_MACH)
3154 strcat (buf, _(": unknown extra flag bits also present"));
252b5132
RH
3155 }
3156 }
3157
3158 return buf;
3159}
3160
252b5132 3161static const char *
d3ba0551
AM
3162get_osabi_name (unsigned int osabi)
3163{
3164 static char buff[32];
3165
3166 switch (osabi)
3167 {
3168 case ELFOSABI_NONE: return "UNIX - System V";
3169 case ELFOSABI_HPUX: return "UNIX - HP-UX";
3170 case ELFOSABI_NETBSD: return "UNIX - NetBSD";
9c55345c 3171 case ELFOSABI_GNU: return "UNIX - GNU";
d3ba0551
AM
3172 case ELFOSABI_SOLARIS: return "UNIX - Solaris";
3173 case ELFOSABI_AIX: return "UNIX - AIX";
3174 case ELFOSABI_IRIX: return "UNIX - IRIX";
3175 case ELFOSABI_FREEBSD: return "UNIX - FreeBSD";
3176 case ELFOSABI_TRU64: return "UNIX - TRU64";
3177 case ELFOSABI_MODESTO: return "Novell - Modesto";
3178 case ELFOSABI_OPENBSD: return "UNIX - OpenBSD";
3179 case ELFOSABI_OPENVMS: return "VMS - OpenVMS";
3180 case ELFOSABI_NSK: return "HP - Non-Stop Kernel";
3b26c801 3181 case ELFOSABI_AROS: return "AROS";
11636f9e 3182 case ELFOSABI_FENIXOS: return "FenixOS";
d3ba0551 3183 default:
40b36596
JM
3184 if (osabi >= 64)
3185 switch (elf_header.e_machine)
3186 {
3187 case EM_ARM:
3188 switch (osabi)
3189 {
3190 case ELFOSABI_ARM: return "ARM";
3191 default:
3192 break;
3193 }
3194 break;
3195
3196 case EM_MSP430:
3197 case EM_MSP430_OLD:
3198 switch (osabi)
3199 {
3200 case ELFOSABI_STANDALONE: return _("Standalone App");
3201 default:
3202 break;
3203 }
3204 break;
3205
3206 case EM_TI_C6000:
3207 switch (osabi)
3208 {
3209 case ELFOSABI_C6000_ELFABI: return _("Bare-metal C6000");
3210 case ELFOSABI_C6000_LINUX: return "Linux C6000";
3211 default:
3212 break;
3213 }
3214 break;
3215
3216 default:
3217 break;
3218 }
e9e44622 3219 snprintf (buff, sizeof (buff), _("<unknown: %x>"), osabi);
d3ba0551
AM
3220 return buff;
3221 }
3222}
3223
a06ea964
NC
3224static const char *
3225get_aarch64_segment_type (unsigned long type)
3226{
3227 switch (type)
3228 {
3229 case PT_AARCH64_ARCHEXT:
3230 return "AARCH64_ARCHEXT";
3231 default:
3232 break;
3233 }
3234
3235 return NULL;
3236}
3237
b294bdf8
MM
3238static const char *
3239get_arm_segment_type (unsigned long type)
3240{
3241 switch (type)
3242 {
3243 case PT_ARM_EXIDX:
3244 return "EXIDX";
3245 default:
3246 break;
3247 }
3248
3249 return NULL;
3250}
3251
d3ba0551
AM
3252static const char *
3253get_mips_segment_type (unsigned long type)
252b5132
RH
3254{
3255 switch (type)
3256 {
3257 case PT_MIPS_REGINFO:
3258 return "REGINFO";
3259 case PT_MIPS_RTPROC:
3260 return "RTPROC";
3261 case PT_MIPS_OPTIONS:
3262 return "OPTIONS";
351cdf24
MF
3263 case PT_MIPS_ABIFLAGS:
3264 return "ABIFLAGS";
252b5132
RH
3265 default:
3266 break;
3267 }
3268
3269 return NULL;
3270}
3271
103f02d3 3272static const char *
d3ba0551 3273get_parisc_segment_type (unsigned long type)
103f02d3
UD
3274{
3275 switch (type)
3276 {
3277 case PT_HP_TLS: return "HP_TLS";
3278 case PT_HP_CORE_NONE: return "HP_CORE_NONE";
3279 case PT_HP_CORE_VERSION: return "HP_CORE_VERSION";
3280 case PT_HP_CORE_KERNEL: return "HP_CORE_KERNEL";
3281 case PT_HP_CORE_COMM: return "HP_CORE_COMM";
3282 case PT_HP_CORE_PROC: return "HP_CORE_PROC";
3283 case PT_HP_CORE_LOADABLE: return "HP_CORE_LOADABLE";
3284 case PT_HP_CORE_STACK: return "HP_CORE_STACK";
3285 case PT_HP_CORE_SHM: return "HP_CORE_SHM";
3286 case PT_HP_CORE_MMF: return "HP_CORE_MMF";
3287 case PT_HP_PARALLEL: return "HP_PARALLEL";
3288 case PT_HP_FASTBIND: return "HP_FASTBIND";
eec8f817
DA
3289 case PT_HP_OPT_ANNOT: return "HP_OPT_ANNOT";
3290 case PT_HP_HSL_ANNOT: return "HP_HSL_ANNOT";
3291 case PT_HP_STACK: return "HP_STACK";
3292 case PT_HP_CORE_UTSNAME: return "HP_CORE_UTSNAME";
103f02d3
UD
3293 case PT_PARISC_ARCHEXT: return "PARISC_ARCHEXT";
3294 case PT_PARISC_UNWIND: return "PARISC_UNWIND";
61472819 3295 case PT_PARISC_WEAKORDER: return "PARISC_WEAKORDER";
103f02d3
UD
3296 default:
3297 break;
3298 }
3299
3300 return NULL;
3301}
3302
4d6ed7c8 3303static const char *
d3ba0551 3304get_ia64_segment_type (unsigned long type)
4d6ed7c8
NC
3305{
3306 switch (type)
3307 {
3308 case PT_IA_64_ARCHEXT: return "IA_64_ARCHEXT";
3309 case PT_IA_64_UNWIND: return "IA_64_UNWIND";
00428cca
AM
3310 case PT_HP_TLS: return "HP_TLS";
3311 case PT_IA_64_HP_OPT_ANOT: return "HP_OPT_ANNOT";
3312 case PT_IA_64_HP_HSL_ANOT: return "HP_HSL_ANNOT";
3313 case PT_IA_64_HP_STACK: return "HP_STACK";
4d6ed7c8
NC
3314 default:
3315 break;
3316 }
3317
3318 return NULL;
3319}
3320
40b36596
JM
3321static const char *
3322get_tic6x_segment_type (unsigned long type)
3323{
3324 switch (type)
3325 {
3326 case PT_C6000_PHATTR: return "C6000_PHATTR";
3327 default:
3328 break;
3329 }
3330
3331 return NULL;
3332}
3333
252b5132 3334static const char *
d3ba0551 3335get_segment_type (unsigned long p_type)
252b5132 3336{
b34976b6 3337 static char buff[32];
252b5132
RH
3338
3339 switch (p_type)
3340 {
b34976b6
AM
3341 case PT_NULL: return "NULL";
3342 case PT_LOAD: return "LOAD";
252b5132 3343 case PT_DYNAMIC: return "DYNAMIC";
b34976b6
AM
3344 case PT_INTERP: return "INTERP";
3345 case PT_NOTE: return "NOTE";
3346 case PT_SHLIB: return "SHLIB";
3347 case PT_PHDR: return "PHDR";
13ae64f3 3348 case PT_TLS: return "TLS";
252b5132 3349
65765700
JJ
3350 case PT_GNU_EH_FRAME:
3351 return "GNU_EH_FRAME";
2b05f1b7 3352 case PT_GNU_STACK: return "GNU_STACK";
8c37241b 3353 case PT_GNU_RELRO: return "GNU_RELRO";
65765700 3354
252b5132
RH
3355 default:
3356 if ((p_type >= PT_LOPROC) && (p_type <= PT_HIPROC))
3357 {
2cf0635d 3358 const char * result;
103f02d3 3359
252b5132
RH
3360 switch (elf_header.e_machine)
3361 {
a06ea964
NC
3362 case EM_AARCH64:
3363 result = get_aarch64_segment_type (p_type);
3364 break;
b294bdf8
MM
3365 case EM_ARM:
3366 result = get_arm_segment_type (p_type);
3367 break;
252b5132 3368 case EM_MIPS:
4fe85591 3369 case EM_MIPS_RS3_LE:
252b5132
RH
3370 result = get_mips_segment_type (p_type);
3371 break;
103f02d3
UD
3372 case EM_PARISC:
3373 result = get_parisc_segment_type (p_type);
3374 break;
4d6ed7c8
NC
3375 case EM_IA_64:
3376 result = get_ia64_segment_type (p_type);
3377 break;
40b36596
JM
3378 case EM_TI_C6000:
3379 result = get_tic6x_segment_type (p_type);
3380 break;
252b5132
RH
3381 default:
3382 result = NULL;
3383 break;
3384 }
103f02d3 3385
252b5132
RH
3386 if (result != NULL)
3387 return result;
103f02d3 3388
252b5132
RH
3389 sprintf (buff, "LOPROC+%lx", p_type - PT_LOPROC);
3390 }
3391 else if ((p_type >= PT_LOOS) && (p_type <= PT_HIOS))
103f02d3 3392 {
2cf0635d 3393 const char * result;
103f02d3
UD
3394
3395 switch (elf_header.e_machine)
3396 {
3397 case EM_PARISC:
3398 result = get_parisc_segment_type (p_type);
3399 break;
00428cca
AM
3400 case EM_IA_64:
3401 result = get_ia64_segment_type (p_type);
3402 break;
103f02d3
UD
3403 default:
3404 result = NULL;
3405 break;
3406 }
3407
3408 if (result != NULL)
3409 return result;
3410
3411 sprintf (buff, "LOOS+%lx", p_type - PT_LOOS);
3412 }
252b5132 3413 else
e9e44622 3414 snprintf (buff, sizeof (buff), _("<unknown>: %lx"), p_type);
252b5132
RH
3415
3416 return buff;
3417 }
3418}
3419
3420static const char *
d3ba0551 3421get_mips_section_type_name (unsigned int sh_type)
252b5132
RH
3422{
3423 switch (sh_type)
3424 {
b34976b6
AM
3425 case SHT_MIPS_LIBLIST: return "MIPS_LIBLIST";
3426 case SHT_MIPS_MSYM: return "MIPS_MSYM";
3427 case SHT_MIPS_CONFLICT: return "MIPS_CONFLICT";
3428 case SHT_MIPS_GPTAB: return "MIPS_GPTAB";
3429 case SHT_MIPS_UCODE: return "MIPS_UCODE";
3430 case SHT_MIPS_DEBUG: return "MIPS_DEBUG";
3431 case SHT_MIPS_REGINFO: return "MIPS_REGINFO";
3432 case SHT_MIPS_PACKAGE: return "MIPS_PACKAGE";
3433 case SHT_MIPS_PACKSYM: return "MIPS_PACKSYM";
3434 case SHT_MIPS_RELD: return "MIPS_RELD";
3435 case SHT_MIPS_IFACE: return "MIPS_IFACE";
3436 case SHT_MIPS_CONTENT: return "MIPS_CONTENT";
3437 case SHT_MIPS_OPTIONS: return "MIPS_OPTIONS";
3438 case SHT_MIPS_SHDR: return "MIPS_SHDR";
3439 case SHT_MIPS_FDESC: return "MIPS_FDESC";
3440 case SHT_MIPS_EXTSYM: return "MIPS_EXTSYM";
3441 case SHT_MIPS_DENSE: return "MIPS_DENSE";
3442 case SHT_MIPS_PDESC: return "MIPS_PDESC";
3443 case SHT_MIPS_LOCSYM: return "MIPS_LOCSYM";
3444 case SHT_MIPS_AUXSYM: return "MIPS_AUXSYM";
3445 case SHT_MIPS_OPTSYM: return "MIPS_OPTSYM";
3446 case SHT_MIPS_LOCSTR: return "MIPS_LOCSTR";
3447 case SHT_MIPS_LINE: return "MIPS_LINE";
3448 case SHT_MIPS_RFDESC: return "MIPS_RFDESC";
3449 case SHT_MIPS_DELTASYM: return "MIPS_DELTASYM";
3450 case SHT_MIPS_DELTAINST: return "MIPS_DELTAINST";
3451 case SHT_MIPS_DELTACLASS: return "MIPS_DELTACLASS";
3452 case SHT_MIPS_DWARF: return "MIPS_DWARF";
3453 case SHT_MIPS_DELTADECL: return "MIPS_DELTADECL";
3454 case SHT_MIPS_SYMBOL_LIB: return "MIPS_SYMBOL_LIB";
3455 case SHT_MIPS_EVENTS: return "MIPS_EVENTS";
3456 case SHT_MIPS_TRANSLATE: return "MIPS_TRANSLATE";
3457 case SHT_MIPS_PIXIE: return "MIPS_PIXIE";
3458 case SHT_MIPS_XLATE: return "MIPS_XLATE";
3459 case SHT_MIPS_XLATE_DEBUG: return "MIPS_XLATE_DEBUG";
3460 case SHT_MIPS_WHIRL: return "MIPS_WHIRL";
3461 case SHT_MIPS_EH_REGION: return "MIPS_EH_REGION";
3462 case SHT_MIPS_XLATE_OLD: return "MIPS_XLATE_OLD";
252b5132 3463 case SHT_MIPS_PDR_EXCEPTION: return "MIPS_PDR_EXCEPTION";
351cdf24 3464 case SHT_MIPS_ABIFLAGS: return "MIPS_ABIFLAGS";
252b5132
RH
3465 default:
3466 break;
3467 }
3468 return NULL;
3469}
3470
103f02d3 3471static const char *
d3ba0551 3472get_parisc_section_type_name (unsigned int sh_type)
103f02d3
UD
3473{
3474 switch (sh_type)
3475 {
3476 case SHT_PARISC_EXT: return "PARISC_EXT";
3477 case SHT_PARISC_UNWIND: return "PARISC_UNWIND";
3478 case SHT_PARISC_DOC: return "PARISC_DOC";
eec8f817
DA
3479 case SHT_PARISC_ANNOT: return "PARISC_ANNOT";
3480 case SHT_PARISC_SYMEXTN: return "PARISC_SYMEXTN";
3481 case SHT_PARISC_STUBS: return "PARISC_STUBS";
61472819 3482 case SHT_PARISC_DLKM: return "PARISC_DLKM";
103f02d3
UD
3483 default:
3484 break;
3485 }
3486 return NULL;
3487}
3488
4d6ed7c8 3489static const char *
d3ba0551 3490get_ia64_section_type_name (unsigned int sh_type)
4d6ed7c8 3491{
18bd398b 3492 /* If the top 8 bits are 0x78 the next 8 are the os/abi ID. */
ecc51f48
NC
3493 if ((sh_type & 0xFF000000) == SHT_IA_64_LOPSREG)
3494 return get_osabi_name ((sh_type & 0x00FF0000) >> 16);
0de14b54 3495
4d6ed7c8
NC
3496 switch (sh_type)
3497 {
148b93f2
NC
3498 case SHT_IA_64_EXT: return "IA_64_EXT";
3499 case SHT_IA_64_UNWIND: return "IA_64_UNWIND";
3500 case SHT_IA_64_PRIORITY_INIT: return "IA_64_PRIORITY_INIT";
3501 case SHT_IA_64_VMS_TRACE: return "VMS_TRACE";
3502 case SHT_IA_64_VMS_TIE_SIGNATURES: return "VMS_TIE_SIGNATURES";
3503 case SHT_IA_64_VMS_DEBUG: return "VMS_DEBUG";
3504 case SHT_IA_64_VMS_DEBUG_STR: return "VMS_DEBUG_STR";
3505 case SHT_IA_64_VMS_LINKAGES: return "VMS_LINKAGES";
3506 case SHT_IA_64_VMS_SYMBOL_VECTOR: return "VMS_SYMBOL_VECTOR";
3507 case SHT_IA_64_VMS_FIXUP: return "VMS_FIXUP";
4d6ed7c8
NC
3508 default:
3509 break;
3510 }
3511 return NULL;
3512}
3513
d2b2c203
DJ
3514static const char *
3515get_x86_64_section_type_name (unsigned int sh_type)
3516{
3517 switch (sh_type)
3518 {
3519 case SHT_X86_64_UNWIND: return "X86_64_UNWIND";
3520 default:
3521 break;
3522 }
3523 return NULL;
3524}
3525
a06ea964
NC
3526static const char *
3527get_aarch64_section_type_name (unsigned int sh_type)
3528{
3529 switch (sh_type)
3530 {
3531 case SHT_AARCH64_ATTRIBUTES:
3532 return "AARCH64_ATTRIBUTES";
3533 default:
3534 break;
3535 }
3536 return NULL;
3537}
3538
40a18ebd
NC
3539static const char *
3540get_arm_section_type_name (unsigned int sh_type)
3541{
3542 switch (sh_type)
3543 {
7f6fed87
NC
3544 case SHT_ARM_EXIDX: return "ARM_EXIDX";
3545 case SHT_ARM_PREEMPTMAP: return "ARM_PREEMPTMAP";
3546 case SHT_ARM_ATTRIBUTES: return "ARM_ATTRIBUTES";
3547 case SHT_ARM_DEBUGOVERLAY: return "ARM_DEBUGOVERLAY";
3548 case SHT_ARM_OVERLAYSECTION: return "ARM_OVERLAYSECTION";
40a18ebd
NC
3549 default:
3550 break;
3551 }
3552 return NULL;
3553}
3554
40b36596
JM
3555static const char *
3556get_tic6x_section_type_name (unsigned int sh_type)
3557{
3558 switch (sh_type)
3559 {
3560 case SHT_C6000_UNWIND:
3561 return "C6000_UNWIND";
3562 case SHT_C6000_PREEMPTMAP:
3563 return "C6000_PREEMPTMAP";
3564 case SHT_C6000_ATTRIBUTES:
3565 return "C6000_ATTRIBUTES";
3566 case SHT_TI_ICODE:
3567 return "TI_ICODE";
3568 case SHT_TI_XREF:
3569 return "TI_XREF";
3570 case SHT_TI_HANDLER:
3571 return "TI_HANDLER";
3572 case SHT_TI_INITINFO:
3573 return "TI_INITINFO";
3574 case SHT_TI_PHATTRS:
3575 return "TI_PHATTRS";
3576 default:
3577 break;
3578 }
3579 return NULL;
3580}
3581
13761a11
NC
3582static const char *
3583get_msp430x_section_type_name (unsigned int sh_type)
3584{
3585 switch (sh_type)
3586 {
3587 case SHT_MSP430_SEC_FLAGS: return "MSP430_SEC_FLAGS";
3588 case SHT_MSP430_SYM_ALIASES: return "MSP430_SYM_ALIASES";
3589 case SHT_MSP430_ATTRIBUTES: return "MSP430_ATTRIBUTES";
3590 default: return NULL;
3591 }
3592}
3593
252b5132 3594static const char *
d3ba0551 3595get_section_type_name (unsigned int sh_type)
252b5132 3596{
b34976b6 3597 static char buff[32];
252b5132
RH
3598
3599 switch (sh_type)
3600 {
3601 case SHT_NULL: return "NULL";
3602 case SHT_PROGBITS: return "PROGBITS";
3603 case SHT_SYMTAB: return "SYMTAB";
3604 case SHT_STRTAB: return "STRTAB";
3605 case SHT_RELA: return "RELA";
3606 case SHT_HASH: return "HASH";
3607 case SHT_DYNAMIC: return "DYNAMIC";
3608 case SHT_NOTE: return "NOTE";
3609 case SHT_NOBITS: return "NOBITS";
3610 case SHT_REL: return "REL";
3611 case SHT_SHLIB: return "SHLIB";
3612 case SHT_DYNSYM: return "DYNSYM";
d1133906
NC
3613 case SHT_INIT_ARRAY: return "INIT_ARRAY";
3614 case SHT_FINI_ARRAY: return "FINI_ARRAY";
3615 case SHT_PREINIT_ARRAY: return "PREINIT_ARRAY";
fdc90cb4 3616 case SHT_GNU_HASH: return "GNU_HASH";
93ebe586
NC
3617 case SHT_GROUP: return "GROUP";
3618 case SHT_SYMTAB_SHNDX: return "SYMTAB SECTION INDICIES";
252b5132
RH
3619 case SHT_GNU_verdef: return "VERDEF";
3620 case SHT_GNU_verneed: return "VERNEED";
3621 case SHT_GNU_versym: return "VERSYM";
b34976b6
AM
3622 case 0x6ffffff0: return "VERSYM";
3623 case 0x6ffffffc: return "VERDEF";
252b5132
RH
3624 case 0x7ffffffd: return "AUXILIARY";
3625 case 0x7fffffff: return "FILTER";
047b2264 3626 case SHT_GNU_LIBLIST: return "GNU_LIBLIST";
252b5132
RH
3627
3628 default:
3629 if ((sh_type >= SHT_LOPROC) && (sh_type <= SHT_HIPROC))
3630 {
2cf0635d 3631 const char * result;
252b5132
RH
3632
3633 switch (elf_header.e_machine)
3634 {
3635 case EM_MIPS:
4fe85591 3636 case EM_MIPS_RS3_LE:
252b5132
RH
3637 result = get_mips_section_type_name (sh_type);
3638 break;
103f02d3
UD
3639 case EM_PARISC:
3640 result = get_parisc_section_type_name (sh_type);
3641 break;
4d6ed7c8
NC
3642 case EM_IA_64:
3643 result = get_ia64_section_type_name (sh_type);
3644 break;
d2b2c203 3645 case EM_X86_64:
8a9036a4 3646 case EM_L1OM:
7a9068fe 3647 case EM_K1OM:
d2b2c203
DJ
3648 result = get_x86_64_section_type_name (sh_type);
3649 break;
a06ea964
NC
3650 case EM_AARCH64:
3651 result = get_aarch64_section_type_name (sh_type);
3652 break;
40a18ebd
NC
3653 case EM_ARM:
3654 result = get_arm_section_type_name (sh_type);
3655 break;
40b36596
JM
3656 case EM_TI_C6000:
3657 result = get_tic6x_section_type_name (sh_type);
3658 break;
13761a11
NC
3659 case EM_MSP430:
3660 result = get_msp430x_section_type_name (sh_type);
3661 break;
252b5132
RH
3662 default:
3663 result = NULL;
3664 break;
3665 }
3666
3667 if (result != NULL)
3668 return result;
3669
c91d0dfb 3670 sprintf (buff, "LOPROC+%x", sh_type - SHT_LOPROC);
252b5132
RH
3671 }
3672 else if ((sh_type >= SHT_LOOS) && (sh_type <= SHT_HIOS))
148b93f2 3673 {
2cf0635d 3674 const char * result;
148b93f2
NC
3675
3676 switch (elf_header.e_machine)
3677 {
3678 case EM_IA_64:
3679 result = get_ia64_section_type_name (sh_type);
3680 break;
3681 default:
3682 result = NULL;
3683 break;
3684 }
3685
3686 if (result != NULL)
3687 return result;
3688
3689 sprintf (buff, "LOOS+%x", sh_type - SHT_LOOS);
3690 }
252b5132 3691 else if ((sh_type >= SHT_LOUSER) && (sh_type <= SHT_HIUSER))
c91d0dfb 3692 sprintf (buff, "LOUSER+%x", sh_type - SHT_LOUSER);
252b5132 3693 else
a7dbfd1c
NC
3694 /* This message is probably going to be displayed in a 15
3695 character wide field, so put the hex value first. */
3696 snprintf (buff, sizeof (buff), _("%08x: <unknown>"), sh_type);
103f02d3 3697
252b5132
RH
3698 return buff;
3699 }
3700}
3701
2979dc34 3702#define OPTION_DEBUG_DUMP 512
2c610e4b 3703#define OPTION_DYN_SYMS 513
fd2f0033
TT
3704#define OPTION_DWARF_DEPTH 514
3705#define OPTION_DWARF_START 515
4723351a 3706#define OPTION_DWARF_CHECK 516
2979dc34 3707
85b1c36d 3708static struct option options[] =
252b5132 3709{
b34976b6 3710 {"all", no_argument, 0, 'a'},
252b5132
RH
3711 {"file-header", no_argument, 0, 'h'},
3712 {"program-headers", no_argument, 0, 'l'},
b34976b6
AM
3713 {"headers", no_argument, 0, 'e'},
3714 {"histogram", no_argument, 0, 'I'},
3715 {"segments", no_argument, 0, 'l'},
3716 {"sections", no_argument, 0, 'S'},
252b5132 3717 {"section-headers", no_argument, 0, 'S'},
f5842774 3718 {"section-groups", no_argument, 0, 'g'},
5477e8a0 3719 {"section-details", no_argument, 0, 't'},
595cf52e 3720 {"full-section-name",no_argument, 0, 'N'},
b34976b6
AM
3721 {"symbols", no_argument, 0, 's'},
3722 {"syms", no_argument, 0, 's'},
2c610e4b 3723 {"dyn-syms", no_argument, 0, OPTION_DYN_SYMS},
b34976b6
AM
3724 {"relocs", no_argument, 0, 'r'},
3725 {"notes", no_argument, 0, 'n'},
3726 {"dynamic", no_argument, 0, 'd'},
a952a375 3727 {"arch-specific", no_argument, 0, 'A'},
252b5132
RH
3728 {"version-info", no_argument, 0, 'V'},
3729 {"use-dynamic", no_argument, 0, 'D'},
09c11c86 3730 {"unwind", no_argument, 0, 'u'},
4145f1d5 3731 {"archive-index", no_argument, 0, 'c'},
b34976b6 3732 {"hex-dump", required_argument, 0, 'x'},
cf13d699 3733 {"relocated-dump", required_argument, 0, 'R'},
09c11c86 3734 {"string-dump", required_argument, 0, 'p'},
252b5132
RH
3735#ifdef SUPPORT_DISASSEMBLY
3736 {"instruction-dump", required_argument, 0, 'i'},
3737#endif
cf13d699 3738 {"debug-dump", optional_argument, 0, OPTION_DEBUG_DUMP},
252b5132 3739
fd2f0033
TT
3740 {"dwarf-depth", required_argument, 0, OPTION_DWARF_DEPTH},
3741 {"dwarf-start", required_argument, 0, OPTION_DWARF_START},
4723351a 3742 {"dwarf-check", no_argument, 0, OPTION_DWARF_CHECK},
fd2f0033 3743
b34976b6
AM
3744 {"version", no_argument, 0, 'v'},
3745 {"wide", no_argument, 0, 'W'},
3746 {"help", no_argument, 0, 'H'},
3747 {0, no_argument, 0, 0}
252b5132
RH
3748};
3749
3750static void
2cf0635d 3751usage (FILE * stream)
252b5132 3752{
92f01d61
JM
3753 fprintf (stream, _("Usage: readelf <option(s)> elf-file(s)\n"));
3754 fprintf (stream, _(" Display information about the contents of ELF format files\n"));
3755 fprintf (stream, _(" Options are:\n\
8b53311e
NC
3756 -a --all Equivalent to: -h -l -S -s -r -d -V -A -I\n\
3757 -h --file-header Display the ELF file header\n\
3758 -l --program-headers Display the program headers\n\
3759 --segments An alias for --program-headers\n\
3760 -S --section-headers Display the sections' header\n\
3761 --sections An alias for --section-headers\n\
f5842774 3762 -g --section-groups Display the section groups\n\
5477e8a0 3763 -t --section-details Display the section details\n\
8b53311e
NC
3764 -e --headers Equivalent to: -h -l -S\n\
3765 -s --syms Display the symbol table\n\
3f08eb35 3766 --symbols An alias for --syms\n\
2c610e4b 3767 --dyn-syms Display the dynamic symbol table\n\
8b53311e
NC
3768 -n --notes Display the core notes (if present)\n\
3769 -r --relocs Display the relocations (if present)\n\
3770 -u --unwind Display the unwind info (if present)\n\
b2d38a17 3771 -d --dynamic Display the dynamic section (if present)\n\
8b53311e 3772 -V --version-info Display the version sections (if present)\n\
1b31d05e 3773 -A --arch-specific Display architecture specific information (if any)\n\
4145f1d5 3774 -c --archive-index Display the symbol/file index in an archive\n\
8b53311e 3775 -D --use-dynamic Use the dynamic section info when displaying symbols\n\
09c11c86
NC
3776 -x --hex-dump=<number|name>\n\
3777 Dump the contents of section <number|name> as bytes\n\
3778 -p --string-dump=<number|name>\n\
3779 Dump the contents of section <number|name> as strings\n\
cf13d699
NC
3780 -R --relocated-dump=<number|name>\n\
3781 Dump the contents of section <number|name> as relocated bytes\n\
f9f0e732 3782 -w[lLiaprmfFsoRt] or\n\
1ed06042 3783 --debug-dump[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,\n\
6f875884 3784 =frames-interp,=str,=loc,=Ranges,=pubtypes,\n\
657d0d47
CC
3785 =gdb_index,=trace_info,=trace_abbrev,=trace_aranges,\n\
3786 =addr,=cu_index]\n\
8b53311e 3787 Display the contents of DWARF2 debug sections\n"));
fd2f0033
TT
3788 fprintf (stream, _("\
3789 --dwarf-depth=N Do not display DIEs at depth N or greater\n\
3790 --dwarf-start=N Display DIEs starting with N, at the same depth\n\
3791 or deeper\n"));
252b5132 3792#ifdef SUPPORT_DISASSEMBLY
92f01d61 3793 fprintf (stream, _("\
09c11c86
NC
3794 -i --instruction-dump=<number|name>\n\
3795 Disassemble the contents of section <number|name>\n"));
252b5132 3796#endif
92f01d61 3797 fprintf (stream, _("\
8b53311e
NC
3798 -I --histogram Display histogram of bucket list lengths\n\
3799 -W --wide Allow output width to exceed 80 characters\n\
07012eee 3800 @<file> Read options from <file>\n\
8b53311e
NC
3801 -H --help Display this information\n\
3802 -v --version Display the version number of readelf\n"));
1118d252 3803
92f01d61
JM
3804 if (REPORT_BUGS_TO[0] && stream == stdout)
3805 fprintf (stdout, _("Report bugs to %s\n"), REPORT_BUGS_TO);
252b5132 3806
92f01d61 3807 exit (stream == stdout ? 0 : 1);
252b5132
RH
3808}
3809
18bd398b
NC
3810/* Record the fact that the user wants the contents of section number
3811 SECTION to be displayed using the method(s) encoded as flags bits
3812 in TYPE. Note, TYPE can be zero if we are creating the array for
3813 the first time. */
3814
252b5132 3815static void
09c11c86 3816request_dump_bynumber (unsigned int section, dump_type type)
252b5132
RH
3817{
3818 if (section >= num_dump_sects)
3819 {
2cf0635d 3820 dump_type * new_dump_sects;
252b5132 3821
3f5e193b
NC
3822 new_dump_sects = (dump_type *) calloc (section + 1,
3823 sizeof (* dump_sects));
252b5132
RH
3824
3825 if (new_dump_sects == NULL)
591a748a 3826 error (_("Out of memory allocating dump request table.\n"));
252b5132
RH
3827 else
3828 {
3829 /* Copy current flag settings. */
09c11c86 3830 memcpy (new_dump_sects, dump_sects, num_dump_sects * sizeof (* dump_sects));
252b5132
RH
3831
3832 free (dump_sects);
3833
3834 dump_sects = new_dump_sects;
3835 num_dump_sects = section + 1;
3836 }
3837 }
3838
3839 if (dump_sects)
b34976b6 3840 dump_sects[section] |= type;
252b5132
RH
3841
3842 return;
3843}
3844
aef1f6d0
DJ
3845/* Request a dump by section name. */
3846
3847static void
2cf0635d 3848request_dump_byname (const char * section, dump_type type)
aef1f6d0 3849{
2cf0635d 3850 struct dump_list_entry * new_request;
aef1f6d0 3851
3f5e193b
NC
3852 new_request = (struct dump_list_entry *)
3853 malloc (sizeof (struct dump_list_entry));
aef1f6d0 3854 if (!new_request)
591a748a 3855 error (_("Out of memory allocating dump request table.\n"));
aef1f6d0
DJ
3856
3857 new_request->name = strdup (section);
3858 if (!new_request->name)
591a748a 3859 error (_("Out of memory allocating dump request table.\n"));
aef1f6d0
DJ
3860
3861 new_request->type = type;
3862
3863 new_request->next = dump_sects_byname;
3864 dump_sects_byname = new_request;
3865}
3866
cf13d699
NC
3867static inline void
3868request_dump (dump_type type)
3869{
3870 int section;
3871 char * cp;
3872
3873 do_dump++;
3874 section = strtoul (optarg, & cp, 0);
3875
3876 if (! *cp && section >= 0)
3877 request_dump_bynumber (section, type);
3878 else
3879 request_dump_byname (optarg, type);
3880}
3881
3882
252b5132 3883static void
2cf0635d 3884parse_args (int argc, char ** argv)
252b5132
RH
3885{
3886 int c;
3887
3888 if (argc < 2)
92f01d61 3889 usage (stderr);
252b5132
RH
3890
3891 while ((c = getopt_long
cf13d699 3892 (argc, argv, "ADHINR:SVWacdeghi:lnp:rstuvw::x:", options, NULL)) != EOF)
252b5132 3893 {
252b5132
RH
3894 switch (c)
3895 {
3896 case 0:
3897 /* Long options. */
3898 break;
3899 case 'H':
92f01d61 3900 usage (stdout);
252b5132
RH
3901 break;
3902
3903 case 'a':
b34976b6
AM
3904 do_syms++;
3905 do_reloc++;
3906 do_unwind++;
3907 do_dynamic++;
3908 do_header++;
3909 do_sections++;
f5842774 3910 do_section_groups++;
b34976b6
AM
3911 do_segments++;
3912 do_version++;
3913 do_histogram++;
3914 do_arch++;
3915 do_notes++;
252b5132 3916 break;
f5842774
L
3917 case 'g':
3918 do_section_groups++;
3919 break;
5477e8a0 3920 case 't':
595cf52e 3921 case 'N':
5477e8a0
L
3922 do_sections++;
3923 do_section_details++;
595cf52e 3924 break;
252b5132 3925 case 'e':
b34976b6
AM
3926 do_header++;
3927 do_sections++;
3928 do_segments++;
252b5132 3929 break;
a952a375 3930 case 'A':
b34976b6 3931 do_arch++;
a952a375 3932 break;
252b5132 3933 case 'D':
b34976b6 3934 do_using_dynamic++;
252b5132
RH
3935 break;
3936 case 'r':
b34976b6 3937 do_reloc++;
252b5132 3938 break;
4d6ed7c8 3939 case 'u':
b34976b6 3940 do_unwind++;
4d6ed7c8 3941 break;
252b5132 3942 case 'h':
b34976b6 3943 do_header++;
252b5132
RH
3944 break;
3945 case 'l':
b34976b6 3946 do_segments++;
252b5132
RH
3947 break;
3948 case 's':
b34976b6 3949 do_syms++;
252b5132
RH
3950 break;
3951 case 'S':
b34976b6 3952 do_sections++;
252b5132
RH
3953 break;
3954 case 'd':
b34976b6 3955 do_dynamic++;
252b5132 3956 break;
a952a375 3957 case 'I':
b34976b6 3958 do_histogram++;
a952a375 3959 break;
779fe533 3960 case 'n':
b34976b6 3961 do_notes++;
779fe533 3962 break;
4145f1d5
NC
3963 case 'c':
3964 do_archive_index++;
3965 break;
252b5132 3966 case 'x':
cf13d699 3967 request_dump (HEX_DUMP);
aef1f6d0 3968 break;
09c11c86 3969 case 'p':
cf13d699
NC
3970 request_dump (STRING_DUMP);
3971 break;
3972 case 'R':
3973 request_dump (RELOC_DUMP);
09c11c86 3974 break;
252b5132 3975 case 'w':
b34976b6 3976 do_dump++;
252b5132 3977 if (optarg == 0)
613ff48b
CC
3978 {
3979 do_debugging = 1;
3980 dwarf_select_sections_all ();
3981 }
252b5132
RH
3982 else
3983 {
3984 do_debugging = 0;
4cb93e3b 3985 dwarf_select_sections_by_letters (optarg);
252b5132
RH
3986 }
3987 break;
2979dc34 3988 case OPTION_DEBUG_DUMP:
b34976b6 3989 do_dump++;
2979dc34
JJ
3990 if (optarg == 0)
3991 do_debugging = 1;
3992 else
3993 {
2979dc34 3994 do_debugging = 0;
4cb93e3b 3995 dwarf_select_sections_by_names (optarg);
2979dc34
JJ
3996 }
3997 break;
fd2f0033
TT
3998 case OPTION_DWARF_DEPTH:
3999 {
4000 char *cp;
4001
4002 dwarf_cutoff_level = strtoul (optarg, & cp, 0);
4003 }
4004 break;
4005 case OPTION_DWARF_START:
4006 {
4007 char *cp;
4008
4009 dwarf_start_die = strtoul (optarg, & cp, 0);
4010 }
4011 break;
4723351a
CC
4012 case OPTION_DWARF_CHECK:
4013 dwarf_check = 1;
4014 break;
2c610e4b
L
4015 case OPTION_DYN_SYMS:
4016 do_dyn_syms++;
4017 break;
252b5132
RH
4018#ifdef SUPPORT_DISASSEMBLY
4019 case 'i':
cf13d699
NC
4020 request_dump (DISASS_DUMP);
4021 break;
252b5132
RH
4022#endif
4023 case 'v':
4024 print_version (program_name);
4025 break;
4026 case 'V':
b34976b6 4027 do_version++;
252b5132 4028 break;
d974e256 4029 case 'W':
b34976b6 4030 do_wide++;
d974e256 4031 break;
252b5132 4032 default:
252b5132
RH
4033 /* xgettext:c-format */
4034 error (_("Invalid option '-%c'\n"), c);
4035 /* Drop through. */
4036 case '?':
92f01d61 4037 usage (stderr);
252b5132
RH
4038 }
4039 }
4040
4d6ed7c8 4041 if (!do_dynamic && !do_syms && !do_reloc && !do_unwind && !do_sections
252b5132 4042 && !do_segments && !do_header && !do_dump && !do_version
f5842774 4043 && !do_histogram && !do_debugging && !do_arch && !do_notes
2c610e4b
L
4044 && !do_section_groups && !do_archive_index
4045 && !do_dyn_syms)
92f01d61 4046 usage (stderr);
252b5132
RH
4047 else if (argc < 3)
4048 {
4049 warn (_("Nothing to do.\n"));
92f01d61 4050 usage (stderr);
252b5132
RH
4051 }
4052}
4053
4054static const char *
d3ba0551 4055get_elf_class (unsigned int elf_class)
252b5132 4056{
b34976b6 4057 static char buff[32];
103f02d3 4058
252b5132
RH
4059 switch (elf_class)
4060 {
4061 case ELFCLASSNONE: return _("none");
e3c8793a
NC
4062 case ELFCLASS32: return "ELF32";
4063 case ELFCLASS64: return "ELF64";
ab5e7794 4064 default:
e9e44622 4065 snprintf (buff, sizeof (buff), _("<unknown: %x>"), elf_class);
ab5e7794 4066 return buff;
252b5132
RH
4067 }
4068}
4069
4070static const char *
d3ba0551 4071get_data_encoding (unsigned int encoding)
252b5132 4072{
b34976b6 4073 static char buff[32];
103f02d3 4074
252b5132
RH
4075 switch (encoding)
4076 {
4077 case ELFDATANONE: return _("none");
33c63f9d
CM
4078 case ELFDATA2LSB: return _("2's complement, little endian");
4079 case ELFDATA2MSB: return _("2's complement, big endian");
103f02d3 4080 default:
e9e44622 4081 snprintf (buff, sizeof (buff), _("<unknown: %x>"), encoding);
ab5e7794 4082 return buff;
252b5132
RH
4083 }
4084}
4085
252b5132 4086/* Decode the data held in 'elf_header'. */
ee42cf8c 4087
252b5132 4088static int
d3ba0551 4089process_file_header (void)
252b5132 4090{
b34976b6
AM
4091 if ( elf_header.e_ident[EI_MAG0] != ELFMAG0
4092 || elf_header.e_ident[EI_MAG1] != ELFMAG1
4093 || elf_header.e_ident[EI_MAG2] != ELFMAG2
4094 || elf_header.e_ident[EI_MAG3] != ELFMAG3)
252b5132
RH
4095 {
4096 error
4097 (_("Not an ELF file - it has the wrong magic bytes at the start\n"));
4098 return 0;
4099 }
4100
2dc4cec1
L
4101 init_dwarf_regnames (elf_header.e_machine);
4102
252b5132
RH
4103 if (do_header)
4104 {
4105 int i;
4106
4107 printf (_("ELF Header:\n"));
4108 printf (_(" Magic: "));
b34976b6
AM
4109 for (i = 0; i < EI_NIDENT; i++)
4110 printf ("%2.2x ", elf_header.e_ident[i]);
252b5132
RH
4111 printf ("\n");
4112 printf (_(" Class: %s\n"),
b34976b6 4113 get_elf_class (elf_header.e_ident[EI_CLASS]));
252b5132 4114 printf (_(" Data: %s\n"),
b34976b6 4115 get_data_encoding (elf_header.e_ident[EI_DATA]));
252b5132 4116 printf (_(" Version: %d %s\n"),
b34976b6
AM
4117 elf_header.e_ident[EI_VERSION],
4118 (elf_header.e_ident[EI_VERSION] == EV_CURRENT
789be9f7 4119 ? "(current)"
b34976b6 4120 : (elf_header.e_ident[EI_VERSION] != EV_NONE
2b692964 4121 ? _("<unknown: %lx>")
789be9f7 4122 : "")));
252b5132 4123 printf (_(" OS/ABI: %s\n"),
b34976b6 4124 get_osabi_name (elf_header.e_ident[EI_OSABI]));
252b5132 4125 printf (_(" ABI Version: %d\n"),
b34976b6 4126 elf_header.e_ident[EI_ABIVERSION]);
252b5132
RH
4127 printf (_(" Type: %s\n"),
4128 get_file_type (elf_header.e_type));
4129 printf (_(" Machine: %s\n"),
4130 get_machine_name (elf_header.e_machine));
4131 printf (_(" Version: 0x%lx\n"),
4132 (unsigned long) elf_header.e_version);
76da6bbe 4133
f7a99963
NC
4134 printf (_(" Entry point address: "));
4135 print_vma ((bfd_vma) elf_header.e_entry, PREFIX_HEX);
4136 printf (_("\n Start of program headers: "));
4137 print_vma ((bfd_vma) elf_header.e_phoff, DEC);
4138 printf (_(" (bytes into file)\n Start of section headers: "));
4139 print_vma ((bfd_vma) elf_header.e_shoff, DEC);
4140 printf (_(" (bytes into file)\n"));
76da6bbe 4141
252b5132
RH
4142 printf (_(" Flags: 0x%lx%s\n"),
4143 (unsigned long) elf_header.e_flags,
4144 get_machine_flags (elf_header.e_flags, elf_header.e_machine));
4145 printf (_(" Size of this header: %ld (bytes)\n"),
4146 (long) elf_header.e_ehsize);
4147 printf (_(" Size of program headers: %ld (bytes)\n"),
4148 (long) elf_header.e_phentsize);
2046a35d 4149 printf (_(" Number of program headers: %ld"),
252b5132 4150 (long) elf_header.e_phnum);
2046a35d
AM
4151 if (section_headers != NULL
4152 && elf_header.e_phnum == PN_XNUM
4153 && section_headers[0].sh_info != 0)
cc5914eb 4154 printf (" (%ld)", (long) section_headers[0].sh_info);
2046a35d 4155 putc ('\n', stdout);
252b5132
RH
4156 printf (_(" Size of section headers: %ld (bytes)\n"),
4157 (long) elf_header.e_shentsize);
560f3c1c 4158 printf (_(" Number of section headers: %ld"),
252b5132 4159 (long) elf_header.e_shnum);
4fbb74a6 4160 if (section_headers != NULL && elf_header.e_shnum == SHN_UNDEF)
560f3c1c
AM
4161 printf (" (%ld)", (long) section_headers[0].sh_size);
4162 putc ('\n', stdout);
4163 printf (_(" Section header string table index: %ld"),
252b5132 4164 (long) elf_header.e_shstrndx);
4fbb74a6
AM
4165 if (section_headers != NULL
4166 && elf_header.e_shstrndx == (SHN_XINDEX & 0xffff))
72de5009 4167 printf (" (%u)", section_headers[0].sh_link);
15ba6505
AM
4168 else if (elf_header.e_shstrndx != SHN_UNDEF
4169 && elf_header.e_shstrndx >= elf_header.e_shnum)
2b692964 4170 printf (_(" <corrupt: out of range>"));
560f3c1c
AM
4171 putc ('\n', stdout);
4172 }
4173
4174 if (section_headers != NULL)
4175 {
2046a35d
AM
4176 if (elf_header.e_phnum == PN_XNUM
4177 && section_headers[0].sh_info != 0)
4178 elf_header.e_phnum = section_headers[0].sh_info;
4fbb74a6 4179 if (elf_header.e_shnum == SHN_UNDEF)
560f3c1c 4180 elf_header.e_shnum = section_headers[0].sh_size;
4fbb74a6 4181 if (elf_header.e_shstrndx == (SHN_XINDEX & 0xffff))
560f3c1c 4182 elf_header.e_shstrndx = section_headers[0].sh_link;
4fbb74a6 4183 else if (elf_header.e_shstrndx >= elf_header.e_shnum)
0b49d371 4184 elf_header.e_shstrndx = SHN_UNDEF;
560f3c1c
AM
4185 free (section_headers);
4186 section_headers = NULL;
252b5132 4187 }
103f02d3 4188
9ea033b2
NC
4189 return 1;
4190}
4191
e0a31db1 4192static bfd_boolean
91d6fa6a 4193get_32bit_program_headers (FILE * file, Elf_Internal_Phdr * pheaders)
9ea033b2 4194{
2cf0635d
NC
4195 Elf32_External_Phdr * phdrs;
4196 Elf32_External_Phdr * external;
4197 Elf_Internal_Phdr * internal;
b34976b6 4198 unsigned int i;
e0a31db1
NC
4199 unsigned int size = elf_header.e_phentsize;
4200 unsigned int num = elf_header.e_phnum;
4201
4202 /* PR binutils/17531: Cope with unexpected section header sizes. */
4203 if (size == 0 || num == 0)
4204 return FALSE;
4205 if (size < sizeof * phdrs)
4206 {
4207 error (_("The e_phentsize field in the ELF header is less than the size of an ELF program header\n"));
4208 return FALSE;
4209 }
4210 if (size > sizeof * phdrs)
4211 warn (_("The e_phentsize field in the ELF header is larger than the size of an ELF program header\n"));
103f02d3 4212
3f5e193b 4213 phdrs = (Elf32_External_Phdr *) get_data (NULL, file, elf_header.e_phoff,
e0a31db1
NC
4214 size, num, _("program headers"));
4215 if (phdrs == NULL)
4216 return FALSE;
9ea033b2 4217
91d6fa6a 4218 for (i = 0, internal = pheaders, external = phdrs;
9ea033b2 4219 i < elf_header.e_phnum;
b34976b6 4220 i++, internal++, external++)
252b5132 4221 {
9ea033b2
NC
4222 internal->p_type = BYTE_GET (external->p_type);
4223 internal->p_offset = BYTE_GET (external->p_offset);
4224 internal->p_vaddr = BYTE_GET (external->p_vaddr);
4225 internal->p_paddr = BYTE_GET (external->p_paddr);
4226 internal->p_filesz = BYTE_GET (external->p_filesz);
4227 internal->p_memsz = BYTE_GET (external->p_memsz);
4228 internal->p_flags = BYTE_GET (external->p_flags);
4229 internal->p_align = BYTE_GET (external->p_align);
252b5132
RH
4230 }
4231
9ea033b2 4232 free (phdrs);
e0a31db1 4233 return TRUE;
252b5132
RH
4234}
4235
e0a31db1 4236static bfd_boolean
91d6fa6a 4237get_64bit_program_headers (FILE * file, Elf_Internal_Phdr * pheaders)
9ea033b2 4238{
2cf0635d
NC
4239 Elf64_External_Phdr * phdrs;
4240 Elf64_External_Phdr * external;
4241 Elf_Internal_Phdr * internal;
b34976b6 4242 unsigned int i;
e0a31db1
NC
4243 unsigned int size = elf_header.e_phentsize;
4244 unsigned int num = elf_header.e_phnum;
4245
4246 /* PR binutils/17531: Cope with unexpected section header sizes. */
4247 if (size == 0 || num == 0)
4248 return FALSE;
4249 if (size < sizeof * phdrs)
4250 {
4251 error (_("The e_phentsize field in the ELF header is less than the size of an ELF program header\n"));
4252 return FALSE;
4253 }
4254 if (size > sizeof * phdrs)
4255 warn (_("The e_phentsize field in the ELF header is larger than the size of an ELF program header\n"));
103f02d3 4256
3f5e193b 4257 phdrs = (Elf64_External_Phdr *) get_data (NULL, file, elf_header.e_phoff,
e0a31db1 4258 size, num, _("program headers"));
a6e9f9df 4259 if (!phdrs)
e0a31db1 4260 return FALSE;
9ea033b2 4261
91d6fa6a 4262 for (i = 0, internal = pheaders, external = phdrs;
9ea033b2 4263 i < elf_header.e_phnum;
b34976b6 4264 i++, internal++, external++)
9ea033b2
NC
4265 {
4266 internal->p_type = BYTE_GET (external->p_type);
4267 internal->p_flags = BYTE_GET (external->p_flags);
66543521
AM
4268 internal->p_offset = BYTE_GET (external->p_offset);
4269 internal->p_vaddr = BYTE_GET (external->p_vaddr);
4270 internal->p_paddr = BYTE_GET (external->p_paddr);
4271 internal->p_filesz = BYTE_GET (external->p_filesz);
4272 internal->p_memsz = BYTE_GET (external->p_memsz);
4273 internal->p_align = BYTE_GET (external->p_align);
9ea033b2
NC
4274 }
4275
4276 free (phdrs);
e0a31db1 4277 return TRUE;
9ea033b2 4278}
252b5132 4279
d93f0186
NC
4280/* Returns 1 if the program headers were read into `program_headers'. */
4281
4282static int
2cf0635d 4283get_program_headers (FILE * file)
d93f0186 4284{
2cf0635d 4285 Elf_Internal_Phdr * phdrs;
d93f0186
NC
4286
4287 /* Check cache of prior read. */
4288 if (program_headers != NULL)
4289 return 1;
4290
3f5e193b
NC
4291 phdrs = (Elf_Internal_Phdr *) cmalloc (elf_header.e_phnum,
4292 sizeof (Elf_Internal_Phdr));
d93f0186
NC
4293
4294 if (phdrs == NULL)
4295 {
8b73c356
NC
4296 error (_("Out of memory reading %u program headers\n"),
4297 elf_header.e_phnum);
d93f0186
NC
4298 return 0;
4299 }
4300
4301 if (is_32bit_elf
4302 ? get_32bit_program_headers (file, phdrs)
4303 : get_64bit_program_headers (file, phdrs))
4304 {
4305 program_headers = phdrs;
4306 return 1;
4307 }
4308
4309 free (phdrs);
4310 return 0;
4311}
4312
2f62977e
NC
4313/* Returns 1 if the program headers were loaded. */
4314
252b5132 4315static int
2cf0635d 4316process_program_headers (FILE * file)
252b5132 4317{
2cf0635d 4318 Elf_Internal_Phdr * segment;
b34976b6 4319 unsigned int i;
252b5132
RH
4320
4321 if (elf_header.e_phnum == 0)
4322 {
82f2dbf7
NC
4323 /* PR binutils/12467. */
4324 if (elf_header.e_phoff != 0)
4325 warn (_("possibly corrupt ELF header - it has a non-zero program"
4326 " header offset, but no program headers"));
4327 else if (do_segments)
252b5132 4328 printf (_("\nThere are no program headers in this file.\n"));
2f62977e 4329 return 0;
252b5132
RH
4330 }
4331
4332 if (do_segments && !do_header)
4333 {
f7a99963
NC
4334 printf (_("\nElf file type is %s\n"), get_file_type (elf_header.e_type));
4335 printf (_("Entry point "));
4336 print_vma ((bfd_vma) elf_header.e_entry, PREFIX_HEX);
4337 printf (_("\nThere are %d program headers, starting at offset "),
4338 elf_header.e_phnum);
4339 print_vma ((bfd_vma) elf_header.e_phoff, DEC);
4340 printf ("\n");
252b5132
RH
4341 }
4342
d93f0186 4343 if (! get_program_headers (file))
252b5132 4344 return 0;
103f02d3 4345
252b5132
RH
4346 if (do_segments)
4347 {
3a1a2036
NC
4348 if (elf_header.e_phnum > 1)
4349 printf (_("\nProgram Headers:\n"));
4350 else
4351 printf (_("\nProgram Headers:\n"));
76da6bbe 4352
f7a99963
NC
4353 if (is_32bit_elf)
4354 printf
4355 (_(" Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align\n"));
d974e256
JJ
4356 else if (do_wide)
4357 printf
4358 (_(" Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align\n"));
f7a99963
NC
4359 else
4360 {
4361 printf
4362 (_(" Type Offset VirtAddr PhysAddr\n"));
4363 printf
4364 (_(" FileSiz MemSiz Flags Align\n"));
4365 }
252b5132
RH
4366 }
4367
252b5132 4368 dynamic_addr = 0;
1b228002 4369 dynamic_size = 0;
252b5132
RH
4370
4371 for (i = 0, segment = program_headers;
4372 i < elf_header.e_phnum;
b34976b6 4373 i++, segment++)
252b5132
RH
4374 {
4375 if (do_segments)
4376 {
103f02d3 4377 printf (" %-14.14s ", get_segment_type (segment->p_type));
f7a99963
NC
4378
4379 if (is_32bit_elf)
4380 {
4381 printf ("0x%6.6lx ", (unsigned long) segment->p_offset);
4382 printf ("0x%8.8lx ", (unsigned long) segment->p_vaddr);
4383 printf ("0x%8.8lx ", (unsigned long) segment->p_paddr);
4384 printf ("0x%5.5lx ", (unsigned long) segment->p_filesz);
4385 printf ("0x%5.5lx ", (unsigned long) segment->p_memsz);
4386 printf ("%c%c%c ",
4387 (segment->p_flags & PF_R ? 'R' : ' '),
4388 (segment->p_flags & PF_W ? 'W' : ' '),
4389 (segment->p_flags & PF_X ? 'E' : ' '));
4390 printf ("%#lx", (unsigned long) segment->p_align);
4391 }
d974e256
JJ
4392 else if (do_wide)
4393 {
4394 if ((unsigned long) segment->p_offset == segment->p_offset)
4395 printf ("0x%6.6lx ", (unsigned long) segment->p_offset);
4396 else
4397 {
4398 print_vma (segment->p_offset, FULL_HEX);
4399 putchar (' ');
4400 }
4401
4402 print_vma (segment->p_vaddr, FULL_HEX);
4403 putchar (' ');
4404 print_vma (segment->p_paddr, FULL_HEX);
4405 putchar (' ');
4406
4407 if ((unsigned long) segment->p_filesz == segment->p_filesz)
4408 printf ("0x%6.6lx ", (unsigned long) segment->p_filesz);
4409 else
4410 {
4411 print_vma (segment->p_filesz, FULL_HEX);
4412 putchar (' ');
4413 }
4414
4415 if ((unsigned long) segment->p_memsz == segment->p_memsz)
4416 printf ("0x%6.6lx", (unsigned long) segment->p_memsz);
4417 else
4418 {
f48e6c45 4419 print_vma (segment->p_memsz, FULL_HEX);
d974e256
JJ
4420 }
4421
4422 printf (" %c%c%c ",
4423 (segment->p_flags & PF_R ? 'R' : ' '),
4424 (segment->p_flags & PF_W ? 'W' : ' '),
4425 (segment->p_flags & PF_X ? 'E' : ' '));
4426
4427 if ((unsigned long) segment->p_align == segment->p_align)
4428 printf ("%#lx", (unsigned long) segment->p_align);
4429 else
4430 {
4431 print_vma (segment->p_align, PREFIX_HEX);
4432 }
4433 }
f7a99963
NC
4434 else
4435 {
4436 print_vma (segment->p_offset, FULL_HEX);
4437 putchar (' ');
4438 print_vma (segment->p_vaddr, FULL_HEX);
4439 putchar (' ');
4440 print_vma (segment->p_paddr, FULL_HEX);
4441 printf ("\n ");
4442 print_vma (segment->p_filesz, FULL_HEX);
4443 putchar (' ');
4444 print_vma (segment->p_memsz, FULL_HEX);
4445 printf (" %c%c%c ",
4446 (segment->p_flags & PF_R ? 'R' : ' '),
4447 (segment->p_flags & PF_W ? 'W' : ' '),
4448 (segment->p_flags & PF_X ? 'E' : ' '));
4449 print_vma (segment->p_align, HEX);
4450 }
252b5132
RH
4451 }
4452
f54498b4
NC
4453 if (do_segments)
4454 putc ('\n', stdout);
4455
252b5132
RH
4456 switch (segment->p_type)
4457 {
252b5132
RH
4458 case PT_DYNAMIC:
4459 if (dynamic_addr)
4460 error (_("more than one dynamic segment\n"));
4461
20737c13
AM
4462 /* By default, assume that the .dynamic section is the first
4463 section in the DYNAMIC segment. */
4464 dynamic_addr = segment->p_offset;
4465 dynamic_size = segment->p_filesz;
f54498b4
NC
4466 /* PR binutils/17512: Avoid corrupt dynamic section info in the segment. */
4467 if (dynamic_addr + dynamic_size >= current_file_size)
4468 {
4469 error (_("the dynamic segment offset + size exceeds the size of the file\n"));
4470 dynamic_addr = dynamic_size = 0;
4471 }
20737c13 4472
b2d38a17
NC
4473 /* Try to locate the .dynamic section. If there is
4474 a section header table, we can easily locate it. */
4475 if (section_headers != NULL)
4476 {
2cf0635d 4477 Elf_Internal_Shdr * sec;
b2d38a17 4478
89fac5e3
RS
4479 sec = find_section (".dynamic");
4480 if (sec == NULL || sec->sh_size == 0)
b2d38a17 4481 {
28f997cf
TG
4482 /* A corresponding .dynamic section is expected, but on
4483 IA-64/OpenVMS it is OK for it to be missing. */
4484 if (!is_ia64_vms ())
4485 error (_("no .dynamic section in the dynamic segment\n"));
b2d38a17
NC
4486 break;
4487 }
4488
42bb2e33 4489 if (sec->sh_type == SHT_NOBITS)
20737c13
AM
4490 {
4491 dynamic_size = 0;
4492 break;
4493 }
42bb2e33 4494
b2d38a17
NC
4495 dynamic_addr = sec->sh_offset;
4496 dynamic_size = sec->sh_size;
4497
4498 if (dynamic_addr < segment->p_offset
4499 || dynamic_addr > segment->p_offset + segment->p_filesz)
20737c13
AM
4500 warn (_("the .dynamic section is not contained"
4501 " within the dynamic segment\n"));
b2d38a17 4502 else if (dynamic_addr > segment->p_offset)
20737c13
AM
4503 warn (_("the .dynamic section is not the first section"
4504 " in the dynamic segment.\n"));
b2d38a17 4505 }
252b5132
RH
4506 break;
4507
4508 case PT_INTERP:
fb52b2f4
NC
4509 if (fseek (file, archive_file_offset + (long) segment->p_offset,
4510 SEEK_SET))
252b5132
RH
4511 error (_("Unable to find program interpreter name\n"));
4512 else
4513 {
f8eae8b2 4514 char fmt [32];
9495b2e6 4515 int ret = snprintf (fmt, sizeof (fmt), "%%%ds", PATH_MAX - 1);
f8eae8b2
L
4516
4517 if (ret >= (int) sizeof (fmt) || ret < 0)
591a748a 4518 error (_("Internal error: failed to create format string to display program interpreter\n"));
f8eae8b2 4519
252b5132 4520 program_interpreter[0] = 0;
7bd7b3ef
AM
4521 if (fscanf (file, fmt, program_interpreter) <= 0)
4522 error (_("Unable to read program interpreter name\n"));
252b5132
RH
4523
4524 if (do_segments)
f54498b4 4525 printf (_(" [Requesting program interpreter: %s]\n"),
252b5132
RH
4526 program_interpreter);
4527 }
4528 break;
4529 }
252b5132
RH
4530 }
4531
c256ffe7 4532 if (do_segments && section_headers != NULL && string_table != NULL)
252b5132
RH
4533 {
4534 printf (_("\n Section to Segment mapping:\n"));
4535 printf (_(" Segment Sections...\n"));
4536
252b5132
RH
4537 for (i = 0; i < elf_header.e_phnum; i++)
4538 {
9ad5cbcf 4539 unsigned int j;
2cf0635d 4540 Elf_Internal_Shdr * section;
252b5132
RH
4541
4542 segment = program_headers + i;
b391a3e3 4543 section = section_headers + 1;
252b5132
RH
4544
4545 printf (" %2.2d ", i);
4546
b34976b6 4547 for (j = 1; j < elf_header.e_shnum; j++, section++)
252b5132 4548 {
f4638467
AM
4549 if (!ELF_TBSS_SPECIAL (section, segment)
4550 && ELF_SECTION_IN_SEGMENT_STRICT (section, segment))
74e1a04b 4551 printf ("%s ", printable_section_name (section));
252b5132
RH
4552 }
4553
4554 putc ('\n',stdout);
4555 }
4556 }
4557
252b5132
RH
4558 return 1;
4559}
4560
4561
d93f0186
NC
4562/* Find the file offset corresponding to VMA by using the program headers. */
4563
4564static long
2cf0635d 4565offset_from_vma (FILE * file, bfd_vma vma, bfd_size_type size)
d93f0186 4566{
2cf0635d 4567 Elf_Internal_Phdr * seg;
d93f0186
NC
4568
4569 if (! get_program_headers (file))
4570 {
4571 warn (_("Cannot interpret virtual addresses without program headers.\n"));
4572 return (long) vma;
4573 }
4574
4575 for (seg = program_headers;
4576 seg < program_headers + elf_header.e_phnum;
4577 ++seg)
4578 {
4579 if (seg->p_type != PT_LOAD)
4580 continue;
4581
4582 if (vma >= (seg->p_vaddr & -seg->p_align)
4583 && vma + size <= seg->p_vaddr + seg->p_filesz)
4584 return vma - seg->p_vaddr + seg->p_offset;
4585 }
4586
4587 warn (_("Virtual address 0x%lx not located in any PT_LOAD segment.\n"),
0af1713e 4588 (unsigned long) vma);
d93f0186
NC
4589 return (long) vma;
4590}
4591
4592
049b0c3a
NC
4593/* Allocate memory and load the sections headers into the global pointer
4594 SECTION_HEADERS. If PROBE is true, this is just a probe and we do not
4595 generate any error messages if the load fails. */
4596
4597static bfd_boolean
4598get_32bit_section_headers (FILE * file, bfd_boolean probe)
252b5132 4599{
2cf0635d
NC
4600 Elf32_External_Shdr * shdrs;
4601 Elf_Internal_Shdr * internal;
b34976b6 4602 unsigned int i;
049b0c3a
NC
4603 unsigned int size = elf_header.e_shentsize;
4604 unsigned int num = probe ? 1 : elf_header.e_shnum;
4605
4606 /* PR binutils/17531: Cope with unexpected section header sizes. */
4607 if (size == 0 || num == 0)
4608 return FALSE;
4609 if (size < sizeof * shdrs)
4610 {
4611 if (! probe)
4612 error (_("The e_shentsize field in the ELF header is less than the size of an ELF section header\n"));
4613 return FALSE;
4614 }
4615 if (!probe && size > sizeof * shdrs)
4616 warn (_("The e_shentsize field in the ELF header is larger than the size of an ELF section header\n"));
252b5132 4617
3f5e193b 4618 shdrs = (Elf32_External_Shdr *) get_data (NULL, file, elf_header.e_shoff,
049b0c3a
NC
4619 size, num,
4620 probe ? NULL : _("section headers"));
4621 if (shdrs == NULL)
4622 return FALSE;
252b5132 4623
049b0c3a
NC
4624 if (section_headers != NULL)
4625 free (section_headers);
3f5e193b
NC
4626 section_headers = (Elf_Internal_Shdr *) cmalloc (num,
4627 sizeof (Elf_Internal_Shdr));
252b5132
RH
4628 if (section_headers == NULL)
4629 {
049b0c3a 4630 if (!probe)
8b73c356 4631 error (_("Out of memory reading %u section headers\n"), num);
049b0c3a 4632 return FALSE;
252b5132
RH
4633 }
4634
4635 for (i = 0, internal = section_headers;
560f3c1c 4636 i < num;
b34976b6 4637 i++, internal++)
252b5132
RH
4638 {
4639 internal->sh_name = BYTE_GET (shdrs[i].sh_name);
4640 internal->sh_type = BYTE_GET (shdrs[i].sh_type);
4641 internal->sh_flags = BYTE_GET (shdrs[i].sh_flags);
4642 internal->sh_addr = BYTE_GET (shdrs[i].sh_addr);
4643 internal->sh_offset = BYTE_GET (shdrs[i].sh_offset);
4644 internal->sh_size = BYTE_GET (shdrs[i].sh_size);
4645 internal->sh_link = BYTE_GET (shdrs[i].sh_link);
4646 internal->sh_info = BYTE_GET (shdrs[i].sh_info);
4647 internal->sh_addralign = BYTE_GET (shdrs[i].sh_addralign);
4648 internal->sh_entsize = BYTE_GET (shdrs[i].sh_entsize);
4649 }
4650
4651 free (shdrs);
049b0c3a 4652 return TRUE;
252b5132
RH
4653}
4654
049b0c3a
NC
4655static bfd_boolean
4656get_64bit_section_headers (FILE * file, bfd_boolean probe)
9ea033b2 4657{
2cf0635d
NC
4658 Elf64_External_Shdr * shdrs;
4659 Elf_Internal_Shdr * internal;
b34976b6 4660 unsigned int i;
049b0c3a
NC
4661 unsigned int size = elf_header.e_shentsize;
4662 unsigned int num = probe ? 1 : elf_header.e_shnum;
4663
4664 /* PR binutils/17531: Cope with unexpected section header sizes. */
4665 if (size == 0 || num == 0)
4666 return FALSE;
4667 if (size < sizeof * shdrs)
4668 {
4669 if (! probe)
4670 error (_("The e_shentsize field in the ELF header is less than the size of an ELF section header\n"));
4671 return FALSE;
4672 }
4673 if (! probe && size > sizeof * shdrs)
4674 warn (_("The e_shentsize field in the ELF header is larger than the size of an ELF section header\n"));
9ea033b2 4675
3f5e193b 4676 shdrs = (Elf64_External_Shdr *) get_data (NULL, file, elf_header.e_shoff,
049b0c3a
NC
4677 size, num,
4678 probe ? NULL : _("section headers"));
4679 if (shdrs == NULL)
4680 return FALSE;
9ea033b2 4681
049b0c3a
NC
4682 if (section_headers != NULL)
4683 free (section_headers);
3f5e193b
NC
4684 section_headers = (Elf_Internal_Shdr *) cmalloc (num,
4685 sizeof (Elf_Internal_Shdr));
9ea033b2
NC
4686 if (section_headers == NULL)
4687 {
049b0c3a 4688 if (! probe)
8b73c356 4689 error (_("Out of memory reading %u section headers\n"), num);
049b0c3a 4690 return FALSE;
9ea033b2
NC
4691 }
4692
4693 for (i = 0, internal = section_headers;
560f3c1c 4694 i < num;
b34976b6 4695 i++, internal++)
9ea033b2
NC
4696 {
4697 internal->sh_name = BYTE_GET (shdrs[i].sh_name);
4698 internal->sh_type = BYTE_GET (shdrs[i].sh_type);
66543521
AM
4699 internal->sh_flags = BYTE_GET (shdrs[i].sh_flags);
4700 internal->sh_addr = BYTE_GET (shdrs[i].sh_addr);
4701 internal->sh_size = BYTE_GET (shdrs[i].sh_size);
4702 internal->sh_entsize = BYTE_GET (shdrs[i].sh_entsize);
9ea033b2
NC
4703 internal->sh_link = BYTE_GET (shdrs[i].sh_link);
4704 internal->sh_info = BYTE_GET (shdrs[i].sh_info);
4705 internal->sh_offset = BYTE_GET (shdrs[i].sh_offset);
4706 internal->sh_addralign = BYTE_GET (shdrs[i].sh_addralign);
4707 }
4708
4709 free (shdrs);
049b0c3a 4710 return TRUE;
9ea033b2
NC
4711}
4712
252b5132 4713static Elf_Internal_Sym *
ba5cdace
NC
4714get_32bit_elf_symbols (FILE * file,
4715 Elf_Internal_Shdr * section,
4716 unsigned long * num_syms_return)
252b5132 4717{
ba5cdace 4718 unsigned long number = 0;
dd24e3da 4719 Elf32_External_Sym * esyms = NULL;
ba5cdace 4720 Elf_External_Sym_Shndx * shndx = NULL;
dd24e3da 4721 Elf_Internal_Sym * isyms = NULL;
2cf0635d 4722 Elf_Internal_Sym * psym;
b34976b6 4723 unsigned int j;
252b5132 4724
dd24e3da
NC
4725 /* Run some sanity checks first. */
4726 if (section->sh_entsize == 0)
4727 {
4728 error (_("sh_entsize is zero\n"));
ba5cdace 4729 goto exit_point;
dd24e3da
NC
4730 }
4731
f54498b4
NC
4732 if (section->sh_size > current_file_size)
4733 {
4734 error (_("Section %s has an invalid sh_size of 0x%lx\n"),
74e1a04b 4735 printable_section_name (section), (unsigned long) section->sh_size);
f54498b4
NC
4736 goto exit_point;
4737 }
4738
dd24e3da
NC
4739 number = section->sh_size / section->sh_entsize;
4740
4741 if (number * sizeof (Elf32_External_Sym) > section->sh_size + 1)
4742 {
4743 error (_("Invalid sh_entsize\n"));
ba5cdace 4744 goto exit_point;
dd24e3da
NC
4745 }
4746
3f5e193b
NC
4747 esyms = (Elf32_External_Sym *) get_data (NULL, file, section->sh_offset, 1,
4748 section->sh_size, _("symbols"));
dd24e3da 4749 if (esyms == NULL)
ba5cdace 4750 goto exit_point;
252b5132 4751
9ad5cbcf
AM
4752 shndx = NULL;
4753 if (symtab_shndx_hdr != NULL
4754 && (symtab_shndx_hdr->sh_link
4fbb74a6 4755 == (unsigned long) (section - section_headers)))
9ad5cbcf 4756 {
3f5e193b
NC
4757 shndx = (Elf_External_Sym_Shndx *) get_data (NULL, file,
4758 symtab_shndx_hdr->sh_offset,
4759 1, symtab_shndx_hdr->sh_size,
9cf03b7e 4760 _("symbol table section indicies"));
dd24e3da
NC
4761 if (shndx == NULL)
4762 goto exit_point;
9ad5cbcf
AM
4763 }
4764
3f5e193b 4765 isyms = (Elf_Internal_Sym *) cmalloc (number, sizeof (Elf_Internal_Sym));
252b5132
RH
4766
4767 if (isyms == NULL)
4768 {
8b73c356
NC
4769 error (_("Out of memory reading %lu symbols\n"),
4770 (unsigned long) number);
dd24e3da 4771 goto exit_point;
252b5132
RH
4772 }
4773
dd24e3da 4774 for (j = 0, psym = isyms; j < number; j++, psym++)
252b5132
RH
4775 {
4776 psym->st_name = BYTE_GET (esyms[j].st_name);
4777 psym->st_value = BYTE_GET (esyms[j].st_value);
4778 psym->st_size = BYTE_GET (esyms[j].st_size);
4779 psym->st_shndx = BYTE_GET (esyms[j].st_shndx);
4fbb74a6 4780 if (psym->st_shndx == (SHN_XINDEX & 0xffff) && shndx != NULL)
9ad5cbcf
AM
4781 psym->st_shndx
4782 = byte_get ((unsigned char *) &shndx[j], sizeof (shndx[j]));
4fbb74a6
AM
4783 else if (psym->st_shndx >= (SHN_LORESERVE & 0xffff))
4784 psym->st_shndx += SHN_LORESERVE - (SHN_LORESERVE & 0xffff);
252b5132
RH
4785 psym->st_info = BYTE_GET (esyms[j].st_info);
4786 psym->st_other = BYTE_GET (esyms[j].st_other);
4787 }
4788
dd24e3da 4789 exit_point:
ba5cdace 4790 if (shndx != NULL)
9ad5cbcf 4791 free (shndx);
ba5cdace 4792 if (esyms != NULL)
dd24e3da 4793 free (esyms);
252b5132 4794
ba5cdace
NC
4795 if (num_syms_return != NULL)
4796 * num_syms_return = isyms == NULL ? 0 : number;
4797
252b5132
RH
4798 return isyms;
4799}
4800
9ea033b2 4801static Elf_Internal_Sym *
ba5cdace
NC
4802get_64bit_elf_symbols (FILE * file,
4803 Elf_Internal_Shdr * section,
4804 unsigned long * num_syms_return)
9ea033b2 4805{
ba5cdace
NC
4806 unsigned long number = 0;
4807 Elf64_External_Sym * esyms = NULL;
4808 Elf_External_Sym_Shndx * shndx = NULL;
4809 Elf_Internal_Sym * isyms = NULL;
2cf0635d 4810 Elf_Internal_Sym * psym;
b34976b6 4811 unsigned int j;
9ea033b2 4812
dd24e3da
NC
4813 /* Run some sanity checks first. */
4814 if (section->sh_entsize == 0)
4815 {
4816 error (_("sh_entsize is zero\n"));
ba5cdace 4817 goto exit_point;
dd24e3da
NC
4818 }
4819
f54498b4
NC
4820 if (section->sh_size > current_file_size)
4821 {
4822 error (_("Section %s has an invalid sh_size of 0x%lx\n"),
74e1a04b 4823 printable_section_name (section), (unsigned long) section->sh_size);
f54498b4
NC
4824 goto exit_point;
4825 }
4826
dd24e3da
NC
4827 number = section->sh_size / section->sh_entsize;
4828
4829 if (number * sizeof (Elf64_External_Sym) > section->sh_size + 1)
4830 {
4831 error (_("Invalid sh_entsize\n"));
ba5cdace 4832 goto exit_point;
dd24e3da
NC
4833 }
4834
3f5e193b
NC
4835 esyms = (Elf64_External_Sym *) get_data (NULL, file, section->sh_offset, 1,
4836 section->sh_size, _("symbols"));
a6e9f9df 4837 if (!esyms)
ba5cdace 4838 goto exit_point;
9ea033b2 4839
9ad5cbcf
AM
4840 if (symtab_shndx_hdr != NULL
4841 && (symtab_shndx_hdr->sh_link
4fbb74a6 4842 == (unsigned long) (section - section_headers)))
9ad5cbcf 4843 {
3f5e193b
NC
4844 shndx = (Elf_External_Sym_Shndx *) get_data (NULL, file,
4845 symtab_shndx_hdr->sh_offset,
4846 1, symtab_shndx_hdr->sh_size,
9cf03b7e 4847 _("symbol table section indicies"));
ba5cdace
NC
4848 if (shndx == NULL)
4849 goto exit_point;
9ad5cbcf
AM
4850 }
4851
3f5e193b 4852 isyms = (Elf_Internal_Sym *) cmalloc (number, sizeof (Elf_Internal_Sym));
9ea033b2
NC
4853
4854 if (isyms == NULL)
4855 {
8b73c356
NC
4856 error (_("Out of memory reading %lu symbols\n"),
4857 (unsigned long) number);
ba5cdace 4858 goto exit_point;
9ea033b2
NC
4859 }
4860
ba5cdace 4861 for (j = 0, psym = isyms; j < number; j++, psym++)
9ea033b2
NC
4862 {
4863 psym->st_name = BYTE_GET (esyms[j].st_name);
4864 psym->st_info = BYTE_GET (esyms[j].st_info);
4865 psym->st_other = BYTE_GET (esyms[j].st_other);
4866 psym->st_shndx = BYTE_GET (esyms[j].st_shndx);
ba5cdace 4867
4fbb74a6 4868 if (psym->st_shndx == (SHN_XINDEX & 0xffff) && shndx != NULL)
9ad5cbcf
AM
4869 psym->st_shndx
4870 = byte_get ((unsigned char *) &shndx[j], sizeof (shndx[j]));
4fbb74a6
AM
4871 else if (psym->st_shndx >= (SHN_LORESERVE & 0xffff))
4872 psym->st_shndx += SHN_LORESERVE - (SHN_LORESERVE & 0xffff);
ba5cdace 4873
66543521
AM
4874 psym->st_value = BYTE_GET (esyms[j].st_value);
4875 psym->st_size = BYTE_GET (esyms[j].st_size);
9ea033b2
NC
4876 }
4877
ba5cdace
NC
4878 exit_point:
4879 if (shndx != NULL)
9ad5cbcf 4880 free (shndx);
ba5cdace
NC
4881 if (esyms != NULL)
4882 free (esyms);
4883
4884 if (num_syms_return != NULL)
4885 * num_syms_return = isyms == NULL ? 0 : number;
9ea033b2
NC
4886
4887 return isyms;
4888}
4889
d1133906 4890static const char *
d3ba0551 4891get_elf_section_flags (bfd_vma sh_flags)
d1133906 4892{
5477e8a0 4893 static char buff[1024];
2cf0635d 4894 char * p = buff;
8d5ff12c 4895 int field_size = is_32bit_elf ? 8 : 16;
91d6fa6a
NC
4896 int sindex;
4897 int size = sizeof (buff) - (field_size + 4 + 1);
8d5ff12c
L
4898 bfd_vma os_flags = 0;
4899 bfd_vma proc_flags = 0;
4900 bfd_vma unknown_flags = 0;
148b93f2 4901 static const struct
5477e8a0 4902 {
2cf0635d 4903 const char * str;
5477e8a0
L
4904 int len;
4905 }
4906 flags [] =
4907 {
cfcac11d
NC
4908 /* 0 */ { STRING_COMMA_LEN ("WRITE") },
4909 /* 1 */ { STRING_COMMA_LEN ("ALLOC") },
4910 /* 2 */ { STRING_COMMA_LEN ("EXEC") },
4911 /* 3 */ { STRING_COMMA_LEN ("MERGE") },
4912 /* 4 */ { STRING_COMMA_LEN ("STRINGS") },
4913 /* 5 */ { STRING_COMMA_LEN ("INFO LINK") },
4914 /* 6 */ { STRING_COMMA_LEN ("LINK ORDER") },
4915 /* 7 */ { STRING_COMMA_LEN ("OS NONCONF") },
4916 /* 8 */ { STRING_COMMA_LEN ("GROUP") },
4917 /* 9 */ { STRING_COMMA_LEN ("TLS") },
4918 /* IA-64 specific. */
4919 /* 10 */ { STRING_COMMA_LEN ("SHORT") },
4920 /* 11 */ { STRING_COMMA_LEN ("NORECOV") },
4921 /* IA-64 OpenVMS specific. */
4922 /* 12 */ { STRING_COMMA_LEN ("VMS_GLOBAL") },
4923 /* 13 */ { STRING_COMMA_LEN ("VMS_OVERLAID") },
4924 /* 14 */ { STRING_COMMA_LEN ("VMS_SHARED") },
4925 /* 15 */ { STRING_COMMA_LEN ("VMS_VECTOR") },
4926 /* 16 */ { STRING_COMMA_LEN ("VMS_ALLOC_64BIT") },
4927 /* 17 */ { STRING_COMMA_LEN ("VMS_PROTECTED") },
18ae9cc1 4928 /* Generic. */
cfcac11d 4929 /* 18 */ { STRING_COMMA_LEN ("EXCLUDE") },
18ae9cc1 4930 /* SPARC specific. */
cfcac11d 4931 /* 19 */ { STRING_COMMA_LEN ("ORDERED") }
5477e8a0
L
4932 };
4933
4934 if (do_section_details)
4935 {
8d5ff12c
L
4936 sprintf (buff, "[%*.*lx]: ",
4937 field_size, field_size, (unsigned long) sh_flags);
4938 p += field_size + 4;
5477e8a0 4939 }
76da6bbe 4940
d1133906
NC
4941 while (sh_flags)
4942 {
4943 bfd_vma flag;
4944
4945 flag = sh_flags & - sh_flags;
4946 sh_flags &= ~ flag;
76da6bbe 4947
5477e8a0 4948 if (do_section_details)
d1133906 4949 {
5477e8a0
L
4950 switch (flag)
4951 {
91d6fa6a
NC
4952 case SHF_WRITE: sindex = 0; break;
4953 case SHF_ALLOC: sindex = 1; break;
4954 case SHF_EXECINSTR: sindex = 2; break;
4955 case SHF_MERGE: sindex = 3; break;
4956 case SHF_STRINGS: sindex = 4; break;
4957 case SHF_INFO_LINK: sindex = 5; break;
4958 case SHF_LINK_ORDER: sindex = 6; break;
4959 case SHF_OS_NONCONFORMING: sindex = 7; break;
4960 case SHF_GROUP: sindex = 8; break;
4961 case SHF_TLS: sindex = 9; break;
18ae9cc1 4962 case SHF_EXCLUDE: sindex = 18; break;
76da6bbe 4963
5477e8a0 4964 default:
91d6fa6a 4965 sindex = -1;
cfcac11d 4966 switch (elf_header.e_machine)
148b93f2 4967 {
cfcac11d 4968 case EM_IA_64:
148b93f2 4969 if (flag == SHF_IA_64_SHORT)
91d6fa6a 4970 sindex = 10;
148b93f2 4971 else if (flag == SHF_IA_64_NORECOV)
91d6fa6a 4972 sindex = 11;
148b93f2
NC
4973#ifdef BFD64
4974 else if (elf_header.e_ident[EI_OSABI] == ELFOSABI_OPENVMS)
4975 switch (flag)
4976 {
91d6fa6a
NC
4977 case SHF_IA_64_VMS_GLOBAL: sindex = 12; break;
4978 case SHF_IA_64_VMS_OVERLAID: sindex = 13; break;
4979 case SHF_IA_64_VMS_SHARED: sindex = 14; break;
4980 case SHF_IA_64_VMS_VECTOR: sindex = 15; break;
4981 case SHF_IA_64_VMS_ALLOC_64BIT: sindex = 16; break;
4982 case SHF_IA_64_VMS_PROTECTED: sindex = 17; break;
148b93f2
NC
4983 default: break;
4984 }
4985#endif
cfcac11d
NC
4986 break;
4987
caa83f8b
NC
4988 case EM_386:
4989 case EM_486:
4990 case EM_X86_64:
7f502d6c 4991 case EM_L1OM:
7a9068fe 4992 case EM_K1OM:
cfcac11d
NC
4993 case EM_OLD_SPARCV9:
4994 case EM_SPARC32PLUS:
4995 case EM_SPARCV9:
4996 case EM_SPARC:
18ae9cc1 4997 if (flag == SHF_ORDERED)
91d6fa6a 4998 sindex = 19;
cfcac11d
NC
4999 break;
5000 default:
5001 break;
148b93f2 5002 }
5477e8a0
L
5003 }
5004
91d6fa6a 5005 if (sindex != -1)
5477e8a0 5006 {
8d5ff12c
L
5007 if (p != buff + field_size + 4)
5008 {
5009 if (size < (10 + 2))
5010 abort ();
5011 size -= 2;
5012 *p++ = ',';
5013 *p++ = ' ';
5014 }
5015
91d6fa6a
NC
5016 size -= flags [sindex].len;
5017 p = stpcpy (p, flags [sindex].str);
5477e8a0 5018 }
3b22753a 5019 else if (flag & SHF_MASKOS)
8d5ff12c 5020 os_flags |= flag;
d1133906 5021 else if (flag & SHF_MASKPROC)
8d5ff12c 5022 proc_flags |= flag;
d1133906 5023 else
8d5ff12c 5024 unknown_flags |= flag;
5477e8a0
L
5025 }
5026 else
5027 {
5028 switch (flag)
5029 {
5030 case SHF_WRITE: *p = 'W'; break;
5031 case SHF_ALLOC: *p = 'A'; break;
5032 case SHF_EXECINSTR: *p = 'X'; break;
5033 case SHF_MERGE: *p = 'M'; break;
5034 case SHF_STRINGS: *p = 'S'; break;
5035 case SHF_INFO_LINK: *p = 'I'; break;
5036 case SHF_LINK_ORDER: *p = 'L'; break;
5037 case SHF_OS_NONCONFORMING: *p = 'O'; break;
5038 case SHF_GROUP: *p = 'G'; break;
5039 case SHF_TLS: *p = 'T'; break;
18ae9cc1 5040 case SHF_EXCLUDE: *p = 'E'; break;
5477e8a0
L
5041
5042 default:
8a9036a4 5043 if ((elf_header.e_machine == EM_X86_64
7a9068fe
L
5044 || elf_header.e_machine == EM_L1OM
5045 || elf_header.e_machine == EM_K1OM)
5477e8a0
L
5046 && flag == SHF_X86_64_LARGE)
5047 *p = 'l';
5048 else if (flag & SHF_MASKOS)
5049 {
5050 *p = 'o';
5051 sh_flags &= ~ SHF_MASKOS;
5052 }
5053 else if (flag & SHF_MASKPROC)
5054 {
5055 *p = 'p';
5056 sh_flags &= ~ SHF_MASKPROC;
5057 }
5058 else
5059 *p = 'x';
5060 break;
5061 }
5062 p++;
d1133906
NC
5063 }
5064 }
76da6bbe 5065
8d5ff12c
L
5066 if (do_section_details)
5067 {
5068 if (os_flags)
5069 {
5070 size -= 5 + field_size;
5071 if (p != buff + field_size + 4)
5072 {
5073 if (size < (2 + 1))
5074 abort ();
5075 size -= 2;
5076 *p++ = ',';
5077 *p++ = ' ';
5078 }
5079 sprintf (p, "OS (%*.*lx)", field_size, field_size,
5080 (unsigned long) os_flags);
5081 p += 5 + field_size;
5082 }
5083 if (proc_flags)
5084 {
5085 size -= 7 + field_size;
5086 if (p != buff + field_size + 4)
5087 {
5088 if (size < (2 + 1))
5089 abort ();
5090 size -= 2;
5091 *p++ = ',';
5092 *p++ = ' ';
5093 }
5094 sprintf (p, "PROC (%*.*lx)", field_size, field_size,
5095 (unsigned long) proc_flags);
5096 p += 7 + field_size;
5097 }
5098 if (unknown_flags)
5099 {
5100 size -= 10 + field_size;
5101 if (p != buff + field_size + 4)
5102 {
5103 if (size < (2 + 1))
5104 abort ();
5105 size -= 2;
5106 *p++ = ',';
5107 *p++ = ' ';
5108 }
2b692964 5109 sprintf (p, _("UNKNOWN (%*.*lx)"), field_size, field_size,
8d5ff12c
L
5110 (unsigned long) unknown_flags);
5111 p += 10 + field_size;
5112 }
5113 }
5114
e9e44622 5115 *p = '\0';
d1133906
NC
5116 return buff;
5117}
5118
252b5132 5119static int
2cf0635d 5120process_section_headers (FILE * file)
252b5132 5121{
2cf0635d 5122 Elf_Internal_Shdr * section;
b34976b6 5123 unsigned int i;
252b5132
RH
5124
5125 section_headers = NULL;
5126
5127 if (elf_header.e_shnum == 0)
5128 {
82f2dbf7
NC
5129 /* PR binutils/12467. */
5130 if (elf_header.e_shoff != 0)
5131 warn (_("possibly corrupt ELF file header - it has a non-zero"
5132 " section header offset, but no section headers\n"));
5133 else if (do_sections)
252b5132
RH
5134 printf (_("\nThere are no sections in this file.\n"));
5135
5136 return 1;
5137 }
5138
5139 if (do_sections && !do_header)
9ea033b2 5140 printf (_("There are %d section headers, starting at offset 0x%lx:\n"),
252b5132
RH
5141 elf_header.e_shnum, (unsigned long) elf_header.e_shoff);
5142
9ea033b2
NC
5143 if (is_32bit_elf)
5144 {
049b0c3a 5145 if (! get_32bit_section_headers (file, FALSE))
9ea033b2
NC
5146 return 0;
5147 }
049b0c3a 5148 else if (! get_64bit_section_headers (file, FALSE))
252b5132
RH
5149 return 0;
5150
5151 /* Read in the string table, so that we have names to display. */
0b49d371 5152 if (elf_header.e_shstrndx != SHN_UNDEF
4fbb74a6 5153 && elf_header.e_shstrndx < elf_header.e_shnum)
252b5132 5154 {
4fbb74a6 5155 section = section_headers + elf_header.e_shstrndx;
d40ac9bd 5156
c256ffe7
JJ
5157 if (section->sh_size != 0)
5158 {
3f5e193b
NC
5159 string_table = (char *) get_data (NULL, file, section->sh_offset,
5160 1, section->sh_size,
5161 _("string table"));
0de14b54 5162
c256ffe7
JJ
5163 string_table_length = string_table != NULL ? section->sh_size : 0;
5164 }
252b5132
RH
5165 }
5166
5167 /* Scan the sections for the dynamic symbol table
e3c8793a 5168 and dynamic string table and debug sections. */
252b5132
RH
5169 dynamic_symbols = NULL;
5170 dynamic_strings = NULL;
5171 dynamic_syminfo = NULL;
f1ef08cb 5172 symtab_shndx_hdr = NULL;
103f02d3 5173
89fac5e3
RS
5174 eh_addr_size = is_32bit_elf ? 4 : 8;
5175 switch (elf_header.e_machine)
5176 {
5177 case EM_MIPS:
5178 case EM_MIPS_RS3_LE:
5179 /* The 64-bit MIPS EABI uses a combination of 32-bit ELF and 64-bit
5180 FDE addresses. However, the ABI also has a semi-official ILP32
5181 variant for which the normal FDE address size rules apply.
5182
5183 GCC 4.0 marks EABI64 objects with a dummy .gcc_compiled_longXX
5184 section, where XX is the size of longs in bits. Unfortunately,
5185 earlier compilers provided no way of distinguishing ILP32 objects
5186 from LP64 objects, so if there's any doubt, we should assume that
5187 the official LP64 form is being used. */
5188 if ((elf_header.e_flags & EF_MIPS_ABI) == E_MIPS_ABI_EABI64
5189 && find_section (".gcc_compiled_long32") == NULL)
5190 eh_addr_size = 8;
5191 break;
0f56a26a
DD
5192
5193 case EM_H8_300:
5194 case EM_H8_300H:
5195 switch (elf_header.e_flags & EF_H8_MACH)
5196 {
5197 case E_H8_MACH_H8300:
5198 case E_H8_MACH_H8300HN:
5199 case E_H8_MACH_H8300SN:
5200 case E_H8_MACH_H8300SXN:
5201 eh_addr_size = 2;
5202 break;
5203 case E_H8_MACH_H8300H:
5204 case E_H8_MACH_H8300S:
5205 case E_H8_MACH_H8300SX:
5206 eh_addr_size = 4;
5207 break;
5208 }
f4236fe4
DD
5209 break;
5210
ff7eeb89 5211 case EM_M32C_OLD:
f4236fe4
DD
5212 case EM_M32C:
5213 switch (elf_header.e_flags & EF_M32C_CPU_MASK)
5214 {
5215 case EF_M32C_CPU_M16C:
5216 eh_addr_size = 2;
5217 break;
5218 }
5219 break;
89fac5e3
RS
5220 }
5221
76ca31c0
NC
5222#define CHECK_ENTSIZE_VALUES(section, i, size32, size64) \
5223 do \
5224 { \
5225 bfd_size_type expected_entsize = is_32bit_elf ? size32 : size64; \
5226 if (section->sh_entsize != expected_entsize) \
9dd3a467 5227 { \
76ca31c0
NC
5228 char buf[40]; \
5229 sprintf_vma (buf, section->sh_entsize); \
5230 /* Note: coded this way so that there is a single string for \
5231 translation. */ \
5232 error (_("Section %d has invalid sh_entsize of %s\n"), i, buf); \
5233 error (_("(Using the expected size of %u for the rest of this dump)\n"), \
5234 (unsigned) expected_entsize); \
9dd3a467 5235 section->sh_entsize = expected_entsize; \
76ca31c0
NC
5236 } \
5237 } \
08d8fa11 5238 while (0)
9dd3a467
NC
5239
5240#define CHECK_ENTSIZE(section, i, type) \
08d8fa11
JJ
5241 CHECK_ENTSIZE_VALUES (section, i, sizeof (Elf32_External_##type), \
5242 sizeof (Elf64_External_##type))
5243
252b5132
RH
5244 for (i = 0, section = section_headers;
5245 i < elf_header.e_shnum;
b34976b6 5246 i++, section++)
252b5132 5247 {
2cf0635d 5248 char * name = SECTION_NAME (section);
252b5132
RH
5249
5250 if (section->sh_type == SHT_DYNSYM)
5251 {
5252 if (dynamic_symbols != NULL)
5253 {
5254 error (_("File contains multiple dynamic symbol tables\n"));
5255 continue;
5256 }
5257
08d8fa11 5258 CHECK_ENTSIZE (section, i, Sym);
ba5cdace 5259 dynamic_symbols = GET_ELF_SYMBOLS (file, section, & num_dynamic_syms);
252b5132
RH
5260 }
5261 else if (section->sh_type == SHT_STRTAB
18bd398b 5262 && streq (name, ".dynstr"))
252b5132
RH
5263 {
5264 if (dynamic_strings != NULL)
5265 {
5266 error (_("File contains multiple dynamic string tables\n"));
5267 continue;
5268 }
5269
3f5e193b
NC
5270 dynamic_strings = (char *) get_data (NULL, file, section->sh_offset,
5271 1, section->sh_size,
5272 _("dynamic strings"));
59245841 5273 dynamic_strings_length = dynamic_strings == NULL ? 0 : section->sh_size;
252b5132 5274 }
9ad5cbcf
AM
5275 else if (section->sh_type == SHT_SYMTAB_SHNDX)
5276 {
5277 if (symtab_shndx_hdr != NULL)
5278 {
5279 error (_("File contains multiple symtab shndx tables\n"));
5280 continue;
5281 }
5282 symtab_shndx_hdr = section;
5283 }
08d8fa11
JJ
5284 else if (section->sh_type == SHT_SYMTAB)
5285 CHECK_ENTSIZE (section, i, Sym);
5286 else if (section->sh_type == SHT_GROUP)
5287 CHECK_ENTSIZE_VALUES (section, i, GRP_ENTRY_SIZE, GRP_ENTRY_SIZE);
5288 else if (section->sh_type == SHT_REL)
5289 CHECK_ENTSIZE (section, i, Rel);
5290 else if (section->sh_type == SHT_RELA)
5291 CHECK_ENTSIZE (section, i, Rela);
252b5132 5292 else if ((do_debugging || do_debug_info || do_debug_abbrevs
f9f0e732 5293 || do_debug_lines || do_debug_pubnames || do_debug_pubtypes
cb8f3167 5294 || do_debug_aranges || do_debug_frames || do_debug_macinfo
657d0d47
CC
5295 || do_debug_str || do_debug_loc || do_debug_ranges
5296 || do_debug_addr || do_debug_cu_index)
1b315056
CS
5297 && (const_strneq (name, ".debug_")
5298 || const_strneq (name, ".zdebug_")))
252b5132 5299 {
1b315056
CS
5300 if (name[1] == 'z')
5301 name += sizeof (".zdebug_") - 1;
5302 else
5303 name += sizeof (".debug_") - 1;
252b5132
RH
5304
5305 if (do_debugging
4723351a
CC
5306 || (do_debug_info && const_strneq (name, "info"))
5307 || (do_debug_info && const_strneq (name, "types"))
5308 || (do_debug_abbrevs && const_strneq (name, "abbrev"))
b40bf0a2
NC
5309 || (do_debug_lines && strcmp (name, "line") == 0)
5310 || (do_debug_lines && const_strneq (name, "line."))
4723351a
CC
5311 || (do_debug_pubnames && const_strneq (name, "pubnames"))
5312 || (do_debug_pubtypes && const_strneq (name, "pubtypes"))
459d52c8
DE
5313 || (do_debug_pubnames && const_strneq (name, "gnu_pubnames"))
5314 || (do_debug_pubtypes && const_strneq (name, "gnu_pubtypes"))
4723351a
CC
5315 || (do_debug_aranges && const_strneq (name, "aranges"))
5316 || (do_debug_ranges && const_strneq (name, "ranges"))
5317 || (do_debug_frames && const_strneq (name, "frame"))
5318 || (do_debug_macinfo && const_strneq (name, "macinfo"))
5319 || (do_debug_macinfo && const_strneq (name, "macro"))
5320 || (do_debug_str && const_strneq (name, "str"))
5321 || (do_debug_loc && const_strneq (name, "loc"))
657d0d47
CC
5322 || (do_debug_addr && const_strneq (name, "addr"))
5323 || (do_debug_cu_index && const_strneq (name, "cu_index"))
5324 || (do_debug_cu_index && const_strneq (name, "tu_index"))
252b5132 5325 )
09c11c86 5326 request_dump_bynumber (i, DEBUG_DUMP);
252b5132 5327 }
a262ae96 5328 /* Linkonce section to be combined with .debug_info at link time. */
09fd7e38 5329 else if ((do_debugging || do_debug_info)
0112cd26 5330 && const_strneq (name, ".gnu.linkonce.wi."))
09c11c86 5331 request_dump_bynumber (i, DEBUG_DUMP);
18bd398b 5332 else if (do_debug_frames && streq (name, ".eh_frame"))
09c11c86 5333 request_dump_bynumber (i, DEBUG_DUMP);
5bbdf3d5
DE
5334 else if (do_gdb_index && streq (name, ".gdb_index"))
5335 request_dump_bynumber (i, DEBUG_DUMP);
6f875884
TG
5336 /* Trace sections for Itanium VMS. */
5337 else if ((do_debugging || do_trace_info || do_trace_abbrevs
5338 || do_trace_aranges)
5339 && const_strneq (name, ".trace_"))
5340 {
5341 name += sizeof (".trace_") - 1;
5342
5343 if (do_debugging
5344 || (do_trace_info && streq (name, "info"))
5345 || (do_trace_abbrevs && streq (name, "abbrev"))
5346 || (do_trace_aranges && streq (name, "aranges"))
5347 )
5348 request_dump_bynumber (i, DEBUG_DUMP);
5349 }
252b5132
RH
5350 }
5351
5352 if (! do_sections)
5353 return 1;
5354
3a1a2036
NC
5355 if (elf_header.e_shnum > 1)
5356 printf (_("\nSection Headers:\n"));
5357 else
5358 printf (_("\nSection Header:\n"));
76da6bbe 5359
f7a99963 5360 if (is_32bit_elf)
595cf52e 5361 {
5477e8a0 5362 if (do_section_details)
595cf52e
L
5363 {
5364 printf (_(" [Nr] Name\n"));
5477e8a0 5365 printf (_(" Type Addr Off Size ES Lk Inf Al\n"));
595cf52e
L
5366 }
5367 else
5368 printf
5369 (_(" [Nr] Name Type Addr Off Size ES Flg Lk Inf Al\n"));
5370 }
d974e256 5371 else if (do_wide)
595cf52e 5372 {
5477e8a0 5373 if (do_section_details)
595cf52e
L
5374 {
5375 printf (_(" [Nr] Name\n"));
5477e8a0 5376 printf (_(" Type Address Off Size ES Lk Inf Al\n"));
595cf52e
L
5377 }
5378 else
5379 printf
5380 (_(" [Nr] Name Type Address Off Size ES Flg Lk Inf Al\n"));
5381 }
f7a99963
NC
5382 else
5383 {
5477e8a0 5384 if (do_section_details)
595cf52e
L
5385 {
5386 printf (_(" [Nr] Name\n"));
5477e8a0
L
5387 printf (_(" Type Address Offset Link\n"));
5388 printf (_(" Size EntSize Info Align\n"));
595cf52e
L
5389 }
5390 else
5391 {
5392 printf (_(" [Nr] Name Type Address Offset\n"));
5393 printf (_(" Size EntSize Flags Link Info Align\n"));
5394 }
f7a99963 5395 }
252b5132 5396
5477e8a0
L
5397 if (do_section_details)
5398 printf (_(" Flags\n"));
5399
252b5132
RH
5400 for (i = 0, section = section_headers;
5401 i < elf_header.e_shnum;
b34976b6 5402 i++, section++)
252b5132 5403 {
7bfd842d 5404 printf (" [%2u] ", i);
5477e8a0 5405 if (do_section_details)
74e1a04b 5406 printf ("%s\n ", printable_section_name (section));
595cf52e 5407 else
74e1a04b 5408 print_symbol (-17, SECTION_NAME (section));
0b4362b0 5409
ea52a088
NC
5410 printf (do_wide ? " %-15s " : " %-15.15s ",
5411 get_section_type_name (section->sh_type));
0b4362b0 5412
f7a99963
NC
5413 if (is_32bit_elf)
5414 {
cfcac11d
NC
5415 const char * link_too_big = NULL;
5416
f7a99963 5417 print_vma (section->sh_addr, LONG_HEX);
76da6bbe 5418
f7a99963
NC
5419 printf ( " %6.6lx %6.6lx %2.2lx",
5420 (unsigned long) section->sh_offset,
5421 (unsigned long) section->sh_size,
5422 (unsigned long) section->sh_entsize);
d1133906 5423
5477e8a0
L
5424 if (do_section_details)
5425 fputs (" ", stdout);
5426 else
5427 printf (" %3s ", get_elf_section_flags (section->sh_flags));
76da6bbe 5428
cfcac11d
NC
5429 if (section->sh_link >= elf_header.e_shnum)
5430 {
5431 link_too_big = "";
5432 /* The sh_link value is out of range. Normally this indicates
caa83f8b 5433 an error but it can have special values in Solaris binaries. */
cfcac11d
NC
5434 switch (elf_header.e_machine)
5435 {
caa83f8b
NC
5436 case EM_386:
5437 case EM_486:
5438 case EM_X86_64:
7f502d6c 5439 case EM_L1OM:
7a9068fe 5440 case EM_K1OM:
cfcac11d
NC
5441 case EM_OLD_SPARCV9:
5442 case EM_SPARC32PLUS:
5443 case EM_SPARCV9:
5444 case EM_SPARC:
5445 if (section->sh_link == (SHN_BEFORE & 0xffff))
5446 link_too_big = "BEFORE";
5447 else if (section->sh_link == (SHN_AFTER & 0xffff))
5448 link_too_big = "AFTER";
5449 break;
5450 default:
5451 break;
5452 }
5453 }
5454
5455 if (do_section_details)
5456 {
5457 if (link_too_big != NULL && * link_too_big)
5458 printf ("<%s> ", link_too_big);
5459 else
5460 printf ("%2u ", section->sh_link);
5461 printf ("%3u %2lu\n", section->sh_info,
5462 (unsigned long) section->sh_addralign);
5463 }
5464 else
5465 printf ("%2u %3u %2lu\n",
5466 section->sh_link,
5467 section->sh_info,
5468 (unsigned long) section->sh_addralign);
5469
5470 if (link_too_big && ! * link_too_big)
5471 warn (_("section %u: sh_link value of %u is larger than the number of sections\n"),
5472 i, section->sh_link);
f7a99963 5473 }
d974e256
JJ
5474 else if (do_wide)
5475 {
5476 print_vma (section->sh_addr, LONG_HEX);
5477
5478 if ((long) section->sh_offset == section->sh_offset)
5479 printf (" %6.6lx", (unsigned long) section->sh_offset);
5480 else
5481 {
5482 putchar (' ');
5483 print_vma (section->sh_offset, LONG_HEX);
5484 }
5485
5486 if ((unsigned long) section->sh_size == section->sh_size)
5487 printf (" %6.6lx", (unsigned long) section->sh_size);
5488 else
5489 {
5490 putchar (' ');
5491 print_vma (section->sh_size, LONG_HEX);
5492 }
5493
5494 if ((unsigned long) section->sh_entsize == section->sh_entsize)
5495 printf (" %2.2lx", (unsigned long) section->sh_entsize);
5496 else
5497 {
5498 putchar (' ');
5499 print_vma (section->sh_entsize, LONG_HEX);
5500 }
5501
5477e8a0
L
5502 if (do_section_details)
5503 fputs (" ", stdout);
5504 else
5505 printf (" %3s ", get_elf_section_flags (section->sh_flags));
d974e256 5506
72de5009 5507 printf ("%2u %3u ", section->sh_link, section->sh_info);
d974e256
JJ
5508
5509 if ((unsigned long) section->sh_addralign == section->sh_addralign)
72de5009 5510 printf ("%2lu\n", (unsigned long) section->sh_addralign);
d974e256
JJ
5511 else
5512 {
5513 print_vma (section->sh_addralign, DEC);
5514 putchar ('\n');
5515 }
5516 }
5477e8a0 5517 else if (do_section_details)
595cf52e 5518 {
5477e8a0 5519 printf (" %-15.15s ",
595cf52e 5520 get_section_type_name (section->sh_type));
595cf52e
L
5521 print_vma (section->sh_addr, LONG_HEX);
5522 if ((long) section->sh_offset == section->sh_offset)
5477e8a0 5523 printf (" %16.16lx", (unsigned long) section->sh_offset);
595cf52e
L
5524 else
5525 {
5526 printf (" ");
5527 print_vma (section->sh_offset, LONG_HEX);
5528 }
72de5009 5529 printf (" %u\n ", section->sh_link);
595cf52e 5530 print_vma (section->sh_size, LONG_HEX);
5477e8a0 5531 putchar (' ');
595cf52e
L
5532 print_vma (section->sh_entsize, LONG_HEX);
5533
72de5009
AM
5534 printf (" %-16u %lu\n",
5535 section->sh_info,
595cf52e
L
5536 (unsigned long) section->sh_addralign);
5537 }
f7a99963
NC
5538 else
5539 {
5540 putchar (' ');
5541 print_vma (section->sh_addr, LONG_HEX);
53c7db4b
KH
5542 if ((long) section->sh_offset == section->sh_offset)
5543 printf (" %8.8lx", (unsigned long) section->sh_offset);
5544 else
5545 {
5546 printf (" ");
5547 print_vma (section->sh_offset, LONG_HEX);
5548 }
f7a99963
NC
5549 printf ("\n ");
5550 print_vma (section->sh_size, LONG_HEX);
5551 printf (" ");
5552 print_vma (section->sh_entsize, LONG_HEX);
76da6bbe 5553
d1133906 5554 printf (" %3s ", get_elf_section_flags (section->sh_flags));
76da6bbe 5555
72de5009
AM
5556 printf (" %2u %3u %lu\n",
5557 section->sh_link,
5558 section->sh_info,
f7a99963
NC
5559 (unsigned long) section->sh_addralign);
5560 }
5477e8a0
L
5561
5562 if (do_section_details)
5563 printf (" %s\n", get_elf_section_flags (section->sh_flags));
252b5132
RH
5564 }
5565
5477e8a0 5566 if (!do_section_details)
3dbcc61d
NC
5567 {
5568 if (elf_header.e_machine == EM_X86_64
7a9068fe
L
5569 || elf_header.e_machine == EM_L1OM
5570 || elf_header.e_machine == EM_K1OM)
3dbcc61d
NC
5571 printf (_("Key to Flags:\n\
5572 W (write), A (alloc), X (execute), M (merge), S (strings), l (large)\n\
5573 I (info), L (link order), G (group), T (TLS), E (exclude), x (unknown)\n\
5574 O (extra OS processing required) o (OS specific), p (processor specific)\n"));
5575 else
5576 printf (_("Key to Flags:\n\
e3c8793a 5577 W (write), A (alloc), X (execute), M (merge), S (strings)\n\
1d0055ea 5578 I (info), L (link order), G (group), T (TLS), E (exclude), x (unknown)\n\
e3c8793a 5579 O (extra OS processing required) o (OS specific), p (processor specific)\n"));
0b4362b0 5580 }
d1133906 5581
252b5132
RH
5582 return 1;
5583}
5584
f5842774
L
5585static const char *
5586get_group_flags (unsigned int flags)
5587{
5588 static char buff[32];
5589 switch (flags)
5590 {
220453ec
AM
5591 case 0:
5592 return "";
5593
f5842774 5594 case GRP_COMDAT:
220453ec 5595 return "COMDAT ";
f5842774
L
5596
5597 default:
220453ec 5598 snprintf (buff, sizeof (buff), _("[<unknown>: 0x%x] "), flags);
f5842774
L
5599 break;
5600 }
5601 return buff;
5602}
5603
5604static int
2cf0635d 5605process_section_groups (FILE * file)
f5842774 5606{
2cf0635d 5607 Elf_Internal_Shdr * section;
f5842774 5608 unsigned int i;
2cf0635d
NC
5609 struct group * group;
5610 Elf_Internal_Shdr * symtab_sec;
5611 Elf_Internal_Shdr * strtab_sec;
5612 Elf_Internal_Sym * symtab;
ba5cdace 5613 unsigned long num_syms;
2cf0635d 5614 char * strtab;
c256ffe7 5615 size_t strtab_size;
d1f5c6e3
L
5616
5617 /* Don't process section groups unless needed. */
5618 if (!do_unwind && !do_section_groups)
5619 return 1;
f5842774
L
5620
5621 if (elf_header.e_shnum == 0)
5622 {
5623 if (do_section_groups)
82f2dbf7 5624 printf (_("\nThere are no sections to group in this file.\n"));
f5842774
L
5625
5626 return 1;
5627 }
5628
5629 if (section_headers == NULL)
5630 {
5631 error (_("Section headers are not available!\n"));
fa1908fd
NC
5632 /* PR 13622: This can happen with a corrupt ELF header. */
5633 return 0;
f5842774
L
5634 }
5635
3f5e193b
NC
5636 section_headers_groups = (struct group **) calloc (elf_header.e_shnum,
5637 sizeof (struct group *));
e4b17d5c
L
5638
5639 if (section_headers_groups == NULL)
5640 {
8b73c356
NC
5641 error (_("Out of memory reading %u section group headers\n"),
5642 elf_header.e_shnum);
e4b17d5c
L
5643 return 0;
5644 }
5645
f5842774 5646 /* Scan the sections for the group section. */
d1f5c6e3 5647 group_count = 0;
f5842774
L
5648 for (i = 0, section = section_headers;
5649 i < elf_header.e_shnum;
5650 i++, section++)
e4b17d5c
L
5651 if (section->sh_type == SHT_GROUP)
5652 group_count++;
5653
d1f5c6e3
L
5654 if (group_count == 0)
5655 {
5656 if (do_section_groups)
5657 printf (_("\nThere are no section groups in this file.\n"));
5658
5659 return 1;
5660 }
5661
3f5e193b 5662 section_groups = (struct group *) calloc (group_count, sizeof (struct group));
e4b17d5c
L
5663
5664 if (section_groups == NULL)
5665 {
8b73c356
NC
5666 error (_("Out of memory reading %lu groups\n"),
5667 (unsigned long) group_count);
e4b17d5c
L
5668 return 0;
5669 }
5670
d1f5c6e3
L
5671 symtab_sec = NULL;
5672 strtab_sec = NULL;
5673 symtab = NULL;
ba5cdace 5674 num_syms = 0;
d1f5c6e3 5675 strtab = NULL;
c256ffe7 5676 strtab_size = 0;
e4b17d5c
L
5677 for (i = 0, section = section_headers, group = section_groups;
5678 i < elf_header.e_shnum;
5679 i++, section++)
f5842774
L
5680 {
5681 if (section->sh_type == SHT_GROUP)
5682 {
74e1a04b
NC
5683 const char * name = printable_section_name (section);
5684 const char * group_name;
2cf0635d
NC
5685 unsigned char * start;
5686 unsigned char * indices;
f5842774 5687 unsigned int entry, j, size;
2cf0635d
NC
5688 Elf_Internal_Shdr * sec;
5689 Elf_Internal_Sym * sym;
f5842774
L
5690
5691 /* Get the symbol table. */
4fbb74a6
AM
5692 if (section->sh_link >= elf_header.e_shnum
5693 || ((sec = section_headers + section->sh_link)->sh_type
c256ffe7 5694 != SHT_SYMTAB))
f5842774
L
5695 {
5696 error (_("Bad sh_link in group section `%s'\n"), name);
5697 continue;
5698 }
d1f5c6e3
L
5699
5700 if (symtab_sec != sec)
5701 {
5702 symtab_sec = sec;
5703 if (symtab)
5704 free (symtab);
ba5cdace 5705 symtab = GET_ELF_SYMBOLS (file, symtab_sec, & num_syms);
d1f5c6e3 5706 }
f5842774 5707
dd24e3da
NC
5708 if (symtab == NULL)
5709 {
5710 error (_("Corrupt header in group section `%s'\n"), name);
5711 continue;
5712 }
5713
ba5cdace
NC
5714 if (section->sh_info >= num_syms)
5715 {
5716 error (_("Bad sh_info in group section `%s'\n"), name);
5717 continue;
5718 }
5719
f5842774
L
5720 sym = symtab + section->sh_info;
5721
5722 if (ELF_ST_TYPE (sym->st_info) == STT_SECTION)
5723 {
4fbb74a6
AM
5724 if (sym->st_shndx == 0
5725 || sym->st_shndx >= elf_header.e_shnum)
f5842774
L
5726 {
5727 error (_("Bad sh_info in group section `%s'\n"), name);
5728 continue;
5729 }
ba2685cc 5730
4fbb74a6 5731 group_name = SECTION_NAME (section_headers + sym->st_shndx);
c256ffe7
JJ
5732 strtab_sec = NULL;
5733 if (strtab)
5734 free (strtab);
f5842774 5735 strtab = NULL;
c256ffe7 5736 strtab_size = 0;
f5842774
L
5737 }
5738 else
5739 {
5740 /* Get the string table. */
4fbb74a6 5741 if (symtab_sec->sh_link >= elf_header.e_shnum)
c256ffe7
JJ
5742 {
5743 strtab_sec = NULL;
5744 if (strtab)
5745 free (strtab);
5746 strtab = NULL;
5747 strtab_size = 0;
5748 }
5749 else if (strtab_sec
4fbb74a6 5750 != (sec = section_headers + symtab_sec->sh_link))
d1f5c6e3
L
5751 {
5752 strtab_sec = sec;
5753 if (strtab)
5754 free (strtab);
071436c6 5755
3f5e193b 5756 strtab = (char *) get_data (NULL, file, strtab_sec->sh_offset,
071436c6
NC
5757 1, strtab_sec->sh_size,
5758 _("string table"));
c256ffe7 5759 strtab_size = strtab != NULL ? strtab_sec->sh_size : 0;
d1f5c6e3 5760 }
c256ffe7 5761 group_name = sym->st_name < strtab_size
2b692964 5762 ? strtab + sym->st_name : _("<corrupt>");
f5842774
L
5763 }
5764
3f5e193b
NC
5765 start = (unsigned char *) get_data (NULL, file, section->sh_offset,
5766 1, section->sh_size,
5767 _("section data"));
59245841
NC
5768 if (start == NULL)
5769 continue;
f5842774
L
5770
5771 indices = start;
5772 size = (section->sh_size / section->sh_entsize) - 1;
5773 entry = byte_get (indices, 4);
5774 indices += 4;
e4b17d5c
L
5775
5776 if (do_section_groups)
5777 {
2b692964 5778 printf (_("\n%sgroup section [%5u] `%s' [%s] contains %u sections:\n"),
391cb864 5779 get_group_flags (entry), i, name, group_name, size);
ba2685cc 5780
e4b17d5c
L
5781 printf (_(" [Index] Name\n"));
5782 }
5783
5784 group->group_index = i;
5785
f5842774
L
5786 for (j = 0; j < size; j++)
5787 {
2cf0635d 5788 struct group_list * g;
e4b17d5c 5789
f5842774
L
5790 entry = byte_get (indices, 4);
5791 indices += 4;
5792
4fbb74a6 5793 if (entry >= elf_header.e_shnum)
391cb864
L
5794 {
5795 error (_("section [%5u] in group section [%5u] > maximum section [%5u]\n"),
5796 entry, i, elf_header.e_shnum - 1);
5797 continue;
5798 }
391cb864 5799
4fbb74a6 5800 if (section_headers_groups [entry] != NULL)
e4b17d5c 5801 {
d1f5c6e3
L
5802 if (entry)
5803 {
391cb864
L
5804 error (_("section [%5u] in group section [%5u] already in group section [%5u]\n"),
5805 entry, i,
4fbb74a6 5806 section_headers_groups [entry]->group_index);
d1f5c6e3
L
5807 continue;
5808 }
5809 else
5810 {
5811 /* Intel C/C++ compiler may put section 0 in a
5812 section group. We just warn it the first time
5813 and ignore it afterwards. */
5814 static int warned = 0;
5815 if (!warned)
5816 {
5817 error (_("section 0 in group section [%5u]\n"),
4fbb74a6 5818 section_headers_groups [entry]->group_index);
d1f5c6e3
L
5819 warned++;
5820 }
5821 }
e4b17d5c
L
5822 }
5823
4fbb74a6 5824 section_headers_groups [entry] = group;
e4b17d5c
L
5825
5826 if (do_section_groups)
5827 {
4fbb74a6 5828 sec = section_headers + entry;
74e1a04b 5829 printf (" [%5u] %s\n", entry, printable_section_name (sec));
ba2685cc
AM
5830 }
5831
3f5e193b 5832 g = (struct group_list *) xmalloc (sizeof (struct group_list));
e4b17d5c
L
5833 g->section_index = entry;
5834 g->next = group->root;
5835 group->root = g;
f5842774
L
5836 }
5837
f5842774
L
5838 if (start)
5839 free (start);
e4b17d5c
L
5840
5841 group++;
f5842774
L
5842 }
5843 }
5844
d1f5c6e3
L
5845 if (symtab)
5846 free (symtab);
5847 if (strtab)
5848 free (strtab);
f5842774
L
5849 return 1;
5850}
5851
28f997cf
TG
5852/* Data used to display dynamic fixups. */
5853
5854struct ia64_vms_dynfixup
5855{
5856 bfd_vma needed_ident; /* Library ident number. */
5857 bfd_vma needed; /* Index in the dstrtab of the library name. */
5858 bfd_vma fixup_needed; /* Index of the library. */
5859 bfd_vma fixup_rela_cnt; /* Number of fixups. */
5860 bfd_vma fixup_rela_off; /* Fixups offset in the dynamic segment. */
5861};
5862
5863/* Data used to display dynamic relocations. */
5864
5865struct ia64_vms_dynimgrela
5866{
5867 bfd_vma img_rela_cnt; /* Number of relocations. */
5868 bfd_vma img_rela_off; /* Reloc offset in the dynamic segment. */
5869};
5870
5871/* Display IA-64 OpenVMS dynamic fixups (used to dynamically link a shared
5872 library). */
5873
5874static void
5875dump_ia64_vms_dynamic_fixups (FILE *file, struct ia64_vms_dynfixup *fixup,
5876 const char *strtab, unsigned int strtab_sz)
5877{
5878 Elf64_External_VMS_IMAGE_FIXUP *imfs;
5879 long i;
5880 const char *lib_name;
5881
5882 imfs = get_data (NULL, file, dynamic_addr + fixup->fixup_rela_off,
5883 1, fixup->fixup_rela_cnt * sizeof (*imfs),
5884 _("dynamic section image fixups"));
5885 if (!imfs)
5886 return;
5887
5888 if (fixup->needed < strtab_sz)
5889 lib_name = strtab + fixup->needed;
5890 else
5891 {
5892 warn ("corrupt library name index of 0x%lx found in dynamic entry",
7f01b0c6 5893 (unsigned long) fixup->needed);
28f997cf
TG
5894 lib_name = "???";
5895 }
5896 printf (_("\nImage fixups for needed library #%d: %s - ident: %lx\n"),
5897 (int) fixup->fixup_needed, lib_name, (long) fixup->needed_ident);
5898 printf
5899 (_("Seg Offset Type SymVec DataType\n"));
5900
5901 for (i = 0; i < (long) fixup->fixup_rela_cnt; i++)
5902 {
5903 unsigned int type;
5904 const char *rtype;
5905
5906 printf ("%3u ", (unsigned) BYTE_GET (imfs [i].fixup_seg));
5907 printf_vma ((bfd_vma) BYTE_GET (imfs [i].fixup_offset));
5908 type = BYTE_GET (imfs [i].type);
5909 rtype = elf_ia64_reloc_type (type);
5910 if (rtype == NULL)
5911 printf (" 0x%08x ", type);
5912 else
5913 printf (" %-32s ", rtype);
5914 printf ("%6u ", (unsigned) BYTE_GET (imfs [i].symvec_index));
5915 printf ("0x%08x\n", (unsigned) BYTE_GET (imfs [i].data_type));
5916 }
5917
5918 free (imfs);
5919}
5920
5921/* Display IA-64 OpenVMS dynamic relocations (used to relocate an image). */
5922
5923static void
5924dump_ia64_vms_dynamic_relocs (FILE *file, struct ia64_vms_dynimgrela *imgrela)
5925{
5926 Elf64_External_VMS_IMAGE_RELA *imrs;
5927 long i;
5928
5929 imrs = get_data (NULL, file, dynamic_addr + imgrela->img_rela_off,
5930 1, imgrela->img_rela_cnt * sizeof (*imrs),
9cf03b7e 5931 _("dynamic section image relocations"));
28f997cf
TG
5932 if (!imrs)
5933 return;
5934
5935 printf (_("\nImage relocs\n"));
5936 printf
5937 (_("Seg Offset Type Addend Seg Sym Off\n"));
5938
5939 for (i = 0; i < (long) imgrela->img_rela_cnt; i++)
5940 {
5941 unsigned int type;
5942 const char *rtype;
5943
5944 printf ("%3u ", (unsigned) BYTE_GET (imrs [i].rela_seg));
5945 printf ("%08" BFD_VMA_FMT "x ",
5946 (bfd_vma) BYTE_GET (imrs [i].rela_offset));
5947 type = BYTE_GET (imrs [i].type);
5948 rtype = elf_ia64_reloc_type (type);
5949 if (rtype == NULL)
5950 printf ("0x%08x ", type);
5951 else
5952 printf ("%-31s ", rtype);
5953 print_vma (BYTE_GET (imrs [i].addend), FULL_HEX);
5954 printf ("%3u ", (unsigned) BYTE_GET (imrs [i].sym_seg));
5955 printf ("%08" BFD_VMA_FMT "x\n",
5956 (bfd_vma) BYTE_GET (imrs [i].sym_offset));
5957 }
5958
5959 free (imrs);
5960}
5961
5962/* Display IA-64 OpenVMS dynamic relocations and fixups. */
5963
5964static int
5965process_ia64_vms_dynamic_relocs (FILE *file)
5966{
5967 struct ia64_vms_dynfixup fixup;
5968 struct ia64_vms_dynimgrela imgrela;
5969 Elf_Internal_Dyn *entry;
5970 int res = 0;
5971 bfd_vma strtab_off = 0;
5972 bfd_vma strtab_sz = 0;
5973 char *strtab = NULL;
5974
5975 memset (&fixup, 0, sizeof (fixup));
5976 memset (&imgrela, 0, sizeof (imgrela));
5977
5978 /* Note: the order of the entries is specified by the OpenVMS specs. */
5979 for (entry = dynamic_section;
5980 entry < dynamic_section + dynamic_nent;
5981 entry++)
5982 {
5983 switch (entry->d_tag)
5984 {
5985 case DT_IA_64_VMS_STRTAB_OFFSET:
5986 strtab_off = entry->d_un.d_val;
5987 break;
5988 case DT_STRSZ:
5989 strtab_sz = entry->d_un.d_val;
5990 if (strtab == NULL)
5991 strtab = get_data (NULL, file, dynamic_addr + strtab_off,
5992 1, strtab_sz, _("dynamic string section"));
5993 break;
5994
5995 case DT_IA_64_VMS_NEEDED_IDENT:
5996 fixup.needed_ident = entry->d_un.d_val;
5997 break;
5998 case DT_NEEDED:
5999 fixup.needed = entry->d_un.d_val;
6000 break;
6001 case DT_IA_64_VMS_FIXUP_NEEDED:
6002 fixup.fixup_needed = entry->d_un.d_val;
6003 break;
6004 case DT_IA_64_VMS_FIXUP_RELA_CNT:
6005 fixup.fixup_rela_cnt = entry->d_un.d_val;
6006 break;
6007 case DT_IA_64_VMS_FIXUP_RELA_OFF:
6008 fixup.fixup_rela_off = entry->d_un.d_val;
6009 res++;
6010 dump_ia64_vms_dynamic_fixups (file, &fixup, strtab, strtab_sz);
6011 break;
6012
6013 case DT_IA_64_VMS_IMG_RELA_CNT:
6014 imgrela.img_rela_cnt = entry->d_un.d_val;
6015 break;
6016 case DT_IA_64_VMS_IMG_RELA_OFF:
6017 imgrela.img_rela_off = entry->d_un.d_val;
6018 res++;
6019 dump_ia64_vms_dynamic_relocs (file, &imgrela);
6020 break;
6021
6022 default:
6023 break;
6024 }
6025 }
6026
6027 if (strtab != NULL)
6028 free (strtab);
6029
6030 return res;
6031}
6032
85b1c36d 6033static struct
566b0d53 6034{
2cf0635d 6035 const char * name;
566b0d53
L
6036 int reloc;
6037 int size;
6038 int rela;
6039} dynamic_relocations [] =
6040{
6041 { "REL", DT_REL, DT_RELSZ, FALSE },
6042 { "RELA", DT_RELA, DT_RELASZ, TRUE },
6043 { "PLT", DT_JMPREL, DT_PLTRELSZ, UNKNOWN }
6044};
6045
252b5132 6046/* Process the reloc section. */
18bd398b 6047
252b5132 6048static int
2cf0635d 6049process_relocs (FILE * file)
252b5132 6050{
b34976b6
AM
6051 unsigned long rel_size;
6052 unsigned long rel_offset;
252b5132
RH
6053
6054
6055 if (!do_reloc)
6056 return 1;
6057
6058 if (do_using_dynamic)
6059 {
566b0d53 6060 int is_rela;
2cf0635d 6061 const char * name;
566b0d53
L
6062 int has_dynamic_reloc;
6063 unsigned int i;
0de14b54 6064
566b0d53 6065 has_dynamic_reloc = 0;
252b5132 6066
566b0d53 6067 for (i = 0; i < ARRAY_SIZE (dynamic_relocations); i++)
252b5132 6068 {
566b0d53
L
6069 is_rela = dynamic_relocations [i].rela;
6070 name = dynamic_relocations [i].name;
6071 rel_size = dynamic_info [dynamic_relocations [i].size];
6072 rel_offset = dynamic_info [dynamic_relocations [i].reloc];
103f02d3 6073
566b0d53
L
6074 has_dynamic_reloc |= rel_size;
6075
6076 if (is_rela == UNKNOWN)
aa903cfb 6077 {
566b0d53
L
6078 if (dynamic_relocations [i].reloc == DT_JMPREL)
6079 switch (dynamic_info[DT_PLTREL])
6080 {
6081 case DT_REL:
6082 is_rela = FALSE;
6083 break;
6084 case DT_RELA:
6085 is_rela = TRUE;
6086 break;
6087 }
aa903cfb 6088 }
252b5132 6089
566b0d53
L
6090 if (rel_size)
6091 {
6092 printf
6093 (_("\n'%s' relocation section at offset 0x%lx contains %ld bytes:\n"),
6094 name, rel_offset, rel_size);
252b5132 6095
d93f0186
NC
6096 dump_relocations (file,
6097 offset_from_vma (file, rel_offset, rel_size),
6098 rel_size,
566b0d53 6099 dynamic_symbols, num_dynamic_syms,
d79b3d50 6100 dynamic_strings, dynamic_strings_length, is_rela);
566b0d53 6101 }
252b5132 6102 }
566b0d53 6103
28f997cf
TG
6104 if (is_ia64_vms ())
6105 has_dynamic_reloc |= process_ia64_vms_dynamic_relocs (file);
6106
566b0d53 6107 if (! has_dynamic_reloc)
252b5132
RH
6108 printf (_("\nThere are no dynamic relocations in this file.\n"));
6109 }
6110 else
6111 {
2cf0635d 6112 Elf_Internal_Shdr * section;
b34976b6
AM
6113 unsigned long i;
6114 int found = 0;
252b5132
RH
6115
6116 for (i = 0, section = section_headers;
6117 i < elf_header.e_shnum;
b34976b6 6118 i++, section++)
252b5132
RH
6119 {
6120 if ( section->sh_type != SHT_RELA
6121 && section->sh_type != SHT_REL)
6122 continue;
6123
6124 rel_offset = section->sh_offset;
6125 rel_size = section->sh_size;
6126
6127 if (rel_size)
6128 {
2cf0635d 6129 Elf_Internal_Shdr * strsec;
b34976b6 6130 int is_rela;
103f02d3 6131
252b5132
RH
6132 printf (_("\nRelocation section "));
6133
6134 if (string_table == NULL)
19936277 6135 printf ("%d", section->sh_name);
252b5132 6136 else
74e1a04b 6137 printf ("'%s'", printable_section_name (section));
252b5132
RH
6138
6139 printf (_(" at offset 0x%lx contains %lu entries:\n"),
6140 rel_offset, (unsigned long) (rel_size / section->sh_entsize));
6141
d79b3d50
NC
6142 is_rela = section->sh_type == SHT_RELA;
6143
4fbb74a6
AM
6144 if (section->sh_link != 0
6145 && section->sh_link < elf_header.e_shnum)
af3fc3bc 6146 {
2cf0635d
NC
6147 Elf_Internal_Shdr * symsec;
6148 Elf_Internal_Sym * symtab;
d79b3d50 6149 unsigned long nsyms;
c256ffe7 6150 unsigned long strtablen = 0;
2cf0635d 6151 char * strtab = NULL;
57346661 6152
4fbb74a6 6153 symsec = section_headers + section->sh_link;
08d8fa11
JJ
6154 if (symsec->sh_type != SHT_SYMTAB
6155 && symsec->sh_type != SHT_DYNSYM)
6156 continue;
6157
ba5cdace 6158 symtab = GET_ELF_SYMBOLS (file, symsec, & nsyms);
252b5132 6159
af3fc3bc
AM
6160 if (symtab == NULL)
6161 continue;
252b5132 6162
4fbb74a6
AM
6163 if (symsec->sh_link != 0
6164 && symsec->sh_link < elf_header.e_shnum)
c256ffe7 6165 {
4fbb74a6 6166 strsec = section_headers + symsec->sh_link;
103f02d3 6167
3f5e193b 6168 strtab = (char *) get_data (NULL, file, strsec->sh_offset,
071436c6
NC
6169 1, strsec->sh_size,
6170 _("string table"));
c256ffe7
JJ
6171 strtablen = strtab == NULL ? 0 : strsec->sh_size;
6172 }
252b5132 6173
d79b3d50
NC
6174 dump_relocations (file, rel_offset, rel_size,
6175 symtab, nsyms, strtab, strtablen, is_rela);
6176 if (strtab)
6177 free (strtab);
6178 free (symtab);
6179 }
6180 else
6181 dump_relocations (file, rel_offset, rel_size,
6182 NULL, 0, NULL, 0, is_rela);
252b5132
RH
6183
6184 found = 1;
6185 }
6186 }
6187
6188 if (! found)
6189 printf (_("\nThere are no relocations in this file.\n"));
6190 }
6191
6192 return 1;
6193}
6194
57346661
AM
6195/* Process the unwind section. */
6196
4d6ed7c8
NC
6197#include "unwind-ia64.h"
6198
6199/* An absolute address consists of a section and an offset. If the
6200 section is NULL, the offset itself is the address, otherwise, the
6201 address equals to LOAD_ADDRESS(section) + offset. */
6202
6203struct absaddr
6204 {
6205 unsigned short section;
6206 bfd_vma offset;
6207 };
6208
1949de15
L
6209#define ABSADDR(a) \
6210 ((a).section \
6211 ? section_headers [(a).section].sh_addr + (a).offset \
6212 : (a).offset)
6213
3f5e193b
NC
6214struct ia64_unw_table_entry
6215 {
6216 struct absaddr start;
6217 struct absaddr end;
6218 struct absaddr info;
6219 };
6220
57346661 6221struct ia64_unw_aux_info
4d6ed7c8 6222 {
3f5e193b
NC
6223
6224 struct ia64_unw_table_entry *table; /* Unwind table. */
b34976b6 6225 unsigned long table_len; /* Length of unwind table. */
2cf0635d 6226 unsigned char * info; /* Unwind info. */
b34976b6
AM
6227 unsigned long info_size; /* Size of unwind info. */
6228 bfd_vma info_addr; /* starting address of unwind info. */
6229 bfd_vma seg_base; /* Starting address of segment. */
2cf0635d 6230 Elf_Internal_Sym * symtab; /* The symbol table. */
b34976b6 6231 unsigned long nsyms; /* Number of symbols. */
2cf0635d 6232 char * strtab; /* The string table. */
b34976b6 6233 unsigned long strtab_size; /* Size of string table. */
4d6ed7c8
NC
6234 };
6235
4d6ed7c8 6236static void
2cf0635d 6237find_symbol_for_address (Elf_Internal_Sym * symtab,
57346661 6238 unsigned long nsyms,
2cf0635d 6239 const char * strtab,
57346661 6240 unsigned long strtab_size,
d3ba0551 6241 struct absaddr addr,
2cf0635d
NC
6242 const char ** symname,
6243 bfd_vma * offset)
4d6ed7c8 6244{
d3ba0551 6245 bfd_vma dist = 0x100000;
2cf0635d
NC
6246 Elf_Internal_Sym * sym;
6247 Elf_Internal_Sym * best = NULL;
4d6ed7c8
NC
6248 unsigned long i;
6249
0b6ae522
DJ
6250 REMOVE_ARCH_BITS (addr.offset);
6251
57346661 6252 for (i = 0, sym = symtab; i < nsyms; ++i, ++sym)
4d6ed7c8 6253 {
0b6ae522
DJ
6254 bfd_vma value = sym->st_value;
6255
6256 REMOVE_ARCH_BITS (value);
6257
4d6ed7c8
NC
6258 if (ELF_ST_TYPE (sym->st_info) == STT_FUNC
6259 && sym->st_name != 0
6260 && (addr.section == SHN_UNDEF || addr.section == sym->st_shndx)
0b6ae522
DJ
6261 && addr.offset >= value
6262 && addr.offset - value < dist)
4d6ed7c8
NC
6263 {
6264 best = sym;
0b6ae522 6265 dist = addr.offset - value;
4d6ed7c8
NC
6266 if (!dist)
6267 break;
6268 }
6269 }
1b31d05e 6270
4d6ed7c8
NC
6271 if (best)
6272 {
57346661 6273 *symname = (best->st_name >= strtab_size
2b692964 6274 ? _("<corrupt>") : strtab + best->st_name);
4d6ed7c8
NC
6275 *offset = dist;
6276 return;
6277 }
1b31d05e 6278
4d6ed7c8
NC
6279 *symname = NULL;
6280 *offset = addr.offset;
6281}
6282
6283static void
2cf0635d 6284dump_ia64_unwind (struct ia64_unw_aux_info * aux)
4d6ed7c8 6285{
2cf0635d 6286 struct ia64_unw_table_entry * tp;
4d6ed7c8 6287 int in_body;
7036c0e1 6288
4d6ed7c8
NC
6289 for (tp = aux->table; tp < aux->table + aux->table_len; ++tp)
6290 {
6291 bfd_vma stamp;
6292 bfd_vma offset;
2cf0635d
NC
6293 const unsigned char * dp;
6294 const unsigned char * head;
6295 const char * procname;
4d6ed7c8 6296
57346661
AM
6297 find_symbol_for_address (aux->symtab, aux->nsyms, aux->strtab,
6298 aux->strtab_size, tp->start, &procname, &offset);
4d6ed7c8
NC
6299
6300 fputs ("\n<", stdout);
6301
6302 if (procname)
6303 {
6304 fputs (procname, stdout);
6305
6306 if (offset)
6307 printf ("+%lx", (unsigned long) offset);
6308 }
6309
6310 fputs (">: [", stdout);
6311 print_vma (tp->start.offset, PREFIX_HEX);
6312 fputc ('-', stdout);
6313 print_vma (tp->end.offset, PREFIX_HEX);
86f55779 6314 printf ("], info at +0x%lx\n",
4d6ed7c8
NC
6315 (unsigned long) (tp->info.offset - aux->seg_base));
6316
1949de15 6317 head = aux->info + (ABSADDR (tp->info) - aux->info_addr);
a4a00738 6318 stamp = byte_get ((unsigned char *) head, sizeof (stamp));
4d6ed7c8 6319
86f55779 6320 printf (" v%u, flags=0x%lx (%s%s), len=%lu bytes\n",
4d6ed7c8
NC
6321 (unsigned) UNW_VER (stamp),
6322 (unsigned long) ((stamp & UNW_FLAG_MASK) >> 32),
6323 UNW_FLAG_EHANDLER (stamp) ? " ehandler" : "",
6324 UNW_FLAG_UHANDLER (stamp) ? " uhandler" : "",
89fac5e3 6325 (unsigned long) (eh_addr_size * UNW_LENGTH (stamp)));
4d6ed7c8
NC
6326
6327 if (UNW_VER (stamp) != 1)
6328 {
2b692964 6329 printf (_("\tUnknown version.\n"));
4d6ed7c8
NC
6330 continue;
6331 }
6332
6333 in_body = 0;
89fac5e3 6334 for (dp = head + 8; dp < head + 8 + eh_addr_size * UNW_LENGTH (stamp);)
4d6ed7c8
NC
6335 dp = unw_decode (dp, in_body, & in_body);
6336 }
6337}
6338
6339static int
2cf0635d
NC
6340slurp_ia64_unwind_table (FILE * file,
6341 struct ia64_unw_aux_info * aux,
6342 Elf_Internal_Shdr * sec)
4d6ed7c8 6343{
89fac5e3 6344 unsigned long size, nrelas, i;
2cf0635d
NC
6345 Elf_Internal_Phdr * seg;
6346 struct ia64_unw_table_entry * tep;
6347 Elf_Internal_Shdr * relsec;
6348 Elf_Internal_Rela * rela;
6349 Elf_Internal_Rela * rp;
6350 unsigned char * table;
6351 unsigned char * tp;
6352 Elf_Internal_Sym * sym;
6353 const char * relname;
4d6ed7c8 6354
4d6ed7c8
NC
6355 /* First, find the starting address of the segment that includes
6356 this section: */
6357
6358 if (elf_header.e_phnum)
6359 {
d93f0186 6360 if (! get_program_headers (file))
4d6ed7c8 6361 return 0;
4d6ed7c8 6362
d93f0186
NC
6363 for (seg = program_headers;
6364 seg < program_headers + elf_header.e_phnum;
6365 ++seg)
4d6ed7c8
NC
6366 {
6367 if (seg->p_type != PT_LOAD)
6368 continue;
6369
6370 if (sec->sh_addr >= seg->p_vaddr
6371 && (sec->sh_addr + sec->sh_size <= seg->p_vaddr + seg->p_memsz))
6372 {
6373 aux->seg_base = seg->p_vaddr;
6374 break;
6375 }
6376 }
4d6ed7c8
NC
6377 }
6378
6379 /* Second, build the unwind table from the contents of the unwind section: */
6380 size = sec->sh_size;
3f5e193b
NC
6381 table = (unsigned char *) get_data (NULL, file, sec->sh_offset, 1, size,
6382 _("unwind table"));
a6e9f9df
AM
6383 if (!table)
6384 return 0;
4d6ed7c8 6385
3f5e193b
NC
6386 aux->table = (struct ia64_unw_table_entry *)
6387 xcmalloc (size / (3 * eh_addr_size), sizeof (aux->table[0]));
89fac5e3 6388 tep = aux->table;
c6a0c689 6389 for (tp = table; tp < table + size; ++tep)
4d6ed7c8
NC
6390 {
6391 tep->start.section = SHN_UNDEF;
6392 tep->end.section = SHN_UNDEF;
6393 tep->info.section = SHN_UNDEF;
c6a0c689
AM
6394 tep->start.offset = byte_get (tp, eh_addr_size); tp += eh_addr_size;
6395 tep->end.offset = byte_get (tp, eh_addr_size); tp += eh_addr_size;
6396 tep->info.offset = byte_get (tp, eh_addr_size); tp += eh_addr_size;
4d6ed7c8
NC
6397 tep->start.offset += aux->seg_base;
6398 tep->end.offset += aux->seg_base;
6399 tep->info.offset += aux->seg_base;
6400 }
6401 free (table);
6402
41e92641 6403 /* Third, apply any relocations to the unwind table: */
4d6ed7c8
NC
6404 for (relsec = section_headers;
6405 relsec < section_headers + elf_header.e_shnum;
6406 ++relsec)
6407 {
6408 if (relsec->sh_type != SHT_RELA
4fbb74a6
AM
6409 || relsec->sh_info >= elf_header.e_shnum
6410 || section_headers + relsec->sh_info != sec)
4d6ed7c8
NC
6411 continue;
6412
6413 if (!slurp_rela_relocs (file, relsec->sh_offset, relsec->sh_size,
6414 & rela, & nrelas))
6415 return 0;
6416
6417 for (rp = rela; rp < rela + nrelas; ++rp)
6418 {
aca88567
NC
6419 relname = elf_ia64_reloc_type (get_reloc_type (rp->r_info));
6420 sym = aux->symtab + get_reloc_symindex (rp->r_info);
4d6ed7c8 6421
0112cd26 6422 if (! const_strneq (relname, "R_IA64_SEGREL"))
4d6ed7c8 6423 {
e5fb9629 6424 warn (_("Skipping unexpected relocation type %s\n"), relname);
4d6ed7c8
NC
6425 continue;
6426 }
6427
89fac5e3 6428 i = rp->r_offset / (3 * eh_addr_size);
4d6ed7c8 6429
89fac5e3 6430 switch (rp->r_offset/eh_addr_size % 3)
4d6ed7c8
NC
6431 {
6432 case 0:
6433 aux->table[i].start.section = sym->st_shndx;
e466bc6e 6434 aux->table[i].start.offset = rp->r_addend + sym->st_value;
4d6ed7c8
NC
6435 break;
6436 case 1:
6437 aux->table[i].end.section = sym->st_shndx;
e466bc6e 6438 aux->table[i].end.offset = rp->r_addend + sym->st_value;
4d6ed7c8
NC
6439 break;
6440 case 2:
6441 aux->table[i].info.section = sym->st_shndx;
e466bc6e 6442 aux->table[i].info.offset = rp->r_addend + sym->st_value;
4d6ed7c8
NC
6443 break;
6444 default:
6445 break;
6446 }
6447 }
6448
6449 free (rela);
6450 }
6451
89fac5e3 6452 aux->table_len = size / (3 * eh_addr_size);
4d6ed7c8
NC
6453 return 1;
6454}
6455
1b31d05e 6456static void
2cf0635d 6457ia64_process_unwind (FILE * file)
4d6ed7c8 6458{
2cf0635d
NC
6459 Elf_Internal_Shdr * sec;
6460 Elf_Internal_Shdr * unwsec = NULL;
6461 Elf_Internal_Shdr * strsec;
89fac5e3 6462 unsigned long i, unwcount = 0, unwstart = 0;
57346661 6463 struct ia64_unw_aux_info aux;
f1467e33 6464
4d6ed7c8
NC
6465 memset (& aux, 0, sizeof (aux));
6466
4d6ed7c8
NC
6467 for (i = 0, sec = section_headers; i < elf_header.e_shnum; ++i, ++sec)
6468 {
c256ffe7 6469 if (sec->sh_type == SHT_SYMTAB
4fbb74a6 6470 && sec->sh_link < elf_header.e_shnum)
4d6ed7c8 6471 {
ba5cdace 6472 aux.symtab = GET_ELF_SYMBOLS (file, sec, & aux.nsyms);
4d6ed7c8 6473
4fbb74a6 6474 strsec = section_headers + sec->sh_link;
4082ef84
NC
6475 if (aux.strtab != NULL)
6476 {
6477 error (_("Multiple auxillary string tables encountered\n"));
6478 free (aux.strtab);
6479 }
3f5e193b
NC
6480 aux.strtab = (char *) get_data (NULL, file, strsec->sh_offset,
6481 1, strsec->sh_size,
6482 _("string table"));
c256ffe7 6483 aux.strtab_size = aux.strtab != NULL ? strsec->sh_size : 0;
4d6ed7c8
NC
6484 }
6485 else if (sec->sh_type == SHT_IA_64_UNWIND)
579f31ac
JJ
6486 unwcount++;
6487 }
6488
6489 if (!unwcount)
6490 printf (_("\nThere are no unwind sections in this file.\n"));
6491
6492 while (unwcount-- > 0)
6493 {
2cf0635d 6494 char * suffix;
579f31ac
JJ
6495 size_t len, len2;
6496
4082ef84 6497 for (i = unwstart, sec = section_headers + unwstart, unwsec = NULL;
579f31ac
JJ
6498 i < elf_header.e_shnum; ++i, ++sec)
6499 if (sec->sh_type == SHT_IA_64_UNWIND)
6500 {
6501 unwsec = sec;
6502 break;
6503 }
4082ef84
NC
6504 /* We have already counted the number of SHT_IA64_UNWIND
6505 sections so the loop above should never fail. */
6506 assert (unwsec != NULL);
579f31ac
JJ
6507
6508 unwstart = i + 1;
6509 len = sizeof (ELF_STRING_ia64_unwind_once) - 1;
6510
e4b17d5c
L
6511 if ((unwsec->sh_flags & SHF_GROUP) != 0)
6512 {
6513 /* We need to find which section group it is in. */
4082ef84 6514 struct group_list * g;
e4b17d5c 6515
4082ef84
NC
6516 if (section_headers_groups == NULL
6517 || section_headers_groups [i] == NULL)
6518 i = elf_header.e_shnum;
6519 else
e4b17d5c 6520 {
4082ef84 6521 g = section_headers_groups [i]->root;
18bd398b 6522
4082ef84
NC
6523 for (; g != NULL; g = g->next)
6524 {
6525 sec = section_headers + g->section_index;
e4b17d5c 6526
4082ef84
NC
6527 if (streq (SECTION_NAME (sec), ELF_STRING_ia64_unwind_info))
6528 break;
6529 }
6530
6531 if (g == NULL)
6532 i = elf_header.e_shnum;
6533 }
e4b17d5c 6534 }
18bd398b 6535 else if (strneq (SECTION_NAME (unwsec), ELF_STRING_ia64_unwind_once, len))
579f31ac 6536 {
18bd398b 6537 /* .gnu.linkonce.ia64unw.FOO -> .gnu.linkonce.ia64unwi.FOO. */
579f31ac
JJ
6538 len2 = sizeof (ELF_STRING_ia64_unwind_info_once) - 1;
6539 suffix = SECTION_NAME (unwsec) + len;
6540 for (i = 0, sec = section_headers; i < elf_header.e_shnum;
6541 ++i, ++sec)
18bd398b
NC
6542 if (strneq (SECTION_NAME (sec), ELF_STRING_ia64_unwind_info_once, len2)
6543 && streq (SECTION_NAME (sec) + len2, suffix))
579f31ac
JJ
6544 break;
6545 }
6546 else
6547 {
6548 /* .IA_64.unwindFOO -> .IA_64.unwind_infoFOO
18bd398b 6549 .IA_64.unwind or BAR -> .IA_64.unwind_info. */
579f31ac
JJ
6550 len = sizeof (ELF_STRING_ia64_unwind) - 1;
6551 len2 = sizeof (ELF_STRING_ia64_unwind_info) - 1;
6552 suffix = "";
18bd398b 6553 if (strneq (SECTION_NAME (unwsec), ELF_STRING_ia64_unwind, len))
579f31ac
JJ
6554 suffix = SECTION_NAME (unwsec) + len;
6555 for (i = 0, sec = section_headers; i < elf_header.e_shnum;
6556 ++i, ++sec)
18bd398b
NC
6557 if (strneq (SECTION_NAME (sec), ELF_STRING_ia64_unwind_info, len2)
6558 && streq (SECTION_NAME (sec) + len2, suffix))
579f31ac
JJ
6559 break;
6560 }
6561
6562 if (i == elf_header.e_shnum)
6563 {
6564 printf (_("\nCould not find unwind info section for "));
6565
6566 if (string_table == NULL)
6567 printf ("%d", unwsec->sh_name);
6568 else
74e1a04b 6569 printf ("'%s'", printable_section_name (unwsec));
579f31ac
JJ
6570 }
6571 else
4d6ed7c8 6572 {
4d6ed7c8 6573 aux.info_addr = sec->sh_addr;
3f5e193b 6574 aux.info = (unsigned char *) get_data (NULL, file, sec->sh_offset, 1,
4082ef84
NC
6575 sec->sh_size,
6576 _("unwind info"));
59245841 6577 aux.info_size = aux.info == NULL ? 0 : sec->sh_size;
4d6ed7c8 6578
579f31ac 6579 printf (_("\nUnwind section "));
4d6ed7c8 6580
579f31ac
JJ
6581 if (string_table == NULL)
6582 printf ("%d", unwsec->sh_name);
6583 else
74e1a04b 6584 printf ("'%s'", printable_section_name (unwsec));
4d6ed7c8 6585
579f31ac 6586 printf (_(" at offset 0x%lx contains %lu entries:\n"),
e59b4dfb 6587 (unsigned long) unwsec->sh_offset,
89fac5e3 6588 (unsigned long) (unwsec->sh_size / (3 * eh_addr_size)));
4d6ed7c8 6589
579f31ac 6590 (void) slurp_ia64_unwind_table (file, & aux, unwsec);
4d6ed7c8 6591
579f31ac
JJ
6592 if (aux.table_len > 0)
6593 dump_ia64_unwind (& aux);
6594
6595 if (aux.table)
6596 free ((char *) aux.table);
6597 if (aux.info)
6598 free ((char *) aux.info);
6599 aux.table = NULL;
6600 aux.info = NULL;
6601 }
4d6ed7c8 6602 }
4d6ed7c8 6603
4d6ed7c8
NC
6604 if (aux.symtab)
6605 free (aux.symtab);
6606 if (aux.strtab)
6607 free ((char *) aux.strtab);
4d6ed7c8
NC
6608}
6609
3f5e193b
NC
6610struct hppa_unw_table_entry
6611 {
6612 struct absaddr start;
6613 struct absaddr end;
6614 unsigned int Cannot_unwind:1; /* 0 */
6615 unsigned int Millicode:1; /* 1 */
6616 unsigned int Millicode_save_sr0:1; /* 2 */
6617 unsigned int Region_description:2; /* 3..4 */
6618 unsigned int reserved1:1; /* 5 */
6619 unsigned int Entry_SR:1; /* 6 */
6620 unsigned int Entry_FR:4; /* number saved */ /* 7..10 */
6621 unsigned int Entry_GR:5; /* number saved */ /* 11..15 */
6622 unsigned int Args_stored:1; /* 16 */
6623 unsigned int Variable_Frame:1; /* 17 */
6624 unsigned int Separate_Package_Body:1; /* 18 */
6625 unsigned int Frame_Extension_Millicode:1; /* 19 */
6626 unsigned int Stack_Overflow_Check:1; /* 20 */
6627 unsigned int Two_Instruction_SP_Increment:1; /* 21 */
6628 unsigned int Ada_Region:1; /* 22 */
6629 unsigned int cxx_info:1; /* 23 */
6630 unsigned int cxx_try_catch:1; /* 24 */
6631 unsigned int sched_entry_seq:1; /* 25 */
6632 unsigned int reserved2:1; /* 26 */
6633 unsigned int Save_SP:1; /* 27 */
6634 unsigned int Save_RP:1; /* 28 */
6635 unsigned int Save_MRP_in_frame:1; /* 29 */
6636 unsigned int extn_ptr_defined:1; /* 30 */
6637 unsigned int Cleanup_defined:1; /* 31 */
6638
6639 unsigned int MPE_XL_interrupt_marker:1; /* 0 */
6640 unsigned int HP_UX_interrupt_marker:1; /* 1 */
6641 unsigned int Large_frame:1; /* 2 */
6642 unsigned int Pseudo_SP_Set:1; /* 3 */
6643 unsigned int reserved4:1; /* 4 */
6644 unsigned int Total_frame_size:27; /* 5..31 */
6645 };
6646
57346661
AM
6647struct hppa_unw_aux_info
6648 {
3f5e193b 6649 struct hppa_unw_table_entry *table; /* Unwind table. */
57346661
AM
6650 unsigned long table_len; /* Length of unwind table. */
6651 bfd_vma seg_base; /* Starting address of segment. */
2cf0635d 6652 Elf_Internal_Sym * symtab; /* The symbol table. */
57346661 6653 unsigned long nsyms; /* Number of symbols. */
2cf0635d 6654 char * strtab; /* The string table. */
57346661
AM
6655 unsigned long strtab_size; /* Size of string table. */
6656 };
6657
6658static void
2cf0635d 6659dump_hppa_unwind (struct hppa_unw_aux_info * aux)
57346661 6660{
2cf0635d 6661 struct hppa_unw_table_entry * tp;
57346661 6662
57346661
AM
6663 for (tp = aux->table; tp < aux->table + aux->table_len; ++tp)
6664 {
6665 bfd_vma offset;
2cf0635d 6666 const char * procname;
57346661
AM
6667
6668 find_symbol_for_address (aux->symtab, aux->nsyms, aux->strtab,
6669 aux->strtab_size, tp->start, &procname,
6670 &offset);
6671
6672 fputs ("\n<", stdout);
6673
6674 if (procname)
6675 {
6676 fputs (procname, stdout);
6677
6678 if (offset)
6679 printf ("+%lx", (unsigned long) offset);
6680 }
6681
6682 fputs (">: [", stdout);
6683 print_vma (tp->start.offset, PREFIX_HEX);
6684 fputc ('-', stdout);
6685 print_vma (tp->end.offset, PREFIX_HEX);
6686 printf ("]\n\t");
6687
18bd398b
NC
6688#define PF(_m) if (tp->_m) printf (#_m " ");
6689#define PV(_m) if (tp->_m) printf (#_m "=%d ", tp->_m);
57346661
AM
6690 PF(Cannot_unwind);
6691 PF(Millicode);
6692 PF(Millicode_save_sr0);
18bd398b 6693 /* PV(Region_description); */
57346661
AM
6694 PF(Entry_SR);
6695 PV(Entry_FR);
6696 PV(Entry_GR);
6697 PF(Args_stored);
6698 PF(Variable_Frame);
6699 PF(Separate_Package_Body);
6700 PF(Frame_Extension_Millicode);
6701 PF(Stack_Overflow_Check);
6702 PF(Two_Instruction_SP_Increment);
6703 PF(Ada_Region);
6704 PF(cxx_info);
6705 PF(cxx_try_catch);
6706 PF(sched_entry_seq);
6707 PF(Save_SP);
6708 PF(Save_RP);
6709 PF(Save_MRP_in_frame);
6710 PF(extn_ptr_defined);
6711 PF(Cleanup_defined);
6712 PF(MPE_XL_interrupt_marker);
6713 PF(HP_UX_interrupt_marker);
6714 PF(Large_frame);
6715 PF(Pseudo_SP_Set);
6716 PV(Total_frame_size);
6717#undef PF
6718#undef PV
6719 }
6720
18bd398b 6721 printf ("\n");
57346661
AM
6722}
6723
6724static int
2cf0635d
NC
6725slurp_hppa_unwind_table (FILE * file,
6726 struct hppa_unw_aux_info * aux,
6727 Elf_Internal_Shdr * sec)
57346661 6728{
1c0751b2 6729 unsigned long size, unw_ent_size, nentries, nrelas, i;
2cf0635d
NC
6730 Elf_Internal_Phdr * seg;
6731 struct hppa_unw_table_entry * tep;
6732 Elf_Internal_Shdr * relsec;
6733 Elf_Internal_Rela * rela;
6734 Elf_Internal_Rela * rp;
6735 unsigned char * table;
6736 unsigned char * tp;
6737 Elf_Internal_Sym * sym;
6738 const char * relname;
57346661 6739
57346661
AM
6740 /* First, find the starting address of the segment that includes
6741 this section. */
6742
6743 if (elf_header.e_phnum)
6744 {
6745 if (! get_program_headers (file))
6746 return 0;
6747
6748 for (seg = program_headers;
6749 seg < program_headers + elf_header.e_phnum;
6750 ++seg)
6751 {
6752 if (seg->p_type != PT_LOAD)
6753 continue;
6754
6755 if (sec->sh_addr >= seg->p_vaddr
6756 && (sec->sh_addr + sec->sh_size <= seg->p_vaddr + seg->p_memsz))
6757 {
6758 aux->seg_base = seg->p_vaddr;
6759 break;
6760 }
6761 }
6762 }
6763
6764 /* Second, build the unwind table from the contents of the unwind
6765 section. */
6766 size = sec->sh_size;
3f5e193b
NC
6767 table = (unsigned char *) get_data (NULL, file, sec->sh_offset, 1, size,
6768 _("unwind table"));
57346661
AM
6769 if (!table)
6770 return 0;
6771
1c0751b2
DA
6772 unw_ent_size = 16;
6773 nentries = size / unw_ent_size;
6774 size = unw_ent_size * nentries;
57346661 6775
3f5e193b
NC
6776 tep = aux->table = (struct hppa_unw_table_entry *)
6777 xcmalloc (nentries, sizeof (aux->table[0]));
57346661 6778
1c0751b2 6779 for (tp = table; tp < table + size; tp += unw_ent_size, ++tep)
57346661
AM
6780 {
6781 unsigned int tmp1, tmp2;
6782
6783 tep->start.section = SHN_UNDEF;
6784 tep->end.section = SHN_UNDEF;
6785
1c0751b2
DA
6786 tep->start.offset = byte_get ((unsigned char *) tp + 0, 4);
6787 tep->end.offset = byte_get ((unsigned char *) tp + 4, 4);
6788 tmp1 = byte_get ((unsigned char *) tp + 8, 4);
6789 tmp2 = byte_get ((unsigned char *) tp + 12, 4);
6790
6791 tep->start.offset += aux->seg_base;
6792 tep->end.offset += aux->seg_base;
57346661
AM
6793
6794 tep->Cannot_unwind = (tmp1 >> 31) & 0x1;
6795 tep->Millicode = (tmp1 >> 30) & 0x1;
6796 tep->Millicode_save_sr0 = (tmp1 >> 29) & 0x1;
6797 tep->Region_description = (tmp1 >> 27) & 0x3;
6798 tep->reserved1 = (tmp1 >> 26) & 0x1;
6799 tep->Entry_SR = (tmp1 >> 25) & 0x1;
6800 tep->Entry_FR = (tmp1 >> 21) & 0xf;
6801 tep->Entry_GR = (tmp1 >> 16) & 0x1f;
6802 tep->Args_stored = (tmp1 >> 15) & 0x1;
6803 tep->Variable_Frame = (tmp1 >> 14) & 0x1;
6804 tep->Separate_Package_Body = (tmp1 >> 13) & 0x1;
6805 tep->Frame_Extension_Millicode = (tmp1 >> 12) & 0x1;
6806 tep->Stack_Overflow_Check = (tmp1 >> 11) & 0x1;
6807 tep->Two_Instruction_SP_Increment = (tmp1 >> 10) & 0x1;
6808 tep->Ada_Region = (tmp1 >> 9) & 0x1;
6809 tep->cxx_info = (tmp1 >> 8) & 0x1;
6810 tep->cxx_try_catch = (tmp1 >> 7) & 0x1;
6811 tep->sched_entry_seq = (tmp1 >> 6) & 0x1;
6812 tep->reserved2 = (tmp1 >> 5) & 0x1;
6813 tep->Save_SP = (tmp1 >> 4) & 0x1;
6814 tep->Save_RP = (tmp1 >> 3) & 0x1;
6815 tep->Save_MRP_in_frame = (tmp1 >> 2) & 0x1;
6816 tep->extn_ptr_defined = (tmp1 >> 1) & 0x1;
6817 tep->Cleanup_defined = tmp1 & 0x1;
6818
6819 tep->MPE_XL_interrupt_marker = (tmp2 >> 31) & 0x1;
6820 tep->HP_UX_interrupt_marker = (tmp2 >> 30) & 0x1;
6821 tep->Large_frame = (tmp2 >> 29) & 0x1;
6822 tep->Pseudo_SP_Set = (tmp2 >> 28) & 0x1;
6823 tep->reserved4 = (tmp2 >> 27) & 0x1;
6824 tep->Total_frame_size = tmp2 & 0x7ffffff;
57346661
AM
6825 }
6826 free (table);
6827
6828 /* Third, apply any relocations to the unwind table. */
57346661
AM
6829 for (relsec = section_headers;
6830 relsec < section_headers + elf_header.e_shnum;
6831 ++relsec)
6832 {
6833 if (relsec->sh_type != SHT_RELA
4fbb74a6
AM
6834 || relsec->sh_info >= elf_header.e_shnum
6835 || section_headers + relsec->sh_info != sec)
57346661
AM
6836 continue;
6837
6838 if (!slurp_rela_relocs (file, relsec->sh_offset, relsec->sh_size,
6839 & rela, & nrelas))
6840 return 0;
6841
6842 for (rp = rela; rp < rela + nrelas; ++rp)
6843 {
aca88567
NC
6844 relname = elf_hppa_reloc_type (get_reloc_type (rp->r_info));
6845 sym = aux->symtab + get_reloc_symindex (rp->r_info);
57346661
AM
6846
6847 /* R_PARISC_SEGREL32 or R_PARISC_SEGREL64. */
0112cd26 6848 if (! const_strneq (relname, "R_PARISC_SEGREL"))
57346661
AM
6849 {
6850 warn (_("Skipping unexpected relocation type %s\n"), relname);
6851 continue;
6852 }
6853
6854 i = rp->r_offset / unw_ent_size;
6855
89fac5e3 6856 switch ((rp->r_offset % unw_ent_size) / eh_addr_size)
57346661
AM
6857 {
6858 case 0:
6859 aux->table[i].start.section = sym->st_shndx;
1e456d54 6860 aux->table[i].start.offset = sym->st_value + rp->r_addend;
57346661
AM
6861 break;
6862 case 1:
6863 aux->table[i].end.section = sym->st_shndx;
1e456d54 6864 aux->table[i].end.offset = sym->st_value + rp->r_addend;
57346661
AM
6865 break;
6866 default:
6867 break;
6868 }
6869 }
6870
6871 free (rela);
6872 }
6873
1c0751b2 6874 aux->table_len = nentries;
57346661
AM
6875
6876 return 1;
6877}
6878
1b31d05e 6879static void
2cf0635d 6880hppa_process_unwind (FILE * file)
57346661 6881{
57346661 6882 struct hppa_unw_aux_info aux;
2cf0635d
NC
6883 Elf_Internal_Shdr * unwsec = NULL;
6884 Elf_Internal_Shdr * strsec;
6885 Elf_Internal_Shdr * sec;
18bd398b 6886 unsigned long i;
57346661 6887
c256ffe7 6888 if (string_table == NULL)
1b31d05e
NC
6889 return;
6890
6891 memset (& aux, 0, sizeof (aux));
57346661
AM
6892
6893 for (i = 0, sec = section_headers; i < elf_header.e_shnum; ++i, ++sec)
6894 {
c256ffe7 6895 if (sec->sh_type == SHT_SYMTAB
4fbb74a6 6896 && sec->sh_link < elf_header.e_shnum)
57346661 6897 {
ba5cdace 6898 aux.symtab = GET_ELF_SYMBOLS (file, sec, & aux.nsyms);
57346661 6899
4fbb74a6 6900 strsec = section_headers + sec->sh_link;
4082ef84
NC
6901 if (aux.strtab != NULL)
6902 {
6903 error (_("Multiple auxillary string tables encountered\n"));
6904 free (aux.strtab);
6905 }
3f5e193b
NC
6906 aux.strtab = (char *) get_data (NULL, file, strsec->sh_offset,
6907 1, strsec->sh_size,
6908 _("string table"));
c256ffe7 6909 aux.strtab_size = aux.strtab != NULL ? strsec->sh_size : 0;
57346661 6910 }
18bd398b 6911 else if (streq (SECTION_NAME (sec), ".PARISC.unwind"))
57346661
AM
6912 unwsec = sec;
6913 }
6914
6915 if (!unwsec)
6916 printf (_("\nThere are no unwind sections in this file.\n"));
6917
6918 for (i = 0, sec = section_headers; i < elf_header.e_shnum; ++i, ++sec)
6919 {
18bd398b 6920 if (streq (SECTION_NAME (sec), ".PARISC.unwind"))
57346661 6921 {
74e1a04b
NC
6922 printf (_("\nUnwind section '%s' at offset 0x%lx contains %lu entries:\n"),
6923 printable_section_name (sec),
57346661 6924 (unsigned long) sec->sh_offset,
89fac5e3 6925 (unsigned long) (sec->sh_size / (2 * eh_addr_size + 8)));
57346661
AM
6926
6927 slurp_hppa_unwind_table (file, &aux, sec);
6928 if (aux.table_len > 0)
6929 dump_hppa_unwind (&aux);
6930
6931 if (aux.table)
6932 free ((char *) aux.table);
6933 aux.table = NULL;
6934 }
6935 }
6936
6937 if (aux.symtab)
6938 free (aux.symtab);
6939 if (aux.strtab)
6940 free ((char *) aux.strtab);
57346661
AM
6941}
6942
0b6ae522
DJ
6943struct arm_section
6944{
a734115a
NC
6945 unsigned char * data; /* The unwind data. */
6946 Elf_Internal_Shdr * sec; /* The cached unwind section header. */
6947 Elf_Internal_Rela * rela; /* The cached relocations for this section. */
6948 unsigned long nrelas; /* The number of relocations. */
6949 unsigned int rel_type; /* REL or RELA ? */
6950 Elf_Internal_Rela * next_rela; /* Cyclic pointer to the next reloc to process. */
0b6ae522
DJ
6951};
6952
6953struct arm_unw_aux_info
6954{
a734115a
NC
6955 FILE * file; /* The file containing the unwind sections. */
6956 Elf_Internal_Sym * symtab; /* The file's symbol table. */
6957 unsigned long nsyms; /* Number of symbols. */
6958 char * strtab; /* The file's string table. */
6959 unsigned long strtab_size; /* Size of string table. */
0b6ae522
DJ
6960};
6961
6962static const char *
6963arm_print_vma_and_name (struct arm_unw_aux_info *aux,
6964 bfd_vma fn, struct absaddr addr)
6965{
6966 const char *procname;
6967 bfd_vma sym_offset;
6968
6969 if (addr.section == SHN_UNDEF)
6970 addr.offset = fn;
6971
6972 find_symbol_for_address (aux->symtab, aux->nsyms, aux->strtab,
6973 aux->strtab_size, addr, &procname,
6974 &sym_offset);
6975
6976 print_vma (fn, PREFIX_HEX);
6977
6978 if (procname)
6979 {
6980 fputs (" <", stdout);
6981 fputs (procname, stdout);
6982
6983 if (sym_offset)
6984 printf ("+0x%lx", (unsigned long) sym_offset);
6985 fputc ('>', stdout);
6986 }
6987
6988 return procname;
6989}
6990
6991static void
6992arm_free_section (struct arm_section *arm_sec)
6993{
6994 if (arm_sec->data != NULL)
6995 free (arm_sec->data);
6996
6997 if (arm_sec->rela != NULL)
6998 free (arm_sec->rela);
6999}
7000
a734115a
NC
7001/* 1) If SEC does not match the one cached in ARM_SEC, then free the current
7002 cached section and install SEC instead.
7003 2) Locate the 32-bit word at WORD_OFFSET in unwind section SEC
7004 and return its valued in * WORDP, relocating if necessary.
1b31d05e 7005 3) Update the NEXT_RELA field in ARM_SEC and store the section index and
a734115a 7006 relocation's offset in ADDR.
1b31d05e
NC
7007 4) If SYM_NAME is non-NULL and a relocation was applied, record the offset
7008 into the string table of the symbol associated with the reloc. If no
7009 reloc was applied store -1 there.
7010 5) Return TRUE upon success, FALSE otherwise. */
a734115a
NC
7011
7012static bfd_boolean
1b31d05e
NC
7013get_unwind_section_word (struct arm_unw_aux_info * aux,
7014 struct arm_section * arm_sec,
7015 Elf_Internal_Shdr * sec,
7016 bfd_vma word_offset,
7017 unsigned int * wordp,
7018 struct absaddr * addr,
7019 bfd_vma * sym_name)
0b6ae522
DJ
7020{
7021 Elf_Internal_Rela *rp;
7022 Elf_Internal_Sym *sym;
7023 const char * relname;
7024 unsigned int word;
7025 bfd_boolean wrapped;
7026
e0a31db1
NC
7027 if (sec == NULL || arm_sec == NULL)
7028 return FALSE;
7029
0b6ae522
DJ
7030 addr->section = SHN_UNDEF;
7031 addr->offset = 0;
7032
1b31d05e
NC
7033 if (sym_name != NULL)
7034 *sym_name = (bfd_vma) -1;
7035
a734115a 7036 /* If necessary, update the section cache. */
0b6ae522
DJ
7037 if (sec != arm_sec->sec)
7038 {
7039 Elf_Internal_Shdr *relsec;
7040
7041 arm_free_section (arm_sec);
7042
7043 arm_sec->sec = sec;
7044 arm_sec->data = get_data (NULL, aux->file, sec->sh_offset, 1,
7045 sec->sh_size, _("unwind data"));
0b6ae522
DJ
7046 arm_sec->rela = NULL;
7047 arm_sec->nrelas = 0;
7048
7049 for (relsec = section_headers;
7050 relsec < section_headers + elf_header.e_shnum;
7051 ++relsec)
7052 {
7053 if (relsec->sh_info >= elf_header.e_shnum
1ae40aa4
NC
7054 || section_headers + relsec->sh_info != sec
7055 /* PR 15745: Check the section type as well. */
7056 || (relsec->sh_type != SHT_REL
7057 && relsec->sh_type != SHT_RELA))
0b6ae522
DJ
7058 continue;
7059
a734115a 7060 arm_sec->rel_type = relsec->sh_type;
0b6ae522
DJ
7061 if (relsec->sh_type == SHT_REL)
7062 {
7063 if (!slurp_rel_relocs (aux->file, relsec->sh_offset,
7064 relsec->sh_size,
7065 & arm_sec->rela, & arm_sec->nrelas))
a734115a 7066 return FALSE;
0b6ae522 7067 }
1ae40aa4 7068 else /* relsec->sh_type == SHT_RELA */
0b6ae522
DJ
7069 {
7070 if (!slurp_rela_relocs (aux->file, relsec->sh_offset,
7071 relsec->sh_size,
7072 & arm_sec->rela, & arm_sec->nrelas))
a734115a 7073 return FALSE;
0b6ae522 7074 }
1ae40aa4 7075 break;
0b6ae522
DJ
7076 }
7077
7078 arm_sec->next_rela = arm_sec->rela;
7079 }
7080
a734115a 7081 /* If there is no unwind data we can do nothing. */
0b6ae522 7082 if (arm_sec->data == NULL)
a734115a 7083 return FALSE;
0b6ae522 7084
e0a31db1
NC
7085 /* If the offset is invalid then fail. */
7086 if (word_offset > sec->sh_size - 4)
7087 return FALSE;
7088
a734115a 7089 /* Get the word at the required offset. */
0b6ae522
DJ
7090 word = byte_get (arm_sec->data + word_offset, 4);
7091
a734115a 7092 /* Look through the relocs to find the one that applies to the provided offset. */
0b6ae522
DJ
7093 wrapped = FALSE;
7094 for (rp = arm_sec->next_rela; rp != arm_sec->rela + arm_sec->nrelas; rp++)
7095 {
7096 bfd_vma prelval, offset;
7097
7098 if (rp->r_offset > word_offset && !wrapped)
7099 {
7100 rp = arm_sec->rela;
7101 wrapped = TRUE;
7102 }
7103 if (rp->r_offset > word_offset)
7104 break;
7105
7106 if (rp->r_offset & 3)
7107 {
7108 warn (_("Skipping unexpected relocation at offset 0x%lx\n"),
7109 (unsigned long) rp->r_offset);
7110 continue;
7111 }
7112
7113 if (rp->r_offset < word_offset)
7114 continue;
7115
74e1a04b
NC
7116 /* PR 17531: file: 027-161405-0.004 */
7117 if (aux->symtab == NULL)
7118 continue;
7119
0b6ae522
DJ
7120 if (arm_sec->rel_type == SHT_REL)
7121 {
7122 offset = word & 0x7fffffff;
7123 if (offset & 0x40000000)
7124 offset |= ~ (bfd_vma) 0x7fffffff;
7125 }
a734115a 7126 else if (arm_sec->rel_type == SHT_RELA)
0b6ae522 7127 offset = rp->r_addend;
a734115a 7128 else
74e1a04b
NC
7129 {
7130 error (_("Unknown section relocation type %d encountered\n"),
7131 arm_sec->rel_type);
7132 break;
7133 }
0b6ae522 7134
071436c6
NC
7135 /* PR 17531 file: 027-1241568-0.004. */
7136 if (ELF32_R_SYM (rp->r_info) >= aux->nsyms)
7137 {
7138 error (_("Bad symbol index in unwind relocation (%lu > %lu)\n"),
7139 (unsigned long) ELF32_R_SYM (rp->r_info), aux->nsyms);
7140 break;
7141 }
7142
7143 sym = aux->symtab + ELF32_R_SYM (rp->r_info);
0b6ae522
DJ
7144 offset += sym->st_value;
7145 prelval = offset - (arm_sec->sec->sh_addr + rp->r_offset);
7146
a734115a
NC
7147 /* Check that we are processing the expected reloc type. */
7148 if (elf_header.e_machine == EM_ARM)
7149 {
7150 relname = elf_arm_reloc_type (ELF32_R_TYPE (rp->r_info));
071436c6
NC
7151 if (relname == NULL)
7152 {
7153 warn (_("Skipping unknown ARM relocation type: %d\n"),
7154 (int) ELF32_R_TYPE (rp->r_info));
7155 continue;
7156 }
a734115a
NC
7157
7158 if (streq (relname, "R_ARM_NONE"))
7159 continue;
0b4362b0 7160
a734115a
NC
7161 if (! streq (relname, "R_ARM_PREL31"))
7162 {
071436c6 7163 warn (_("Skipping unexpected ARM relocation type %s\n"), relname);
a734115a
NC
7164 continue;
7165 }
7166 }
7167 else if (elf_header.e_machine == EM_TI_C6000)
7168 {
7169 relname = elf_tic6x_reloc_type (ELF32_R_TYPE (rp->r_info));
071436c6
NC
7170 if (relname == NULL)
7171 {
7172 warn (_("Skipping unknown C6000 relocation type: %d\n"),
7173 (int) ELF32_R_TYPE (rp->r_info));
7174 continue;
7175 }
0b4362b0 7176
a734115a
NC
7177 if (streq (relname, "R_C6000_NONE"))
7178 continue;
7179
7180 if (! streq (relname, "R_C6000_PREL31"))
7181 {
071436c6 7182 warn (_("Skipping unexpected C6000 relocation type %s\n"), relname);
a734115a
NC
7183 continue;
7184 }
7185
7186 prelval >>= 1;
7187 }
7188 else
74e1a04b
NC
7189 {
7190 /* This function currently only supports ARM and TI unwinders. */
7191 warn (_("Only TI and ARM unwinders are currently supported\n"));
7192 break;
7193 }
fa197c1c 7194
0b6ae522
DJ
7195 word = (word & ~ (bfd_vma) 0x7fffffff) | (prelval & 0x7fffffff);
7196 addr->section = sym->st_shndx;
7197 addr->offset = offset;
74e1a04b 7198
1b31d05e
NC
7199 if (sym_name)
7200 * sym_name = sym->st_name;
0b6ae522
DJ
7201 break;
7202 }
7203
7204 *wordp = word;
7205 arm_sec->next_rela = rp;
7206
a734115a 7207 return TRUE;
0b6ae522
DJ
7208}
7209
a734115a
NC
7210static const char *tic6x_unwind_regnames[16] =
7211{
0b4362b0
RM
7212 "A15", "B15", "B14", "B13", "B12", "B11", "B10", "B3",
7213 "A14", "A13", "A12", "A11", "A10",
a734115a
NC
7214 "[invalid reg 13]", "[invalid reg 14]", "[invalid reg 15]"
7215};
fa197c1c 7216
0b6ae522 7217static void
fa197c1c 7218decode_tic6x_unwind_regmask (unsigned int mask)
0b6ae522 7219{
fa197c1c
PB
7220 int i;
7221
7222 for (i = 12; mask; mask >>= 1, i--)
7223 {
7224 if (mask & 1)
7225 {
7226 fputs (tic6x_unwind_regnames[i], stdout);
7227 if (mask > 1)
7228 fputs (", ", stdout);
7229 }
7230 }
7231}
0b6ae522
DJ
7232
7233#define ADVANCE \
7234 if (remaining == 0 && more_words) \
7235 { \
7236 data_offset += 4; \
1b31d05e
NC
7237 if (! get_unwind_section_word (aux, data_arm_sec, data_sec, \
7238 data_offset, & word, & addr, NULL)) \
0b6ae522
DJ
7239 return; \
7240 remaining = 4; \
7241 more_words--; \
7242 } \
7243
7244#define GET_OP(OP) \
7245 ADVANCE; \
7246 if (remaining) \
7247 { \
7248 remaining--; \
7249 (OP) = word >> 24; \
7250 word <<= 8; \
7251 } \
7252 else \
7253 { \
2b692964 7254 printf (_("[Truncated opcode]\n")); \
0b6ae522
DJ
7255 return; \
7256 } \
cc5914eb 7257 printf ("0x%02x ", OP)
0b6ae522 7258
fa197c1c
PB
7259static void
7260decode_arm_unwind_bytecode (struct arm_unw_aux_info *aux,
7261 unsigned int word, unsigned int remaining,
7262 unsigned int more_words,
7263 bfd_vma data_offset, Elf_Internal_Shdr *data_sec,
7264 struct arm_section *data_arm_sec)
7265{
7266 struct absaddr addr;
0b6ae522
DJ
7267
7268 /* Decode the unwinding instructions. */
7269 while (1)
7270 {
7271 unsigned int op, op2;
7272
7273 ADVANCE;
7274 if (remaining == 0)
7275 break;
7276 remaining--;
7277 op = word >> 24;
7278 word <<= 8;
7279
cc5914eb 7280 printf (" 0x%02x ", op);
0b6ae522
DJ
7281
7282 if ((op & 0xc0) == 0x00)
7283 {
7284 int offset = ((op & 0x3f) << 2) + 4;
61865e30 7285
cc5914eb 7286 printf (" vsp = vsp + %d", offset);
0b6ae522
DJ
7287 }
7288 else if ((op & 0xc0) == 0x40)
7289 {
7290 int offset = ((op & 0x3f) << 2) + 4;
61865e30 7291
cc5914eb 7292 printf (" vsp = vsp - %d", offset);
0b6ae522
DJ
7293 }
7294 else if ((op & 0xf0) == 0x80)
7295 {
7296 GET_OP (op2);
7297 if (op == 0x80 && op2 == 0)
7298 printf (_("Refuse to unwind"));
7299 else
7300 {
7301 unsigned int mask = ((op & 0x0f) << 8) | op2;
7302 int first = 1;
7303 int i;
2b692964 7304
0b6ae522
DJ
7305 printf ("pop {");
7306 for (i = 0; i < 12; i++)
7307 if (mask & (1 << i))
7308 {
7309 if (first)
7310 first = 0;
7311 else
7312 printf (", ");
7313 printf ("r%d", 4 + i);
7314 }
7315 printf ("}");
7316 }
7317 }
7318 else if ((op & 0xf0) == 0x90)
7319 {
7320 if (op == 0x9d || op == 0x9f)
7321 printf (_(" [Reserved]"));
7322 else
cc5914eb 7323 printf (" vsp = r%d", op & 0x0f);
0b6ae522
DJ
7324 }
7325 else if ((op & 0xf0) == 0xa0)
7326 {
7327 int end = 4 + (op & 0x07);
7328 int first = 1;
7329 int i;
61865e30 7330
0b6ae522
DJ
7331 printf (" pop {");
7332 for (i = 4; i <= end; i++)
7333 {
7334 if (first)
7335 first = 0;
7336 else
7337 printf (", ");
7338 printf ("r%d", i);
7339 }
7340 if (op & 0x08)
7341 {
1b31d05e 7342 if (!first)
0b6ae522
DJ
7343 printf (", ");
7344 printf ("r14");
7345 }
7346 printf ("}");
7347 }
7348 else if (op == 0xb0)
7349 printf (_(" finish"));
7350 else if (op == 0xb1)
7351 {
7352 GET_OP (op2);
7353 if (op2 == 0 || (op2 & 0xf0) != 0)
7354 printf (_("[Spare]"));
7355 else
7356 {
7357 unsigned int mask = op2 & 0x0f;
7358 int first = 1;
7359 int i;
61865e30 7360
0b6ae522
DJ
7361 printf ("pop {");
7362 for (i = 0; i < 12; i++)
7363 if (mask & (1 << i))
7364 {
7365 if (first)
7366 first = 0;
7367 else
7368 printf (", ");
7369 printf ("r%d", i);
7370 }
7371 printf ("}");
7372 }
7373 }
7374 else if (op == 0xb2)
7375 {
b115cf96 7376 unsigned char buf[9];
0b6ae522
DJ
7377 unsigned int i, len;
7378 unsigned long offset;
61865e30 7379
b115cf96 7380 for (i = 0; i < sizeof (buf); i++)
0b6ae522
DJ
7381 {
7382 GET_OP (buf[i]);
7383 if ((buf[i] & 0x80) == 0)
7384 break;
7385 }
4082ef84
NC
7386 if (i == sizeof (buf))
7387 printf (_("corrupt change to vsp"));
7388 else
7389 {
7390 offset = read_uleb128 (buf, &len, buf + i + 1);
7391 assert (len == i + 1);
7392 offset = offset * 4 + 0x204;
7393 printf ("vsp = vsp + %ld", offset);
7394 }
0b6ae522 7395 }
61865e30 7396 else if (op == 0xb3 || op == 0xc8 || op == 0xc9)
0b6ae522 7397 {
61865e30
NC
7398 unsigned int first, last;
7399
7400 GET_OP (op2);
7401 first = op2 >> 4;
7402 last = op2 & 0x0f;
7403 if (op == 0xc8)
7404 first = first + 16;
7405 printf ("pop {D%d", first);
7406 if (last)
7407 printf ("-D%d", first + last);
7408 printf ("}");
7409 }
7410 else if ((op & 0xf8) == 0xb8 || (op & 0xf8) == 0xd0)
7411 {
7412 unsigned int count = op & 0x07;
7413
7414 printf ("pop {D8");
7415 if (count)
7416 printf ("-D%d", 8 + count);
7417 printf ("}");
7418 }
7419 else if (op >= 0xc0 && op <= 0xc5)
7420 {
7421 unsigned int count = op & 0x07;
7422
7423 printf (" pop {wR10");
7424 if (count)
7425 printf ("-wR%d", 10 + count);
7426 printf ("}");
7427 }
7428 else if (op == 0xc6)
7429 {
7430 unsigned int first, last;
7431
7432 GET_OP (op2);
7433 first = op2 >> 4;
7434 last = op2 & 0x0f;
7435 printf ("pop {wR%d", first);
7436 if (last)
7437 printf ("-wR%d", first + last);
7438 printf ("}");
7439 }
7440 else if (op == 0xc7)
7441 {
7442 GET_OP (op2);
7443 if (op2 == 0 || (op2 & 0xf0) != 0)
7444 printf (_("[Spare]"));
0b6ae522
DJ
7445 else
7446 {
61865e30
NC
7447 unsigned int mask = op2 & 0x0f;
7448 int first = 1;
7449 int i;
7450
7451 printf ("pop {");
7452 for (i = 0; i < 4; i++)
7453 if (mask & (1 << i))
7454 {
7455 if (first)
7456 first = 0;
7457 else
7458 printf (", ");
7459 printf ("wCGR%d", i);
7460 }
7461 printf ("}");
0b6ae522
DJ
7462 }
7463 }
61865e30
NC
7464 else
7465 printf (_(" [unsupported opcode]"));
0b6ae522
DJ
7466 printf ("\n");
7467 }
fa197c1c
PB
7468}
7469
7470static void
7471decode_tic6x_unwind_bytecode (struct arm_unw_aux_info *aux,
7472 unsigned int word, unsigned int remaining,
7473 unsigned int more_words,
7474 bfd_vma data_offset, Elf_Internal_Shdr *data_sec,
7475 struct arm_section *data_arm_sec)
7476{
7477 struct absaddr addr;
7478
7479 /* Decode the unwinding instructions. */
7480 while (1)
7481 {
7482 unsigned int op, op2;
7483
7484 ADVANCE;
7485 if (remaining == 0)
7486 break;
7487 remaining--;
7488 op = word >> 24;
7489 word <<= 8;
7490
9cf03b7e 7491 printf (" 0x%02x ", op);
fa197c1c
PB
7492
7493 if ((op & 0xc0) == 0x00)
7494 {
7495 int offset = ((op & 0x3f) << 3) + 8;
9cf03b7e 7496 printf (" sp = sp + %d", offset);
fa197c1c
PB
7497 }
7498 else if ((op & 0xc0) == 0x80)
7499 {
7500 GET_OP (op2);
7501 if (op == 0x80 && op2 == 0)
7502 printf (_("Refuse to unwind"));
7503 else
7504 {
7505 unsigned int mask = ((op & 0x1f) << 8) | op2;
7506 if (op & 0x20)
7507 printf ("pop compact {");
7508 else
7509 printf ("pop {");
7510
7511 decode_tic6x_unwind_regmask (mask);
7512 printf("}");
7513 }
7514 }
7515 else if ((op & 0xf0) == 0xc0)
7516 {
7517 unsigned int reg;
7518 unsigned int nregs;
7519 unsigned int i;
7520 const char *name;
a734115a
NC
7521 struct
7522 {
fa197c1c
PB
7523 unsigned int offset;
7524 unsigned int reg;
7525 } regpos[16];
7526
7527 /* Scan entire instruction first so that GET_OP output is not
7528 interleaved with disassembly. */
7529 nregs = 0;
7530 for (i = 0; nregs < (op & 0xf); i++)
7531 {
7532 GET_OP (op2);
7533 reg = op2 >> 4;
7534 if (reg != 0xf)
7535 {
7536 regpos[nregs].offset = i * 2;
7537 regpos[nregs].reg = reg;
7538 nregs++;
7539 }
7540
7541 reg = op2 & 0xf;
7542 if (reg != 0xf)
7543 {
7544 regpos[nregs].offset = i * 2 + 1;
7545 regpos[nregs].reg = reg;
7546 nregs++;
7547 }
7548 }
7549
7550 printf (_("pop frame {"));
7551 reg = nregs - 1;
7552 for (i = i * 2; i > 0; i--)
7553 {
7554 if (regpos[reg].offset == i - 1)
7555 {
7556 name = tic6x_unwind_regnames[regpos[reg].reg];
7557 if (reg > 0)
7558 reg--;
7559 }
7560 else
7561 name = _("[pad]");
7562
7563 fputs (name, stdout);
7564 if (i > 1)
7565 printf (", ");
7566 }
7567
7568 printf ("}");
7569 }
7570 else if (op == 0xd0)
7571 printf (" MOV FP, SP");
7572 else if (op == 0xd1)
7573 printf (" __c6xabi_pop_rts");
7574 else if (op == 0xd2)
7575 {
7576 unsigned char buf[9];
7577 unsigned int i, len;
7578 unsigned long offset;
a734115a 7579
fa197c1c
PB
7580 for (i = 0; i < sizeof (buf); i++)
7581 {
7582 GET_OP (buf[i]);
7583 if ((buf[i] & 0x80) == 0)
7584 break;
7585 }
7586 assert (i < sizeof (buf));
f6f0e17b 7587 offset = read_uleb128 (buf, &len, buf + i + 1);
fa197c1c
PB
7588 assert (len == i + 1);
7589 offset = offset * 8 + 0x408;
7590 printf (_("sp = sp + %ld"), offset);
7591 }
7592 else if ((op & 0xf0) == 0xe0)
7593 {
7594 if ((op & 0x0f) == 7)
7595 printf (" RETURN");
7596 else
7597 printf (" MV %s, B3", tic6x_unwind_regnames[op & 0x0f]);
7598 }
7599 else
7600 {
7601 printf (_(" [unsupported opcode]"));
7602 }
7603 putchar ('\n');
7604 }
7605}
7606
7607static bfd_vma
a734115a 7608arm_expand_prel31 (bfd_vma word, bfd_vma where)
fa197c1c
PB
7609{
7610 bfd_vma offset;
7611
7612 offset = word & 0x7fffffff;
7613 if (offset & 0x40000000)
7614 offset |= ~ (bfd_vma) 0x7fffffff;
7615
7616 if (elf_header.e_machine == EM_TI_C6000)
7617 offset <<= 1;
7618
7619 return offset + where;
7620}
7621
7622static void
1b31d05e
NC
7623decode_arm_unwind (struct arm_unw_aux_info * aux,
7624 unsigned int word,
7625 unsigned int remaining,
7626 bfd_vma data_offset,
7627 Elf_Internal_Shdr * data_sec,
7628 struct arm_section * data_arm_sec)
fa197c1c
PB
7629{
7630 int per_index;
7631 unsigned int more_words = 0;
37e14bc3 7632 struct absaddr addr;
1b31d05e 7633 bfd_vma sym_name = (bfd_vma) -1;
fa197c1c
PB
7634
7635 if (remaining == 0)
7636 {
1b31d05e
NC
7637 /* Fetch the first word.
7638 Note - when decoding an object file the address extracted
7639 here will always be 0. So we also pass in the sym_name
7640 parameter so that we can find the symbol associated with
7641 the personality routine. */
7642 if (! get_unwind_section_word (aux, data_arm_sec, data_sec, data_offset,
7643 & word, & addr, & sym_name))
fa197c1c 7644 return;
1b31d05e 7645
fa197c1c
PB
7646 remaining = 4;
7647 }
7648
7649 if ((word & 0x80000000) == 0)
7650 {
7651 /* Expand prel31 for personality routine. */
7652 bfd_vma fn;
7653 const char *procname;
7654
a734115a 7655 fn = arm_expand_prel31 (word, data_sec->sh_addr + data_offset);
fa197c1c 7656 printf (_(" Personality routine: "));
1b31d05e
NC
7657 if (fn == 0
7658 && addr.section == SHN_UNDEF && addr.offset == 0
7659 && sym_name != (bfd_vma) -1 && sym_name < aux->strtab_size)
7660 {
7661 procname = aux->strtab + sym_name;
7662 print_vma (fn, PREFIX_HEX);
7663 if (procname)
7664 {
7665 fputs (" <", stdout);
7666 fputs (procname, stdout);
7667 fputc ('>', stdout);
7668 }
7669 }
7670 else
7671 procname = arm_print_vma_and_name (aux, fn, addr);
fa197c1c
PB
7672 fputc ('\n', stdout);
7673
7674 /* The GCC personality routines use the standard compact
7675 encoding, starting with one byte giving the number of
7676 words. */
7677 if (procname != NULL
7678 && (const_strneq (procname, "__gcc_personality_v0")
7679 || const_strneq (procname, "__gxx_personality_v0")
7680 || const_strneq (procname, "__gcj_personality_v0")
7681 || const_strneq (procname, "__gnu_objc_personality_v0")))
7682 {
7683 remaining = 0;
7684 more_words = 1;
7685 ADVANCE;
7686 if (!remaining)
7687 {
7688 printf (_(" [Truncated data]\n"));
7689 return;
7690 }
7691 more_words = word >> 24;
7692 word <<= 8;
7693 remaining--;
7694 per_index = -1;
7695 }
7696 else
7697 return;
7698 }
7699 else
7700 {
1b31d05e 7701 /* ARM EHABI Section 6.3:
0b4362b0 7702
1b31d05e 7703 An exception-handling table entry for the compact model looks like:
0b4362b0 7704
1b31d05e
NC
7705 31 30-28 27-24 23-0
7706 -- ----- ----- ----
7707 1 0 index Data for personalityRoutine[index] */
7708
7709 if (elf_header.e_machine == EM_ARM
7710 && (word & 0x70000000))
83c257ca 7711 warn (_("Corrupt ARM compact model table entry: %x \n"), word);
1b31d05e 7712
fa197c1c 7713 per_index = (word >> 24) & 0x7f;
1b31d05e 7714 printf (_(" Compact model index: %d\n"), per_index);
fa197c1c
PB
7715 if (per_index == 0)
7716 {
7717 more_words = 0;
7718 word <<= 8;
7719 remaining--;
7720 }
7721 else if (per_index < 3)
7722 {
7723 more_words = (word >> 16) & 0xff;
7724 word <<= 16;
7725 remaining -= 2;
7726 }
7727 }
7728
7729 switch (elf_header.e_machine)
7730 {
7731 case EM_ARM:
7732 if (per_index < 3)
7733 {
7734 decode_arm_unwind_bytecode (aux, word, remaining, more_words,
7735 data_offset, data_sec, data_arm_sec);
7736 }
7737 else
1b31d05e
NC
7738 {
7739 warn (_("Unknown ARM compact model index encountered\n"));
7740 printf (_(" [reserved]\n"));
7741 }
fa197c1c
PB
7742 break;
7743
7744 case EM_TI_C6000:
7745 if (per_index < 3)
7746 {
7747 decode_tic6x_unwind_bytecode (aux, word, remaining, more_words,
1b31d05e 7748 data_offset, data_sec, data_arm_sec);
fa197c1c
PB
7749 }
7750 else if (per_index < 5)
7751 {
7752 if (((word >> 17) & 0x7f) == 0x7f)
7753 printf (_(" Restore stack from frame pointer\n"));
7754 else
7755 printf (_(" Stack increment %d\n"), (word >> 14) & 0x1fc);
7756 printf (_(" Registers restored: "));
7757 if (per_index == 4)
7758 printf (" (compact) ");
7759 decode_tic6x_unwind_regmask ((word >> 4) & 0x1fff);
7760 putchar ('\n');
7761 printf (_(" Return register: %s\n"),
7762 tic6x_unwind_regnames[word & 0xf]);
7763 }
7764 else
1b31d05e 7765 printf (_(" [reserved (%d)]\n"), per_index);
fa197c1c
PB
7766 break;
7767
7768 default:
74e1a04b 7769 error (_("Unsupported architecture type %d encountered when decoding unwind table\n"),
1b31d05e 7770 elf_header.e_machine);
fa197c1c 7771 }
0b6ae522
DJ
7772
7773 /* Decode the descriptors. Not implemented. */
7774}
7775
7776static void
7777dump_arm_unwind (struct arm_unw_aux_info *aux, Elf_Internal_Shdr *exidx_sec)
7778{
7779 struct arm_section exidx_arm_sec, extab_arm_sec;
7780 unsigned int i, exidx_len;
7781
7782 memset (&exidx_arm_sec, 0, sizeof (exidx_arm_sec));
7783 memset (&extab_arm_sec, 0, sizeof (extab_arm_sec));
7784 exidx_len = exidx_sec->sh_size / 8;
7785
7786 for (i = 0; i < exidx_len; i++)
7787 {
7788 unsigned int exidx_fn, exidx_entry;
7789 struct absaddr fn_addr, entry_addr;
7790 bfd_vma fn;
7791
7792 fputc ('\n', stdout);
7793
1b31d05e
NC
7794 if (! get_unwind_section_word (aux, & exidx_arm_sec, exidx_sec,
7795 8 * i, & exidx_fn, & fn_addr, NULL)
7796 || ! get_unwind_section_word (aux, & exidx_arm_sec, exidx_sec,
7797 8 * i + 4, & exidx_entry, & entry_addr, NULL))
0b6ae522 7798 {
1b31d05e
NC
7799 arm_free_section (& exidx_arm_sec);
7800 arm_free_section (& extab_arm_sec);
0b6ae522
DJ
7801 return;
7802 }
7803
83c257ca
NC
7804 /* ARM EHABI, Section 5:
7805 An index table entry consists of 2 words.
7806 The first word contains a prel31 offset to the start of a function, with bit 31 clear. */
7807 if (exidx_fn & 0x80000000)
7808 warn (_("corrupt index table entry: %x\n"), exidx_fn);
7809
a734115a 7810 fn = arm_expand_prel31 (exidx_fn, exidx_sec->sh_addr + 8 * i);
0b6ae522 7811
a734115a 7812 arm_print_vma_and_name (aux, fn, fn_addr);
0b6ae522
DJ
7813 fputs (": ", stdout);
7814
7815 if (exidx_entry == 1)
7816 {
7817 print_vma (exidx_entry, PREFIX_HEX);
7818 fputs (" [cantunwind]\n", stdout);
7819 }
7820 else if (exidx_entry & 0x80000000)
7821 {
7822 print_vma (exidx_entry, PREFIX_HEX);
7823 fputc ('\n', stdout);
7824 decode_arm_unwind (aux, exidx_entry, 4, 0, NULL, NULL);
7825 }
7826 else
7827 {
8f73510c 7828 bfd_vma table, table_offset = 0;
0b6ae522
DJ
7829 Elf_Internal_Shdr *table_sec;
7830
7831 fputs ("@", stdout);
a734115a 7832 table = arm_expand_prel31 (exidx_entry, exidx_sec->sh_addr + 8 * i + 4);
0b6ae522
DJ
7833 print_vma (table, PREFIX_HEX);
7834 printf ("\n");
7835
7836 /* Locate the matching .ARM.extab. */
7837 if (entry_addr.section != SHN_UNDEF
7838 && entry_addr.section < elf_header.e_shnum)
7839 {
7840 table_sec = section_headers + entry_addr.section;
7841 table_offset = entry_addr.offset;
7842 }
7843 else
7844 {
7845 table_sec = find_section_by_address (table);
7846 if (table_sec != NULL)
7847 table_offset = table - table_sec->sh_addr;
7848 }
7849 if (table_sec == NULL)
7850 {
7851 warn (_("Could not locate .ARM.extab section containing 0x%lx.\n"),
7852 (unsigned long) table);
7853 continue;
7854 }
7855 decode_arm_unwind (aux, 0, 0, table_offset, table_sec,
7856 &extab_arm_sec);
7857 }
7858 }
7859
7860 printf ("\n");
7861
7862 arm_free_section (&exidx_arm_sec);
7863 arm_free_section (&extab_arm_sec);
7864}
7865
fa197c1c 7866/* Used for both ARM and C6X unwinding tables. */
1b31d05e
NC
7867
7868static void
0b6ae522
DJ
7869arm_process_unwind (FILE *file)
7870{
7871 struct arm_unw_aux_info aux;
7872 Elf_Internal_Shdr *unwsec = NULL;
7873 Elf_Internal_Shdr *strsec;
7874 Elf_Internal_Shdr *sec;
7875 unsigned long i;
fa197c1c 7876 unsigned int sec_type;
0b6ae522 7877
fa197c1c
PB
7878 switch (elf_header.e_machine)
7879 {
7880 case EM_ARM:
7881 sec_type = SHT_ARM_EXIDX;
7882 break;
7883
7884 case EM_TI_C6000:
7885 sec_type = SHT_C6000_UNWIND;
7886 break;
7887
0b4362b0 7888 default:
74e1a04b 7889 error (_("Unsupported architecture type %d encountered when processing unwind table\n"),
1b31d05e
NC
7890 elf_header.e_machine);
7891 return;
fa197c1c
PB
7892 }
7893
0b6ae522 7894 if (string_table == NULL)
1b31d05e
NC
7895 return;
7896
7897 memset (& aux, 0, sizeof (aux));
7898 aux.file = file;
0b6ae522
DJ
7899
7900 for (i = 0, sec = section_headers; i < elf_header.e_shnum; ++i, ++sec)
7901 {
7902 if (sec->sh_type == SHT_SYMTAB && sec->sh_link < elf_header.e_shnum)
7903 {
ba5cdace 7904 aux.symtab = GET_ELF_SYMBOLS (file, sec, & aux.nsyms);
0b6ae522
DJ
7905
7906 strsec = section_headers + sec->sh_link;
74e1a04b
NC
7907
7908 /* PR binutils/17531 file: 011-12666-0.004. */
7909 if (aux.strtab != NULL)
7910 {
4082ef84 7911 error (_("Multiple string tables found in file.\n"));
74e1a04b
NC
7912 free (aux.strtab);
7913 }
0b6ae522
DJ
7914 aux.strtab = get_data (NULL, file, strsec->sh_offset,
7915 1, strsec->sh_size, _("string table"));
7916 aux.strtab_size = aux.strtab != NULL ? strsec->sh_size : 0;
7917 }
fa197c1c 7918 else if (sec->sh_type == sec_type)
0b6ae522
DJ
7919 unwsec = sec;
7920 }
7921
1b31d05e 7922 if (unwsec == NULL)
0b6ae522 7923 printf (_("\nThere are no unwind sections in this file.\n"));
1b31d05e
NC
7924 else
7925 for (i = 0, sec = section_headers; i < elf_header.e_shnum; ++i, ++sec)
7926 {
7927 if (sec->sh_type == sec_type)
7928 {
7929 printf (_("\nUnwind table index '%s' at offset 0x%lx contains %lu entries:\n"),
74e1a04b 7930 printable_section_name (sec),
1b31d05e
NC
7931 (unsigned long) sec->sh_offset,
7932 (unsigned long) (sec->sh_size / (2 * eh_addr_size)));
0b6ae522 7933
1b31d05e
NC
7934 dump_arm_unwind (&aux, sec);
7935 }
7936 }
0b6ae522
DJ
7937
7938 if (aux.symtab)
7939 free (aux.symtab);
7940 if (aux.strtab)
7941 free ((char *) aux.strtab);
0b6ae522
DJ
7942}
7943
1b31d05e 7944static void
2cf0635d 7945process_unwind (FILE * file)
57346661 7946{
2cf0635d
NC
7947 struct unwind_handler
7948 {
57346661 7949 int machtype;
1b31d05e 7950 void (* handler)(FILE *);
2cf0635d
NC
7951 } handlers[] =
7952 {
0b6ae522 7953 { EM_ARM, arm_process_unwind },
57346661
AM
7954 { EM_IA_64, ia64_process_unwind },
7955 { EM_PARISC, hppa_process_unwind },
fa197c1c 7956 { EM_TI_C6000, arm_process_unwind },
57346661
AM
7957 { 0, 0 }
7958 };
7959 int i;
7960
7961 if (!do_unwind)
1b31d05e 7962 return;
57346661
AM
7963
7964 for (i = 0; handlers[i].handler != NULL; i++)
7965 if (elf_header.e_machine == handlers[i].machtype)
9f758fdc
NC
7966 {
7967 handlers[i].handler (file);
7968 return;
7969 }
57346661 7970
1b31d05e
NC
7971 printf (_("\nThe decoding of unwind sections for machine type %s is not currently supported.\n"),
7972 get_machine_name (elf_header.e_machine));
57346661
AM
7973}
7974
252b5132 7975static void
2cf0635d 7976dynamic_section_mips_val (Elf_Internal_Dyn * entry)
252b5132
RH
7977{
7978 switch (entry->d_tag)
7979 {
7980 case DT_MIPS_FLAGS:
7981 if (entry->d_un.d_val == 0)
4b68bca3 7982 printf (_("NONE"));
252b5132
RH
7983 else
7984 {
7985 static const char * opts[] =
7986 {
7987 "QUICKSTART", "NOTPOT", "NO_LIBRARY_REPLACEMENT",
7988 "NO_MOVE", "SGI_ONLY", "GUARANTEE_INIT", "DELTA_C_PLUS_PLUS",
7989 "GUARANTEE_START_INIT", "PIXIE", "DEFAULT_DELAY_LOAD",
7990 "REQUICKSTART", "REQUICKSTARTED", "CORD", "NO_UNRES_UNDEF",
7991 "RLD_ORDER_SAFE"
7992 };
7993 unsigned int cnt;
7994 int first = 1;
2b692964 7995
60bca95a 7996 for (cnt = 0; cnt < ARRAY_SIZE (opts); ++cnt)
252b5132
RH
7997 if (entry->d_un.d_val & (1 << cnt))
7998 {
7999 printf ("%s%s", first ? "" : " ", opts[cnt]);
8000 first = 0;
8001 }
252b5132
RH
8002 }
8003 break;
103f02d3 8004
252b5132 8005 case DT_MIPS_IVERSION:
d79b3d50 8006 if (VALID_DYNAMIC_NAME (entry->d_un.d_val))
4b68bca3 8007 printf (_("Interface Version: %s"), GET_DYNAMIC_NAME (entry->d_un.d_val));
252b5132 8008 else
76ca31c0
NC
8009 {
8010 char buf[40];
8011 sprintf_vma (buf, entry->d_un.d_ptr);
8012 /* Note: coded this way so that there is a single string for translation. */
8013 printf (_("<corrupt: %s>"), buf);
8014 }
252b5132 8015 break;
103f02d3 8016
252b5132
RH
8017 case DT_MIPS_TIME_STAMP:
8018 {
8019 char timebuf[20];
2cf0635d 8020 struct tm * tmp;
50da7a9c 8021
91d6fa6a
NC
8022 time_t atime = entry->d_un.d_val;
8023 tmp = gmtime (&atime);
e9e44622
JJ
8024 snprintf (timebuf, sizeof (timebuf), "%04u-%02u-%02uT%02u:%02u:%02u",
8025 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
8026 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
4b68bca3 8027 printf (_("Time Stamp: %s"), timebuf);
252b5132
RH
8028 }
8029 break;
103f02d3 8030
252b5132
RH
8031 case DT_MIPS_RLD_VERSION:
8032 case DT_MIPS_LOCAL_GOTNO:
8033 case DT_MIPS_CONFLICTNO:
8034 case DT_MIPS_LIBLISTNO:
8035 case DT_MIPS_SYMTABNO:
8036 case DT_MIPS_UNREFEXTNO:
8037 case DT_MIPS_HIPAGENO:
8038 case DT_MIPS_DELTA_CLASS_NO:
8039 case DT_MIPS_DELTA_INSTANCE_NO:
8040 case DT_MIPS_DELTA_RELOC_NO:
8041 case DT_MIPS_DELTA_SYM_NO:
8042 case DT_MIPS_DELTA_CLASSSYM_NO:
8043 case DT_MIPS_COMPACT_SIZE:
4b68bca3 8044 print_vma (entry->d_un.d_ptr, DEC);
252b5132 8045 break;
103f02d3
UD
8046
8047 default:
4b68bca3 8048 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
103f02d3 8049 }
4b68bca3 8050 putchar ('\n');
103f02d3
UD
8051}
8052
103f02d3 8053static void
2cf0635d 8054dynamic_section_parisc_val (Elf_Internal_Dyn * entry)
103f02d3
UD
8055{
8056 switch (entry->d_tag)
8057 {
8058 case DT_HP_DLD_FLAGS:
8059 {
8060 static struct
8061 {
8062 long int bit;
2cf0635d 8063 const char * str;
5e220199
NC
8064 }
8065 flags[] =
8066 {
8067 { DT_HP_DEBUG_PRIVATE, "HP_DEBUG_PRIVATE" },
8068 { DT_HP_DEBUG_CALLBACK, "HP_DEBUG_CALLBACK" },
8069 { DT_HP_DEBUG_CALLBACK_BOR, "HP_DEBUG_CALLBACK_BOR" },
8070 { DT_HP_NO_ENVVAR, "HP_NO_ENVVAR" },
8071 { DT_HP_BIND_NOW, "HP_BIND_NOW" },
8072 { DT_HP_BIND_NONFATAL, "HP_BIND_NONFATAL" },
8073 { DT_HP_BIND_VERBOSE, "HP_BIND_VERBOSE" },
8074 { DT_HP_BIND_RESTRICTED, "HP_BIND_RESTRICTED" },
8075 { DT_HP_BIND_SYMBOLIC, "HP_BIND_SYMBOLIC" },
8076 { DT_HP_RPATH_FIRST, "HP_RPATH_FIRST" },
eec8f817
DA
8077 { DT_HP_BIND_DEPTH_FIRST, "HP_BIND_DEPTH_FIRST" },
8078 { DT_HP_GST, "HP_GST" },
8079 { DT_HP_SHLIB_FIXED, "HP_SHLIB_FIXED" },
8080 { DT_HP_MERGE_SHLIB_SEG, "HP_MERGE_SHLIB_SEG" },
8081 { DT_HP_NODELETE, "HP_NODELETE" },
8082 { DT_HP_GROUP, "HP_GROUP" },
8083 { DT_HP_PROTECT_LINKAGE_TABLE, "HP_PROTECT_LINKAGE_TABLE" }
5e220199 8084 };
103f02d3 8085 int first = 1;
5e220199 8086 size_t cnt;
f7a99963 8087 bfd_vma val = entry->d_un.d_val;
103f02d3 8088
60bca95a 8089 for (cnt = 0; cnt < ARRAY_SIZE (flags); ++cnt)
103f02d3 8090 if (val & flags[cnt].bit)
30800947
NC
8091 {
8092 if (! first)
8093 putchar (' ');
8094 fputs (flags[cnt].str, stdout);
8095 first = 0;
8096 val ^= flags[cnt].bit;
8097 }
76da6bbe 8098
103f02d3 8099 if (val != 0 || first)
f7a99963
NC
8100 {
8101 if (! first)
8102 putchar (' ');
8103 print_vma (val, HEX);
8104 }
103f02d3
UD
8105 }
8106 break;
76da6bbe 8107
252b5132 8108 default:
f7a99963
NC
8109 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
8110 break;
252b5132 8111 }
35b1837e 8112 putchar ('\n');
252b5132
RH
8113}
8114
28f997cf
TG
8115#ifdef BFD64
8116
8117/* VMS vs Unix time offset and factor. */
8118
8119#define VMS_EPOCH_OFFSET 35067168000000000LL
8120#define VMS_GRANULARITY_FACTOR 10000000
8121
8122/* Display a VMS time in a human readable format. */
8123
8124static void
8125print_vms_time (bfd_int64_t vmstime)
8126{
8127 struct tm *tm;
8128 time_t unxtime;
8129
8130 unxtime = (vmstime - VMS_EPOCH_OFFSET) / VMS_GRANULARITY_FACTOR;
8131 tm = gmtime (&unxtime);
8132 printf ("%04u-%02u-%02uT%02u:%02u:%02u",
8133 tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
8134 tm->tm_hour, tm->tm_min, tm->tm_sec);
8135}
8136#endif /* BFD64 */
8137
ecc51f48 8138static void
2cf0635d 8139dynamic_section_ia64_val (Elf_Internal_Dyn * entry)
ecc51f48
NC
8140{
8141 switch (entry->d_tag)
8142 {
0de14b54 8143 case DT_IA_64_PLT_RESERVE:
bdf4d63a 8144 /* First 3 slots reserved. */
ecc51f48
NC
8145 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
8146 printf (" -- ");
8147 print_vma (entry->d_un.d_ptr + (3 * 8), PREFIX_HEX);
bdf4d63a
JJ
8148 break;
8149
28f997cf
TG
8150 case DT_IA_64_VMS_LINKTIME:
8151#ifdef BFD64
8152 print_vms_time (entry->d_un.d_val);
8153#endif
8154 break;
8155
8156 case DT_IA_64_VMS_LNKFLAGS:
8157 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
8158 if (entry->d_un.d_val & VMS_LF_CALL_DEBUG)
8159 printf (" CALL_DEBUG");
8160 if (entry->d_un.d_val & VMS_LF_NOP0BUFS)
8161 printf (" NOP0BUFS");
8162 if (entry->d_un.d_val & VMS_LF_P0IMAGE)
8163 printf (" P0IMAGE");
8164 if (entry->d_un.d_val & VMS_LF_MKTHREADS)
8165 printf (" MKTHREADS");
8166 if (entry->d_un.d_val & VMS_LF_UPCALLS)
8167 printf (" UPCALLS");
8168 if (entry->d_un.d_val & VMS_LF_IMGSTA)
8169 printf (" IMGSTA");
8170 if (entry->d_un.d_val & VMS_LF_INITIALIZE)
8171 printf (" INITIALIZE");
8172 if (entry->d_un.d_val & VMS_LF_MAIN)
8173 printf (" MAIN");
8174 if (entry->d_un.d_val & VMS_LF_EXE_INIT)
8175 printf (" EXE_INIT");
8176 if (entry->d_un.d_val & VMS_LF_TBK_IN_IMG)
8177 printf (" TBK_IN_IMG");
8178 if (entry->d_un.d_val & VMS_LF_DBG_IN_IMG)
8179 printf (" DBG_IN_IMG");
8180 if (entry->d_un.d_val & VMS_LF_TBK_IN_DSF)
8181 printf (" TBK_IN_DSF");
8182 if (entry->d_un.d_val & VMS_LF_DBG_IN_DSF)
8183 printf (" DBG_IN_DSF");
8184 if (entry->d_un.d_val & VMS_LF_SIGNATURES)
8185 printf (" SIGNATURES");
8186 if (entry->d_un.d_val & VMS_LF_REL_SEG_OFF)
8187 printf (" REL_SEG_OFF");
8188 break;
8189
bdf4d63a
JJ
8190 default:
8191 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
8192 break;
ecc51f48 8193 }
bdf4d63a 8194 putchar ('\n');
ecc51f48
NC
8195}
8196
252b5132 8197static int
2cf0635d 8198get_32bit_dynamic_section (FILE * file)
252b5132 8199{
2cf0635d
NC
8200 Elf32_External_Dyn * edyn;
8201 Elf32_External_Dyn * ext;
8202 Elf_Internal_Dyn * entry;
103f02d3 8203
3f5e193b
NC
8204 edyn = (Elf32_External_Dyn *) get_data (NULL, file, dynamic_addr, 1,
8205 dynamic_size, _("dynamic section"));
a6e9f9df
AM
8206 if (!edyn)
8207 return 0;
103f02d3 8208
071436c6
NC
8209 /* SGI's ELF has more than one section in the DYNAMIC segment, and we
8210 might not have the luxury of section headers. Look for the DT_NULL
8211 terminator to determine the number of entries. */
ba2685cc 8212 for (ext = edyn, dynamic_nent = 0;
071436c6 8213 (char *) ext < (char *) edyn + dynamic_size - sizeof (* entry);
ba2685cc
AM
8214 ext++)
8215 {
8216 dynamic_nent++;
8217 if (BYTE_GET (ext->d_tag) == DT_NULL)
8218 break;
8219 }
252b5132 8220
3f5e193b
NC
8221 dynamic_section = (Elf_Internal_Dyn *) cmalloc (dynamic_nent,
8222 sizeof (* entry));
b2d38a17 8223 if (dynamic_section == NULL)
252b5132 8224 {
8b73c356
NC
8225 error (_("Out of memory allocating space for %lu dynamic entries\n"),
8226 (unsigned long) dynamic_nent);
9ea033b2
NC
8227 free (edyn);
8228 return 0;
8229 }
252b5132 8230
fb514b26 8231 for (ext = edyn, entry = dynamic_section;
ba2685cc 8232 entry < dynamic_section + dynamic_nent;
fb514b26 8233 ext++, entry++)
9ea033b2 8234 {
fb514b26
AM
8235 entry->d_tag = BYTE_GET (ext->d_tag);
8236 entry->d_un.d_val = BYTE_GET (ext->d_un.d_val);
252b5132
RH
8237 }
8238
9ea033b2
NC
8239 free (edyn);
8240
8241 return 1;
8242}
8243
8244static int
2cf0635d 8245get_64bit_dynamic_section (FILE * file)
9ea033b2 8246{
2cf0635d
NC
8247 Elf64_External_Dyn * edyn;
8248 Elf64_External_Dyn * ext;
8249 Elf_Internal_Dyn * entry;
103f02d3 8250
071436c6 8251 /* Read in the data. */
3f5e193b
NC
8252 edyn = (Elf64_External_Dyn *) get_data (NULL, file, dynamic_addr, 1,
8253 dynamic_size, _("dynamic section"));
a6e9f9df
AM
8254 if (!edyn)
8255 return 0;
103f02d3 8256
071436c6
NC
8257 /* SGI's ELF has more than one section in the DYNAMIC segment, and we
8258 might not have the luxury of section headers. Look for the DT_NULL
8259 terminator to determine the number of entries. */
ba2685cc 8260 for (ext = edyn, dynamic_nent = 0;
071436c6
NC
8261 /* PR 17533 file: 033-67080-0.004 - do not read off the end of the buffer. */
8262 (char *) ext < ((char *) edyn) + dynamic_size - sizeof (* ext);
ba2685cc
AM
8263 ext++)
8264 {
8265 dynamic_nent++;
66543521 8266 if (BYTE_GET (ext->d_tag) == DT_NULL)
ba2685cc
AM
8267 break;
8268 }
252b5132 8269
3f5e193b
NC
8270 dynamic_section = (Elf_Internal_Dyn *) cmalloc (dynamic_nent,
8271 sizeof (* entry));
b2d38a17 8272 if (dynamic_section == NULL)
252b5132 8273 {
8b73c356
NC
8274 error (_("Out of memory allocating space for %lu dynamic entries\n"),
8275 (unsigned long) dynamic_nent);
252b5132
RH
8276 free (edyn);
8277 return 0;
8278 }
8279
071436c6 8280 /* Convert from external to internal formats. */
fb514b26 8281 for (ext = edyn, entry = dynamic_section;
ba2685cc 8282 entry < dynamic_section + dynamic_nent;
fb514b26 8283 ext++, entry++)
252b5132 8284 {
66543521
AM
8285 entry->d_tag = BYTE_GET (ext->d_tag);
8286 entry->d_un.d_val = BYTE_GET (ext->d_un.d_val);
252b5132
RH
8287 }
8288
8289 free (edyn);
8290
9ea033b2
NC
8291 return 1;
8292}
8293
e9e44622
JJ
8294static void
8295print_dynamic_flags (bfd_vma flags)
d1133906 8296{
e9e44622 8297 int first = 1;
13ae64f3 8298
d1133906
NC
8299 while (flags)
8300 {
8301 bfd_vma flag;
8302
8303 flag = flags & - flags;
8304 flags &= ~ flag;
8305
e9e44622
JJ
8306 if (first)
8307 first = 0;
8308 else
8309 putc (' ', stdout);
13ae64f3 8310
d1133906
NC
8311 switch (flag)
8312 {
e9e44622
JJ
8313 case DF_ORIGIN: fputs ("ORIGIN", stdout); break;
8314 case DF_SYMBOLIC: fputs ("SYMBOLIC", stdout); break;
8315 case DF_TEXTREL: fputs ("TEXTREL", stdout); break;
8316 case DF_BIND_NOW: fputs ("BIND_NOW", stdout); break;
8317 case DF_STATIC_TLS: fputs ("STATIC_TLS", stdout); break;
2b692964 8318 default: fputs (_("unknown"), stdout); break;
d1133906
NC
8319 }
8320 }
e9e44622 8321 puts ("");
d1133906
NC
8322}
8323
b2d38a17
NC
8324/* Parse and display the contents of the dynamic section. */
8325
9ea033b2 8326static int
2cf0635d 8327process_dynamic_section (FILE * file)
9ea033b2 8328{
2cf0635d 8329 Elf_Internal_Dyn * entry;
9ea033b2
NC
8330
8331 if (dynamic_size == 0)
8332 {
8333 if (do_dynamic)
b2d38a17 8334 printf (_("\nThere is no dynamic section in this file.\n"));
9ea033b2
NC
8335
8336 return 1;
8337 }
8338
8339 if (is_32bit_elf)
8340 {
b2d38a17 8341 if (! get_32bit_dynamic_section (file))
9ea033b2
NC
8342 return 0;
8343 }
b2d38a17 8344 else if (! get_64bit_dynamic_section (file))
9ea033b2
NC
8345 return 0;
8346
252b5132
RH
8347 /* Find the appropriate symbol table. */
8348 if (dynamic_symbols == NULL)
8349 {
86dba8ee
AM
8350 for (entry = dynamic_section;
8351 entry < dynamic_section + dynamic_nent;
8352 ++entry)
252b5132 8353 {
c8286bd1 8354 Elf_Internal_Shdr section;
252b5132
RH
8355
8356 if (entry->d_tag != DT_SYMTAB)
8357 continue;
8358
8359 dynamic_info[DT_SYMTAB] = entry->d_un.d_val;
8360
8361 /* Since we do not know how big the symbol table is,
8362 we default to reading in the entire file (!) and
8363 processing that. This is overkill, I know, but it
e3c8793a 8364 should work. */
d93f0186 8365 section.sh_offset = offset_from_vma (file, entry->d_un.d_val, 0);
252b5132 8366
fb52b2f4
NC
8367 if (archive_file_offset != 0)
8368 section.sh_size = archive_file_size - section.sh_offset;
8369 else
8370 {
8371 if (fseek (file, 0, SEEK_END))
591a748a 8372 error (_("Unable to seek to end of file!\n"));
fb52b2f4
NC
8373
8374 section.sh_size = ftell (file) - section.sh_offset;
8375 }
252b5132 8376
9ea033b2 8377 if (is_32bit_elf)
9ad5cbcf 8378 section.sh_entsize = sizeof (Elf32_External_Sym);
9ea033b2 8379 else
9ad5cbcf 8380 section.sh_entsize = sizeof (Elf64_External_Sym);
071436c6 8381 section.sh_name = string_table_length;
252b5132 8382
ba5cdace 8383 dynamic_symbols = GET_ELF_SYMBOLS (file, &section, & num_dynamic_syms);
19936277 8384 if (num_dynamic_syms < 1)
252b5132
RH
8385 {
8386 error (_("Unable to determine the number of symbols to load\n"));
8387 continue;
8388 }
252b5132
RH
8389 }
8390 }
8391
8392 /* Similarly find a string table. */
8393 if (dynamic_strings == NULL)
8394 {
86dba8ee
AM
8395 for (entry = dynamic_section;
8396 entry < dynamic_section + dynamic_nent;
8397 ++entry)
252b5132
RH
8398 {
8399 unsigned long offset;
b34976b6 8400 long str_tab_len;
252b5132
RH
8401
8402 if (entry->d_tag != DT_STRTAB)
8403 continue;
8404
8405 dynamic_info[DT_STRTAB] = entry->d_un.d_val;
8406
8407 /* Since we do not know how big the string table is,
8408 we default to reading in the entire file (!) and
8409 processing that. This is overkill, I know, but it
e3c8793a 8410 should work. */
252b5132 8411
d93f0186 8412 offset = offset_from_vma (file, entry->d_un.d_val, 0);
fb52b2f4
NC
8413
8414 if (archive_file_offset != 0)
8415 str_tab_len = archive_file_size - offset;
8416 else
8417 {
8418 if (fseek (file, 0, SEEK_END))
8419 error (_("Unable to seek to end of file\n"));
8420 str_tab_len = ftell (file) - offset;
8421 }
252b5132
RH
8422
8423 if (str_tab_len < 1)
8424 {
8425 error
8426 (_("Unable to determine the length of the dynamic string table\n"));
8427 continue;
8428 }
8429
3f5e193b
NC
8430 dynamic_strings = (char *) get_data (NULL, file, offset, 1,
8431 str_tab_len,
8432 _("dynamic string table"));
59245841 8433 dynamic_strings_length = dynamic_strings == NULL ? 0 : str_tab_len;
252b5132
RH
8434 break;
8435 }
8436 }
8437
8438 /* And find the syminfo section if available. */
8439 if (dynamic_syminfo == NULL)
8440 {
3e8bba36 8441 unsigned long syminsz = 0;
252b5132 8442
86dba8ee
AM
8443 for (entry = dynamic_section;
8444 entry < dynamic_section + dynamic_nent;
8445 ++entry)
252b5132
RH
8446 {
8447 if (entry->d_tag == DT_SYMINENT)
8448 {
8449 /* Note: these braces are necessary to avoid a syntax
8450 error from the SunOS4 C compiler. */
049b0c3a
NC
8451 /* PR binutils/17531: A corrupt file can trigger this test.
8452 So do not use an assert, instead generate an error message. */
8453 if (sizeof (Elf_External_Syminfo) != entry->d_un.d_val)
071436c6 8454 error (_("Bad value (%d) for SYMINENT entry\n"),
049b0c3a 8455 (int) entry->d_un.d_val);
252b5132
RH
8456 }
8457 else if (entry->d_tag == DT_SYMINSZ)
8458 syminsz = entry->d_un.d_val;
8459 else if (entry->d_tag == DT_SYMINFO)
d93f0186
NC
8460 dynamic_syminfo_offset = offset_from_vma (file, entry->d_un.d_val,
8461 syminsz);
252b5132
RH
8462 }
8463
8464 if (dynamic_syminfo_offset != 0 && syminsz != 0)
8465 {
2cf0635d
NC
8466 Elf_External_Syminfo * extsyminfo;
8467 Elf_External_Syminfo * extsym;
8468 Elf_Internal_Syminfo * syminfo;
252b5132
RH
8469
8470 /* There is a syminfo section. Read the data. */
3f5e193b
NC
8471 extsyminfo = (Elf_External_Syminfo *)
8472 get_data (NULL, file, dynamic_syminfo_offset, 1, syminsz,
8473 _("symbol information"));
a6e9f9df
AM
8474 if (!extsyminfo)
8475 return 0;
252b5132 8476
3f5e193b 8477 dynamic_syminfo = (Elf_Internal_Syminfo *) malloc (syminsz);
252b5132
RH
8478 if (dynamic_syminfo == NULL)
8479 {
8b73c356
NC
8480 error (_("Out of memory allocating %lu byte for dynamic symbol info\n"),
8481 (unsigned long) syminsz);
252b5132
RH
8482 return 0;
8483 }
8484
8485 dynamic_syminfo_nent = syminsz / sizeof (Elf_External_Syminfo);
86dba8ee
AM
8486 for (syminfo = dynamic_syminfo, extsym = extsyminfo;
8487 syminfo < dynamic_syminfo + dynamic_syminfo_nent;
8488 ++syminfo, ++extsym)
252b5132 8489 {
86dba8ee
AM
8490 syminfo->si_boundto = BYTE_GET (extsym->si_boundto);
8491 syminfo->si_flags = BYTE_GET (extsym->si_flags);
252b5132
RH
8492 }
8493
8494 free (extsyminfo);
8495 }
8496 }
8497
8498 if (do_dynamic && dynamic_addr)
8b73c356
NC
8499 printf (_("\nDynamic section at offset 0x%lx contains %lu entries:\n"),
8500 dynamic_addr, (unsigned long) dynamic_nent);
252b5132
RH
8501 if (do_dynamic)
8502 printf (_(" Tag Type Name/Value\n"));
8503
86dba8ee
AM
8504 for (entry = dynamic_section;
8505 entry < dynamic_section + dynamic_nent;
8506 entry++)
252b5132
RH
8507 {
8508 if (do_dynamic)
f7a99963 8509 {
2cf0635d 8510 const char * dtype;
e699b9ff 8511
f7a99963
NC
8512 putchar (' ');
8513 print_vma (entry->d_tag, FULL_HEX);
e699b9ff
ILT
8514 dtype = get_dynamic_type (entry->d_tag);
8515 printf (" (%s)%*s", dtype,
8516 ((is_32bit_elf ? 27 : 19)
8517 - (int) strlen (dtype)),
f7a99963
NC
8518 " ");
8519 }
252b5132
RH
8520
8521 switch (entry->d_tag)
8522 {
d1133906
NC
8523 case DT_FLAGS:
8524 if (do_dynamic)
e9e44622 8525 print_dynamic_flags (entry->d_un.d_val);
d1133906 8526 break;
76da6bbe 8527
252b5132
RH
8528 case DT_AUXILIARY:
8529 case DT_FILTER:
019148e4
L
8530 case DT_CONFIG:
8531 case DT_DEPAUDIT:
8532 case DT_AUDIT:
252b5132
RH
8533 if (do_dynamic)
8534 {
019148e4 8535 switch (entry->d_tag)
b34976b6 8536 {
019148e4
L
8537 case DT_AUXILIARY:
8538 printf (_("Auxiliary library"));
8539 break;
8540
8541 case DT_FILTER:
8542 printf (_("Filter library"));
8543 break;
8544
b34976b6 8545 case DT_CONFIG:
019148e4
L
8546 printf (_("Configuration file"));
8547 break;
8548
8549 case DT_DEPAUDIT:
8550 printf (_("Dependency audit library"));
8551 break;
8552
8553 case DT_AUDIT:
8554 printf (_("Audit library"));
8555 break;
8556 }
252b5132 8557
d79b3d50
NC
8558 if (VALID_DYNAMIC_NAME (entry->d_un.d_val))
8559 printf (": [%s]\n", GET_DYNAMIC_NAME (entry->d_un.d_val));
252b5132 8560 else
f7a99963
NC
8561 {
8562 printf (": ");
8563 print_vma (entry->d_un.d_val, PREFIX_HEX);
8564 putchar ('\n');
8565 }
252b5132
RH
8566 }
8567 break;
8568
dcefbbbd 8569 case DT_FEATURE:
252b5132
RH
8570 if (do_dynamic)
8571 {
8572 printf (_("Flags:"));
86f55779 8573
252b5132
RH
8574 if (entry->d_un.d_val == 0)
8575 printf (_(" None\n"));
8576 else
8577 {
8578 unsigned long int val = entry->d_un.d_val;
86f55779 8579
252b5132
RH
8580 if (val & DTF_1_PARINIT)
8581 {
8582 printf (" PARINIT");
8583 val ^= DTF_1_PARINIT;
8584 }
dcefbbbd
L
8585 if (val & DTF_1_CONFEXP)
8586 {
8587 printf (" CONFEXP");
8588 val ^= DTF_1_CONFEXP;
8589 }
252b5132
RH
8590 if (val != 0)
8591 printf (" %lx", val);
8592 puts ("");
8593 }
8594 }
8595 break;
8596
8597 case DT_POSFLAG_1:
8598 if (do_dynamic)
8599 {
8600 printf (_("Flags:"));
86f55779 8601
252b5132
RH
8602 if (entry->d_un.d_val == 0)
8603 printf (_(" None\n"));
8604 else
8605 {
8606 unsigned long int val = entry->d_un.d_val;
86f55779 8607
252b5132
RH
8608 if (val & DF_P1_LAZYLOAD)
8609 {
8610 printf (" LAZYLOAD");
8611 val ^= DF_P1_LAZYLOAD;
8612 }
8613 if (val & DF_P1_GROUPPERM)
8614 {
8615 printf (" GROUPPERM");
8616 val ^= DF_P1_GROUPPERM;
8617 }
8618 if (val != 0)
8619 printf (" %lx", val);
8620 puts ("");
8621 }
8622 }
8623 break;
8624
8625 case DT_FLAGS_1:
8626 if (do_dynamic)
8627 {
8628 printf (_("Flags:"));
8629 if (entry->d_un.d_val == 0)
8630 printf (_(" None\n"));
8631 else
8632 {
8633 unsigned long int val = entry->d_un.d_val;
86f55779 8634
252b5132
RH
8635 if (val & DF_1_NOW)
8636 {
8637 printf (" NOW");
8638 val ^= DF_1_NOW;
8639 }
8640 if (val & DF_1_GLOBAL)
8641 {
8642 printf (" GLOBAL");
8643 val ^= DF_1_GLOBAL;
8644 }
8645 if (val & DF_1_GROUP)
8646 {
8647 printf (" GROUP");
8648 val ^= DF_1_GROUP;
8649 }
8650 if (val & DF_1_NODELETE)
8651 {
8652 printf (" NODELETE");
8653 val ^= DF_1_NODELETE;
8654 }
8655 if (val & DF_1_LOADFLTR)
8656 {
8657 printf (" LOADFLTR");
8658 val ^= DF_1_LOADFLTR;
8659 }
8660 if (val & DF_1_INITFIRST)
8661 {
8662 printf (" INITFIRST");
8663 val ^= DF_1_INITFIRST;
8664 }
8665 if (val & DF_1_NOOPEN)
8666 {
8667 printf (" NOOPEN");
8668 val ^= DF_1_NOOPEN;
8669 }
8670 if (val & DF_1_ORIGIN)
8671 {
8672 printf (" ORIGIN");
8673 val ^= DF_1_ORIGIN;
8674 }
8675 if (val & DF_1_DIRECT)
8676 {
8677 printf (" DIRECT");
8678 val ^= DF_1_DIRECT;
8679 }
8680 if (val & DF_1_TRANS)
8681 {
8682 printf (" TRANS");
8683 val ^= DF_1_TRANS;
8684 }
8685 if (val & DF_1_INTERPOSE)
8686 {
8687 printf (" INTERPOSE");
8688 val ^= DF_1_INTERPOSE;
8689 }
f7db6139 8690 if (val & DF_1_NODEFLIB)
dcefbbbd 8691 {
f7db6139
L
8692 printf (" NODEFLIB");
8693 val ^= DF_1_NODEFLIB;
dcefbbbd
L
8694 }
8695 if (val & DF_1_NODUMP)
8696 {
8697 printf (" NODUMP");
8698 val ^= DF_1_NODUMP;
8699 }
34b60028 8700 if (val & DF_1_CONFALT)
dcefbbbd 8701 {
34b60028
L
8702 printf (" CONFALT");
8703 val ^= DF_1_CONFALT;
8704 }
8705 if (val & DF_1_ENDFILTEE)
8706 {
8707 printf (" ENDFILTEE");
8708 val ^= DF_1_ENDFILTEE;
8709 }
8710 if (val & DF_1_DISPRELDNE)
8711 {
8712 printf (" DISPRELDNE");
8713 val ^= DF_1_DISPRELDNE;
8714 }
8715 if (val & DF_1_DISPRELPND)
8716 {
8717 printf (" DISPRELPND");
8718 val ^= DF_1_DISPRELPND;
8719 }
8720 if (val & DF_1_NODIRECT)
8721 {
8722 printf (" NODIRECT");
8723 val ^= DF_1_NODIRECT;
8724 }
8725 if (val & DF_1_IGNMULDEF)
8726 {
8727 printf (" IGNMULDEF");
8728 val ^= DF_1_IGNMULDEF;
8729 }
8730 if (val & DF_1_NOKSYMS)
8731 {
8732 printf (" NOKSYMS");
8733 val ^= DF_1_NOKSYMS;
8734 }
8735 if (val & DF_1_NOHDR)
8736 {
8737 printf (" NOHDR");
8738 val ^= DF_1_NOHDR;
8739 }
8740 if (val & DF_1_EDITED)
8741 {
8742 printf (" EDITED");
8743 val ^= DF_1_EDITED;
8744 }
8745 if (val & DF_1_NORELOC)
8746 {
8747 printf (" NORELOC");
8748 val ^= DF_1_NORELOC;
8749 }
8750 if (val & DF_1_SYMINTPOSE)
8751 {
8752 printf (" SYMINTPOSE");
8753 val ^= DF_1_SYMINTPOSE;
8754 }
8755 if (val & DF_1_GLOBAUDIT)
8756 {
8757 printf (" GLOBAUDIT");
8758 val ^= DF_1_GLOBAUDIT;
8759 }
8760 if (val & DF_1_SINGLETON)
8761 {
8762 printf (" SINGLETON");
8763 val ^= DF_1_SINGLETON;
dcefbbbd 8764 }
252b5132
RH
8765 if (val != 0)
8766 printf (" %lx", val);
8767 puts ("");
8768 }
8769 }
8770 break;
8771
8772 case DT_PLTREL:
566b0d53 8773 dynamic_info[entry->d_tag] = entry->d_un.d_val;
252b5132
RH
8774 if (do_dynamic)
8775 puts (get_dynamic_type (entry->d_un.d_val));
8776 break;
8777
8778 case DT_NULL :
8779 case DT_NEEDED :
8780 case DT_PLTGOT :
8781 case DT_HASH :
8782 case DT_STRTAB :
8783 case DT_SYMTAB :
8784 case DT_RELA :
8785 case DT_INIT :
8786 case DT_FINI :
8787 case DT_SONAME :
8788 case DT_RPATH :
8789 case DT_SYMBOLIC:
8790 case DT_REL :
8791 case DT_DEBUG :
8792 case DT_TEXTREL :
8793 case DT_JMPREL :
019148e4 8794 case DT_RUNPATH :
252b5132
RH
8795 dynamic_info[entry->d_tag] = entry->d_un.d_val;
8796
8797 if (do_dynamic)
8798 {
2cf0635d 8799 char * name;
252b5132 8800
d79b3d50
NC
8801 if (VALID_DYNAMIC_NAME (entry->d_un.d_val))
8802 name = GET_DYNAMIC_NAME (entry->d_un.d_val);
252b5132 8803 else
d79b3d50 8804 name = NULL;
252b5132
RH
8805
8806 if (name)
8807 {
8808 switch (entry->d_tag)
8809 {
8810 case DT_NEEDED:
8811 printf (_("Shared library: [%s]"), name);
8812
18bd398b 8813 if (streq (name, program_interpreter))
f7a99963 8814 printf (_(" program interpreter"));
252b5132
RH
8815 break;
8816
8817 case DT_SONAME:
f7a99963 8818 printf (_("Library soname: [%s]"), name);
252b5132
RH
8819 break;
8820
8821 case DT_RPATH:
f7a99963 8822 printf (_("Library rpath: [%s]"), name);
252b5132
RH
8823 break;
8824
019148e4
L
8825 case DT_RUNPATH:
8826 printf (_("Library runpath: [%s]"), name);
8827 break;
8828
252b5132 8829 default:
f7a99963
NC
8830 print_vma (entry->d_un.d_val, PREFIX_HEX);
8831 break;
252b5132
RH
8832 }
8833 }
8834 else
f7a99963
NC
8835 print_vma (entry->d_un.d_val, PREFIX_HEX);
8836
8837 putchar ('\n');
252b5132
RH
8838 }
8839 break;
8840
8841 case DT_PLTRELSZ:
8842 case DT_RELASZ :
8843 case DT_STRSZ :
8844 case DT_RELSZ :
8845 case DT_RELAENT :
8846 case DT_SYMENT :
8847 case DT_RELENT :
566b0d53 8848 dynamic_info[entry->d_tag] = entry->d_un.d_val;
252b5132
RH
8849 case DT_PLTPADSZ:
8850 case DT_MOVEENT :
8851 case DT_MOVESZ :
8852 case DT_INIT_ARRAYSZ:
8853 case DT_FINI_ARRAYSZ:
047b2264
JJ
8854 case DT_GNU_CONFLICTSZ:
8855 case DT_GNU_LIBLISTSZ:
252b5132 8856 if (do_dynamic)
f7a99963
NC
8857 {
8858 print_vma (entry->d_un.d_val, UNSIGNED);
2b692964 8859 printf (_(" (bytes)\n"));
f7a99963 8860 }
252b5132
RH
8861 break;
8862
8863 case DT_VERDEFNUM:
8864 case DT_VERNEEDNUM:
8865 case DT_RELACOUNT:
8866 case DT_RELCOUNT:
8867 if (do_dynamic)
f7a99963
NC
8868 {
8869 print_vma (entry->d_un.d_val, UNSIGNED);
8870 putchar ('\n');
8871 }
252b5132
RH
8872 break;
8873
8874 case DT_SYMINSZ:
8875 case DT_SYMINENT:
8876 case DT_SYMINFO:
8877 case DT_USED:
8878 case DT_INIT_ARRAY:
8879 case DT_FINI_ARRAY:
8880 if (do_dynamic)
8881 {
d79b3d50
NC
8882 if (entry->d_tag == DT_USED
8883 && VALID_DYNAMIC_NAME (entry->d_un.d_val))
252b5132 8884 {
2cf0635d 8885 char * name = GET_DYNAMIC_NAME (entry->d_un.d_val);
252b5132 8886
b34976b6 8887 if (*name)
252b5132
RH
8888 {
8889 printf (_("Not needed object: [%s]\n"), name);
8890 break;
8891 }
8892 }
103f02d3 8893
f7a99963
NC
8894 print_vma (entry->d_un.d_val, PREFIX_HEX);
8895 putchar ('\n');
252b5132
RH
8896 }
8897 break;
8898
8899 case DT_BIND_NOW:
8900 /* The value of this entry is ignored. */
35b1837e
AM
8901 if (do_dynamic)
8902 putchar ('\n');
252b5132 8903 break;
103f02d3 8904
047b2264
JJ
8905 case DT_GNU_PRELINKED:
8906 if (do_dynamic)
8907 {
2cf0635d 8908 struct tm * tmp;
91d6fa6a 8909 time_t atime = entry->d_un.d_val;
047b2264 8910
91d6fa6a 8911 tmp = gmtime (&atime);
071436c6
NC
8912 /* PR 17533 file: 041-1244816-0.004. */
8913 if (tmp == NULL)
5a2cbcf4
L
8914 printf (_("<corrupt time val: %lx"),
8915 (unsigned long) atime);
071436c6
NC
8916 else
8917 printf ("%04u-%02u-%02uT%02u:%02u:%02u\n",
8918 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
8919 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
047b2264
JJ
8920
8921 }
8922 break;
8923
fdc90cb4
JJ
8924 case DT_GNU_HASH:
8925 dynamic_info_DT_GNU_HASH = entry->d_un.d_val;
8926 if (do_dynamic)
8927 {
8928 print_vma (entry->d_un.d_val, PREFIX_HEX);
8929 putchar ('\n');
8930 }
8931 break;
8932
252b5132
RH
8933 default:
8934 if ((entry->d_tag >= DT_VERSYM) && (entry->d_tag <= DT_VERNEEDNUM))
b34976b6 8935 version_info[DT_VERSIONTAGIDX (entry->d_tag)] =
252b5132
RH
8936 entry->d_un.d_val;
8937
8938 if (do_dynamic)
8939 {
8940 switch (elf_header.e_machine)
8941 {
8942 case EM_MIPS:
4fe85591 8943 case EM_MIPS_RS3_LE:
b2d38a17 8944 dynamic_section_mips_val (entry);
252b5132 8945 break;
103f02d3 8946 case EM_PARISC:
b2d38a17 8947 dynamic_section_parisc_val (entry);
103f02d3 8948 break;
ecc51f48 8949 case EM_IA_64:
b2d38a17 8950 dynamic_section_ia64_val (entry);
ecc51f48 8951 break;
252b5132 8952 default:
f7a99963
NC
8953 print_vma (entry->d_un.d_val, PREFIX_HEX);
8954 putchar ('\n');
252b5132
RH
8955 }
8956 }
8957 break;
8958 }
8959 }
8960
8961 return 1;
8962}
8963
8964static char *
d3ba0551 8965get_ver_flags (unsigned int flags)
252b5132 8966{
b34976b6 8967 static char buff[32];
252b5132
RH
8968
8969 buff[0] = 0;
8970
8971 if (flags == 0)
8972 return _("none");
8973
8974 if (flags & VER_FLG_BASE)
8975 strcat (buff, "BASE ");
8976
8977 if (flags & VER_FLG_WEAK)
8978 {
8979 if (flags & VER_FLG_BASE)
8980 strcat (buff, "| ");
8981
8982 strcat (buff, "WEAK ");
8983 }
8984
44ec90b9
RO
8985 if (flags & VER_FLG_INFO)
8986 {
8987 if (flags & (VER_FLG_BASE|VER_FLG_WEAK))
8988 strcat (buff, "| ");
8989
8990 strcat (buff, "INFO ");
8991 }
8992
8993 if (flags & ~(VER_FLG_BASE | VER_FLG_WEAK | VER_FLG_INFO))
2b692964 8994 strcat (buff, _("| <unknown>"));
252b5132
RH
8995
8996 return buff;
8997}
8998
8999/* Display the contents of the version sections. */
98fb390a 9000
252b5132 9001static int
2cf0635d 9002process_version_sections (FILE * file)
252b5132 9003{
2cf0635d 9004 Elf_Internal_Shdr * section;
b34976b6
AM
9005 unsigned i;
9006 int found = 0;
252b5132
RH
9007
9008 if (! do_version)
9009 return 1;
9010
9011 for (i = 0, section = section_headers;
9012 i < elf_header.e_shnum;
b34976b6 9013 i++, section++)
252b5132
RH
9014 {
9015 switch (section->sh_type)
9016 {
9017 case SHT_GNU_verdef:
9018 {
2cf0635d 9019 Elf_External_Verdef * edefs;
b34976b6
AM
9020 unsigned int idx;
9021 unsigned int cnt;
2cf0635d 9022 char * endbuf;
252b5132
RH
9023
9024 found = 1;
9025
74e1a04b
NC
9026 printf (_("\nVersion definition section '%s' contains %u entries:\n"),
9027 printable_section_name (section),
9028 section->sh_info);
252b5132
RH
9029
9030 printf (_(" Addr: 0x"));
9031 printf_vma (section->sh_addr);
74e1a04b 9032 printf (_(" Offset: %#08lx Link: %u (%s)"),
1b228002 9033 (unsigned long) section->sh_offset, section->sh_link,
74e1a04b 9034 printable_section_name_from_index (section->sh_link));
252b5132 9035
3f5e193b
NC
9036 edefs = (Elf_External_Verdef *)
9037 get_data (NULL, file, section->sh_offset, 1,section->sh_size,
9038 _("version definition section"));
a6e9f9df
AM
9039 if (!edefs)
9040 break;
59245841 9041 endbuf = (char *) edefs + section->sh_size;
252b5132 9042
b34976b6 9043 for (idx = cnt = 0; cnt < section->sh_info; ++cnt)
252b5132 9044 {
2cf0635d
NC
9045 char * vstart;
9046 Elf_External_Verdef * edef;
b34976b6 9047 Elf_Internal_Verdef ent;
2cf0635d 9048 Elf_External_Verdaux * eaux;
b34976b6
AM
9049 Elf_Internal_Verdaux aux;
9050 int j;
9051 int isum;
103f02d3 9052
7e26601c
NC
9053 /* Check for very large indicies. */
9054 if (idx > (size_t) (endbuf - (char *) edefs))
dd24e3da
NC
9055 break;
9056
252b5132 9057 vstart = ((char *) edefs) + idx;
54806181
AM
9058 if (vstart + sizeof (*edef) > endbuf)
9059 break;
252b5132
RH
9060
9061 edef = (Elf_External_Verdef *) vstart;
9062
9063 ent.vd_version = BYTE_GET (edef->vd_version);
9064 ent.vd_flags = BYTE_GET (edef->vd_flags);
9065 ent.vd_ndx = BYTE_GET (edef->vd_ndx);
9066 ent.vd_cnt = BYTE_GET (edef->vd_cnt);
9067 ent.vd_hash = BYTE_GET (edef->vd_hash);
9068 ent.vd_aux = BYTE_GET (edef->vd_aux);
9069 ent.vd_next = BYTE_GET (edef->vd_next);
9070
9071 printf (_(" %#06x: Rev: %d Flags: %s"),
9072 idx, ent.vd_version, get_ver_flags (ent.vd_flags));
9073
9074 printf (_(" Index: %d Cnt: %d "),
9075 ent.vd_ndx, ent.vd_cnt);
9076
dd24e3da 9077 /* Check for overflow. */
7e26601c 9078 if (ent.vd_aux > (size_t) (endbuf - vstart))
dd24e3da
NC
9079 break;
9080
252b5132
RH
9081 vstart += ent.vd_aux;
9082
9083 eaux = (Elf_External_Verdaux *) vstart;
9084
9085 aux.vda_name = BYTE_GET (eaux->vda_name);
9086 aux.vda_next = BYTE_GET (eaux->vda_next);
9087
d79b3d50
NC
9088 if (VALID_DYNAMIC_NAME (aux.vda_name))
9089 printf (_("Name: %s\n"), GET_DYNAMIC_NAME (aux.vda_name));
252b5132
RH
9090 else
9091 printf (_("Name index: %ld\n"), aux.vda_name);
9092
9093 isum = idx + ent.vd_aux;
9094
b34976b6 9095 for (j = 1; j < ent.vd_cnt; j++)
252b5132 9096 {
dd24e3da 9097 /* Check for overflow. */
7e26601c 9098 if (aux.vda_next > (size_t) (endbuf - vstart))
dd24e3da
NC
9099 break;
9100
252b5132
RH
9101 isum += aux.vda_next;
9102 vstart += aux.vda_next;
9103
9104 eaux = (Elf_External_Verdaux *) vstart;
54806181
AM
9105 if (vstart + sizeof (*eaux) > endbuf)
9106 break;
252b5132
RH
9107
9108 aux.vda_name = BYTE_GET (eaux->vda_name);
9109 aux.vda_next = BYTE_GET (eaux->vda_next);
9110
d79b3d50 9111 if (VALID_DYNAMIC_NAME (aux.vda_name))
252b5132 9112 printf (_(" %#06x: Parent %d: %s\n"),
d79b3d50 9113 isum, j, GET_DYNAMIC_NAME (aux.vda_name));
252b5132
RH
9114 else
9115 printf (_(" %#06x: Parent %d, name index: %ld\n"),
9116 isum, j, aux.vda_name);
9117 }
dd24e3da 9118
54806181
AM
9119 if (j < ent.vd_cnt)
9120 printf (_(" Version def aux past end of section\n"));
252b5132
RH
9121
9122 idx += ent.vd_next;
9123 }
dd24e3da 9124
54806181
AM
9125 if (cnt < section->sh_info)
9126 printf (_(" Version definition past end of section\n"));
252b5132
RH
9127
9128 free (edefs);
9129 }
9130 break;
103f02d3 9131
252b5132
RH
9132 case SHT_GNU_verneed:
9133 {
2cf0635d 9134 Elf_External_Verneed * eneed;
b34976b6
AM
9135 unsigned int idx;
9136 unsigned int cnt;
2cf0635d 9137 char * endbuf;
252b5132
RH
9138
9139 found = 1;
9140
72de5009 9141 printf (_("\nVersion needs section '%s' contains %u entries:\n"),
74e1a04b 9142 printable_section_name (section), section->sh_info);
252b5132
RH
9143
9144 printf (_(" Addr: 0x"));
9145 printf_vma (section->sh_addr);
72de5009 9146 printf (_(" Offset: %#08lx Link: %u (%s)\n"),
1b228002 9147 (unsigned long) section->sh_offset, section->sh_link,
74e1a04b 9148 printable_section_name_from_index (section->sh_link));
252b5132 9149
3f5e193b
NC
9150 eneed = (Elf_External_Verneed *) get_data (NULL, file,
9151 section->sh_offset, 1,
9152 section->sh_size,
9cf03b7e 9153 _("Version Needs section"));
a6e9f9df
AM
9154 if (!eneed)
9155 break;
59245841 9156 endbuf = (char *) eneed + section->sh_size;
252b5132
RH
9157
9158 for (idx = cnt = 0; cnt < section->sh_info; ++cnt)
9159 {
2cf0635d 9160 Elf_External_Verneed * entry;
b34976b6
AM
9161 Elf_Internal_Verneed ent;
9162 int j;
9163 int isum;
2cf0635d 9164 char * vstart;
252b5132 9165
7e26601c 9166 if (idx > (size_t) (endbuf - (char *) eneed))
dd24e3da
NC
9167 break;
9168
252b5132 9169 vstart = ((char *) eneed) + idx;
54806181
AM
9170 if (vstart + sizeof (*entry) > endbuf)
9171 break;
252b5132
RH
9172
9173 entry = (Elf_External_Verneed *) vstart;
9174
9175 ent.vn_version = BYTE_GET (entry->vn_version);
9176 ent.vn_cnt = BYTE_GET (entry->vn_cnt);
9177 ent.vn_file = BYTE_GET (entry->vn_file);
9178 ent.vn_aux = BYTE_GET (entry->vn_aux);
9179 ent.vn_next = BYTE_GET (entry->vn_next);
9180
9181 printf (_(" %#06x: Version: %d"), idx, ent.vn_version);
9182
d79b3d50
NC
9183 if (VALID_DYNAMIC_NAME (ent.vn_file))
9184 printf (_(" File: %s"), GET_DYNAMIC_NAME (ent.vn_file));
252b5132
RH
9185 else
9186 printf (_(" File: %lx"), ent.vn_file);
9187
9188 printf (_(" Cnt: %d\n"), ent.vn_cnt);
9189
dd24e3da 9190 /* Check for overflow. */
7e26601c 9191 if (ent.vn_aux > (size_t) (endbuf - vstart))
dd24e3da
NC
9192 break;
9193
252b5132
RH
9194 vstart += ent.vn_aux;
9195
9196 for (j = 0, isum = idx + ent.vn_aux; j < ent.vn_cnt; ++j)
9197 {
2cf0635d 9198 Elf_External_Vernaux * eaux;
b34976b6 9199 Elf_Internal_Vernaux aux;
252b5132 9200
54806181
AM
9201 if (vstart + sizeof (*eaux) > endbuf)
9202 break;
252b5132
RH
9203 eaux = (Elf_External_Vernaux *) vstart;
9204
9205 aux.vna_hash = BYTE_GET (eaux->vna_hash);
9206 aux.vna_flags = BYTE_GET (eaux->vna_flags);
9207 aux.vna_other = BYTE_GET (eaux->vna_other);
9208 aux.vna_name = BYTE_GET (eaux->vna_name);
9209 aux.vna_next = BYTE_GET (eaux->vna_next);
9210
d79b3d50 9211 if (VALID_DYNAMIC_NAME (aux.vna_name))
ecc2063b 9212 printf (_(" %#06x: Name: %s"),
d79b3d50 9213 isum, GET_DYNAMIC_NAME (aux.vna_name));
252b5132 9214 else
ecc2063b 9215 printf (_(" %#06x: Name index: %lx"),
252b5132
RH
9216 isum, aux.vna_name);
9217
9218 printf (_(" Flags: %s Version: %d\n"),
9219 get_ver_flags (aux.vna_flags), aux.vna_other);
9220
dd24e3da 9221 /* Check for overflow. */
7e26601c 9222 if (aux.vna_next > (size_t) (endbuf - vstart))
dd24e3da
NC
9223 break;
9224
252b5132
RH
9225 isum += aux.vna_next;
9226 vstart += aux.vna_next;
9227 }
9cf03b7e 9228
54806181 9229 if (j < ent.vn_cnt)
9cf03b7e 9230 warn (_("Missing Version Needs auxillary information\n"));
252b5132 9231
bcf83b2a 9232 if (ent.vn_next == 0 && cnt < section->sh_info - 1)
c24cf8b6
NC
9233 {
9234 warn (_("Corrupt Version Needs structure - offset to next structure is zero with entries still left to be processed\n"));
9235 cnt = section->sh_info;
9236 break;
9237 }
252b5132
RH
9238 idx += ent.vn_next;
9239 }
9cf03b7e 9240
54806181 9241 if (cnt < section->sh_info)
9cf03b7e 9242 warn (_("Missing Version Needs information\n"));
103f02d3 9243
252b5132
RH
9244 free (eneed);
9245 }
9246 break;
9247
9248 case SHT_GNU_versym:
9249 {
2cf0635d 9250 Elf_Internal_Shdr * link_section;
8b73c356
NC
9251 size_t total;
9252 unsigned int cnt;
2cf0635d
NC
9253 unsigned char * edata;
9254 unsigned short * data;
9255 char * strtab;
9256 Elf_Internal_Sym * symbols;
9257 Elf_Internal_Shdr * string_sec;
ba5cdace 9258 unsigned long num_syms;
d3ba0551 9259 long off;
252b5132 9260
4fbb74a6 9261 if (section->sh_link >= elf_header.e_shnum)
c256ffe7
JJ
9262 break;
9263
4fbb74a6 9264 link_section = section_headers + section->sh_link;
08d8fa11 9265 total = section->sh_size / sizeof (Elf_External_Versym);
252b5132 9266
4fbb74a6 9267 if (link_section->sh_link >= elf_header.e_shnum)
c256ffe7
JJ
9268 break;
9269
252b5132
RH
9270 found = 1;
9271
ba5cdace 9272 symbols = GET_ELF_SYMBOLS (file, link_section, & num_syms);
dd24e3da
NC
9273 if (symbols == NULL)
9274 break;
252b5132 9275
4fbb74a6 9276 string_sec = section_headers + link_section->sh_link;
252b5132 9277
3f5e193b
NC
9278 strtab = (char *) get_data (NULL, file, string_sec->sh_offset, 1,
9279 string_sec->sh_size,
9280 _("version string table"));
a6e9f9df 9281 if (!strtab)
0429c154
MS
9282 {
9283 free (symbols);
9284 break;
9285 }
252b5132 9286
8b73c356
NC
9287 printf (_("\nVersion symbols section '%s' contains %lu entries:\n"),
9288 printable_section_name (section), (unsigned long) total);
252b5132
RH
9289
9290 printf (_(" Addr: "));
9291 printf_vma (section->sh_addr);
72de5009 9292 printf (_(" Offset: %#08lx Link: %u (%s)\n"),
1b228002 9293 (unsigned long) section->sh_offset, section->sh_link,
74e1a04b 9294 printable_section_name (link_section));
252b5132 9295
d3ba0551
AM
9296 off = offset_from_vma (file,
9297 version_info[DT_VERSIONTAGIDX (DT_VERSYM)],
9298 total * sizeof (short));
3f5e193b
NC
9299 edata = (unsigned char *) get_data (NULL, file, off, total,
9300 sizeof (short),
9301 _("version symbol data"));
a6e9f9df
AM
9302 if (!edata)
9303 {
9304 free (strtab);
0429c154 9305 free (symbols);
a6e9f9df
AM
9306 break;
9307 }
252b5132 9308
3f5e193b 9309 data = (short unsigned int *) cmalloc (total, sizeof (short));
252b5132
RH
9310
9311 for (cnt = total; cnt --;)
b34976b6
AM
9312 data[cnt] = byte_get (edata + cnt * sizeof (short),
9313 sizeof (short));
252b5132
RH
9314
9315 free (edata);
9316
9317 for (cnt = 0; cnt < total; cnt += 4)
9318 {
9319 int j, nn;
00d93f34 9320 int check_def, check_need;
2cf0635d 9321 char * name;
252b5132
RH
9322
9323 printf (" %03x:", cnt);
9324
9325 for (j = 0; (j < 4) && (cnt + j) < total; ++j)
b34976b6 9326 switch (data[cnt + j])
252b5132
RH
9327 {
9328 case 0:
9329 fputs (_(" 0 (*local*) "), stdout);
9330 break;
9331
9332 case 1:
9333 fputs (_(" 1 (*global*) "), stdout);
9334 break;
9335
9336 default:
c244d050
NC
9337 nn = printf ("%4x%c", data[cnt + j] & VERSYM_VERSION,
9338 data[cnt + j] & VERSYM_HIDDEN ? 'h' : ' ');
252b5132 9339
dd24e3da 9340 /* If this index value is greater than the size of the symbols
ba5cdace
NC
9341 array, break to avoid an out-of-bounds read. */
9342 if ((unsigned long)(cnt + j) >= num_syms)
dd24e3da
NC
9343 {
9344 warn (_("invalid index into symbol array\n"));
9345 break;
9346 }
9347
00d93f34
JJ
9348 check_def = 1;
9349 check_need = 1;
4fbb74a6
AM
9350 if (symbols[cnt + j].st_shndx >= elf_header.e_shnum
9351 || section_headers[symbols[cnt + j].st_shndx].sh_type
c256ffe7 9352 != SHT_NOBITS)
252b5132 9353 {
b34976b6 9354 if (symbols[cnt + j].st_shndx == SHN_UNDEF)
00d93f34
JJ
9355 check_def = 0;
9356 else
9357 check_need = 0;
252b5132 9358 }
00d93f34
JJ
9359
9360 if (check_need
b34976b6 9361 && version_info[DT_VERSIONTAGIDX (DT_VERNEED)])
252b5132 9362 {
b34976b6
AM
9363 Elf_Internal_Verneed ivn;
9364 unsigned long offset;
252b5132 9365
d93f0186
NC
9366 offset = offset_from_vma
9367 (file, version_info[DT_VERSIONTAGIDX (DT_VERNEED)],
9368 sizeof (Elf_External_Verneed));
252b5132 9369
b34976b6 9370 do
252b5132 9371 {
b34976b6
AM
9372 Elf_Internal_Vernaux ivna;
9373 Elf_External_Verneed evn;
9374 Elf_External_Vernaux evna;
9375 unsigned long a_off;
252b5132 9376
59245841
NC
9377 if (get_data (&evn, file, offset, sizeof (evn), 1,
9378 _("version need")) == NULL)
9379 break;
0b4362b0 9380
252b5132
RH
9381 ivn.vn_aux = BYTE_GET (evn.vn_aux);
9382 ivn.vn_next = BYTE_GET (evn.vn_next);
9383
9384 a_off = offset + ivn.vn_aux;
9385
9386 do
9387 {
59245841
NC
9388 if (get_data (&evna, file, a_off, sizeof (evna),
9389 1, _("version need aux (2)")) == NULL)
9390 {
9391 ivna.vna_next = 0;
9392 ivna.vna_other = 0;
9393 }
9394 else
9395 {
9396 ivna.vna_next = BYTE_GET (evna.vna_next);
9397 ivna.vna_other = BYTE_GET (evna.vna_other);
9398 }
252b5132
RH
9399
9400 a_off += ivna.vna_next;
9401 }
b34976b6 9402 while (ivna.vna_other != data[cnt + j]
252b5132
RH
9403 && ivna.vna_next != 0);
9404
b34976b6 9405 if (ivna.vna_other == data[cnt + j])
252b5132
RH
9406 {
9407 ivna.vna_name = BYTE_GET (evna.vna_name);
9408
54806181
AM
9409 if (ivna.vna_name >= string_sec->sh_size)
9410 name = _("*invalid*");
9411 else
9412 name = strtab + ivna.vna_name;
252b5132 9413 nn += printf ("(%s%-*s",
16062207
ILT
9414 name,
9415 12 - (int) strlen (name),
252b5132 9416 ")");
00d93f34 9417 check_def = 0;
252b5132
RH
9418 break;
9419 }
9420
9421 offset += ivn.vn_next;
9422 }
9423 while (ivn.vn_next);
9424 }
00d93f34 9425
b34976b6
AM
9426 if (check_def && data[cnt + j] != 0x8001
9427 && version_info[DT_VERSIONTAGIDX (DT_VERDEF)])
252b5132 9428 {
b34976b6
AM
9429 Elf_Internal_Verdef ivd;
9430 Elf_External_Verdef evd;
9431 unsigned long offset;
252b5132 9432
d93f0186
NC
9433 offset = offset_from_vma
9434 (file, version_info[DT_VERSIONTAGIDX (DT_VERDEF)],
9435 sizeof evd);
252b5132
RH
9436
9437 do
9438 {
59245841
NC
9439 if (get_data (&evd, file, offset, sizeof (evd), 1,
9440 _("version def")) == NULL)
9441 {
9442 ivd.vd_next = 0;
3102e897
NC
9443 /* PR 17531: file: 046-1082287-0.004. */
9444 ivd.vd_ndx = (data[cnt + j] & VERSYM_VERSION) + 1;
9445 break;
59245841
NC
9446 }
9447 else
9448 {
9449 ivd.vd_next = BYTE_GET (evd.vd_next);
9450 ivd.vd_ndx = BYTE_GET (evd.vd_ndx);
9451 }
252b5132
RH
9452
9453 offset += ivd.vd_next;
9454 }
c244d050 9455 while (ivd.vd_ndx != (data[cnt + j] & VERSYM_VERSION)
252b5132
RH
9456 && ivd.vd_next != 0);
9457
c244d050 9458 if (ivd.vd_ndx == (data[cnt + j] & VERSYM_VERSION))
252b5132 9459 {
b34976b6
AM
9460 Elf_External_Verdaux evda;
9461 Elf_Internal_Verdaux ivda;
252b5132
RH
9462
9463 ivd.vd_aux = BYTE_GET (evd.vd_aux);
9464
59245841
NC
9465 if (get_data (&evda, file,
9466 offset - ivd.vd_next + ivd.vd_aux,
9467 sizeof (evda), 1,
9468 _("version def aux")) == NULL)
9469 break;
252b5132
RH
9470
9471 ivda.vda_name = BYTE_GET (evda.vda_name);
9472
54806181
AM
9473 if (ivda.vda_name >= string_sec->sh_size)
9474 name = _("*invalid*");
9475 else
9476 name = strtab + ivda.vda_name;
252b5132 9477 nn += printf ("(%s%-*s",
16062207
ILT
9478 name,
9479 12 - (int) strlen (name),
252b5132
RH
9480 ")");
9481 }
9482 }
9483
9484 if (nn < 18)
9485 printf ("%*c", 18 - nn, ' ');
9486 }
9487
9488 putchar ('\n');
9489 }
9490
9491 free (data);
9492 free (strtab);
9493 free (symbols);
9494 }
9495 break;
103f02d3 9496
252b5132
RH
9497 default:
9498 break;
9499 }
9500 }
9501
9502 if (! found)
9503 printf (_("\nNo version information found in this file.\n"));
9504
9505 return 1;
9506}
9507
d1133906 9508static const char *
d3ba0551 9509get_symbol_binding (unsigned int binding)
252b5132 9510{
b34976b6 9511 static char buff[32];
252b5132
RH
9512
9513 switch (binding)
9514 {
b34976b6
AM
9515 case STB_LOCAL: return "LOCAL";
9516 case STB_GLOBAL: return "GLOBAL";
9517 case STB_WEAK: return "WEAK";
252b5132
RH
9518 default:
9519 if (binding >= STB_LOPROC && binding <= STB_HIPROC)
e9e44622
JJ
9520 snprintf (buff, sizeof (buff), _("<processor specific>: %d"),
9521 binding);
252b5132 9522 else if (binding >= STB_LOOS && binding <= STB_HIOS)
3e7a7d11
NC
9523 {
9524 if (binding == STB_GNU_UNIQUE
9c55345c
TS
9525 && (elf_header.e_ident[EI_OSABI] == ELFOSABI_GNU
9526 /* GNU is still using the default value 0. */
3e7a7d11
NC
9527 || elf_header.e_ident[EI_OSABI] == ELFOSABI_NONE))
9528 return "UNIQUE";
9529 snprintf (buff, sizeof (buff), _("<OS specific>: %d"), binding);
9530 }
252b5132 9531 else
e9e44622 9532 snprintf (buff, sizeof (buff), _("<unknown>: %d"), binding);
252b5132
RH
9533 return buff;
9534 }
9535}
9536
d1133906 9537static const char *
d3ba0551 9538get_symbol_type (unsigned int type)
252b5132 9539{
b34976b6 9540 static char buff[32];
252b5132
RH
9541
9542 switch (type)
9543 {
b34976b6
AM
9544 case STT_NOTYPE: return "NOTYPE";
9545 case STT_OBJECT: return "OBJECT";
9546 case STT_FUNC: return "FUNC";
9547 case STT_SECTION: return "SECTION";
9548 case STT_FILE: return "FILE";
9549 case STT_COMMON: return "COMMON";
9550 case STT_TLS: return "TLS";
15ab5209
DB
9551 case STT_RELC: return "RELC";
9552 case STT_SRELC: return "SRELC";
252b5132
RH
9553 default:
9554 if (type >= STT_LOPROC && type <= STT_HIPROC)
df75f1af 9555 {
3510a7b8
NC
9556 if (elf_header.e_machine == EM_ARM && type == STT_ARM_TFUNC)
9557 return "THUMB_FUNC";
103f02d3 9558
351b4b40 9559 if (elf_header.e_machine == EM_SPARCV9 && type == STT_REGISTER)
103f02d3
UD
9560 return "REGISTER";
9561
9562 if (elf_header.e_machine == EM_PARISC && type == STT_PARISC_MILLI)
9563 return "PARISC_MILLI";
9564
e9e44622 9565 snprintf (buff, sizeof (buff), _("<processor specific>: %d"), type);
df75f1af 9566 }
252b5132 9567 else if (type >= STT_LOOS && type <= STT_HIOS)
103f02d3
UD
9568 {
9569 if (elf_header.e_machine == EM_PARISC)
9570 {
9571 if (type == STT_HP_OPAQUE)
9572 return "HP_OPAQUE";
9573 if (type == STT_HP_STUB)
9574 return "HP_STUB";
9575 }
9576
d8045f23 9577 if (type == STT_GNU_IFUNC
9c55345c 9578 && (elf_header.e_ident[EI_OSABI] == ELFOSABI_GNU
83c257ca 9579 || elf_header.e_ident[EI_OSABI] == ELFOSABI_FREEBSD
9c55345c 9580 /* GNU is still using the default value 0. */
d8045f23
NC
9581 || elf_header.e_ident[EI_OSABI] == ELFOSABI_NONE))
9582 return "IFUNC";
9583
e9e44622 9584 snprintf (buff, sizeof (buff), _("<OS specific>: %d"), type);
103f02d3 9585 }
252b5132 9586 else
e9e44622 9587 snprintf (buff, sizeof (buff), _("<unknown>: %d"), type);
252b5132
RH
9588 return buff;
9589 }
9590}
9591
d1133906 9592static const char *
d3ba0551 9593get_symbol_visibility (unsigned int visibility)
d1133906
NC
9594{
9595 switch (visibility)
9596 {
b34976b6
AM
9597 case STV_DEFAULT: return "DEFAULT";
9598 case STV_INTERNAL: return "INTERNAL";
9599 case STV_HIDDEN: return "HIDDEN";
d1133906
NC
9600 case STV_PROTECTED: return "PROTECTED";
9601 default: abort ();
9602 }
9603}
9604
5e2b0d47
NC
9605static const char *
9606get_mips_symbol_other (unsigned int other)
9607{
9608 switch (other)
9609 {
df58fc94
RS
9610 case STO_OPTIONAL:
9611 return "OPTIONAL";
9612 case STO_MIPS_PLT:
9613 return "MIPS PLT";
9614 case STO_MIPS_PIC:
9615 return "MIPS PIC";
9616 case STO_MICROMIPS:
9617 return "MICROMIPS";
9618 case STO_MICROMIPS | STO_MIPS_PIC:
9619 return "MICROMIPS, MIPS PIC";
9620 case STO_MIPS16:
9621 return "MIPS16";
9622 default:
9623 return NULL;
5e2b0d47
NC
9624 }
9625}
9626
28f997cf
TG
9627static const char *
9628get_ia64_symbol_other (unsigned int other)
9629{
9630 if (is_ia64_vms ())
9631 {
9632 static char res[32];
9633
9634 res[0] = 0;
9635
9636 /* Function types is for images and .STB files only. */
9637 switch (elf_header.e_type)
9638 {
9639 case ET_DYN:
9640 case ET_EXEC:
9641 switch (VMS_ST_FUNC_TYPE (other))
9642 {
9643 case VMS_SFT_CODE_ADDR:
9644 strcat (res, " CA");
9645 break;
9646 case VMS_SFT_SYMV_IDX:
9647 strcat (res, " VEC");
9648 break;
9649 case VMS_SFT_FD:
9650 strcat (res, " FD");
9651 break;
9652 case VMS_SFT_RESERVE:
9653 strcat (res, " RSV");
9654 break;
9655 default:
9656 abort ();
9657 }
9658 break;
9659 default:
9660 break;
9661 }
9662 switch (VMS_ST_LINKAGE (other))
9663 {
9664 case VMS_STL_IGNORE:
9665 strcat (res, " IGN");
9666 break;
9667 case VMS_STL_RESERVE:
9668 strcat (res, " RSV");
9669 break;
9670 case VMS_STL_STD:
9671 strcat (res, " STD");
9672 break;
9673 case VMS_STL_LNK:
9674 strcat (res, " LNK");
9675 break;
9676 default:
9677 abort ();
9678 }
9679
9680 if (res[0] != 0)
9681 return res + 1;
9682 else
9683 return res;
9684 }
9685 return NULL;
9686}
9687
6911b7dc
AM
9688static const char *
9689get_ppc64_symbol_other (unsigned int other)
9690{
9691 if (PPC64_LOCAL_ENTRY_OFFSET (other) != 0)
9692 {
9693 static char buf[32];
9694 snprintf (buf, sizeof buf, _("<localentry>: %d"),
9695 PPC64_LOCAL_ENTRY_OFFSET (other));
9696 return buf;
9697 }
9698 return NULL;
9699}
9700
5e2b0d47
NC
9701static const char *
9702get_symbol_other (unsigned int other)
9703{
9704 const char * result = NULL;
9705 static char buff [32];
9706
9707 if (other == 0)
9708 return "";
9709
9710 switch (elf_header.e_machine)
9711 {
9712 case EM_MIPS:
9713 result = get_mips_symbol_other (other);
28f997cf
TG
9714 break;
9715 case EM_IA_64:
9716 result = get_ia64_symbol_other (other);
9717 break;
6911b7dc
AM
9718 case EM_PPC64:
9719 result = get_ppc64_symbol_other (other);
9720 break;
5e2b0d47
NC
9721 default:
9722 break;
9723 }
9724
9725 if (result)
9726 return result;
9727
9728 snprintf (buff, sizeof buff, _("<other>: %x"), other);
9729 return buff;
9730}
9731
d1133906 9732static const char *
d3ba0551 9733get_symbol_index_type (unsigned int type)
252b5132 9734{
b34976b6 9735 static char buff[32];
5cf1065c 9736
252b5132
RH
9737 switch (type)
9738 {
b34976b6
AM
9739 case SHN_UNDEF: return "UND";
9740 case SHN_ABS: return "ABS";
9741 case SHN_COMMON: return "COM";
252b5132 9742 default:
9ce701e2
L
9743 if (type == SHN_IA_64_ANSI_COMMON
9744 && elf_header.e_machine == EM_IA_64
9745 && elf_header.e_ident[EI_OSABI] == ELFOSABI_HPUX)
9746 return "ANSI_COM";
8a9036a4 9747 else if ((elf_header.e_machine == EM_X86_64
7a9068fe
L
9748 || elf_header.e_machine == EM_L1OM
9749 || elf_header.e_machine == EM_K1OM)
3b22753a
L
9750 && type == SHN_X86_64_LCOMMON)
9751 return "LARGE_COM";
ac145307
BS
9752 else if ((type == SHN_MIPS_SCOMMON
9753 && elf_header.e_machine == EM_MIPS)
9754 || (type == SHN_TIC6X_SCOMMON
9755 && elf_header.e_machine == EM_TI_C6000))
172553c7
TS
9756 return "SCOM";
9757 else if (type == SHN_MIPS_SUNDEFINED
9758 && elf_header.e_machine == EM_MIPS)
9759 return "SUND";
9ce701e2 9760 else if (type >= SHN_LOPROC && type <= SHN_HIPROC)
4fbb74a6 9761 sprintf (buff, "PRC[0x%04x]", type & 0xffff);
252b5132 9762 else if (type >= SHN_LOOS && type <= SHN_HIOS)
4fbb74a6
AM
9763 sprintf (buff, "OS [0x%04x]", type & 0xffff);
9764 else if (type >= SHN_LORESERVE)
9765 sprintf (buff, "RSV[0x%04x]", type & 0xffff);
c6d8cab4 9766 else if (type >= elf_header.e_shnum)
e0a31db1 9767 sprintf (buff, _("bad section index[%3d]"), type);
252b5132 9768 else
232e7cb8 9769 sprintf (buff, "%3d", type);
5cf1065c 9770 break;
252b5132 9771 }
5cf1065c
NC
9772
9773 return buff;
252b5132
RH
9774}
9775
66543521 9776static bfd_vma *
8b73c356 9777get_dynamic_data (FILE * file, size_t number, unsigned int ent_size)
252b5132 9778{
2cf0635d
NC
9779 unsigned char * e_data;
9780 bfd_vma * i_data;
252b5132 9781
3102e897
NC
9782 /* Be kind to memory chekers (eg valgrind, address sanitizer) by not
9783 attempting to allocate memory when the read is bound to fail. */
9784 if (ent_size * number > current_file_size)
9785 {
9786 error (_("Invalid number of dynamic entries: %lu\n"),
9787 (unsigned long) number);
9788 return NULL;
9789 }
9790
3f5e193b 9791 e_data = (unsigned char *) cmalloc (number, ent_size);
252b5132
RH
9792 if (e_data == NULL)
9793 {
8b73c356
NC
9794 error (_("Out of memory reading %lu dynamic entries\n"),
9795 (unsigned long) number);
252b5132
RH
9796 return NULL;
9797 }
9798
66543521 9799 if (fread (e_data, ent_size, number, file) != number)
252b5132 9800 {
3102e897
NC
9801 error (_("Unable to read in %lu bytes of dynamic data\n"),
9802 (unsigned long) (number * ent_size));
9803 free (e_data);
252b5132
RH
9804 return NULL;
9805 }
9806
3f5e193b 9807 i_data = (bfd_vma *) cmalloc (number, sizeof (*i_data));
252b5132
RH
9808 if (i_data == NULL)
9809 {
8b73c356
NC
9810 error (_("Out of memory allocating space for %lu dynamic entries\n"),
9811 (unsigned long) number);
252b5132
RH
9812 free (e_data);
9813 return NULL;
9814 }
9815
9816 while (number--)
66543521 9817 i_data[number] = byte_get (e_data + number * ent_size, ent_size);
252b5132
RH
9818
9819 free (e_data);
9820
9821 return i_data;
9822}
9823
6bd1a22c
L
9824static void
9825print_dynamic_symbol (bfd_vma si, unsigned long hn)
9826{
2cf0635d 9827 Elf_Internal_Sym * psym;
6bd1a22c
L
9828 int n;
9829
6bd1a22c
L
9830 n = print_vma (si, DEC_5);
9831 if (n < 5)
0b4362b0 9832 fputs (&" "[n], stdout);
6bd1a22c 9833 printf (" %3lu: ", hn);
e0a31db1
NC
9834
9835 if (dynamic_symbols == NULL || si >= num_dynamic_syms)
9836 {
3102e897
NC
9837 printf (_("<No info available for dynamic symbol number %lu>\n"),
9838 (unsigned long) si);
e0a31db1
NC
9839 return;
9840 }
9841
9842 psym = dynamic_symbols + si;
6bd1a22c
L
9843 print_vma (psym->st_value, LONG_HEX);
9844 putchar (' ');
9845 print_vma (psym->st_size, DEC_5);
9846
f4be36b3
AM
9847 printf (" %-7s", get_symbol_type (ELF_ST_TYPE (psym->st_info)));
9848 printf (" %-6s", get_symbol_binding (ELF_ST_BIND (psym->st_info)));
9849 printf (" %-7s", get_symbol_visibility (ELF_ST_VISIBILITY (psym->st_other)));
6bd1a22c
L
9850 /* Check to see if any other bits in the st_other field are set.
9851 Note - displaying this information disrupts the layout of the
9852 table being generated, but for the moment this case is very
9853 rare. */
9854 if (psym->st_other ^ ELF_ST_VISIBILITY (psym->st_other))
9855 printf (" [%s] ", get_symbol_other (psym->st_other ^ ELF_ST_VISIBILITY (psym->st_other)));
9856 printf (" %3.3s ", get_symbol_index_type (psym->st_shndx));
9857 if (VALID_DYNAMIC_NAME (psym->st_name))
9858 print_symbol (25, GET_DYNAMIC_NAME (psym->st_name));
9859 else
2b692964 9860 printf (_(" <corrupt: %14ld>"), psym->st_name);
6bd1a22c
L
9861 putchar ('\n');
9862}
9863
e3c8793a 9864/* Dump the symbol table. */
252b5132 9865static int
2cf0635d 9866process_symbol_table (FILE * file)
252b5132 9867{
2cf0635d 9868 Elf_Internal_Shdr * section;
8b73c356
NC
9869 bfd_size_type nbuckets = 0;
9870 bfd_size_type nchains = 0;
2cf0635d
NC
9871 bfd_vma * buckets = NULL;
9872 bfd_vma * chains = NULL;
fdc90cb4 9873 bfd_vma ngnubuckets = 0;
2cf0635d
NC
9874 bfd_vma * gnubuckets = NULL;
9875 bfd_vma * gnuchains = NULL;
6bd1a22c 9876 bfd_vma gnusymidx = 0;
071436c6 9877 bfd_size_type ngnuchains = 0;
252b5132 9878
2c610e4b 9879 if (!do_syms && !do_dyn_syms && !do_histogram)
252b5132
RH
9880 return 1;
9881
6bd1a22c
L
9882 if (dynamic_info[DT_HASH]
9883 && (do_histogram
2c610e4b
L
9884 || (do_using_dynamic
9885 && !do_dyn_syms
9886 && dynamic_strings != NULL)))
252b5132 9887 {
66543521
AM
9888 unsigned char nb[8];
9889 unsigned char nc[8];
8b73c356 9890 unsigned int hash_ent_size = 4;
66543521
AM
9891
9892 if ((elf_header.e_machine == EM_ALPHA
9893 || elf_header.e_machine == EM_S390
9894 || elf_header.e_machine == EM_S390_OLD)
9895 && elf_header.e_ident[EI_CLASS] == ELFCLASS64)
9896 hash_ent_size = 8;
9897
fb52b2f4
NC
9898 if (fseek (file,
9899 (archive_file_offset
9900 + offset_from_vma (file, dynamic_info[DT_HASH],
9901 sizeof nb + sizeof nc)),
d93f0186 9902 SEEK_SET))
252b5132 9903 {
591a748a 9904 error (_("Unable to seek to start of dynamic information\n"));
d3a44ec6 9905 goto no_hash;
252b5132
RH
9906 }
9907
66543521 9908 if (fread (nb, hash_ent_size, 1, file) != 1)
252b5132
RH
9909 {
9910 error (_("Failed to read in number of buckets\n"));
d3a44ec6 9911 goto no_hash;
252b5132
RH
9912 }
9913
66543521 9914 if (fread (nc, hash_ent_size, 1, file) != 1)
252b5132
RH
9915 {
9916 error (_("Failed to read in number of chains\n"));
d3a44ec6 9917 goto no_hash;
252b5132
RH
9918 }
9919
66543521
AM
9920 nbuckets = byte_get (nb, hash_ent_size);
9921 nchains = byte_get (nc, hash_ent_size);
252b5132 9922
66543521
AM
9923 buckets = get_dynamic_data (file, nbuckets, hash_ent_size);
9924 chains = get_dynamic_data (file, nchains, hash_ent_size);
252b5132 9925
d3a44ec6 9926 no_hash:
252b5132 9927 if (buckets == NULL || chains == NULL)
d3a44ec6
JJ
9928 {
9929 if (do_using_dynamic)
9930 return 0;
9931 free (buckets);
9932 free (chains);
9933 buckets = NULL;
9934 chains = NULL;
9935 nbuckets = 0;
9936 nchains = 0;
9937 }
252b5132
RH
9938 }
9939
6bd1a22c
L
9940 if (dynamic_info_DT_GNU_HASH
9941 && (do_histogram
2c610e4b
L
9942 || (do_using_dynamic
9943 && !do_dyn_syms
9944 && dynamic_strings != NULL)))
252b5132 9945 {
6bd1a22c
L
9946 unsigned char nb[16];
9947 bfd_vma i, maxchain = 0xffffffff, bitmaskwords;
9948 bfd_vma buckets_vma;
9949
9950 if (fseek (file,
9951 (archive_file_offset
9952 + offset_from_vma (file, dynamic_info_DT_GNU_HASH,
9953 sizeof nb)),
9954 SEEK_SET))
9955 {
9956 error (_("Unable to seek to start of dynamic information\n"));
d3a44ec6 9957 goto no_gnu_hash;
6bd1a22c 9958 }
252b5132 9959
6bd1a22c
L
9960 if (fread (nb, 16, 1, file) != 1)
9961 {
9962 error (_("Failed to read in number of buckets\n"));
d3a44ec6 9963 goto no_gnu_hash;
6bd1a22c
L
9964 }
9965
9966 ngnubuckets = byte_get (nb, 4);
9967 gnusymidx = byte_get (nb + 4, 4);
9968 bitmaskwords = byte_get (nb + 8, 4);
9969 buckets_vma = dynamic_info_DT_GNU_HASH + 16;
f7a99963 9970 if (is_32bit_elf)
6bd1a22c 9971 buckets_vma += bitmaskwords * 4;
f7a99963 9972 else
6bd1a22c 9973 buckets_vma += bitmaskwords * 8;
252b5132 9974
6bd1a22c
L
9975 if (fseek (file,
9976 (archive_file_offset
9977 + offset_from_vma (file, buckets_vma, 4)),
9978 SEEK_SET))
252b5132 9979 {
6bd1a22c 9980 error (_("Unable to seek to start of dynamic information\n"));
d3a44ec6 9981 goto no_gnu_hash;
6bd1a22c
L
9982 }
9983
9984 gnubuckets = get_dynamic_data (file, ngnubuckets, 4);
252b5132 9985
6bd1a22c 9986 if (gnubuckets == NULL)
d3a44ec6 9987 goto no_gnu_hash;
6bd1a22c
L
9988
9989 for (i = 0; i < ngnubuckets; i++)
9990 if (gnubuckets[i] != 0)
9991 {
9992 if (gnubuckets[i] < gnusymidx)
9993 return 0;
9994
9995 if (maxchain == 0xffffffff || gnubuckets[i] > maxchain)
9996 maxchain = gnubuckets[i];
9997 }
9998
9999 if (maxchain == 0xffffffff)
d3a44ec6 10000 goto no_gnu_hash;
6bd1a22c
L
10001
10002 maxchain -= gnusymidx;
10003
10004 if (fseek (file,
10005 (archive_file_offset
10006 + offset_from_vma (file, buckets_vma
10007 + 4 * (ngnubuckets + maxchain), 4)),
10008 SEEK_SET))
10009 {
10010 error (_("Unable to seek to start of dynamic information\n"));
d3a44ec6 10011 goto no_gnu_hash;
6bd1a22c
L
10012 }
10013
10014 do
10015 {
10016 if (fread (nb, 4, 1, file) != 1)
252b5132 10017 {
6bd1a22c 10018 error (_("Failed to determine last chain length\n"));
d3a44ec6 10019 goto no_gnu_hash;
6bd1a22c 10020 }
252b5132 10021
6bd1a22c 10022 if (maxchain + 1 == 0)
d3a44ec6 10023 goto no_gnu_hash;
252b5132 10024
6bd1a22c
L
10025 ++maxchain;
10026 }
10027 while ((byte_get (nb, 4) & 1) == 0);
76da6bbe 10028
6bd1a22c
L
10029 if (fseek (file,
10030 (archive_file_offset
10031 + offset_from_vma (file, buckets_vma + 4 * ngnubuckets, 4)),
10032 SEEK_SET))
10033 {
10034 error (_("Unable to seek to start of dynamic information\n"));
d3a44ec6 10035 goto no_gnu_hash;
6bd1a22c
L
10036 }
10037
10038 gnuchains = get_dynamic_data (file, maxchain, 4);
071436c6 10039 ngnuchains = maxchain;
6bd1a22c 10040
d3a44ec6 10041 no_gnu_hash:
6bd1a22c 10042 if (gnuchains == NULL)
d3a44ec6
JJ
10043 {
10044 free (gnubuckets);
d3a44ec6
JJ
10045 gnubuckets = NULL;
10046 ngnubuckets = 0;
f64fddf1
NC
10047 if (do_using_dynamic)
10048 return 0;
d3a44ec6 10049 }
6bd1a22c
L
10050 }
10051
10052 if ((dynamic_info[DT_HASH] || dynamic_info_DT_GNU_HASH)
10053 && do_syms
10054 && do_using_dynamic
3102e897
NC
10055 && dynamic_strings != NULL
10056 && dynamic_symbols != NULL)
6bd1a22c
L
10057 {
10058 unsigned long hn;
10059
10060 if (dynamic_info[DT_HASH])
10061 {
10062 bfd_vma si;
10063
10064 printf (_("\nSymbol table for image:\n"));
10065 if (is_32bit_elf)
10066 printf (_(" Num Buc: Value Size Type Bind Vis Ndx Name\n"));
10067 else
10068 printf (_(" Num Buc: Value Size Type Bind Vis Ndx Name\n"));
10069
10070 for (hn = 0; hn < nbuckets; hn++)
10071 {
10072 if (! buckets[hn])
10073 continue;
10074
10075 for (si = buckets[hn]; si < nchains && si > 0; si = chains[si])
10076 print_dynamic_symbol (si, hn);
252b5132
RH
10077 }
10078 }
6bd1a22c
L
10079
10080 if (dynamic_info_DT_GNU_HASH)
10081 {
10082 printf (_("\nSymbol table of `.gnu.hash' for image:\n"));
10083 if (is_32bit_elf)
10084 printf (_(" Num Buc: Value Size Type Bind Vis Ndx Name\n"));
10085 else
10086 printf (_(" Num Buc: Value Size Type Bind Vis Ndx Name\n"));
10087
10088 for (hn = 0; hn < ngnubuckets; ++hn)
10089 if (gnubuckets[hn] != 0)
10090 {
10091 bfd_vma si = gnubuckets[hn];
10092 bfd_vma off = si - gnusymidx;
10093
10094 do
10095 {
10096 print_dynamic_symbol (si, hn);
10097 si++;
10098 }
071436c6 10099 while (off < ngnuchains && (gnuchains[off++] & 1) == 0);
6bd1a22c
L
10100 }
10101 }
252b5132 10102 }
8b73c356
NC
10103 else if ((do_dyn_syms || (do_syms && !do_using_dynamic))
10104 && section_headers != NULL)
252b5132 10105 {
b34976b6 10106 unsigned int i;
252b5132
RH
10107
10108 for (i = 0, section = section_headers;
10109 i < elf_header.e_shnum;
10110 i++, section++)
10111 {
b34976b6 10112 unsigned int si;
2cf0635d 10113 char * strtab = NULL;
c256ffe7 10114 unsigned long int strtab_size = 0;
2cf0635d
NC
10115 Elf_Internal_Sym * symtab;
10116 Elf_Internal_Sym * psym;
ba5cdace 10117 unsigned long num_syms;
252b5132 10118
2c610e4b
L
10119 if ((section->sh_type != SHT_SYMTAB
10120 && section->sh_type != SHT_DYNSYM)
10121 || (!do_syms
10122 && section->sh_type == SHT_SYMTAB))
252b5132
RH
10123 continue;
10124
dd24e3da
NC
10125 if (section->sh_entsize == 0)
10126 {
10127 printf (_("\nSymbol table '%s' has a sh_entsize of zero!\n"),
74e1a04b 10128 printable_section_name (section));
dd24e3da
NC
10129 continue;
10130 }
10131
252b5132 10132 printf (_("\nSymbol table '%s' contains %lu entries:\n"),
74e1a04b 10133 printable_section_name (section),
252b5132 10134 (unsigned long) (section->sh_size / section->sh_entsize));
dd24e3da 10135
f7a99963 10136 if (is_32bit_elf)
ca47b30c 10137 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
f7a99963 10138 else
ca47b30c 10139 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
252b5132 10140
ba5cdace 10141 symtab = GET_ELF_SYMBOLS (file, section, & num_syms);
252b5132
RH
10142 if (symtab == NULL)
10143 continue;
10144
10145 if (section->sh_link == elf_header.e_shstrndx)
c256ffe7
JJ
10146 {
10147 strtab = string_table;
10148 strtab_size = string_table_length;
10149 }
4fbb74a6 10150 else if (section->sh_link < elf_header.e_shnum)
252b5132 10151 {
2cf0635d 10152 Elf_Internal_Shdr * string_sec;
252b5132 10153
4fbb74a6 10154 string_sec = section_headers + section->sh_link;
252b5132 10155
3f5e193b
NC
10156 strtab = (char *) get_data (NULL, file, string_sec->sh_offset,
10157 1, string_sec->sh_size,
10158 _("string table"));
c256ffe7 10159 strtab_size = strtab != NULL ? string_sec->sh_size : 0;
252b5132
RH
10160 }
10161
ba5cdace 10162 for (si = 0, psym = symtab; si < num_syms; si++, psym++)
252b5132 10163 {
5e220199 10164 printf ("%6d: ", si);
f7a99963
NC
10165 print_vma (psym->st_value, LONG_HEX);
10166 putchar (' ');
10167 print_vma (psym->st_size, DEC_5);
d1133906
NC
10168 printf (" %-7s", get_symbol_type (ELF_ST_TYPE (psym->st_info)));
10169 printf (" %-6s", get_symbol_binding (ELF_ST_BIND (psym->st_info)));
f4be36b3 10170 printf (" %-7s", get_symbol_visibility (ELF_ST_VISIBILITY (psym->st_other)));
5e2b0d47
NC
10171 /* Check to see if any other bits in the st_other field are set.
10172 Note - displaying this information disrupts the layout of the
10173 table being generated, but for the moment this case is very rare. */
10174 if (psym->st_other ^ ELF_ST_VISIBILITY (psym->st_other))
10175 printf (" [%s] ", get_symbol_other (psym->st_other ^ ELF_ST_VISIBILITY (psym->st_other)));
31104126 10176 printf (" %4s ", get_symbol_index_type (psym->st_shndx));
c256ffe7 10177 print_symbol (25, psym->st_name < strtab_size
2b692964 10178 ? strtab + psym->st_name : _("<corrupt>"));
252b5132 10179
59245841
NC
10180 if (section->sh_type == SHT_DYNSYM
10181 && version_info[DT_VERSIONTAGIDX (DT_VERSYM)] != 0)
252b5132 10182 {
b34976b6
AM
10183 unsigned char data[2];
10184 unsigned short vers_data;
10185 unsigned long offset;
10186 int is_nobits;
10187 int check_def;
252b5132 10188
d93f0186
NC
10189 offset = offset_from_vma
10190 (file, version_info[DT_VERSIONTAGIDX (DT_VERSYM)],
10191 sizeof data + si * sizeof (vers_data));
252b5132 10192
59245841
NC
10193 if (get_data (&data, file, offset + si * sizeof (vers_data),
10194 sizeof (data), 1, _("version data")) == NULL)
10195 break;
252b5132
RH
10196
10197 vers_data = byte_get (data, 2);
10198
4fbb74a6
AM
10199 is_nobits = (psym->st_shndx < elf_header.e_shnum
10200 && section_headers[psym->st_shndx].sh_type
c256ffe7 10201 == SHT_NOBITS);
252b5132
RH
10202
10203 check_def = (psym->st_shndx != SHN_UNDEF);
10204
c244d050 10205 if ((vers_data & VERSYM_HIDDEN) || vers_data > 1)
252b5132 10206 {
b34976b6 10207 if (version_info[DT_VERSIONTAGIDX (DT_VERNEED)]
00d93f34 10208 && (is_nobits || ! check_def))
252b5132 10209 {
b34976b6
AM
10210 Elf_External_Verneed evn;
10211 Elf_Internal_Verneed ivn;
10212 Elf_Internal_Vernaux ivna;
252b5132
RH
10213
10214 /* We must test both. */
d93f0186
NC
10215 offset = offset_from_vma
10216 (file, version_info[DT_VERSIONTAGIDX (DT_VERNEED)],
10217 sizeof evn);
252b5132 10218
252b5132
RH
10219 do
10220 {
b34976b6 10221 unsigned long vna_off;
252b5132 10222
59245841
NC
10223 if (get_data (&evn, file, offset, sizeof (evn), 1,
10224 _("version need")) == NULL)
10225 {
10226 ivna.vna_next = 0;
10227 ivna.vna_other = 0;
10228 ivna.vna_name = 0;
10229 break;
10230 }
dd27201e
L
10231
10232 ivn.vn_aux = BYTE_GET (evn.vn_aux);
10233 ivn.vn_next = BYTE_GET (evn.vn_next);
10234
252b5132
RH
10235 vna_off = offset + ivn.vn_aux;
10236
10237 do
10238 {
b34976b6 10239 Elf_External_Vernaux evna;
252b5132 10240
59245841
NC
10241 if (get_data (&evna, file, vna_off,
10242 sizeof (evna), 1,
10243 _("version need aux (3)")) == NULL)
10244 {
10245 ivna.vna_next = 0;
10246 ivna.vna_other = 0;
10247 ivna.vna_name = 0;
10248 }
10249 else
10250 {
10251 ivna.vna_other = BYTE_GET (evna.vna_other);
10252 ivna.vna_next = BYTE_GET (evna.vna_next);
10253 ivna.vna_name = BYTE_GET (evna.vna_name);
10254 }
252b5132
RH
10255
10256 vna_off += ivna.vna_next;
10257 }
10258 while (ivna.vna_other != vers_data
10259 && ivna.vna_next != 0);
10260
10261 if (ivna.vna_other == vers_data)
10262 break;
10263
10264 offset += ivn.vn_next;
10265 }
10266 while (ivn.vn_next != 0);
10267
10268 if (ivna.vna_other == vers_data)
10269 {
10270 printf ("@%s (%d)",
c256ffe7 10271 ivna.vna_name < strtab_size
2b692964 10272 ? strtab + ivna.vna_name : _("<corrupt>"),
c256ffe7 10273 ivna.vna_other);
252b5132
RH
10274 check_def = 0;
10275 }
10276 else if (! is_nobits)
591a748a 10277 error (_("bad dynamic symbol\n"));
252b5132
RH
10278 else
10279 check_def = 1;
10280 }
10281
10282 if (check_def)
10283 {
00d93f34 10284 if (vers_data != 0x8001
b34976b6 10285 && version_info[DT_VERSIONTAGIDX (DT_VERDEF)])
252b5132 10286 {
b34976b6
AM
10287 Elf_Internal_Verdef ivd;
10288 Elf_Internal_Verdaux ivda;
10289 Elf_External_Verdaux evda;
91d6fa6a 10290 unsigned long off;
252b5132 10291
91d6fa6a 10292 off = offset_from_vma
d93f0186
NC
10293 (file,
10294 version_info[DT_VERSIONTAGIDX (DT_VERDEF)],
10295 sizeof (Elf_External_Verdef));
252b5132
RH
10296
10297 do
10298 {
b34976b6 10299 Elf_External_Verdef evd;
252b5132 10300
59245841
NC
10301 if (get_data (&evd, file, off, sizeof (evd),
10302 1, _("version def")) == NULL)
10303 {
10304 ivd.vd_ndx = 0;
10305 ivd.vd_aux = 0;
10306 ivd.vd_next = 0;
10307 }
10308 else
10309 {
10310 ivd.vd_ndx = BYTE_GET (evd.vd_ndx);
10311 ivd.vd_aux = BYTE_GET (evd.vd_aux);
10312 ivd.vd_next = BYTE_GET (evd.vd_next);
10313 }
252b5132 10314
91d6fa6a 10315 off += ivd.vd_next;
252b5132 10316 }
c244d050 10317 while (ivd.vd_ndx != (vers_data & VERSYM_VERSION)
252b5132
RH
10318 && ivd.vd_next != 0);
10319
91d6fa6a
NC
10320 off -= ivd.vd_next;
10321 off += ivd.vd_aux;
252b5132 10322
59245841
NC
10323 if (get_data (&evda, file, off, sizeof (evda),
10324 1, _("version def aux")) == NULL)
10325 break;
252b5132
RH
10326
10327 ivda.vda_name = BYTE_GET (evda.vda_name);
10328
10329 if (psym->st_name != ivda.vda_name)
c244d050 10330 printf ((vers_data & VERSYM_HIDDEN)
252b5132 10331 ? "@%s" : "@@%s",
c256ffe7 10332 ivda.vda_name < strtab_size
2b692964 10333 ? strtab + ivda.vda_name : _("<corrupt>"));
252b5132
RH
10334 }
10335 }
10336 }
10337 }
10338
10339 putchar ('\n');
10340 }
10341
10342 free (symtab);
10343 if (strtab != string_table)
10344 free (strtab);
10345 }
10346 }
10347 else if (do_syms)
10348 printf
10349 (_("\nDynamic symbol information is not available for displaying symbols.\n"));
10350
10351 if (do_histogram && buckets != NULL)
10352 {
2cf0635d
NC
10353 unsigned long * lengths;
10354 unsigned long * counts;
66543521
AM
10355 unsigned long hn;
10356 bfd_vma si;
10357 unsigned long maxlength = 0;
10358 unsigned long nzero_counts = 0;
10359 unsigned long nsyms = 0;
252b5132 10360
66543521
AM
10361 printf (_("\nHistogram for bucket list length (total of %lu buckets):\n"),
10362 (unsigned long) nbuckets);
252b5132 10363
3f5e193b 10364 lengths = (unsigned long *) calloc (nbuckets, sizeof (*lengths));
252b5132
RH
10365 if (lengths == NULL)
10366 {
8b73c356 10367 error (_("Out of memory allocating space for histogram buckets\n"));
252b5132
RH
10368 return 0;
10369 }
8b73c356
NC
10370
10371 printf (_(" Length Number %% of total Coverage\n"));
252b5132
RH
10372 for (hn = 0; hn < nbuckets; ++hn)
10373 {
f7a99963 10374 for (si = buckets[hn]; si > 0 && si < nchains; si = chains[si])
252b5132 10375 {
b34976b6 10376 ++nsyms;
252b5132 10377 if (maxlength < ++lengths[hn])
b34976b6 10378 ++maxlength;
049b0c3a
NC
10379
10380 /* PR binutils/17531: A corrupt binary could contain broken
10381 histogram data. Do not go into an infinite loop trying
10382 to process it. */
10383 if (chains[si] == si)
10384 {
10385 error (_("histogram chain links to itself\n"));
10386 break;
10387 }
252b5132
RH
10388 }
10389 }
10390
3f5e193b 10391 counts = (unsigned long *) calloc (maxlength + 1, sizeof (*counts));
252b5132
RH
10392 if (counts == NULL)
10393 {
b2e951ec 10394 free (lengths);
8b73c356 10395 error (_("Out of memory allocating space for histogram counts\n"));
252b5132
RH
10396 return 0;
10397 }
10398
10399 for (hn = 0; hn < nbuckets; ++hn)
b34976b6 10400 ++counts[lengths[hn]];
252b5132 10401
103f02d3 10402 if (nbuckets > 0)
252b5132 10403 {
66543521
AM
10404 unsigned long i;
10405 printf (" 0 %-10lu (%5.1f%%)\n",
103f02d3 10406 counts[0], (counts[0] * 100.0) / nbuckets);
66543521 10407 for (i = 1; i <= maxlength; ++i)
103f02d3 10408 {
66543521
AM
10409 nzero_counts += counts[i] * i;
10410 printf ("%7lu %-10lu (%5.1f%%) %5.1f%%\n",
10411 i, counts[i], (counts[i] * 100.0) / nbuckets,
103f02d3
UD
10412 (nzero_counts * 100.0) / nsyms);
10413 }
252b5132
RH
10414 }
10415
10416 free (counts);
10417 free (lengths);
10418 }
10419
10420 if (buckets != NULL)
10421 {
10422 free (buckets);
10423 free (chains);
10424 }
10425
d3a44ec6 10426 if (do_histogram && gnubuckets != NULL)
fdc90cb4 10427 {
2cf0635d
NC
10428 unsigned long * lengths;
10429 unsigned long * counts;
fdc90cb4
JJ
10430 unsigned long hn;
10431 unsigned long maxlength = 0;
10432 unsigned long nzero_counts = 0;
10433 unsigned long nsyms = 0;
fdc90cb4 10434
8b73c356
NC
10435 printf (_("\nHistogram for `.gnu.hash' bucket list length (total of %lu buckets):\n"),
10436 (unsigned long) ngnubuckets);
10437
3f5e193b 10438 lengths = (unsigned long *) calloc (ngnubuckets, sizeof (*lengths));
fdc90cb4
JJ
10439 if (lengths == NULL)
10440 {
8b73c356 10441 error (_("Out of memory allocating space for gnu histogram buckets\n"));
fdc90cb4
JJ
10442 return 0;
10443 }
10444
fdc90cb4
JJ
10445 printf (_(" Length Number %% of total Coverage\n"));
10446
10447 for (hn = 0; hn < ngnubuckets; ++hn)
10448 if (gnubuckets[hn] != 0)
10449 {
10450 bfd_vma off, length = 1;
10451
6bd1a22c 10452 for (off = gnubuckets[hn] - gnusymidx;
071436c6
NC
10453 /* PR 17531 file: 010-77222-0.004. */
10454 off < ngnuchains && (gnuchains[off] & 1) == 0;
10455 ++off)
fdc90cb4
JJ
10456 ++length;
10457 lengths[hn] = length;
10458 if (length > maxlength)
10459 maxlength = length;
10460 nsyms += length;
10461 }
10462
3f5e193b 10463 counts = (unsigned long *) calloc (maxlength + 1, sizeof (*counts));
fdc90cb4
JJ
10464 if (counts == NULL)
10465 {
b2e951ec 10466 free (lengths);
8b73c356 10467 error (_("Out of memory allocating space for gnu histogram counts\n"));
fdc90cb4
JJ
10468 return 0;
10469 }
10470
10471 for (hn = 0; hn < ngnubuckets; ++hn)
10472 ++counts[lengths[hn]];
10473
10474 if (ngnubuckets > 0)
10475 {
10476 unsigned long j;
10477 printf (" 0 %-10lu (%5.1f%%)\n",
10478 counts[0], (counts[0] * 100.0) / ngnubuckets);
10479 for (j = 1; j <= maxlength; ++j)
10480 {
10481 nzero_counts += counts[j] * j;
10482 printf ("%7lu %-10lu (%5.1f%%) %5.1f%%\n",
10483 j, counts[j], (counts[j] * 100.0) / ngnubuckets,
10484 (nzero_counts * 100.0) / nsyms);
10485 }
10486 }
10487
10488 free (counts);
10489 free (lengths);
10490 free (gnubuckets);
10491 free (gnuchains);
10492 }
10493
252b5132
RH
10494 return 1;
10495}
10496
10497static int
2cf0635d 10498process_syminfo (FILE * file ATTRIBUTE_UNUSED)
252b5132 10499{
b4c96d0d 10500 unsigned int i;
252b5132
RH
10501
10502 if (dynamic_syminfo == NULL
10503 || !do_dynamic)
10504 /* No syminfo, this is ok. */
10505 return 1;
10506
10507 /* There better should be a dynamic symbol section. */
10508 if (dynamic_symbols == NULL || dynamic_strings == NULL)
10509 return 0;
10510
10511 if (dynamic_addr)
10512 printf (_("\nDynamic info segment at offset 0x%lx contains %d entries:\n"),
10513 dynamic_syminfo_offset, dynamic_syminfo_nent);
10514
10515 printf (_(" Num: Name BoundTo Flags\n"));
10516 for (i = 0; i < dynamic_syminfo_nent; ++i)
10517 {
10518 unsigned short int flags = dynamic_syminfo[i].si_flags;
10519
31104126 10520 printf ("%4d: ", i);
4082ef84
NC
10521 if (i >= num_dynamic_syms)
10522 printf (_("<corrupt index>"));
10523 else if (VALID_DYNAMIC_NAME (dynamic_symbols[i].st_name))
d79b3d50
NC
10524 print_symbol (30, GET_DYNAMIC_NAME (dynamic_symbols[i].st_name));
10525 else
2b692964 10526 printf (_("<corrupt: %19ld>"), dynamic_symbols[i].st_name);
31104126 10527 putchar (' ');
252b5132
RH
10528
10529 switch (dynamic_syminfo[i].si_boundto)
10530 {
10531 case SYMINFO_BT_SELF:
10532 fputs ("SELF ", stdout);
10533 break;
10534 case SYMINFO_BT_PARENT:
10535 fputs ("PARENT ", stdout);
10536 break;
10537 default:
10538 if (dynamic_syminfo[i].si_boundto > 0
d79b3d50
NC
10539 && dynamic_syminfo[i].si_boundto < dynamic_nent
10540 && VALID_DYNAMIC_NAME (dynamic_section[dynamic_syminfo[i].si_boundto].d_un.d_val))
31104126 10541 {
d79b3d50 10542 print_symbol (10, GET_DYNAMIC_NAME (dynamic_section[dynamic_syminfo[i].si_boundto].d_un.d_val));
31104126
NC
10543 putchar (' ' );
10544 }
252b5132
RH
10545 else
10546 printf ("%-10d ", dynamic_syminfo[i].si_boundto);
10547 break;
10548 }
10549
10550 if (flags & SYMINFO_FLG_DIRECT)
10551 printf (" DIRECT");
10552 if (flags & SYMINFO_FLG_PASSTHRU)
10553 printf (" PASSTHRU");
10554 if (flags & SYMINFO_FLG_COPY)
10555 printf (" COPY");
10556 if (flags & SYMINFO_FLG_LAZYLOAD)
10557 printf (" LAZYLOAD");
10558
10559 puts ("");
10560 }
10561
10562 return 1;
10563}
10564
cf13d699
NC
10565/* Check to see if the given reloc needs to be handled in a target specific
10566 manner. If so then process the reloc and return TRUE otherwise return
10567 FALSE. */
09c11c86 10568
cf13d699
NC
10569static bfd_boolean
10570target_specific_reloc_handling (Elf_Internal_Rela * reloc,
10571 unsigned char * start,
10572 Elf_Internal_Sym * symtab)
252b5132 10573{
cf13d699 10574 unsigned int reloc_type = get_reloc_type (reloc->r_info);
252b5132 10575
cf13d699 10576 switch (elf_header.e_machine)
252b5132 10577 {
13761a11
NC
10578 case EM_MSP430:
10579 case EM_MSP430_OLD:
10580 {
10581 static Elf_Internal_Sym * saved_sym = NULL;
10582
10583 switch (reloc_type)
10584 {
10585 case 10: /* R_MSP430_SYM_DIFF */
10586 if (uses_msp430x_relocs ())
10587 break;
10588 case 21: /* R_MSP430X_SYM_DIFF */
10589 saved_sym = symtab + get_reloc_symindex (reloc->r_info);
10590 return TRUE;
10591
10592 case 1: /* R_MSP430_32 or R_MSP430_ABS32 */
10593 case 3: /* R_MSP430_16 or R_MSP430_ABS8 */
10594 goto handle_sym_diff;
0b4362b0 10595
13761a11
NC
10596 case 5: /* R_MSP430_16_BYTE */
10597 case 9: /* R_MSP430_8 */
10598 if (uses_msp430x_relocs ())
10599 break;
10600 goto handle_sym_diff;
10601
10602 case 2: /* R_MSP430_ABS16 */
10603 case 15: /* R_MSP430X_ABS16 */
10604 if (! uses_msp430x_relocs ())
10605 break;
10606 goto handle_sym_diff;
0b4362b0 10607
13761a11
NC
10608 handle_sym_diff:
10609 if (saved_sym != NULL)
10610 {
10611 bfd_vma value;
10612
10613 value = reloc->r_addend
10614 + (symtab[get_reloc_symindex (reloc->r_info)].st_value
10615 - saved_sym->st_value);
10616
10617 byte_put (start + reloc->r_offset, value, reloc_type == 1 ? 4 : 2);
10618
10619 saved_sym = NULL;
10620 return TRUE;
10621 }
10622 break;
10623
10624 default:
10625 if (saved_sym != NULL)
071436c6 10626 error (_("Unhandled MSP430 reloc type found after SYM_DIFF reloc\n"));
13761a11
NC
10627 break;
10628 }
10629 break;
10630 }
10631
cf13d699
NC
10632 case EM_MN10300:
10633 case EM_CYGNUS_MN10300:
10634 {
10635 static Elf_Internal_Sym * saved_sym = NULL;
252b5132 10636
cf13d699
NC
10637 switch (reloc_type)
10638 {
10639 case 34: /* R_MN10300_ALIGN */
10640 return TRUE;
10641 case 33: /* R_MN10300_SYM_DIFF */
10642 saved_sym = symtab + get_reloc_symindex (reloc->r_info);
10643 return TRUE;
10644 case 1: /* R_MN10300_32 */
10645 case 2: /* R_MN10300_16 */
10646 if (saved_sym != NULL)
10647 {
10648 bfd_vma value;
252b5132 10649
cf13d699
NC
10650 value = reloc->r_addend
10651 + (symtab[get_reloc_symindex (reloc->r_info)].st_value
10652 - saved_sym->st_value);
252b5132 10653
cf13d699 10654 byte_put (start + reloc->r_offset, value, reloc_type == 1 ? 4 : 2);
252b5132 10655
cf13d699
NC
10656 saved_sym = NULL;
10657 return TRUE;
10658 }
10659 break;
10660 default:
10661 if (saved_sym != NULL)
071436c6 10662 error (_("Unhandled MN10300 reloc type found after SYM_DIFF reloc\n"));
cf13d699
NC
10663 break;
10664 }
10665 break;
10666 }
252b5132
RH
10667 }
10668
cf13d699 10669 return FALSE;
252b5132
RH
10670}
10671
aca88567
NC
10672/* Returns TRUE iff RELOC_TYPE is a 32-bit absolute RELA relocation used in
10673 DWARF debug sections. This is a target specific test. Note - we do not
10674 go through the whole including-target-headers-multiple-times route, (as
10675 we have already done with <elf/h8.h>) because this would become very
10676 messy and even then this function would have to contain target specific
10677 information (the names of the relocs instead of their numeric values).
10678 FIXME: This is not the correct way to solve this problem. The proper way
10679 is to have target specific reloc sizing and typing functions created by
10680 the reloc-macros.h header, in the same way that it already creates the
10681 reloc naming functions. */
10682
10683static bfd_boolean
10684is_32bit_abs_reloc (unsigned int reloc_type)
10685{
10686 switch (elf_header.e_machine)
10687 {
41e92641
NC
10688 case EM_386:
10689 case EM_486:
10690 return reloc_type == 1; /* R_386_32. */
aca88567
NC
10691 case EM_68K:
10692 return reloc_type == 1; /* R_68K_32. */
10693 case EM_860:
10694 return reloc_type == 1; /* R_860_32. */
137b6b5f
AM
10695 case EM_960:
10696 return reloc_type == 2; /* R_960_32. */
a06ea964
NC
10697 case EM_AARCH64:
10698 return reloc_type == 258; /* R_AARCH64_ABS32 */
aca88567 10699 case EM_ALPHA:
137b6b5f 10700 return reloc_type == 1; /* R_ALPHA_REFLONG. */
41e92641
NC
10701 case EM_ARC:
10702 return reloc_type == 1; /* R_ARC_32. */
10703 case EM_ARM:
10704 return reloc_type == 2; /* R_ARM_ABS32 */
cb8f3167 10705 case EM_AVR_OLD:
aca88567
NC
10706 case EM_AVR:
10707 return reloc_type == 1;
cfb8c092
NC
10708 case EM_ADAPTEVA_EPIPHANY:
10709 return reloc_type == 3;
aca88567
NC
10710 case EM_BLACKFIN:
10711 return reloc_type == 0x12; /* R_byte4_data. */
10712 case EM_CRIS:
10713 return reloc_type == 3; /* R_CRIS_32. */
10714 case EM_CR16:
10715 return reloc_type == 3; /* R_CR16_NUM32. */
10716 case EM_CRX:
10717 return reloc_type == 15; /* R_CRX_NUM32. */
10718 case EM_CYGNUS_FRV:
10719 return reloc_type == 1;
41e92641
NC
10720 case EM_CYGNUS_D10V:
10721 case EM_D10V:
10722 return reloc_type == 6; /* R_D10V_32. */
aca88567
NC
10723 case EM_CYGNUS_D30V:
10724 case EM_D30V:
10725 return reloc_type == 12; /* R_D30V_32_NORMAL. */
41e92641
NC
10726 case EM_DLX:
10727 return reloc_type == 3; /* R_DLX_RELOC_32. */
aca88567
NC
10728 case EM_CYGNUS_FR30:
10729 case EM_FR30:
10730 return reloc_type == 3; /* R_FR30_32. */
10731 case EM_H8S:
10732 case EM_H8_300:
10733 case EM_H8_300H:
10734 return reloc_type == 1; /* R_H8_DIR32. */
3730236a
NC
10735 case EM_IA_64:
10736 return reloc_type == 0x65; /* R_IA64_SECREL32LSB. */
aca88567
NC
10737 case EM_IP2K_OLD:
10738 case EM_IP2K:
10739 return reloc_type == 2; /* R_IP2K_32. */
10740 case EM_IQ2000:
10741 return reloc_type == 2; /* R_IQ2000_32. */
84e94c90
NC
10742 case EM_LATTICEMICO32:
10743 return reloc_type == 3; /* R_LM32_32. */
ff7eeb89 10744 case EM_M32C_OLD:
aca88567
NC
10745 case EM_M32C:
10746 return reloc_type == 3; /* R_M32C_32. */
10747 case EM_M32R:
10748 return reloc_type == 34; /* R_M32R_32_RELA. */
10749 case EM_MCORE:
10750 return reloc_type == 1; /* R_MCORE_ADDR32. */
10751 case EM_CYGNUS_MEP:
10752 return reloc_type == 4; /* R_MEP_32. */
a3c62988
NC
10753 case EM_METAG:
10754 return reloc_type == 2; /* R_METAG_ADDR32. */
137b6b5f
AM
10755 case EM_MICROBLAZE:
10756 return reloc_type == 1; /* R_MICROBLAZE_32. */
aca88567
NC
10757 case EM_MIPS:
10758 return reloc_type == 2; /* R_MIPS_32. */
10759 case EM_MMIX:
10760 return reloc_type == 4; /* R_MMIX_32. */
10761 case EM_CYGNUS_MN10200:
10762 case EM_MN10200:
10763 return reloc_type == 1; /* R_MN10200_32. */
10764 case EM_CYGNUS_MN10300:
10765 case EM_MN10300:
10766 return reloc_type == 1; /* R_MN10300_32. */
5506d11a
AM
10767 case EM_MOXIE:
10768 return reloc_type == 1; /* R_MOXIE_32. */
aca88567
NC
10769 case EM_MSP430_OLD:
10770 case EM_MSP430:
13761a11 10771 return reloc_type == 1; /* R_MSP430_32 or R_MSP320_ABS32. */
aca88567
NC
10772 case EM_MT:
10773 return reloc_type == 2; /* R_MT_32. */
35c08157
KLC
10774 case EM_NDS32:
10775 return reloc_type == 20; /* R_NDS32_RELA. */
3e0873ac 10776 case EM_ALTERA_NIOS2:
36591ba1 10777 return reloc_type == 12; /* R_NIOS2_BFD_RELOC_32. */
3e0873ac
NC
10778 case EM_NIOS32:
10779 return reloc_type == 1; /* R_NIOS_32. */
73589c9d
CS
10780 case EM_OR1K:
10781 return reloc_type == 1; /* R_OR1K_32. */
aca88567 10782 case EM_PARISC:
5fda8eca
NC
10783 return (reloc_type == 1 /* R_PARISC_DIR32. */
10784 || reloc_type == 41); /* R_PARISC_SECREL32. */
aca88567
NC
10785 case EM_PJ:
10786 case EM_PJ_OLD:
10787 return reloc_type == 1; /* R_PJ_DATA_DIR32. */
10788 case EM_PPC64:
10789 return reloc_type == 1; /* R_PPC64_ADDR32. */
10790 case EM_PPC:
10791 return reloc_type == 1; /* R_PPC_ADDR32. */
99c513f6
DD
10792 case EM_RL78:
10793 return reloc_type == 1; /* R_RL78_DIR32. */
c7927a3c
NC
10794 case EM_RX:
10795 return reloc_type == 1; /* R_RX_DIR32. */
aca88567
NC
10796 case EM_S370:
10797 return reloc_type == 1; /* R_I370_ADDR31. */
10798 case EM_S390_OLD:
10799 case EM_S390:
10800 return reloc_type == 4; /* R_S390_32. */
41e92641
NC
10801 case EM_SCORE:
10802 return reloc_type == 8; /* R_SCORE_ABS32. */
aca88567
NC
10803 case EM_SH:
10804 return reloc_type == 1; /* R_SH_DIR32. */
10805 case EM_SPARC32PLUS:
10806 case EM_SPARCV9:
10807 case EM_SPARC:
10808 return reloc_type == 3 /* R_SPARC_32. */
10809 || reloc_type == 23; /* R_SPARC_UA32. */
a7dd7d05
AM
10810 case EM_SPU:
10811 return reloc_type == 6; /* R_SPU_ADDR32 */
40b36596
JM
10812 case EM_TI_C6000:
10813 return reloc_type == 1; /* R_C6000_ABS32. */
aa137e4d
NC
10814 case EM_TILEGX:
10815 return reloc_type == 2; /* R_TILEGX_32. */
10816 case EM_TILEPRO:
10817 return reloc_type == 1; /* R_TILEPRO_32. */
aca88567
NC
10818 case EM_CYGNUS_V850:
10819 case EM_V850:
10820 return reloc_type == 6; /* R_V850_ABS32. */
708e2187
NC
10821 case EM_V800:
10822 return reloc_type == 0x33; /* R_V810_WORD. */
aca88567
NC
10823 case EM_VAX:
10824 return reloc_type == 1; /* R_VAX_32. */
10825 case EM_X86_64:
8a9036a4 10826 case EM_L1OM:
7a9068fe 10827 case EM_K1OM:
aca88567 10828 return reloc_type == 10; /* R_X86_64_32. */
c29aca4a
NC
10829 case EM_XC16X:
10830 case EM_C166:
10831 return reloc_type == 3; /* R_XC16C_ABS_32. */
f6c1a2d5
NC
10832 case EM_XGATE:
10833 return reloc_type == 4; /* R_XGATE_32. */
aca88567
NC
10834 case EM_XSTORMY16:
10835 return reloc_type == 1; /* R_XSTROMY16_32. */
10836 case EM_XTENSA_OLD:
10837 case EM_XTENSA:
10838 return reloc_type == 1; /* R_XTENSA_32. */
aca88567
NC
10839 default:
10840 error (_("Missing knowledge of 32-bit reloc types used in DWARF sections of machine number %d\n"),
10841 elf_header.e_machine);
10842 abort ();
10843 }
10844}
10845
10846/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
10847 a 32-bit pc-relative RELA relocation used in DWARF debug sections. */
10848
10849static bfd_boolean
10850is_32bit_pcrel_reloc (unsigned int reloc_type)
10851{
10852 switch (elf_header.e_machine)
10853 {
41e92641
NC
10854 case EM_386:
10855 case EM_486:
3e0873ac 10856 return reloc_type == 2; /* R_386_PC32. */
aca88567 10857 case EM_68K:
3e0873ac 10858 return reloc_type == 4; /* R_68K_PC32. */
a06ea964
NC
10859 case EM_AARCH64:
10860 return reloc_type == 261; /* R_AARCH64_PREL32 */
cfb8c092
NC
10861 case EM_ADAPTEVA_EPIPHANY:
10862 return reloc_type == 6;
aca88567
NC
10863 case EM_ALPHA:
10864 return reloc_type == 10; /* R_ALPHA_SREL32. */
41e92641 10865 case EM_ARM:
3e0873ac 10866 return reloc_type == 3; /* R_ARM_REL32 */
137b6b5f
AM
10867 case EM_MICROBLAZE:
10868 return reloc_type == 2; /* R_MICROBLAZE_32_PCREL. */
73589c9d
CS
10869 case EM_OR1K:
10870 return reloc_type == 9; /* R_OR1K_32_PCREL. */
aca88567 10871 case EM_PARISC:
85acf597 10872 return reloc_type == 9; /* R_PARISC_PCREL32. */
aca88567
NC
10873 case EM_PPC:
10874 return reloc_type == 26; /* R_PPC_REL32. */
10875 case EM_PPC64:
3e0873ac 10876 return reloc_type == 26; /* R_PPC64_REL32. */
aca88567
NC
10877 case EM_S390_OLD:
10878 case EM_S390:
3e0873ac 10879 return reloc_type == 5; /* R_390_PC32. */
aca88567 10880 case EM_SH:
3e0873ac 10881 return reloc_type == 2; /* R_SH_REL32. */
aca88567
NC
10882 case EM_SPARC32PLUS:
10883 case EM_SPARCV9:
10884 case EM_SPARC:
3e0873ac 10885 return reloc_type == 6; /* R_SPARC_DISP32. */
a7dd7d05
AM
10886 case EM_SPU:
10887 return reloc_type == 13; /* R_SPU_REL32. */
aa137e4d
NC
10888 case EM_TILEGX:
10889 return reloc_type == 6; /* R_TILEGX_32_PCREL. */
10890 case EM_TILEPRO:
10891 return reloc_type == 4; /* R_TILEPRO_32_PCREL. */
aca88567 10892 case EM_X86_64:
8a9036a4 10893 case EM_L1OM:
7a9068fe 10894 case EM_K1OM:
3e0873ac 10895 return reloc_type == 2; /* R_X86_64_PC32. */
2fcb9706
BW
10896 case EM_XTENSA_OLD:
10897 case EM_XTENSA:
10898 return reloc_type == 14; /* R_XTENSA_32_PCREL. */
aca88567
NC
10899 default:
10900 /* Do not abort or issue an error message here. Not all targets use
10901 pc-relative 32-bit relocs in their DWARF debug information and we
10902 have already tested for target coverage in is_32bit_abs_reloc. A
cf13d699
NC
10903 more helpful warning message will be generated by apply_relocations
10904 anyway, so just return. */
aca88567
NC
10905 return FALSE;
10906 }
10907}
10908
10909/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
10910 a 64-bit absolute RELA relocation used in DWARF debug sections. */
10911
10912static bfd_boolean
10913is_64bit_abs_reloc (unsigned int reloc_type)
10914{
10915 switch (elf_header.e_machine)
10916 {
a06ea964
NC
10917 case EM_AARCH64:
10918 return reloc_type == 257; /* R_AARCH64_ABS64. */
aca88567
NC
10919 case EM_ALPHA:
10920 return reloc_type == 2; /* R_ALPHA_REFQUAD. */
3730236a
NC
10921 case EM_IA_64:
10922 return reloc_type == 0x27; /* R_IA64_DIR64LSB. */
3e0873ac
NC
10923 case EM_PARISC:
10924 return reloc_type == 80; /* R_PARISC_DIR64. */
aca88567
NC
10925 case EM_PPC64:
10926 return reloc_type == 38; /* R_PPC64_ADDR64. */
10927 case EM_SPARC32PLUS:
10928 case EM_SPARCV9:
10929 case EM_SPARC:
10930 return reloc_type == 54; /* R_SPARC_UA64. */
10931 case EM_X86_64:
8a9036a4 10932 case EM_L1OM:
7a9068fe 10933 case EM_K1OM:
aca88567 10934 return reloc_type == 1; /* R_X86_64_64. */
e819ade1
AS
10935 case EM_S390_OLD:
10936 case EM_S390:
aa137e4d
NC
10937 return reloc_type == 22; /* R_S390_64. */
10938 case EM_TILEGX:
10939 return reloc_type == 1; /* R_TILEGX_64. */
85a82265 10940 case EM_MIPS:
aa137e4d 10941 return reloc_type == 18; /* R_MIPS_64. */
aca88567
NC
10942 default:
10943 return FALSE;
10944 }
10945}
10946
85acf597
RH
10947/* Like is_32bit_pcrel_reloc except that it returns TRUE iff RELOC_TYPE is
10948 a 64-bit pc-relative RELA relocation used in DWARF debug sections. */
10949
10950static bfd_boolean
10951is_64bit_pcrel_reloc (unsigned int reloc_type)
10952{
10953 switch (elf_header.e_machine)
10954 {
a06ea964
NC
10955 case EM_AARCH64:
10956 return reloc_type == 260; /* R_AARCH64_PREL64. */
85acf597 10957 case EM_ALPHA:
aa137e4d 10958 return reloc_type == 11; /* R_ALPHA_SREL64. */
85acf597 10959 case EM_IA_64:
aa137e4d 10960 return reloc_type == 0x4f; /* R_IA64_PCREL64LSB. */
85acf597 10961 case EM_PARISC:
aa137e4d 10962 return reloc_type == 72; /* R_PARISC_PCREL64. */
85acf597 10963 case EM_PPC64:
aa137e4d 10964 return reloc_type == 44; /* R_PPC64_REL64. */
85acf597
RH
10965 case EM_SPARC32PLUS:
10966 case EM_SPARCV9:
10967 case EM_SPARC:
aa137e4d 10968 return reloc_type == 46; /* R_SPARC_DISP64. */
85acf597 10969 case EM_X86_64:
8a9036a4 10970 case EM_L1OM:
7a9068fe 10971 case EM_K1OM:
aa137e4d 10972 return reloc_type == 24; /* R_X86_64_PC64. */
85acf597
RH
10973 case EM_S390_OLD:
10974 case EM_S390:
aa137e4d
NC
10975 return reloc_type == 23; /* R_S390_PC64. */
10976 case EM_TILEGX:
10977 return reloc_type == 5; /* R_TILEGX_64_PCREL. */
85acf597
RH
10978 default:
10979 return FALSE;
10980 }
10981}
10982
4dc3c23d
AM
10983/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
10984 a 24-bit absolute RELA relocation used in DWARF debug sections. */
10985
10986static bfd_boolean
10987is_24bit_abs_reloc (unsigned int reloc_type)
10988{
10989 switch (elf_header.e_machine)
10990 {
10991 case EM_CYGNUS_MN10200:
10992 case EM_MN10200:
10993 return reloc_type == 4; /* R_MN10200_24. */
10994 default:
10995 return FALSE;
10996 }
10997}
10998
aca88567
NC
10999/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
11000 a 16-bit absolute RELA relocation used in DWARF debug sections. */
11001
11002static bfd_boolean
11003is_16bit_abs_reloc (unsigned int reloc_type)
4b78141a
NC
11004{
11005 switch (elf_header.e_machine)
11006 {
aca88567
NC
11007 case EM_AVR_OLD:
11008 case EM_AVR:
11009 return reloc_type == 4; /* R_AVR_16. */
cfb8c092
NC
11010 case EM_ADAPTEVA_EPIPHANY:
11011 return reloc_type == 5;
41e92641
NC
11012 case EM_CYGNUS_D10V:
11013 case EM_D10V:
11014 return reloc_type == 3; /* R_D10V_16. */
4b78141a
NC
11015 case EM_H8S:
11016 case EM_H8_300:
11017 case EM_H8_300H:
aca88567
NC
11018 return reloc_type == R_H8_DIR16;
11019 case EM_IP2K_OLD:
11020 case EM_IP2K:
11021 return reloc_type == 1; /* R_IP2K_16. */
ff7eeb89 11022 case EM_M32C_OLD:
f4236fe4
DD
11023 case EM_M32C:
11024 return reloc_type == 1; /* R_M32C_16 */
aca88567 11025 case EM_MSP430:
13761a11
NC
11026 if (uses_msp430x_relocs ())
11027 return reloc_type == 2; /* R_MSP430_ABS16. */
78c8d46c 11028 case EM_MSP430_OLD:
aca88567 11029 return reloc_type == 5; /* R_MSP430_16_BYTE. */
35c08157
KLC
11030 case EM_NDS32:
11031 return reloc_type == 19; /* R_NDS32_RELA. */
3e0873ac 11032 case EM_ALTERA_NIOS2:
36591ba1 11033 return reloc_type == 13; /* R_NIOS2_BFD_RELOC_16. */
3e0873ac
NC
11034 case EM_NIOS32:
11035 return reloc_type == 9; /* R_NIOS_16. */
73589c9d
CS
11036 case EM_OR1K:
11037 return reloc_type == 2; /* R_OR1K_16. */
40b36596
JM
11038 case EM_TI_C6000:
11039 return reloc_type == 2; /* R_C6000_ABS16. */
c29aca4a
NC
11040 case EM_XC16X:
11041 case EM_C166:
11042 return reloc_type == 2; /* R_XC16C_ABS_16. */
e63734a3
AM
11043 case EM_CYGNUS_MN10200:
11044 case EM_MN10200:
11045 return reloc_type == 2; /* R_MN10200_16. */
0a22ae8e
NC
11046 case EM_CYGNUS_MN10300:
11047 case EM_MN10300:
11048 return reloc_type == 2; /* R_MN10300_16. */
f6c1a2d5
NC
11049 case EM_XGATE:
11050 return reloc_type == 3; /* R_XGATE_16. */
4b78141a 11051 default:
aca88567 11052 return FALSE;
4b78141a
NC
11053 }
11054}
11055
2a7b2e88
JK
11056/* Returns TRUE iff RELOC_TYPE is a NONE relocation used for discarded
11057 relocation entries (possibly formerly used for SHT_GROUP sections). */
11058
11059static bfd_boolean
11060is_none_reloc (unsigned int reloc_type)
11061{
11062 switch (elf_header.e_machine)
11063 {
cb8f3167
NC
11064 case EM_68K: /* R_68K_NONE. */
11065 case EM_386: /* R_386_NONE. */
2a7b2e88
JK
11066 case EM_SPARC32PLUS:
11067 case EM_SPARCV9:
cb8f3167
NC
11068 case EM_SPARC: /* R_SPARC_NONE. */
11069 case EM_MIPS: /* R_MIPS_NONE. */
11070 case EM_PARISC: /* R_PARISC_NONE. */
11071 case EM_ALPHA: /* R_ALPHA_NONE. */
cfb8c092 11072 case EM_ADAPTEVA_EPIPHANY:
cb8f3167
NC
11073 case EM_PPC: /* R_PPC_NONE. */
11074 case EM_PPC64: /* R_PPC64_NONE. */
11075 case EM_ARM: /* R_ARM_NONE. */
11076 case EM_IA_64: /* R_IA64_NONE. */
11077 case EM_SH: /* R_SH_NONE. */
2a7b2e88 11078 case EM_S390_OLD:
cb8f3167
NC
11079 case EM_S390: /* R_390_NONE. */
11080 case EM_CRIS: /* R_CRIS_NONE. */
11081 case EM_X86_64: /* R_X86_64_NONE. */
8a9036a4 11082 case EM_L1OM: /* R_X86_64_NONE. */
7a9068fe 11083 case EM_K1OM: /* R_X86_64_NONE. */
cb8f3167 11084 case EM_MN10300: /* R_MN10300_NONE. */
5506d11a 11085 case EM_MOXIE: /* R_MOXIE_NONE. */
cb8f3167 11086 case EM_M32R: /* R_M32R_NONE. */
40b36596 11087 case EM_TI_C6000:/* R_C6000_NONE. */
aa137e4d
NC
11088 case EM_TILEGX: /* R_TILEGX_NONE. */
11089 case EM_TILEPRO: /* R_TILEPRO_NONE. */
c29aca4a
NC
11090 case EM_XC16X:
11091 case EM_C166: /* R_XC16X_NONE. */
36591ba1
SL
11092 case EM_ALTERA_NIOS2: /* R_NIOS2_NONE. */
11093 case EM_NIOS32: /* R_NIOS_NONE. */
73589c9d 11094 case EM_OR1K: /* R_OR1K_NONE. */
cb8f3167 11095 return reloc_type == 0;
a06ea964
NC
11096 case EM_AARCH64:
11097 return reloc_type == 0 || reloc_type == 256;
35c08157
KLC
11098 case EM_NDS32:
11099 return (reloc_type == 0 /* R_XTENSA_NONE. */
11100 || reloc_type == 204 /* R_NDS32_DIFF8. */
11101 || reloc_type == 205 /* R_NDS32_DIFF16. */
11102 || reloc_type == 206 /* R_NDS32_DIFF32. */
11103 || reloc_type == 207 /* R_NDS32_ULEB128. */);
58332dda
JK
11104 case EM_XTENSA_OLD:
11105 case EM_XTENSA:
4dc3c23d
AM
11106 return (reloc_type == 0 /* R_XTENSA_NONE. */
11107 || reloc_type == 17 /* R_XTENSA_DIFF8. */
11108 || reloc_type == 18 /* R_XTENSA_DIFF16. */
11109 || reloc_type == 19 /* R_XTENSA_DIFF32. */);
a3c62988
NC
11110 case EM_METAG:
11111 return reloc_type == 3; /* R_METAG_NONE. */
2a7b2e88
JK
11112 }
11113 return FALSE;
11114}
11115
cf13d699
NC
11116/* Apply relocations to a section.
11117 Note: So far support has been added only for those relocations
11118 which can be found in debug sections.
11119 FIXME: Add support for more relocations ? */
1b315056 11120
cf13d699
NC
11121static void
11122apply_relocations (void * file,
11123 Elf_Internal_Shdr * section,
11124 unsigned char * start)
1b315056 11125{
cf13d699
NC
11126 Elf_Internal_Shdr * relsec;
11127 unsigned char * end = start + section->sh_size;
cb8f3167 11128
cf13d699
NC
11129 if (elf_header.e_type != ET_REL)
11130 return;
1b315056 11131
cf13d699 11132 /* Find the reloc section associated with the section. */
5b18a4bc
NC
11133 for (relsec = section_headers;
11134 relsec < section_headers + elf_header.e_shnum;
11135 ++relsec)
252b5132 11136 {
41e92641
NC
11137 bfd_boolean is_rela;
11138 unsigned long num_relocs;
2cf0635d
NC
11139 Elf_Internal_Rela * relocs;
11140 Elf_Internal_Rela * rp;
11141 Elf_Internal_Shdr * symsec;
11142 Elf_Internal_Sym * symtab;
ba5cdace 11143 unsigned long num_syms;
2cf0635d 11144 Elf_Internal_Sym * sym;
252b5132 11145
41e92641 11146 if ((relsec->sh_type != SHT_RELA && relsec->sh_type != SHT_REL)
4fbb74a6
AM
11147 || relsec->sh_info >= elf_header.e_shnum
11148 || section_headers + relsec->sh_info != section
c256ffe7 11149 || relsec->sh_size == 0
4fbb74a6 11150 || relsec->sh_link >= elf_header.e_shnum)
5b18a4bc 11151 continue;
428409d5 11152
41e92641
NC
11153 is_rela = relsec->sh_type == SHT_RELA;
11154
11155 if (is_rela)
11156 {
3f5e193b
NC
11157 if (!slurp_rela_relocs ((FILE *) file, relsec->sh_offset,
11158 relsec->sh_size, & relocs, & num_relocs))
41e92641
NC
11159 return;
11160 }
11161 else
11162 {
3f5e193b
NC
11163 if (!slurp_rel_relocs ((FILE *) file, relsec->sh_offset,
11164 relsec->sh_size, & relocs, & num_relocs))
41e92641
NC
11165 return;
11166 }
11167
11168 /* SH uses RELA but uses in place value instead of the addend field. */
11169 if (elf_header.e_machine == EM_SH)
11170 is_rela = FALSE;
428409d5 11171
4fbb74a6 11172 symsec = section_headers + relsec->sh_link;
ba5cdace 11173 symtab = GET_ELF_SYMBOLS ((FILE *) file, symsec, & num_syms);
103f02d3 11174
41e92641 11175 for (rp = relocs; rp < relocs + num_relocs; ++rp)
252b5132 11176 {
41e92641
NC
11177 bfd_vma addend;
11178 unsigned int reloc_type;
11179 unsigned int reloc_size;
91d6fa6a 11180 unsigned char * rloc;
ba5cdace 11181 unsigned long sym_index;
4b78141a 11182
aca88567 11183 reloc_type = get_reloc_type (rp->r_info);
41e92641 11184
98fb390a 11185 if (target_specific_reloc_handling (rp, start, symtab))
2a7b2e88 11186 continue;
98fb390a
NC
11187 else if (is_none_reloc (reloc_type))
11188 continue;
11189 else if (is_32bit_abs_reloc (reloc_type)
11190 || is_32bit_pcrel_reloc (reloc_type))
aca88567 11191 reloc_size = 4;
85acf597
RH
11192 else if (is_64bit_abs_reloc (reloc_type)
11193 || is_64bit_pcrel_reloc (reloc_type))
aca88567 11194 reloc_size = 8;
4dc3c23d
AM
11195 else if (is_24bit_abs_reloc (reloc_type))
11196 reloc_size = 3;
aca88567
NC
11197 else if (is_16bit_abs_reloc (reloc_type))
11198 reloc_size = 2;
11199 else
4b78141a 11200 {
41e92641 11201 warn (_("unable to apply unsupported reloc type %d to section %s\n"),
74e1a04b 11202 reloc_type, printable_section_name (section));
4b78141a
NC
11203 continue;
11204 }
103f02d3 11205
91d6fa6a 11206 rloc = start + rp->r_offset;
c8da6823 11207 if ((rloc + reloc_size) > end || (rloc < start))
700dd8b7
L
11208 {
11209 warn (_("skipping invalid relocation offset 0x%lx in section %s\n"),
11210 (unsigned long) rp->r_offset,
74e1a04b 11211 printable_section_name (section));
700dd8b7
L
11212 continue;
11213 }
103f02d3 11214
ba5cdace
NC
11215 sym_index = (unsigned long) get_reloc_symindex (rp->r_info);
11216 if (sym_index >= num_syms)
11217 {
11218 warn (_("skipping invalid relocation symbol index 0x%lx in section %s\n"),
74e1a04b 11219 sym_index, printable_section_name (section));
ba5cdace
NC
11220 continue;
11221 }
11222 sym = symtab + sym_index;
41e92641
NC
11223
11224 /* If the reloc has a symbol associated with it,
55f25fc3
L
11225 make sure that it is of an appropriate type.
11226
11227 Relocations against symbols without type can happen.
11228 Gcc -feliminate-dwarf2-dups may generate symbols
11229 without type for debug info.
11230
11231 Icc generates relocations against function symbols
11232 instead of local labels.
11233
11234 Relocations against object symbols can happen, eg when
11235 referencing a global array. For an example of this see
11236 the _clz.o binary in libgcc.a. */
aca88567 11237 if (sym != symtab
55f25fc3 11238 && ELF_ST_TYPE (sym->st_info) > STT_SECTION)
5b18a4bc 11239 {
41e92641 11240 warn (_("skipping unexpected symbol type %s in %ld'th relocation in section %s\n"),
aca88567 11241 get_symbol_type (ELF_ST_TYPE (sym->st_info)),
99dcb0b9 11242 (long int)(rp - relocs),
74e1a04b 11243 printable_section_name (relsec));
aca88567 11244 continue;
5b18a4bc 11245 }
252b5132 11246
4dc3c23d
AM
11247 addend = 0;
11248 if (is_rela)
11249 addend += rp->r_addend;
c47320c3
AM
11250 /* R_XTENSA_32, R_PJ_DATA_DIR32 and R_D30V_32_NORMAL are
11251 partial_inplace. */
4dc3c23d
AM
11252 if (!is_rela
11253 || (elf_header.e_machine == EM_XTENSA
11254 && reloc_type == 1)
11255 || ((elf_header.e_machine == EM_PJ
11256 || elf_header.e_machine == EM_PJ_OLD)
c47320c3
AM
11257 && reloc_type == 1)
11258 || ((elf_header.e_machine == EM_D30V
11259 || elf_header.e_machine == EM_CYGNUS_D30V)
11260 && reloc_type == 12))
91d6fa6a 11261 addend += byte_get (rloc, reloc_size);
cb8f3167 11262
85acf597
RH
11263 if (is_32bit_pcrel_reloc (reloc_type)
11264 || is_64bit_pcrel_reloc (reloc_type))
11265 {
11266 /* On HPPA, all pc-relative relocations are biased by 8. */
11267 if (elf_header.e_machine == EM_PARISC)
11268 addend -= 8;
91d6fa6a 11269 byte_put (rloc, (addend + sym->st_value) - rp->r_offset,
85acf597
RH
11270 reloc_size);
11271 }
41e92641 11272 else
91d6fa6a 11273 byte_put (rloc, addend + sym->st_value, reloc_size);
5b18a4bc 11274 }
252b5132 11275
5b18a4bc 11276 free (symtab);
41e92641 11277 free (relocs);
5b18a4bc
NC
11278 break;
11279 }
5b18a4bc 11280}
103f02d3 11281
cf13d699
NC
11282#ifdef SUPPORT_DISASSEMBLY
11283static int
11284disassemble_section (Elf_Internal_Shdr * section, FILE * file)
11285{
74e1a04b 11286 printf (_("\nAssembly dump of section %s\n"), printable_section_name (section));
cf13d699 11287
74e1a04b 11288 /* FIXME: XXX -- to be done --- XXX */
cf13d699
NC
11289
11290 return 1;
11291}
11292#endif
11293
11294/* Reads in the contents of SECTION from FILE, returning a pointer
11295 to a malloc'ed buffer or NULL if something went wrong. */
11296
11297static char *
11298get_section_contents (Elf_Internal_Shdr * section, FILE * file)
11299{
11300 bfd_size_type num_bytes;
11301
11302 num_bytes = section->sh_size;
11303
11304 if (num_bytes == 0 || section->sh_type == SHT_NOBITS)
11305 {
11306 printf (_("\nSection '%s' has no data to dump.\n"),
74e1a04b 11307 printable_section_name (section));
cf13d699
NC
11308 return NULL;
11309 }
11310
3f5e193b
NC
11311 return (char *) get_data (NULL, file, section->sh_offset, 1, num_bytes,
11312 _("section contents"));
cf13d699
NC
11313}
11314
dd24e3da 11315
cf13d699
NC
11316static void
11317dump_section_as_strings (Elf_Internal_Shdr * section, FILE * file)
11318{
11319 Elf_Internal_Shdr * relsec;
11320 bfd_size_type num_bytes;
cf13d699
NC
11321 char * data;
11322 char * end;
11323 char * start;
cf13d699
NC
11324 bfd_boolean some_strings_shown;
11325
11326 start = get_section_contents (section, file);
11327 if (start == NULL)
11328 return;
11329
74e1a04b 11330 printf (_("\nString dump of section '%s':\n"), printable_section_name (section));
cf13d699
NC
11331
11332 /* If the section being dumped has relocations against it the user might
11333 be expecting these relocations to have been applied. Check for this
11334 case and issue a warning message in order to avoid confusion.
11335 FIXME: Maybe we ought to have an option that dumps a section with
11336 relocs applied ? */
11337 for (relsec = section_headers;
11338 relsec < section_headers + elf_header.e_shnum;
11339 ++relsec)
11340 {
11341 if ((relsec->sh_type != SHT_RELA && relsec->sh_type != SHT_REL)
11342 || relsec->sh_info >= elf_header.e_shnum
11343 || section_headers + relsec->sh_info != section
11344 || relsec->sh_size == 0
11345 || relsec->sh_link >= elf_header.e_shnum)
11346 continue;
11347
11348 printf (_(" Note: This section has relocations against it, but these have NOT been applied to this dump.\n"));
11349 break;
11350 }
11351
11352 num_bytes = section->sh_size;
cf13d699
NC
11353 data = start;
11354 end = start + num_bytes;
11355 some_strings_shown = FALSE;
11356
11357 while (data < end)
11358 {
11359 while (!ISPRINT (* data))
11360 if (++ data >= end)
11361 break;
11362
11363 if (data < end)
11364 {
071436c6
NC
11365 size_t maxlen = end - data;
11366
cf13d699 11367#ifndef __MSVCRT__
c975cc98
NC
11368 /* PR 11128: Use two separate invocations in order to work
11369 around bugs in the Solaris 8 implementation of printf. */
11370 printf (" [%6tx] ", data - start);
cf13d699 11371#else
071436c6 11372 printf (" [%6Ix] ", (size_t) (data - start));
cf13d699 11373#endif
4082ef84
NC
11374 if (maxlen > 0)
11375 {
11376 print_symbol ((int) maxlen, data);
11377 putchar ('\n');
11378 data += strnlen (data, maxlen);
11379 }
11380 else
11381 {
11382 printf (_("<corrupt>\n"));
11383 data = end;
11384 }
cf13d699
NC
11385 some_strings_shown = TRUE;
11386 }
11387 }
11388
11389 if (! some_strings_shown)
11390 printf (_(" No strings found in this section."));
11391
11392 free (start);
11393
11394 putchar ('\n');
11395}
11396
11397static void
11398dump_section_as_bytes (Elf_Internal_Shdr * section,
11399 FILE * file,
11400 bfd_boolean relocate)
11401{
11402 Elf_Internal_Shdr * relsec;
11403 bfd_size_type bytes;
11404 bfd_vma addr;
11405 unsigned char * data;
11406 unsigned char * start;
11407
11408 start = (unsigned char *) get_section_contents (section, file);
11409 if (start == NULL)
11410 return;
11411
74e1a04b 11412 printf (_("\nHex dump of section '%s':\n"), printable_section_name (section));
cf13d699
NC
11413
11414 if (relocate)
11415 {
11416 apply_relocations (file, section, start);
11417 }
11418 else
11419 {
11420 /* If the section being dumped has relocations against it the user might
11421 be expecting these relocations to have been applied. Check for this
11422 case and issue a warning message in order to avoid confusion.
11423 FIXME: Maybe we ought to have an option that dumps a section with
11424 relocs applied ? */
11425 for (relsec = section_headers;
11426 relsec < section_headers + elf_header.e_shnum;
11427 ++relsec)
11428 {
11429 if ((relsec->sh_type != SHT_RELA && relsec->sh_type != SHT_REL)
11430 || relsec->sh_info >= elf_header.e_shnum
11431 || section_headers + relsec->sh_info != section
11432 || relsec->sh_size == 0
11433 || relsec->sh_link >= elf_header.e_shnum)
11434 continue;
11435
11436 printf (_(" NOTE: This section has relocations against it, but these have NOT been applied to this dump.\n"));
11437 break;
11438 }
11439 }
11440
11441 addr = section->sh_addr;
11442 bytes = section->sh_size;
11443 data = start;
11444
11445 while (bytes)
11446 {
11447 int j;
11448 int k;
11449 int lbytes;
11450
11451 lbytes = (bytes > 16 ? 16 : bytes);
11452
11453 printf (" 0x%8.8lx ", (unsigned long) addr);
11454
11455 for (j = 0; j < 16; j++)
11456 {
11457 if (j < lbytes)
11458 printf ("%2.2x", data[j]);
11459 else
11460 printf (" ");
11461
11462 if ((j & 3) == 3)
11463 printf (" ");
11464 }
11465
11466 for (j = 0; j < lbytes; j++)
11467 {
11468 k = data[j];
11469 if (k >= ' ' && k < 0x7f)
11470 printf ("%c", k);
11471 else
11472 printf (".");
11473 }
11474
11475 putchar ('\n');
11476
11477 data += lbytes;
11478 addr += lbytes;
11479 bytes -= lbytes;
11480 }
11481
11482 free (start);
11483
11484 putchar ('\n');
11485}
11486
4a114e3e 11487/* Uncompresses a section that was compressed using zlib, in place. */
cf13d699
NC
11488
11489static int
d3dbc530
AM
11490uncompress_section_contents (unsigned char **buffer ATTRIBUTE_UNUSED,
11491 dwarf_size_type *size ATTRIBUTE_UNUSED)
cf13d699
NC
11492{
11493#ifndef HAVE_ZLIB_H
cf13d699
NC
11494 return FALSE;
11495#else
11496 dwarf_size_type compressed_size = *size;
11497 unsigned char * compressed_buffer = *buffer;
11498 dwarf_size_type uncompressed_size;
11499 unsigned char * uncompressed_buffer;
11500 z_stream strm;
11501 int rc;
11502 dwarf_size_type header_size = 12;
11503
11504 /* Read the zlib header. In this case, it should be "ZLIB" followed
11505 by the uncompressed section size, 8 bytes in big-endian order. */
11506 if (compressed_size < header_size
11507 || ! streq ((char *) compressed_buffer, "ZLIB"))
11508 return 0;
11509
11510 uncompressed_size = compressed_buffer[4]; uncompressed_size <<= 8;
11511 uncompressed_size += compressed_buffer[5]; uncompressed_size <<= 8;
11512 uncompressed_size += compressed_buffer[6]; uncompressed_size <<= 8;
11513 uncompressed_size += compressed_buffer[7]; uncompressed_size <<= 8;
11514 uncompressed_size += compressed_buffer[8]; uncompressed_size <<= 8;
11515 uncompressed_size += compressed_buffer[9]; uncompressed_size <<= 8;
11516 uncompressed_size += compressed_buffer[10]; uncompressed_size <<= 8;
11517 uncompressed_size += compressed_buffer[11];
11518
11519 /* It is possible the section consists of several compressed
11520 buffers concatenated together, so we uncompress in a loop. */
11521 strm.zalloc = NULL;
11522 strm.zfree = NULL;
11523 strm.opaque = NULL;
11524 strm.avail_in = compressed_size - header_size;
11525 strm.next_in = (Bytef *) compressed_buffer + header_size;
11526 strm.avail_out = uncompressed_size;
3f5e193b 11527 uncompressed_buffer = (unsigned char *) xmalloc (uncompressed_size);
cf13d699
NC
11528
11529 rc = inflateInit (& strm);
11530 while (strm.avail_in > 0)
11531 {
11532 if (rc != Z_OK)
11533 goto fail;
11534 strm.next_out = ((Bytef *) uncompressed_buffer
11535 + (uncompressed_size - strm.avail_out));
11536 rc = inflate (&strm, Z_FINISH);
11537 if (rc != Z_STREAM_END)
11538 goto fail;
11539 rc = inflateReset (& strm);
11540 }
11541 rc = inflateEnd (& strm);
11542 if (rc != Z_OK
11543 || strm.avail_out != 0)
11544 goto fail;
11545
11546 free (compressed_buffer);
11547 *buffer = uncompressed_buffer;
11548 *size = uncompressed_size;
11549 return 1;
11550
11551 fail:
11552 free (uncompressed_buffer);
4a114e3e
L
11553 /* Indicate decompression failure. */
11554 *buffer = NULL;
cf13d699
NC
11555 return 0;
11556#endif /* HAVE_ZLIB_H */
11557}
11558
d966045b
DJ
11559static int
11560load_specific_debug_section (enum dwarf_section_display_enum debug,
2cf0635d 11561 Elf_Internal_Shdr * sec, void * file)
1007acb3 11562{
2cf0635d 11563 struct dwarf_section * section = &debug_displays [debug].section;
19e6b90e 11564 char buf [64];
1007acb3 11565
19e6b90e
L
11566 /* If it is already loaded, do nothing. */
11567 if (section->start != NULL)
11568 return 1;
1007acb3 11569
19e6b90e
L
11570 snprintf (buf, sizeof (buf), _("%s section data"), section->name);
11571 section->address = sec->sh_addr;
3f5e193b
NC
11572 section->start = (unsigned char *) get_data (NULL, (FILE *) file,
11573 sec->sh_offset, 1,
11574 sec->sh_size, buf);
59245841
NC
11575 if (section->start == NULL)
11576 section->size = 0;
11577 else
11578 {
11579 section->size = sec->sh_size;
11580 if (uncompress_section_contents (&section->start, &section->size))
11581 sec->sh_size = section->size;
11582 }
4a114e3e 11583
1b315056
CS
11584 if (section->start == NULL)
11585 return 0;
11586
19e6b90e 11587 if (debug_displays [debug].relocate)
3f5e193b 11588 apply_relocations ((FILE *) file, sec, section->start);
1007acb3 11589
1b315056 11590 return 1;
1007acb3
L
11591}
11592
657d0d47
CC
11593/* If this is not NULL, load_debug_section will only look for sections
11594 within the list of sections given here. */
11595unsigned int *section_subset = NULL;
11596
d966045b 11597int
2cf0635d 11598load_debug_section (enum dwarf_section_display_enum debug, void * file)
d966045b 11599{
2cf0635d
NC
11600 struct dwarf_section * section = &debug_displays [debug].section;
11601 Elf_Internal_Shdr * sec;
d966045b
DJ
11602
11603 /* Locate the debug section. */
657d0d47 11604 sec = find_section_in_set (section->uncompressed_name, section_subset);
d966045b
DJ
11605 if (sec != NULL)
11606 section->name = section->uncompressed_name;
11607 else
11608 {
657d0d47 11609 sec = find_section_in_set (section->compressed_name, section_subset);
d966045b
DJ
11610 if (sec != NULL)
11611 section->name = section->compressed_name;
11612 }
11613 if (sec == NULL)
11614 return 0;
11615
657d0d47
CC
11616 /* If we're loading from a subset of sections, and we've loaded
11617 a section matching this name before, it's likely that it's a
11618 different one. */
11619 if (section_subset != NULL)
11620 free_debug_section (debug);
11621
3f5e193b 11622 return load_specific_debug_section (debug, sec, (FILE *) file);
d966045b
DJ
11623}
11624
19e6b90e
L
11625void
11626free_debug_section (enum dwarf_section_display_enum debug)
1007acb3 11627{
2cf0635d 11628 struct dwarf_section * section = &debug_displays [debug].section;
1007acb3 11629
19e6b90e
L
11630 if (section->start == NULL)
11631 return;
1007acb3 11632
19e6b90e
L
11633 free ((char *) section->start);
11634 section->start = NULL;
11635 section->address = 0;
11636 section->size = 0;
1007acb3
L
11637}
11638
1007acb3 11639static int
657d0d47 11640display_debug_section (int shndx, Elf_Internal_Shdr * section, FILE * file)
1007acb3 11641{
2cf0635d 11642 char * name = SECTION_NAME (section);
74e1a04b 11643 const char * print_name = printable_section_name (section);
19e6b90e
L
11644 bfd_size_type length;
11645 int result = 1;
3f5e193b 11646 int i;
1007acb3 11647
19e6b90e
L
11648 length = section->sh_size;
11649 if (length == 0)
1007acb3 11650 {
74e1a04b 11651 printf (_("\nSection '%s' has no debugging data.\n"), print_name);
19e6b90e 11652 return 0;
1007acb3 11653 }
5dff79d8
NC
11654 if (section->sh_type == SHT_NOBITS)
11655 {
11656 /* There is no point in dumping the contents of a debugging section
11657 which has the NOBITS type - the bits in the file will be random.
11658 This can happen when a file containing a .eh_frame section is
11659 stripped with the --only-keep-debug command line option. */
74e1a04b
NC
11660 printf (_("section '%s' has the NOBITS type - its contents are unreliable.\n"),
11661 print_name);
5dff79d8
NC
11662 return 0;
11663 }
1007acb3 11664
0112cd26 11665 if (const_strneq (name, ".gnu.linkonce.wi."))
19e6b90e 11666 name = ".debug_info";
1007acb3 11667
19e6b90e
L
11668 /* See if we know how to display the contents of this section. */
11669 for (i = 0; i < max; i++)
1b315056 11670 if (streq (debug_displays[i].section.uncompressed_name, name)
b40bf0a2 11671 || (i == line && const_strneq (name, ".debug_line."))
1b315056 11672 || streq (debug_displays[i].section.compressed_name, name))
19e6b90e 11673 {
2cf0635d 11674 struct dwarf_section * sec = &debug_displays [i].section;
d966045b
DJ
11675 int secondary = (section != find_section (name));
11676
11677 if (secondary)
3f5e193b 11678 free_debug_section ((enum dwarf_section_display_enum) i);
1007acb3 11679
b40bf0a2
NC
11680 if (i == line && const_strneq (name, ".debug_line."))
11681 sec->name = name;
11682 else if (streq (sec->uncompressed_name, name))
d966045b
DJ
11683 sec->name = sec->uncompressed_name;
11684 else
11685 sec->name = sec->compressed_name;
3f5e193b
NC
11686 if (load_specific_debug_section ((enum dwarf_section_display_enum) i,
11687 section, file))
19e6b90e 11688 {
657d0d47
CC
11689 /* If this debug section is part of a CU/TU set in a .dwp file,
11690 restrict load_debug_section to the sections in that set. */
11691 section_subset = find_cu_tu_set (file, shndx);
11692
19e6b90e 11693 result &= debug_displays[i].display (sec, file);
1007acb3 11694
657d0d47
CC
11695 section_subset = NULL;
11696
d966045b 11697 if (secondary || (i != info && i != abbrev))
3f5e193b 11698 free_debug_section ((enum dwarf_section_display_enum) i);
19e6b90e 11699 }
1007acb3 11700
19e6b90e
L
11701 break;
11702 }
1007acb3 11703
19e6b90e 11704 if (i == max)
1007acb3 11705 {
74e1a04b 11706 printf (_("Unrecognized debug section: %s\n"), print_name);
19e6b90e 11707 result = 0;
1007acb3
L
11708 }
11709
19e6b90e 11710 return result;
5b18a4bc 11711}
103f02d3 11712
aef1f6d0
DJ
11713/* Set DUMP_SECTS for all sections where dumps were requested
11714 based on section name. */
11715
11716static void
11717initialise_dumps_byname (void)
11718{
2cf0635d 11719 struct dump_list_entry * cur;
aef1f6d0
DJ
11720
11721 for (cur = dump_sects_byname; cur; cur = cur->next)
11722 {
11723 unsigned int i;
11724 int any;
11725
11726 for (i = 0, any = 0; i < elf_header.e_shnum; i++)
11727 if (streq (SECTION_NAME (section_headers + i), cur->name))
11728 {
09c11c86 11729 request_dump_bynumber (i, cur->type);
aef1f6d0
DJ
11730 any = 1;
11731 }
11732
11733 if (!any)
11734 warn (_("Section '%s' was not dumped because it does not exist!\n"),
11735 cur->name);
11736 }
11737}
11738
5b18a4bc 11739static void
2cf0635d 11740process_section_contents (FILE * file)
5b18a4bc 11741{
2cf0635d 11742 Elf_Internal_Shdr * section;
19e6b90e 11743 unsigned int i;
103f02d3 11744
19e6b90e
L
11745 if (! do_dump)
11746 return;
103f02d3 11747
aef1f6d0
DJ
11748 initialise_dumps_byname ();
11749
19e6b90e
L
11750 for (i = 0, section = section_headers;
11751 i < elf_header.e_shnum && i < num_dump_sects;
11752 i++, section++)
11753 {
11754#ifdef SUPPORT_DISASSEMBLY
11755 if (dump_sects[i] & DISASS_DUMP)
11756 disassemble_section (section, file);
11757#endif
11758 if (dump_sects[i] & HEX_DUMP)
cf13d699 11759 dump_section_as_bytes (section, file, FALSE);
103f02d3 11760
cf13d699
NC
11761 if (dump_sects[i] & RELOC_DUMP)
11762 dump_section_as_bytes (section, file, TRUE);
09c11c86
NC
11763
11764 if (dump_sects[i] & STRING_DUMP)
11765 dump_section_as_strings (section, file);
cf13d699
NC
11766
11767 if (dump_sects[i] & DEBUG_DUMP)
657d0d47 11768 display_debug_section (i, section, file);
5b18a4bc 11769 }
103f02d3 11770
19e6b90e
L
11771 /* Check to see if the user requested a
11772 dump of a section that does not exist. */
11773 while (i++ < num_dump_sects)
11774 if (dump_sects[i])
11775 warn (_("Section %d was not dumped because it does not exist!\n"), i);
5b18a4bc 11776}
103f02d3 11777
5b18a4bc 11778static void
19e6b90e 11779process_mips_fpe_exception (int mask)
5b18a4bc 11780{
19e6b90e
L
11781 if (mask)
11782 {
11783 int first = 1;
11784 if (mask & OEX_FPU_INEX)
11785 fputs ("INEX", stdout), first = 0;
11786 if (mask & OEX_FPU_UFLO)
11787 printf ("%sUFLO", first ? "" : "|"), first = 0;
11788 if (mask & OEX_FPU_OFLO)
11789 printf ("%sOFLO", first ? "" : "|"), first = 0;
11790 if (mask & OEX_FPU_DIV0)
11791 printf ("%sDIV0", first ? "" : "|"), first = 0;
11792 if (mask & OEX_FPU_INVAL)
11793 printf ("%sINVAL", first ? "" : "|");
11794 }
5b18a4bc 11795 else
19e6b90e 11796 fputs ("0", stdout);
5b18a4bc 11797}
103f02d3 11798
f6f0e17b
NC
11799/* Display's the value of TAG at location P. If TAG is
11800 greater than 0 it is assumed to be an unknown tag, and
11801 a message is printed to this effect. Otherwise it is
11802 assumed that a message has already been printed.
11803
11804 If the bottom bit of TAG is set it assumed to have a
11805 string value, otherwise it is assumed to have an integer
11806 value.
11807
11808 Returns an updated P pointing to the first unread byte
11809 beyond the end of TAG's value.
11810
11811 Reads at or beyond END will not be made. */
11812
11813static unsigned char *
11814display_tag_value (int tag,
11815 unsigned char * p,
11816 const unsigned char * const end)
11817{
11818 unsigned long val;
11819
11820 if (tag > 0)
11821 printf (" Tag_unknown_%d: ", tag);
11822
11823 if (p >= end)
11824 {
4082ef84 11825 warn (_("<corrupt tag>\n"));
f6f0e17b
NC
11826 }
11827 else if (tag & 1)
11828 {
071436c6
NC
11829 /* PR 17531 file: 027-19978-0.004. */
11830 size_t maxlen = (end - p) - 1;
11831
11832 putchar ('"');
4082ef84
NC
11833 if (maxlen > 0)
11834 {
11835 print_symbol ((int) maxlen, (const char *) p);
11836 p += strnlen ((char *) p, maxlen) + 1;
11837 }
11838 else
11839 {
11840 printf (_("<corrupt string tag>"));
11841 p = (unsigned char *) end;
11842 }
071436c6 11843 printf ("\"\n");
f6f0e17b
NC
11844 }
11845 else
11846 {
11847 unsigned int len;
11848
11849 val = read_uleb128 (p, &len, end);
11850 p += len;
11851 printf ("%ld (0x%lx)\n", val, val);
11852 }
11853
4082ef84 11854 assert (p <= end);
f6f0e17b
NC
11855 return p;
11856}
11857
11c1ff18
PB
11858/* ARM EABI attributes section. */
11859typedef struct
11860{
70e99720 11861 unsigned int tag;
2cf0635d 11862 const char * name;
11c1ff18 11863 /* 0 = special, 1 = string, 2 = uleb123, > 0x80 == table lookup. */
70e99720 11864 unsigned int type;
2cf0635d 11865 const char ** table;
11c1ff18
PB
11866} arm_attr_public_tag;
11867
2cf0635d 11868static const char * arm_attr_tag_CPU_arch[] =
11c1ff18 11869 {"Pre-v4", "v4", "v4T", "v5T", "v5TE", "v5TEJ", "v6", "v6KZ", "v6T2",
bca38921 11870 "v6K", "v7", "v6-M", "v6S-M", "v7E-M", "v8"};
2cf0635d
NC
11871static const char * arm_attr_tag_ARM_ISA_use[] = {"No", "Yes"};
11872static const char * arm_attr_tag_THUMB_ISA_use[] =
11c1ff18 11873 {"No", "Thumb-1", "Thumb-2"};
75375b3e 11874static const char * arm_attr_tag_FP_arch[] =
bca38921
MGD
11875 {"No", "VFPv1", "VFPv2", "VFPv3", "VFPv3-D16", "VFPv4", "VFPv4-D16",
11876 "FP for ARMv8"};
2cf0635d 11877static const char * arm_attr_tag_WMMX_arch[] = {"No", "WMMXv1", "WMMXv2"};
dd24e3da 11878static const char * arm_attr_tag_Advanced_SIMD_arch[] =
bca38921 11879 {"No", "NEONv1", "NEONv1 with Fused-MAC", "NEON for ARMv8"};
2cf0635d 11880static const char * arm_attr_tag_PCS_config[] =
11c1ff18
PB
11881 {"None", "Bare platform", "Linux application", "Linux DSO", "PalmOS 2004",
11882 "PalmOS (reserved)", "SymbianOS 2004", "SymbianOS (reserved)"};
2cf0635d 11883static const char * arm_attr_tag_ABI_PCS_R9_use[] =
11c1ff18 11884 {"V6", "SB", "TLS", "Unused"};
2cf0635d 11885static const char * arm_attr_tag_ABI_PCS_RW_data[] =
11c1ff18 11886 {"Absolute", "PC-relative", "SB-relative", "None"};
2cf0635d 11887static const char * arm_attr_tag_ABI_PCS_RO_data[] =
11c1ff18 11888 {"Absolute", "PC-relative", "None"};
2cf0635d 11889static const char * arm_attr_tag_ABI_PCS_GOT_use[] =
11c1ff18 11890 {"None", "direct", "GOT-indirect"};
2cf0635d 11891static const char * arm_attr_tag_ABI_PCS_wchar_t[] =
11c1ff18 11892 {"None", "??? 1", "2", "??? 3", "4"};
2cf0635d
NC
11893static const char * arm_attr_tag_ABI_FP_rounding[] = {"Unused", "Needed"};
11894static const char * arm_attr_tag_ABI_FP_denormal[] =
f5f53991 11895 {"Unused", "Needed", "Sign only"};
2cf0635d
NC
11896static const char * arm_attr_tag_ABI_FP_exceptions[] = {"Unused", "Needed"};
11897static const char * arm_attr_tag_ABI_FP_user_exceptions[] = {"Unused", "Needed"};
11898static const char * arm_attr_tag_ABI_FP_number_model[] =
11c1ff18 11899 {"Unused", "Finite", "RTABI", "IEEE 754"};
2cf0635d 11900static const char * arm_attr_tag_ABI_enum_size[] =
11c1ff18 11901 {"Unused", "small", "int", "forced to int"};
2cf0635d 11902static const char * arm_attr_tag_ABI_HardFP_use[] =
75375b3e 11903 {"As Tag_FP_arch", "SP only", "DP only", "SP and DP"};
2cf0635d 11904static const char * arm_attr_tag_ABI_VFP_args[] =
11c1ff18 11905 {"AAPCS", "VFP registers", "custom"};
2cf0635d 11906static const char * arm_attr_tag_ABI_WMMX_args[] =
11c1ff18 11907 {"AAPCS", "WMMX registers", "custom"};
2cf0635d 11908static const char * arm_attr_tag_ABI_optimization_goals[] =
11c1ff18
PB
11909 {"None", "Prefer Speed", "Aggressive Speed", "Prefer Size",
11910 "Aggressive Size", "Prefer Debug", "Aggressive Debug"};
2cf0635d 11911static const char * arm_attr_tag_ABI_FP_optimization_goals[] =
11c1ff18
PB
11912 {"None", "Prefer Speed", "Aggressive Speed", "Prefer Size",
11913 "Aggressive Size", "Prefer Accuracy", "Aggressive Accuracy"};
2cf0635d 11914static const char * arm_attr_tag_CPU_unaligned_access[] = {"None", "v6"};
75375b3e 11915static const char * arm_attr_tag_FP_HP_extension[] =
8e79c3df 11916 {"Not Allowed", "Allowed"};
2cf0635d 11917static const char * arm_attr_tag_ABI_FP_16bit_format[] =
8e79c3df 11918 {"None", "IEEE 754", "Alternative Format"};
dd24e3da 11919static const char * arm_attr_tag_MPextension_use[] =
cd21e546
MGD
11920 {"Not Allowed", "Allowed"};
11921static const char * arm_attr_tag_DIV_use[] =
dd24e3da 11922 {"Allowed in Thumb-ISA, v7-R or v7-M", "Not allowed",
cd21e546 11923 "Allowed in v7-A with integer division extension"};
2cf0635d
NC
11924static const char * arm_attr_tag_T2EE_use[] = {"Not Allowed", "Allowed"};
11925static const char * arm_attr_tag_Virtualization_use[] =
dd24e3da 11926 {"Not Allowed", "TrustZone", "Virtualization Extensions",
cd21e546 11927 "TrustZone and Virtualization Extensions"};
dd24e3da 11928static const char * arm_attr_tag_MPextension_use_legacy[] =
f5f53991 11929 {"Not Allowed", "Allowed"};
11c1ff18
PB
11930
11931#define LOOKUP(id, name) \
11932 {id, #name, 0x80 | ARRAY_SIZE(arm_attr_tag_##name), arm_attr_tag_##name}
d70c5fc7 11933static arm_attr_public_tag arm_attr_public_tags[] =
11c1ff18
PB
11934{
11935 {4, "CPU_raw_name", 1, NULL},
11936 {5, "CPU_name", 1, NULL},
11937 LOOKUP(6, CPU_arch),
11938 {7, "CPU_arch_profile", 0, NULL},
11939 LOOKUP(8, ARM_ISA_use),
11940 LOOKUP(9, THUMB_ISA_use),
75375b3e 11941 LOOKUP(10, FP_arch),
11c1ff18 11942 LOOKUP(11, WMMX_arch),
f5f53991
AS
11943 LOOKUP(12, Advanced_SIMD_arch),
11944 LOOKUP(13, PCS_config),
11c1ff18
PB
11945 LOOKUP(14, ABI_PCS_R9_use),
11946 LOOKUP(15, ABI_PCS_RW_data),
f5f53991 11947 LOOKUP(16, ABI_PCS_RO_data),
11c1ff18
PB
11948 LOOKUP(17, ABI_PCS_GOT_use),
11949 LOOKUP(18, ABI_PCS_wchar_t),
11950 LOOKUP(19, ABI_FP_rounding),
11951 LOOKUP(20, ABI_FP_denormal),
11952 LOOKUP(21, ABI_FP_exceptions),
11953 LOOKUP(22, ABI_FP_user_exceptions),
11954 LOOKUP(23, ABI_FP_number_model),
75375b3e
MGD
11955 {24, "ABI_align_needed", 0, NULL},
11956 {25, "ABI_align_preserved", 0, NULL},
11c1ff18
PB
11957 LOOKUP(26, ABI_enum_size),
11958 LOOKUP(27, ABI_HardFP_use),
11959 LOOKUP(28, ABI_VFP_args),
11960 LOOKUP(29, ABI_WMMX_args),
11961 LOOKUP(30, ABI_optimization_goals),
11962 LOOKUP(31, ABI_FP_optimization_goals),
8e79c3df 11963 {32, "compatibility", 0, NULL},
f5f53991 11964 LOOKUP(34, CPU_unaligned_access),
75375b3e 11965 LOOKUP(36, FP_HP_extension),
8e79c3df 11966 LOOKUP(38, ABI_FP_16bit_format),
cd21e546
MGD
11967 LOOKUP(42, MPextension_use),
11968 LOOKUP(44, DIV_use),
f5f53991
AS
11969 {64, "nodefaults", 0, NULL},
11970 {65, "also_compatible_with", 0, NULL},
11971 LOOKUP(66, T2EE_use),
11972 {67, "conformance", 1, NULL},
11973 LOOKUP(68, Virtualization_use),
cd21e546 11974 LOOKUP(70, MPextension_use_legacy)
11c1ff18
PB
11975};
11976#undef LOOKUP
11977
11c1ff18 11978static unsigned char *
f6f0e17b
NC
11979display_arm_attribute (unsigned char * p,
11980 const unsigned char * const end)
11c1ff18 11981{
70e99720 11982 unsigned int tag;
11c1ff18 11983 unsigned int len;
70e99720 11984 unsigned int val;
2cf0635d 11985 arm_attr_public_tag * attr;
11c1ff18 11986 unsigned i;
70e99720 11987 unsigned int type;
11c1ff18 11988
f6f0e17b 11989 tag = read_uleb128 (p, &len, end);
11c1ff18
PB
11990 p += len;
11991 attr = NULL;
2cf0635d 11992 for (i = 0; i < ARRAY_SIZE (arm_attr_public_tags); i++)
11c1ff18
PB
11993 {
11994 if (arm_attr_public_tags[i].tag == tag)
11995 {
11996 attr = &arm_attr_public_tags[i];
11997 break;
11998 }
11999 }
12000
12001 if (attr)
12002 {
12003 printf (" Tag_%s: ", attr->name);
12004 switch (attr->type)
12005 {
12006 case 0:
12007 switch (tag)
12008 {
12009 case 7: /* Tag_CPU_arch_profile. */
f6f0e17b 12010 val = read_uleb128 (p, &len, end);
11c1ff18
PB
12011 p += len;
12012 switch (val)
12013 {
2b692964
NC
12014 case 0: printf (_("None\n")); break;
12015 case 'A': printf (_("Application\n")); break;
12016 case 'R': printf (_("Realtime\n")); break;
12017 case 'M': printf (_("Microcontroller\n")); break;
12018 case 'S': printf (_("Application or Realtime\n")); break;
11c1ff18
PB
12019 default: printf ("??? (%d)\n", val); break;
12020 }
12021 break;
12022
75375b3e 12023 case 24: /* Tag_align_needed. */
f6f0e17b 12024 val = read_uleb128 (p, &len, end);
75375b3e
MGD
12025 p += len;
12026 switch (val)
12027 {
2b692964
NC
12028 case 0: printf (_("None\n")); break;
12029 case 1: printf (_("8-byte\n")); break;
12030 case 2: printf (_("4-byte\n")); break;
75375b3e
MGD
12031 case 3: printf ("??? 3\n"); break;
12032 default:
12033 if (val <= 12)
dd24e3da 12034 printf (_("8-byte and up to %d-byte extended\n"),
75375b3e
MGD
12035 1 << val);
12036 else
12037 printf ("??? (%d)\n", val);
12038 break;
12039 }
12040 break;
12041
12042 case 25: /* Tag_align_preserved. */
f6f0e17b 12043 val = read_uleb128 (p, &len, end);
75375b3e
MGD
12044 p += len;
12045 switch (val)
12046 {
2b692964
NC
12047 case 0: printf (_("None\n")); break;
12048 case 1: printf (_("8-byte, except leaf SP\n")); break;
12049 case 2: printf (_("8-byte\n")); break;
75375b3e
MGD
12050 case 3: printf ("??? 3\n"); break;
12051 default:
12052 if (val <= 12)
dd24e3da 12053 printf (_("8-byte and up to %d-byte extended\n"),
75375b3e
MGD
12054 1 << val);
12055 else
12056 printf ("??? (%d)\n", val);
12057 break;
12058 }
12059 break;
12060
11c1ff18 12061 case 32: /* Tag_compatibility. */
071436c6 12062 {
071436c6
NC
12063 val = read_uleb128 (p, &len, end);
12064 p += len;
071436c6 12065 printf (_("flag = %d, vendor = "), val);
4082ef84
NC
12066 if (p < end - 1)
12067 {
12068 size_t maxlen = (end - p) - 1;
12069
12070 print_symbol ((int) maxlen, (const char *) p);
12071 p += strnlen ((char *) p, maxlen) + 1;
12072 }
12073 else
12074 {
12075 printf (_("<corrupt>"));
12076 p = (unsigned char *) end;
12077 }
071436c6 12078 putchar ('\n');
071436c6 12079 }
11c1ff18
PB
12080 break;
12081
f5f53991 12082 case 64: /* Tag_nodefaults. */
541a3cbd
NC
12083 /* PR 17531: file: 001-505008-0.01. */
12084 if (p < end)
12085 p++;
2b692964 12086 printf (_("True\n"));
f5f53991
AS
12087 break;
12088
12089 case 65: /* Tag_also_compatible_with. */
f6f0e17b 12090 val = read_uleb128 (p, &len, end);
f5f53991
AS
12091 p += len;
12092 if (val == 6 /* Tag_CPU_arch. */)
12093 {
f6f0e17b 12094 val = read_uleb128 (p, &len, end);
f5f53991 12095 p += len;
071436c6 12096 if ((unsigned int) val >= ARRAY_SIZE (arm_attr_tag_CPU_arch))
f5f53991
AS
12097 printf ("??? (%d)\n", val);
12098 else
12099 printf ("%s\n", arm_attr_tag_CPU_arch[val]);
12100 }
12101 else
12102 printf ("???\n");
071436c6
NC
12103 while (p < end && *(p++) != '\0' /* NUL terminator. */)
12104 ;
f5f53991
AS
12105 break;
12106
11c1ff18 12107 default:
2cf0635d 12108 abort ();
11c1ff18
PB
12109 }
12110 return p;
12111
12112 case 1:
f6f0e17b 12113 return display_tag_value (-1, p, end);
11c1ff18 12114 case 2:
f6f0e17b 12115 return display_tag_value (0, p, end);
11c1ff18
PB
12116
12117 default:
12118 assert (attr->type & 0x80);
f6f0e17b 12119 val = read_uleb128 (p, &len, end);
11c1ff18
PB
12120 p += len;
12121 type = attr->type & 0x7f;
12122 if (val >= type)
12123 printf ("??? (%d)\n", val);
12124 else
12125 printf ("%s\n", attr->table[val]);
12126 return p;
12127 }
12128 }
11c1ff18 12129
f6f0e17b 12130 return display_tag_value (tag, p, end);
11c1ff18
PB
12131}
12132
104d59d1 12133static unsigned char *
60bca95a 12134display_gnu_attribute (unsigned char * p,
f6f0e17b
NC
12135 unsigned char * (* display_proc_gnu_attribute) (unsigned char *, int, const unsigned char * const),
12136 const unsigned char * const end)
104d59d1
JM
12137{
12138 int tag;
12139 unsigned int len;
12140 int val;
104d59d1 12141
f6f0e17b 12142 tag = read_uleb128 (p, &len, end);
104d59d1
JM
12143 p += len;
12144
12145 /* Tag_compatibility is the only generic GNU attribute defined at
12146 present. */
12147 if (tag == 32)
12148 {
f6f0e17b 12149 val = read_uleb128 (p, &len, end);
104d59d1 12150 p += len;
071436c6
NC
12151
12152 printf (_("flag = %d, vendor = "), val);
f6f0e17b
NC
12153 if (p == end)
12154 {
071436c6 12155 printf (_("<corrupt>\n"));
f6f0e17b
NC
12156 warn (_("corrupt vendor attribute\n"));
12157 }
12158 else
12159 {
4082ef84
NC
12160 if (p < end - 1)
12161 {
12162 size_t maxlen = (end - p) - 1;
071436c6 12163
4082ef84
NC
12164 print_symbol ((int) maxlen, (const char *) p);
12165 p += strnlen ((char *) p, maxlen) + 1;
12166 }
12167 else
12168 {
12169 printf (_("<corrupt>"));
12170 p = (unsigned char *) end;
12171 }
071436c6 12172 putchar ('\n');
f6f0e17b 12173 }
104d59d1
JM
12174 return p;
12175 }
12176
12177 if ((tag & 2) == 0 && display_proc_gnu_attribute)
f6f0e17b 12178 return display_proc_gnu_attribute (p, tag, end);
104d59d1 12179
f6f0e17b 12180 return display_tag_value (tag, p, end);
104d59d1
JM
12181}
12182
34c8bcba 12183static unsigned char *
f6f0e17b
NC
12184display_power_gnu_attribute (unsigned char * p,
12185 int tag,
12186 const unsigned char * const end)
34c8bcba 12187{
34c8bcba
JM
12188 unsigned int len;
12189 int val;
12190
12191 if (tag == Tag_GNU_Power_ABI_FP)
12192 {
f6f0e17b 12193 val = read_uleb128 (p, &len, end);
34c8bcba
JM
12194 p += len;
12195 printf (" Tag_GNU_Power_ABI_FP: ");
60bca95a 12196
34c8bcba
JM
12197 switch (val)
12198 {
12199 case 0:
2b692964 12200 printf (_("Hard or soft float\n"));
34c8bcba
JM
12201 break;
12202 case 1:
2b692964 12203 printf (_("Hard float\n"));
34c8bcba
JM
12204 break;
12205 case 2:
2b692964 12206 printf (_("Soft float\n"));
34c8bcba 12207 break;
3c7b9897 12208 case 3:
2b692964 12209 printf (_("Single-precision hard float\n"));
3c7b9897 12210 break;
34c8bcba
JM
12211 default:
12212 printf ("??? (%d)\n", val);
12213 break;
12214 }
12215 return p;
12216 }
12217
c6e65352
DJ
12218 if (tag == Tag_GNU_Power_ABI_Vector)
12219 {
f6f0e17b 12220 val = read_uleb128 (p, &len, end);
c6e65352
DJ
12221 p += len;
12222 printf (" Tag_GNU_Power_ABI_Vector: ");
12223 switch (val)
12224 {
12225 case 0:
2b692964 12226 printf (_("Any\n"));
c6e65352
DJ
12227 break;
12228 case 1:
2b692964 12229 printf (_("Generic\n"));
c6e65352
DJ
12230 break;
12231 case 2:
12232 printf ("AltiVec\n");
12233 break;
12234 case 3:
12235 printf ("SPE\n");
12236 break;
12237 default:
12238 printf ("??? (%d)\n", val);
12239 break;
12240 }
12241 return p;
12242 }
12243
f82e0623
NF
12244 if (tag == Tag_GNU_Power_ABI_Struct_Return)
12245 {
f6f0e17b
NC
12246 if (p == end)
12247 {
071436c6 12248 warn (_("corrupt Tag_GNU_Power_ABI_Struct_Return\n"));
f6f0e17b
NC
12249 return p;
12250 }
0b4362b0 12251
f6f0e17b 12252 val = read_uleb128 (p, &len, end);
f82e0623
NF
12253 p += len;
12254 printf (" Tag_GNU_Power_ABI_Struct_Return: ");
12255 switch (val)
12256 {
12257 case 0:
2b692964 12258 printf (_("Any\n"));
f82e0623
NF
12259 break;
12260 case 1:
12261 printf ("r3/r4\n");
12262 break;
12263 case 2:
2b692964 12264 printf (_("Memory\n"));
f82e0623
NF
12265 break;
12266 default:
12267 printf ("??? (%d)\n", val);
12268 break;
12269 }
12270 return p;
12271 }
12272
f6f0e17b 12273 return display_tag_value (tag & 1, p, end);
34c8bcba
JM
12274}
12275
9e8c70f9
DM
12276static void
12277display_sparc_hwcaps (int mask)
12278{
12279 if (mask)
12280 {
12281 int first = 1;
071436c6 12282
9e8c70f9
DM
12283 if (mask & ELF_SPARC_HWCAP_MUL32)
12284 fputs ("mul32", stdout), first = 0;
12285 if (mask & ELF_SPARC_HWCAP_DIV32)
12286 printf ("%sdiv32", first ? "" : "|"), first = 0;
12287 if (mask & ELF_SPARC_HWCAP_FSMULD)
12288 printf ("%sfsmuld", first ? "" : "|"), first = 0;
12289 if (mask & ELF_SPARC_HWCAP_V8PLUS)
12290 printf ("%sv8plus", first ? "" : "|"), first = 0;
12291 if (mask & ELF_SPARC_HWCAP_POPC)
12292 printf ("%spopc", first ? "" : "|"), first = 0;
12293 if (mask & ELF_SPARC_HWCAP_VIS)
12294 printf ("%svis", first ? "" : "|"), first = 0;
12295 if (mask & ELF_SPARC_HWCAP_VIS2)
12296 printf ("%svis2", first ? "" : "|"), first = 0;
12297 if (mask & ELF_SPARC_HWCAP_ASI_BLK_INIT)
12298 printf ("%sASIBlkInit", first ? "" : "|"), first = 0;
12299 if (mask & ELF_SPARC_HWCAP_FMAF)
12300 printf ("%sfmaf", first ? "" : "|"), first = 0;
12301 if (mask & ELF_SPARC_HWCAP_VIS3)
12302 printf ("%svis3", first ? "" : "|"), first = 0;
12303 if (mask & ELF_SPARC_HWCAP_HPC)
12304 printf ("%shpc", first ? "" : "|"), first = 0;
12305 if (mask & ELF_SPARC_HWCAP_RANDOM)
12306 printf ("%srandom", first ? "" : "|"), first = 0;
12307 if (mask & ELF_SPARC_HWCAP_TRANS)
12308 printf ("%strans", first ? "" : "|"), first = 0;
12309 if (mask & ELF_SPARC_HWCAP_FJFMAU)
12310 printf ("%sfjfmau", first ? "" : "|"), first = 0;
12311 if (mask & ELF_SPARC_HWCAP_IMA)
12312 printf ("%sima", first ? "" : "|"), first = 0;
12313 if (mask & ELF_SPARC_HWCAP_ASI_CACHE_SPARING)
12314 printf ("%scspare", first ? "" : "|"), first = 0;
12315 }
12316 else
071436c6
NC
12317 fputc ('0', stdout);
12318 fputc ('\n', stdout);
9e8c70f9
DM
12319}
12320
3d68f91c
JM
12321static void
12322display_sparc_hwcaps2 (int mask)
12323{
12324 if (mask)
12325 {
12326 int first = 1;
071436c6 12327
3d68f91c
JM
12328 if (mask & ELF_SPARC_HWCAP2_FJATHPLUS)
12329 fputs ("fjathplus", stdout), first = 0;
12330 if (mask & ELF_SPARC_HWCAP2_VIS3B)
12331 printf ("%svis3b", first ? "" : "|"), first = 0;
12332 if (mask & ELF_SPARC_HWCAP2_ADP)
12333 printf ("%sadp", first ? "" : "|"), first = 0;
12334 if (mask & ELF_SPARC_HWCAP2_SPARC5)
12335 printf ("%ssparc5", first ? "" : "|"), first = 0;
12336 if (mask & ELF_SPARC_HWCAP2_MWAIT)
12337 printf ("%smwait", first ? "" : "|"), first = 0;
12338 if (mask & ELF_SPARC_HWCAP2_XMPMUL)
12339 printf ("%sxmpmul", first ? "" : "|"), first = 0;
12340 if (mask & ELF_SPARC_HWCAP2_XMONT)
12341 printf ("%sxmont2", first ? "" : "|"), first = 0;
12342 if (mask & ELF_SPARC_HWCAP2_NSEC)
12343 printf ("%snsec", first ? "" : "|"), first = 0;
12344 if (mask & ELF_SPARC_HWCAP2_FJATHHPC)
12345 printf ("%sfjathhpc", first ? "" : "|"), first = 0;
12346 if (mask & ELF_SPARC_HWCAP2_FJDES)
12347 printf ("%sfjdes", first ? "" : "|"), first = 0;
12348 if (mask & ELF_SPARC_HWCAP2_FJAES)
12349 printf ("%sfjaes", first ? "" : "|"), first = 0;
12350 }
12351 else
071436c6
NC
12352 fputc ('0', stdout);
12353 fputc ('\n', stdout);
3d68f91c
JM
12354}
12355
9e8c70f9 12356static unsigned char *
f6f0e17b
NC
12357display_sparc_gnu_attribute (unsigned char * p,
12358 int tag,
12359 const unsigned char * const end)
9e8c70f9 12360{
3d68f91c
JM
12361 unsigned int len;
12362 int val;
12363
9e8c70f9
DM
12364 if (tag == Tag_GNU_Sparc_HWCAPS)
12365 {
f6f0e17b 12366 val = read_uleb128 (p, &len, end);
9e8c70f9
DM
12367 p += len;
12368 printf (" Tag_GNU_Sparc_HWCAPS: ");
9e8c70f9
DM
12369 display_sparc_hwcaps (val);
12370 return p;
3d68f91c
JM
12371 }
12372 if (tag == Tag_GNU_Sparc_HWCAPS2)
12373 {
12374 val = read_uleb128 (p, &len, end);
12375 p += len;
12376 printf (" Tag_GNU_Sparc_HWCAPS2: ");
12377 display_sparc_hwcaps2 (val);
12378 return p;
12379 }
9e8c70f9 12380
f6f0e17b 12381 return display_tag_value (tag, p, end);
9e8c70f9
DM
12382}
12383
351cdf24
MF
12384static void
12385print_mips_fp_abi_value (int val)
12386{
12387 switch (val)
12388 {
12389 case Val_GNU_MIPS_ABI_FP_ANY:
12390 printf (_("Hard or soft float\n"));
12391 break;
12392 case Val_GNU_MIPS_ABI_FP_DOUBLE:
12393 printf (_("Hard float (double precision)\n"));
12394 break;
12395 case Val_GNU_MIPS_ABI_FP_SINGLE:
12396 printf (_("Hard float (single precision)\n"));
12397 break;
12398 case Val_GNU_MIPS_ABI_FP_SOFT:
12399 printf (_("Soft float\n"));
12400 break;
12401 case Val_GNU_MIPS_ABI_FP_OLD_64:
12402 printf (_("Hard float (MIPS32r2 64-bit FPU 12 callee-saved)\n"));
12403 break;
12404 case Val_GNU_MIPS_ABI_FP_XX:
12405 printf (_("Hard float (32-bit CPU, Any FPU)\n"));
12406 break;
12407 case Val_GNU_MIPS_ABI_FP_64:
12408 printf (_("Hard float (32-bit CPU, 64-bit FPU)\n"));
12409 break;
12410 case Val_GNU_MIPS_ABI_FP_64A:
12411 printf (_("Hard float compat (32-bit CPU, 64-bit FPU)\n"));
12412 break;
12413 default:
12414 printf ("??? (%d)\n", val);
12415 break;
12416 }
12417}
12418
2cf19d5c 12419static unsigned char *
f6f0e17b
NC
12420display_mips_gnu_attribute (unsigned char * p,
12421 int tag,
12422 const unsigned char * const end)
2cf19d5c 12423{
2cf19d5c
JM
12424 if (tag == Tag_GNU_MIPS_ABI_FP)
12425 {
f6f0e17b
NC
12426 unsigned int len;
12427 int val;
12428
12429 val = read_uleb128 (p, &len, end);
2cf19d5c
JM
12430 p += len;
12431 printf (" Tag_GNU_MIPS_ABI_FP: ");
60bca95a 12432
351cdf24
MF
12433 print_mips_fp_abi_value (val);
12434
2cf19d5c
JM
12435 return p;
12436 }
12437
a9f58168
CF
12438 if (tag == Tag_GNU_MIPS_ABI_MSA)
12439 {
12440 unsigned int len;
12441 int val;
12442
12443 val = read_uleb128 (p, &len, end);
12444 p += len;
12445 printf (" Tag_GNU_MIPS_ABI_MSA: ");
12446
12447 switch (val)
12448 {
12449 case Val_GNU_MIPS_ABI_MSA_ANY:
12450 printf (_("Any MSA or not\n"));
12451 break;
12452 case Val_GNU_MIPS_ABI_MSA_128:
12453 printf (_("128-bit MSA\n"));
12454 break;
12455 default:
12456 printf ("??? (%d)\n", val);
12457 break;
12458 }
12459 return p;
12460 }
12461
f6f0e17b 12462 return display_tag_value (tag & 1, p, end);
2cf19d5c
JM
12463}
12464
59e6276b 12465static unsigned char *
f6f0e17b
NC
12466display_tic6x_attribute (unsigned char * p,
12467 const unsigned char * const end)
59e6276b
JM
12468{
12469 int tag;
12470 unsigned int len;
12471 int val;
12472
f6f0e17b 12473 tag = read_uleb128 (p, &len, end);
59e6276b
JM
12474 p += len;
12475
12476 switch (tag)
12477 {
75fa6dc1 12478 case Tag_ISA:
f6f0e17b 12479 val = read_uleb128 (p, &len, end);
59e6276b 12480 p += len;
75fa6dc1 12481 printf (" Tag_ISA: ");
59e6276b
JM
12482
12483 switch (val)
12484 {
75fa6dc1 12485 case C6XABI_Tag_ISA_none:
59e6276b
JM
12486 printf (_("None\n"));
12487 break;
75fa6dc1 12488 case C6XABI_Tag_ISA_C62X:
59e6276b
JM
12489 printf ("C62x\n");
12490 break;
75fa6dc1 12491 case C6XABI_Tag_ISA_C67X:
59e6276b
JM
12492 printf ("C67x\n");
12493 break;
75fa6dc1 12494 case C6XABI_Tag_ISA_C67XP:
59e6276b
JM
12495 printf ("C67x+\n");
12496 break;
75fa6dc1 12497 case C6XABI_Tag_ISA_C64X:
59e6276b
JM
12498 printf ("C64x\n");
12499 break;
75fa6dc1 12500 case C6XABI_Tag_ISA_C64XP:
59e6276b
JM
12501 printf ("C64x+\n");
12502 break;
75fa6dc1 12503 case C6XABI_Tag_ISA_C674X:
59e6276b
JM
12504 printf ("C674x\n");
12505 break;
12506 default:
12507 printf ("??? (%d)\n", val);
12508 break;
12509 }
12510 return p;
12511
87779176 12512 case Tag_ABI_wchar_t:
f6f0e17b 12513 val = read_uleb128 (p, &len, end);
87779176
JM
12514 p += len;
12515 printf (" Tag_ABI_wchar_t: ");
12516 switch (val)
12517 {
12518 case 0:
12519 printf (_("Not used\n"));
12520 break;
12521 case 1:
12522 printf (_("2 bytes\n"));
12523 break;
12524 case 2:
12525 printf (_("4 bytes\n"));
12526 break;
12527 default:
12528 printf ("??? (%d)\n", val);
12529 break;
12530 }
12531 return p;
12532
12533 case Tag_ABI_stack_align_needed:
f6f0e17b 12534 val = read_uleb128 (p, &len, end);
87779176
JM
12535 p += len;
12536 printf (" Tag_ABI_stack_align_needed: ");
12537 switch (val)
12538 {
12539 case 0:
12540 printf (_("8-byte\n"));
12541 break;
12542 case 1:
12543 printf (_("16-byte\n"));
12544 break;
12545 default:
12546 printf ("??? (%d)\n", val);
12547 break;
12548 }
12549 return p;
12550
12551 case Tag_ABI_stack_align_preserved:
f6f0e17b 12552 val = read_uleb128 (p, &len, end);
87779176
JM
12553 p += len;
12554 printf (" Tag_ABI_stack_align_preserved: ");
12555 switch (val)
12556 {
12557 case 0:
12558 printf (_("8-byte\n"));
12559 break;
12560 case 1:
12561 printf (_("16-byte\n"));
12562 break;
12563 default:
12564 printf ("??? (%d)\n", val);
12565 break;
12566 }
12567 return p;
12568
b5593623 12569 case Tag_ABI_DSBT:
f6f0e17b 12570 val = read_uleb128 (p, &len, end);
b5593623
JM
12571 p += len;
12572 printf (" Tag_ABI_DSBT: ");
12573 switch (val)
12574 {
12575 case 0:
12576 printf (_("DSBT addressing not used\n"));
12577 break;
12578 case 1:
12579 printf (_("DSBT addressing used\n"));
12580 break;
12581 default:
12582 printf ("??? (%d)\n", val);
12583 break;
12584 }
12585 return p;
12586
87779176 12587 case Tag_ABI_PID:
f6f0e17b 12588 val = read_uleb128 (p, &len, end);
87779176
JM
12589 p += len;
12590 printf (" Tag_ABI_PID: ");
12591 switch (val)
12592 {
12593 case 0:
12594 printf (_("Data addressing position-dependent\n"));
12595 break;
12596 case 1:
12597 printf (_("Data addressing position-independent, GOT near DP\n"));
12598 break;
12599 case 2:
12600 printf (_("Data addressing position-independent, GOT far from DP\n"));
12601 break;
12602 default:
12603 printf ("??? (%d)\n", val);
12604 break;
12605 }
12606 return p;
12607
12608 case Tag_ABI_PIC:
f6f0e17b 12609 val = read_uleb128 (p, &len, end);
87779176
JM
12610 p += len;
12611 printf (" Tag_ABI_PIC: ");
12612 switch (val)
12613 {
12614 case 0:
12615 printf (_("Code addressing position-dependent\n"));
12616 break;
12617 case 1:
12618 printf (_("Code addressing position-independent\n"));
12619 break;
12620 default:
12621 printf ("??? (%d)\n", val);
12622 break;
12623 }
12624 return p;
12625
12626 case Tag_ABI_array_object_alignment:
f6f0e17b 12627 val = read_uleb128 (p, &len, end);
87779176
JM
12628 p += len;
12629 printf (" Tag_ABI_array_object_alignment: ");
12630 switch (val)
12631 {
12632 case 0:
12633 printf (_("8-byte\n"));
12634 break;
12635 case 1:
12636 printf (_("4-byte\n"));
12637 break;
12638 case 2:
12639 printf (_("16-byte\n"));
12640 break;
12641 default:
12642 printf ("??? (%d)\n", val);
12643 break;
12644 }
12645 return p;
12646
12647 case Tag_ABI_array_object_align_expected:
f6f0e17b 12648 val = read_uleb128 (p, &len, end);
87779176
JM
12649 p += len;
12650 printf (" Tag_ABI_array_object_align_expected: ");
12651 switch (val)
12652 {
12653 case 0:
12654 printf (_("8-byte\n"));
12655 break;
12656 case 1:
12657 printf (_("4-byte\n"));
12658 break;
12659 case 2:
12660 printf (_("16-byte\n"));
12661 break;
12662 default:
12663 printf ("??? (%d)\n", val);
12664 break;
12665 }
12666 return p;
12667
3cbd1c06 12668 case Tag_ABI_compatibility:
071436c6 12669 {
071436c6
NC
12670 val = read_uleb128 (p, &len, end);
12671 p += len;
12672 printf (" Tag_ABI_compatibility: ");
071436c6 12673 printf (_("flag = %d, vendor = "), val);
4082ef84
NC
12674 if (p < end - 1)
12675 {
12676 size_t maxlen = (end - p) - 1;
12677
12678 print_symbol ((int) maxlen, (const char *) p);
12679 p += strnlen ((char *) p, maxlen) + 1;
12680 }
12681 else
12682 {
12683 printf (_("<corrupt>"));
12684 p = (unsigned char *) end;
12685 }
071436c6 12686 putchar ('\n');
071436c6
NC
12687 return p;
12688 }
87779176
JM
12689
12690 case Tag_ABI_conformance:
071436c6 12691 {
4082ef84
NC
12692 printf (" Tag_ABI_conformance: \"");
12693 if (p < end - 1)
12694 {
12695 size_t maxlen = (end - p) - 1;
071436c6 12696
4082ef84
NC
12697 print_symbol ((int) maxlen, (const char *) p);
12698 p += strnlen ((char *) p, maxlen) + 1;
12699 }
12700 else
12701 {
12702 printf (_("<corrupt>"));
12703 p = (unsigned char *) end;
12704 }
071436c6 12705 printf ("\"\n");
071436c6
NC
12706 return p;
12707 }
59e6276b
JM
12708 }
12709
f6f0e17b
NC
12710 return display_tag_value (tag, p, end);
12711}
59e6276b 12712
f6f0e17b
NC
12713static void
12714display_raw_attribute (unsigned char * p, unsigned char * end)
12715{
12716 unsigned long addr = 0;
12717 size_t bytes = end - p;
12718
e0a31db1 12719 assert (end > p);
f6f0e17b 12720 while (bytes)
87779176 12721 {
f6f0e17b
NC
12722 int j;
12723 int k;
12724 int lbytes = (bytes > 16 ? 16 : bytes);
12725
12726 printf (" 0x%8.8lx ", addr);
12727
12728 for (j = 0; j < 16; j++)
12729 {
12730 if (j < lbytes)
12731 printf ("%2.2x", p[j]);
12732 else
12733 printf (" ");
12734
12735 if ((j & 3) == 3)
12736 printf (" ");
12737 }
12738
12739 for (j = 0; j < lbytes; j++)
12740 {
12741 k = p[j];
12742 if (k >= ' ' && k < 0x7f)
12743 printf ("%c", k);
12744 else
12745 printf (".");
12746 }
12747
12748 putchar ('\n');
12749
12750 p += lbytes;
12751 bytes -= lbytes;
12752 addr += lbytes;
87779176 12753 }
59e6276b 12754
f6f0e17b 12755 putchar ('\n');
59e6276b
JM
12756}
12757
13761a11
NC
12758static unsigned char *
12759display_msp430x_attribute (unsigned char * p,
12760 const unsigned char * const end)
12761{
12762 unsigned int len;
12763 int val;
12764 int tag;
12765
12766 tag = read_uleb128 (p, & len, end);
12767 p += len;
0b4362b0 12768
13761a11
NC
12769 switch (tag)
12770 {
12771 case OFBA_MSPABI_Tag_ISA:
12772 val = read_uleb128 (p, &len, end);
12773 p += len;
12774 printf (" Tag_ISA: ");
12775 switch (val)
12776 {
12777 case 0: printf (_("None\n")); break;
12778 case 1: printf (_("MSP430\n")); break;
12779 case 2: printf (_("MSP430X\n")); break;
12780 default: printf ("??? (%d)\n", val); break;
12781 }
12782 break;
12783
12784 case OFBA_MSPABI_Tag_Code_Model:
12785 val = read_uleb128 (p, &len, end);
12786 p += len;
12787 printf (" Tag_Code_Model: ");
12788 switch (val)
12789 {
12790 case 0: printf (_("None\n")); break;
12791 case 1: printf (_("Small\n")); break;
12792 case 2: printf (_("Large\n")); break;
12793 default: printf ("??? (%d)\n", val); break;
12794 }
12795 break;
12796
12797 case OFBA_MSPABI_Tag_Data_Model:
12798 val = read_uleb128 (p, &len, end);
12799 p += len;
12800 printf (" Tag_Data_Model: ");
12801 switch (val)
12802 {
12803 case 0: printf (_("None\n")); break;
12804 case 1: printf (_("Small\n")); break;
12805 case 2: printf (_("Large\n")); break;
12806 case 3: printf (_("Restricted Large\n")); break;
12807 default: printf ("??? (%d)\n", val); break;
12808 }
12809 break;
12810
12811 default:
12812 printf (_(" <unknown tag %d>: "), tag);
12813
12814 if (tag & 1)
12815 {
071436c6 12816 putchar ('"');
4082ef84
NC
12817 if (p < end - 1)
12818 {
12819 size_t maxlen = (end - p) - 1;
12820
12821 print_symbol ((int) maxlen, (const char *) p);
12822 p += strnlen ((char *) p, maxlen) + 1;
12823 }
12824 else
12825 {
12826 printf (_("<corrupt>"));
12827 p = (unsigned char *) end;
12828 }
071436c6 12829 printf ("\"\n");
13761a11
NC
12830 }
12831 else
12832 {
12833 val = read_uleb128 (p, &len, end);
12834 p += len;
12835 printf ("%d (0x%x)\n", val, val);
12836 }
12837 break;
12838 }
12839
4082ef84 12840 assert (p <= end);
13761a11
NC
12841 return p;
12842}
12843
11c1ff18 12844static int
60bca95a
NC
12845process_attributes (FILE * file,
12846 const char * public_name,
104d59d1 12847 unsigned int proc_type,
f6f0e17b
NC
12848 unsigned char * (* display_pub_attribute) (unsigned char *, const unsigned char * const),
12849 unsigned char * (* display_proc_gnu_attribute) (unsigned char *, int, const unsigned char * const))
11c1ff18 12850{
2cf0635d 12851 Elf_Internal_Shdr * sect;
11c1ff18
PB
12852 unsigned i;
12853
12854 /* Find the section header so that we get the size. */
12855 for (i = 0, sect = section_headers;
12856 i < elf_header.e_shnum;
12857 i++, sect++)
12858 {
071436c6
NC
12859 unsigned char * contents;
12860 unsigned char * p;
12861
104d59d1 12862 if (sect->sh_type != proc_type && sect->sh_type != SHT_GNU_ATTRIBUTES)
11c1ff18
PB
12863 continue;
12864
3f5e193b
NC
12865 contents = (unsigned char *) get_data (NULL, file, sect->sh_offset, 1,
12866 sect->sh_size, _("attributes"));
60bca95a 12867 if (contents == NULL)
11c1ff18 12868 continue;
60bca95a 12869
11c1ff18
PB
12870 p = contents;
12871 if (*p == 'A')
12872 {
071436c6
NC
12873 bfd_vma section_len;
12874
12875 section_len = sect->sh_size - 1;
11c1ff18 12876 p++;
60bca95a 12877
071436c6 12878 while (section_len > 0)
11c1ff18 12879 {
071436c6 12880 bfd_vma attr_len;
e9847026 12881 unsigned int namelen;
11c1ff18 12882 bfd_boolean public_section;
104d59d1 12883 bfd_boolean gnu_section;
11c1ff18 12884
071436c6 12885 if (section_len <= 4)
e0a31db1
NC
12886 {
12887 error (_("Tag section ends prematurely\n"));
12888 break;
12889 }
071436c6 12890 attr_len = byte_get (p, 4);
11c1ff18 12891 p += 4;
60bca95a 12892
071436c6 12893 if (attr_len > section_len)
11c1ff18 12894 {
071436c6
NC
12895 error (_("Bad attribute length (%u > %u)\n"),
12896 (unsigned) attr_len, (unsigned) section_len);
12897 attr_len = section_len;
11c1ff18 12898 }
74e1a04b 12899 /* PR 17531: file: 001-101425-0.004 */
071436c6 12900 else if (attr_len < 5)
74e1a04b 12901 {
071436c6 12902 error (_("Attribute length of %u is too small\n"), (unsigned) attr_len);
74e1a04b
NC
12903 break;
12904 }
e9847026 12905
071436c6
NC
12906 section_len -= attr_len;
12907 attr_len -= 4;
12908
12909 namelen = strnlen ((char *) p, attr_len) + 1;
12910 if (namelen == 0 || namelen >= attr_len)
e9847026
NC
12911 {
12912 error (_("Corrupt attribute section name\n"));
12913 break;
12914 }
12915
071436c6
NC
12916 printf (_("Attribute Section: "));
12917 print_symbol (INT_MAX, (const char *) p);
12918 putchar ('\n');
60bca95a
NC
12919
12920 if (public_name && streq ((char *) p, public_name))
11c1ff18
PB
12921 public_section = TRUE;
12922 else
12923 public_section = FALSE;
60bca95a
NC
12924
12925 if (streq ((char *) p, "gnu"))
104d59d1
JM
12926 gnu_section = TRUE;
12927 else
12928 gnu_section = FALSE;
60bca95a 12929
11c1ff18 12930 p += namelen;
071436c6 12931 attr_len -= namelen;
e0a31db1 12932
071436c6 12933 while (attr_len > 0 && p < contents + sect->sh_size)
11c1ff18 12934 {
e0a31db1 12935 int tag;
11c1ff18
PB
12936 int val;
12937 bfd_vma size;
071436c6 12938 unsigned char * end;
60bca95a 12939
e0a31db1 12940 /* PR binutils/17531: Safe handling of corrupt files. */
071436c6 12941 if (attr_len < 6)
e0a31db1
NC
12942 {
12943 error (_("Unused bytes at end of section\n"));
12944 section_len = 0;
12945 break;
12946 }
12947
12948 tag = *(p++);
11c1ff18 12949 size = byte_get (p, 4);
071436c6 12950 if (size > attr_len)
11c1ff18 12951 {
e9847026 12952 error (_("Bad subsection length (%u > %u)\n"),
071436c6
NC
12953 (unsigned) size, (unsigned) attr_len);
12954 size = attr_len;
11c1ff18 12955 }
e0a31db1
NC
12956 /* PR binutils/17531: Safe handling of corrupt files. */
12957 if (size < 6)
12958 {
12959 error (_("Bad subsection length (%u < 6)\n"),
12960 (unsigned) size);
12961 section_len = 0;
12962 break;
12963 }
60bca95a 12964
071436c6 12965 attr_len -= size;
11c1ff18 12966 end = p + size - 1;
071436c6 12967 assert (end <= contents + sect->sh_size);
11c1ff18 12968 p += 4;
60bca95a 12969
11c1ff18
PB
12970 switch (tag)
12971 {
12972 case 1:
2b692964 12973 printf (_("File Attributes\n"));
11c1ff18
PB
12974 break;
12975 case 2:
2b692964 12976 printf (_("Section Attributes:"));
11c1ff18
PB
12977 goto do_numlist;
12978 case 3:
2b692964 12979 printf (_("Symbol Attributes:"));
11c1ff18
PB
12980 do_numlist:
12981 for (;;)
12982 {
91d6fa6a 12983 unsigned int j;
60bca95a 12984
f6f0e17b 12985 val = read_uleb128 (p, &j, end);
91d6fa6a 12986 p += j;
11c1ff18
PB
12987 if (val == 0)
12988 break;
12989 printf (" %d", val);
12990 }
12991 printf ("\n");
12992 break;
12993 default:
2b692964 12994 printf (_("Unknown tag: %d\n"), tag);
11c1ff18
PB
12995 public_section = FALSE;
12996 break;
12997 }
60bca95a 12998
071436c6 12999 if (public_section && display_pub_attribute != NULL)
11c1ff18
PB
13000 {
13001 while (p < end)
f6f0e17b 13002 p = display_pub_attribute (p, end);
071436c6 13003 assert (p <= end);
104d59d1 13004 }
071436c6 13005 else if (gnu_section && display_proc_gnu_attribute != NULL)
104d59d1
JM
13006 {
13007 while (p < end)
13008 p = display_gnu_attribute (p,
f6f0e17b
NC
13009 display_proc_gnu_attribute,
13010 end);
071436c6 13011 assert (p <= end);
11c1ff18 13012 }
071436c6 13013 else if (p < end)
11c1ff18 13014 {
071436c6 13015 printf (_(" Unknown attribute:\n"));
f6f0e17b 13016 display_raw_attribute (p, end);
11c1ff18
PB
13017 p = end;
13018 }
071436c6
NC
13019 else
13020 attr_len = 0;
11c1ff18
PB
13021 }
13022 }
13023 }
13024 else
e9847026 13025 printf (_("Unknown format '%c' (%d)\n"), *p, *p);
d70c5fc7 13026
60bca95a 13027 free (contents);
11c1ff18
PB
13028 }
13029 return 1;
13030}
13031
104d59d1 13032static int
2cf0635d 13033process_arm_specific (FILE * file)
104d59d1
JM
13034{
13035 return process_attributes (file, "aeabi", SHT_ARM_ATTRIBUTES,
13036 display_arm_attribute, NULL);
13037}
13038
34c8bcba 13039static int
2cf0635d 13040process_power_specific (FILE * file)
34c8bcba
JM
13041{
13042 return process_attributes (file, NULL, SHT_GNU_ATTRIBUTES, NULL,
13043 display_power_gnu_attribute);
13044}
13045
9e8c70f9
DM
13046static int
13047process_sparc_specific (FILE * file)
13048{
13049 return process_attributes (file, NULL, SHT_GNU_ATTRIBUTES, NULL,
13050 display_sparc_gnu_attribute);
13051}
13052
59e6276b
JM
13053static int
13054process_tic6x_specific (FILE * file)
13055{
13056 return process_attributes (file, "c6xabi", SHT_C6000_ATTRIBUTES,
13057 display_tic6x_attribute, NULL);
13058}
13059
13761a11
NC
13060static int
13061process_msp430x_specific (FILE * file)
13062{
13063 return process_attributes (file, "mspabi", SHT_MSP430_ATTRIBUTES,
13064 display_msp430x_attribute, NULL);
13065}
13066
ccb4c951
RS
13067/* DATA points to the contents of a MIPS GOT that starts at VMA PLTGOT.
13068 Print the Address, Access and Initial fields of an entry at VMA ADDR
13069 and return the VMA of the next entry. */
13070
13071static bfd_vma
2cf0635d 13072print_mips_got_entry (unsigned char * data, bfd_vma pltgot, bfd_vma addr)
ccb4c951
RS
13073{
13074 printf (" ");
13075 print_vma (addr, LONG_HEX);
13076 printf (" ");
13077 if (addr < pltgot + 0xfff0)
13078 printf ("%6d(gp)", (int) (addr - pltgot - 0x7ff0));
13079 else
13080 printf ("%10s", "");
13081 printf (" ");
13082 if (data == NULL)
2b692964 13083 printf ("%*s", is_32bit_elf ? 8 : 16, _("<unknown>"));
ccb4c951
RS
13084 else
13085 {
13086 bfd_vma entry;
13087
13088 entry = byte_get (data + addr - pltgot, is_32bit_elf ? 4 : 8);
13089 print_vma (entry, LONG_HEX);
13090 }
13091 return addr + (is_32bit_elf ? 4 : 8);
13092}
13093
861fb55a
DJ
13094/* DATA points to the contents of a MIPS PLT GOT that starts at VMA
13095 PLTGOT. Print the Address and Initial fields of an entry at VMA
13096 ADDR and return the VMA of the next entry. */
13097
13098static bfd_vma
2cf0635d 13099print_mips_pltgot_entry (unsigned char * data, bfd_vma pltgot, bfd_vma addr)
861fb55a
DJ
13100{
13101 printf (" ");
13102 print_vma (addr, LONG_HEX);
13103 printf (" ");
13104 if (data == NULL)
2b692964 13105 printf ("%*s", is_32bit_elf ? 8 : 16, _("<unknown>"));
861fb55a
DJ
13106 else
13107 {
13108 bfd_vma entry;
13109
13110 entry = byte_get (data + addr - pltgot, is_32bit_elf ? 4 : 8);
13111 print_vma (entry, LONG_HEX);
13112 }
13113 return addr + (is_32bit_elf ? 4 : 8);
13114}
13115
351cdf24
MF
13116static void
13117print_mips_ases (unsigned int mask)
13118{
13119 if (mask & AFL_ASE_DSP)
13120 fputs ("\n\tDSP ASE", stdout);
13121 if (mask & AFL_ASE_DSPR2)
13122 fputs ("\n\tDSP R2 ASE", stdout);
13123 if (mask & AFL_ASE_EVA)
13124 fputs ("\n\tEnhanced VA Scheme", stdout);
13125 if (mask & AFL_ASE_MCU)
13126 fputs ("\n\tMCU (MicroController) ASE", stdout);
13127 if (mask & AFL_ASE_MDMX)
13128 fputs ("\n\tMDMX ASE", stdout);
13129 if (mask & AFL_ASE_MIPS3D)
13130 fputs ("\n\tMIPS-3D ASE", stdout);
13131 if (mask & AFL_ASE_MT)
13132 fputs ("\n\tMT ASE", stdout);
13133 if (mask & AFL_ASE_SMARTMIPS)
13134 fputs ("\n\tSmartMIPS ASE", stdout);
13135 if (mask & AFL_ASE_VIRT)
13136 fputs ("\n\tVZ ASE", stdout);
13137 if (mask & AFL_ASE_MSA)
13138 fputs ("\n\tMSA ASE", stdout);
13139 if (mask & AFL_ASE_MIPS16)
13140 fputs ("\n\tMIPS16 ASE", stdout);
13141 if (mask & AFL_ASE_MICROMIPS)
13142 fputs ("\n\tMICROMIPS ASE", stdout);
13143 if (mask & AFL_ASE_XPA)
13144 fputs ("\n\tXPA ASE", stdout);
13145 if (mask == 0)
13146 fprintf (stdout, "\n\t%s", _("None"));
00ac7aa0
MF
13147 else if ((mask & ~AFL_ASE_MASK) != 0)
13148 fprintf (stdout, "\n\t%s (%x)", _("Unknown"), mask & ~AFL_ASE_MASK);
351cdf24
MF
13149}
13150
13151static void
13152print_mips_isa_ext (unsigned int isa_ext)
13153{
13154 switch (isa_ext)
13155 {
13156 case 0:
13157 fputs (_("None"), stdout);
13158 break;
13159 case AFL_EXT_XLR:
13160 fputs ("RMI XLR", stdout);
13161 break;
2c629856
N
13162 case AFL_EXT_OCTEON3:
13163 fputs ("Cavium Networks Octeon3", stdout);
13164 break;
351cdf24
MF
13165 case AFL_EXT_OCTEON2:
13166 fputs ("Cavium Networks Octeon2", stdout);
13167 break;
13168 case AFL_EXT_OCTEONP:
13169 fputs ("Cavium Networks OcteonP", stdout);
13170 break;
13171 case AFL_EXT_LOONGSON_3A:
13172 fputs ("Loongson 3A", stdout);
13173 break;
13174 case AFL_EXT_OCTEON:
13175 fputs ("Cavium Networks Octeon", stdout);
13176 break;
13177 case AFL_EXT_5900:
13178 fputs ("Toshiba R5900", stdout);
13179 break;
13180 case AFL_EXT_4650:
13181 fputs ("MIPS R4650", stdout);
13182 break;
13183 case AFL_EXT_4010:
13184 fputs ("LSI R4010", stdout);
13185 break;
13186 case AFL_EXT_4100:
13187 fputs ("NEC VR4100", stdout);
13188 break;
13189 case AFL_EXT_3900:
13190 fputs ("Toshiba R3900", stdout);
13191 break;
13192 case AFL_EXT_10000:
13193 fputs ("MIPS R10000", stdout);
13194 break;
13195 case AFL_EXT_SB1:
13196 fputs ("Broadcom SB-1", stdout);
13197 break;
13198 case AFL_EXT_4111:
13199 fputs ("NEC VR4111/VR4181", stdout);
13200 break;
13201 case AFL_EXT_4120:
13202 fputs ("NEC VR4120", stdout);
13203 break;
13204 case AFL_EXT_5400:
13205 fputs ("NEC VR5400", stdout);
13206 break;
13207 case AFL_EXT_5500:
13208 fputs ("NEC VR5500", stdout);
13209 break;
13210 case AFL_EXT_LOONGSON_2E:
13211 fputs ("ST Microelectronics Loongson 2E", stdout);
13212 break;
13213 case AFL_EXT_LOONGSON_2F:
13214 fputs ("ST Microelectronics Loongson 2F", stdout);
13215 break;
13216 default:
00ac7aa0 13217 fprintf (stdout, "%s (%d)", _("Unknown"), isa_ext);
351cdf24
MF
13218 }
13219}
13220
13221static int
13222get_mips_reg_size (int reg_size)
13223{
13224 return (reg_size == AFL_REG_NONE) ? 0
13225 : (reg_size == AFL_REG_32) ? 32
13226 : (reg_size == AFL_REG_64) ? 64
13227 : (reg_size == AFL_REG_128) ? 128
13228 : -1;
13229}
13230
19e6b90e 13231static int
2cf0635d 13232process_mips_specific (FILE * file)
5b18a4bc 13233{
2cf0635d 13234 Elf_Internal_Dyn * entry;
351cdf24 13235 Elf_Internal_Shdr *sect = NULL;
19e6b90e
L
13236 size_t liblist_offset = 0;
13237 size_t liblistno = 0;
13238 size_t conflictsno = 0;
13239 size_t options_offset = 0;
13240 size_t conflicts_offset = 0;
861fb55a
DJ
13241 size_t pltrelsz = 0;
13242 size_t pltrel = 0;
ccb4c951 13243 bfd_vma pltgot = 0;
861fb55a
DJ
13244 bfd_vma mips_pltgot = 0;
13245 bfd_vma jmprel = 0;
ccb4c951
RS
13246 bfd_vma local_gotno = 0;
13247 bfd_vma gotsym = 0;
13248 bfd_vma symtabno = 0;
103f02d3 13249
2cf19d5c
JM
13250 process_attributes (file, NULL, SHT_GNU_ATTRIBUTES, NULL,
13251 display_mips_gnu_attribute);
13252
351cdf24
MF
13253 sect = find_section (".MIPS.abiflags");
13254
13255 if (sect != NULL)
13256 {
13257 Elf_External_ABIFlags_v0 *abiflags_ext;
13258 Elf_Internal_ABIFlags_v0 abiflags_in;
13259
13260 if (sizeof (Elf_External_ABIFlags_v0) != sect->sh_size)
13261 fputs ("\nCorrupt ABI Flags section.\n", stdout);
13262 else
13263 {
13264 abiflags_ext = get_data (NULL, file, sect->sh_offset, 1,
13265 sect->sh_size, _("MIPS ABI Flags section"));
13266 if (abiflags_ext)
13267 {
13268 abiflags_in.version = BYTE_GET (abiflags_ext->version);
13269 abiflags_in.isa_level = BYTE_GET (abiflags_ext->isa_level);
13270 abiflags_in.isa_rev = BYTE_GET (abiflags_ext->isa_rev);
13271 abiflags_in.gpr_size = BYTE_GET (abiflags_ext->gpr_size);
13272 abiflags_in.cpr1_size = BYTE_GET (abiflags_ext->cpr1_size);
13273 abiflags_in.cpr2_size = BYTE_GET (abiflags_ext->cpr2_size);
13274 abiflags_in.fp_abi = BYTE_GET (abiflags_ext->fp_abi);
13275 abiflags_in.isa_ext = BYTE_GET (abiflags_ext->isa_ext);
13276 abiflags_in.ases = BYTE_GET (abiflags_ext->ases);
13277 abiflags_in.flags1 = BYTE_GET (abiflags_ext->flags1);
13278 abiflags_in.flags2 = BYTE_GET (abiflags_ext->flags2);
13279
13280 printf ("\nMIPS ABI Flags Version: %d\n", abiflags_in.version);
13281 printf ("\nISA: MIPS%d", abiflags_in.isa_level);
13282 if (abiflags_in.isa_rev > 1)
13283 printf ("r%d", abiflags_in.isa_rev);
13284 printf ("\nGPR size: %d",
13285 get_mips_reg_size (abiflags_in.gpr_size));
13286 printf ("\nCPR1 size: %d",
13287 get_mips_reg_size (abiflags_in.cpr1_size));
13288 printf ("\nCPR2 size: %d",
13289 get_mips_reg_size (abiflags_in.cpr2_size));
13290 fputs ("\nFP ABI: ", stdout);
13291 print_mips_fp_abi_value (abiflags_in.fp_abi);
13292 fputs ("ISA Extension: ", stdout);
13293 print_mips_isa_ext (abiflags_in.isa_ext);
13294 fputs ("\nASEs:", stdout);
13295 print_mips_ases (abiflags_in.ases);
13296 printf ("\nFLAGS 1: %8.8lx", abiflags_in.flags1);
13297 printf ("\nFLAGS 2: %8.8lx", abiflags_in.flags2);
13298 fputc ('\n', stdout);
13299 free (abiflags_ext);
13300 }
13301 }
13302 }
13303
19e6b90e
L
13304 /* We have a lot of special sections. Thanks SGI! */
13305 if (dynamic_section == NULL)
13306 /* No information available. */
13307 return 0;
252b5132 13308
071436c6
NC
13309 for (entry = dynamic_section;
13310 /* PR 17531 file: 012-50589-0.004. */
13311 entry < dynamic_section + dynamic_nent && entry->d_tag != DT_NULL;
13312 ++entry)
252b5132
RH
13313 switch (entry->d_tag)
13314 {
13315 case DT_MIPS_LIBLIST:
d93f0186
NC
13316 liblist_offset
13317 = offset_from_vma (file, entry->d_un.d_val,
13318 liblistno * sizeof (Elf32_External_Lib));
252b5132
RH
13319 break;
13320 case DT_MIPS_LIBLISTNO:
13321 liblistno = entry->d_un.d_val;
13322 break;
13323 case DT_MIPS_OPTIONS:
d93f0186 13324 options_offset = offset_from_vma (file, entry->d_un.d_val, 0);
252b5132
RH
13325 break;
13326 case DT_MIPS_CONFLICT:
d93f0186
NC
13327 conflicts_offset
13328 = offset_from_vma (file, entry->d_un.d_val,
13329 conflictsno * sizeof (Elf32_External_Conflict));
252b5132
RH
13330 break;
13331 case DT_MIPS_CONFLICTNO:
13332 conflictsno = entry->d_un.d_val;
13333 break;
ccb4c951 13334 case DT_PLTGOT:
861fb55a
DJ
13335 pltgot = entry->d_un.d_ptr;
13336 break;
ccb4c951
RS
13337 case DT_MIPS_LOCAL_GOTNO:
13338 local_gotno = entry->d_un.d_val;
13339 break;
13340 case DT_MIPS_GOTSYM:
13341 gotsym = entry->d_un.d_val;
13342 break;
13343 case DT_MIPS_SYMTABNO:
13344 symtabno = entry->d_un.d_val;
13345 break;
861fb55a
DJ
13346 case DT_MIPS_PLTGOT:
13347 mips_pltgot = entry->d_un.d_ptr;
13348 break;
13349 case DT_PLTREL:
13350 pltrel = entry->d_un.d_val;
13351 break;
13352 case DT_PLTRELSZ:
13353 pltrelsz = entry->d_un.d_val;
13354 break;
13355 case DT_JMPREL:
13356 jmprel = entry->d_un.d_ptr;
13357 break;
252b5132
RH
13358 default:
13359 break;
13360 }
13361
13362 if (liblist_offset != 0 && liblistno != 0 && do_dynamic)
13363 {
2cf0635d 13364 Elf32_External_Lib * elib;
252b5132
RH
13365 size_t cnt;
13366
3f5e193b
NC
13367 elib = (Elf32_External_Lib *) get_data (NULL, file, liblist_offset,
13368 liblistno,
13369 sizeof (Elf32_External_Lib),
9cf03b7e 13370 _("liblist section data"));
a6e9f9df 13371 if (elib)
252b5132 13372 {
2b692964 13373 printf (_("\nSection '.liblist' contains %lu entries:\n"),
a6e9f9df 13374 (unsigned long) liblistno);
2b692964 13375 fputs (_(" Library Time Stamp Checksum Version Flags\n"),
a6e9f9df
AM
13376 stdout);
13377
13378 for (cnt = 0; cnt < liblistno; ++cnt)
252b5132 13379 {
a6e9f9df 13380 Elf32_Lib liblist;
91d6fa6a 13381 time_t atime;
a6e9f9df 13382 char timebuf[20];
2cf0635d 13383 struct tm * tmp;
a6e9f9df
AM
13384
13385 liblist.l_name = BYTE_GET (elib[cnt].l_name);
91d6fa6a 13386 atime = BYTE_GET (elib[cnt].l_time_stamp);
a6e9f9df
AM
13387 liblist.l_checksum = BYTE_GET (elib[cnt].l_checksum);
13388 liblist.l_version = BYTE_GET (elib[cnt].l_version);
13389 liblist.l_flags = BYTE_GET (elib[cnt].l_flags);
13390
91d6fa6a 13391 tmp = gmtime (&atime);
e9e44622
JJ
13392 snprintf (timebuf, sizeof (timebuf),
13393 "%04u-%02u-%02uT%02u:%02u:%02u",
13394 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
13395 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
a6e9f9df 13396
31104126 13397 printf ("%3lu: ", (unsigned long) cnt);
d79b3d50
NC
13398 if (VALID_DYNAMIC_NAME (liblist.l_name))
13399 print_symbol (20, GET_DYNAMIC_NAME (liblist.l_name));
13400 else
2b692964 13401 printf (_("<corrupt: %9ld>"), liblist.l_name);
31104126
NC
13402 printf (" %s %#10lx %-7ld", timebuf, liblist.l_checksum,
13403 liblist.l_version);
a6e9f9df
AM
13404
13405 if (liblist.l_flags == 0)
2b692964 13406 puts (_(" NONE"));
a6e9f9df
AM
13407 else
13408 {
13409 static const struct
252b5132 13410 {
2cf0635d 13411 const char * name;
a6e9f9df 13412 int bit;
252b5132 13413 }
a6e9f9df
AM
13414 l_flags_vals[] =
13415 {
13416 { " EXACT_MATCH", LL_EXACT_MATCH },
13417 { " IGNORE_INT_VER", LL_IGNORE_INT_VER },
13418 { " REQUIRE_MINOR", LL_REQUIRE_MINOR },
13419 { " EXPORTS", LL_EXPORTS },
13420 { " DELAY_LOAD", LL_DELAY_LOAD },
13421 { " DELTA", LL_DELTA }
13422 };
13423 int flags = liblist.l_flags;
13424 size_t fcnt;
13425
60bca95a 13426 for (fcnt = 0; fcnt < ARRAY_SIZE (l_flags_vals); ++fcnt)
a6e9f9df
AM
13427 if ((flags & l_flags_vals[fcnt].bit) != 0)
13428 {
13429 fputs (l_flags_vals[fcnt].name, stdout);
13430 flags ^= l_flags_vals[fcnt].bit;
13431 }
13432 if (flags != 0)
13433 printf (" %#x", (unsigned int) flags);
252b5132 13434
a6e9f9df
AM
13435 puts ("");
13436 }
252b5132 13437 }
252b5132 13438
a6e9f9df
AM
13439 free (elib);
13440 }
252b5132
RH
13441 }
13442
13443 if (options_offset != 0)
13444 {
2cf0635d 13445 Elf_External_Options * eopt;
2cf0635d
NC
13446 Elf_Internal_Options * iopt;
13447 Elf_Internal_Options * option;
252b5132
RH
13448 size_t offset;
13449 int cnt;
351cdf24 13450 sect = section_headers;
252b5132
RH
13451
13452 /* Find the section header so that we get the size. */
071436c6
NC
13453 sect = find_section_by_type (SHT_MIPS_OPTIONS);
13454 /* PR 17533 file: 012-277276-0.004. */
13455 if (sect == NULL)
13456 {
13457 error (_("No MIPS_OPTIONS header found\n"));
13458 return 0;
13459 }
252b5132 13460
3f5e193b
NC
13461 eopt = (Elf_External_Options *) get_data (NULL, file, options_offset, 1,
13462 sect->sh_size, _("options"));
a6e9f9df 13463 if (eopt)
252b5132 13464 {
3f5e193b
NC
13465 iopt = (Elf_Internal_Options *)
13466 cmalloc ((sect->sh_size / sizeof (eopt)), sizeof (* iopt));
a6e9f9df
AM
13467 if (iopt == NULL)
13468 {
8b73c356 13469 error (_("Out of memory allocatinf space for MIPS options\n"));
a6e9f9df
AM
13470 return 0;
13471 }
76da6bbe 13472
a6e9f9df
AM
13473 offset = cnt = 0;
13474 option = iopt;
252b5132 13475
a6e9f9df
AM
13476 while (offset < sect->sh_size)
13477 {
2cf0635d 13478 Elf_External_Options * eoption;
252b5132 13479
a6e9f9df 13480 eoption = (Elf_External_Options *) ((char *) eopt + offset);
252b5132 13481
a6e9f9df
AM
13482 option->kind = BYTE_GET (eoption->kind);
13483 option->size = BYTE_GET (eoption->size);
13484 option->section = BYTE_GET (eoption->section);
13485 option->info = BYTE_GET (eoption->info);
76da6bbe 13486
a6e9f9df 13487 offset += option->size;
252b5132 13488
a6e9f9df
AM
13489 ++option;
13490 ++cnt;
13491 }
252b5132 13492
a6e9f9df 13493 printf (_("\nSection '%s' contains %d entries:\n"),
74e1a04b 13494 printable_section_name (sect), cnt);
76da6bbe 13495
a6e9f9df 13496 option = iopt;
252b5132 13497
a6e9f9df 13498 while (cnt-- > 0)
252b5132 13499 {
a6e9f9df
AM
13500 size_t len;
13501
13502 switch (option->kind)
252b5132 13503 {
a6e9f9df
AM
13504 case ODK_NULL:
13505 /* This shouldn't happen. */
13506 printf (" NULL %d %lx", option->section, option->info);
13507 break;
13508 case ODK_REGINFO:
13509 printf (" REGINFO ");
13510 if (elf_header.e_machine == EM_MIPS)
13511 {
13512 /* 32bit form. */
2cf0635d 13513 Elf32_External_RegInfo * ereg;
b34976b6 13514 Elf32_RegInfo reginfo;
a6e9f9df
AM
13515
13516 ereg = (Elf32_External_RegInfo *) (option + 1);
13517 reginfo.ri_gprmask = BYTE_GET (ereg->ri_gprmask);
13518 reginfo.ri_cprmask[0] = BYTE_GET (ereg->ri_cprmask[0]);
13519 reginfo.ri_cprmask[1] = BYTE_GET (ereg->ri_cprmask[1]);
13520 reginfo.ri_cprmask[2] = BYTE_GET (ereg->ri_cprmask[2]);
13521 reginfo.ri_cprmask[3] = BYTE_GET (ereg->ri_cprmask[3]);
13522 reginfo.ri_gp_value = BYTE_GET (ereg->ri_gp_value);
13523
13524 printf ("GPR %08lx GP 0x%lx\n",
13525 reginfo.ri_gprmask,
13526 (unsigned long) reginfo.ri_gp_value);
13527 printf (" CPR0 %08lx CPR1 %08lx CPR2 %08lx CPR3 %08lx\n",
13528 reginfo.ri_cprmask[0], reginfo.ri_cprmask[1],
13529 reginfo.ri_cprmask[2], reginfo.ri_cprmask[3]);
13530 }
13531 else
13532 {
13533 /* 64 bit form. */
2cf0635d 13534 Elf64_External_RegInfo * ereg;
a6e9f9df
AM
13535 Elf64_Internal_RegInfo reginfo;
13536
13537 ereg = (Elf64_External_RegInfo *) (option + 1);
13538 reginfo.ri_gprmask = BYTE_GET (ereg->ri_gprmask);
13539 reginfo.ri_cprmask[0] = BYTE_GET (ereg->ri_cprmask[0]);
13540 reginfo.ri_cprmask[1] = BYTE_GET (ereg->ri_cprmask[1]);
13541 reginfo.ri_cprmask[2] = BYTE_GET (ereg->ri_cprmask[2]);
13542 reginfo.ri_cprmask[3] = BYTE_GET (ereg->ri_cprmask[3]);
66543521 13543 reginfo.ri_gp_value = BYTE_GET (ereg->ri_gp_value);
a6e9f9df
AM
13544
13545 printf ("GPR %08lx GP 0x",
13546 reginfo.ri_gprmask);
13547 printf_vma (reginfo.ri_gp_value);
13548 printf ("\n");
13549
13550 printf (" CPR0 %08lx CPR1 %08lx CPR2 %08lx CPR3 %08lx\n",
13551 reginfo.ri_cprmask[0], reginfo.ri_cprmask[1],
13552 reginfo.ri_cprmask[2], reginfo.ri_cprmask[3]);
13553 }
13554 ++option;
13555 continue;
13556 case ODK_EXCEPTIONS:
13557 fputs (" EXCEPTIONS fpe_min(", stdout);
13558 process_mips_fpe_exception (option->info & OEX_FPU_MIN);
13559 fputs (") fpe_max(", stdout);
13560 process_mips_fpe_exception ((option->info & OEX_FPU_MAX) >> 8);
13561 fputs (")", stdout);
13562
13563 if (option->info & OEX_PAGE0)
13564 fputs (" PAGE0", stdout);
13565 if (option->info & OEX_SMM)
13566 fputs (" SMM", stdout);
13567 if (option->info & OEX_FPDBUG)
13568 fputs (" FPDBUG", stdout);
13569 if (option->info & OEX_DISMISS)
13570 fputs (" DISMISS", stdout);
13571 break;
13572 case ODK_PAD:
13573 fputs (" PAD ", stdout);
13574 if (option->info & OPAD_PREFIX)
13575 fputs (" PREFIX", stdout);
13576 if (option->info & OPAD_POSTFIX)
13577 fputs (" POSTFIX", stdout);
13578 if (option->info & OPAD_SYMBOL)
13579 fputs (" SYMBOL", stdout);
13580 break;
13581 case ODK_HWPATCH:
13582 fputs (" HWPATCH ", stdout);
13583 if (option->info & OHW_R4KEOP)
13584 fputs (" R4KEOP", stdout);
13585 if (option->info & OHW_R8KPFETCH)
13586 fputs (" R8KPFETCH", stdout);
13587 if (option->info & OHW_R5KEOP)
13588 fputs (" R5KEOP", stdout);
13589 if (option->info & OHW_R5KCVTL)
13590 fputs (" R5KCVTL", stdout);
13591 break;
13592 case ODK_FILL:
13593 fputs (" FILL ", stdout);
13594 /* XXX Print content of info word? */
13595 break;
13596 case ODK_TAGS:
13597 fputs (" TAGS ", stdout);
13598 /* XXX Print content of info word? */
13599 break;
13600 case ODK_HWAND:
13601 fputs (" HWAND ", stdout);
13602 if (option->info & OHWA0_R4KEOP_CHECKED)
13603 fputs (" R4KEOP_CHECKED", stdout);
13604 if (option->info & OHWA0_R4KEOP_CLEAN)
13605 fputs (" R4KEOP_CLEAN", stdout);
13606 break;
13607 case ODK_HWOR:
13608 fputs (" HWOR ", stdout);
13609 if (option->info & OHWA0_R4KEOP_CHECKED)
13610 fputs (" R4KEOP_CHECKED", stdout);
13611 if (option->info & OHWA0_R4KEOP_CLEAN)
13612 fputs (" R4KEOP_CLEAN", stdout);
13613 break;
13614 case ODK_GP_GROUP:
13615 printf (" GP_GROUP %#06lx self-contained %#06lx",
13616 option->info & OGP_GROUP,
13617 (option->info & OGP_SELF) >> 16);
13618 break;
13619 case ODK_IDENT:
13620 printf (" IDENT %#06lx self-contained %#06lx",
13621 option->info & OGP_GROUP,
13622 (option->info & OGP_SELF) >> 16);
13623 break;
13624 default:
13625 /* This shouldn't happen. */
13626 printf (" %3d ??? %d %lx",
13627 option->kind, option->section, option->info);
13628 break;
252b5132 13629 }
a6e9f9df 13630
2cf0635d 13631 len = sizeof (* eopt);
a6e9f9df
AM
13632 while (len < option->size)
13633 if (((char *) option)[len] >= ' '
13634 && ((char *) option)[len] < 0x7f)
13635 printf ("%c", ((char *) option)[len++]);
13636 else
13637 printf ("\\%03o", ((char *) option)[len++]);
13638
13639 fputs ("\n", stdout);
252b5132 13640 ++option;
252b5132
RH
13641 }
13642
a6e9f9df 13643 free (eopt);
252b5132 13644 }
252b5132
RH
13645 }
13646
13647 if (conflicts_offset != 0 && conflictsno != 0)
13648 {
2cf0635d 13649 Elf32_Conflict * iconf;
252b5132
RH
13650 size_t cnt;
13651
13652 if (dynamic_symbols == NULL)
13653 {
591a748a 13654 error (_("conflict list found without a dynamic symbol table\n"));
252b5132
RH
13655 return 0;
13656 }
13657
3f5e193b 13658 iconf = (Elf32_Conflict *) cmalloc (conflictsno, sizeof (* iconf));
252b5132
RH
13659 if (iconf == NULL)
13660 {
8b73c356 13661 error (_("Out of memory allocating space for dynamic conflicts\n"));
252b5132
RH
13662 return 0;
13663 }
13664
9ea033b2 13665 if (is_32bit_elf)
252b5132 13666 {
2cf0635d 13667 Elf32_External_Conflict * econf32;
a6e9f9df 13668
3f5e193b
NC
13669 econf32 = (Elf32_External_Conflict *)
13670 get_data (NULL, file, conflicts_offset, conflictsno,
13671 sizeof (* econf32), _("conflict"));
a6e9f9df
AM
13672 if (!econf32)
13673 return 0;
252b5132
RH
13674
13675 for (cnt = 0; cnt < conflictsno; ++cnt)
13676 iconf[cnt] = BYTE_GET (econf32[cnt]);
a6e9f9df
AM
13677
13678 free (econf32);
252b5132
RH
13679 }
13680 else
13681 {
2cf0635d 13682 Elf64_External_Conflict * econf64;
a6e9f9df 13683
3f5e193b
NC
13684 econf64 = (Elf64_External_Conflict *)
13685 get_data (NULL, file, conflicts_offset, conflictsno,
13686 sizeof (* econf64), _("conflict"));
a6e9f9df
AM
13687 if (!econf64)
13688 return 0;
252b5132
RH
13689
13690 for (cnt = 0; cnt < conflictsno; ++cnt)
13691 iconf[cnt] = BYTE_GET (econf64[cnt]);
a6e9f9df
AM
13692
13693 free (econf64);
252b5132
RH
13694 }
13695
c7e7ca54
NC
13696 printf (_("\nSection '.conflict' contains %lu entries:\n"),
13697 (unsigned long) conflictsno);
252b5132
RH
13698 puts (_(" Num: Index Value Name"));
13699
13700 for (cnt = 0; cnt < conflictsno; ++cnt)
13701 {
b34976b6 13702 printf ("%5lu: %8lu ", (unsigned long) cnt, iconf[cnt]);
e0a31db1
NC
13703
13704 if (iconf[cnt] >= num_dynamic_syms)
13705 printf (_("<corrupt symbol index>"));
d79b3d50 13706 else
e0a31db1
NC
13707 {
13708 Elf_Internal_Sym * psym;
13709
13710 psym = & dynamic_symbols[iconf[cnt]];
13711 print_vma (psym->st_value, FULL_HEX);
13712 putchar (' ');
13713 if (VALID_DYNAMIC_NAME (psym->st_name))
13714 print_symbol (25, GET_DYNAMIC_NAME (psym->st_name));
13715 else
13716 printf (_("<corrupt: %14ld>"), psym->st_name);
13717 }
31104126 13718 putchar ('\n');
252b5132
RH
13719 }
13720
252b5132
RH
13721 free (iconf);
13722 }
13723
ccb4c951
RS
13724 if (pltgot != 0 && local_gotno != 0)
13725 {
91d6fa6a 13726 bfd_vma ent, local_end, global_end;
bbeee7ea 13727 size_t i, offset;
2cf0635d 13728 unsigned char * data;
bbeee7ea 13729 int addr_size;
ccb4c951 13730
91d6fa6a 13731 ent = pltgot;
ccb4c951
RS
13732 addr_size = (is_32bit_elf ? 4 : 8);
13733 local_end = pltgot + local_gotno * addr_size;
ccb4c951 13734
74e1a04b
NC
13735 /* PR binutils/17533 file: 012-111227-0.004 */
13736 if (symtabno < gotsym)
13737 {
13738 error (_("The GOT symbol offset (%lu) is greater than the symbol table size (%lu)\n"),
13739 (long) gotsym, (long) symtabno);
13740 return 0;
13741 }
13742
13743 global_end = local_end + (symtabno - gotsym) * addr_size;
13744 assert (global_end >= local_end);
ccb4c951 13745 offset = offset_from_vma (file, pltgot, global_end - pltgot);
3f5e193b 13746 data = (unsigned char *) get_data (NULL, file, offset,
9cf03b7e
NC
13747 global_end - pltgot, 1,
13748 _("Global Offset Table data"));
59245841
NC
13749 if (data == NULL)
13750 return 0;
13751
ccb4c951
RS
13752 printf (_("\nPrimary GOT:\n"));
13753 printf (_(" Canonical gp value: "));
13754 print_vma (pltgot + 0x7ff0, LONG_HEX);
13755 printf ("\n\n");
13756
13757 printf (_(" Reserved entries:\n"));
13758 printf (_(" %*s %10s %*s Purpose\n"),
2b692964
NC
13759 addr_size * 2, _("Address"), _("Access"),
13760 addr_size * 2, _("Initial"));
91d6fa6a 13761 ent = print_mips_got_entry (data, pltgot, ent);
2b692964 13762 printf (_(" Lazy resolver\n"));
ccb4c951 13763 if (data
91d6fa6a 13764 && (byte_get (data + ent - pltgot, addr_size)
ccb4c951
RS
13765 >> (addr_size * 8 - 1)) != 0)
13766 {
91d6fa6a 13767 ent = print_mips_got_entry (data, pltgot, ent);
2b692964 13768 printf (_(" Module pointer (GNU extension)\n"));
ccb4c951
RS
13769 }
13770 printf ("\n");
13771
91d6fa6a 13772 if (ent < local_end)
ccb4c951
RS
13773 {
13774 printf (_(" Local entries:\n"));
cc5914eb 13775 printf (" %*s %10s %*s\n",
2b692964
NC
13776 addr_size * 2, _("Address"), _("Access"),
13777 addr_size * 2, _("Initial"));
91d6fa6a 13778 while (ent < local_end)
ccb4c951 13779 {
91d6fa6a 13780 ent = print_mips_got_entry (data, pltgot, ent);
ccb4c951
RS
13781 printf ("\n");
13782 }
13783 printf ("\n");
13784 }
13785
13786 if (gotsym < symtabno)
13787 {
13788 int sym_width;
13789
13790 printf (_(" Global entries:\n"));
cc5914eb 13791 printf (" %*s %10s %*s %*s %-7s %3s %s\n",
9cf03b7e
NC
13792 addr_size * 2, _("Address"),
13793 _("Access"),
2b692964 13794 addr_size * 2, _("Initial"),
9cf03b7e
NC
13795 addr_size * 2, _("Sym.Val."),
13796 _("Type"),
13797 /* Note for translators: "Ndx" = abbreviated form of "Index". */
13798 _("Ndx"), _("Name"));
0b4362b0 13799
ccb4c951 13800 sym_width = (is_32bit_elf ? 80 : 160) - 28 - addr_size * 6 - 1;
e0a31db1 13801
ccb4c951
RS
13802 for (i = gotsym; i < symtabno; i++)
13803 {
91d6fa6a 13804 ent = print_mips_got_entry (data, pltgot, ent);
ccb4c951 13805 printf (" ");
e0a31db1
NC
13806
13807 if (dynamic_symbols == NULL)
13808 printf (_("<no dynamic symbols>"));
13809 else if (i < num_dynamic_syms)
13810 {
13811 Elf_Internal_Sym * psym = dynamic_symbols + i;
13812
13813 print_vma (psym->st_value, LONG_HEX);
13814 printf (" %-7s %3s ",
13815 get_symbol_type (ELF_ST_TYPE (psym->st_info)),
13816 get_symbol_index_type (psym->st_shndx));
13817
13818 if (VALID_DYNAMIC_NAME (psym->st_name))
13819 print_symbol (sym_width, GET_DYNAMIC_NAME (psym->st_name));
13820 else
13821 printf (_("<corrupt: %14ld>"), psym->st_name);
13822 }
ccb4c951 13823 else
7fc5ac57
JBG
13824 printf (_("<symbol index %lu exceeds number of dynamic symbols>"),
13825 (unsigned long) i);
e0a31db1 13826
ccb4c951
RS
13827 printf ("\n");
13828 }
13829 printf ("\n");
13830 }
13831
13832 if (data)
13833 free (data);
13834 }
13835
861fb55a
DJ
13836 if (mips_pltgot != 0 && jmprel != 0 && pltrel != 0 && pltrelsz != 0)
13837 {
91d6fa6a 13838 bfd_vma ent, end;
861fb55a
DJ
13839 size_t offset, rel_offset;
13840 unsigned long count, i;
2cf0635d 13841 unsigned char * data;
861fb55a 13842 int addr_size, sym_width;
2cf0635d 13843 Elf_Internal_Rela * rels;
861fb55a
DJ
13844
13845 rel_offset = offset_from_vma (file, jmprel, pltrelsz);
13846 if (pltrel == DT_RELA)
13847 {
13848 if (!slurp_rela_relocs (file, rel_offset, pltrelsz, &rels, &count))
13849 return 0;
13850 }
13851 else
13852 {
13853 if (!slurp_rel_relocs (file, rel_offset, pltrelsz, &rels, &count))
13854 return 0;
13855 }
13856
91d6fa6a 13857 ent = mips_pltgot;
861fb55a
DJ
13858 addr_size = (is_32bit_elf ? 4 : 8);
13859 end = mips_pltgot + (2 + count) * addr_size;
13860
13861 offset = offset_from_vma (file, mips_pltgot, end - mips_pltgot);
3f5e193b 13862 data = (unsigned char *) get_data (NULL, file, offset, end - mips_pltgot,
9cf03b7e 13863 1, _("Procedure Linkage Table data"));
59245841
NC
13864 if (data == NULL)
13865 return 0;
13866
9cf03b7e 13867 printf ("\nPLT GOT:\n\n");
861fb55a
DJ
13868 printf (_(" Reserved entries:\n"));
13869 printf (_(" %*s %*s Purpose\n"),
2b692964 13870 addr_size * 2, _("Address"), addr_size * 2, _("Initial"));
91d6fa6a 13871 ent = print_mips_pltgot_entry (data, mips_pltgot, ent);
2b692964 13872 printf (_(" PLT lazy resolver\n"));
91d6fa6a 13873 ent = print_mips_pltgot_entry (data, mips_pltgot, ent);
2b692964 13874 printf (_(" Module pointer\n"));
861fb55a
DJ
13875 printf ("\n");
13876
13877 printf (_(" Entries:\n"));
cc5914eb 13878 printf (" %*s %*s %*s %-7s %3s %s\n",
2b692964
NC
13879 addr_size * 2, _("Address"),
13880 addr_size * 2, _("Initial"),
13881 addr_size * 2, _("Sym.Val."), _("Type"), _("Ndx"), _("Name"));
861fb55a
DJ
13882 sym_width = (is_32bit_elf ? 80 : 160) - 17 - addr_size * 6 - 1;
13883 for (i = 0; i < count; i++)
13884 {
df97ab2a 13885 unsigned long idx = get_reloc_symindex (rels[i].r_info);
861fb55a 13886
91d6fa6a 13887 ent = print_mips_pltgot_entry (data, mips_pltgot, ent);
861fb55a 13888 printf (" ");
e0a31db1 13889
df97ab2a
MF
13890 if (idx >= num_dynamic_syms)
13891 printf (_("<corrupt symbol index: %lu>"), idx);
861fb55a 13892 else
e0a31db1 13893 {
df97ab2a 13894 Elf_Internal_Sym * psym = dynamic_symbols + idx;
e0a31db1
NC
13895
13896 print_vma (psym->st_value, LONG_HEX);
13897 printf (" %-7s %3s ",
13898 get_symbol_type (ELF_ST_TYPE (psym->st_info)),
13899 get_symbol_index_type (psym->st_shndx));
13900 if (VALID_DYNAMIC_NAME (psym->st_name))
13901 print_symbol (sym_width, GET_DYNAMIC_NAME (psym->st_name));
13902 else
13903 printf (_("<corrupt: %14ld>"), psym->st_name);
13904 }
861fb55a
DJ
13905 printf ("\n");
13906 }
13907 printf ("\n");
13908
13909 if (data)
13910 free (data);
13911 free (rels);
13912 }
13913
252b5132
RH
13914 return 1;
13915}
13916
35c08157
KLC
13917static int
13918process_nds32_specific (FILE * file)
13919{
13920 Elf_Internal_Shdr *sect = NULL;
13921
13922 sect = find_section (".nds32_e_flags");
13923 if (sect != NULL)
13924 {
13925 unsigned int *flag;
13926
13927 printf ("\nNDS32 elf flags section:\n");
13928 flag = get_data (NULL, file, sect->sh_offset, 1,
13929 sect->sh_size, _("NDS32 elf flags section"));
13930
13931 switch ((*flag) & 0x3)
13932 {
13933 case 0:
13934 printf ("(VEC_SIZE):\tNo entry.\n");
13935 break;
13936 case 1:
13937 printf ("(VEC_SIZE):\t4 bytes\n");
13938 break;
13939 case 2:
13940 printf ("(VEC_SIZE):\t16 bytes\n");
13941 break;
13942 case 3:
13943 printf ("(VEC_SIZE):\treserved\n");
13944 break;
13945 }
13946 }
13947
13948 return TRUE;
13949}
13950
047b2264 13951static int
2cf0635d 13952process_gnu_liblist (FILE * file)
047b2264 13953{
2cf0635d
NC
13954 Elf_Internal_Shdr * section;
13955 Elf_Internal_Shdr * string_sec;
13956 Elf32_External_Lib * elib;
13957 char * strtab;
c256ffe7 13958 size_t strtab_size;
047b2264
JJ
13959 size_t cnt;
13960 unsigned i;
13961
13962 if (! do_arch)
13963 return 0;
13964
13965 for (i = 0, section = section_headers;
13966 i < elf_header.e_shnum;
b34976b6 13967 i++, section++)
047b2264
JJ
13968 {
13969 switch (section->sh_type)
13970 {
13971 case SHT_GNU_LIBLIST:
4fbb74a6 13972 if (section->sh_link >= elf_header.e_shnum)
c256ffe7
JJ
13973 break;
13974
3f5e193b
NC
13975 elib = (Elf32_External_Lib *)
13976 get_data (NULL, file, section->sh_offset, 1, section->sh_size,
9cf03b7e 13977 _("liblist section data"));
047b2264
JJ
13978
13979 if (elib == NULL)
13980 break;
4fbb74a6 13981 string_sec = section_headers + section->sh_link;
047b2264 13982
3f5e193b
NC
13983 strtab = (char *) get_data (NULL, file, string_sec->sh_offset, 1,
13984 string_sec->sh_size,
13985 _("liblist string table"));
047b2264
JJ
13986 if (strtab == NULL
13987 || section->sh_entsize != sizeof (Elf32_External_Lib))
13988 {
13989 free (elib);
2842702f 13990 free (strtab);
047b2264
JJ
13991 break;
13992 }
59245841 13993 strtab_size = string_sec->sh_size;
047b2264
JJ
13994
13995 printf (_("\nLibrary list section '%s' contains %lu entries:\n"),
74e1a04b 13996 printable_section_name (section),
0af1713e 13997 (unsigned long) (section->sh_size / sizeof (Elf32_External_Lib)));
047b2264 13998
2b692964 13999 puts (_(" Library Time Stamp Checksum Version Flags"));
047b2264
JJ
14000
14001 for (cnt = 0; cnt < section->sh_size / sizeof (Elf32_External_Lib);
14002 ++cnt)
14003 {
14004 Elf32_Lib liblist;
91d6fa6a 14005 time_t atime;
047b2264 14006 char timebuf[20];
2cf0635d 14007 struct tm * tmp;
047b2264
JJ
14008
14009 liblist.l_name = BYTE_GET (elib[cnt].l_name);
91d6fa6a 14010 atime = BYTE_GET (elib[cnt].l_time_stamp);
047b2264
JJ
14011 liblist.l_checksum = BYTE_GET (elib[cnt].l_checksum);
14012 liblist.l_version = BYTE_GET (elib[cnt].l_version);
14013 liblist.l_flags = BYTE_GET (elib[cnt].l_flags);
14014
91d6fa6a 14015 tmp = gmtime (&atime);
e9e44622
JJ
14016 snprintf (timebuf, sizeof (timebuf),
14017 "%04u-%02u-%02uT%02u:%02u:%02u",
14018 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
14019 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
047b2264
JJ
14020
14021 printf ("%3lu: ", (unsigned long) cnt);
14022 if (do_wide)
c256ffe7 14023 printf ("%-20s", liblist.l_name < strtab_size
2b692964 14024 ? strtab + liblist.l_name : _("<corrupt>"));
047b2264 14025 else
c256ffe7 14026 printf ("%-20.20s", liblist.l_name < strtab_size
2b692964 14027 ? strtab + liblist.l_name : _("<corrupt>"));
047b2264
JJ
14028 printf (" %s %#010lx %-7ld %-7ld\n", timebuf, liblist.l_checksum,
14029 liblist.l_version, liblist.l_flags);
14030 }
14031
14032 free (elib);
2842702f 14033 free (strtab);
047b2264
JJ
14034 }
14035 }
14036
14037 return 1;
14038}
14039
9437c45b 14040static const char *
d3ba0551 14041get_note_type (unsigned e_type)
779fe533
NC
14042{
14043 static char buff[64];
103f02d3 14044
1ec5cd37
NC
14045 if (elf_header.e_type == ET_CORE)
14046 switch (e_type)
14047 {
57346661 14048 case NT_AUXV:
1ec5cd37 14049 return _("NT_AUXV (auxiliary vector)");
57346661 14050 case NT_PRSTATUS:
1ec5cd37 14051 return _("NT_PRSTATUS (prstatus structure)");
57346661 14052 case NT_FPREGSET:
1ec5cd37 14053 return _("NT_FPREGSET (floating point registers)");
57346661 14054 case NT_PRPSINFO:
1ec5cd37 14055 return _("NT_PRPSINFO (prpsinfo structure)");
57346661 14056 case NT_TASKSTRUCT:
1ec5cd37 14057 return _("NT_TASKSTRUCT (task structure)");
57346661 14058 case NT_PRXFPREG:
1ec5cd37 14059 return _("NT_PRXFPREG (user_xfpregs structure)");
e1e95dec
AM
14060 case NT_PPC_VMX:
14061 return _("NT_PPC_VMX (ppc Altivec registers)");
89eeb0bc
LM
14062 case NT_PPC_VSX:
14063 return _("NT_PPC_VSX (ppc VSX registers)");
ff826ef3
TT
14064 case NT_386_TLS:
14065 return _("NT_386_TLS (x86 TLS information)");
14066 case NT_386_IOPERM:
14067 return _("NT_386_IOPERM (x86 I/O permissions)");
4339cae0
L
14068 case NT_X86_XSTATE:
14069 return _("NT_X86_XSTATE (x86 XSAVE extended state)");
0675e188
UW
14070 case NT_S390_HIGH_GPRS:
14071 return _("NT_S390_HIGH_GPRS (s390 upper register halves)");
d7eeb400
MS
14072 case NT_S390_TIMER:
14073 return _("NT_S390_TIMER (s390 timer register)");
14074 case NT_S390_TODCMP:
14075 return _("NT_S390_TODCMP (s390 TOD comparator register)");
14076 case NT_S390_TODPREG:
14077 return _("NT_S390_TODPREG (s390 TOD programmable register)");
14078 case NT_S390_CTRS:
14079 return _("NT_S390_CTRS (s390 control registers)");
14080 case NT_S390_PREFIX:
14081 return _("NT_S390_PREFIX (s390 prefix register)");
a367d729
AK
14082 case NT_S390_LAST_BREAK:
14083 return _("NT_S390_LAST_BREAK (s390 last breaking event address)");
14084 case NT_S390_SYSTEM_CALL:
14085 return _("NT_S390_SYSTEM_CALL (s390 system call restart data)");
abb3f6cc
NC
14086 case NT_S390_TDB:
14087 return _("NT_S390_TDB (s390 transaction diagnostic block)");
faa9a424
UW
14088 case NT_ARM_VFP:
14089 return _("NT_ARM_VFP (arm VFP registers)");
652451f8
YZ
14090 case NT_ARM_TLS:
14091 return _("NT_ARM_TLS (AArch TLS registers)");
14092 case NT_ARM_HW_BREAK:
14093 return _("NT_ARM_HW_BREAK (AArch hardware breakpoint registers)");
14094 case NT_ARM_HW_WATCH:
14095 return _("NT_ARM_HW_WATCH (AArch hardware watchpoint registers)");
57346661 14096 case NT_PSTATUS:
1ec5cd37 14097 return _("NT_PSTATUS (pstatus structure)");
57346661 14098 case NT_FPREGS:
1ec5cd37 14099 return _("NT_FPREGS (floating point registers)");
57346661 14100 case NT_PSINFO:
1ec5cd37 14101 return _("NT_PSINFO (psinfo structure)");
57346661 14102 case NT_LWPSTATUS:
1ec5cd37 14103 return _("NT_LWPSTATUS (lwpstatus_t structure)");
57346661 14104 case NT_LWPSINFO:
1ec5cd37 14105 return _("NT_LWPSINFO (lwpsinfo_t structure)");
57346661 14106 case NT_WIN32PSTATUS:
1ec5cd37 14107 return _("NT_WIN32PSTATUS (win32_pstatus structure)");
9ece1fa9
TT
14108 case NT_SIGINFO:
14109 return _("NT_SIGINFO (siginfo_t data)");
14110 case NT_FILE:
14111 return _("NT_FILE (mapped files)");
1ec5cd37
NC
14112 default:
14113 break;
14114 }
14115 else
14116 switch (e_type)
14117 {
14118 case NT_VERSION:
14119 return _("NT_VERSION (version)");
14120 case NT_ARCH:
14121 return _("NT_ARCH (architecture)");
14122 default:
14123 break;
14124 }
14125
e9e44622 14126 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
1ec5cd37 14127 return buff;
779fe533
NC
14128}
14129
9ece1fa9
TT
14130static int
14131print_core_note (Elf_Internal_Note *pnote)
14132{
14133 unsigned int addr_size = is_32bit_elf ? 4 : 8;
14134 bfd_vma count, page_size;
14135 unsigned char *descdata, *filenames, *descend;
14136
14137 if (pnote->type != NT_FILE)
14138 return 1;
14139
14140#ifndef BFD64
14141 if (!is_32bit_elf)
14142 {
14143 printf (_(" Cannot decode 64-bit note in 32-bit build\n"));
14144 /* Still "successful". */
14145 return 1;
14146 }
14147#endif
14148
14149 if (pnote->descsz < 2 * addr_size)
14150 {
14151 printf (_(" Malformed note - too short for header\n"));
14152 return 0;
14153 }
14154
14155 descdata = (unsigned char *) pnote->descdata;
14156 descend = descdata + pnote->descsz;
14157
14158 if (descdata[pnote->descsz - 1] != '\0')
14159 {
14160 printf (_(" Malformed note - does not end with \\0\n"));
14161 return 0;
14162 }
14163
14164 count = byte_get (descdata, addr_size);
14165 descdata += addr_size;
14166
14167 page_size = byte_get (descdata, addr_size);
14168 descdata += addr_size;
14169
14170 if (pnote->descsz < 2 * addr_size + count * 3 * addr_size)
14171 {
14172 printf (_(" Malformed note - too short for supplied file count\n"));
14173 return 0;
14174 }
14175
14176 printf (_(" Page size: "));
14177 print_vma (page_size, DEC);
14178 printf ("\n");
14179
14180 printf (_(" %*s%*s%*s\n"),
14181 (int) (2 + 2 * addr_size), _("Start"),
14182 (int) (4 + 2 * addr_size), _("End"),
14183 (int) (4 + 2 * addr_size), _("Page Offset"));
14184 filenames = descdata + count * 3 * addr_size;
14185 while (--count > 0)
14186 {
14187 bfd_vma start, end, file_ofs;
14188
14189 if (filenames == descend)
14190 {
14191 printf (_(" Malformed note - filenames end too early\n"));
14192 return 0;
14193 }
14194
14195 start = byte_get (descdata, addr_size);
14196 descdata += addr_size;
14197 end = byte_get (descdata, addr_size);
14198 descdata += addr_size;
14199 file_ofs = byte_get (descdata, addr_size);
14200 descdata += addr_size;
14201
14202 printf (" ");
14203 print_vma (start, FULL_HEX);
14204 printf (" ");
14205 print_vma (end, FULL_HEX);
14206 printf (" ");
14207 print_vma (file_ofs, FULL_HEX);
14208 printf ("\n %s\n", filenames);
14209
14210 filenames += 1 + strlen ((char *) filenames);
14211 }
14212
14213 return 1;
14214}
14215
1118d252
RM
14216static const char *
14217get_gnu_elf_note_type (unsigned e_type)
14218{
14219 static char buff[64];
14220
14221 switch (e_type)
14222 {
14223 case NT_GNU_ABI_TAG:
14224 return _("NT_GNU_ABI_TAG (ABI version tag)");
14225 case NT_GNU_HWCAP:
14226 return _("NT_GNU_HWCAP (DSO-supplied software HWCAP info)");
14227 case NT_GNU_BUILD_ID:
14228 return _("NT_GNU_BUILD_ID (unique build ID bitstring)");
0297aed6
DM
14229 case NT_GNU_GOLD_VERSION:
14230 return _("NT_GNU_GOLD_VERSION (gold version)");
1118d252
RM
14231 default:
14232 break;
14233 }
14234
14235 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
14236 return buff;
14237}
14238
664f90a3
TT
14239static int
14240print_gnu_note (Elf_Internal_Note *pnote)
14241{
14242 switch (pnote->type)
14243 {
14244 case NT_GNU_BUILD_ID:
14245 {
14246 unsigned long i;
14247
14248 printf (_(" Build ID: "));
14249 for (i = 0; i < pnote->descsz; ++i)
14250 printf ("%02x", pnote->descdata[i] & 0xff);
9cf03b7e 14251 printf ("\n");
664f90a3
TT
14252 }
14253 break;
14254
14255 case NT_GNU_ABI_TAG:
14256 {
14257 unsigned long os, major, minor, subminor;
14258 const char *osname;
14259
3102e897
NC
14260 /* PR 17531: file: 030-599401-0.004. */
14261 if (pnote->descsz < 16)
14262 {
14263 printf (_(" <corrupt GNU_ABI_TAG>\n"));
14264 break;
14265 }
14266
664f90a3
TT
14267 os = byte_get ((unsigned char *) pnote->descdata, 4);
14268 major = byte_get ((unsigned char *) pnote->descdata + 4, 4);
14269 minor = byte_get ((unsigned char *) pnote->descdata + 8, 4);
14270 subminor = byte_get ((unsigned char *) pnote->descdata + 12, 4);
14271
14272 switch (os)
14273 {
14274 case GNU_ABI_TAG_LINUX:
14275 osname = "Linux";
14276 break;
14277 case GNU_ABI_TAG_HURD:
14278 osname = "Hurd";
14279 break;
14280 case GNU_ABI_TAG_SOLARIS:
14281 osname = "Solaris";
14282 break;
14283 case GNU_ABI_TAG_FREEBSD:
14284 osname = "FreeBSD";
14285 break;
14286 case GNU_ABI_TAG_NETBSD:
14287 osname = "NetBSD";
14288 break;
14289 default:
14290 osname = "Unknown";
14291 break;
14292 }
14293
14294 printf (_(" OS: %s, ABI: %ld.%ld.%ld\n"), osname,
14295 major, minor, subminor);
14296 }
14297 break;
926c5385
CC
14298
14299 case NT_GNU_GOLD_VERSION:
14300 {
14301 unsigned long i;
14302
14303 printf (_(" Version: "));
14304 for (i = 0; i < pnote->descsz && pnote->descdata[i] != '\0'; ++i)
14305 printf ("%c", pnote->descdata[i]);
14306 printf ("\n");
14307 }
14308 break;
664f90a3
TT
14309 }
14310
14311 return 1;
14312}
14313
9437c45b 14314static const char *
d3ba0551 14315get_netbsd_elfcore_note_type (unsigned e_type)
9437c45b
JT
14316{
14317 static char buff[64];
14318
b4db1224 14319 if (e_type == NT_NETBSDCORE_PROCINFO)
9437c45b
JT
14320 {
14321 /* NetBSD core "procinfo" structure. */
14322 return _("NetBSD procinfo structure");
14323 }
14324
14325 /* As of Jan 2002 there are no other machine-independent notes
14326 defined for NetBSD core files. If the note type is less
14327 than the start of the machine-dependent note types, we don't
14328 understand it. */
14329
b4db1224 14330 if (e_type < NT_NETBSDCORE_FIRSTMACH)
9437c45b 14331 {
e9e44622 14332 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
9437c45b
JT
14333 return buff;
14334 }
14335
14336 switch (elf_header.e_machine)
14337 {
14338 /* On the Alpha, SPARC (32-bit and 64-bit), PT_GETREGS == mach+0
14339 and PT_GETFPREGS == mach+2. */
14340
14341 case EM_OLD_ALPHA:
14342 case EM_ALPHA:
14343 case EM_SPARC:
14344 case EM_SPARC32PLUS:
14345 case EM_SPARCV9:
14346 switch (e_type)
14347 {
2b692964 14348 case NT_NETBSDCORE_FIRSTMACH + 0:
b4db1224 14349 return _("PT_GETREGS (reg structure)");
2b692964 14350 case NT_NETBSDCORE_FIRSTMACH + 2:
b4db1224 14351 return _("PT_GETFPREGS (fpreg structure)");
9437c45b
JT
14352 default:
14353 break;
14354 }
14355 break;
14356
14357 /* On all other arch's, PT_GETREGS == mach+1 and
14358 PT_GETFPREGS == mach+3. */
14359 default:
14360 switch (e_type)
14361 {
2b692964 14362 case NT_NETBSDCORE_FIRSTMACH + 1:
b4db1224 14363 return _("PT_GETREGS (reg structure)");
2b692964 14364 case NT_NETBSDCORE_FIRSTMACH + 3:
b4db1224 14365 return _("PT_GETFPREGS (fpreg structure)");
9437c45b
JT
14366 default:
14367 break;
14368 }
14369 }
14370
9cf03b7e 14371 snprintf (buff, sizeof (buff), "PT_FIRSTMACH+%d",
e9e44622 14372 e_type - NT_NETBSDCORE_FIRSTMACH);
9437c45b
JT
14373 return buff;
14374}
14375
70616151
TT
14376static const char *
14377get_stapsdt_note_type (unsigned e_type)
14378{
14379 static char buff[64];
14380
14381 switch (e_type)
14382 {
14383 case NT_STAPSDT:
14384 return _("NT_STAPSDT (SystemTap probe descriptors)");
14385
14386 default:
14387 break;
14388 }
14389
14390 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
14391 return buff;
14392}
14393
c6a9fc58
TT
14394static int
14395print_stapsdt_note (Elf_Internal_Note *pnote)
14396{
14397 int addr_size = is_32bit_elf ? 4 : 8;
14398 char *data = pnote->descdata;
14399 char *data_end = pnote->descdata + pnote->descsz;
14400 bfd_vma pc, base_addr, semaphore;
14401 char *provider, *probe, *arg_fmt;
14402
14403 pc = byte_get ((unsigned char *) data, addr_size);
14404 data += addr_size;
14405 base_addr = byte_get ((unsigned char *) data, addr_size);
14406 data += addr_size;
14407 semaphore = byte_get ((unsigned char *) data, addr_size);
14408 data += addr_size;
14409
14410 provider = data;
14411 data += strlen (data) + 1;
14412 probe = data;
14413 data += strlen (data) + 1;
14414 arg_fmt = data;
14415 data += strlen (data) + 1;
14416
14417 printf (_(" Provider: %s\n"), provider);
14418 printf (_(" Name: %s\n"), probe);
14419 printf (_(" Location: "));
14420 print_vma (pc, FULL_HEX);
14421 printf (_(", Base: "));
14422 print_vma (base_addr, FULL_HEX);
14423 printf (_(", Semaphore: "));
14424 print_vma (semaphore, FULL_HEX);
9cf03b7e 14425 printf ("\n");
c6a9fc58
TT
14426 printf (_(" Arguments: %s\n"), arg_fmt);
14427
14428 return data == data_end;
14429}
14430
00e98fc7
TG
14431static const char *
14432get_ia64_vms_note_type (unsigned e_type)
14433{
14434 static char buff[64];
14435
14436 switch (e_type)
14437 {
14438 case NT_VMS_MHD:
14439 return _("NT_VMS_MHD (module header)");
14440 case NT_VMS_LNM:
14441 return _("NT_VMS_LNM (language name)");
14442 case NT_VMS_SRC:
14443 return _("NT_VMS_SRC (source files)");
14444 case NT_VMS_TITLE:
9cf03b7e 14445 return "NT_VMS_TITLE";
00e98fc7
TG
14446 case NT_VMS_EIDC:
14447 return _("NT_VMS_EIDC (consistency check)");
14448 case NT_VMS_FPMODE:
14449 return _("NT_VMS_FPMODE (FP mode)");
14450 case NT_VMS_LINKTIME:
9cf03b7e 14451 return "NT_VMS_LINKTIME";
00e98fc7
TG
14452 case NT_VMS_IMGNAM:
14453 return _("NT_VMS_IMGNAM (image name)");
14454 case NT_VMS_IMGID:
14455 return _("NT_VMS_IMGID (image id)");
14456 case NT_VMS_LINKID:
14457 return _("NT_VMS_LINKID (link id)");
14458 case NT_VMS_IMGBID:
14459 return _("NT_VMS_IMGBID (build id)");
14460 case NT_VMS_GSTNAM:
14461 return _("NT_VMS_GSTNAM (sym table name)");
14462 case NT_VMS_ORIG_DYN:
9cf03b7e 14463 return "NT_VMS_ORIG_DYN";
00e98fc7 14464 case NT_VMS_PATCHTIME:
9cf03b7e 14465 return "NT_VMS_PATCHTIME";
00e98fc7
TG
14466 default:
14467 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
14468 return buff;
14469 }
14470}
14471
14472static int
14473print_ia64_vms_note (Elf_Internal_Note * pnote)
14474{
14475 switch (pnote->type)
14476 {
14477 case NT_VMS_MHD:
14478 if (pnote->descsz > 36)
14479 {
14480 size_t l = strlen (pnote->descdata + 34);
14481 printf (_(" Creation date : %.17s\n"), pnote->descdata);
14482 printf (_(" Last patch date: %.17s\n"), pnote->descdata + 17);
14483 printf (_(" Module name : %s\n"), pnote->descdata + 34);
14484 printf (_(" Module version : %s\n"), pnote->descdata + 34 + l + 1);
14485 }
14486 else
14487 printf (_(" Invalid size\n"));
14488 break;
14489 case NT_VMS_LNM:
14490 printf (_(" Language: %s\n"), pnote->descdata);
14491 break;
14492#ifdef BFD64
14493 case NT_VMS_FPMODE:
9cf03b7e 14494 printf (_(" Floating Point mode: "));
4a5cb34f 14495 printf ("0x%016" BFD_VMA_FMT "x\n",
00e98fc7
TG
14496 (bfd_vma)byte_get ((unsigned char *)pnote->descdata, 8));
14497 break;
14498 case NT_VMS_LINKTIME:
14499 printf (_(" Link time: "));
14500 print_vms_time
14501 ((bfd_int64_t) byte_get ((unsigned char *)pnote->descdata, 8));
14502 printf ("\n");
14503 break;
14504 case NT_VMS_PATCHTIME:
14505 printf (_(" Patch time: "));
14506 print_vms_time
14507 ((bfd_int64_t) byte_get ((unsigned char *)pnote->descdata, 8));
14508 printf ("\n");
14509 break;
14510 case NT_VMS_ORIG_DYN:
14511 printf (_(" Major id: %u, minor id: %u\n"),
14512 (unsigned) byte_get ((unsigned char *)pnote->descdata, 4),
14513 (unsigned) byte_get ((unsigned char *)pnote->descdata + 4, 4));
9cf03b7e 14514 printf (_(" Last modified : "));
00e98fc7
TG
14515 print_vms_time
14516 ((bfd_int64_t) byte_get ((unsigned char *)pnote->descdata + 8, 8));
9cf03b7e 14517 printf (_("\n Link flags : "));
4a5cb34f 14518 printf ("0x%016" BFD_VMA_FMT "x\n",
00e98fc7
TG
14519 (bfd_vma)byte_get ((unsigned char *)pnote->descdata + 16, 8));
14520 printf (_(" Header flags: 0x%08x\n"),
14521 (unsigned)byte_get ((unsigned char *)pnote->descdata + 24, 4));
14522 printf (_(" Image id : %s\n"), pnote->descdata + 32);
14523 break;
14524#endif
14525 case NT_VMS_IMGNAM:
14526 printf (_(" Image name: %s\n"), pnote->descdata);
14527 break;
14528 case NT_VMS_GSTNAM:
14529 printf (_(" Global symbol table name: %s\n"), pnote->descdata);
14530 break;
14531 case NT_VMS_IMGID:
14532 printf (_(" Image id: %s\n"), pnote->descdata);
14533 break;
14534 case NT_VMS_LINKID:
14535 printf (_(" Linker id: %s\n"), pnote->descdata);
14536 break;
14537 default:
14538 break;
14539 }
14540 return 1;
14541}
14542
6d118b09
NC
14543/* Note that by the ELF standard, the name field is already null byte
14544 terminated, and namesz includes the terminating null byte.
14545 I.E. the value of namesz for the name "FSF" is 4.
14546
e3c8793a 14547 If the value of namesz is zero, there is no name present. */
779fe533 14548static int
2cf0635d 14549process_note (Elf_Internal_Note * pnote)
779fe533 14550{
2cf0635d
NC
14551 const char * name = pnote->namesz ? pnote->namedata : "(NONE)";
14552 const char * nt;
9437c45b
JT
14553
14554 if (pnote->namesz == 0)
1ec5cd37
NC
14555 /* If there is no note name, then use the default set of
14556 note type strings. */
14557 nt = get_note_type (pnote->type);
14558
1118d252
RM
14559 else if (const_strneq (pnote->namedata, "GNU"))
14560 /* GNU-specific object file notes. */
14561 nt = get_gnu_elf_note_type (pnote->type);
14562
0112cd26 14563 else if (const_strneq (pnote->namedata, "NetBSD-CORE"))
1ec5cd37
NC
14564 /* NetBSD-specific core file notes. */
14565 nt = get_netbsd_elfcore_note_type (pnote->type);
14566
b15fa79e
AM
14567 else if (strneq (pnote->namedata, "SPU/", 4))
14568 {
14569 /* SPU-specific core file notes. */
14570 nt = pnote->namedata + 4;
14571 name = "SPU";
14572 }
14573
00e98fc7
TG
14574 else if (const_strneq (pnote->namedata, "IPF/VMS"))
14575 /* VMS/ia64-specific file notes. */
14576 nt = get_ia64_vms_note_type (pnote->type);
14577
70616151
TT
14578 else if (const_strneq (pnote->namedata, "stapsdt"))
14579 nt = get_stapsdt_note_type (pnote->type);
14580
9437c45b 14581 else
1ec5cd37
NC
14582 /* Don't recognize this note name; just use the default set of
14583 note type strings. */
00e98fc7 14584 nt = get_note_type (pnote->type);
9437c45b 14585
2aee03ae 14586 printf (" %-20s 0x%08lx\t%s\n", name, pnote->descsz, nt);
00e98fc7
TG
14587
14588 if (const_strneq (pnote->namedata, "IPF/VMS"))
14589 return print_ia64_vms_note (pnote);
664f90a3
TT
14590 else if (const_strneq (pnote->namedata, "GNU"))
14591 return print_gnu_note (pnote);
c6a9fc58
TT
14592 else if (const_strneq (pnote->namedata, "stapsdt"))
14593 return print_stapsdt_note (pnote);
9ece1fa9
TT
14594 else if (const_strneq (pnote->namedata, "CORE"))
14595 return print_core_note (pnote);
00e98fc7
TG
14596 else
14597 return 1;
779fe533
NC
14598}
14599
6d118b09 14600
779fe533 14601static int
2cf0635d 14602process_corefile_note_segment (FILE * file, bfd_vma offset, bfd_vma length)
779fe533 14603{
2cf0635d
NC
14604 Elf_External_Note * pnotes;
14605 Elf_External_Note * external;
b34976b6 14606 int res = 1;
103f02d3 14607
779fe533
NC
14608 if (length <= 0)
14609 return 0;
103f02d3 14610
3f5e193b 14611 pnotes = (Elf_External_Note *) get_data (NULL, file, offset, 1, length,
15b42fb0 14612 _("notes"));
dd24e3da 14613 if (pnotes == NULL)
a6e9f9df 14614 return 0;
779fe533 14615
103f02d3 14616 external = pnotes;
103f02d3 14617
9dd3a467 14618 printf (_("\nDisplaying notes found at file offset 0x%08lx with length 0x%08lx:\n"),
f3485b74 14619 (unsigned long) offset, (unsigned long) length);
2aee03ae 14620 printf (_(" %-20s %10s\tDescription\n"), _("Owner"), _("Data size"));
103f02d3 14621
15b42fb0 14622 while ((char *) external < (char *) pnotes + length)
779fe533 14623 {
b34976b6 14624 Elf_Internal_Note inote;
15b42fb0
AM
14625 size_t min_notesz;
14626 char *next;
2cf0635d 14627 char * temp = NULL;
15b42fb0 14628 size_t data_remaining = ((char *) pnotes + length) - (char *) external;
6d118b09 14629
00e98fc7 14630 if (!is_ia64_vms ())
15b42fb0 14631 {
9dd3a467
NC
14632 /* PR binutils/15191
14633 Make sure that there is enough data to read. */
15b42fb0
AM
14634 min_notesz = offsetof (Elf_External_Note, name);
14635 if (data_remaining < min_notesz)
9dd3a467
NC
14636 {
14637 warn (_("Corrupt note: only %d bytes remain, not enough for a full note\n"),
14638 (int) data_remaining);
14639 break;
14640 }
15b42fb0
AM
14641 inote.type = BYTE_GET (external->type);
14642 inote.namesz = BYTE_GET (external->namesz);
14643 inote.namedata = external->name;
14644 inote.descsz = BYTE_GET (external->descsz);
14645 inote.descdata = inote.namedata + align_power (inote.namesz, 2);
14646 inote.descpos = offset + (inote.descdata - (char *) pnotes);
14647 next = inote.descdata + align_power (inote.descsz, 2);
14648 }
00e98fc7 14649 else
15b42fb0
AM
14650 {
14651 Elf64_External_VMS_Note *vms_external;
00e98fc7 14652
9dd3a467
NC
14653 /* PR binutils/15191
14654 Make sure that there is enough data to read. */
15b42fb0
AM
14655 min_notesz = offsetof (Elf64_External_VMS_Note, name);
14656 if (data_remaining < min_notesz)
9dd3a467
NC
14657 {
14658 warn (_("Corrupt note: only %d bytes remain, not enough for a full note\n"),
14659 (int) data_remaining);
14660 break;
14661 }
3e55a963 14662
15b42fb0
AM
14663 vms_external = (Elf64_External_VMS_Note *) external;
14664 inote.type = BYTE_GET (vms_external->type);
14665 inote.namesz = BYTE_GET (vms_external->namesz);
14666 inote.namedata = vms_external->name;
14667 inote.descsz = BYTE_GET (vms_external->descsz);
14668 inote.descdata = inote.namedata + align_power (inote.namesz, 3);
14669 inote.descpos = offset + (inote.descdata - (char *) pnotes);
14670 next = inote.descdata + align_power (inote.descsz, 3);
14671 }
14672
14673 if (inote.descdata < (char *) external + min_notesz
14674 || next < (char *) external + min_notesz
14675 || data_remaining < (size_t)(next - (char *) external))
3e55a963 14676 {
15b42fb0 14677 warn (_("note with invalid namesz and/or descsz found at offset 0x%lx\n"),
0af1713e 14678 (unsigned long) ((char *) external - (char *) pnotes));
9dd3a467 14679 warn (_(" type: 0x%lx, namesize: 0x%08lx, descsize: 0x%08lx\n"),
3e55a963
NC
14680 inote.type, inote.namesz, inote.descsz);
14681 break;
14682 }
14683
15b42fb0 14684 external = (Elf_External_Note *) next;
dd24e3da 14685
6d118b09
NC
14686 /* Verify that name is null terminated. It appears that at least
14687 one version of Linux (RedHat 6.0) generates corefiles that don't
14688 comply with the ELF spec by failing to include the null byte in
14689 namesz. */
8b971f9f 14690 if (inote.namedata[inote.namesz - 1] != '\0')
6d118b09 14691 {
3f5e193b 14692 temp = (char *) malloc (inote.namesz + 1);
76da6bbe 14693
6d118b09
NC
14694 if (temp == NULL)
14695 {
8b73c356 14696 error (_("Out of memory allocating space for inote name\n"));
6d118b09
NC
14697 res = 0;
14698 break;
14699 }
76da6bbe 14700
6d118b09
NC
14701 strncpy (temp, inote.namedata, inote.namesz);
14702 temp[inote.namesz] = 0;
76da6bbe 14703
6d118b09
NC
14704 /* warn (_("'%s' NOTE name not properly null terminated\n"), temp); */
14705 inote.namedata = temp;
14706 }
14707
14708 res &= process_note (& inote);
103f02d3 14709
6d118b09
NC
14710 if (temp != NULL)
14711 {
14712 free (temp);
14713 temp = NULL;
14714 }
779fe533
NC
14715 }
14716
14717 free (pnotes);
103f02d3 14718
779fe533
NC
14719 return res;
14720}
14721
14722static int
2cf0635d 14723process_corefile_note_segments (FILE * file)
779fe533 14724{
2cf0635d 14725 Elf_Internal_Phdr * segment;
b34976b6
AM
14726 unsigned int i;
14727 int res = 1;
103f02d3 14728
d93f0186 14729 if (! get_program_headers (file))
779fe533 14730 return 0;
103f02d3 14731
779fe533
NC
14732 for (i = 0, segment = program_headers;
14733 i < elf_header.e_phnum;
b34976b6 14734 i++, segment++)
779fe533
NC
14735 {
14736 if (segment->p_type == PT_NOTE)
103f02d3 14737 res &= process_corefile_note_segment (file,
30800947
NC
14738 (bfd_vma) segment->p_offset,
14739 (bfd_vma) segment->p_filesz);
779fe533 14740 }
103f02d3 14741
779fe533
NC
14742 return res;
14743}
14744
14745static int
2cf0635d 14746process_note_sections (FILE * file)
1ec5cd37 14747{
2cf0635d 14748 Elf_Internal_Shdr * section;
1ec5cd37 14749 unsigned long i;
df565f32 14750 int n = 0;
1ec5cd37
NC
14751 int res = 1;
14752
14753 for (i = 0, section = section_headers;
fa1908fd 14754 i < elf_header.e_shnum && section != NULL;
1ec5cd37
NC
14755 i++, section++)
14756 if (section->sh_type == SHT_NOTE)
df565f32
NC
14757 {
14758 res &= process_corefile_note_segment (file,
14759 (bfd_vma) section->sh_offset,
14760 (bfd_vma) section->sh_size);
14761 n++;
14762 }
14763
14764 if (n == 0)
14765 /* Try processing NOTE segments instead. */
14766 return process_corefile_note_segments (file);
1ec5cd37
NC
14767
14768 return res;
14769}
14770
14771static int
2cf0635d 14772process_notes (FILE * file)
779fe533
NC
14773{
14774 /* If we have not been asked to display the notes then do nothing. */
14775 if (! do_notes)
14776 return 1;
103f02d3 14777
779fe533 14778 if (elf_header.e_type != ET_CORE)
1ec5cd37 14779 return process_note_sections (file);
103f02d3 14780
779fe533 14781 /* No program headers means no NOTE segment. */
1ec5cd37
NC
14782 if (elf_header.e_phnum > 0)
14783 return process_corefile_note_segments (file);
779fe533 14784
1ec5cd37
NC
14785 printf (_("No note segments present in the core file.\n"));
14786 return 1;
779fe533
NC
14787}
14788
252b5132 14789static int
2cf0635d 14790process_arch_specific (FILE * file)
252b5132 14791{
a952a375
NC
14792 if (! do_arch)
14793 return 1;
14794
252b5132
RH
14795 switch (elf_header.e_machine)
14796 {
11c1ff18
PB
14797 case EM_ARM:
14798 return process_arm_specific (file);
252b5132 14799 case EM_MIPS:
4fe85591 14800 case EM_MIPS_RS3_LE:
252b5132
RH
14801 return process_mips_specific (file);
14802 break;
35c08157
KLC
14803 case EM_NDS32:
14804 return process_nds32_specific (file);
14805 break;
34c8bcba
JM
14806 case EM_PPC:
14807 return process_power_specific (file);
14808 break;
9e8c70f9
DM
14809 case EM_SPARC:
14810 case EM_SPARC32PLUS:
14811 case EM_SPARCV9:
14812 return process_sparc_specific (file);
14813 break;
59e6276b
JM
14814 case EM_TI_C6000:
14815 return process_tic6x_specific (file);
14816 break;
13761a11
NC
14817 case EM_MSP430:
14818 return process_msp430x_specific (file);
252b5132
RH
14819 default:
14820 break;
14821 }
14822 return 1;
14823}
14824
14825static int
2cf0635d 14826get_file_header (FILE * file)
252b5132 14827{
9ea033b2
NC
14828 /* Read in the identity array. */
14829 if (fread (elf_header.e_ident, EI_NIDENT, 1, file) != 1)
252b5132
RH
14830 return 0;
14831
9ea033b2 14832 /* Determine how to read the rest of the header. */
b34976b6 14833 switch (elf_header.e_ident[EI_DATA])
9ea033b2
NC
14834 {
14835 default: /* fall through */
14836 case ELFDATANONE: /* fall through */
adab8cdc
AO
14837 case ELFDATA2LSB:
14838 byte_get = byte_get_little_endian;
14839 byte_put = byte_put_little_endian;
14840 break;
14841 case ELFDATA2MSB:
14842 byte_get = byte_get_big_endian;
14843 byte_put = byte_put_big_endian;
14844 break;
9ea033b2
NC
14845 }
14846
14847 /* For now we only support 32 bit and 64 bit ELF files. */
b34976b6 14848 is_32bit_elf = (elf_header.e_ident[EI_CLASS] != ELFCLASS64);
9ea033b2
NC
14849
14850 /* Read in the rest of the header. */
14851 if (is_32bit_elf)
14852 {
14853 Elf32_External_Ehdr ehdr32;
252b5132 14854
9ea033b2
NC
14855 if (fread (ehdr32.e_type, sizeof (ehdr32) - EI_NIDENT, 1, file) != 1)
14856 return 0;
103f02d3 14857
9ea033b2
NC
14858 elf_header.e_type = BYTE_GET (ehdr32.e_type);
14859 elf_header.e_machine = BYTE_GET (ehdr32.e_machine);
14860 elf_header.e_version = BYTE_GET (ehdr32.e_version);
14861 elf_header.e_entry = BYTE_GET (ehdr32.e_entry);
14862 elf_header.e_phoff = BYTE_GET (ehdr32.e_phoff);
14863 elf_header.e_shoff = BYTE_GET (ehdr32.e_shoff);
14864 elf_header.e_flags = BYTE_GET (ehdr32.e_flags);
14865 elf_header.e_ehsize = BYTE_GET (ehdr32.e_ehsize);
14866 elf_header.e_phentsize = BYTE_GET (ehdr32.e_phentsize);
14867 elf_header.e_phnum = BYTE_GET (ehdr32.e_phnum);
14868 elf_header.e_shentsize = BYTE_GET (ehdr32.e_shentsize);
14869 elf_header.e_shnum = BYTE_GET (ehdr32.e_shnum);
14870 elf_header.e_shstrndx = BYTE_GET (ehdr32.e_shstrndx);
14871 }
252b5132 14872 else
9ea033b2
NC
14873 {
14874 Elf64_External_Ehdr ehdr64;
a952a375
NC
14875
14876 /* If we have been compiled with sizeof (bfd_vma) == 4, then
14877 we will not be able to cope with the 64bit data found in
14878 64 ELF files. Detect this now and abort before we start
50c2245b 14879 overwriting things. */
a952a375
NC
14880 if (sizeof (bfd_vma) < 8)
14881 {
e3c8793a
NC
14882 error (_("This instance of readelf has been built without support for a\n\
1488364 bit data type and so it cannot read 64 bit ELF files.\n"));
a952a375
NC
14884 return 0;
14885 }
103f02d3 14886
9ea033b2
NC
14887 if (fread (ehdr64.e_type, sizeof (ehdr64) - EI_NIDENT, 1, file) != 1)
14888 return 0;
103f02d3 14889
9ea033b2
NC
14890 elf_header.e_type = BYTE_GET (ehdr64.e_type);
14891 elf_header.e_machine = BYTE_GET (ehdr64.e_machine);
14892 elf_header.e_version = BYTE_GET (ehdr64.e_version);
66543521
AM
14893 elf_header.e_entry = BYTE_GET (ehdr64.e_entry);
14894 elf_header.e_phoff = BYTE_GET (ehdr64.e_phoff);
14895 elf_header.e_shoff = BYTE_GET (ehdr64.e_shoff);
9ea033b2
NC
14896 elf_header.e_flags = BYTE_GET (ehdr64.e_flags);
14897 elf_header.e_ehsize = BYTE_GET (ehdr64.e_ehsize);
14898 elf_header.e_phentsize = BYTE_GET (ehdr64.e_phentsize);
14899 elf_header.e_phnum = BYTE_GET (ehdr64.e_phnum);
14900 elf_header.e_shentsize = BYTE_GET (ehdr64.e_shentsize);
14901 elf_header.e_shnum = BYTE_GET (ehdr64.e_shnum);
14902 elf_header.e_shstrndx = BYTE_GET (ehdr64.e_shstrndx);
14903 }
252b5132 14904
7ece0d85
JJ
14905 if (elf_header.e_shoff)
14906 {
14907 /* There may be some extensions in the first section header. Don't
14908 bomb if we can't read it. */
14909 if (is_32bit_elf)
049b0c3a 14910 get_32bit_section_headers (file, TRUE);
7ece0d85 14911 else
049b0c3a 14912 get_64bit_section_headers (file, TRUE);
7ece0d85 14913 }
560f3c1c 14914
252b5132
RH
14915 return 1;
14916}
14917
fb52b2f4
NC
14918/* Process one ELF object file according to the command line options.
14919 This file may actually be stored in an archive. The file is
14920 positioned at the start of the ELF object. */
14921
ff78d6d6 14922static int
2cf0635d 14923process_object (char * file_name, FILE * file)
252b5132 14924{
252b5132
RH
14925 unsigned int i;
14926
252b5132
RH
14927 if (! get_file_header (file))
14928 {
14929 error (_("%s: Failed to read file header\n"), file_name);
ff78d6d6 14930 return 1;
252b5132
RH
14931 }
14932
14933 /* Initialise per file variables. */
60bca95a 14934 for (i = ARRAY_SIZE (version_info); i--;)
252b5132
RH
14935 version_info[i] = 0;
14936
60bca95a 14937 for (i = ARRAY_SIZE (dynamic_info); i--;)
252b5132 14938 dynamic_info[i] = 0;
5115b233 14939 dynamic_info_DT_GNU_HASH = 0;
252b5132
RH
14940
14941 /* Process the file. */
14942 if (show_name)
14943 printf (_("\nFile: %s\n"), file_name);
14944
18bd398b
NC
14945 /* Initialise the dump_sects array from the cmdline_dump_sects array.
14946 Note we do this even if cmdline_dump_sects is empty because we
14947 must make sure that the dump_sets array is zeroed out before each
14948 object file is processed. */
14949 if (num_dump_sects > num_cmdline_dump_sects)
09c11c86 14950 memset (dump_sects, 0, num_dump_sects * sizeof (* dump_sects));
18bd398b
NC
14951
14952 if (num_cmdline_dump_sects > 0)
14953 {
14954 if (num_dump_sects == 0)
14955 /* A sneaky way of allocating the dump_sects array. */
09c11c86 14956 request_dump_bynumber (num_cmdline_dump_sects, 0);
18bd398b
NC
14957
14958 assert (num_dump_sects >= num_cmdline_dump_sects);
09c11c86
NC
14959 memcpy (dump_sects, cmdline_dump_sects,
14960 num_cmdline_dump_sects * sizeof (* dump_sects));
18bd398b 14961 }
d70c5fc7 14962
252b5132 14963 if (! process_file_header ())
fb52b2f4 14964 return 1;
252b5132 14965
d1f5c6e3 14966 if (! process_section_headers (file))
2f62977e 14967 {
d1f5c6e3
L
14968 /* Without loaded section headers we cannot process lots of
14969 things. */
2f62977e 14970 do_unwind = do_version = do_dump = do_arch = 0;
252b5132 14971
2f62977e 14972 if (! do_using_dynamic)
2c610e4b 14973 do_syms = do_dyn_syms = do_reloc = 0;
2f62977e 14974 }
252b5132 14975
d1f5c6e3
L
14976 if (! process_section_groups (file))
14977 {
14978 /* Without loaded section groups we cannot process unwind. */
14979 do_unwind = 0;
14980 }
14981
2f62977e 14982 if (process_program_headers (file))
b2d38a17 14983 process_dynamic_section (file);
252b5132
RH
14984
14985 process_relocs (file);
14986
4d6ed7c8
NC
14987 process_unwind (file);
14988
252b5132
RH
14989 process_symbol_table (file);
14990
14991 process_syminfo (file);
14992
14993 process_version_sections (file);
14994
14995 process_section_contents (file);
f5842774 14996
1ec5cd37 14997 process_notes (file);
103f02d3 14998
047b2264
JJ
14999 process_gnu_liblist (file);
15000
252b5132
RH
15001 process_arch_specific (file);
15002
d93f0186
NC
15003 if (program_headers)
15004 {
15005 free (program_headers);
15006 program_headers = NULL;
15007 }
15008
252b5132
RH
15009 if (section_headers)
15010 {
15011 free (section_headers);
15012 section_headers = NULL;
15013 }
15014
15015 if (string_table)
15016 {
15017 free (string_table);
15018 string_table = NULL;
d40ac9bd 15019 string_table_length = 0;
252b5132
RH
15020 }
15021
15022 if (dynamic_strings)
15023 {
15024 free (dynamic_strings);
15025 dynamic_strings = NULL;
d79b3d50 15026 dynamic_strings_length = 0;
252b5132
RH
15027 }
15028
15029 if (dynamic_symbols)
15030 {
15031 free (dynamic_symbols);
15032 dynamic_symbols = NULL;
19936277 15033 num_dynamic_syms = 0;
252b5132
RH
15034 }
15035
15036 if (dynamic_syminfo)
15037 {
15038 free (dynamic_syminfo);
15039 dynamic_syminfo = NULL;
15040 }
ff78d6d6 15041
293c573e
MR
15042 if (dynamic_section)
15043 {
15044 free (dynamic_section);
15045 dynamic_section = NULL;
15046 }
15047
e4b17d5c
L
15048 if (section_headers_groups)
15049 {
15050 free (section_headers_groups);
15051 section_headers_groups = NULL;
15052 }
15053
15054 if (section_groups)
15055 {
2cf0635d
NC
15056 struct group_list * g;
15057 struct group_list * next;
e4b17d5c
L
15058
15059 for (i = 0; i < group_count; i++)
15060 {
15061 for (g = section_groups [i].root; g != NULL; g = next)
15062 {
15063 next = g->next;
15064 free (g);
15065 }
15066 }
15067
15068 free (section_groups);
15069 section_groups = NULL;
15070 }
15071
19e6b90e 15072 free_debug_memory ();
18bd398b 15073
ff78d6d6 15074 return 0;
252b5132
RH
15075}
15076
2cf0635d
NC
15077/* Process an ELF archive.
15078 On entry the file is positioned just after the ARMAG string. */
15079
15080static int
15081process_archive (char * file_name, FILE * file, bfd_boolean is_thin_archive)
15082{
15083 struct archive_info arch;
15084 struct archive_info nested_arch;
15085 size_t got;
2cf0635d
NC
15086 int ret;
15087
15088 show_name = 1;
15089
15090 /* The ARCH structure is used to hold information about this archive. */
15091 arch.file_name = NULL;
15092 arch.file = NULL;
15093 arch.index_array = NULL;
15094 arch.sym_table = NULL;
15095 arch.longnames = NULL;
15096
15097 /* The NESTED_ARCH structure is used as a single-item cache of information
15098 about a nested archive (when members of a thin archive reside within
15099 another regular archive file). */
15100 nested_arch.file_name = NULL;
15101 nested_arch.file = NULL;
15102 nested_arch.index_array = NULL;
15103 nested_arch.sym_table = NULL;
15104 nested_arch.longnames = NULL;
15105
15106 if (setup_archive (&arch, file_name, file, is_thin_archive, do_archive_index) != 0)
15107 {
15108 ret = 1;
15109 goto out;
4145f1d5 15110 }
fb52b2f4 15111
4145f1d5
NC
15112 if (do_archive_index)
15113 {
2cf0635d 15114 if (arch.sym_table == NULL)
4145f1d5
NC
15115 error (_("%s: unable to dump the index as none was found\n"), file_name);
15116 else
15117 {
2cf0635d 15118 unsigned int i, l;
4145f1d5
NC
15119 unsigned long current_pos;
15120
15121 printf (_("Index of archive %s: (%ld entries, 0x%lx bytes in the symbol table)\n"),
c2a7d3f5 15122 file_name, (long) arch.index_num, arch.sym_size);
4145f1d5
NC
15123 current_pos = ftell (file);
15124
2cf0635d 15125 for (i = l = 0; i < arch.index_num; i++)
4145f1d5 15126 {
2cf0635d
NC
15127 if ((i == 0) || ((i > 0) && (arch.index_array[i] != arch.index_array[i - 1])))
15128 {
15129 char * member_name;
4145f1d5 15130
2cf0635d
NC
15131 member_name = get_archive_member_name_at (&arch, arch.index_array[i], &nested_arch);
15132
15133 if (member_name != NULL)
15134 {
15135 char * qualified_name = make_qualified_name (&arch, &nested_arch, member_name);
15136
15137 if (qualified_name != NULL)
15138 {
c2a7d3f5
NC
15139 printf (_("Contents of binary %s at offset "), qualified_name);
15140 (void) print_vma (arch.index_array[i], PREFIX_HEX);
15141 putchar ('\n');
2cf0635d
NC
15142 free (qualified_name);
15143 }
4145f1d5
NC
15144 }
15145 }
2cf0635d
NC
15146
15147 if (l >= arch.sym_size)
4145f1d5
NC
15148 {
15149 error (_("%s: end of the symbol table reached before the end of the index\n"),
15150 file_name);
cb8f3167 15151 break;
4145f1d5 15152 }
2cf0635d
NC
15153 printf ("\t%s\n", arch.sym_table + l);
15154 l += strlen (arch.sym_table + l) + 1;
4145f1d5
NC
15155 }
15156
c2a7d3f5
NC
15157 if (arch.uses_64bit_indicies)
15158 l = (l + 7) & ~ 7;
15159 else
15160 l += l & 1;
15161
2cf0635d 15162 if (l < arch.sym_size)
c2a7d3f5
NC
15163 error (_("%s: %ld bytes remain in the symbol table, but without corresponding entries in the index table\n"),
15164 file_name, arch.sym_size - l);
4145f1d5 15165
4145f1d5
NC
15166 if (fseek (file, current_pos, SEEK_SET) != 0)
15167 {
15168 error (_("%s: failed to seek back to start of object files in the archive\n"), file_name);
2cf0635d
NC
15169 ret = 1;
15170 goto out;
4145f1d5 15171 }
fb52b2f4 15172 }
4145f1d5
NC
15173
15174 if (!do_dynamic && !do_syms && !do_reloc && !do_unwind && !do_sections
15175 && !do_segments && !do_header && !do_dump && !do_version
15176 && !do_histogram && !do_debugging && !do_arch && !do_notes
2c610e4b 15177 && !do_section_groups && !do_dyn_syms)
2cf0635d
NC
15178 {
15179 ret = 0; /* Archive index only. */
15180 goto out;
15181 }
fb52b2f4
NC
15182 }
15183
d989285c 15184 ret = 0;
fb52b2f4
NC
15185
15186 while (1)
15187 {
2cf0635d
NC
15188 char * name;
15189 size_t namelen;
15190 char * qualified_name;
15191
15192 /* Read the next archive header. */
15193 if (fseek (file, arch.next_arhdr_offset, SEEK_SET) != 0)
15194 {
15195 error (_("%s: failed to seek to next archive header\n"), file_name);
15196 return 1;
15197 }
15198 got = fread (&arch.arhdr, 1, sizeof arch.arhdr, file);
15199 if (got != sizeof arch.arhdr)
15200 {
15201 if (got == 0)
15202 break;
15203 error (_("%s: failed to read archive header\n"), file_name);
15204 ret = 1;
15205 break;
15206 }
15207 if (memcmp (arch.arhdr.ar_fmag, ARFMAG, 2) != 0)
15208 {
15209 error (_("%s: did not find a valid archive header\n"), arch.file_name);
15210 ret = 1;
15211 break;
15212 }
15213
15214 arch.next_arhdr_offset += sizeof arch.arhdr;
15215
15216 archive_file_size = strtoul (arch.arhdr.ar_size, NULL, 10);
15217 if (archive_file_size & 01)
15218 ++archive_file_size;
15219
15220 name = get_archive_member_name (&arch, &nested_arch);
15221 if (name == NULL)
fb52b2f4 15222 {
0fd3a477 15223 error (_("%s: bad archive file name\n"), file_name);
d989285c
ILT
15224 ret = 1;
15225 break;
fb52b2f4 15226 }
2cf0635d 15227 namelen = strlen (name);
fb52b2f4 15228
2cf0635d
NC
15229 qualified_name = make_qualified_name (&arch, &nested_arch, name);
15230 if (qualified_name == NULL)
fb52b2f4 15231 {
2cf0635d 15232 error (_("%s: bad archive file name\n"), file_name);
d989285c
ILT
15233 ret = 1;
15234 break;
fb52b2f4
NC
15235 }
15236
2cf0635d
NC
15237 if (is_thin_archive && arch.nested_member_origin == 0)
15238 {
15239 /* This is a proxy for an external member of a thin archive. */
15240 FILE * member_file;
15241 char * member_file_name = adjust_relative_path (file_name, name, namelen);
15242 if (member_file_name == NULL)
15243 {
15244 ret = 1;
15245 break;
15246 }
15247
15248 member_file = fopen (member_file_name, "rb");
15249 if (member_file == NULL)
15250 {
15251 error (_("Input file '%s' is not readable.\n"), member_file_name);
15252 free (member_file_name);
15253 ret = 1;
15254 break;
15255 }
15256
15257 archive_file_offset = arch.nested_member_origin;
15258
15259 ret |= process_object (qualified_name, member_file);
15260
15261 fclose (member_file);
15262 free (member_file_name);
15263 }
15264 else if (is_thin_archive)
15265 {
a043396b
NC
15266 /* PR 15140: Allow for corrupt thin archives. */
15267 if (nested_arch.file == NULL)
15268 {
15269 error (_("%s: contains corrupt thin archive: %s\n"),
15270 file_name, name);
15271 ret = 1;
15272 break;
15273 }
15274
2cf0635d
NC
15275 /* This is a proxy for a member of a nested archive. */
15276 archive_file_offset = arch.nested_member_origin + sizeof arch.arhdr;
15277
15278 /* The nested archive file will have been opened and setup by
15279 get_archive_member_name. */
15280 if (fseek (nested_arch.file, archive_file_offset, SEEK_SET) != 0)
15281 {
15282 error (_("%s: failed to seek to archive member.\n"), nested_arch.file_name);
15283 ret = 1;
15284 break;
15285 }
15286
15287 ret |= process_object (qualified_name, nested_arch.file);
15288 }
15289 else
15290 {
15291 archive_file_offset = arch.next_arhdr_offset;
15292 arch.next_arhdr_offset += archive_file_size;
fb52b2f4 15293
2cf0635d
NC
15294 ret |= process_object (qualified_name, file);
15295 }
fb52b2f4 15296
2b52916e
L
15297 if (dump_sects != NULL)
15298 {
15299 free (dump_sects);
15300 dump_sects = NULL;
15301 num_dump_sects = 0;
15302 }
15303
2cf0635d 15304 free (qualified_name);
fb52b2f4
NC
15305 }
15306
4145f1d5 15307 out:
2cf0635d
NC
15308 if (nested_arch.file != NULL)
15309 fclose (nested_arch.file);
15310 release_archive (&nested_arch);
15311 release_archive (&arch);
fb52b2f4 15312
d989285c 15313 return ret;
fb52b2f4
NC
15314}
15315
15316static int
2cf0635d 15317process_file (char * file_name)
fb52b2f4 15318{
2cf0635d 15319 FILE * file;
fb52b2f4
NC
15320 struct stat statbuf;
15321 char armag[SARMAG];
15322 int ret;
15323
15324 if (stat (file_name, &statbuf) < 0)
15325 {
f24ddbdd
NC
15326 if (errno == ENOENT)
15327 error (_("'%s': No such file\n"), file_name);
15328 else
15329 error (_("Could not locate '%s'. System error message: %s\n"),
15330 file_name, strerror (errno));
15331 return 1;
15332 }
15333
15334 if (! S_ISREG (statbuf.st_mode))
15335 {
15336 error (_("'%s' is not an ordinary file\n"), file_name);
fb52b2f4
NC
15337 return 1;
15338 }
15339
15340 file = fopen (file_name, "rb");
15341 if (file == NULL)
15342 {
f24ddbdd 15343 error (_("Input file '%s' is not readable.\n"), file_name);
fb52b2f4
NC
15344 return 1;
15345 }
15346
15347 if (fread (armag, SARMAG, 1, file) != 1)
15348 {
4145f1d5 15349 error (_("%s: Failed to read file's magic number\n"), file_name);
fb52b2f4
NC
15350 fclose (file);
15351 return 1;
15352 }
15353
f54498b4
NC
15354 current_file_size = (bfd_size_type) statbuf.st_size;
15355
fb52b2f4 15356 if (memcmp (armag, ARMAG, SARMAG) == 0)
2cf0635d
NC
15357 ret = process_archive (file_name, file, FALSE);
15358 else if (memcmp (armag, ARMAGT, SARMAG) == 0)
15359 ret = process_archive (file_name, file, TRUE);
fb52b2f4
NC
15360 else
15361 {
4145f1d5
NC
15362 if (do_archive_index)
15363 error (_("File %s is not an archive so its index cannot be displayed.\n"),
15364 file_name);
15365
fb52b2f4
NC
15366 rewind (file);
15367 archive_file_size = archive_file_offset = 0;
15368 ret = process_object (file_name, file);
15369 }
15370
15371 fclose (file);
15372
f54498b4 15373 current_file_size = 0;
fb52b2f4
NC
15374 return ret;
15375}
15376
252b5132
RH
15377#ifdef SUPPORT_DISASSEMBLY
15378/* Needed by the i386 disassembler. For extra credit, someone could
9ea033b2 15379 fix this so that we insert symbolic addresses here, esp for GOT/PLT
e3c8793a 15380 symbols. */
252b5132
RH
15381
15382void
2cf0635d 15383print_address (unsigned int addr, FILE * outfile)
252b5132
RH
15384{
15385 fprintf (outfile,"0x%8.8x", addr);
15386}
15387
e3c8793a 15388/* Needed by the i386 disassembler. */
252b5132
RH
15389void
15390db_task_printsym (unsigned int addr)
15391{
15392 print_address (addr, stderr);
15393}
15394#endif
15395
15396int
2cf0635d 15397main (int argc, char ** argv)
252b5132 15398{
ff78d6d6
L
15399 int err;
15400
252b5132
RH
15401#if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
15402 setlocale (LC_MESSAGES, "");
3882b010
L
15403#endif
15404#if defined (HAVE_SETLOCALE)
15405 setlocale (LC_CTYPE, "");
252b5132
RH
15406#endif
15407 bindtextdomain (PACKAGE, LOCALEDIR);
15408 textdomain (PACKAGE);
15409
869b9d07
MM
15410 expandargv (&argc, &argv);
15411
252b5132
RH
15412 parse_args (argc, argv);
15413
18bd398b 15414 if (num_dump_sects > 0)
59f14fc0 15415 {
18bd398b 15416 /* Make a copy of the dump_sects array. */
3f5e193b
NC
15417 cmdline_dump_sects = (dump_type *)
15418 malloc (num_dump_sects * sizeof (* dump_sects));
59f14fc0 15419 if (cmdline_dump_sects == NULL)
591a748a 15420 error (_("Out of memory allocating dump request table.\n"));
59f14fc0
AS
15421 else
15422 {
09c11c86
NC
15423 memcpy (cmdline_dump_sects, dump_sects,
15424 num_dump_sects * sizeof (* dump_sects));
59f14fc0
AS
15425 num_cmdline_dump_sects = num_dump_sects;
15426 }
15427 }
15428
18bd398b
NC
15429 if (optind < (argc - 1))
15430 show_name = 1;
15431
ff78d6d6 15432 err = 0;
252b5132 15433 while (optind < argc)
18bd398b 15434 err |= process_file (argv[optind++]);
252b5132
RH
15435
15436 if (dump_sects != NULL)
15437 free (dump_sects);
59f14fc0
AS
15438 if (cmdline_dump_sects != NULL)
15439 free (cmdline_dump_sects);
252b5132 15440
ff78d6d6 15441 return err;
252b5132 15442}