]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - binutils/readelf.c
gdb/
[thirdparty/binutils-gdb.git] / binutils / readelf.c
CommitLineData
252b5132 1/* readelf.c -- display contents of an ELF format file
6e3d6dc1 2 Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
a0f19280
L
3 2008, 2009, 2010
4 Free Software Foundation, Inc.
252b5132
RH
5
6 Originally developed by Eric Youngdale <eric@andante.jic.com>
12ab83a9 7 Modifications by Nick Clifton <nickc@redhat.com>
252b5132
RH
8
9 This file is part of GNU Binutils.
10
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
32866df7 13 the Free Software Foundation; either version 3 of the License, or
252b5132
RH
14 (at your option) any later version.
15
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with this program; if not, write to the Free Software
b43b5d5f
NC
23 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
24 02110-1301, USA. */
252b5132 25\f
9eb20dd8 26/* The difference between readelf and objdump:
252b5132 27
74013231 28 Both programs are capable of displaying the contents of ELF format files,
9eb20dd8 29 so why does the binutils project have two file dumpers ?
0de14b54 30
9eb20dd8
NC
31 The reason is that objdump sees an ELF file through a BFD filter of the
32 world; if BFD has a bug where, say, it disagrees about a machine constant
33 in e_flags, then the odds are good that it will remain internally
34 consistent. The linker sees it the BFD way, objdump sees it the BFD way,
35 GAS sees it the BFD way. There was need for a tool to go find out what
36 the file actually says.
37
38 This is why the readelf program does not link against the BFD library - it
39 exists as an independent program to help verify the correct working of BFD.
40
41 There is also the case that readelf can provide more information about an
42 ELF file than is provided by objdump. In particular it can display DWARF
43 debugging information which (at the moment) objdump cannot. */
44\f
1b315056 45#include "config.h"
3db64b00 46#include "sysdep.h"
252b5132
RH
47#include <assert.h>
48#include <sys/stat.h>
252b5132 49#include <time.h>
1b315056
CS
50#ifdef HAVE_ZLIB_H
51#include <zlib.h>
52#endif
252b5132 53
a952a375 54#if __GNUC__ >= 2
19936277 55/* Define BFD64 here, even if our default architecture is 32 bit ELF
a952a375 56 as this will allow us to read in and parse 64bit and 32bit ELF files.
b34976b6 57 Only do this if we believe that the compiler can support a 64 bit
a952a375 58 data type. For now we only rely on GCC being able to do this. */
19936277 59#define BFD64
a952a375
NC
60#endif
61
3db64b00
AM
62#include "bfd.h"
63#include "bucomm.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
252b5132 94#include "elf/alpha.h"
3b16e843 95#include "elf/arc.h"
252b5132 96#include "elf/arm.h"
3b16e843 97#include "elf/avr.h"
1d65ded4 98#include "elf/bfin.h"
60bca95a 99#include "elf/cr16.h"
3b16e843 100#include "elf/cris.h"
1c0d3aa6 101#include "elf/crx.h"
252b5132
RH
102#include "elf/d10v.h"
103#include "elf/d30v.h"
d172d4ba 104#include "elf/dlx.h"
252b5132 105#include "elf/fr30.h"
5c70f934 106#include "elf/frv.h"
3b16e843
NC
107#include "elf/h8.h"
108#include "elf/hppa.h"
109#include "elf/i386.h"
35b1837e 110#include "elf/i370.h"
3b16e843
NC
111#include "elf/i860.h"
112#include "elf/i960.h"
113#include "elf/ia64.h"
1e4cf259 114#include "elf/ip2k.h"
84e94c90 115#include "elf/lm32.h"
1c0d3aa6 116#include "elf/iq2000.h"
49f58d10 117#include "elf/m32c.h"
3b16e843
NC
118#include "elf/m32r.h"
119#include "elf/m68k.h"
75751cd9 120#include "elf/m68hc11.h"
252b5132 121#include "elf/mcore.h"
15ab5209 122#include "elf/mep.h"
7ba29e2a 123#include "elf/microblaze.h"
3b16e843 124#include "elf/mips.h"
3c3bdf30 125#include "elf/mmix.h"
3b16e843
NC
126#include "elf/mn10200.h"
127#include "elf/mn10300.h"
4970f871 128#include "elf/mt.h"
2469cfa2 129#include "elf/msp430.h"
3b16e843 130#include "elf/or32.h"
7d466069 131#include "elf/pj.h"
3b16e843 132#include "elf/ppc.h"
c833c019 133#include "elf/ppc64.h"
c7927a3c 134#include "elf/rx.h"
a85d7ed0 135#include "elf/s390.h"
1c0d3aa6 136#include "elf/score.h"
3b16e843
NC
137#include "elf/sh.h"
138#include "elf/sparc.h"
e9f53129 139#include "elf/spu.h"
40b36596 140#include "elf/tic6x.h"
3b16e843 141#include "elf/v850.h"
179d3252 142#include "elf/vax.h"
3b16e843 143#include "elf/x86-64.h"
c29aca4a 144#include "elf/xc16x.h"
93fbbb04 145#include "elf/xstormy16.h"
88da6820 146#include "elf/xtensa.h"
252b5132 147
fb52b2f4
NC
148#include "aout/ar.h"
149
252b5132 150#include "getopt.h"
566b0d53 151#include "libiberty.h"
09c11c86 152#include "safe-ctype.h"
2cf0635d 153#include "filenames.h"
252b5132 154
2cf0635d 155char * program_name = "readelf";
85b1c36d
BE
156static long archive_file_offset;
157static unsigned long archive_file_size;
158static unsigned long dynamic_addr;
159static bfd_size_type dynamic_size;
160static unsigned int dynamic_nent;
2cf0635d 161static char * dynamic_strings;
85b1c36d 162static unsigned long dynamic_strings_length;
2cf0635d 163static char * string_table;
85b1c36d
BE
164static unsigned long string_table_length;
165static unsigned long num_dynamic_syms;
2cf0635d
NC
166static Elf_Internal_Sym * dynamic_symbols;
167static Elf_Internal_Syminfo * dynamic_syminfo;
85b1c36d
BE
168static unsigned long dynamic_syminfo_offset;
169static unsigned int dynamic_syminfo_nent;
f8eae8b2 170static char program_interpreter[PATH_MAX];
bb8a0291 171static bfd_vma dynamic_info[DT_ENCODING];
fdc90cb4 172static bfd_vma dynamic_info_DT_GNU_HASH;
85b1c36d
BE
173static bfd_vma version_info[16];
174static Elf_Internal_Ehdr elf_header;
2cf0635d
NC
175static Elf_Internal_Shdr * section_headers;
176static Elf_Internal_Phdr * program_headers;
177static Elf_Internal_Dyn * dynamic_section;
178static Elf_Internal_Shdr * symtab_shndx_hdr;
85b1c36d
BE
179static int show_name;
180static int do_dynamic;
181static int do_syms;
2c610e4b 182static int do_dyn_syms;
85b1c36d
BE
183static int do_reloc;
184static int do_sections;
185static int do_section_groups;
5477e8a0 186static int do_section_details;
85b1c36d
BE
187static int do_segments;
188static int do_unwind;
189static int do_using_dynamic;
190static int do_header;
191static int do_dump;
192static int do_version;
85b1c36d
BE
193static int do_histogram;
194static int do_debugging;
85b1c36d
BE
195static int do_arch;
196static int do_notes;
4145f1d5 197static int do_archive_index;
85b1c36d 198static int is_32bit_elf;
252b5132 199
e4b17d5c
L
200struct group_list
201{
2cf0635d 202 struct group_list * next;
e4b17d5c
L
203 unsigned int section_index;
204};
205
206struct group
207{
2cf0635d 208 struct group_list * root;
e4b17d5c
L
209 unsigned int group_index;
210};
211
85b1c36d 212static size_t group_count;
2cf0635d
NC
213static struct group * section_groups;
214static struct group ** section_headers_groups;
e4b17d5c 215
09c11c86
NC
216
217/* Flag bits indicating particular types of dump. */
218#define HEX_DUMP (1 << 0) /* The -x command line switch. */
219#define DISASS_DUMP (1 << 1) /* The -i command line switch. */
220#define DEBUG_DUMP (1 << 2) /* The -w command line switch. */
221#define STRING_DUMP (1 << 3) /* The -p command line switch. */
cf13d699 222#define RELOC_DUMP (1 << 4) /* The -R command line switch. */
09c11c86
NC
223
224typedef unsigned char dump_type;
225
226/* A linked list of the section names for which dumps were requested. */
aef1f6d0
DJ
227struct dump_list_entry
228{
2cf0635d 229 char * name;
09c11c86 230 dump_type type;
2cf0635d 231 struct dump_list_entry * next;
aef1f6d0 232};
2cf0635d 233static struct dump_list_entry * dump_sects_byname;
aef1f6d0 234
09c11c86
NC
235/* A dynamic array of flags indicating for which sections a dump
236 has been requested via command line switches. */
237static dump_type * cmdline_dump_sects = NULL;
238static unsigned int num_cmdline_dump_sects = 0;
18bd398b
NC
239
240/* A dynamic array of flags indicating for which sections a dump of
241 some kind has been requested. It is reset on a per-object file
aef1f6d0
DJ
242 basis and then initialised from the cmdline_dump_sects array,
243 the results of interpreting the -w switch, and the
244 dump_sects_byname list. */
09c11c86
NC
245static dump_type * dump_sects = NULL;
246static unsigned int num_dump_sects = 0;
252b5132 247
252b5132 248
c256ffe7 249/* How to print a vma value. */
843dd992
NC
250typedef enum print_mode
251{
252 HEX,
253 DEC,
254 DEC_5,
255 UNSIGNED,
256 PREFIX_HEX,
257 FULL_HEX,
258 LONG_HEX
259}
260print_mode;
261
2cf0635d 262static void (* byte_put) (unsigned char *, bfd_vma, int);
252b5132 263
9c19a809
NC
264#define UNKNOWN -1
265
2b692964
NC
266#define SECTION_NAME(X) \
267 ((X) == NULL ? _("<none>") \
268 : string_table == NULL ? _("<no-name>") \
269 : ((X)->sh_name >= string_table_length ? _("<corrupt>") \
0b49d371 270 : string_table + (X)->sh_name))
252b5132 271
ee42cf8c 272#define DT_VERSIONTAGIDX(tag) (DT_VERNEEDNUM - (tag)) /* Reverse order! */
252b5132 273
7036c0e1 274#define BYTE_GET(field) byte_get (field, sizeof (field))
a952a375 275
9ad5cbcf
AM
276#define GET_ELF_SYMBOLS(file, section) \
277 (is_32bit_elf ? get_32bit_elf_symbols (file, section) \
278 : get_64bit_elf_symbols (file, section))
9ea033b2 279
d79b3d50
NC
280#define VALID_DYNAMIC_NAME(offset) ((dynamic_strings != NULL) && (offset < dynamic_strings_length))
281/* GET_DYNAMIC_NAME asssumes that VALID_DYNAMIC_NAME has
282 already been called and verified that the string exists. */
283#define GET_DYNAMIC_NAME(offset) (dynamic_strings + offset)
18bd398b
NC
284
285/* This is just a bit of syntatic sugar. */
60bca95a
NC
286#define streq(a,b) (strcmp ((a), (b)) == 0)
287#define strneq(a,b,n) (strncmp ((a), (b), (n)) == 0)
0112cd26 288#define const_strneq(a,b) (strncmp ((a), (b), sizeof (b) - 1) == 0)
0b6ae522
DJ
289
290#define REMOVE_ARCH_BITS(ADDR) do { \
291 if (elf_header.e_machine == EM_ARM) \
292 (ADDR) &= ~1; \
293 } while (0)
d79b3d50 294\f
c256ffe7 295static void *
2cf0635d
NC
296get_data (void * var, FILE * file, long offset, size_t size, size_t nmemb,
297 const char * reason)
a6e9f9df 298{
2cf0635d 299 void * mvar;
a6e9f9df 300
c256ffe7 301 if (size == 0 || nmemb == 0)
a6e9f9df
AM
302 return NULL;
303
fb52b2f4 304 if (fseek (file, archive_file_offset + offset, SEEK_SET))
a6e9f9df 305 {
0fd3a477 306 error (_("Unable to seek to 0x%lx for %s\n"),
0af1713e 307 (unsigned long) archive_file_offset + offset, reason);
a6e9f9df
AM
308 return NULL;
309 }
310
311 mvar = var;
312 if (mvar == NULL)
313 {
c256ffe7
JJ
314 /* Check for overflow. */
315 if (nmemb < (~(size_t) 0 - 1) / size)
316 /* + 1 so that we can '\0' terminate invalid string table sections. */
317 mvar = malloc (size * nmemb + 1);
a6e9f9df
AM
318
319 if (mvar == NULL)
320 {
0fd3a477
JW
321 error (_("Out of memory allocating 0x%lx bytes for %s\n"),
322 (unsigned long)(size * nmemb), reason);
a6e9f9df
AM
323 return NULL;
324 }
c256ffe7
JJ
325
326 ((char *) mvar)[size * nmemb] = '\0';
a6e9f9df
AM
327 }
328
c256ffe7 329 if (fread (mvar, size, nmemb, file) != nmemb)
a6e9f9df 330 {
0fd3a477
JW
331 error (_("Unable to read in 0x%lx bytes of %s\n"),
332 (unsigned long)(size * nmemb), reason);
a6e9f9df
AM
333 if (mvar != var)
334 free (mvar);
335 return NULL;
336 }
337
338 return mvar;
339}
340
adab8cdc 341static void
2cf0635d 342byte_put_little_endian (unsigned char * field, bfd_vma value, int size)
adab8cdc
AO
343{
344 switch (size)
345 {
346 case 8:
347 field[7] = (((value >> 24) >> 24) >> 8) & 0xff;
348 field[6] = ((value >> 24) >> 24) & 0xff;
349 field[5] = ((value >> 24) >> 16) & 0xff;
350 field[4] = ((value >> 24) >> 8) & 0xff;
351 /* Fall through. */
352 case 4:
353 field[3] = (value >> 24) & 0xff;
4dc3c23d
AM
354 /* Fall through. */
355 case 3:
adab8cdc
AO
356 field[2] = (value >> 16) & 0xff;
357 /* Fall through. */
358 case 2:
359 field[1] = (value >> 8) & 0xff;
360 /* Fall through. */
361 case 1:
362 field[0] = value & 0xff;
363 break;
364
365 default:
366 error (_("Unhandled data length: %d\n"), size);
367 abort ();
368 }
369}
370
14a91970 371/* Print a VMA value. */
cb8f3167 372
66543521 373static int
14a91970 374print_vma (bfd_vma vma, print_mode mode)
66543521 375{
66543521
AM
376 int nc = 0;
377
14a91970 378 switch (mode)
66543521 379 {
14a91970
AM
380 case FULL_HEX:
381 nc = printf ("0x");
382 /* Drop through. */
66543521 383
14a91970 384 case LONG_HEX:
f7a99963 385#ifdef BFD64
14a91970 386 if (is_32bit_elf)
437c2fb7 387 return nc + printf ("%8.8" BFD_VMA_FMT "x", vma);
f7a99963 388#endif
14a91970
AM
389 printf_vma (vma);
390 return nc + 16;
b19aac67 391
14a91970
AM
392 case DEC_5:
393 if (vma <= 99999)
394 return printf ("%5" BFD_VMA_FMT "d", vma);
395 /* Drop through. */
66543521 396
14a91970
AM
397 case PREFIX_HEX:
398 nc = printf ("0x");
399 /* Drop through. */
66543521 400
14a91970
AM
401 case HEX:
402 return nc + printf ("%" BFD_VMA_FMT "x", vma);
b19aac67 403
14a91970
AM
404 case DEC:
405 return printf ("%" BFD_VMA_FMT "d", vma);
b19aac67 406
14a91970
AM
407 case UNSIGNED:
408 return printf ("%" BFD_VMA_FMT "u", vma);
f7a99963 409 }
66543521 410 return 0;
f7a99963
NC
411}
412
171191ba 413/* Display a symbol on stdout. Handles the display of non-printing characters.
31104126 414
171191ba
NC
415 If DO_WIDE is not true then format the symbol to be at most WIDTH characters,
416 truncating as necessary. If WIDTH is negative then format the string to be
417 exactly - WIDTH characters, truncating or padding as necessary.
418
419 Returns the number of emitted characters. */
420
421static unsigned int
2cf0635d 422print_symbol (int width, const char * symbol)
31104126 423{
961c521f 424 const char * c;
171191ba
NC
425 bfd_boolean extra_padding = FALSE;
426 unsigned int num_printed = 0;
961c521f 427
31104126 428 if (do_wide)
961c521f 429 {
961c521f
NC
430 /* Set the width to a very large value. This simplifies the code below. */
431 width = INT_MAX;
432 }
31104126 433 else if (width < 0)
961c521f 434 {
961c521f
NC
435 /* Keep the width positive. This also helps. */
436 width = - width;
171191ba 437 extra_padding = TRUE;
961c521f
NC
438 }
439
440 while (width)
441 {
442 int len;
443
444 c = symbol;
445
446 /* Look for non-printing symbols inside the symbol's name.
447 This test is triggered in particular by the names generated
448 by the assembler for local labels. */
449 while (ISPRINT (* c))
450 c++;
451
452 len = c - symbol;
453
454 if (len)
455 {
456 if (len > width)
457 len = width;
cb8f3167 458
171191ba 459 printf ("%.*s", len, symbol);
961c521f
NC
460
461 width -= len;
171191ba 462 num_printed += len;
961c521f
NC
463 }
464
465 if (* c == 0 || width == 0)
466 break;
467
468 /* Now display the non-printing character, if
469 there is room left in which to dipslay it. */
470 if (*c < 32)
471 {
472 if (width < 2)
473 break;
474
475 printf ("^%c", *c + 0x40);
476
477 width -= 2;
171191ba 478 num_printed += 2;
961c521f
NC
479 }
480 else
481 {
482 if (width < 6)
483 break;
cb8f3167 484
961c521f
NC
485 printf ("<0x%.2x>", *c);
486
487 width -= 6;
171191ba 488 num_printed += 6;
961c521f
NC
489 }
490
491 symbol = c + 1;
492 }
171191ba
NC
493
494 if (extra_padding && width > 0)
495 {
496 /* Fill in the remaining spaces. */
497 printf ("%-*s", width, " ");
498 num_printed += 2;
499 }
500
501 return num_printed;
31104126
NC
502}
503
adab8cdc 504static void
2cf0635d 505byte_put_big_endian (unsigned char * field, bfd_vma value, int size)
adab8cdc
AO
506{
507 switch (size)
508 {
509 case 8:
510 field[7] = value & 0xff;
511 field[6] = (value >> 8) & 0xff;
512 field[5] = (value >> 16) & 0xff;
513 field[4] = (value >> 24) & 0xff;
514 value >>= 16;
515 value >>= 16;
516 /* Fall through. */
517 case 4:
518 field[3] = value & 0xff;
4dc3c23d
AM
519 value >>= 8;
520 /* Fall through. */
521 case 3:
522 field[2] = value & 0xff;
523 value >>= 8;
adab8cdc
AO
524 /* Fall through. */
525 case 2:
526 field[1] = value & 0xff;
527 value >>= 8;
528 /* Fall through. */
529 case 1:
530 field[0] = value & 0xff;
531 break;
532
533 default:
534 error (_("Unhandled data length: %d\n"), size);
535 abort ();
536 }
537}
538
89fac5e3
RS
539/* Return a pointer to section NAME, or NULL if no such section exists. */
540
541static Elf_Internal_Shdr *
2cf0635d 542find_section (const char * name)
89fac5e3
RS
543{
544 unsigned int i;
545
546 for (i = 0; i < elf_header.e_shnum; i++)
547 if (streq (SECTION_NAME (section_headers + i), name))
548 return section_headers + i;
549
550 return NULL;
551}
552
0b6ae522
DJ
553/* Return a pointer to a section containing ADDR, or NULL if no such
554 section exists. */
555
556static Elf_Internal_Shdr *
557find_section_by_address (bfd_vma addr)
558{
559 unsigned int i;
560
561 for (i = 0; i < elf_header.e_shnum; i++)
562 {
563 Elf_Internal_Shdr *sec = section_headers + i;
564 if (addr >= sec->sh_addr && addr < sec->sh_addr + sec->sh_size)
565 return sec;
566 }
567
568 return NULL;
569}
570
571/* Read an unsigned LEB128 encoded value from p. Set *PLEN to the number of
572 bytes read. */
573
574static unsigned long
575read_uleb128 (unsigned char *data, unsigned int *length_return)
576{
577 return read_leb128 (data, length_return, 0);
578}
579
28f997cf
TG
580/* Return true if the current file is for IA-64 machine and OpenVMS ABI.
581 This OS has so many departures from the ELF standard that we test it at
582 many places. */
583
584static inline int
585is_ia64_vms (void)
586{
587 return elf_header.e_machine == EM_IA_64
588 && elf_header.e_ident[EI_OSABI] == ELFOSABI_OPENVMS;
589}
590
bcedfee6 591/* Guess the relocation size commonly used by the specific machines. */
252b5132 592
252b5132 593static int
2dc4cec1 594guess_is_rela (unsigned int e_machine)
252b5132 595{
9c19a809 596 switch (e_machine)
252b5132
RH
597 {
598 /* Targets that use REL relocations. */
252b5132
RH
599 case EM_386:
600 case EM_486:
63fcb9e9 601 case EM_960:
e9f53129 602 case EM_ARM:
2b0337b0 603 case EM_D10V:
252b5132 604 case EM_CYGNUS_D10V:
e9f53129 605 case EM_DLX:
252b5132 606 case EM_MIPS:
4fe85591 607 case EM_MIPS_RS3_LE:
e9f53129
AM
608 case EM_CYGNUS_M32R:
609 case EM_OPENRISC:
610 case EM_OR32:
1c0d3aa6 611 case EM_SCORE:
9c19a809 612 return FALSE;
103f02d3 613
252b5132
RH
614 /* Targets that use RELA relocations. */
615 case EM_68K:
e9f53129
AM
616 case EM_860:
617 case EM_ALPHA:
618 case EM_ALTERA_NIOS2:
619 case EM_AVR:
620 case EM_AVR_OLD:
621 case EM_BLACKFIN:
60bca95a 622 case EM_CR16:
6c03b1ed 623 case EM_CR16_OLD:
e9f53129
AM
624 case EM_CRIS:
625 case EM_CRX:
2b0337b0 626 case EM_D30V:
252b5132 627 case EM_CYGNUS_D30V:
2b0337b0 628 case EM_FR30:
252b5132 629 case EM_CYGNUS_FR30:
5c70f934 630 case EM_CYGNUS_FRV:
e9f53129
AM
631 case EM_H8S:
632 case EM_H8_300:
633 case EM_H8_300H:
800eeca4 634 case EM_IA_64:
1e4cf259
NC
635 case EM_IP2K:
636 case EM_IP2K_OLD:
3b36097d 637 case EM_IQ2000:
84e94c90 638 case EM_LATTICEMICO32:
ff7eeb89 639 case EM_M32C_OLD:
49f58d10 640 case EM_M32C:
e9f53129
AM
641 case EM_M32R:
642 case EM_MCORE:
15ab5209 643 case EM_CYGNUS_MEP:
e9f53129
AM
644 case EM_MMIX:
645 case EM_MN10200:
646 case EM_CYGNUS_MN10200:
647 case EM_MN10300:
648 case EM_CYGNUS_MN10300:
649 case EM_MSP430:
650 case EM_MSP430_OLD:
d031aafb 651 case EM_MT:
64fd6348 652 case EM_NIOS32:
e9f53129
AM
653 case EM_PPC64:
654 case EM_PPC:
c7927a3c 655 case EM_RX:
e9f53129
AM
656 case EM_S390:
657 case EM_S390_OLD:
658 case EM_SH:
659 case EM_SPARC:
660 case EM_SPARC32PLUS:
661 case EM_SPARCV9:
662 case EM_SPU:
40b36596 663 case EM_TI_C6000:
e9f53129
AM
664 case EM_V850:
665 case EM_CYGNUS_V850:
666 case EM_VAX:
667 case EM_X86_64:
8a9036a4 668 case EM_L1OM:
e9f53129
AM
669 case EM_XSTORMY16:
670 case EM_XTENSA:
671 case EM_XTENSA_OLD:
7ba29e2a
NC
672 case EM_MICROBLAZE:
673 case EM_MICROBLAZE_OLD:
9c19a809 674 return TRUE;
103f02d3 675
e9f53129
AM
676 case EM_68HC05:
677 case EM_68HC08:
678 case EM_68HC11:
679 case EM_68HC16:
680 case EM_FX66:
681 case EM_ME16:
d1133906 682 case EM_MMA:
d1133906
NC
683 case EM_NCPU:
684 case EM_NDR1:
e9f53129 685 case EM_PCP:
d1133906 686 case EM_ST100:
e9f53129 687 case EM_ST19:
d1133906 688 case EM_ST7:
e9f53129
AM
689 case EM_ST9PLUS:
690 case EM_STARCORE:
d1133906 691 case EM_SVX:
e9f53129 692 case EM_TINYJ:
9c19a809
NC
693 default:
694 warn (_("Don't know about relocations on this machine architecture\n"));
695 return FALSE;
696 }
697}
252b5132 698
9c19a809 699static int
2cf0635d 700slurp_rela_relocs (FILE * file,
d3ba0551
AM
701 unsigned long rel_offset,
702 unsigned long rel_size,
2cf0635d
NC
703 Elf_Internal_Rela ** relasp,
704 unsigned long * nrelasp)
9c19a809 705{
2cf0635d 706 Elf_Internal_Rela * relas;
4d6ed7c8
NC
707 unsigned long nrelas;
708 unsigned int i;
252b5132 709
4d6ed7c8
NC
710 if (is_32bit_elf)
711 {
2cf0635d 712 Elf32_External_Rela * erelas;
103f02d3 713
3f5e193b
NC
714 erelas = (Elf32_External_Rela *) get_data (NULL, file, rel_offset, 1,
715 rel_size, _("relocs"));
a6e9f9df
AM
716 if (!erelas)
717 return 0;
252b5132 718
4d6ed7c8 719 nrelas = rel_size / sizeof (Elf32_External_Rela);
103f02d3 720
3f5e193b
NC
721 relas = (Elf_Internal_Rela *) cmalloc (nrelas,
722 sizeof (Elf_Internal_Rela));
103f02d3 723
4d6ed7c8
NC
724 if (relas == NULL)
725 {
c256ffe7 726 free (erelas);
591a748a 727 error (_("out of memory parsing relocs\n"));
4d6ed7c8
NC
728 return 0;
729 }
103f02d3 730
4d6ed7c8
NC
731 for (i = 0; i < nrelas; i++)
732 {
733 relas[i].r_offset = BYTE_GET (erelas[i].r_offset);
734 relas[i].r_info = BYTE_GET (erelas[i].r_info);
735 relas[i].r_addend = BYTE_GET (erelas[i].r_addend);
736 }
103f02d3 737
4d6ed7c8
NC
738 free (erelas);
739 }
740 else
741 {
2cf0635d 742 Elf64_External_Rela * erelas;
103f02d3 743
3f5e193b
NC
744 erelas = (Elf64_External_Rela *) get_data (NULL, file, rel_offset, 1,
745 rel_size, _("relocs"));
a6e9f9df
AM
746 if (!erelas)
747 return 0;
4d6ed7c8
NC
748
749 nrelas = rel_size / sizeof (Elf64_External_Rela);
103f02d3 750
3f5e193b
NC
751 relas = (Elf_Internal_Rela *) cmalloc (nrelas,
752 sizeof (Elf_Internal_Rela));
103f02d3 753
4d6ed7c8
NC
754 if (relas == NULL)
755 {
c256ffe7 756 free (erelas);
591a748a 757 error (_("out of memory parsing relocs\n"));
4d6ed7c8 758 return 0;
9c19a809 759 }
4d6ed7c8
NC
760
761 for (i = 0; i < nrelas; i++)
9c19a809 762 {
66543521
AM
763 relas[i].r_offset = BYTE_GET (erelas[i].r_offset);
764 relas[i].r_info = BYTE_GET (erelas[i].r_info);
765 relas[i].r_addend = BYTE_GET (erelas[i].r_addend);
861fb55a
DJ
766
767 /* The #ifdef BFD64 below is to prevent a compile time
768 warning. We know that if we do not have a 64 bit data
769 type that we will never execute this code anyway. */
770#ifdef BFD64
771 if (elf_header.e_machine == EM_MIPS
772 && elf_header.e_ident[EI_DATA] != ELFDATA2MSB)
773 {
774 /* In little-endian objects, r_info isn't really a
775 64-bit little-endian value: it has a 32-bit
776 little-endian symbol index followed by four
777 individual byte fields. Reorder INFO
778 accordingly. */
91d6fa6a
NC
779 bfd_vma inf = relas[i].r_info;
780 inf = (((inf & 0xffffffff) << 32)
781 | ((inf >> 56) & 0xff)
782 | ((inf >> 40) & 0xff00)
783 | ((inf >> 24) & 0xff0000)
784 | ((inf >> 8) & 0xff000000));
785 relas[i].r_info = inf;
861fb55a
DJ
786 }
787#endif /* BFD64 */
4d6ed7c8 788 }
103f02d3 789
4d6ed7c8
NC
790 free (erelas);
791 }
792 *relasp = relas;
793 *nrelasp = nrelas;
794 return 1;
795}
103f02d3 796
4d6ed7c8 797static int
2cf0635d 798slurp_rel_relocs (FILE * file,
d3ba0551
AM
799 unsigned long rel_offset,
800 unsigned long rel_size,
2cf0635d
NC
801 Elf_Internal_Rela ** relsp,
802 unsigned long * nrelsp)
4d6ed7c8 803{
2cf0635d 804 Elf_Internal_Rela * rels;
4d6ed7c8
NC
805 unsigned long nrels;
806 unsigned int i;
103f02d3 807
4d6ed7c8
NC
808 if (is_32bit_elf)
809 {
2cf0635d 810 Elf32_External_Rel * erels;
103f02d3 811
3f5e193b
NC
812 erels = (Elf32_External_Rel *) get_data (NULL, file, rel_offset, 1,
813 rel_size, _("relocs"));
a6e9f9df
AM
814 if (!erels)
815 return 0;
103f02d3 816
4d6ed7c8 817 nrels = rel_size / sizeof (Elf32_External_Rel);
103f02d3 818
3f5e193b 819 rels = (Elf_Internal_Rela *) cmalloc (nrels, sizeof (Elf_Internal_Rela));
103f02d3 820
4d6ed7c8
NC
821 if (rels == NULL)
822 {
c256ffe7 823 free (erels);
591a748a 824 error (_("out of memory parsing relocs\n"));
4d6ed7c8
NC
825 return 0;
826 }
827
828 for (i = 0; i < nrels; i++)
829 {
830 rels[i].r_offset = BYTE_GET (erels[i].r_offset);
831 rels[i].r_info = BYTE_GET (erels[i].r_info);
c8286bd1 832 rels[i].r_addend = 0;
9ea033b2 833 }
4d6ed7c8
NC
834
835 free (erels);
9c19a809
NC
836 }
837 else
838 {
2cf0635d 839 Elf64_External_Rel * erels;
9ea033b2 840
3f5e193b
NC
841 erels = (Elf64_External_Rel *) get_data (NULL, file, rel_offset, 1,
842 rel_size, _("relocs"));
a6e9f9df
AM
843 if (!erels)
844 return 0;
103f02d3 845
4d6ed7c8 846 nrels = rel_size / sizeof (Elf64_External_Rel);
103f02d3 847
3f5e193b 848 rels = (Elf_Internal_Rela *) cmalloc (nrels, sizeof (Elf_Internal_Rela));
103f02d3 849
4d6ed7c8 850 if (rels == NULL)
9c19a809 851 {
c256ffe7 852 free (erels);
591a748a 853 error (_("out of memory parsing relocs\n"));
4d6ed7c8
NC
854 return 0;
855 }
103f02d3 856
4d6ed7c8
NC
857 for (i = 0; i < nrels; i++)
858 {
66543521
AM
859 rels[i].r_offset = BYTE_GET (erels[i].r_offset);
860 rels[i].r_info = BYTE_GET (erels[i].r_info);
c8286bd1 861 rels[i].r_addend = 0;
861fb55a
DJ
862
863 /* The #ifdef BFD64 below is to prevent a compile time
864 warning. We know that if we do not have a 64 bit data
865 type that we will never execute this code anyway. */
866#ifdef BFD64
867 if (elf_header.e_machine == EM_MIPS
868 && elf_header.e_ident[EI_DATA] != ELFDATA2MSB)
869 {
870 /* In little-endian objects, r_info isn't really a
871 64-bit little-endian value: it has a 32-bit
872 little-endian symbol index followed by four
873 individual byte fields. Reorder INFO
874 accordingly. */
91d6fa6a
NC
875 bfd_vma inf = rels[i].r_info;
876 inf = (((inf & 0xffffffff) << 32)
877 | ((inf >> 56) & 0xff)
878 | ((inf >> 40) & 0xff00)
879 | ((inf >> 24) & 0xff0000)
880 | ((inf >> 8) & 0xff000000));
881 rels[i].r_info = inf;
861fb55a
DJ
882 }
883#endif /* BFD64 */
4d6ed7c8 884 }
103f02d3 885
4d6ed7c8
NC
886 free (erels);
887 }
888 *relsp = rels;
889 *nrelsp = nrels;
890 return 1;
891}
103f02d3 892
aca88567
NC
893/* Returns the reloc type extracted from the reloc info field. */
894
895static unsigned int
896get_reloc_type (bfd_vma reloc_info)
897{
898 if (is_32bit_elf)
899 return ELF32_R_TYPE (reloc_info);
900
901 switch (elf_header.e_machine)
902 {
903 case EM_MIPS:
904 /* Note: We assume that reloc_info has already been adjusted for us. */
905 return ELF64_MIPS_R_TYPE (reloc_info);
906
907 case EM_SPARCV9:
908 return ELF64_R_TYPE_ID (reloc_info);
909
910 default:
911 return ELF64_R_TYPE (reloc_info);
912 }
913}
914
915/* Return the symbol index extracted from the reloc info field. */
916
917static bfd_vma
918get_reloc_symindex (bfd_vma reloc_info)
919{
920 return is_32bit_elf ? ELF32_R_SYM (reloc_info) : ELF64_R_SYM (reloc_info);
921}
922
d3ba0551
AM
923/* Display the contents of the relocation data found at the specified
924 offset. */
ee42cf8c 925
41e92641 926static void
2cf0635d 927dump_relocations (FILE * file,
d3ba0551
AM
928 unsigned long rel_offset,
929 unsigned long rel_size,
2cf0635d 930 Elf_Internal_Sym * symtab,
d3ba0551 931 unsigned long nsyms,
2cf0635d 932 char * strtab,
d79b3d50 933 unsigned long strtablen,
d3ba0551 934 int is_rela)
4d6ed7c8 935{
b34976b6 936 unsigned int i;
2cf0635d 937 Elf_Internal_Rela * rels;
103f02d3 938
4d6ed7c8
NC
939 if (is_rela == UNKNOWN)
940 is_rela = guess_is_rela (elf_header.e_machine);
103f02d3 941
4d6ed7c8
NC
942 if (is_rela)
943 {
c8286bd1 944 if (!slurp_rela_relocs (file, rel_offset, rel_size, &rels, &rel_size))
41e92641 945 return;
4d6ed7c8
NC
946 }
947 else
948 {
949 if (!slurp_rel_relocs (file, rel_offset, rel_size, &rels, &rel_size))
41e92641 950 return;
252b5132
RH
951 }
952
410f7a12
L
953 if (is_32bit_elf)
954 {
955 if (is_rela)
2c71103e
NC
956 {
957 if (do_wide)
958 printf (_(" Offset Info Type Sym. Value Symbol's Name + Addend\n"));
959 else
960 printf (_(" Offset Info Type Sym.Value Sym. Name + Addend\n"));
961 }
410f7a12 962 else
2c71103e
NC
963 {
964 if (do_wide)
965 printf (_(" Offset Info Type Sym. Value Symbol's Name\n"));
966 else
967 printf (_(" Offset Info Type Sym.Value Sym. Name\n"));
968 }
410f7a12 969 }
252b5132 970 else
410f7a12
L
971 {
972 if (is_rela)
2c71103e
NC
973 {
974 if (do_wide)
8beeaeb7 975 printf (_(" Offset Info Type Symbol's Value Symbol's Name + Addend\n"));
2c71103e
NC
976 else
977 printf (_(" Offset Info Type Sym. Value Sym. Name + Addend\n"));
978 }
410f7a12 979 else
2c71103e
NC
980 {
981 if (do_wide)
8beeaeb7 982 printf (_(" Offset Info Type Symbol's Value Symbol's Name\n"));
2c71103e
NC
983 else
984 printf (_(" Offset Info Type Sym. Value Sym. Name\n"));
985 }
410f7a12 986 }
252b5132
RH
987
988 for (i = 0; i < rel_size; i++)
989 {
2cf0635d 990 const char * rtype;
b34976b6 991 bfd_vma offset;
91d6fa6a 992 bfd_vma inf;
b34976b6
AM
993 bfd_vma symtab_index;
994 bfd_vma type;
103f02d3 995
b34976b6 996 offset = rels[i].r_offset;
91d6fa6a 997 inf = rels[i].r_info;
103f02d3 998
91d6fa6a
NC
999 type = get_reloc_type (inf);
1000 symtab_index = get_reloc_symindex (inf);
252b5132 1001
410f7a12
L
1002 if (is_32bit_elf)
1003 {
39dbeff8
AM
1004 printf ("%8.8lx %8.8lx ",
1005 (unsigned long) offset & 0xffffffff,
91d6fa6a 1006 (unsigned long) inf & 0xffffffff);
410f7a12
L
1007 }
1008 else
1009 {
39dbeff8
AM
1010#if BFD_HOST_64BIT_LONG
1011 printf (do_wide
1012 ? "%16.16lx %16.16lx "
1013 : "%12.12lx %12.12lx ",
91d6fa6a 1014 offset, inf);
39dbeff8 1015#elif BFD_HOST_64BIT_LONG_LONG
6e3d6dc1 1016#ifndef __MSVCRT__
39dbeff8
AM
1017 printf (do_wide
1018 ? "%16.16llx %16.16llx "
1019 : "%12.12llx %12.12llx ",
91d6fa6a 1020 offset, inf);
6e3d6dc1
NC
1021#else
1022 printf (do_wide
1023 ? "%16.16I64x %16.16I64x "
1024 : "%12.12I64x %12.12I64x ",
91d6fa6a 1025 offset, inf);
6e3d6dc1 1026#endif
39dbeff8 1027#else
2c71103e
NC
1028 printf (do_wide
1029 ? "%8.8lx%8.8lx %8.8lx%8.8lx "
1030 : "%4.4lx%8.8lx %4.4lx%8.8lx ",
410f7a12
L
1031 _bfd_int64_high (offset),
1032 _bfd_int64_low (offset),
91d6fa6a
NC
1033 _bfd_int64_high (inf),
1034 _bfd_int64_low (inf));
9ea033b2 1035#endif
410f7a12 1036 }
103f02d3 1037
252b5132
RH
1038 switch (elf_header.e_machine)
1039 {
1040 default:
1041 rtype = NULL;
1042 break;
1043
2b0337b0 1044 case EM_M32R:
252b5132 1045 case EM_CYGNUS_M32R:
9ea033b2 1046 rtype = elf_m32r_reloc_type (type);
252b5132
RH
1047 break;
1048
1049 case EM_386:
1050 case EM_486:
9ea033b2 1051 rtype = elf_i386_reloc_type (type);
252b5132
RH
1052 break;
1053
ba2685cc
AM
1054 case EM_68HC11:
1055 case EM_68HC12:
1056 rtype = elf_m68hc11_reloc_type (type);
1057 break;
75751cd9 1058
252b5132 1059 case EM_68K:
9ea033b2 1060 rtype = elf_m68k_reloc_type (type);
252b5132
RH
1061 break;
1062
63fcb9e9 1063 case EM_960:
9ea033b2 1064 rtype = elf_i960_reloc_type (type);
63fcb9e9
ILT
1065 break;
1066
adde6300 1067 case EM_AVR:
2b0337b0 1068 case EM_AVR_OLD:
adde6300
AM
1069 rtype = elf_avr_reloc_type (type);
1070 break;
1071
9ea033b2
NC
1072 case EM_OLD_SPARCV9:
1073 case EM_SPARC32PLUS:
1074 case EM_SPARCV9:
252b5132 1075 case EM_SPARC:
9ea033b2 1076 rtype = elf_sparc_reloc_type (type);
252b5132
RH
1077 break;
1078
e9f53129
AM
1079 case EM_SPU:
1080 rtype = elf_spu_reloc_type (type);
1081 break;
1082
2b0337b0 1083 case EM_V850:
252b5132 1084 case EM_CYGNUS_V850:
9ea033b2 1085 rtype = v850_reloc_type (type);
252b5132
RH
1086 break;
1087
2b0337b0 1088 case EM_D10V:
252b5132 1089 case EM_CYGNUS_D10V:
9ea033b2 1090 rtype = elf_d10v_reloc_type (type);
252b5132
RH
1091 break;
1092
2b0337b0 1093 case EM_D30V:
252b5132 1094 case EM_CYGNUS_D30V:
9ea033b2 1095 rtype = elf_d30v_reloc_type (type);
252b5132
RH
1096 break;
1097
d172d4ba
NC
1098 case EM_DLX:
1099 rtype = elf_dlx_reloc_type (type);
1100 break;
1101
252b5132 1102 case EM_SH:
9ea033b2 1103 rtype = elf_sh_reloc_type (type);
252b5132
RH
1104 break;
1105
2b0337b0 1106 case EM_MN10300:
252b5132 1107 case EM_CYGNUS_MN10300:
9ea033b2 1108 rtype = elf_mn10300_reloc_type (type);
252b5132
RH
1109 break;
1110
2b0337b0 1111 case EM_MN10200:
252b5132 1112 case EM_CYGNUS_MN10200:
9ea033b2 1113 rtype = elf_mn10200_reloc_type (type);
252b5132
RH
1114 break;
1115
2b0337b0 1116 case EM_FR30:
252b5132 1117 case EM_CYGNUS_FR30:
9ea033b2 1118 rtype = elf_fr30_reloc_type (type);
252b5132
RH
1119 break;
1120
ba2685cc
AM
1121 case EM_CYGNUS_FRV:
1122 rtype = elf_frv_reloc_type (type);
1123 break;
5c70f934 1124
252b5132 1125 case EM_MCORE:
9ea033b2 1126 rtype = elf_mcore_reloc_type (type);
252b5132
RH
1127 break;
1128
3c3bdf30
NC
1129 case EM_MMIX:
1130 rtype = elf_mmix_reloc_type (type);
1131 break;
1132
2469cfa2
NC
1133 case EM_MSP430:
1134 case EM_MSP430_OLD:
1135 rtype = elf_msp430_reloc_type (type);
1136 break;
1137
252b5132 1138 case EM_PPC:
9ea033b2 1139 rtype = elf_ppc_reloc_type (type);
252b5132
RH
1140 break;
1141
c833c019
AM
1142 case EM_PPC64:
1143 rtype = elf_ppc64_reloc_type (type);
1144 break;
1145
252b5132 1146 case EM_MIPS:
4fe85591 1147 case EM_MIPS_RS3_LE:
9ea033b2 1148 rtype = elf_mips_reloc_type (type);
252b5132
RH
1149 break;
1150
1151 case EM_ALPHA:
9ea033b2 1152 rtype = elf_alpha_reloc_type (type);
252b5132
RH
1153 break;
1154
1155 case EM_ARM:
9ea033b2 1156 rtype = elf_arm_reloc_type (type);
252b5132
RH
1157 break;
1158
584da044 1159 case EM_ARC:
9ea033b2 1160 rtype = elf_arc_reloc_type (type);
252b5132
RH
1161 break;
1162
1163 case EM_PARISC:
69e617ca 1164 rtype = elf_hppa_reloc_type (type);
252b5132 1165 break;
7d466069 1166
b8720f9d
JL
1167 case EM_H8_300:
1168 case EM_H8_300H:
1169 case EM_H8S:
1170 rtype = elf_h8_reloc_type (type);
1171 break;
1172
3b16e843
NC
1173 case EM_OPENRISC:
1174 case EM_OR32:
1175 rtype = elf_or32_reloc_type (type);
1176 break;
1177
7d466069 1178 case EM_PJ:
2b0337b0 1179 case EM_PJ_OLD:
7d466069
ILT
1180 rtype = elf_pj_reloc_type (type);
1181 break;
800eeca4
JW
1182 case EM_IA_64:
1183 rtype = elf_ia64_reloc_type (type);
1184 break;
1b61cf92
HPN
1185
1186 case EM_CRIS:
1187 rtype = elf_cris_reloc_type (type);
1188 break;
535c37ff
JE
1189
1190 case EM_860:
1191 rtype = elf_i860_reloc_type (type);
1192 break;
bcedfee6
NC
1193
1194 case EM_X86_64:
8a9036a4 1195 case EM_L1OM:
bcedfee6
NC
1196 rtype = elf_x86_64_reloc_type (type);
1197 break;
a85d7ed0 1198
35b1837e
AM
1199 case EM_S370:
1200 rtype = i370_reloc_type (type);
1201 break;
1202
53c7db4b
KH
1203 case EM_S390_OLD:
1204 case EM_S390:
1205 rtype = elf_s390_reloc_type (type);
1206 break;
93fbbb04 1207
1c0d3aa6
NC
1208 case EM_SCORE:
1209 rtype = elf_score_reloc_type (type);
1210 break;
1211
93fbbb04
GK
1212 case EM_XSTORMY16:
1213 rtype = elf_xstormy16_reloc_type (type);
1214 break;
179d3252 1215
1fe1f39c
NC
1216 case EM_CRX:
1217 rtype = elf_crx_reloc_type (type);
1218 break;
1219
179d3252
JT
1220 case EM_VAX:
1221 rtype = elf_vax_reloc_type (type);
1222 break;
1e4cf259
NC
1223
1224 case EM_IP2K:
1225 case EM_IP2K_OLD:
1226 rtype = elf_ip2k_reloc_type (type);
1227 break;
3b36097d
SC
1228
1229 case EM_IQ2000:
1230 rtype = elf_iq2000_reloc_type (type);
1231 break;
88da6820
NC
1232
1233 case EM_XTENSA_OLD:
1234 case EM_XTENSA:
1235 rtype = elf_xtensa_reloc_type (type);
1236 break;
a34e3ecb 1237
84e94c90
NC
1238 case EM_LATTICEMICO32:
1239 rtype = elf_lm32_reloc_type (type);
1240 break;
1241
ff7eeb89 1242 case EM_M32C_OLD:
49f58d10
JB
1243 case EM_M32C:
1244 rtype = elf_m32c_reloc_type (type);
1245 break;
1246
d031aafb
NS
1247 case EM_MT:
1248 rtype = elf_mt_reloc_type (type);
a34e3ecb 1249 break;
1d65ded4
CM
1250
1251 case EM_BLACKFIN:
1252 rtype = elf_bfin_reloc_type (type);
1253 break;
15ab5209
DB
1254
1255 case EM_CYGNUS_MEP:
1256 rtype = elf_mep_reloc_type (type);
1257 break;
60bca95a
NC
1258
1259 case EM_CR16:
6c03b1ed 1260 case EM_CR16_OLD:
60bca95a
NC
1261 rtype = elf_cr16_reloc_type (type);
1262 break;
7ba29e2a
NC
1263
1264 case EM_MICROBLAZE:
1265 case EM_MICROBLAZE_OLD:
1266 rtype = elf_microblaze_reloc_type (type);
1267 break;
c7927a3c
NC
1268
1269 case EM_RX:
1270 rtype = elf_rx_reloc_type (type);
1271 break;
c29aca4a
NC
1272
1273 case EM_XC16X:
1274 case EM_C166:
1275 rtype = elf_xc16x_reloc_type (type);
1276 break;
40b36596
JM
1277
1278 case EM_TI_C6000:
1279 rtype = elf_tic6x_reloc_type (type);
1280 break;
252b5132
RH
1281 }
1282
1283 if (rtype == NULL)
39dbeff8 1284 printf (_("unrecognized: %-7lx"), (unsigned long) type & 0xffffffff);
252b5132 1285 else
8beeaeb7 1286 printf (do_wide ? "%-22.22s" : "%-17.17s", rtype);
252b5132 1287
7ace3541 1288 if (elf_header.e_machine == EM_ALPHA
157c2599 1289 && rtype != NULL
7ace3541
RH
1290 && streq (rtype, "R_ALPHA_LITUSE")
1291 && is_rela)
1292 {
1293 switch (rels[i].r_addend)
1294 {
1295 case LITUSE_ALPHA_ADDR: rtype = "ADDR"; break;
1296 case LITUSE_ALPHA_BASE: rtype = "BASE"; break;
1297 case LITUSE_ALPHA_BYTOFF: rtype = "BYTOFF"; break;
1298 case LITUSE_ALPHA_JSR: rtype = "JSR"; break;
1299 case LITUSE_ALPHA_TLSGD: rtype = "TLSGD"; break;
1300 case LITUSE_ALPHA_TLSLDM: rtype = "TLSLDM"; break;
1301 case LITUSE_ALPHA_JSRDIRECT: rtype = "JSRDIRECT"; break;
1302 default: rtype = NULL;
1303 }
1304 if (rtype)
1305 printf (" (%s)", rtype);
1306 else
1307 {
1308 putchar (' ');
1309 printf (_("<unknown addend: %lx>"),
1310 (unsigned long) rels[i].r_addend);
1311 }
1312 }
1313 else if (symtab_index)
252b5132 1314 {
af3fc3bc 1315 if (symtab == NULL || symtab_index >= nsyms)
2b692964 1316 printf (_(" bad symbol index: %08lx"), (unsigned long) symtab_index);
af3fc3bc 1317 else
19936277 1318 {
2cf0635d 1319 Elf_Internal_Sym * psym;
19936277 1320
af3fc3bc 1321 psym = symtab + symtab_index;
103f02d3 1322
af3fc3bc 1323 printf (" ");
171191ba 1324
d8045f23
NC
1325 if (ELF_ST_TYPE (psym->st_info) == STT_GNU_IFUNC)
1326 {
1327 const char * name;
1328 unsigned int len;
1329 unsigned int width = is_32bit_elf ? 8 : 14;
1330
1331 /* Relocations against GNU_IFUNC symbols do not use the value
1332 of the symbol as the address to relocate against. Instead
1333 they invoke the function named by the symbol and use its
1334 result as the address for relocation.
1335
1336 To indicate this to the user, do not display the value of
1337 the symbol in the "Symbols's Value" field. Instead show
1338 its name followed by () as a hint that the symbol is
1339 invoked. */
1340
1341 if (strtab == NULL
1342 || psym->st_name == 0
1343 || psym->st_name >= strtablen)
1344 name = "??";
1345 else
1346 name = strtab + psym->st_name;
1347
1348 len = print_symbol (width, name);
1349 printf ("()%-*s", len <= width ? (width + 1) - len : 1, " ");
1350 }
1351 else
1352 {
1353 print_vma (psym->st_value, LONG_HEX);
171191ba 1354
d8045f23
NC
1355 printf (is_32bit_elf ? " " : " ");
1356 }
103f02d3 1357
af3fc3bc 1358 if (psym->st_name == 0)
f1ef08cb 1359 {
2cf0635d 1360 const char * sec_name = "<null>";
f1ef08cb
AM
1361 char name_buf[40];
1362
1363 if (ELF_ST_TYPE (psym->st_info) == STT_SECTION)
1364 {
4fbb74a6
AM
1365 if (psym->st_shndx < elf_header.e_shnum)
1366 sec_name
1367 = SECTION_NAME (section_headers + psym->st_shndx);
f1ef08cb
AM
1368 else if (psym->st_shndx == SHN_ABS)
1369 sec_name = "ABS";
1370 else if (psym->st_shndx == SHN_COMMON)
1371 sec_name = "COMMON";
172553c7
TS
1372 else if (elf_header.e_machine == EM_MIPS
1373 && psym->st_shndx == SHN_MIPS_SCOMMON)
1374 sec_name = "SCOMMON";
1375 else if (elf_header.e_machine == EM_MIPS
1376 && psym->st_shndx == SHN_MIPS_SUNDEFINED)
1377 sec_name = "SUNDEF";
8a9036a4
L
1378 else if ((elf_header.e_machine == EM_X86_64
1379 || elf_header.e_machine == EM_L1OM)
3b22753a
L
1380 && psym->st_shndx == SHN_X86_64_LCOMMON)
1381 sec_name = "LARGE_COMMON";
9ce701e2
L
1382 else if (elf_header.e_machine == EM_IA_64
1383 && elf_header.e_ident[EI_OSABI] == ELFOSABI_HPUX
1384 && psym->st_shndx == SHN_IA_64_ANSI_COMMON)
1385 sec_name = "ANSI_COM";
28f997cf 1386 else if (is_ia64_vms ()
148b93f2
NC
1387 && psym->st_shndx == SHN_IA_64_VMS_SYMVEC)
1388 sec_name = "VMS_SYMVEC";
f1ef08cb
AM
1389 else
1390 {
1391 sprintf (name_buf, "<section 0x%x>",
1392 (unsigned int) psym->st_shndx);
1393 sec_name = name_buf;
1394 }
1395 }
1396 print_symbol (22, sec_name);
1397 }
af3fc3bc 1398 else if (strtab == NULL)
d79b3d50 1399 printf (_("<string table index: %3ld>"), psym->st_name);
c256ffe7 1400 else if (psym->st_name >= strtablen)
d79b3d50 1401 printf (_("<corrupt string table index: %3ld>"), psym->st_name);
af3fc3bc 1402 else
2c71103e 1403 print_symbol (22, strtab + psym->st_name);
103f02d3 1404
af3fc3bc 1405 if (is_rela)
171191ba 1406 {
91d6fa6a 1407 long off = (long) (bfd_signed_vma) rels[i].r_addend;
171191ba 1408
91d6fa6a
NC
1409 if (off < 0)
1410 printf (" - %lx", - off);
171191ba 1411 else
91d6fa6a 1412 printf (" + %lx", off);
171191ba 1413 }
19936277 1414 }
252b5132 1415 }
1b228002 1416 else if (is_rela)
f7a99963 1417 {
18bd398b
NC
1418 printf ("%*c", is_32bit_elf ?
1419 (do_wide ? 34 : 28) : (do_wide ? 26 : 20), ' ');
c8286bd1 1420 print_vma (rels[i].r_addend, LONG_HEX);
f7a99963 1421 }
252b5132 1422
157c2599
NC
1423 if (elf_header.e_machine == EM_SPARCV9
1424 && rtype != NULL
1425 && streq (rtype, "R_SPARC_OLO10"))
91d6fa6a 1426 printf (" + %lx", (unsigned long) ELF64_R_TYPE_DATA (inf));
351b4b40 1427
252b5132 1428 putchar ('\n');
2c71103e 1429
aca88567 1430#ifdef BFD64
53c7db4b 1431 if (! is_32bit_elf && elf_header.e_machine == EM_MIPS)
2c71103e 1432 {
91d6fa6a
NC
1433 bfd_vma type2 = ELF64_MIPS_R_TYPE2 (inf);
1434 bfd_vma type3 = ELF64_MIPS_R_TYPE3 (inf);
2cf0635d
NC
1435 const char * rtype2 = elf_mips_reloc_type (type2);
1436 const char * rtype3 = elf_mips_reloc_type (type3);
aca88567 1437
2c71103e
NC
1438 printf (" Type2: ");
1439
1440 if (rtype2 == NULL)
39dbeff8
AM
1441 printf (_("unrecognized: %-7lx"),
1442 (unsigned long) type2 & 0xffffffff);
2c71103e
NC
1443 else
1444 printf ("%-17.17s", rtype2);
1445
18bd398b 1446 printf ("\n Type3: ");
2c71103e
NC
1447
1448 if (rtype3 == NULL)
39dbeff8
AM
1449 printf (_("unrecognized: %-7lx"),
1450 (unsigned long) type3 & 0xffffffff);
2c71103e
NC
1451 else
1452 printf ("%-17.17s", rtype3);
1453
53c7db4b 1454 putchar ('\n');
2c71103e 1455 }
aca88567 1456#endif /* BFD64 */
252b5132
RH
1457 }
1458
c8286bd1 1459 free (rels);
252b5132
RH
1460}
1461
1462static const char *
d3ba0551 1463get_mips_dynamic_type (unsigned long type)
252b5132
RH
1464{
1465 switch (type)
1466 {
1467 case DT_MIPS_RLD_VERSION: return "MIPS_RLD_VERSION";
1468 case DT_MIPS_TIME_STAMP: return "MIPS_TIME_STAMP";
1469 case DT_MIPS_ICHECKSUM: return "MIPS_ICHECKSUM";
1470 case DT_MIPS_IVERSION: return "MIPS_IVERSION";
1471 case DT_MIPS_FLAGS: return "MIPS_FLAGS";
1472 case DT_MIPS_BASE_ADDRESS: return "MIPS_BASE_ADDRESS";
1473 case DT_MIPS_MSYM: return "MIPS_MSYM";
1474 case DT_MIPS_CONFLICT: return "MIPS_CONFLICT";
1475 case DT_MIPS_LIBLIST: return "MIPS_LIBLIST";
1476 case DT_MIPS_LOCAL_GOTNO: return "MIPS_LOCAL_GOTNO";
1477 case DT_MIPS_CONFLICTNO: return "MIPS_CONFLICTNO";
1478 case DT_MIPS_LIBLISTNO: return "MIPS_LIBLISTNO";
1479 case DT_MIPS_SYMTABNO: return "MIPS_SYMTABNO";
1480 case DT_MIPS_UNREFEXTNO: return "MIPS_UNREFEXTNO";
1481 case DT_MIPS_GOTSYM: return "MIPS_GOTSYM";
1482 case DT_MIPS_HIPAGENO: return "MIPS_HIPAGENO";
1483 case DT_MIPS_RLD_MAP: return "MIPS_RLD_MAP";
1484 case DT_MIPS_DELTA_CLASS: return "MIPS_DELTA_CLASS";
1485 case DT_MIPS_DELTA_CLASS_NO: return "MIPS_DELTA_CLASS_NO";
1486 case DT_MIPS_DELTA_INSTANCE: return "MIPS_DELTA_INSTANCE";
1487 case DT_MIPS_DELTA_INSTANCE_NO: return "MIPS_DELTA_INSTANCE_NO";
1488 case DT_MIPS_DELTA_RELOC: return "MIPS_DELTA_RELOC";
1489 case DT_MIPS_DELTA_RELOC_NO: return "MIPS_DELTA_RELOC_NO";
1490 case DT_MIPS_DELTA_SYM: return "MIPS_DELTA_SYM";
1491 case DT_MIPS_DELTA_SYM_NO: return "MIPS_DELTA_SYM_NO";
1492 case DT_MIPS_DELTA_CLASSSYM: return "MIPS_DELTA_CLASSSYM";
1493 case DT_MIPS_DELTA_CLASSSYM_NO: return "MIPS_DELTA_CLASSSYM_NO";
1494 case DT_MIPS_CXX_FLAGS: return "MIPS_CXX_FLAGS";
1495 case DT_MIPS_PIXIE_INIT: return "MIPS_PIXIE_INIT";
1496 case DT_MIPS_SYMBOL_LIB: return "MIPS_SYMBOL_LIB";
1497 case DT_MIPS_LOCALPAGE_GOTIDX: return "MIPS_LOCALPAGE_GOTIDX";
1498 case DT_MIPS_LOCAL_GOTIDX: return "MIPS_LOCAL_GOTIDX";
1499 case DT_MIPS_HIDDEN_GOTIDX: return "MIPS_HIDDEN_GOTIDX";
1500 case DT_MIPS_PROTECTED_GOTIDX: return "MIPS_PROTECTED_GOTIDX";
1501 case DT_MIPS_OPTIONS: return "MIPS_OPTIONS";
1502 case DT_MIPS_INTERFACE: return "MIPS_INTERFACE";
1503 case DT_MIPS_DYNSTR_ALIGN: return "MIPS_DYNSTR_ALIGN";
1504 case DT_MIPS_INTERFACE_SIZE: return "MIPS_INTERFACE_SIZE";
1505 case DT_MIPS_RLD_TEXT_RESOLVE_ADDR: return "MIPS_RLD_TEXT_RESOLVE_ADDR";
1506 case DT_MIPS_PERF_SUFFIX: return "MIPS_PERF_SUFFIX";
1507 case DT_MIPS_COMPACT_SIZE: return "MIPS_COMPACT_SIZE";
1508 case DT_MIPS_GP_VALUE: return "MIPS_GP_VALUE";
1509 case DT_MIPS_AUX_DYNAMIC: return "MIPS_AUX_DYNAMIC";
861fb55a
DJ
1510 case DT_MIPS_PLTGOT: return "MIPS_PLTGOT";
1511 case DT_MIPS_RWPLT: return "MIPS_RWPLT";
252b5132
RH
1512 default:
1513 return NULL;
1514 }
1515}
1516
9a097730 1517static const char *
d3ba0551 1518get_sparc64_dynamic_type (unsigned long type)
9a097730
RH
1519{
1520 switch (type)
1521 {
1522 case DT_SPARC_REGISTER: return "SPARC_REGISTER";
1523 default:
1524 return NULL;
1525 }
103f02d3
UD
1526}
1527
7490d522
AM
1528static const char *
1529get_ppc_dynamic_type (unsigned long type)
1530{
1531 switch (type)
1532 {
a7f2871e
AM
1533 case DT_PPC_GOT: return "PPC_GOT";
1534 case DT_PPC_TLSOPT: return "PPC_TLSOPT";
7490d522
AM
1535 default:
1536 return NULL;
1537 }
1538}
1539
f1cb7e17 1540static const char *
d3ba0551 1541get_ppc64_dynamic_type (unsigned long type)
f1cb7e17
AM
1542{
1543 switch (type)
1544 {
a7f2871e
AM
1545 case DT_PPC64_GLINK: return "PPC64_GLINK";
1546 case DT_PPC64_OPD: return "PPC64_OPD";
1547 case DT_PPC64_OPDSZ: return "PPC64_OPDSZ";
1548 case DT_PPC64_TLSOPT: return "PPC64_TLSOPT";
f1cb7e17
AM
1549 default:
1550 return NULL;
1551 }
1552}
1553
103f02d3 1554static const char *
d3ba0551 1555get_parisc_dynamic_type (unsigned long type)
103f02d3
UD
1556{
1557 switch (type)
1558 {
1559 case DT_HP_LOAD_MAP: return "HP_LOAD_MAP";
1560 case DT_HP_DLD_FLAGS: return "HP_DLD_FLAGS";
1561 case DT_HP_DLD_HOOK: return "HP_DLD_HOOK";
1562 case DT_HP_UX10_INIT: return "HP_UX10_INIT";
1563 case DT_HP_UX10_INITSZ: return "HP_UX10_INITSZ";
1564 case DT_HP_PREINIT: return "HP_PREINIT";
1565 case DT_HP_PREINITSZ: return "HP_PREINITSZ";
1566 case DT_HP_NEEDED: return "HP_NEEDED";
1567 case DT_HP_TIME_STAMP: return "HP_TIME_STAMP";
1568 case DT_HP_CHECKSUM: return "HP_CHECKSUM";
1569 case DT_HP_GST_SIZE: return "HP_GST_SIZE";
1570 case DT_HP_GST_VERSION: return "HP_GST_VERSION";
1571 case DT_HP_GST_HASHVAL: return "HP_GST_HASHVAL";
eec8f817
DA
1572 case DT_HP_EPLTREL: return "HP_GST_EPLTREL";
1573 case DT_HP_EPLTRELSZ: return "HP_GST_EPLTRELSZ";
1574 case DT_HP_FILTERED: return "HP_FILTERED";
1575 case DT_HP_FILTER_TLS: return "HP_FILTER_TLS";
1576 case DT_HP_COMPAT_FILTERED: return "HP_COMPAT_FILTERED";
1577 case DT_HP_LAZYLOAD: return "HP_LAZYLOAD";
1578 case DT_HP_BIND_NOW_COUNT: return "HP_BIND_NOW_COUNT";
1579 case DT_PLT: return "PLT";
1580 case DT_PLT_SIZE: return "PLT_SIZE";
1581 case DT_DLT: return "DLT";
1582 case DT_DLT_SIZE: return "DLT_SIZE";
103f02d3
UD
1583 default:
1584 return NULL;
1585 }
1586}
9a097730 1587
ecc51f48 1588static const char *
d3ba0551 1589get_ia64_dynamic_type (unsigned long type)
ecc51f48
NC
1590{
1591 switch (type)
1592 {
148b93f2
NC
1593 case DT_IA_64_PLT_RESERVE: return "IA_64_PLT_RESERVE";
1594 case DT_IA_64_VMS_SUBTYPE: return "VMS_SUBTYPE";
1595 case DT_IA_64_VMS_IMGIOCNT: return "VMS_IMGIOCNT";
1596 case DT_IA_64_VMS_LNKFLAGS: return "VMS_LNKFLAGS";
1597 case DT_IA_64_VMS_VIR_MEM_BLK_SIZ: return "VMS_VIR_MEM_BLK_SIZ";
1598 case DT_IA_64_VMS_IDENT: return "VMS_IDENT";
1599 case DT_IA_64_VMS_NEEDED_IDENT: return "VMS_NEEDED_IDENT";
1600 case DT_IA_64_VMS_IMG_RELA_CNT: return "VMS_IMG_RELA_CNT";
1601 case DT_IA_64_VMS_SEG_RELA_CNT: return "VMS_SEG_RELA_CNT";
1602 case DT_IA_64_VMS_FIXUP_RELA_CNT: return "VMS_FIXUP_RELA_CNT";
1603 case DT_IA_64_VMS_FIXUP_NEEDED: return "VMS_FIXUP_NEEDED";
1604 case DT_IA_64_VMS_SYMVEC_CNT: return "VMS_SYMVEC_CNT";
1605 case DT_IA_64_VMS_XLATED: return "VMS_XLATED";
1606 case DT_IA_64_VMS_STACKSIZE: return "VMS_STACKSIZE";
1607 case DT_IA_64_VMS_UNWINDSZ: return "VMS_UNWINDSZ";
1608 case DT_IA_64_VMS_UNWIND_CODSEG: return "VMS_UNWIND_CODSEG";
1609 case DT_IA_64_VMS_UNWIND_INFOSEG: return "VMS_UNWIND_INFOSEG";
1610 case DT_IA_64_VMS_LINKTIME: return "VMS_LINKTIME";
1611 case DT_IA_64_VMS_SEG_NO: return "VMS_SEG_NO";
1612 case DT_IA_64_VMS_SYMVEC_OFFSET: return "VMS_SYMVEC_OFFSET";
1613 case DT_IA_64_VMS_SYMVEC_SEG: return "VMS_SYMVEC_SEG";
1614 case DT_IA_64_VMS_UNWIND_OFFSET: return "VMS_UNWIND_OFFSET";
1615 case DT_IA_64_VMS_UNWIND_SEG: return "VMS_UNWIND_SEG";
1616 case DT_IA_64_VMS_STRTAB_OFFSET: return "VMS_STRTAB_OFFSET";
1617 case DT_IA_64_VMS_SYSVER_OFFSET: return "VMS_SYSVER_OFFSET";
1618 case DT_IA_64_VMS_IMG_RELA_OFF: return "VMS_IMG_RELA_OFF";
1619 case DT_IA_64_VMS_SEG_RELA_OFF: return "VMS_SEG_RELA_OFF";
1620 case DT_IA_64_VMS_FIXUP_RELA_OFF: return "VMS_FIXUP_RELA_OFF";
1621 case DT_IA_64_VMS_PLTGOT_OFFSET: return "VMS_PLTGOT_OFFSET";
1622 case DT_IA_64_VMS_PLTGOT_SEG: return "VMS_PLTGOT_SEG";
1623 case DT_IA_64_VMS_FPMODE: return "VMS_FPMODE";
ecc51f48
NC
1624 default:
1625 return NULL;
1626 }
1627}
1628
fabcb361
RH
1629static const char *
1630get_alpha_dynamic_type (unsigned long type)
1631{
1632 switch (type)
1633 {
1634 case DT_ALPHA_PLTRO: return "ALPHA_PLTRO";
1635 default:
1636 return NULL;
1637 }
1638}
1639
1c0d3aa6
NC
1640static const char *
1641get_score_dynamic_type (unsigned long type)
1642{
1643 switch (type)
1644 {
1645 case DT_SCORE_BASE_ADDRESS: return "SCORE_BASE_ADDRESS";
1646 case DT_SCORE_LOCAL_GOTNO: return "SCORE_LOCAL_GOTNO";
1647 case DT_SCORE_SYMTABNO: return "SCORE_SYMTABNO";
1648 case DT_SCORE_GOTSYM: return "SCORE_GOTSYM";
1649 case DT_SCORE_UNREFEXTNO: return "SCORE_UNREFEXTNO";
1650 case DT_SCORE_HIPAGENO: return "SCORE_HIPAGENO";
1651 default:
1652 return NULL;
1653 }
1654}
1655
40b36596
JM
1656static const char *
1657get_tic6x_dynamic_type (unsigned long type)
1658{
1659 switch (type)
1660 {
1661 case DT_C6000_GSYM_OFFSET: return "C6000_GSYM_OFFSET";
1662 case DT_C6000_GSTR_OFFSET: return "C6000_GSTR_OFFSET";
1663 case DT_C6000_DSBT_BASE: return "C6000_DSBT_BASE";
1664 case DT_C6000_DSBT_SIZE: return "C6000_DSBT_SIZE";
1665 case DT_C6000_PREEMPTMAP: return "C6000_PREEMPTMAP";
1666 case DT_C6000_DSBT_INDEX: return "C6000_DSBT_INDEX";
1667 default:
1668 return NULL;
1669 }
1670}
1c0d3aa6 1671
252b5132 1672static const char *
d3ba0551 1673get_dynamic_type (unsigned long type)
252b5132 1674{
e9e44622 1675 static char buff[64];
252b5132
RH
1676
1677 switch (type)
1678 {
1679 case DT_NULL: return "NULL";
1680 case DT_NEEDED: return "NEEDED";
1681 case DT_PLTRELSZ: return "PLTRELSZ";
1682 case DT_PLTGOT: return "PLTGOT";
1683 case DT_HASH: return "HASH";
1684 case DT_STRTAB: return "STRTAB";
1685 case DT_SYMTAB: return "SYMTAB";
1686 case DT_RELA: return "RELA";
1687 case DT_RELASZ: return "RELASZ";
1688 case DT_RELAENT: return "RELAENT";
1689 case DT_STRSZ: return "STRSZ";
1690 case DT_SYMENT: return "SYMENT";
1691 case DT_INIT: return "INIT";
1692 case DT_FINI: return "FINI";
1693 case DT_SONAME: return "SONAME";
1694 case DT_RPATH: return "RPATH";
1695 case DT_SYMBOLIC: return "SYMBOLIC";
1696 case DT_REL: return "REL";
1697 case DT_RELSZ: return "RELSZ";
1698 case DT_RELENT: return "RELENT";
1699 case DT_PLTREL: return "PLTREL";
1700 case DT_DEBUG: return "DEBUG";
1701 case DT_TEXTREL: return "TEXTREL";
1702 case DT_JMPREL: return "JMPREL";
1703 case DT_BIND_NOW: return "BIND_NOW";
1704 case DT_INIT_ARRAY: return "INIT_ARRAY";
1705 case DT_FINI_ARRAY: return "FINI_ARRAY";
1706 case DT_INIT_ARRAYSZ: return "INIT_ARRAYSZ";
1707 case DT_FINI_ARRAYSZ: return "FINI_ARRAYSZ";
d1133906
NC
1708 case DT_RUNPATH: return "RUNPATH";
1709 case DT_FLAGS: return "FLAGS";
2d0e6f43 1710
d1133906
NC
1711 case DT_PREINIT_ARRAY: return "PREINIT_ARRAY";
1712 case DT_PREINIT_ARRAYSZ: return "PREINIT_ARRAYSZ";
103f02d3 1713
05107a46 1714 case DT_CHECKSUM: return "CHECKSUM";
252b5132
RH
1715 case DT_PLTPADSZ: return "PLTPADSZ";
1716 case DT_MOVEENT: return "MOVEENT";
1717 case DT_MOVESZ: return "MOVESZ";
dcefbbbd 1718 case DT_FEATURE: return "FEATURE";
252b5132
RH
1719 case DT_POSFLAG_1: return "POSFLAG_1";
1720 case DT_SYMINSZ: return "SYMINSZ";
1721 case DT_SYMINENT: return "SYMINENT"; /* aka VALRNGHI */
103f02d3 1722
252b5132 1723 case DT_ADDRRNGLO: return "ADDRRNGLO";
dcefbbbd
L
1724 case DT_CONFIG: return "CONFIG";
1725 case DT_DEPAUDIT: return "DEPAUDIT";
1726 case DT_AUDIT: return "AUDIT";
1727 case DT_PLTPAD: return "PLTPAD";
1728 case DT_MOVETAB: return "MOVETAB";
252b5132 1729 case DT_SYMINFO: return "SYMINFO"; /* aka ADDRRNGHI */
103f02d3 1730
252b5132 1731 case DT_VERSYM: return "VERSYM";
103f02d3 1732
67a4f2b7
AO
1733 case DT_TLSDESC_GOT: return "TLSDESC_GOT";
1734 case DT_TLSDESC_PLT: return "TLSDESC_PLT";
252b5132
RH
1735 case DT_RELACOUNT: return "RELACOUNT";
1736 case DT_RELCOUNT: return "RELCOUNT";
1737 case DT_FLAGS_1: return "FLAGS_1";
1738 case DT_VERDEF: return "VERDEF";
1739 case DT_VERDEFNUM: return "VERDEFNUM";
1740 case DT_VERNEED: return "VERNEED";
1741 case DT_VERNEEDNUM: return "VERNEEDNUM";
103f02d3 1742
019148e4 1743 case DT_AUXILIARY: return "AUXILIARY";
252b5132
RH
1744 case DT_USED: return "USED";
1745 case DT_FILTER: return "FILTER";
103f02d3 1746
047b2264
JJ
1747 case DT_GNU_PRELINKED: return "GNU_PRELINKED";
1748 case DT_GNU_CONFLICT: return "GNU_CONFLICT";
1749 case DT_GNU_CONFLICTSZ: return "GNU_CONFLICTSZ";
1750 case DT_GNU_LIBLIST: return "GNU_LIBLIST";
1751 case DT_GNU_LIBLISTSZ: return "GNU_LIBLISTSZ";
fdc90cb4 1752 case DT_GNU_HASH: return "GNU_HASH";
047b2264 1753
252b5132
RH
1754 default:
1755 if ((type >= DT_LOPROC) && (type <= DT_HIPROC))
1756 {
2cf0635d 1757 const char * result;
103f02d3 1758
252b5132
RH
1759 switch (elf_header.e_machine)
1760 {
1761 case EM_MIPS:
4fe85591 1762 case EM_MIPS_RS3_LE:
252b5132
RH
1763 result = get_mips_dynamic_type (type);
1764 break;
9a097730
RH
1765 case EM_SPARCV9:
1766 result = get_sparc64_dynamic_type (type);
1767 break;
7490d522
AM
1768 case EM_PPC:
1769 result = get_ppc_dynamic_type (type);
1770 break;
f1cb7e17
AM
1771 case EM_PPC64:
1772 result = get_ppc64_dynamic_type (type);
1773 break;
ecc51f48
NC
1774 case EM_IA_64:
1775 result = get_ia64_dynamic_type (type);
1776 break;
fabcb361
RH
1777 case EM_ALPHA:
1778 result = get_alpha_dynamic_type (type);
1779 break;
1c0d3aa6
NC
1780 case EM_SCORE:
1781 result = get_score_dynamic_type (type);
1782 break;
40b36596
JM
1783 case EM_TI_C6000:
1784 result = get_tic6x_dynamic_type (type);
1785 break;
252b5132
RH
1786 default:
1787 result = NULL;
1788 break;
1789 }
1790
1791 if (result != NULL)
1792 return result;
1793
e9e44622 1794 snprintf (buff, sizeof (buff), _("Processor Specific: %lx"), type);
252b5132 1795 }
eec8f817
DA
1796 else if (((type >= DT_LOOS) && (type <= DT_HIOS))
1797 || (elf_header.e_machine == EM_PARISC
1798 && (type >= OLD_DT_LOOS) && (type <= OLD_DT_HIOS)))
103f02d3 1799 {
2cf0635d 1800 const char * result;
103f02d3
UD
1801
1802 switch (elf_header.e_machine)
1803 {
1804 case EM_PARISC:
1805 result = get_parisc_dynamic_type (type);
1806 break;
148b93f2
NC
1807 case EM_IA_64:
1808 result = get_ia64_dynamic_type (type);
1809 break;
103f02d3
UD
1810 default:
1811 result = NULL;
1812 break;
1813 }
1814
1815 if (result != NULL)
1816 return result;
1817
e9e44622
JJ
1818 snprintf (buff, sizeof (buff), _("Operating System specific: %lx"),
1819 type);
103f02d3 1820 }
252b5132 1821 else
e9e44622 1822 snprintf (buff, sizeof (buff), _("<unknown>: %lx"), type);
103f02d3 1823
252b5132
RH
1824 return buff;
1825 }
1826}
1827
1828static char *
d3ba0551 1829get_file_type (unsigned e_type)
252b5132 1830{
b34976b6 1831 static char buff[32];
252b5132
RH
1832
1833 switch (e_type)
1834 {
1835 case ET_NONE: return _("NONE (None)");
1836 case ET_REL: return _("REL (Relocatable file)");
ba2685cc
AM
1837 case ET_EXEC: return _("EXEC (Executable file)");
1838 case ET_DYN: return _("DYN (Shared object file)");
1839 case ET_CORE: return _("CORE (Core file)");
252b5132
RH
1840
1841 default:
1842 if ((e_type >= ET_LOPROC) && (e_type <= ET_HIPROC))
e9e44622 1843 snprintf (buff, sizeof (buff), _("Processor Specific: (%x)"), e_type);
252b5132 1844 else if ((e_type >= ET_LOOS) && (e_type <= ET_HIOS))
e9e44622 1845 snprintf (buff, sizeof (buff), _("OS Specific: (%x)"), e_type);
252b5132 1846 else
e9e44622 1847 snprintf (buff, sizeof (buff), _("<unknown>: %x"), e_type);
252b5132
RH
1848 return buff;
1849 }
1850}
1851
1852static char *
d3ba0551 1853get_machine_name (unsigned e_machine)
252b5132 1854{
b34976b6 1855 static char buff[64]; /* XXX */
252b5132
RH
1856
1857 switch (e_machine)
1858 {
c45021f2
NC
1859 case EM_NONE: return _("None");
1860 case EM_M32: return "WE32100";
1861 case EM_SPARC: return "Sparc";
e9f53129 1862 case EM_SPU: return "SPU";
c45021f2
NC
1863 case EM_386: return "Intel 80386";
1864 case EM_68K: return "MC68000";
1865 case EM_88K: return "MC88000";
1866 case EM_486: return "Intel 80486";
1867 case EM_860: return "Intel 80860";
1868 case EM_MIPS: return "MIPS R3000";
1869 case EM_S370: return "IBM System/370";
7036c0e1 1870 case EM_MIPS_RS3_LE: return "MIPS R4000 big-endian";
252b5132 1871 case EM_OLD_SPARCV9: return "Sparc v9 (old)";
c45021f2 1872 case EM_PARISC: return "HPPA";
252b5132 1873 case EM_PPC_OLD: return "Power PC (old)";
7036c0e1 1874 case EM_SPARC32PLUS: return "Sparc v8+" ;
c45021f2
NC
1875 case EM_960: return "Intel 90860";
1876 case EM_PPC: return "PowerPC";
285d1771 1877 case EM_PPC64: return "PowerPC64";
c45021f2
NC
1878 case EM_V800: return "NEC V800";
1879 case EM_FR20: return "Fujitsu FR20";
1880 case EM_RH32: return "TRW RH32";
b34976b6 1881 case EM_MCORE: return "MCORE";
7036c0e1
AJ
1882 case EM_ARM: return "ARM";
1883 case EM_OLD_ALPHA: return "Digital Alpha (old)";
ef230218 1884 case EM_SH: return "Renesas / SuperH SH";
c45021f2
NC
1885 case EM_SPARCV9: return "Sparc v9";
1886 case EM_TRICORE: return "Siemens Tricore";
584da044 1887 case EM_ARC: return "ARC";
c2dcd04e
NC
1888 case EM_H8_300: return "Renesas H8/300";
1889 case EM_H8_300H: return "Renesas H8/300H";
1890 case EM_H8S: return "Renesas H8S";
1891 case EM_H8_500: return "Renesas H8/500";
30800947 1892 case EM_IA_64: return "Intel IA-64";
252b5132
RH
1893 case EM_MIPS_X: return "Stanford MIPS-X";
1894 case EM_COLDFIRE: return "Motorola Coldfire";
1895 case EM_68HC12: return "Motorola M68HC12";
c45021f2 1896 case EM_ALPHA: return "Alpha";
2b0337b0
AO
1897 case EM_CYGNUS_D10V:
1898 case EM_D10V: return "d10v";
1899 case EM_CYGNUS_D30V:
b34976b6 1900 case EM_D30V: return "d30v";
2b0337b0 1901 case EM_CYGNUS_M32R:
26597c86 1902 case EM_M32R: return "Renesas M32R (formerly Mitsubishi M32r)";
2b0337b0
AO
1903 case EM_CYGNUS_V850:
1904 case EM_V850: return "NEC v850";
1905 case EM_CYGNUS_MN10300:
1906 case EM_MN10300: return "mn10300";
1907 case EM_CYGNUS_MN10200:
1908 case EM_MN10200: return "mn10200";
1909 case EM_CYGNUS_FR30:
1910 case EM_FR30: return "Fujitsu FR30";
b34976b6 1911 case EM_CYGNUS_FRV: return "Fujitsu FR-V";
2b0337b0 1912 case EM_PJ_OLD:
b34976b6 1913 case EM_PJ: return "picoJava";
7036c0e1
AJ
1914 case EM_MMA: return "Fujitsu Multimedia Accelerator";
1915 case EM_PCP: return "Siemens PCP";
1916 case EM_NCPU: return "Sony nCPU embedded RISC processor";
1917 case EM_NDR1: return "Denso NDR1 microprocesspr";
1918 case EM_STARCORE: return "Motorola Star*Core processor";
1919 case EM_ME16: return "Toyota ME16 processor";
1920 case EM_ST100: return "STMicroelectronics ST100 processor";
1921 case EM_TINYJ: return "Advanced Logic Corp. TinyJ embedded processor";
11636f9e
JM
1922 case EM_PDSP: return "Sony DSP processor";
1923 case EM_PDP10: return "Digital Equipment Corp. PDP-10";
1924 case EM_PDP11: return "Digital Equipment Corp. PDP-11";
7036c0e1
AJ
1925 case EM_FX66: return "Siemens FX66 microcontroller";
1926 case EM_ST9PLUS: return "STMicroelectronics ST9+ 8/16 bit microcontroller";
1927 case EM_ST7: return "STMicroelectronics ST7 8-bit microcontroller";
1928 case EM_68HC16: return "Motorola MC68HC16 Microcontroller";
1929 case EM_68HC11: return "Motorola MC68HC11 Microcontroller";
1930 case EM_68HC08: return "Motorola MC68HC08 Microcontroller";
1931 case EM_68HC05: return "Motorola MC68HC05 Microcontroller";
1932 case EM_SVX: return "Silicon Graphics SVx";
1933 case EM_ST19: return "STMicroelectronics ST19 8-bit microcontroller";
1934 case EM_VAX: return "Digital VAX";
2b0337b0 1935 case EM_AVR_OLD:
b34976b6 1936 case EM_AVR: return "Atmel AVR 8-bit microcontroller";
1b61cf92 1937 case EM_CRIS: return "Axis Communications 32-bit embedded processor";
c45021f2
NC
1938 case EM_JAVELIN: return "Infineon Technologies 32-bit embedded cpu";
1939 case EM_FIREPATH: return "Element 14 64-bit DSP processor";
1940 case EM_ZSP: return "LSI Logic's 16-bit DSP processor";
b34976b6 1941 case EM_MMIX: return "Donald Knuth's educational 64-bit processor";
c45021f2 1942 case EM_HUANY: return "Harvard Universitys's machine-independent object format";
3b36097d 1943 case EM_PRISM: return "Vitesse Prism";
bcedfee6 1944 case EM_X86_64: return "Advanced Micro Devices X86-64";
8a9036a4 1945 case EM_L1OM: return "Intel L1OM";
b7498e0e 1946 case EM_S390_OLD:
b34976b6 1947 case EM_S390: return "IBM S/390";
1c0d3aa6 1948 case EM_SCORE: return "SUNPLUS S+Core";
93fbbb04 1949 case EM_XSTORMY16: return "Sanyo Xstormy16 CPU core";
3b16e843
NC
1950 case EM_OPENRISC:
1951 case EM_OR32: return "OpenRISC";
11636f9e 1952 case EM_ARC_A5: return "ARC International ARCompact processor";
1fe1f39c 1953 case EM_CRX: return "National Semiconductor CRX microprocessor";
d172d4ba 1954 case EM_DLX: return "OpenDLX";
1e4cf259 1955 case EM_IP2K_OLD:
b34976b6 1956 case EM_IP2K: return "Ubicom IP2xxx 8-bit microcontrollers";
3b36097d 1957 case EM_IQ2000: return "Vitesse IQ2000";
88da6820
NC
1958 case EM_XTENSA_OLD:
1959 case EM_XTENSA: return "Tensilica Xtensa Processor";
11636f9e
JM
1960 case EM_VIDEOCORE: return "Alphamosaic VideoCore processor";
1961 case EM_TMM_GPP: return "Thompson Multimedia General Purpose Processor";
1962 case EM_NS32K: return "National Semiconductor 32000 series";
1963 case EM_TPC: return "Tenor Network TPC processor";
1964 case EM_ST200: return "STMicroelectronics ST200 microcontroller";
1965 case EM_MAX: return "MAX Processor";
1966 case EM_CR: return "National Semiconductor CompactRISC";
1967 case EM_F2MC16: return "Fujitsu F2MC16";
1968 case EM_MSP430: return "Texas Instruments msp430 microcontroller";
84e94c90 1969 case EM_LATTICEMICO32: return "Lattice Mico32";
ff7eeb89 1970 case EM_M32C_OLD:
49f58d10 1971 case EM_M32C: return "Renesas M32c";
d031aafb 1972 case EM_MT: return "Morpho Techologies MT processor";
7bbe5bc5 1973 case EM_BLACKFIN: return "Analog Devices Blackfin";
11636f9e
JM
1974 case EM_SE_C33: return "S1C33 Family of Seiko Epson processors";
1975 case EM_SEP: return "Sharp embedded microprocessor";
1976 case EM_ARCA: return "Arca RISC microprocessor";
1977 case EM_UNICORE: return "Unicore";
1978 case EM_EXCESS: return "eXcess 16/32/64-bit configurable embedded CPU";
1979 case EM_DXP: return "Icera Semiconductor Inc. Deep Execution Processor";
64fd6348
NC
1980 case EM_NIOS32: return "Altera Nios";
1981 case EM_ALTERA_NIOS2: return "Altera Nios II";
c29aca4a 1982 case EM_C166:
d70c5fc7 1983 case EM_XC16X: return "Infineon Technologies xc16x";
11636f9e
JM
1984 case EM_M16C: return "Renesas M16C series microprocessors";
1985 case EM_DSPIC30F: return "Microchip Technology dsPIC30F Digital Signal Controller";
1986 case EM_CE: return "Freescale Communication Engine RISC core";
1987 case EM_TSK3000: return "Altium TSK3000 core";
1988 case EM_RS08: return "Freescale RS08 embedded processor";
1989 case EM_ECOG2: return "Cyan Technology eCOG2 microprocessor";
1990 case EM_DSP24: return "New Japan Radio (NJR) 24-bit DSP Processor";
1991 case EM_VIDEOCORE3: return "Broadcom VideoCore III processor";
1992 case EM_SE_C17: return "Seiko Epson C17 family";
1993 case EM_TI_C6000: return "Texas Instruments TMS320C6000 DSP family";
1994 case EM_TI_C2000: return "Texas Instruments TMS320C2000 DSP family";
1995 case EM_TI_C5500: return "Texas Instruments TMS320C55x DSP family";
1996 case EM_MMDSP_PLUS: return "STMicroelectronics 64bit VLIW Data Signal Processor";
1997 case EM_CYPRESS_M8C: return "Cypress M8C microprocessor";
1998 case EM_R32C: return "Renesas R32C series microprocessors";
1999 case EM_TRIMEDIA: return "NXP Semiconductors TriMedia architecture family";
2000 case EM_QDSP6: return "QUALCOMM DSP6 Processor";
2001 case EM_8051: return "Intel 8051 and variants";
2002 case EM_STXP7X: return "STMicroelectronics STxP7x family";
2003 case EM_NDS32: return "Andes Technology compact code size embedded RISC processor family";
2004 case EM_ECOG1X: return "Cyan Technology eCOG1X family";
2005 case EM_MAXQ30: return "Dallas Semiconductor MAXQ30 Core microcontrollers";
2006 case EM_XIMO16: return "New Japan Radio (NJR) 16-bit DSP Processor";
2007 case EM_MANIK: return "M2000 Reconfigurable RISC Microprocessor";
2008 case EM_CRAYNV2: return "Cray Inc. NV2 vector architecture";
15ab5209 2009 case EM_CYGNUS_MEP: return "Toshiba MeP Media Engine";
cb8f3167 2010 case EM_CR16:
6c03b1ed 2011 case EM_CR16_OLD: return "National Semiconductor's CR16";
7ba29e2a
NC
2012 case EM_MICROBLAZE: return "Xilinx MicroBlaze";
2013 case EM_MICROBLAZE_OLD: return "Xilinx MicroBlaze";
c7927a3c 2014 case EM_RX: return "Renesas RX";
11636f9e
JM
2015 case EM_METAG: return "Imagination Technologies META processor architecture";
2016 case EM_MCST_ELBRUS: return "MCST Elbrus general purpose hardware architecture";
2017 case EM_ECOG16: return "Cyan Technology eCOG16 family";
2018 case EM_ETPU: return "Freescale Extended Time Processing Unit";
2019 case EM_SLE9X: return "Infineon Technologies SLE9X core";
2020 case EM_AVR32: return "Atmel Corporation 32-bit microprocessor family";
2021 case EM_STM8: return "STMicroeletronics STM8 8-bit microcontroller";
2022 case EM_TILE64: return "Tilera TILE64 multicore architecture family";
2023 case EM_TILEPRO: return "Tilera TILEPro multicore architecture family";
2024 case EM_CUDA: return "NVIDIA CUDA architecture";
252b5132 2025 default:
35d9dd2f 2026 snprintf (buff, sizeof (buff), _("<unknown>: 0x%x"), e_machine);
252b5132
RH
2027 return buff;
2028 }
2029}
2030
f3485b74 2031static void
d3ba0551 2032decode_ARM_machine_flags (unsigned e_flags, char buf[])
f3485b74
NC
2033{
2034 unsigned eabi;
2035 int unknown = 0;
2036
2037 eabi = EF_ARM_EABI_VERSION (e_flags);
2038 e_flags &= ~ EF_ARM_EABIMASK;
2039
2040 /* Handle "generic" ARM flags. */
2041 if (e_flags & EF_ARM_RELEXEC)
2042 {
2043 strcat (buf, ", relocatable executable");
2044 e_flags &= ~ EF_ARM_RELEXEC;
2045 }
76da6bbe 2046
f3485b74
NC
2047 if (e_flags & EF_ARM_HASENTRY)
2048 {
2049 strcat (buf, ", has entry point");
2050 e_flags &= ~ EF_ARM_HASENTRY;
2051 }
76da6bbe 2052
f3485b74
NC
2053 /* Now handle EABI specific flags. */
2054 switch (eabi)
2055 {
2056 default:
2c71103e 2057 strcat (buf, ", <unrecognized EABI>");
f3485b74
NC
2058 if (e_flags)
2059 unknown = 1;
2060 break;
2061
2062 case EF_ARM_EABI_VER1:
a5bcd848 2063 strcat (buf, ", Version1 EABI");
f3485b74
NC
2064 while (e_flags)
2065 {
2066 unsigned flag;
76da6bbe 2067
f3485b74
NC
2068 /* Process flags one bit at a time. */
2069 flag = e_flags & - e_flags;
2070 e_flags &= ~ flag;
76da6bbe 2071
f3485b74
NC
2072 switch (flag)
2073 {
a5bcd848 2074 case EF_ARM_SYMSARESORTED: /* Conflicts with EF_ARM_INTERWORK. */
f3485b74
NC
2075 strcat (buf, ", sorted symbol tables");
2076 break;
76da6bbe 2077
f3485b74
NC
2078 default:
2079 unknown = 1;
2080 break;
2081 }
2082 }
2083 break;
76da6bbe 2084
a5bcd848
PB
2085 case EF_ARM_EABI_VER2:
2086 strcat (buf, ", Version2 EABI");
2087 while (e_flags)
2088 {
2089 unsigned flag;
2090
2091 /* Process flags one bit at a time. */
2092 flag = e_flags & - e_flags;
2093 e_flags &= ~ flag;
2094
2095 switch (flag)
2096 {
2097 case EF_ARM_SYMSARESORTED: /* Conflicts with EF_ARM_INTERWORK. */
2098 strcat (buf, ", sorted symbol tables");
2099 break;
2100
2101 case EF_ARM_DYNSYMSUSESEGIDX:
2102 strcat (buf, ", dynamic symbols use segment index");
2103 break;
2104
2105 case EF_ARM_MAPSYMSFIRST:
2106 strcat (buf, ", mapping symbols precede others");
2107 break;
2108
2109 default:
2110 unknown = 1;
2111 break;
2112 }
2113 }
2114 break;
2115
d507cf36
PB
2116 case EF_ARM_EABI_VER3:
2117 strcat (buf, ", Version3 EABI");
8cb51566
PB
2118 break;
2119
2120 case EF_ARM_EABI_VER4:
2121 strcat (buf, ", Version4 EABI");
3a4a14e9
PB
2122 goto eabi;
2123
2124 case EF_ARM_EABI_VER5:
2125 strcat (buf, ", Version5 EABI");
2126 eabi:
d507cf36
PB
2127 while (e_flags)
2128 {
2129 unsigned flag;
2130
2131 /* Process flags one bit at a time. */
2132 flag = e_flags & - e_flags;
2133 e_flags &= ~ flag;
2134
2135 switch (flag)
2136 {
2137 case EF_ARM_BE8:
2138 strcat (buf, ", BE8");
2139 break;
2140
2141 case EF_ARM_LE8:
2142 strcat (buf, ", LE8");
2143 break;
2144
2145 default:
2146 unknown = 1;
2147 break;
2148 }
2149 }
2150 break;
2151
f3485b74 2152 case EF_ARM_EABI_UNKNOWN:
a5bcd848 2153 strcat (buf, ", GNU EABI");
f3485b74
NC
2154 while (e_flags)
2155 {
2156 unsigned flag;
76da6bbe 2157
f3485b74
NC
2158 /* Process flags one bit at a time. */
2159 flag = e_flags & - e_flags;
2160 e_flags &= ~ flag;
76da6bbe 2161
f3485b74
NC
2162 switch (flag)
2163 {
a5bcd848 2164 case EF_ARM_INTERWORK:
f3485b74
NC
2165 strcat (buf, ", interworking enabled");
2166 break;
76da6bbe 2167
a5bcd848 2168 case EF_ARM_APCS_26:
f3485b74
NC
2169 strcat (buf, ", uses APCS/26");
2170 break;
76da6bbe 2171
a5bcd848 2172 case EF_ARM_APCS_FLOAT:
f3485b74
NC
2173 strcat (buf, ", uses APCS/float");
2174 break;
76da6bbe 2175
a5bcd848 2176 case EF_ARM_PIC:
f3485b74
NC
2177 strcat (buf, ", position independent");
2178 break;
76da6bbe 2179
a5bcd848 2180 case EF_ARM_ALIGN8:
f3485b74
NC
2181 strcat (buf, ", 8 bit structure alignment");
2182 break;
76da6bbe 2183
a5bcd848 2184 case EF_ARM_NEW_ABI:
f3485b74
NC
2185 strcat (buf, ", uses new ABI");
2186 break;
76da6bbe 2187
a5bcd848 2188 case EF_ARM_OLD_ABI:
f3485b74
NC
2189 strcat (buf, ", uses old ABI");
2190 break;
76da6bbe 2191
a5bcd848 2192 case EF_ARM_SOFT_FLOAT:
f3485b74
NC
2193 strcat (buf, ", software FP");
2194 break;
76da6bbe 2195
90e01f86
ILT
2196 case EF_ARM_VFP_FLOAT:
2197 strcat (buf, ", VFP");
2198 break;
2199
fde78edd
NC
2200 case EF_ARM_MAVERICK_FLOAT:
2201 strcat (buf, ", Maverick FP");
2202 break;
2203
f3485b74
NC
2204 default:
2205 unknown = 1;
2206 break;
2207 }
2208 }
2209 }
f3485b74
NC
2210
2211 if (unknown)
2b692964 2212 strcat (buf,_(", <unknown>"));
f3485b74
NC
2213}
2214
252b5132 2215static char *
d3ba0551 2216get_machine_flags (unsigned e_flags, unsigned e_machine)
252b5132 2217{
b34976b6 2218 static char buf[1024];
252b5132
RH
2219
2220 buf[0] = '\0';
76da6bbe 2221
252b5132
RH
2222 if (e_flags)
2223 {
2224 switch (e_machine)
2225 {
2226 default:
2227 break;
2228
f3485b74
NC
2229 case EM_ARM:
2230 decode_ARM_machine_flags (e_flags, buf);
2231 break;
76da6bbe 2232
ec2dfb42
AO
2233 case EM_CYGNUS_FRV:
2234 switch (e_flags & EF_FRV_CPU_MASK)
2235 {
2236 case EF_FRV_CPU_GENERIC:
2237 break;
2238
2239 default:
2240 strcat (buf, ", fr???");
2241 break;
57346661 2242
ec2dfb42
AO
2243 case EF_FRV_CPU_FR300:
2244 strcat (buf, ", fr300");
2245 break;
2246
2247 case EF_FRV_CPU_FR400:
2248 strcat (buf, ", fr400");
2249 break;
2250 case EF_FRV_CPU_FR405:
2251 strcat (buf, ", fr405");
2252 break;
2253
2254 case EF_FRV_CPU_FR450:
2255 strcat (buf, ", fr450");
2256 break;
2257
2258 case EF_FRV_CPU_FR500:
2259 strcat (buf, ", fr500");
2260 break;
2261 case EF_FRV_CPU_FR550:
2262 strcat (buf, ", fr550");
2263 break;
2264
2265 case EF_FRV_CPU_SIMPLE:
2266 strcat (buf, ", simple");
2267 break;
2268 case EF_FRV_CPU_TOMCAT:
2269 strcat (buf, ", tomcat");
2270 break;
2271 }
1c877e87 2272 break;
ec2dfb42 2273
53c7db4b 2274 case EM_68K:
425c6cb0 2275 if ((e_flags & EF_M68K_ARCH_MASK) == EF_M68K_M68000)
76f57f3a 2276 strcat (buf, ", m68000");
425c6cb0 2277 else if ((e_flags & EF_M68K_ARCH_MASK) == EF_M68K_CPU32)
3bdcfdf4
KH
2278 strcat (buf, ", cpu32");
2279 else if ((e_flags & EF_M68K_ARCH_MASK) == EF_M68K_FIDO)
2280 strcat (buf, ", fido_a");
425c6cb0 2281 else
266abb8f 2282 {
2cf0635d
NC
2283 char const * isa = _("unknown");
2284 char const * mac = _("unknown mac");
2285 char const * additional = NULL;
0112cd26 2286
c694fd50 2287 switch (e_flags & EF_M68K_CF_ISA_MASK)
266abb8f 2288 {
c694fd50 2289 case EF_M68K_CF_ISA_A_NODIV:
0b2e31dc
NS
2290 isa = "A";
2291 additional = ", nodiv";
2292 break;
c694fd50 2293 case EF_M68K_CF_ISA_A:
266abb8f
NS
2294 isa = "A";
2295 break;
c694fd50 2296 case EF_M68K_CF_ISA_A_PLUS:
266abb8f
NS
2297 isa = "A+";
2298 break;
c694fd50 2299 case EF_M68K_CF_ISA_B_NOUSP:
0b2e31dc
NS
2300 isa = "B";
2301 additional = ", nousp";
2302 break;
c694fd50 2303 case EF_M68K_CF_ISA_B:
266abb8f
NS
2304 isa = "B";
2305 break;
2306 }
2307 strcat (buf, ", cf, isa ");
2308 strcat (buf, isa);
0b2e31dc
NS
2309 if (additional)
2310 strcat (buf, additional);
c694fd50 2311 if (e_flags & EF_M68K_CF_FLOAT)
0b2e31dc 2312 strcat (buf, ", float");
c694fd50 2313 switch (e_flags & EF_M68K_CF_MAC_MASK)
266abb8f
NS
2314 {
2315 case 0:
2316 mac = NULL;
2317 break;
c694fd50 2318 case EF_M68K_CF_MAC:
266abb8f
NS
2319 mac = "mac";
2320 break;
c694fd50 2321 case EF_M68K_CF_EMAC:
266abb8f
NS
2322 mac = "emac";
2323 break;
2324 }
2325 if (mac)
2326 {
2327 strcat (buf, ", ");
2328 strcat (buf, mac);
2329 }
266abb8f 2330 }
53c7db4b 2331 break;
33c63f9d 2332
252b5132
RH
2333 case EM_PPC:
2334 if (e_flags & EF_PPC_EMB)
2335 strcat (buf, ", emb");
2336
2337 if (e_flags & EF_PPC_RELOCATABLE)
2b692964 2338 strcat (buf, _(", relocatable"));
252b5132
RH
2339
2340 if (e_flags & EF_PPC_RELOCATABLE_LIB)
2b692964 2341 strcat (buf, _(", relocatable-lib"));
252b5132
RH
2342 break;
2343
2b0337b0 2344 case EM_V850:
252b5132
RH
2345 case EM_CYGNUS_V850:
2346 switch (e_flags & EF_V850_ARCH)
2347 {
8ad30312
NC
2348 case E_V850E1_ARCH:
2349 strcat (buf, ", v850e1");
2350 break;
252b5132
RH
2351 case E_V850E_ARCH:
2352 strcat (buf, ", v850e");
2353 break;
252b5132
RH
2354 case E_V850_ARCH:
2355 strcat (buf, ", v850");
2356 break;
2357 default:
2b692964 2358 strcat (buf, _(", unknown v850 architecture variant"));
252b5132
RH
2359 break;
2360 }
2361 break;
2362
2b0337b0 2363 case EM_M32R:
252b5132
RH
2364 case EM_CYGNUS_M32R:
2365 if ((e_flags & EF_M32R_ARCH) == E_M32R_ARCH)
2366 strcat (buf, ", m32r");
252b5132
RH
2367 break;
2368
2369 case EM_MIPS:
4fe85591 2370 case EM_MIPS_RS3_LE:
252b5132
RH
2371 if (e_flags & EF_MIPS_NOREORDER)
2372 strcat (buf, ", noreorder");
2373
2374 if (e_flags & EF_MIPS_PIC)
2375 strcat (buf, ", pic");
2376
2377 if (e_flags & EF_MIPS_CPIC)
2378 strcat (buf, ", cpic");
2379
d1bdd336
TS
2380 if (e_flags & EF_MIPS_UCODE)
2381 strcat (buf, ", ugen_reserved");
2382
252b5132
RH
2383 if (e_flags & EF_MIPS_ABI2)
2384 strcat (buf, ", abi2");
2385
43521d43
TS
2386 if (e_flags & EF_MIPS_OPTIONS_FIRST)
2387 strcat (buf, ", odk first");
2388
a5d22d2a
TS
2389 if (e_flags & EF_MIPS_32BITMODE)
2390 strcat (buf, ", 32bitmode");
2391
156c2f8b
NC
2392 switch ((e_flags & EF_MIPS_MACH))
2393 {
2394 case E_MIPS_MACH_3900: strcat (buf, ", 3900"); break;
2395 case E_MIPS_MACH_4010: strcat (buf, ", 4010"); break;
2396 case E_MIPS_MACH_4100: strcat (buf, ", 4100"); break;
156c2f8b 2397 case E_MIPS_MACH_4111: strcat (buf, ", 4111"); break;
810dfa6e
L
2398 case E_MIPS_MACH_4120: strcat (buf, ", 4120"); break;
2399 case E_MIPS_MACH_4650: strcat (buf, ", 4650"); break;
2400 case E_MIPS_MACH_5400: strcat (buf, ", 5400"); break;
2401 case E_MIPS_MACH_5500: strcat (buf, ", 5500"); break;
c6c98b38 2402 case E_MIPS_MACH_SB1: strcat (buf, ", sb1"); break;
ebcb91b7 2403 case E_MIPS_MACH_9000: strcat (buf, ", 9000"); break;
350cc38d
MS
2404 case E_MIPS_MACH_LS2E: strcat (buf, ", loongson-2e"); break;
2405 case E_MIPS_MACH_LS2F: strcat (buf, ", loongson-2f"); break;
05c6f050 2406 case E_MIPS_MACH_OCTEON: strcat (buf, ", octeon"); break;
67c2a3e8 2407 case E_MIPS_MACH_OCTEON2: strcat (buf, ", octeon2"); break;
52b6b6b9 2408 case E_MIPS_MACH_XLR: strcat (buf, ", xlr"); break;
43521d43
TS
2409 case 0:
2410 /* We simply ignore the field in this case to avoid confusion:
2411 MIPS ELF does not specify EF_MIPS_MACH, it is a GNU
2412 extension. */
2413 break;
2b692964 2414 default: strcat (buf, _(", unknown CPU")); break;
156c2f8b 2415 }
43521d43
TS
2416
2417 switch ((e_flags & EF_MIPS_ABI))
2418 {
2419 case E_MIPS_ABI_O32: strcat (buf, ", o32"); break;
2420 case E_MIPS_ABI_O64: strcat (buf, ", o64"); break;
2421 case E_MIPS_ABI_EABI32: strcat (buf, ", eabi32"); break;
2422 case E_MIPS_ABI_EABI64: strcat (buf, ", eabi64"); break;
2423 case 0:
2424 /* We simply ignore the field in this case to avoid confusion:
2425 MIPS ELF does not specify EF_MIPS_ABI, it is a GNU extension.
2426 This means it is likely to be an o32 file, but not for
2427 sure. */
2428 break;
2b692964 2429 default: strcat (buf, _(", unknown ABI")); break;
43521d43
TS
2430 }
2431
2432 if (e_flags & EF_MIPS_ARCH_ASE_MDMX)
2433 strcat (buf, ", mdmx");
2434
2435 if (e_flags & EF_MIPS_ARCH_ASE_M16)
2436 strcat (buf, ", mips16");
2437
2438 switch ((e_flags & EF_MIPS_ARCH))
2439 {
2440 case E_MIPS_ARCH_1: strcat (buf, ", mips1"); break;
2441 case E_MIPS_ARCH_2: strcat (buf, ", mips2"); break;
2442 case E_MIPS_ARCH_3: strcat (buf, ", mips3"); break;
2443 case E_MIPS_ARCH_4: strcat (buf, ", mips4"); break;
2444 case E_MIPS_ARCH_5: strcat (buf, ", mips5"); break;
2445 case E_MIPS_ARCH_32: strcat (buf, ", mips32"); break;
cb44e358 2446 case E_MIPS_ARCH_32R2: strcat (buf, ", mips32r2"); break;
43521d43 2447 case E_MIPS_ARCH_64: strcat (buf, ", mips64"); break;
5f74bc13 2448 case E_MIPS_ARCH_64R2: strcat (buf, ", mips64r2"); break;
2b692964 2449 default: strcat (buf, _(", unknown ISA")); break;
43521d43
TS
2450 }
2451
8e45593f
NC
2452 if (e_flags & EF_SH_PIC)
2453 strcat (buf, ", pic");
2454
2455 if (e_flags & EF_SH_FDPIC)
2456 strcat (buf, ", fdpic");
252b5132 2457 break;
351b4b40 2458
ccde1100
AO
2459 case EM_SH:
2460 switch ((e_flags & EF_SH_MACH_MASK))
2461 {
2462 case EF_SH1: strcat (buf, ", sh1"); break;
2463 case EF_SH2: strcat (buf, ", sh2"); break;
2464 case EF_SH3: strcat (buf, ", sh3"); break;
2465 case EF_SH_DSP: strcat (buf, ", sh-dsp"); break;
2466 case EF_SH3_DSP: strcat (buf, ", sh3-dsp"); break;
2467 case EF_SH4AL_DSP: strcat (buf, ", sh4al-dsp"); break;
2468 case EF_SH3E: strcat (buf, ", sh3e"); break;
2469 case EF_SH4: strcat (buf, ", sh4"); break;
2470 case EF_SH5: strcat (buf, ", sh5"); break;
2471 case EF_SH2E: strcat (buf, ", sh2e"); break;
2472 case EF_SH4A: strcat (buf, ", sh4a"); break;
1d70c7fb 2473 case EF_SH2A: strcat (buf, ", sh2a"); break;
ccde1100
AO
2474 case EF_SH4_NOFPU: strcat (buf, ", sh4-nofpu"); break;
2475 case EF_SH4A_NOFPU: strcat (buf, ", sh4a-nofpu"); break;
1d70c7fb 2476 case EF_SH2A_NOFPU: strcat (buf, ", sh2a-nofpu"); break;
0b92ab21
NH
2477 case EF_SH3_NOMMU: strcat (buf, ", sh3-nommu"); break;
2478 case EF_SH4_NOMMU_NOFPU: strcat (buf, ", sh4-nommu-nofpu"); break;
2479 case EF_SH2A_SH4_NOFPU: strcat (buf, ", sh2a-nofpu-or-sh4-nommu-nofpu"); break;
2480 case EF_SH2A_SH3_NOFPU: strcat (buf, ", sh2a-nofpu-or-sh3-nommu"); break;
2481 case EF_SH2A_SH4: strcat (buf, ", sh2a-or-sh4"); break;
2482 case EF_SH2A_SH3E: strcat (buf, ", sh2a-or-sh3e"); break;
2b692964 2483 default: strcat (buf, _(", unknown ISA")); break;
ccde1100
AO
2484 }
2485
2486 break;
57346661 2487
351b4b40
RH
2488 case EM_SPARCV9:
2489 if (e_flags & EF_SPARC_32PLUS)
2490 strcat (buf, ", v8+");
2491
2492 if (e_flags & EF_SPARC_SUN_US1)
d07faca2
RH
2493 strcat (buf, ", ultrasparcI");
2494
2495 if (e_flags & EF_SPARC_SUN_US3)
2496 strcat (buf, ", ultrasparcIII");
351b4b40
RH
2497
2498 if (e_flags & EF_SPARC_HAL_R1)
2499 strcat (buf, ", halr1");
2500
2501 if (e_flags & EF_SPARC_LEDATA)
2502 strcat (buf, ", ledata");
2503
2504 if ((e_flags & EF_SPARCV9_MM) == EF_SPARCV9_TSO)
2505 strcat (buf, ", tso");
2506
2507 if ((e_flags & EF_SPARCV9_MM) == EF_SPARCV9_PSO)
2508 strcat (buf, ", pso");
2509
2510 if ((e_flags & EF_SPARCV9_MM) == EF_SPARCV9_RMO)
2511 strcat (buf, ", rmo");
2512 break;
7d466069 2513
103f02d3
UD
2514 case EM_PARISC:
2515 switch (e_flags & EF_PARISC_ARCH)
2516 {
2517 case EFA_PARISC_1_0:
2518 strcpy (buf, ", PA-RISC 1.0");
2519 break;
2520 case EFA_PARISC_1_1:
2521 strcpy (buf, ", PA-RISC 1.1");
2522 break;
2523 case EFA_PARISC_2_0:
2524 strcpy (buf, ", PA-RISC 2.0");
2525 break;
2526 default:
2527 break;
2528 }
2529 if (e_flags & EF_PARISC_TRAPNIL)
2530 strcat (buf, ", trapnil");
2531 if (e_flags & EF_PARISC_EXT)
2532 strcat (buf, ", ext");
2533 if (e_flags & EF_PARISC_LSB)
2534 strcat (buf, ", lsb");
2535 if (e_flags & EF_PARISC_WIDE)
2536 strcat (buf, ", wide");
2537 if (e_flags & EF_PARISC_NO_KABP)
2538 strcat (buf, ", no kabp");
2539 if (e_flags & EF_PARISC_LAZYSWAP)
2540 strcat (buf, ", lazyswap");
30800947 2541 break;
76da6bbe 2542
7d466069 2543 case EM_PJ:
2b0337b0 2544 case EM_PJ_OLD:
7d466069
ILT
2545 if ((e_flags & EF_PICOJAVA_NEWCALLS) == EF_PICOJAVA_NEWCALLS)
2546 strcat (buf, ", new calling convention");
2547
2548 if ((e_flags & EF_PICOJAVA_GNUCALLS) == EF_PICOJAVA_GNUCALLS)
2549 strcat (buf, ", gnu calling convention");
2550 break;
4d6ed7c8
NC
2551
2552 case EM_IA_64:
2553 if ((e_flags & EF_IA_64_ABI64))
2554 strcat (buf, ", 64-bit");
2555 else
2556 strcat (buf, ", 32-bit");
2557 if ((e_flags & EF_IA_64_REDUCEDFP))
2558 strcat (buf, ", reduced fp model");
2559 if ((e_flags & EF_IA_64_NOFUNCDESC_CONS_GP))
2560 strcat (buf, ", no function descriptors, constant gp");
2561 else if ((e_flags & EF_IA_64_CONS_GP))
2562 strcat (buf, ", constant gp");
2563 if ((e_flags & EF_IA_64_ABSOLUTE))
2564 strcat (buf, ", absolute");
28f997cf
TG
2565 if (elf_header.e_ident[EI_OSABI] == ELFOSABI_OPENVMS)
2566 {
2567 if ((e_flags & EF_IA_64_VMS_LINKAGES))
2568 strcat (buf, ", vms_linkages");
2569 switch ((e_flags & EF_IA_64_VMS_COMCOD))
2570 {
2571 case EF_IA_64_VMS_COMCOD_SUCCESS:
2572 break;
2573 case EF_IA_64_VMS_COMCOD_WARNING:
2574 strcat (buf, ", warning");
2575 break;
2576 case EF_IA_64_VMS_COMCOD_ERROR:
2577 strcat (buf, ", error");
2578 break;
2579 case EF_IA_64_VMS_COMCOD_ABORT:
2580 strcat (buf, ", abort");
2581 break;
2582 default:
2583 abort ();
2584 }
2585 }
4d6ed7c8 2586 break;
179d3252
JT
2587
2588 case EM_VAX:
2589 if ((e_flags & EF_VAX_NONPIC))
2590 strcat (buf, ", non-PIC");
2591 if ((e_flags & EF_VAX_DFLOAT))
2592 strcat (buf, ", D-Float");
2593 if ((e_flags & EF_VAX_GFLOAT))
2594 strcat (buf, ", G-Float");
2595 break;
c7927a3c
NC
2596
2597 case EM_RX:
2598 if (e_flags & E_FLAG_RX_64BIT_DOUBLES)
2599 strcat (buf, ", 64-bit doubles");
2600 if (e_flags & E_FLAG_RX_DSP)
2601 strcat (buf, ", dsp");
55786da2
AK
2602
2603 case EM_S390:
2604 if (e_flags & EF_S390_HIGH_GPRS)
2605 strcat (buf, ", highgprs");
40b36596
JM
2606
2607 case EM_TI_C6000:
2608 if ((e_flags & EF_C6000_REL))
2609 strcat (buf, ", relocatable module");
252b5132
RH
2610 }
2611 }
2612
2613 return buf;
2614}
2615
252b5132 2616static const char *
d3ba0551
AM
2617get_osabi_name (unsigned int osabi)
2618{
2619 static char buff[32];
2620
2621 switch (osabi)
2622 {
2623 case ELFOSABI_NONE: return "UNIX - System V";
2624 case ELFOSABI_HPUX: return "UNIX - HP-UX";
2625 case ELFOSABI_NETBSD: return "UNIX - NetBSD";
2626 case ELFOSABI_LINUX: return "UNIX - Linux";
2627 case ELFOSABI_HURD: return "GNU/Hurd";
2628 case ELFOSABI_SOLARIS: return "UNIX - Solaris";
2629 case ELFOSABI_AIX: return "UNIX - AIX";
2630 case ELFOSABI_IRIX: return "UNIX - IRIX";
2631 case ELFOSABI_FREEBSD: return "UNIX - FreeBSD";
2632 case ELFOSABI_TRU64: return "UNIX - TRU64";
2633 case ELFOSABI_MODESTO: return "Novell - Modesto";
2634 case ELFOSABI_OPENBSD: return "UNIX - OpenBSD";
2635 case ELFOSABI_OPENVMS: return "VMS - OpenVMS";
2636 case ELFOSABI_NSK: return "HP - Non-Stop Kernel";
3b26c801 2637 case ELFOSABI_AROS: return "AROS";
11636f9e 2638 case ELFOSABI_FENIXOS: return "FenixOS";
d3ba0551 2639 default:
40b36596
JM
2640 if (osabi >= 64)
2641 switch (elf_header.e_machine)
2642 {
2643 case EM_ARM:
2644 switch (osabi)
2645 {
2646 case ELFOSABI_ARM: return "ARM";
2647 default:
2648 break;
2649 }
2650 break;
2651
2652 case EM_MSP430:
2653 case EM_MSP430_OLD:
2654 switch (osabi)
2655 {
2656 case ELFOSABI_STANDALONE: return _("Standalone App");
2657 default:
2658 break;
2659 }
2660 break;
2661
2662 case EM_TI_C6000:
2663 switch (osabi)
2664 {
2665 case ELFOSABI_C6000_ELFABI: return _("Bare-metal C6000");
2666 case ELFOSABI_C6000_LINUX: return "Linux C6000";
2667 default:
2668 break;
2669 }
2670 break;
2671
2672 default:
2673 break;
2674 }
e9e44622 2675 snprintf (buff, sizeof (buff), _("<unknown: %x>"), osabi);
d3ba0551
AM
2676 return buff;
2677 }
2678}
2679
b294bdf8
MM
2680static const char *
2681get_arm_segment_type (unsigned long type)
2682{
2683 switch (type)
2684 {
2685 case PT_ARM_EXIDX:
2686 return "EXIDX";
2687 default:
2688 break;
2689 }
2690
2691 return NULL;
2692}
2693
d3ba0551
AM
2694static const char *
2695get_mips_segment_type (unsigned long type)
252b5132
RH
2696{
2697 switch (type)
2698 {
2699 case PT_MIPS_REGINFO:
2700 return "REGINFO";
2701 case PT_MIPS_RTPROC:
2702 return "RTPROC";
2703 case PT_MIPS_OPTIONS:
2704 return "OPTIONS";
2705 default:
2706 break;
2707 }
2708
2709 return NULL;
2710}
2711
103f02d3 2712static const char *
d3ba0551 2713get_parisc_segment_type (unsigned long type)
103f02d3
UD
2714{
2715 switch (type)
2716 {
2717 case PT_HP_TLS: return "HP_TLS";
2718 case PT_HP_CORE_NONE: return "HP_CORE_NONE";
2719 case PT_HP_CORE_VERSION: return "HP_CORE_VERSION";
2720 case PT_HP_CORE_KERNEL: return "HP_CORE_KERNEL";
2721 case PT_HP_CORE_COMM: return "HP_CORE_COMM";
2722 case PT_HP_CORE_PROC: return "HP_CORE_PROC";
2723 case PT_HP_CORE_LOADABLE: return "HP_CORE_LOADABLE";
2724 case PT_HP_CORE_STACK: return "HP_CORE_STACK";
2725 case PT_HP_CORE_SHM: return "HP_CORE_SHM";
2726 case PT_HP_CORE_MMF: return "HP_CORE_MMF";
2727 case PT_HP_PARALLEL: return "HP_PARALLEL";
2728 case PT_HP_FASTBIND: return "HP_FASTBIND";
eec8f817
DA
2729 case PT_HP_OPT_ANNOT: return "HP_OPT_ANNOT";
2730 case PT_HP_HSL_ANNOT: return "HP_HSL_ANNOT";
2731 case PT_HP_STACK: return "HP_STACK";
2732 case PT_HP_CORE_UTSNAME: return "HP_CORE_UTSNAME";
103f02d3
UD
2733 case PT_PARISC_ARCHEXT: return "PARISC_ARCHEXT";
2734 case PT_PARISC_UNWIND: return "PARISC_UNWIND";
61472819 2735 case PT_PARISC_WEAKORDER: return "PARISC_WEAKORDER";
103f02d3
UD
2736 default:
2737 break;
2738 }
2739
2740 return NULL;
2741}
2742
4d6ed7c8 2743static const char *
d3ba0551 2744get_ia64_segment_type (unsigned long type)
4d6ed7c8
NC
2745{
2746 switch (type)
2747 {
2748 case PT_IA_64_ARCHEXT: return "IA_64_ARCHEXT";
2749 case PT_IA_64_UNWIND: return "IA_64_UNWIND";
00428cca
AM
2750 case PT_HP_TLS: return "HP_TLS";
2751 case PT_IA_64_HP_OPT_ANOT: return "HP_OPT_ANNOT";
2752 case PT_IA_64_HP_HSL_ANOT: return "HP_HSL_ANNOT";
2753 case PT_IA_64_HP_STACK: return "HP_STACK";
4d6ed7c8
NC
2754 default:
2755 break;
2756 }
2757
2758 return NULL;
2759}
2760
40b36596
JM
2761static const char *
2762get_tic6x_segment_type (unsigned long type)
2763{
2764 switch (type)
2765 {
2766 case PT_C6000_PHATTR: return "C6000_PHATTR";
2767 default:
2768 break;
2769 }
2770
2771 return NULL;
2772}
2773
252b5132 2774static const char *
d3ba0551 2775get_segment_type (unsigned long p_type)
252b5132 2776{
b34976b6 2777 static char buff[32];
252b5132
RH
2778
2779 switch (p_type)
2780 {
b34976b6
AM
2781 case PT_NULL: return "NULL";
2782 case PT_LOAD: return "LOAD";
252b5132 2783 case PT_DYNAMIC: return "DYNAMIC";
b34976b6
AM
2784 case PT_INTERP: return "INTERP";
2785 case PT_NOTE: return "NOTE";
2786 case PT_SHLIB: return "SHLIB";
2787 case PT_PHDR: return "PHDR";
13ae64f3 2788 case PT_TLS: return "TLS";
252b5132 2789
65765700
JJ
2790 case PT_GNU_EH_FRAME:
2791 return "GNU_EH_FRAME";
2b05f1b7 2792 case PT_GNU_STACK: return "GNU_STACK";
8c37241b 2793 case PT_GNU_RELRO: return "GNU_RELRO";
65765700 2794
252b5132
RH
2795 default:
2796 if ((p_type >= PT_LOPROC) && (p_type <= PT_HIPROC))
2797 {
2cf0635d 2798 const char * result;
103f02d3 2799
252b5132
RH
2800 switch (elf_header.e_machine)
2801 {
b294bdf8
MM
2802 case EM_ARM:
2803 result = get_arm_segment_type (p_type);
2804 break;
252b5132 2805 case EM_MIPS:
4fe85591 2806 case EM_MIPS_RS3_LE:
252b5132
RH
2807 result = get_mips_segment_type (p_type);
2808 break;
103f02d3
UD
2809 case EM_PARISC:
2810 result = get_parisc_segment_type (p_type);
2811 break;
4d6ed7c8
NC
2812 case EM_IA_64:
2813 result = get_ia64_segment_type (p_type);
2814 break;
40b36596
JM
2815 case EM_TI_C6000:
2816 result = get_tic6x_segment_type (p_type);
2817 break;
252b5132
RH
2818 default:
2819 result = NULL;
2820 break;
2821 }
103f02d3 2822
252b5132
RH
2823 if (result != NULL)
2824 return result;
103f02d3 2825
252b5132
RH
2826 sprintf (buff, "LOPROC+%lx", p_type - PT_LOPROC);
2827 }
2828 else if ((p_type >= PT_LOOS) && (p_type <= PT_HIOS))
103f02d3 2829 {
2cf0635d 2830 const char * result;
103f02d3
UD
2831
2832 switch (elf_header.e_machine)
2833 {
2834 case EM_PARISC:
2835 result = get_parisc_segment_type (p_type);
2836 break;
00428cca
AM
2837 case EM_IA_64:
2838 result = get_ia64_segment_type (p_type);
2839 break;
103f02d3
UD
2840 default:
2841 result = NULL;
2842 break;
2843 }
2844
2845 if (result != NULL)
2846 return result;
2847
2848 sprintf (buff, "LOOS+%lx", p_type - PT_LOOS);
2849 }
252b5132 2850 else
e9e44622 2851 snprintf (buff, sizeof (buff), _("<unknown>: %lx"), p_type);
252b5132
RH
2852
2853 return buff;
2854 }
2855}
2856
2857static const char *
d3ba0551 2858get_mips_section_type_name (unsigned int sh_type)
252b5132
RH
2859{
2860 switch (sh_type)
2861 {
b34976b6
AM
2862 case SHT_MIPS_LIBLIST: return "MIPS_LIBLIST";
2863 case SHT_MIPS_MSYM: return "MIPS_MSYM";
2864 case SHT_MIPS_CONFLICT: return "MIPS_CONFLICT";
2865 case SHT_MIPS_GPTAB: return "MIPS_GPTAB";
2866 case SHT_MIPS_UCODE: return "MIPS_UCODE";
2867 case SHT_MIPS_DEBUG: return "MIPS_DEBUG";
2868 case SHT_MIPS_REGINFO: return "MIPS_REGINFO";
2869 case SHT_MIPS_PACKAGE: return "MIPS_PACKAGE";
2870 case SHT_MIPS_PACKSYM: return "MIPS_PACKSYM";
2871 case SHT_MIPS_RELD: return "MIPS_RELD";
2872 case SHT_MIPS_IFACE: return "MIPS_IFACE";
2873 case SHT_MIPS_CONTENT: return "MIPS_CONTENT";
2874 case SHT_MIPS_OPTIONS: return "MIPS_OPTIONS";
2875 case SHT_MIPS_SHDR: return "MIPS_SHDR";
2876 case SHT_MIPS_FDESC: return "MIPS_FDESC";
2877 case SHT_MIPS_EXTSYM: return "MIPS_EXTSYM";
2878 case SHT_MIPS_DENSE: return "MIPS_DENSE";
2879 case SHT_MIPS_PDESC: return "MIPS_PDESC";
2880 case SHT_MIPS_LOCSYM: return "MIPS_LOCSYM";
2881 case SHT_MIPS_AUXSYM: return "MIPS_AUXSYM";
2882 case SHT_MIPS_OPTSYM: return "MIPS_OPTSYM";
2883 case SHT_MIPS_LOCSTR: return "MIPS_LOCSTR";
2884 case SHT_MIPS_LINE: return "MIPS_LINE";
2885 case SHT_MIPS_RFDESC: return "MIPS_RFDESC";
2886 case SHT_MIPS_DELTASYM: return "MIPS_DELTASYM";
2887 case SHT_MIPS_DELTAINST: return "MIPS_DELTAINST";
2888 case SHT_MIPS_DELTACLASS: return "MIPS_DELTACLASS";
2889 case SHT_MIPS_DWARF: return "MIPS_DWARF";
2890 case SHT_MIPS_DELTADECL: return "MIPS_DELTADECL";
2891 case SHT_MIPS_SYMBOL_LIB: return "MIPS_SYMBOL_LIB";
2892 case SHT_MIPS_EVENTS: return "MIPS_EVENTS";
2893 case SHT_MIPS_TRANSLATE: return "MIPS_TRANSLATE";
2894 case SHT_MIPS_PIXIE: return "MIPS_PIXIE";
2895 case SHT_MIPS_XLATE: return "MIPS_XLATE";
2896 case SHT_MIPS_XLATE_DEBUG: return "MIPS_XLATE_DEBUG";
2897 case SHT_MIPS_WHIRL: return "MIPS_WHIRL";
2898 case SHT_MIPS_EH_REGION: return "MIPS_EH_REGION";
2899 case SHT_MIPS_XLATE_OLD: return "MIPS_XLATE_OLD";
252b5132
RH
2900 case SHT_MIPS_PDR_EXCEPTION: return "MIPS_PDR_EXCEPTION";
2901 default:
2902 break;
2903 }
2904 return NULL;
2905}
2906
103f02d3 2907static const char *
d3ba0551 2908get_parisc_section_type_name (unsigned int sh_type)
103f02d3
UD
2909{
2910 switch (sh_type)
2911 {
2912 case SHT_PARISC_EXT: return "PARISC_EXT";
2913 case SHT_PARISC_UNWIND: return "PARISC_UNWIND";
2914 case SHT_PARISC_DOC: return "PARISC_DOC";
eec8f817
DA
2915 case SHT_PARISC_ANNOT: return "PARISC_ANNOT";
2916 case SHT_PARISC_SYMEXTN: return "PARISC_SYMEXTN";
2917 case SHT_PARISC_STUBS: return "PARISC_STUBS";
61472819 2918 case SHT_PARISC_DLKM: return "PARISC_DLKM";
103f02d3
UD
2919 default:
2920 break;
2921 }
2922 return NULL;
2923}
2924
4d6ed7c8 2925static const char *
d3ba0551 2926get_ia64_section_type_name (unsigned int sh_type)
4d6ed7c8 2927{
18bd398b 2928 /* If the top 8 bits are 0x78 the next 8 are the os/abi ID. */
ecc51f48
NC
2929 if ((sh_type & 0xFF000000) == SHT_IA_64_LOPSREG)
2930 return get_osabi_name ((sh_type & 0x00FF0000) >> 16);
0de14b54 2931
4d6ed7c8
NC
2932 switch (sh_type)
2933 {
148b93f2
NC
2934 case SHT_IA_64_EXT: return "IA_64_EXT";
2935 case SHT_IA_64_UNWIND: return "IA_64_UNWIND";
2936 case SHT_IA_64_PRIORITY_INIT: return "IA_64_PRIORITY_INIT";
2937 case SHT_IA_64_VMS_TRACE: return "VMS_TRACE";
2938 case SHT_IA_64_VMS_TIE_SIGNATURES: return "VMS_TIE_SIGNATURES";
2939 case SHT_IA_64_VMS_DEBUG: return "VMS_DEBUG";
2940 case SHT_IA_64_VMS_DEBUG_STR: return "VMS_DEBUG_STR";
2941 case SHT_IA_64_VMS_LINKAGES: return "VMS_LINKAGES";
2942 case SHT_IA_64_VMS_SYMBOL_VECTOR: return "VMS_SYMBOL_VECTOR";
2943 case SHT_IA_64_VMS_FIXUP: return "VMS_FIXUP";
4d6ed7c8
NC
2944 default:
2945 break;
2946 }
2947 return NULL;
2948}
2949
d2b2c203
DJ
2950static const char *
2951get_x86_64_section_type_name (unsigned int sh_type)
2952{
2953 switch (sh_type)
2954 {
2955 case SHT_X86_64_UNWIND: return "X86_64_UNWIND";
2956 default:
2957 break;
2958 }
2959 return NULL;
2960}
2961
40a18ebd
NC
2962static const char *
2963get_arm_section_type_name (unsigned int sh_type)
2964{
2965 switch (sh_type)
2966 {
7f6fed87
NC
2967 case SHT_ARM_EXIDX: return "ARM_EXIDX";
2968 case SHT_ARM_PREEMPTMAP: return "ARM_PREEMPTMAP";
2969 case SHT_ARM_ATTRIBUTES: return "ARM_ATTRIBUTES";
2970 case SHT_ARM_DEBUGOVERLAY: return "ARM_DEBUGOVERLAY";
2971 case SHT_ARM_OVERLAYSECTION: return "ARM_OVERLAYSECTION";
40a18ebd
NC
2972 default:
2973 break;
2974 }
2975 return NULL;
2976}
2977
40b36596
JM
2978static const char *
2979get_tic6x_section_type_name (unsigned int sh_type)
2980{
2981 switch (sh_type)
2982 {
2983 case SHT_C6000_UNWIND:
2984 return "C6000_UNWIND";
2985 case SHT_C6000_PREEMPTMAP:
2986 return "C6000_PREEMPTMAP";
2987 case SHT_C6000_ATTRIBUTES:
2988 return "C6000_ATTRIBUTES";
2989 case SHT_TI_ICODE:
2990 return "TI_ICODE";
2991 case SHT_TI_XREF:
2992 return "TI_XREF";
2993 case SHT_TI_HANDLER:
2994 return "TI_HANDLER";
2995 case SHT_TI_INITINFO:
2996 return "TI_INITINFO";
2997 case SHT_TI_PHATTRS:
2998 return "TI_PHATTRS";
2999 default:
3000 break;
3001 }
3002 return NULL;
3003}
3004
252b5132 3005static const char *
d3ba0551 3006get_section_type_name (unsigned int sh_type)
252b5132 3007{
b34976b6 3008 static char buff[32];
252b5132
RH
3009
3010 switch (sh_type)
3011 {
3012 case SHT_NULL: return "NULL";
3013 case SHT_PROGBITS: return "PROGBITS";
3014 case SHT_SYMTAB: return "SYMTAB";
3015 case SHT_STRTAB: return "STRTAB";
3016 case SHT_RELA: return "RELA";
3017 case SHT_HASH: return "HASH";
3018 case SHT_DYNAMIC: return "DYNAMIC";
3019 case SHT_NOTE: return "NOTE";
3020 case SHT_NOBITS: return "NOBITS";
3021 case SHT_REL: return "REL";
3022 case SHT_SHLIB: return "SHLIB";
3023 case SHT_DYNSYM: return "DYNSYM";
d1133906
NC
3024 case SHT_INIT_ARRAY: return "INIT_ARRAY";
3025 case SHT_FINI_ARRAY: return "FINI_ARRAY";
3026 case SHT_PREINIT_ARRAY: return "PREINIT_ARRAY";
fdc90cb4 3027 case SHT_GNU_HASH: return "GNU_HASH";
93ebe586
NC
3028 case SHT_GROUP: return "GROUP";
3029 case SHT_SYMTAB_SHNDX: return "SYMTAB SECTION INDICIES";
252b5132
RH
3030 case SHT_GNU_verdef: return "VERDEF";
3031 case SHT_GNU_verneed: return "VERNEED";
3032 case SHT_GNU_versym: return "VERSYM";
b34976b6
AM
3033 case 0x6ffffff0: return "VERSYM";
3034 case 0x6ffffffc: return "VERDEF";
252b5132
RH
3035 case 0x7ffffffd: return "AUXILIARY";
3036 case 0x7fffffff: return "FILTER";
047b2264 3037 case SHT_GNU_LIBLIST: return "GNU_LIBLIST";
252b5132
RH
3038
3039 default:
3040 if ((sh_type >= SHT_LOPROC) && (sh_type <= SHT_HIPROC))
3041 {
2cf0635d 3042 const char * result;
252b5132
RH
3043
3044 switch (elf_header.e_machine)
3045 {
3046 case EM_MIPS:
4fe85591 3047 case EM_MIPS_RS3_LE:
252b5132
RH
3048 result = get_mips_section_type_name (sh_type);
3049 break;
103f02d3
UD
3050 case EM_PARISC:
3051 result = get_parisc_section_type_name (sh_type);
3052 break;
4d6ed7c8
NC
3053 case EM_IA_64:
3054 result = get_ia64_section_type_name (sh_type);
3055 break;
d2b2c203 3056 case EM_X86_64:
8a9036a4 3057 case EM_L1OM:
d2b2c203
DJ
3058 result = get_x86_64_section_type_name (sh_type);
3059 break;
40a18ebd
NC
3060 case EM_ARM:
3061 result = get_arm_section_type_name (sh_type);
3062 break;
40b36596
JM
3063 case EM_TI_C6000:
3064 result = get_tic6x_section_type_name (sh_type);
3065 break;
252b5132
RH
3066 default:
3067 result = NULL;
3068 break;
3069 }
3070
3071 if (result != NULL)
3072 return result;
3073
c91d0dfb 3074 sprintf (buff, "LOPROC+%x", sh_type - SHT_LOPROC);
252b5132
RH
3075 }
3076 else if ((sh_type >= SHT_LOOS) && (sh_type <= SHT_HIOS))
148b93f2 3077 {
2cf0635d 3078 const char * result;
148b93f2
NC
3079
3080 switch (elf_header.e_machine)
3081 {
3082 case EM_IA_64:
3083 result = get_ia64_section_type_name (sh_type);
3084 break;
3085 default:
3086 result = NULL;
3087 break;
3088 }
3089
3090 if (result != NULL)
3091 return result;
3092
3093 sprintf (buff, "LOOS+%x", sh_type - SHT_LOOS);
3094 }
252b5132 3095 else if ((sh_type >= SHT_LOUSER) && (sh_type <= SHT_HIUSER))
c91d0dfb 3096 sprintf (buff, "LOUSER+%x", sh_type - SHT_LOUSER);
252b5132 3097 else
e9e44622 3098 snprintf (buff, sizeof (buff), _("<unknown>: %x"), sh_type);
103f02d3 3099
252b5132
RH
3100 return buff;
3101 }
3102}
3103
2979dc34 3104#define OPTION_DEBUG_DUMP 512
2c610e4b 3105#define OPTION_DYN_SYMS 513
2979dc34 3106
85b1c36d 3107static struct option options[] =
252b5132 3108{
b34976b6 3109 {"all", no_argument, 0, 'a'},
252b5132
RH
3110 {"file-header", no_argument, 0, 'h'},
3111 {"program-headers", no_argument, 0, 'l'},
b34976b6
AM
3112 {"headers", no_argument, 0, 'e'},
3113 {"histogram", no_argument, 0, 'I'},
3114 {"segments", no_argument, 0, 'l'},
3115 {"sections", no_argument, 0, 'S'},
252b5132 3116 {"section-headers", no_argument, 0, 'S'},
f5842774 3117 {"section-groups", no_argument, 0, 'g'},
5477e8a0 3118 {"section-details", no_argument, 0, 't'},
595cf52e 3119 {"full-section-name",no_argument, 0, 'N'},
b34976b6
AM
3120 {"symbols", no_argument, 0, 's'},
3121 {"syms", no_argument, 0, 's'},
2c610e4b 3122 {"dyn-syms", no_argument, 0, OPTION_DYN_SYMS},
b34976b6
AM
3123 {"relocs", no_argument, 0, 'r'},
3124 {"notes", no_argument, 0, 'n'},
3125 {"dynamic", no_argument, 0, 'd'},
a952a375 3126 {"arch-specific", no_argument, 0, 'A'},
252b5132
RH
3127 {"version-info", no_argument, 0, 'V'},
3128 {"use-dynamic", no_argument, 0, 'D'},
09c11c86 3129 {"unwind", no_argument, 0, 'u'},
4145f1d5 3130 {"archive-index", no_argument, 0, 'c'},
b34976b6 3131 {"hex-dump", required_argument, 0, 'x'},
cf13d699 3132 {"relocated-dump", required_argument, 0, 'R'},
09c11c86 3133 {"string-dump", required_argument, 0, 'p'},
252b5132
RH
3134#ifdef SUPPORT_DISASSEMBLY
3135 {"instruction-dump", required_argument, 0, 'i'},
3136#endif
cf13d699 3137 {"debug-dump", optional_argument, 0, OPTION_DEBUG_DUMP},
252b5132 3138
b34976b6
AM
3139 {"version", no_argument, 0, 'v'},
3140 {"wide", no_argument, 0, 'W'},
3141 {"help", no_argument, 0, 'H'},
3142 {0, no_argument, 0, 0}
252b5132
RH
3143};
3144
3145static void
2cf0635d 3146usage (FILE * stream)
252b5132 3147{
92f01d61
JM
3148 fprintf (stream, _("Usage: readelf <option(s)> elf-file(s)\n"));
3149 fprintf (stream, _(" Display information about the contents of ELF format files\n"));
3150 fprintf (stream, _(" Options are:\n\
8b53311e
NC
3151 -a --all Equivalent to: -h -l -S -s -r -d -V -A -I\n\
3152 -h --file-header Display the ELF file header\n\
3153 -l --program-headers Display the program headers\n\
3154 --segments An alias for --program-headers\n\
3155 -S --section-headers Display the sections' header\n\
3156 --sections An alias for --section-headers\n\
f5842774 3157 -g --section-groups Display the section groups\n\
5477e8a0 3158 -t --section-details Display the section details\n\
8b53311e
NC
3159 -e --headers Equivalent to: -h -l -S\n\
3160 -s --syms Display the symbol table\n\
3f08eb35 3161 --symbols An alias for --syms\n\
2c610e4b 3162 --dyn-syms Display the dynamic symbol table\n\
8b53311e
NC
3163 -n --notes Display the core notes (if present)\n\
3164 -r --relocs Display the relocations (if present)\n\
3165 -u --unwind Display the unwind info (if present)\n\
b2d38a17 3166 -d --dynamic Display the dynamic section (if present)\n\
8b53311e
NC
3167 -V --version-info Display the version sections (if present)\n\
3168 -A --arch-specific Display architecture specific information (if any).\n\
4145f1d5 3169 -c --archive-index Display the symbol/file index in an archive\n\
8b53311e 3170 -D --use-dynamic Use the dynamic section info when displaying symbols\n\
09c11c86
NC
3171 -x --hex-dump=<number|name>\n\
3172 Dump the contents of section <number|name> as bytes\n\
3173 -p --string-dump=<number|name>\n\
3174 Dump the contents of section <number|name> as strings\n\
cf13d699
NC
3175 -R --relocated-dump=<number|name>\n\
3176 Dump the contents of section <number|name> as relocated bytes\n\
f9f0e732 3177 -w[lLiaprmfFsoRt] or\n\
1ed06042 3178 --debug-dump[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,\n\
6f875884
TG
3179 =frames-interp,=str,=loc,=Ranges,=pubtypes,\n\
3180 =trace_info,=trace_abbrev,=trace_aranges]\n\
8b53311e 3181 Display the contents of DWARF2 debug sections\n"));
252b5132 3182#ifdef SUPPORT_DISASSEMBLY
92f01d61 3183 fprintf (stream, _("\
09c11c86
NC
3184 -i --instruction-dump=<number|name>\n\
3185 Disassemble the contents of section <number|name>\n"));
252b5132 3186#endif
92f01d61 3187 fprintf (stream, _("\
8b53311e
NC
3188 -I --histogram Display histogram of bucket list lengths\n\
3189 -W --wide Allow output width to exceed 80 characters\n\
07012eee 3190 @<file> Read options from <file>\n\
8b53311e
NC
3191 -H --help Display this information\n\
3192 -v --version Display the version number of readelf\n"));
1118d252 3193
92f01d61
JM
3194 if (REPORT_BUGS_TO[0] && stream == stdout)
3195 fprintf (stdout, _("Report bugs to %s\n"), REPORT_BUGS_TO);
252b5132 3196
92f01d61 3197 exit (stream == stdout ? 0 : 1);
252b5132
RH
3198}
3199
18bd398b
NC
3200/* Record the fact that the user wants the contents of section number
3201 SECTION to be displayed using the method(s) encoded as flags bits
3202 in TYPE. Note, TYPE can be zero if we are creating the array for
3203 the first time. */
3204
252b5132 3205static void
09c11c86 3206request_dump_bynumber (unsigned int section, dump_type type)
252b5132
RH
3207{
3208 if (section >= num_dump_sects)
3209 {
2cf0635d 3210 dump_type * new_dump_sects;
252b5132 3211
3f5e193b
NC
3212 new_dump_sects = (dump_type *) calloc (section + 1,
3213 sizeof (* dump_sects));
252b5132
RH
3214
3215 if (new_dump_sects == NULL)
591a748a 3216 error (_("Out of memory allocating dump request table.\n"));
252b5132
RH
3217 else
3218 {
3219 /* Copy current flag settings. */
09c11c86 3220 memcpy (new_dump_sects, dump_sects, num_dump_sects * sizeof (* dump_sects));
252b5132
RH
3221
3222 free (dump_sects);
3223
3224 dump_sects = new_dump_sects;
3225 num_dump_sects = section + 1;
3226 }
3227 }
3228
3229 if (dump_sects)
b34976b6 3230 dump_sects[section] |= type;
252b5132
RH
3231
3232 return;
3233}
3234
aef1f6d0
DJ
3235/* Request a dump by section name. */
3236
3237static void
2cf0635d 3238request_dump_byname (const char * section, dump_type type)
aef1f6d0 3239{
2cf0635d 3240 struct dump_list_entry * new_request;
aef1f6d0 3241
3f5e193b
NC
3242 new_request = (struct dump_list_entry *)
3243 malloc (sizeof (struct dump_list_entry));
aef1f6d0 3244 if (!new_request)
591a748a 3245 error (_("Out of memory allocating dump request table.\n"));
aef1f6d0
DJ
3246
3247 new_request->name = strdup (section);
3248 if (!new_request->name)
591a748a 3249 error (_("Out of memory allocating dump request table.\n"));
aef1f6d0
DJ
3250
3251 new_request->type = type;
3252
3253 new_request->next = dump_sects_byname;
3254 dump_sects_byname = new_request;
3255}
3256
cf13d699
NC
3257static inline void
3258request_dump (dump_type type)
3259{
3260 int section;
3261 char * cp;
3262
3263 do_dump++;
3264 section = strtoul (optarg, & cp, 0);
3265
3266 if (! *cp && section >= 0)
3267 request_dump_bynumber (section, type);
3268 else
3269 request_dump_byname (optarg, type);
3270}
3271
3272
252b5132 3273static void
2cf0635d 3274parse_args (int argc, char ** argv)
252b5132
RH
3275{
3276 int c;
3277
3278 if (argc < 2)
92f01d61 3279 usage (stderr);
252b5132
RH
3280
3281 while ((c = getopt_long
cf13d699 3282 (argc, argv, "ADHINR:SVWacdeghi:lnp:rstuvw::x:", options, NULL)) != EOF)
252b5132 3283 {
252b5132
RH
3284 switch (c)
3285 {
3286 case 0:
3287 /* Long options. */
3288 break;
3289 case 'H':
92f01d61 3290 usage (stdout);
252b5132
RH
3291 break;
3292
3293 case 'a':
b34976b6
AM
3294 do_syms++;
3295 do_reloc++;
3296 do_unwind++;
3297 do_dynamic++;
3298 do_header++;
3299 do_sections++;
f5842774 3300 do_section_groups++;
b34976b6
AM
3301 do_segments++;
3302 do_version++;
3303 do_histogram++;
3304 do_arch++;
3305 do_notes++;
252b5132 3306 break;
f5842774
L
3307 case 'g':
3308 do_section_groups++;
3309 break;
5477e8a0 3310 case 't':
595cf52e 3311 case 'N':
5477e8a0
L
3312 do_sections++;
3313 do_section_details++;
595cf52e 3314 break;
252b5132 3315 case 'e':
b34976b6
AM
3316 do_header++;
3317 do_sections++;
3318 do_segments++;
252b5132 3319 break;
a952a375 3320 case 'A':
b34976b6 3321 do_arch++;
a952a375 3322 break;
252b5132 3323 case 'D':
b34976b6 3324 do_using_dynamic++;
252b5132
RH
3325 break;
3326 case 'r':
b34976b6 3327 do_reloc++;
252b5132 3328 break;
4d6ed7c8 3329 case 'u':
b34976b6 3330 do_unwind++;
4d6ed7c8 3331 break;
252b5132 3332 case 'h':
b34976b6 3333 do_header++;
252b5132
RH
3334 break;
3335 case 'l':
b34976b6 3336 do_segments++;
252b5132
RH
3337 break;
3338 case 's':
b34976b6 3339 do_syms++;
252b5132
RH
3340 break;
3341 case 'S':
b34976b6 3342 do_sections++;
252b5132
RH
3343 break;
3344 case 'd':
b34976b6 3345 do_dynamic++;
252b5132 3346 break;
a952a375 3347 case 'I':
b34976b6 3348 do_histogram++;
a952a375 3349 break;
779fe533 3350 case 'n':
b34976b6 3351 do_notes++;
779fe533 3352 break;
4145f1d5
NC
3353 case 'c':
3354 do_archive_index++;
3355 break;
252b5132 3356 case 'x':
cf13d699 3357 request_dump (HEX_DUMP);
aef1f6d0 3358 break;
09c11c86 3359 case 'p':
cf13d699
NC
3360 request_dump (STRING_DUMP);
3361 break;
3362 case 'R':
3363 request_dump (RELOC_DUMP);
09c11c86 3364 break;
252b5132 3365 case 'w':
b34976b6 3366 do_dump++;
252b5132 3367 if (optarg == 0)
613ff48b
CC
3368 {
3369 do_debugging = 1;
3370 dwarf_select_sections_all ();
3371 }
252b5132
RH
3372 else
3373 {
3374 do_debugging = 0;
4cb93e3b 3375 dwarf_select_sections_by_letters (optarg);
252b5132
RH
3376 }
3377 break;
2979dc34 3378 case OPTION_DEBUG_DUMP:
b34976b6 3379 do_dump++;
2979dc34
JJ
3380 if (optarg == 0)
3381 do_debugging = 1;
3382 else
3383 {
2979dc34 3384 do_debugging = 0;
4cb93e3b 3385 dwarf_select_sections_by_names (optarg);
2979dc34
JJ
3386 }
3387 break;
2c610e4b
L
3388 case OPTION_DYN_SYMS:
3389 do_dyn_syms++;
3390 break;
252b5132
RH
3391#ifdef SUPPORT_DISASSEMBLY
3392 case 'i':
cf13d699
NC
3393 request_dump (DISASS_DUMP);
3394 break;
252b5132
RH
3395#endif
3396 case 'v':
3397 print_version (program_name);
3398 break;
3399 case 'V':
b34976b6 3400 do_version++;
252b5132 3401 break;
d974e256 3402 case 'W':
b34976b6 3403 do_wide++;
d974e256 3404 break;
252b5132 3405 default:
252b5132
RH
3406 /* xgettext:c-format */
3407 error (_("Invalid option '-%c'\n"), c);
3408 /* Drop through. */
3409 case '?':
92f01d61 3410 usage (stderr);
252b5132
RH
3411 }
3412 }
3413
4d6ed7c8 3414 if (!do_dynamic && !do_syms && !do_reloc && !do_unwind && !do_sections
252b5132 3415 && !do_segments && !do_header && !do_dump && !do_version
f5842774 3416 && !do_histogram && !do_debugging && !do_arch && !do_notes
2c610e4b
L
3417 && !do_section_groups && !do_archive_index
3418 && !do_dyn_syms)
92f01d61 3419 usage (stderr);
252b5132
RH
3420 else if (argc < 3)
3421 {
3422 warn (_("Nothing to do.\n"));
92f01d61 3423 usage (stderr);
252b5132
RH
3424 }
3425}
3426
3427static const char *
d3ba0551 3428get_elf_class (unsigned int elf_class)
252b5132 3429{
b34976b6 3430 static char buff[32];
103f02d3 3431
252b5132
RH
3432 switch (elf_class)
3433 {
3434 case ELFCLASSNONE: return _("none");
e3c8793a
NC
3435 case ELFCLASS32: return "ELF32";
3436 case ELFCLASS64: return "ELF64";
ab5e7794 3437 default:
e9e44622 3438 snprintf (buff, sizeof (buff), _("<unknown: %x>"), elf_class);
ab5e7794 3439 return buff;
252b5132
RH
3440 }
3441}
3442
3443static const char *
d3ba0551 3444get_data_encoding (unsigned int encoding)
252b5132 3445{
b34976b6 3446 static char buff[32];
103f02d3 3447
252b5132
RH
3448 switch (encoding)
3449 {
3450 case ELFDATANONE: return _("none");
33c63f9d
CM
3451 case ELFDATA2LSB: return _("2's complement, little endian");
3452 case ELFDATA2MSB: return _("2's complement, big endian");
103f02d3 3453 default:
e9e44622 3454 snprintf (buff, sizeof (buff), _("<unknown: %x>"), encoding);
ab5e7794 3455 return buff;
252b5132
RH
3456 }
3457}
3458
252b5132 3459/* Decode the data held in 'elf_header'. */
ee42cf8c 3460
252b5132 3461static int
d3ba0551 3462process_file_header (void)
252b5132 3463{
b34976b6
AM
3464 if ( elf_header.e_ident[EI_MAG0] != ELFMAG0
3465 || elf_header.e_ident[EI_MAG1] != ELFMAG1
3466 || elf_header.e_ident[EI_MAG2] != ELFMAG2
3467 || elf_header.e_ident[EI_MAG3] != ELFMAG3)
252b5132
RH
3468 {
3469 error
3470 (_("Not an ELF file - it has the wrong magic bytes at the start\n"));
3471 return 0;
3472 }
3473
2dc4cec1
L
3474 init_dwarf_regnames (elf_header.e_machine);
3475
252b5132
RH
3476 if (do_header)
3477 {
3478 int i;
3479
3480 printf (_("ELF Header:\n"));
3481 printf (_(" Magic: "));
b34976b6
AM
3482 for (i = 0; i < EI_NIDENT; i++)
3483 printf ("%2.2x ", elf_header.e_ident[i]);
252b5132
RH
3484 printf ("\n");
3485 printf (_(" Class: %s\n"),
b34976b6 3486 get_elf_class (elf_header.e_ident[EI_CLASS]));
252b5132 3487 printf (_(" Data: %s\n"),
b34976b6 3488 get_data_encoding (elf_header.e_ident[EI_DATA]));
252b5132 3489 printf (_(" Version: %d %s\n"),
b34976b6
AM
3490 elf_header.e_ident[EI_VERSION],
3491 (elf_header.e_ident[EI_VERSION] == EV_CURRENT
789be9f7 3492 ? "(current)"
b34976b6 3493 : (elf_header.e_ident[EI_VERSION] != EV_NONE
2b692964 3494 ? _("<unknown: %lx>")
789be9f7 3495 : "")));
252b5132 3496 printf (_(" OS/ABI: %s\n"),
b34976b6 3497 get_osabi_name (elf_header.e_ident[EI_OSABI]));
252b5132 3498 printf (_(" ABI Version: %d\n"),
b34976b6 3499 elf_header.e_ident[EI_ABIVERSION]);
252b5132
RH
3500 printf (_(" Type: %s\n"),
3501 get_file_type (elf_header.e_type));
3502 printf (_(" Machine: %s\n"),
3503 get_machine_name (elf_header.e_machine));
3504 printf (_(" Version: 0x%lx\n"),
3505 (unsigned long) elf_header.e_version);
76da6bbe 3506
f7a99963
NC
3507 printf (_(" Entry point address: "));
3508 print_vma ((bfd_vma) elf_header.e_entry, PREFIX_HEX);
3509 printf (_("\n Start of program headers: "));
3510 print_vma ((bfd_vma) elf_header.e_phoff, DEC);
3511 printf (_(" (bytes into file)\n Start of section headers: "));
3512 print_vma ((bfd_vma) elf_header.e_shoff, DEC);
3513 printf (_(" (bytes into file)\n"));
76da6bbe 3514
252b5132
RH
3515 printf (_(" Flags: 0x%lx%s\n"),
3516 (unsigned long) elf_header.e_flags,
3517 get_machine_flags (elf_header.e_flags, elf_header.e_machine));
3518 printf (_(" Size of this header: %ld (bytes)\n"),
3519 (long) elf_header.e_ehsize);
3520 printf (_(" Size of program headers: %ld (bytes)\n"),
3521 (long) elf_header.e_phentsize);
2046a35d 3522 printf (_(" Number of program headers: %ld"),
252b5132 3523 (long) elf_header.e_phnum);
2046a35d
AM
3524 if (section_headers != NULL
3525 && elf_header.e_phnum == PN_XNUM
3526 && section_headers[0].sh_info != 0)
3527 printf (_(" (%ld)"), (long) section_headers[0].sh_info);
3528 putc ('\n', stdout);
252b5132
RH
3529 printf (_(" Size of section headers: %ld (bytes)\n"),
3530 (long) elf_header.e_shentsize);
560f3c1c 3531 printf (_(" Number of section headers: %ld"),
252b5132 3532 (long) elf_header.e_shnum);
4fbb74a6 3533 if (section_headers != NULL && elf_header.e_shnum == SHN_UNDEF)
560f3c1c
AM
3534 printf (" (%ld)", (long) section_headers[0].sh_size);
3535 putc ('\n', stdout);
3536 printf (_(" Section header string table index: %ld"),
252b5132 3537 (long) elf_header.e_shstrndx);
4fbb74a6
AM
3538 if (section_headers != NULL
3539 && elf_header.e_shstrndx == (SHN_XINDEX & 0xffff))
72de5009 3540 printf (" (%u)", section_headers[0].sh_link);
15ba6505
AM
3541 else if (elf_header.e_shstrndx != SHN_UNDEF
3542 && elf_header.e_shstrndx >= elf_header.e_shnum)
2b692964 3543 printf (_(" <corrupt: out of range>"));
560f3c1c
AM
3544 putc ('\n', stdout);
3545 }
3546
3547 if (section_headers != NULL)
3548 {
2046a35d
AM
3549 if (elf_header.e_phnum == PN_XNUM
3550 && section_headers[0].sh_info != 0)
3551 elf_header.e_phnum = section_headers[0].sh_info;
4fbb74a6 3552 if (elf_header.e_shnum == SHN_UNDEF)
560f3c1c 3553 elf_header.e_shnum = section_headers[0].sh_size;
4fbb74a6 3554 if (elf_header.e_shstrndx == (SHN_XINDEX & 0xffff))
560f3c1c 3555 elf_header.e_shstrndx = section_headers[0].sh_link;
4fbb74a6 3556 else if (elf_header.e_shstrndx >= elf_header.e_shnum)
0b49d371 3557 elf_header.e_shstrndx = SHN_UNDEF;
560f3c1c
AM
3558 free (section_headers);
3559 section_headers = NULL;
252b5132 3560 }
103f02d3 3561
9ea033b2
NC
3562 return 1;
3563}
3564
252b5132 3565
9ea033b2 3566static int
91d6fa6a 3567get_32bit_program_headers (FILE * file, Elf_Internal_Phdr * pheaders)
9ea033b2 3568{
2cf0635d
NC
3569 Elf32_External_Phdr * phdrs;
3570 Elf32_External_Phdr * external;
3571 Elf_Internal_Phdr * internal;
b34976b6 3572 unsigned int i;
103f02d3 3573
3f5e193b
NC
3574 phdrs = (Elf32_External_Phdr *) get_data (NULL, file, elf_header.e_phoff,
3575 elf_header.e_phentsize,
3576 elf_header.e_phnum,
3577 _("program headers"));
a6e9f9df
AM
3578 if (!phdrs)
3579 return 0;
9ea033b2 3580
91d6fa6a 3581 for (i = 0, internal = pheaders, external = phdrs;
9ea033b2 3582 i < elf_header.e_phnum;
b34976b6 3583 i++, internal++, external++)
252b5132 3584 {
9ea033b2
NC
3585 internal->p_type = BYTE_GET (external->p_type);
3586 internal->p_offset = BYTE_GET (external->p_offset);
3587 internal->p_vaddr = BYTE_GET (external->p_vaddr);
3588 internal->p_paddr = BYTE_GET (external->p_paddr);
3589 internal->p_filesz = BYTE_GET (external->p_filesz);
3590 internal->p_memsz = BYTE_GET (external->p_memsz);
3591 internal->p_flags = BYTE_GET (external->p_flags);
3592 internal->p_align = BYTE_GET (external->p_align);
252b5132
RH
3593 }
3594
9ea033b2
NC
3595 free (phdrs);
3596
252b5132
RH
3597 return 1;
3598}
3599
9ea033b2 3600static int
91d6fa6a 3601get_64bit_program_headers (FILE * file, Elf_Internal_Phdr * pheaders)
9ea033b2 3602{
2cf0635d
NC
3603 Elf64_External_Phdr * phdrs;
3604 Elf64_External_Phdr * external;
3605 Elf_Internal_Phdr * internal;
b34976b6 3606 unsigned int i;
103f02d3 3607
3f5e193b
NC
3608 phdrs = (Elf64_External_Phdr *) get_data (NULL, file, elf_header.e_phoff,
3609 elf_header.e_phentsize,
3610 elf_header.e_phnum,
3611 _("program headers"));
a6e9f9df
AM
3612 if (!phdrs)
3613 return 0;
9ea033b2 3614
91d6fa6a 3615 for (i = 0, internal = pheaders, external = phdrs;
9ea033b2 3616 i < elf_header.e_phnum;
b34976b6 3617 i++, internal++, external++)
9ea033b2
NC
3618 {
3619 internal->p_type = BYTE_GET (external->p_type);
3620 internal->p_flags = BYTE_GET (external->p_flags);
66543521
AM
3621 internal->p_offset = BYTE_GET (external->p_offset);
3622 internal->p_vaddr = BYTE_GET (external->p_vaddr);
3623 internal->p_paddr = BYTE_GET (external->p_paddr);
3624 internal->p_filesz = BYTE_GET (external->p_filesz);
3625 internal->p_memsz = BYTE_GET (external->p_memsz);
3626 internal->p_align = BYTE_GET (external->p_align);
9ea033b2
NC
3627 }
3628
3629 free (phdrs);
3630
3631 return 1;
3632}
252b5132 3633
d93f0186
NC
3634/* Returns 1 if the program headers were read into `program_headers'. */
3635
3636static int
2cf0635d 3637get_program_headers (FILE * file)
d93f0186 3638{
2cf0635d 3639 Elf_Internal_Phdr * phdrs;
d93f0186
NC
3640
3641 /* Check cache of prior read. */
3642 if (program_headers != NULL)
3643 return 1;
3644
3f5e193b
NC
3645 phdrs = (Elf_Internal_Phdr *) cmalloc (elf_header.e_phnum,
3646 sizeof (Elf_Internal_Phdr));
d93f0186
NC
3647
3648 if (phdrs == NULL)
3649 {
3650 error (_("Out of memory\n"));
3651 return 0;
3652 }
3653
3654 if (is_32bit_elf
3655 ? get_32bit_program_headers (file, phdrs)
3656 : get_64bit_program_headers (file, phdrs))
3657 {
3658 program_headers = phdrs;
3659 return 1;
3660 }
3661
3662 free (phdrs);
3663 return 0;
3664}
3665
2f62977e
NC
3666/* Returns 1 if the program headers were loaded. */
3667
252b5132 3668static int
2cf0635d 3669process_program_headers (FILE * file)
252b5132 3670{
2cf0635d 3671 Elf_Internal_Phdr * segment;
b34976b6 3672 unsigned int i;
252b5132
RH
3673
3674 if (elf_header.e_phnum == 0)
3675 {
3676 if (do_segments)
3677 printf (_("\nThere are no program headers in this file.\n"));
2f62977e 3678 return 0;
252b5132
RH
3679 }
3680
3681 if (do_segments && !do_header)
3682 {
f7a99963
NC
3683 printf (_("\nElf file type is %s\n"), get_file_type (elf_header.e_type));
3684 printf (_("Entry point "));
3685 print_vma ((bfd_vma) elf_header.e_entry, PREFIX_HEX);
3686 printf (_("\nThere are %d program headers, starting at offset "),
3687 elf_header.e_phnum);
3688 print_vma ((bfd_vma) elf_header.e_phoff, DEC);
3689 printf ("\n");
252b5132
RH
3690 }
3691
d93f0186 3692 if (! get_program_headers (file))
252b5132 3693 return 0;
103f02d3 3694
252b5132
RH
3695 if (do_segments)
3696 {
3a1a2036
NC
3697 if (elf_header.e_phnum > 1)
3698 printf (_("\nProgram Headers:\n"));
3699 else
3700 printf (_("\nProgram Headers:\n"));
76da6bbe 3701
f7a99963
NC
3702 if (is_32bit_elf)
3703 printf
3704 (_(" Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align\n"));
d974e256
JJ
3705 else if (do_wide)
3706 printf
3707 (_(" Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align\n"));
f7a99963
NC
3708 else
3709 {
3710 printf
3711 (_(" Type Offset VirtAddr PhysAddr\n"));
3712 printf
3713 (_(" FileSiz MemSiz Flags Align\n"));
3714 }
252b5132
RH
3715 }
3716
252b5132 3717 dynamic_addr = 0;
1b228002 3718 dynamic_size = 0;
252b5132
RH
3719
3720 for (i = 0, segment = program_headers;
3721 i < elf_header.e_phnum;
b34976b6 3722 i++, segment++)
252b5132
RH
3723 {
3724 if (do_segments)
3725 {
103f02d3 3726 printf (" %-14.14s ", get_segment_type (segment->p_type));
f7a99963
NC
3727
3728 if (is_32bit_elf)
3729 {
3730 printf ("0x%6.6lx ", (unsigned long) segment->p_offset);
3731 printf ("0x%8.8lx ", (unsigned long) segment->p_vaddr);
3732 printf ("0x%8.8lx ", (unsigned long) segment->p_paddr);
3733 printf ("0x%5.5lx ", (unsigned long) segment->p_filesz);
3734 printf ("0x%5.5lx ", (unsigned long) segment->p_memsz);
3735 printf ("%c%c%c ",
3736 (segment->p_flags & PF_R ? 'R' : ' '),
3737 (segment->p_flags & PF_W ? 'W' : ' '),
3738 (segment->p_flags & PF_X ? 'E' : ' '));
3739 printf ("%#lx", (unsigned long) segment->p_align);
3740 }
d974e256
JJ
3741 else if (do_wide)
3742 {
3743 if ((unsigned long) segment->p_offset == segment->p_offset)
3744 printf ("0x%6.6lx ", (unsigned long) segment->p_offset);
3745 else
3746 {
3747 print_vma (segment->p_offset, FULL_HEX);
3748 putchar (' ');
3749 }
3750
3751 print_vma (segment->p_vaddr, FULL_HEX);
3752 putchar (' ');
3753 print_vma (segment->p_paddr, FULL_HEX);
3754 putchar (' ');
3755
3756 if ((unsigned long) segment->p_filesz == segment->p_filesz)
3757 printf ("0x%6.6lx ", (unsigned long) segment->p_filesz);
3758 else
3759 {
3760 print_vma (segment->p_filesz, FULL_HEX);
3761 putchar (' ');
3762 }
3763
3764 if ((unsigned long) segment->p_memsz == segment->p_memsz)
3765 printf ("0x%6.6lx", (unsigned long) segment->p_memsz);
3766 else
3767 {
3768 print_vma (segment->p_offset, FULL_HEX);
3769 }
3770
3771 printf (" %c%c%c ",
3772 (segment->p_flags & PF_R ? 'R' : ' '),
3773 (segment->p_flags & PF_W ? 'W' : ' '),
3774 (segment->p_flags & PF_X ? 'E' : ' '));
3775
3776 if ((unsigned long) segment->p_align == segment->p_align)
3777 printf ("%#lx", (unsigned long) segment->p_align);
3778 else
3779 {
3780 print_vma (segment->p_align, PREFIX_HEX);
3781 }
3782 }
f7a99963
NC
3783 else
3784 {
3785 print_vma (segment->p_offset, FULL_HEX);
3786 putchar (' ');
3787 print_vma (segment->p_vaddr, FULL_HEX);
3788 putchar (' ');
3789 print_vma (segment->p_paddr, FULL_HEX);
3790 printf ("\n ");
3791 print_vma (segment->p_filesz, FULL_HEX);
3792 putchar (' ');
3793 print_vma (segment->p_memsz, FULL_HEX);
3794 printf (" %c%c%c ",
3795 (segment->p_flags & PF_R ? 'R' : ' '),
3796 (segment->p_flags & PF_W ? 'W' : ' '),
3797 (segment->p_flags & PF_X ? 'E' : ' '));
3798 print_vma (segment->p_align, HEX);
3799 }
252b5132
RH
3800 }
3801
3802 switch (segment->p_type)
3803 {
252b5132
RH
3804 case PT_DYNAMIC:
3805 if (dynamic_addr)
3806 error (_("more than one dynamic segment\n"));
3807
20737c13
AM
3808 /* By default, assume that the .dynamic section is the first
3809 section in the DYNAMIC segment. */
3810 dynamic_addr = segment->p_offset;
3811 dynamic_size = segment->p_filesz;
3812
b2d38a17
NC
3813 /* Try to locate the .dynamic section. If there is
3814 a section header table, we can easily locate it. */
3815 if (section_headers != NULL)
3816 {
2cf0635d 3817 Elf_Internal_Shdr * sec;
b2d38a17 3818
89fac5e3
RS
3819 sec = find_section (".dynamic");
3820 if (sec == NULL || sec->sh_size == 0)
b2d38a17 3821 {
28f997cf
TG
3822 /* A corresponding .dynamic section is expected, but on
3823 IA-64/OpenVMS it is OK for it to be missing. */
3824 if (!is_ia64_vms ())
3825 error (_("no .dynamic section in the dynamic segment\n"));
b2d38a17
NC
3826 break;
3827 }
3828
42bb2e33 3829 if (sec->sh_type == SHT_NOBITS)
20737c13
AM
3830 {
3831 dynamic_size = 0;
3832 break;
3833 }
42bb2e33 3834
b2d38a17
NC
3835 dynamic_addr = sec->sh_offset;
3836 dynamic_size = sec->sh_size;
3837
3838 if (dynamic_addr < segment->p_offset
3839 || dynamic_addr > segment->p_offset + segment->p_filesz)
20737c13
AM
3840 warn (_("the .dynamic section is not contained"
3841 " within the dynamic segment\n"));
b2d38a17 3842 else if (dynamic_addr > segment->p_offset)
20737c13
AM
3843 warn (_("the .dynamic section is not the first section"
3844 " in the dynamic segment.\n"));
b2d38a17 3845 }
252b5132
RH
3846 break;
3847
3848 case PT_INTERP:
fb52b2f4
NC
3849 if (fseek (file, archive_file_offset + (long) segment->p_offset,
3850 SEEK_SET))
252b5132
RH
3851 error (_("Unable to find program interpreter name\n"));
3852 else
3853 {
f8eae8b2
L
3854 char fmt [32];
3855 int ret = snprintf (fmt, sizeof (fmt), "%%%ds", PATH_MAX);
3856
3857 if (ret >= (int) sizeof (fmt) || ret < 0)
591a748a 3858 error (_("Internal error: failed to create format string to display program interpreter\n"));
f8eae8b2 3859
252b5132 3860 program_interpreter[0] = 0;
7bd7b3ef
AM
3861 if (fscanf (file, fmt, program_interpreter) <= 0)
3862 error (_("Unable to read program interpreter name\n"));
252b5132
RH
3863
3864 if (do_segments)
3865 printf (_("\n [Requesting program interpreter: %s]"),
3866 program_interpreter);
3867 }
3868 break;
3869 }
3870
3871 if (do_segments)
3872 putc ('\n', stdout);
3873 }
3874
c256ffe7 3875 if (do_segments && section_headers != NULL && string_table != NULL)
252b5132
RH
3876 {
3877 printf (_("\n Section to Segment mapping:\n"));
3878 printf (_(" Segment Sections...\n"));
3879
252b5132
RH
3880 for (i = 0; i < elf_header.e_phnum; i++)
3881 {
9ad5cbcf 3882 unsigned int j;
2cf0635d 3883 Elf_Internal_Shdr * section;
252b5132
RH
3884
3885 segment = program_headers + i;
b391a3e3 3886 section = section_headers + 1;
252b5132
RH
3887
3888 printf (" %2.2d ", i);
3889
b34976b6 3890 for (j = 1; j < elf_header.e_shnum; j++, section++)
252b5132 3891 {
9a83a553
AM
3892 if (ELF_SECTION_SIZE (section, segment) != 0
3893 && ELF_SECTION_IN_SEGMENT (section, segment))
252b5132
RH
3894 printf ("%s ", SECTION_NAME (section));
3895 }
3896
3897 putc ('\n',stdout);
3898 }
3899 }
3900
252b5132
RH
3901 return 1;
3902}
3903
3904
d93f0186
NC
3905/* Find the file offset corresponding to VMA by using the program headers. */
3906
3907static long
2cf0635d 3908offset_from_vma (FILE * file, bfd_vma vma, bfd_size_type size)
d93f0186 3909{
2cf0635d 3910 Elf_Internal_Phdr * seg;
d93f0186
NC
3911
3912 if (! get_program_headers (file))
3913 {
3914 warn (_("Cannot interpret virtual addresses without program headers.\n"));
3915 return (long) vma;
3916 }
3917
3918 for (seg = program_headers;
3919 seg < program_headers + elf_header.e_phnum;
3920 ++seg)
3921 {
3922 if (seg->p_type != PT_LOAD)
3923 continue;
3924
3925 if (vma >= (seg->p_vaddr & -seg->p_align)
3926 && vma + size <= seg->p_vaddr + seg->p_filesz)
3927 return vma - seg->p_vaddr + seg->p_offset;
3928 }
3929
3930 warn (_("Virtual address 0x%lx not located in any PT_LOAD segment.\n"),
0af1713e 3931 (unsigned long) vma);
d93f0186
NC
3932 return (long) vma;
3933}
3934
3935
252b5132 3936static int
2cf0635d 3937get_32bit_section_headers (FILE * file, unsigned int num)
252b5132 3938{
2cf0635d
NC
3939 Elf32_External_Shdr * shdrs;
3940 Elf_Internal_Shdr * internal;
b34976b6 3941 unsigned int i;
252b5132 3942
3f5e193b
NC
3943 shdrs = (Elf32_External_Shdr *) get_data (NULL, file, elf_header.e_shoff,
3944 elf_header.e_shentsize, num,
3945 _("section headers"));
a6e9f9df
AM
3946 if (!shdrs)
3947 return 0;
252b5132 3948
3f5e193b
NC
3949 section_headers = (Elf_Internal_Shdr *) cmalloc (num,
3950 sizeof (Elf_Internal_Shdr));
252b5132
RH
3951
3952 if (section_headers == NULL)
3953 {
3954 error (_("Out of memory\n"));
3955 return 0;
3956 }
3957
3958 for (i = 0, internal = section_headers;
560f3c1c 3959 i < num;
b34976b6 3960 i++, internal++)
252b5132
RH
3961 {
3962 internal->sh_name = BYTE_GET (shdrs[i].sh_name);
3963 internal->sh_type = BYTE_GET (shdrs[i].sh_type);
3964 internal->sh_flags = BYTE_GET (shdrs[i].sh_flags);
3965 internal->sh_addr = BYTE_GET (shdrs[i].sh_addr);
3966 internal->sh_offset = BYTE_GET (shdrs[i].sh_offset);
3967 internal->sh_size = BYTE_GET (shdrs[i].sh_size);
3968 internal->sh_link = BYTE_GET (shdrs[i].sh_link);
3969 internal->sh_info = BYTE_GET (shdrs[i].sh_info);
3970 internal->sh_addralign = BYTE_GET (shdrs[i].sh_addralign);
3971 internal->sh_entsize = BYTE_GET (shdrs[i].sh_entsize);
3972 }
3973
3974 free (shdrs);
3975
3976 return 1;
3977}
3978
9ea033b2 3979static int
2cf0635d 3980get_64bit_section_headers (FILE * file, unsigned int num)
9ea033b2 3981{
2cf0635d
NC
3982 Elf64_External_Shdr * shdrs;
3983 Elf_Internal_Shdr * internal;
b34976b6 3984 unsigned int i;
9ea033b2 3985
3f5e193b
NC
3986 shdrs = (Elf64_External_Shdr *) get_data (NULL, file, elf_header.e_shoff,
3987 elf_header.e_shentsize, num,
3988 _("section headers"));
a6e9f9df
AM
3989 if (!shdrs)
3990 return 0;
9ea033b2 3991
3f5e193b
NC
3992 section_headers = (Elf_Internal_Shdr *) cmalloc (num,
3993 sizeof (Elf_Internal_Shdr));
9ea033b2
NC
3994
3995 if (section_headers == NULL)
3996 {
3997 error (_("Out of memory\n"));
3998 return 0;
3999 }
4000
4001 for (i = 0, internal = section_headers;
560f3c1c 4002 i < num;
b34976b6 4003 i++, internal++)
9ea033b2
NC
4004 {
4005 internal->sh_name = BYTE_GET (shdrs[i].sh_name);
4006 internal->sh_type = BYTE_GET (shdrs[i].sh_type);
66543521
AM
4007 internal->sh_flags = BYTE_GET (shdrs[i].sh_flags);
4008 internal->sh_addr = BYTE_GET (shdrs[i].sh_addr);
4009 internal->sh_size = BYTE_GET (shdrs[i].sh_size);
4010 internal->sh_entsize = BYTE_GET (shdrs[i].sh_entsize);
9ea033b2
NC
4011 internal->sh_link = BYTE_GET (shdrs[i].sh_link);
4012 internal->sh_info = BYTE_GET (shdrs[i].sh_info);
4013 internal->sh_offset = BYTE_GET (shdrs[i].sh_offset);
4014 internal->sh_addralign = BYTE_GET (shdrs[i].sh_addralign);
4015 }
4016
4017 free (shdrs);
4018
4019 return 1;
4020}
4021
252b5132 4022static Elf_Internal_Sym *
2cf0635d 4023get_32bit_elf_symbols (FILE * file, Elf_Internal_Shdr * section)
252b5132 4024{
9ad5cbcf 4025 unsigned long number;
2cf0635d
NC
4026 Elf32_External_Sym * esyms;
4027 Elf_External_Sym_Shndx * shndx;
4028 Elf_Internal_Sym * isyms;
4029 Elf_Internal_Sym * psym;
b34976b6 4030 unsigned int j;
252b5132 4031
3f5e193b
NC
4032 esyms = (Elf32_External_Sym *) get_data (NULL, file, section->sh_offset, 1,
4033 section->sh_size, _("symbols"));
a6e9f9df
AM
4034 if (!esyms)
4035 return NULL;
252b5132 4036
9ad5cbcf
AM
4037 shndx = NULL;
4038 if (symtab_shndx_hdr != NULL
4039 && (symtab_shndx_hdr->sh_link
4fbb74a6 4040 == (unsigned long) (section - section_headers)))
9ad5cbcf 4041 {
3f5e193b
NC
4042 shndx = (Elf_External_Sym_Shndx *) get_data (NULL, file,
4043 symtab_shndx_hdr->sh_offset,
4044 1, symtab_shndx_hdr->sh_size,
4045 _("symtab shndx"));
9ad5cbcf
AM
4046 if (!shndx)
4047 {
4048 free (esyms);
4049 return NULL;
4050 }
4051 }
4052
4053 number = section->sh_size / section->sh_entsize;
3f5e193b 4054 isyms = (Elf_Internal_Sym *) cmalloc (number, sizeof (Elf_Internal_Sym));
252b5132
RH
4055
4056 if (isyms == NULL)
4057 {
4058 error (_("Out of memory\n"));
9ad5cbcf
AM
4059 if (shndx)
4060 free (shndx);
252b5132 4061 free (esyms);
252b5132
RH
4062 return NULL;
4063 }
4064
4065 for (j = 0, psym = isyms;
4066 j < number;
b34976b6 4067 j++, psym++)
252b5132
RH
4068 {
4069 psym->st_name = BYTE_GET (esyms[j].st_name);
4070 psym->st_value = BYTE_GET (esyms[j].st_value);
4071 psym->st_size = BYTE_GET (esyms[j].st_size);
4072 psym->st_shndx = BYTE_GET (esyms[j].st_shndx);
4fbb74a6 4073 if (psym->st_shndx == (SHN_XINDEX & 0xffff) && shndx != NULL)
9ad5cbcf
AM
4074 psym->st_shndx
4075 = byte_get ((unsigned char *) &shndx[j], sizeof (shndx[j]));
4fbb74a6
AM
4076 else if (psym->st_shndx >= (SHN_LORESERVE & 0xffff))
4077 psym->st_shndx += SHN_LORESERVE - (SHN_LORESERVE & 0xffff);
252b5132
RH
4078 psym->st_info = BYTE_GET (esyms[j].st_info);
4079 psym->st_other = BYTE_GET (esyms[j].st_other);
4080 }
4081
9ad5cbcf
AM
4082 if (shndx)
4083 free (shndx);
252b5132
RH
4084 free (esyms);
4085
4086 return isyms;
4087}
4088
9ea033b2 4089static Elf_Internal_Sym *
2cf0635d 4090get_64bit_elf_symbols (FILE * file, Elf_Internal_Shdr * section)
9ea033b2 4091{
9ad5cbcf 4092 unsigned long number;
2cf0635d
NC
4093 Elf64_External_Sym * esyms;
4094 Elf_External_Sym_Shndx * shndx;
4095 Elf_Internal_Sym * isyms;
4096 Elf_Internal_Sym * psym;
b34976b6 4097 unsigned int j;
9ea033b2 4098
3f5e193b
NC
4099 esyms = (Elf64_External_Sym *) get_data (NULL, file, section->sh_offset, 1,
4100 section->sh_size, _("symbols"));
a6e9f9df
AM
4101 if (!esyms)
4102 return NULL;
9ea033b2 4103
9ad5cbcf
AM
4104 shndx = NULL;
4105 if (symtab_shndx_hdr != NULL
4106 && (symtab_shndx_hdr->sh_link
4fbb74a6 4107 == (unsigned long) (section - section_headers)))
9ad5cbcf 4108 {
3f5e193b
NC
4109 shndx = (Elf_External_Sym_Shndx *) get_data (NULL, file,
4110 symtab_shndx_hdr->sh_offset,
4111 1, symtab_shndx_hdr->sh_size,
4112 _("symtab shndx"));
9ad5cbcf
AM
4113 if (!shndx)
4114 {
4115 free (esyms);
4116 return NULL;
4117 }
4118 }
4119
4120 number = section->sh_size / section->sh_entsize;
3f5e193b 4121 isyms = (Elf_Internal_Sym *) cmalloc (number, sizeof (Elf_Internal_Sym));
9ea033b2
NC
4122
4123 if (isyms == NULL)
4124 {
4125 error (_("Out of memory\n"));
9ad5cbcf
AM
4126 if (shndx)
4127 free (shndx);
9ea033b2 4128 free (esyms);
9ea033b2
NC
4129 return NULL;
4130 }
4131
4132 for (j = 0, psym = isyms;
4133 j < number;
b34976b6 4134 j++, psym++)
9ea033b2
NC
4135 {
4136 psym->st_name = BYTE_GET (esyms[j].st_name);
4137 psym->st_info = BYTE_GET (esyms[j].st_info);
4138 psym->st_other = BYTE_GET (esyms[j].st_other);
4139 psym->st_shndx = BYTE_GET (esyms[j].st_shndx);
4fbb74a6 4140 if (psym->st_shndx == (SHN_XINDEX & 0xffff) && shndx != NULL)
9ad5cbcf
AM
4141 psym->st_shndx
4142 = byte_get ((unsigned char *) &shndx[j], sizeof (shndx[j]));
4fbb74a6
AM
4143 else if (psym->st_shndx >= (SHN_LORESERVE & 0xffff))
4144 psym->st_shndx += SHN_LORESERVE - (SHN_LORESERVE & 0xffff);
66543521
AM
4145 psym->st_value = BYTE_GET (esyms[j].st_value);
4146 psym->st_size = BYTE_GET (esyms[j].st_size);
9ea033b2
NC
4147 }
4148
9ad5cbcf
AM
4149 if (shndx)
4150 free (shndx);
9ea033b2
NC
4151 free (esyms);
4152
4153 return isyms;
4154}
4155
d1133906 4156static const char *
d3ba0551 4157get_elf_section_flags (bfd_vma sh_flags)
d1133906 4158{
5477e8a0 4159 static char buff[1024];
2cf0635d 4160 char * p = buff;
8d5ff12c 4161 int field_size = is_32bit_elf ? 8 : 16;
91d6fa6a
NC
4162 int sindex;
4163 int size = sizeof (buff) - (field_size + 4 + 1);
8d5ff12c
L
4164 bfd_vma os_flags = 0;
4165 bfd_vma proc_flags = 0;
4166 bfd_vma unknown_flags = 0;
148b93f2 4167 static const struct
5477e8a0 4168 {
2cf0635d 4169 const char * str;
5477e8a0
L
4170 int len;
4171 }
4172 flags [] =
4173 {
cfcac11d
NC
4174 /* 0 */ { STRING_COMMA_LEN ("WRITE") },
4175 /* 1 */ { STRING_COMMA_LEN ("ALLOC") },
4176 /* 2 */ { STRING_COMMA_LEN ("EXEC") },
4177 /* 3 */ { STRING_COMMA_LEN ("MERGE") },
4178 /* 4 */ { STRING_COMMA_LEN ("STRINGS") },
4179 /* 5 */ { STRING_COMMA_LEN ("INFO LINK") },
4180 /* 6 */ { STRING_COMMA_LEN ("LINK ORDER") },
4181 /* 7 */ { STRING_COMMA_LEN ("OS NONCONF") },
4182 /* 8 */ { STRING_COMMA_LEN ("GROUP") },
4183 /* 9 */ { STRING_COMMA_LEN ("TLS") },
4184 /* IA-64 specific. */
4185 /* 10 */ { STRING_COMMA_LEN ("SHORT") },
4186 /* 11 */ { STRING_COMMA_LEN ("NORECOV") },
4187 /* IA-64 OpenVMS specific. */
4188 /* 12 */ { STRING_COMMA_LEN ("VMS_GLOBAL") },
4189 /* 13 */ { STRING_COMMA_LEN ("VMS_OVERLAID") },
4190 /* 14 */ { STRING_COMMA_LEN ("VMS_SHARED") },
4191 /* 15 */ { STRING_COMMA_LEN ("VMS_VECTOR") },
4192 /* 16 */ { STRING_COMMA_LEN ("VMS_ALLOC_64BIT") },
4193 /* 17 */ { STRING_COMMA_LEN ("VMS_PROTECTED") },
18ae9cc1 4194 /* Generic. */
cfcac11d 4195 /* 18 */ { STRING_COMMA_LEN ("EXCLUDE") },
18ae9cc1 4196 /* SPARC specific. */
cfcac11d 4197 /* 19 */ { STRING_COMMA_LEN ("ORDERED") }
5477e8a0
L
4198 };
4199
4200 if (do_section_details)
4201 {
8d5ff12c
L
4202 sprintf (buff, "[%*.*lx]: ",
4203 field_size, field_size, (unsigned long) sh_flags);
4204 p += field_size + 4;
5477e8a0 4205 }
76da6bbe 4206
d1133906
NC
4207 while (sh_flags)
4208 {
4209 bfd_vma flag;
4210
4211 flag = sh_flags & - sh_flags;
4212 sh_flags &= ~ flag;
76da6bbe 4213
5477e8a0 4214 if (do_section_details)
d1133906 4215 {
5477e8a0
L
4216 switch (flag)
4217 {
91d6fa6a
NC
4218 case SHF_WRITE: sindex = 0; break;
4219 case SHF_ALLOC: sindex = 1; break;
4220 case SHF_EXECINSTR: sindex = 2; break;
4221 case SHF_MERGE: sindex = 3; break;
4222 case SHF_STRINGS: sindex = 4; break;
4223 case SHF_INFO_LINK: sindex = 5; break;
4224 case SHF_LINK_ORDER: sindex = 6; break;
4225 case SHF_OS_NONCONFORMING: sindex = 7; break;
4226 case SHF_GROUP: sindex = 8; break;
4227 case SHF_TLS: sindex = 9; break;
18ae9cc1 4228 case SHF_EXCLUDE: sindex = 18; break;
76da6bbe 4229
5477e8a0 4230 default:
91d6fa6a 4231 sindex = -1;
cfcac11d 4232 switch (elf_header.e_machine)
148b93f2 4233 {
cfcac11d 4234 case EM_IA_64:
148b93f2 4235 if (flag == SHF_IA_64_SHORT)
91d6fa6a 4236 sindex = 10;
148b93f2 4237 else if (flag == SHF_IA_64_NORECOV)
91d6fa6a 4238 sindex = 11;
148b93f2
NC
4239#ifdef BFD64
4240 else if (elf_header.e_ident[EI_OSABI] == ELFOSABI_OPENVMS)
4241 switch (flag)
4242 {
91d6fa6a
NC
4243 case SHF_IA_64_VMS_GLOBAL: sindex = 12; break;
4244 case SHF_IA_64_VMS_OVERLAID: sindex = 13; break;
4245 case SHF_IA_64_VMS_SHARED: sindex = 14; break;
4246 case SHF_IA_64_VMS_VECTOR: sindex = 15; break;
4247 case SHF_IA_64_VMS_ALLOC_64BIT: sindex = 16; break;
4248 case SHF_IA_64_VMS_PROTECTED: sindex = 17; break;
148b93f2
NC
4249 default: break;
4250 }
4251#endif
cfcac11d
NC
4252 break;
4253
caa83f8b
NC
4254 case EM_386:
4255 case EM_486:
4256 case EM_X86_64:
7f502d6c 4257 case EM_L1OM:
cfcac11d
NC
4258 case EM_OLD_SPARCV9:
4259 case EM_SPARC32PLUS:
4260 case EM_SPARCV9:
4261 case EM_SPARC:
18ae9cc1 4262 if (flag == SHF_ORDERED)
91d6fa6a 4263 sindex = 19;
cfcac11d
NC
4264 break;
4265 default:
4266 break;
148b93f2 4267 }
5477e8a0
L
4268 }
4269
91d6fa6a 4270 if (sindex != -1)
5477e8a0 4271 {
8d5ff12c
L
4272 if (p != buff + field_size + 4)
4273 {
4274 if (size < (10 + 2))
4275 abort ();
4276 size -= 2;
4277 *p++ = ',';
4278 *p++ = ' ';
4279 }
4280
91d6fa6a
NC
4281 size -= flags [sindex].len;
4282 p = stpcpy (p, flags [sindex].str);
5477e8a0 4283 }
3b22753a 4284 else if (flag & SHF_MASKOS)
8d5ff12c 4285 os_flags |= flag;
d1133906 4286 else if (flag & SHF_MASKPROC)
8d5ff12c 4287 proc_flags |= flag;
d1133906 4288 else
8d5ff12c 4289 unknown_flags |= flag;
5477e8a0
L
4290 }
4291 else
4292 {
4293 switch (flag)
4294 {
4295 case SHF_WRITE: *p = 'W'; break;
4296 case SHF_ALLOC: *p = 'A'; break;
4297 case SHF_EXECINSTR: *p = 'X'; break;
4298 case SHF_MERGE: *p = 'M'; break;
4299 case SHF_STRINGS: *p = 'S'; break;
4300 case SHF_INFO_LINK: *p = 'I'; break;
4301 case SHF_LINK_ORDER: *p = 'L'; break;
4302 case SHF_OS_NONCONFORMING: *p = 'O'; break;
4303 case SHF_GROUP: *p = 'G'; break;
4304 case SHF_TLS: *p = 'T'; break;
18ae9cc1 4305 case SHF_EXCLUDE: *p = 'E'; break;
5477e8a0
L
4306
4307 default:
8a9036a4
L
4308 if ((elf_header.e_machine == EM_X86_64
4309 || elf_header.e_machine == EM_L1OM)
5477e8a0
L
4310 && flag == SHF_X86_64_LARGE)
4311 *p = 'l';
4312 else if (flag & SHF_MASKOS)
4313 {
4314 *p = 'o';
4315 sh_flags &= ~ SHF_MASKOS;
4316 }
4317 else if (flag & SHF_MASKPROC)
4318 {
4319 *p = 'p';
4320 sh_flags &= ~ SHF_MASKPROC;
4321 }
4322 else
4323 *p = 'x';
4324 break;
4325 }
4326 p++;
d1133906
NC
4327 }
4328 }
76da6bbe 4329
8d5ff12c
L
4330 if (do_section_details)
4331 {
4332 if (os_flags)
4333 {
4334 size -= 5 + field_size;
4335 if (p != buff + field_size + 4)
4336 {
4337 if (size < (2 + 1))
4338 abort ();
4339 size -= 2;
4340 *p++ = ',';
4341 *p++ = ' ';
4342 }
4343 sprintf (p, "OS (%*.*lx)", field_size, field_size,
4344 (unsigned long) os_flags);
4345 p += 5 + field_size;
4346 }
4347 if (proc_flags)
4348 {
4349 size -= 7 + field_size;
4350 if (p != buff + field_size + 4)
4351 {
4352 if (size < (2 + 1))
4353 abort ();
4354 size -= 2;
4355 *p++ = ',';
4356 *p++ = ' ';
4357 }
4358 sprintf (p, "PROC (%*.*lx)", field_size, field_size,
4359 (unsigned long) proc_flags);
4360 p += 7 + field_size;
4361 }
4362 if (unknown_flags)
4363 {
4364 size -= 10 + field_size;
4365 if (p != buff + field_size + 4)
4366 {
4367 if (size < (2 + 1))
4368 abort ();
4369 size -= 2;
4370 *p++ = ',';
4371 *p++ = ' ';
4372 }
2b692964 4373 sprintf (p, _("UNKNOWN (%*.*lx)"), field_size, field_size,
8d5ff12c
L
4374 (unsigned long) unknown_flags);
4375 p += 10 + field_size;
4376 }
4377 }
4378
e9e44622 4379 *p = '\0';
d1133906
NC
4380 return buff;
4381}
4382
252b5132 4383static int
2cf0635d 4384process_section_headers (FILE * file)
252b5132 4385{
2cf0635d 4386 Elf_Internal_Shdr * section;
b34976b6 4387 unsigned int i;
252b5132
RH
4388
4389 section_headers = NULL;
4390
4391 if (elf_header.e_shnum == 0)
4392 {
4393 if (do_sections)
4394 printf (_("\nThere are no sections in this file.\n"));
4395
4396 return 1;
4397 }
4398
4399 if (do_sections && !do_header)
9ea033b2 4400 printf (_("There are %d section headers, starting at offset 0x%lx:\n"),
252b5132
RH
4401 elf_header.e_shnum, (unsigned long) elf_header.e_shoff);
4402
9ea033b2
NC
4403 if (is_32bit_elf)
4404 {
560f3c1c 4405 if (! get_32bit_section_headers (file, elf_header.e_shnum))
9ea033b2
NC
4406 return 0;
4407 }
560f3c1c 4408 else if (! get_64bit_section_headers (file, elf_header.e_shnum))
252b5132
RH
4409 return 0;
4410
4411 /* Read in the string table, so that we have names to display. */
0b49d371 4412 if (elf_header.e_shstrndx != SHN_UNDEF
4fbb74a6 4413 && elf_header.e_shstrndx < elf_header.e_shnum)
252b5132 4414 {
4fbb74a6 4415 section = section_headers + elf_header.e_shstrndx;
d40ac9bd 4416
c256ffe7
JJ
4417 if (section->sh_size != 0)
4418 {
3f5e193b
NC
4419 string_table = (char *) get_data (NULL, file, section->sh_offset,
4420 1, section->sh_size,
4421 _("string table"));
0de14b54 4422
c256ffe7
JJ
4423 string_table_length = string_table != NULL ? section->sh_size : 0;
4424 }
252b5132
RH
4425 }
4426
4427 /* Scan the sections for the dynamic symbol table
e3c8793a 4428 and dynamic string table and debug sections. */
252b5132
RH
4429 dynamic_symbols = NULL;
4430 dynamic_strings = NULL;
4431 dynamic_syminfo = NULL;
f1ef08cb 4432 symtab_shndx_hdr = NULL;
103f02d3 4433
89fac5e3
RS
4434 eh_addr_size = is_32bit_elf ? 4 : 8;
4435 switch (elf_header.e_machine)
4436 {
4437 case EM_MIPS:
4438 case EM_MIPS_RS3_LE:
4439 /* The 64-bit MIPS EABI uses a combination of 32-bit ELF and 64-bit
4440 FDE addresses. However, the ABI also has a semi-official ILP32
4441 variant for which the normal FDE address size rules apply.
4442
4443 GCC 4.0 marks EABI64 objects with a dummy .gcc_compiled_longXX
4444 section, where XX is the size of longs in bits. Unfortunately,
4445 earlier compilers provided no way of distinguishing ILP32 objects
4446 from LP64 objects, so if there's any doubt, we should assume that
4447 the official LP64 form is being used. */
4448 if ((elf_header.e_flags & EF_MIPS_ABI) == E_MIPS_ABI_EABI64
4449 && find_section (".gcc_compiled_long32") == NULL)
4450 eh_addr_size = 8;
4451 break;
0f56a26a
DD
4452
4453 case EM_H8_300:
4454 case EM_H8_300H:
4455 switch (elf_header.e_flags & EF_H8_MACH)
4456 {
4457 case E_H8_MACH_H8300:
4458 case E_H8_MACH_H8300HN:
4459 case E_H8_MACH_H8300SN:
4460 case E_H8_MACH_H8300SXN:
4461 eh_addr_size = 2;
4462 break;
4463 case E_H8_MACH_H8300H:
4464 case E_H8_MACH_H8300S:
4465 case E_H8_MACH_H8300SX:
4466 eh_addr_size = 4;
4467 break;
4468 }
f4236fe4
DD
4469 break;
4470
ff7eeb89 4471 case EM_M32C_OLD:
f4236fe4
DD
4472 case EM_M32C:
4473 switch (elf_header.e_flags & EF_M32C_CPU_MASK)
4474 {
4475 case EF_M32C_CPU_M16C:
4476 eh_addr_size = 2;
4477 break;
4478 }
4479 break;
89fac5e3
RS
4480 }
4481
08d8fa11
JJ
4482#define CHECK_ENTSIZE_VALUES(section, i, size32, size64) \
4483 do \
4484 { \
4485 size_t expected_entsize \
4486 = is_32bit_elf ? size32 : size64; \
4487 if (section->sh_entsize != expected_entsize) \
4488 error (_("Section %d has invalid sh_entsize %lx (expected %lx)\n"), \
4489 i, (unsigned long int) section->sh_entsize, \
4490 (unsigned long int) expected_entsize); \
4491 section->sh_entsize = expected_entsize; \
4492 } \
4493 while (0)
4494#define CHECK_ENTSIZE(section, i, type) \
4495 CHECK_ENTSIZE_VALUES (section, i, sizeof (Elf32_External_##type), \
4496 sizeof (Elf64_External_##type))
4497
252b5132
RH
4498 for (i = 0, section = section_headers;
4499 i < elf_header.e_shnum;
b34976b6 4500 i++, section++)
252b5132 4501 {
2cf0635d 4502 char * name = SECTION_NAME (section);
252b5132
RH
4503
4504 if (section->sh_type == SHT_DYNSYM)
4505 {
4506 if (dynamic_symbols != NULL)
4507 {
4508 error (_("File contains multiple dynamic symbol tables\n"));
4509 continue;
4510 }
4511
08d8fa11 4512 CHECK_ENTSIZE (section, i, Sym);
19936277 4513 num_dynamic_syms = section->sh_size / section->sh_entsize;
9ad5cbcf 4514 dynamic_symbols = GET_ELF_SYMBOLS (file, section);
252b5132
RH
4515 }
4516 else if (section->sh_type == SHT_STRTAB
18bd398b 4517 && streq (name, ".dynstr"))
252b5132
RH
4518 {
4519 if (dynamic_strings != NULL)
4520 {
4521 error (_("File contains multiple dynamic string tables\n"));
4522 continue;
4523 }
4524
3f5e193b
NC
4525 dynamic_strings = (char *) get_data (NULL, file, section->sh_offset,
4526 1, section->sh_size,
4527 _("dynamic strings"));
d79b3d50 4528 dynamic_strings_length = section->sh_size;
252b5132 4529 }
9ad5cbcf
AM
4530 else if (section->sh_type == SHT_SYMTAB_SHNDX)
4531 {
4532 if (symtab_shndx_hdr != NULL)
4533 {
4534 error (_("File contains multiple symtab shndx tables\n"));
4535 continue;
4536 }
4537 symtab_shndx_hdr = section;
4538 }
08d8fa11
JJ
4539 else if (section->sh_type == SHT_SYMTAB)
4540 CHECK_ENTSIZE (section, i, Sym);
4541 else if (section->sh_type == SHT_GROUP)
4542 CHECK_ENTSIZE_VALUES (section, i, GRP_ENTRY_SIZE, GRP_ENTRY_SIZE);
4543 else if (section->sh_type == SHT_REL)
4544 CHECK_ENTSIZE (section, i, Rel);
4545 else if (section->sh_type == SHT_RELA)
4546 CHECK_ENTSIZE (section, i, Rela);
252b5132 4547 else if ((do_debugging || do_debug_info || do_debug_abbrevs
f9f0e732 4548 || do_debug_lines || do_debug_pubnames || do_debug_pubtypes
cb8f3167 4549 || do_debug_aranges || do_debug_frames || do_debug_macinfo
a262ae96 4550 || do_debug_str || do_debug_loc || do_debug_ranges)
1b315056
CS
4551 && (const_strneq (name, ".debug_")
4552 || const_strneq (name, ".zdebug_")))
252b5132 4553 {
1b315056
CS
4554 if (name[1] == 'z')
4555 name += sizeof (".zdebug_") - 1;
4556 else
4557 name += sizeof (".debug_") - 1;
252b5132
RH
4558
4559 if (do_debugging
18bd398b 4560 || (do_debug_info && streq (name, "info"))
2b6f5997 4561 || (do_debug_info && streq (name, "types"))
18bd398b 4562 || (do_debug_abbrevs && streq (name, "abbrev"))
4cb93e3b 4563 || (do_debug_lines && streq (name, "line"))
18bd398b 4564 || (do_debug_pubnames && streq (name, "pubnames"))
f9f0e732 4565 || (do_debug_pubtypes && streq (name, "pubtypes"))
18bd398b
NC
4566 || (do_debug_aranges && streq (name, "aranges"))
4567 || (do_debug_ranges && streq (name, "ranges"))
4568 || (do_debug_frames && streq (name, "frame"))
4569 || (do_debug_macinfo && streq (name, "macinfo"))
4570 || (do_debug_str && streq (name, "str"))
4571 || (do_debug_loc && streq (name, "loc"))
252b5132 4572 )
09c11c86 4573 request_dump_bynumber (i, DEBUG_DUMP);
252b5132 4574 }
a262ae96 4575 /* Linkonce section to be combined with .debug_info at link time. */
09fd7e38 4576 else if ((do_debugging || do_debug_info)
0112cd26 4577 && const_strneq (name, ".gnu.linkonce.wi."))
09c11c86 4578 request_dump_bynumber (i, DEBUG_DUMP);
18bd398b 4579 else if (do_debug_frames && streq (name, ".eh_frame"))
09c11c86 4580 request_dump_bynumber (i, DEBUG_DUMP);
6f875884
TG
4581 /* Trace sections for Itanium VMS. */
4582 else if ((do_debugging || do_trace_info || do_trace_abbrevs
4583 || do_trace_aranges)
4584 && const_strneq (name, ".trace_"))
4585 {
4586 name += sizeof (".trace_") - 1;
4587
4588 if (do_debugging
4589 || (do_trace_info && streq (name, "info"))
4590 || (do_trace_abbrevs && streq (name, "abbrev"))
4591 || (do_trace_aranges && streq (name, "aranges"))
4592 )
4593 request_dump_bynumber (i, DEBUG_DUMP);
4594 }
4595
252b5132
RH
4596 }
4597
4598 if (! do_sections)
4599 return 1;
4600
3a1a2036
NC
4601 if (elf_header.e_shnum > 1)
4602 printf (_("\nSection Headers:\n"));
4603 else
4604 printf (_("\nSection Header:\n"));
76da6bbe 4605
f7a99963 4606 if (is_32bit_elf)
595cf52e 4607 {
5477e8a0 4608 if (do_section_details)
595cf52e
L
4609 {
4610 printf (_(" [Nr] Name\n"));
5477e8a0 4611 printf (_(" Type Addr Off Size ES Lk Inf Al\n"));
595cf52e
L
4612 }
4613 else
4614 printf
4615 (_(" [Nr] Name Type Addr Off Size ES Flg Lk Inf Al\n"));
4616 }
d974e256 4617 else if (do_wide)
595cf52e 4618 {
5477e8a0 4619 if (do_section_details)
595cf52e
L
4620 {
4621 printf (_(" [Nr] Name\n"));
5477e8a0 4622 printf (_(" Type Address Off Size ES Lk Inf Al\n"));
595cf52e
L
4623 }
4624 else
4625 printf
4626 (_(" [Nr] Name Type Address Off Size ES Flg Lk Inf Al\n"));
4627 }
f7a99963
NC
4628 else
4629 {
5477e8a0 4630 if (do_section_details)
595cf52e
L
4631 {
4632 printf (_(" [Nr] Name\n"));
5477e8a0
L
4633 printf (_(" Type Address Offset Link\n"));
4634 printf (_(" Size EntSize Info Align\n"));
595cf52e
L
4635 }
4636 else
4637 {
4638 printf (_(" [Nr] Name Type Address Offset\n"));
4639 printf (_(" Size EntSize Flags Link Info Align\n"));
4640 }
f7a99963 4641 }
252b5132 4642
5477e8a0
L
4643 if (do_section_details)
4644 printf (_(" Flags\n"));
4645
252b5132
RH
4646 for (i = 0, section = section_headers;
4647 i < elf_header.e_shnum;
b34976b6 4648 i++, section++)
252b5132 4649 {
5477e8a0 4650 if (do_section_details)
595cf52e
L
4651 {
4652 printf (" [%2u] %s\n",
4fbb74a6 4653 i,
595cf52e
L
4654 SECTION_NAME (section));
4655 if (is_32bit_elf || do_wide)
4656 printf (" %-15.15s ",
4657 get_section_type_name (section->sh_type));
4658 }
4659 else
b9eb56c1
NC
4660 printf ((do_wide ? " [%2u] %-17s %-15s "
4661 : " [%2u] %-17.17s %-15.15s "),
4fbb74a6 4662 i,
595cf52e
L
4663 SECTION_NAME (section),
4664 get_section_type_name (section->sh_type));
252b5132 4665
f7a99963
NC
4666 if (is_32bit_elf)
4667 {
cfcac11d
NC
4668 const char * link_too_big = NULL;
4669
f7a99963 4670 print_vma (section->sh_addr, LONG_HEX);
76da6bbe 4671
f7a99963
NC
4672 printf ( " %6.6lx %6.6lx %2.2lx",
4673 (unsigned long) section->sh_offset,
4674 (unsigned long) section->sh_size,
4675 (unsigned long) section->sh_entsize);
d1133906 4676
5477e8a0
L
4677 if (do_section_details)
4678 fputs (" ", stdout);
4679 else
4680 printf (" %3s ", get_elf_section_flags (section->sh_flags));
76da6bbe 4681
cfcac11d
NC
4682 if (section->sh_link >= elf_header.e_shnum)
4683 {
4684 link_too_big = "";
4685 /* The sh_link value is out of range. Normally this indicates
caa83f8b 4686 an error but it can have special values in Solaris binaries. */
cfcac11d
NC
4687 switch (elf_header.e_machine)
4688 {
caa83f8b
NC
4689 case EM_386:
4690 case EM_486:
4691 case EM_X86_64:
7f502d6c 4692 case EM_L1OM:
cfcac11d
NC
4693 case EM_OLD_SPARCV9:
4694 case EM_SPARC32PLUS:
4695 case EM_SPARCV9:
4696 case EM_SPARC:
4697 if (section->sh_link == (SHN_BEFORE & 0xffff))
4698 link_too_big = "BEFORE";
4699 else if (section->sh_link == (SHN_AFTER & 0xffff))
4700 link_too_big = "AFTER";
4701 break;
4702 default:
4703 break;
4704 }
4705 }
4706
4707 if (do_section_details)
4708 {
4709 if (link_too_big != NULL && * link_too_big)
4710 printf ("<%s> ", link_too_big);
4711 else
4712 printf ("%2u ", section->sh_link);
4713 printf ("%3u %2lu\n", section->sh_info,
4714 (unsigned long) section->sh_addralign);
4715 }
4716 else
4717 printf ("%2u %3u %2lu\n",
4718 section->sh_link,
4719 section->sh_info,
4720 (unsigned long) section->sh_addralign);
4721
4722 if (link_too_big && ! * link_too_big)
4723 warn (_("section %u: sh_link value of %u is larger than the number of sections\n"),
4724 i, section->sh_link);
f7a99963 4725 }
d974e256
JJ
4726 else if (do_wide)
4727 {
4728 print_vma (section->sh_addr, LONG_HEX);
4729
4730 if ((long) section->sh_offset == section->sh_offset)
4731 printf (" %6.6lx", (unsigned long) section->sh_offset);
4732 else
4733 {
4734 putchar (' ');
4735 print_vma (section->sh_offset, LONG_HEX);
4736 }
4737
4738 if ((unsigned long) section->sh_size == section->sh_size)
4739 printf (" %6.6lx", (unsigned long) section->sh_size);
4740 else
4741 {
4742 putchar (' ');
4743 print_vma (section->sh_size, LONG_HEX);
4744 }
4745
4746 if ((unsigned long) section->sh_entsize == section->sh_entsize)
4747 printf (" %2.2lx", (unsigned long) section->sh_entsize);
4748 else
4749 {
4750 putchar (' ');
4751 print_vma (section->sh_entsize, LONG_HEX);
4752 }
4753
5477e8a0
L
4754 if (do_section_details)
4755 fputs (" ", stdout);
4756 else
4757 printf (" %3s ", get_elf_section_flags (section->sh_flags));
d974e256 4758
72de5009 4759 printf ("%2u %3u ", section->sh_link, section->sh_info);
d974e256
JJ
4760
4761 if ((unsigned long) section->sh_addralign == section->sh_addralign)
72de5009 4762 printf ("%2lu\n", (unsigned long) section->sh_addralign);
d974e256
JJ
4763 else
4764 {
4765 print_vma (section->sh_addralign, DEC);
4766 putchar ('\n');
4767 }
4768 }
5477e8a0 4769 else if (do_section_details)
595cf52e 4770 {
5477e8a0 4771 printf (" %-15.15s ",
595cf52e 4772 get_section_type_name (section->sh_type));
595cf52e
L
4773 print_vma (section->sh_addr, LONG_HEX);
4774 if ((long) section->sh_offset == section->sh_offset)
5477e8a0 4775 printf (" %16.16lx", (unsigned long) section->sh_offset);
595cf52e
L
4776 else
4777 {
4778 printf (" ");
4779 print_vma (section->sh_offset, LONG_HEX);
4780 }
72de5009 4781 printf (" %u\n ", section->sh_link);
595cf52e 4782 print_vma (section->sh_size, LONG_HEX);
5477e8a0 4783 putchar (' ');
595cf52e
L
4784 print_vma (section->sh_entsize, LONG_HEX);
4785
72de5009
AM
4786 printf (" %-16u %lu\n",
4787 section->sh_info,
595cf52e
L
4788 (unsigned long) section->sh_addralign);
4789 }
f7a99963
NC
4790 else
4791 {
4792 putchar (' ');
4793 print_vma (section->sh_addr, LONG_HEX);
53c7db4b
KH
4794 if ((long) section->sh_offset == section->sh_offset)
4795 printf (" %8.8lx", (unsigned long) section->sh_offset);
4796 else
4797 {
4798 printf (" ");
4799 print_vma (section->sh_offset, LONG_HEX);
4800 }
f7a99963
NC
4801 printf ("\n ");
4802 print_vma (section->sh_size, LONG_HEX);
4803 printf (" ");
4804 print_vma (section->sh_entsize, LONG_HEX);
76da6bbe 4805
d1133906 4806 printf (" %3s ", get_elf_section_flags (section->sh_flags));
76da6bbe 4807
72de5009
AM
4808 printf (" %2u %3u %lu\n",
4809 section->sh_link,
4810 section->sh_info,
f7a99963
NC
4811 (unsigned long) section->sh_addralign);
4812 }
5477e8a0
L
4813
4814 if (do_section_details)
4815 printf (" %s\n", get_elf_section_flags (section->sh_flags));
252b5132
RH
4816 }
4817
5477e8a0
L
4818 if (!do_section_details)
4819 printf (_("Key to Flags:\n\
e3c8793a 4820 W (write), A (alloc), X (execute), M (merge), S (strings)\n\
1d0055ea 4821 I (info), L (link order), G (group), T (TLS), E (exclude), x (unknown)\n\
e3c8793a 4822 O (extra OS processing required) o (OS specific), p (processor specific)\n"));
d1133906 4823
252b5132
RH
4824 return 1;
4825}
4826
f5842774
L
4827static const char *
4828get_group_flags (unsigned int flags)
4829{
4830 static char buff[32];
4831 switch (flags)
4832 {
220453ec
AM
4833 case 0:
4834 return "";
4835
f5842774 4836 case GRP_COMDAT:
220453ec 4837 return "COMDAT ";
f5842774
L
4838
4839 default:
220453ec 4840 snprintf (buff, sizeof (buff), _("[<unknown>: 0x%x] "), flags);
f5842774
L
4841 break;
4842 }
4843 return buff;
4844}
4845
4846static int
2cf0635d 4847process_section_groups (FILE * file)
f5842774 4848{
2cf0635d 4849 Elf_Internal_Shdr * section;
f5842774 4850 unsigned int i;
2cf0635d
NC
4851 struct group * group;
4852 Elf_Internal_Shdr * symtab_sec;
4853 Elf_Internal_Shdr * strtab_sec;
4854 Elf_Internal_Sym * symtab;
4855 char * strtab;
c256ffe7 4856 size_t strtab_size;
d1f5c6e3
L
4857
4858 /* Don't process section groups unless needed. */
4859 if (!do_unwind && !do_section_groups)
4860 return 1;
f5842774
L
4861
4862 if (elf_header.e_shnum == 0)
4863 {
4864 if (do_section_groups)
d1f5c6e3 4865 printf (_("\nThere are no sections in this file.\n"));
f5842774
L
4866
4867 return 1;
4868 }
4869
4870 if (section_headers == NULL)
4871 {
4872 error (_("Section headers are not available!\n"));
4873 abort ();
4874 }
4875
3f5e193b
NC
4876 section_headers_groups = (struct group **) calloc (elf_header.e_shnum,
4877 sizeof (struct group *));
e4b17d5c
L
4878
4879 if (section_headers_groups == NULL)
4880 {
4881 error (_("Out of memory\n"));
4882 return 0;
4883 }
4884
f5842774 4885 /* Scan the sections for the group section. */
d1f5c6e3 4886 group_count = 0;
f5842774
L
4887 for (i = 0, section = section_headers;
4888 i < elf_header.e_shnum;
4889 i++, section++)
e4b17d5c
L
4890 if (section->sh_type == SHT_GROUP)
4891 group_count++;
4892
d1f5c6e3
L
4893 if (group_count == 0)
4894 {
4895 if (do_section_groups)
4896 printf (_("\nThere are no section groups in this file.\n"));
4897
4898 return 1;
4899 }
4900
3f5e193b 4901 section_groups = (struct group *) calloc (group_count, sizeof (struct group));
e4b17d5c
L
4902
4903 if (section_groups == NULL)
4904 {
4905 error (_("Out of memory\n"));
4906 return 0;
4907 }
4908
d1f5c6e3
L
4909 symtab_sec = NULL;
4910 strtab_sec = NULL;
4911 symtab = NULL;
4912 strtab = NULL;
c256ffe7 4913 strtab_size = 0;
e4b17d5c
L
4914 for (i = 0, section = section_headers, group = section_groups;
4915 i < elf_header.e_shnum;
4916 i++, section++)
f5842774
L
4917 {
4918 if (section->sh_type == SHT_GROUP)
4919 {
2cf0635d
NC
4920 char * name = SECTION_NAME (section);
4921 char * group_name;
4922 unsigned char * start;
4923 unsigned char * indices;
f5842774 4924 unsigned int entry, j, size;
2cf0635d
NC
4925 Elf_Internal_Shdr * sec;
4926 Elf_Internal_Sym * sym;
f5842774
L
4927
4928 /* Get the symbol table. */
4fbb74a6
AM
4929 if (section->sh_link >= elf_header.e_shnum
4930 || ((sec = section_headers + section->sh_link)->sh_type
c256ffe7 4931 != SHT_SYMTAB))
f5842774
L
4932 {
4933 error (_("Bad sh_link in group section `%s'\n"), name);
4934 continue;
4935 }
d1f5c6e3
L
4936
4937 if (symtab_sec != sec)
4938 {
4939 symtab_sec = sec;
4940 if (symtab)
4941 free (symtab);
4942 symtab = GET_ELF_SYMBOLS (file, symtab_sec);
4943 }
f5842774
L
4944
4945 sym = symtab + section->sh_info;
4946
4947 if (ELF_ST_TYPE (sym->st_info) == STT_SECTION)
4948 {
4fbb74a6
AM
4949 if (sym->st_shndx == 0
4950 || sym->st_shndx >= elf_header.e_shnum)
f5842774
L
4951 {
4952 error (_("Bad sh_info in group section `%s'\n"), name);
4953 continue;
4954 }
ba2685cc 4955
4fbb74a6 4956 group_name = SECTION_NAME (section_headers + sym->st_shndx);
c256ffe7
JJ
4957 strtab_sec = NULL;
4958 if (strtab)
4959 free (strtab);
f5842774 4960 strtab = NULL;
c256ffe7 4961 strtab_size = 0;
f5842774
L
4962 }
4963 else
4964 {
4965 /* Get the string table. */
4fbb74a6 4966 if (symtab_sec->sh_link >= elf_header.e_shnum)
c256ffe7
JJ
4967 {
4968 strtab_sec = NULL;
4969 if (strtab)
4970 free (strtab);
4971 strtab = NULL;
4972 strtab_size = 0;
4973 }
4974 else if (strtab_sec
4fbb74a6 4975 != (sec = section_headers + symtab_sec->sh_link))
d1f5c6e3
L
4976 {
4977 strtab_sec = sec;
4978 if (strtab)
4979 free (strtab);
3f5e193b
NC
4980 strtab = (char *) get_data (NULL, file, strtab_sec->sh_offset,
4981 1, strtab_sec->sh_size,
4982 _("string table"));
c256ffe7 4983 strtab_size = strtab != NULL ? strtab_sec->sh_size : 0;
d1f5c6e3 4984 }
c256ffe7 4985 group_name = sym->st_name < strtab_size
2b692964 4986 ? strtab + sym->st_name : _("<corrupt>");
f5842774
L
4987 }
4988
3f5e193b
NC
4989 start = (unsigned char *) get_data (NULL, file, section->sh_offset,
4990 1, section->sh_size,
4991 _("section data"));
f5842774
L
4992
4993 indices = start;
4994 size = (section->sh_size / section->sh_entsize) - 1;
4995 entry = byte_get (indices, 4);
4996 indices += 4;
e4b17d5c
L
4997
4998 if (do_section_groups)
4999 {
2b692964 5000 printf (_("\n%sgroup section [%5u] `%s' [%s] contains %u sections:\n"),
391cb864 5001 get_group_flags (entry), i, name, group_name, size);
ba2685cc 5002
e4b17d5c
L
5003 printf (_(" [Index] Name\n"));
5004 }
5005
5006 group->group_index = i;
5007
f5842774
L
5008 for (j = 0; j < size; j++)
5009 {
2cf0635d 5010 struct group_list * g;
e4b17d5c 5011
f5842774
L
5012 entry = byte_get (indices, 4);
5013 indices += 4;
5014
4fbb74a6 5015 if (entry >= elf_header.e_shnum)
391cb864
L
5016 {
5017 error (_("section [%5u] in group section [%5u] > maximum section [%5u]\n"),
5018 entry, i, elf_header.e_shnum - 1);
5019 continue;
5020 }
391cb864 5021
4fbb74a6 5022 if (section_headers_groups [entry] != NULL)
e4b17d5c 5023 {
d1f5c6e3
L
5024 if (entry)
5025 {
391cb864
L
5026 error (_("section [%5u] in group section [%5u] already in group section [%5u]\n"),
5027 entry, i,
4fbb74a6 5028 section_headers_groups [entry]->group_index);
d1f5c6e3
L
5029 continue;
5030 }
5031 else
5032 {
5033 /* Intel C/C++ compiler may put section 0 in a
5034 section group. We just warn it the first time
5035 and ignore it afterwards. */
5036 static int warned = 0;
5037 if (!warned)
5038 {
5039 error (_("section 0 in group section [%5u]\n"),
4fbb74a6 5040 section_headers_groups [entry]->group_index);
d1f5c6e3
L
5041 warned++;
5042 }
5043 }
e4b17d5c
L
5044 }
5045
4fbb74a6 5046 section_headers_groups [entry] = group;
e4b17d5c
L
5047
5048 if (do_section_groups)
5049 {
4fbb74a6 5050 sec = section_headers + entry;
c256ffe7 5051 printf (" [%5u] %s\n", entry, SECTION_NAME (sec));
ba2685cc
AM
5052 }
5053
3f5e193b 5054 g = (struct group_list *) xmalloc (sizeof (struct group_list));
e4b17d5c
L
5055 g->section_index = entry;
5056 g->next = group->root;
5057 group->root = g;
f5842774
L
5058 }
5059
f5842774
L
5060 if (start)
5061 free (start);
e4b17d5c
L
5062
5063 group++;
f5842774
L
5064 }
5065 }
5066
d1f5c6e3
L
5067 if (symtab)
5068 free (symtab);
5069 if (strtab)
5070 free (strtab);
f5842774
L
5071 return 1;
5072}
5073
28f997cf
TG
5074/* Data used to display dynamic fixups. */
5075
5076struct ia64_vms_dynfixup
5077{
5078 bfd_vma needed_ident; /* Library ident number. */
5079 bfd_vma needed; /* Index in the dstrtab of the library name. */
5080 bfd_vma fixup_needed; /* Index of the library. */
5081 bfd_vma fixup_rela_cnt; /* Number of fixups. */
5082 bfd_vma fixup_rela_off; /* Fixups offset in the dynamic segment. */
5083};
5084
5085/* Data used to display dynamic relocations. */
5086
5087struct ia64_vms_dynimgrela
5088{
5089 bfd_vma img_rela_cnt; /* Number of relocations. */
5090 bfd_vma img_rela_off; /* Reloc offset in the dynamic segment. */
5091};
5092
5093/* Display IA-64 OpenVMS dynamic fixups (used to dynamically link a shared
5094 library). */
5095
5096static void
5097dump_ia64_vms_dynamic_fixups (FILE *file, struct ia64_vms_dynfixup *fixup,
5098 const char *strtab, unsigned int strtab_sz)
5099{
5100 Elf64_External_VMS_IMAGE_FIXUP *imfs;
5101 long i;
5102 const char *lib_name;
5103
5104 imfs = get_data (NULL, file, dynamic_addr + fixup->fixup_rela_off,
5105 1, fixup->fixup_rela_cnt * sizeof (*imfs),
5106 _("dynamic section image fixups"));
5107 if (!imfs)
5108 return;
5109
5110 if (fixup->needed < strtab_sz)
5111 lib_name = strtab + fixup->needed;
5112 else
5113 {
5114 warn ("corrupt library name index of 0x%lx found in dynamic entry",
7f01b0c6 5115 (unsigned long) fixup->needed);
28f997cf
TG
5116 lib_name = "???";
5117 }
5118 printf (_("\nImage fixups for needed library #%d: %s - ident: %lx\n"),
5119 (int) fixup->fixup_needed, lib_name, (long) fixup->needed_ident);
5120 printf
5121 (_("Seg Offset Type SymVec DataType\n"));
5122
5123 for (i = 0; i < (long) fixup->fixup_rela_cnt; i++)
5124 {
5125 unsigned int type;
5126 const char *rtype;
5127
5128 printf ("%3u ", (unsigned) BYTE_GET (imfs [i].fixup_seg));
5129 printf_vma ((bfd_vma) BYTE_GET (imfs [i].fixup_offset));
5130 type = BYTE_GET (imfs [i].type);
5131 rtype = elf_ia64_reloc_type (type);
5132 if (rtype == NULL)
5133 printf (" 0x%08x ", type);
5134 else
5135 printf (" %-32s ", rtype);
5136 printf ("%6u ", (unsigned) BYTE_GET (imfs [i].symvec_index));
5137 printf ("0x%08x\n", (unsigned) BYTE_GET (imfs [i].data_type));
5138 }
5139
5140 free (imfs);
5141}
5142
5143/* Display IA-64 OpenVMS dynamic relocations (used to relocate an image). */
5144
5145static void
5146dump_ia64_vms_dynamic_relocs (FILE *file, struct ia64_vms_dynimgrela *imgrela)
5147{
5148 Elf64_External_VMS_IMAGE_RELA *imrs;
5149 long i;
5150
5151 imrs = get_data (NULL, file, dynamic_addr + imgrela->img_rela_off,
5152 1, imgrela->img_rela_cnt * sizeof (*imrs),
5153 _("dynamic section image relas"));
5154 if (!imrs)
5155 return;
5156
5157 printf (_("\nImage relocs\n"));
5158 printf
5159 (_("Seg Offset Type Addend Seg Sym Off\n"));
5160
5161 for (i = 0; i < (long) imgrela->img_rela_cnt; i++)
5162 {
5163 unsigned int type;
5164 const char *rtype;
5165
5166 printf ("%3u ", (unsigned) BYTE_GET (imrs [i].rela_seg));
5167 printf ("%08" BFD_VMA_FMT "x ",
5168 (bfd_vma) BYTE_GET (imrs [i].rela_offset));
5169 type = BYTE_GET (imrs [i].type);
5170 rtype = elf_ia64_reloc_type (type);
5171 if (rtype == NULL)
5172 printf ("0x%08x ", type);
5173 else
5174 printf ("%-31s ", rtype);
5175 print_vma (BYTE_GET (imrs [i].addend), FULL_HEX);
5176 printf ("%3u ", (unsigned) BYTE_GET (imrs [i].sym_seg));
5177 printf ("%08" BFD_VMA_FMT "x\n",
5178 (bfd_vma) BYTE_GET (imrs [i].sym_offset));
5179 }
5180
5181 free (imrs);
5182}
5183
5184/* Display IA-64 OpenVMS dynamic relocations and fixups. */
5185
5186static int
5187process_ia64_vms_dynamic_relocs (FILE *file)
5188{
5189 struct ia64_vms_dynfixup fixup;
5190 struct ia64_vms_dynimgrela imgrela;
5191 Elf_Internal_Dyn *entry;
5192 int res = 0;
5193 bfd_vma strtab_off = 0;
5194 bfd_vma strtab_sz = 0;
5195 char *strtab = NULL;
5196
5197 memset (&fixup, 0, sizeof (fixup));
5198 memset (&imgrela, 0, sizeof (imgrela));
5199
5200 /* Note: the order of the entries is specified by the OpenVMS specs. */
5201 for (entry = dynamic_section;
5202 entry < dynamic_section + dynamic_nent;
5203 entry++)
5204 {
5205 switch (entry->d_tag)
5206 {
5207 case DT_IA_64_VMS_STRTAB_OFFSET:
5208 strtab_off = entry->d_un.d_val;
5209 break;
5210 case DT_STRSZ:
5211 strtab_sz = entry->d_un.d_val;
5212 if (strtab == NULL)
5213 strtab = get_data (NULL, file, dynamic_addr + strtab_off,
5214 1, strtab_sz, _("dynamic string section"));
5215 break;
5216
5217 case DT_IA_64_VMS_NEEDED_IDENT:
5218 fixup.needed_ident = entry->d_un.d_val;
5219 break;
5220 case DT_NEEDED:
5221 fixup.needed = entry->d_un.d_val;
5222 break;
5223 case DT_IA_64_VMS_FIXUP_NEEDED:
5224 fixup.fixup_needed = entry->d_un.d_val;
5225 break;
5226 case DT_IA_64_VMS_FIXUP_RELA_CNT:
5227 fixup.fixup_rela_cnt = entry->d_un.d_val;
5228 break;
5229 case DT_IA_64_VMS_FIXUP_RELA_OFF:
5230 fixup.fixup_rela_off = entry->d_un.d_val;
5231 res++;
5232 dump_ia64_vms_dynamic_fixups (file, &fixup, strtab, strtab_sz);
5233 break;
5234
5235 case DT_IA_64_VMS_IMG_RELA_CNT:
5236 imgrela.img_rela_cnt = entry->d_un.d_val;
5237 break;
5238 case DT_IA_64_VMS_IMG_RELA_OFF:
5239 imgrela.img_rela_off = entry->d_un.d_val;
5240 res++;
5241 dump_ia64_vms_dynamic_relocs (file, &imgrela);
5242 break;
5243
5244 default:
5245 break;
5246 }
5247 }
5248
5249 if (strtab != NULL)
5250 free (strtab);
5251
5252 return res;
5253}
5254
85b1c36d 5255static struct
566b0d53 5256{
2cf0635d 5257 const char * name;
566b0d53
L
5258 int reloc;
5259 int size;
5260 int rela;
5261} dynamic_relocations [] =
5262{
5263 { "REL", DT_REL, DT_RELSZ, FALSE },
5264 { "RELA", DT_RELA, DT_RELASZ, TRUE },
5265 { "PLT", DT_JMPREL, DT_PLTRELSZ, UNKNOWN }
5266};
5267
252b5132 5268/* Process the reloc section. */
18bd398b 5269
252b5132 5270static int
2cf0635d 5271process_relocs (FILE * file)
252b5132 5272{
b34976b6
AM
5273 unsigned long rel_size;
5274 unsigned long rel_offset;
252b5132
RH
5275
5276
5277 if (!do_reloc)
5278 return 1;
5279
5280 if (do_using_dynamic)
5281 {
566b0d53 5282 int is_rela;
2cf0635d 5283 const char * name;
566b0d53
L
5284 int has_dynamic_reloc;
5285 unsigned int i;
0de14b54 5286
566b0d53 5287 has_dynamic_reloc = 0;
252b5132 5288
566b0d53 5289 for (i = 0; i < ARRAY_SIZE (dynamic_relocations); i++)
252b5132 5290 {
566b0d53
L
5291 is_rela = dynamic_relocations [i].rela;
5292 name = dynamic_relocations [i].name;
5293 rel_size = dynamic_info [dynamic_relocations [i].size];
5294 rel_offset = dynamic_info [dynamic_relocations [i].reloc];
103f02d3 5295
566b0d53
L
5296 has_dynamic_reloc |= rel_size;
5297
5298 if (is_rela == UNKNOWN)
aa903cfb 5299 {
566b0d53
L
5300 if (dynamic_relocations [i].reloc == DT_JMPREL)
5301 switch (dynamic_info[DT_PLTREL])
5302 {
5303 case DT_REL:
5304 is_rela = FALSE;
5305 break;
5306 case DT_RELA:
5307 is_rela = TRUE;
5308 break;
5309 }
aa903cfb 5310 }
252b5132 5311
566b0d53
L
5312 if (rel_size)
5313 {
5314 printf
5315 (_("\n'%s' relocation section at offset 0x%lx contains %ld bytes:\n"),
5316 name, rel_offset, rel_size);
252b5132 5317
d93f0186
NC
5318 dump_relocations (file,
5319 offset_from_vma (file, rel_offset, rel_size),
5320 rel_size,
566b0d53 5321 dynamic_symbols, num_dynamic_syms,
d79b3d50 5322 dynamic_strings, dynamic_strings_length, is_rela);
566b0d53 5323 }
252b5132 5324 }
566b0d53 5325
28f997cf
TG
5326 if (is_ia64_vms ())
5327 has_dynamic_reloc |= process_ia64_vms_dynamic_relocs (file);
5328
566b0d53 5329 if (! has_dynamic_reloc)
252b5132
RH
5330 printf (_("\nThere are no dynamic relocations in this file.\n"));
5331 }
5332 else
5333 {
2cf0635d 5334 Elf_Internal_Shdr * section;
b34976b6
AM
5335 unsigned long i;
5336 int found = 0;
252b5132
RH
5337
5338 for (i = 0, section = section_headers;
5339 i < elf_header.e_shnum;
b34976b6 5340 i++, section++)
252b5132
RH
5341 {
5342 if ( section->sh_type != SHT_RELA
5343 && section->sh_type != SHT_REL)
5344 continue;
5345
5346 rel_offset = section->sh_offset;
5347 rel_size = section->sh_size;
5348
5349 if (rel_size)
5350 {
2cf0635d 5351 Elf_Internal_Shdr * strsec;
b34976b6 5352 int is_rela;
103f02d3 5353
252b5132
RH
5354 printf (_("\nRelocation section "));
5355
5356 if (string_table == NULL)
19936277 5357 printf ("%d", section->sh_name);
252b5132 5358 else
3a1a2036 5359 printf (_("'%s'"), SECTION_NAME (section));
252b5132
RH
5360
5361 printf (_(" at offset 0x%lx contains %lu entries:\n"),
5362 rel_offset, (unsigned long) (rel_size / section->sh_entsize));
5363
d79b3d50
NC
5364 is_rela = section->sh_type == SHT_RELA;
5365
4fbb74a6
AM
5366 if (section->sh_link != 0
5367 && section->sh_link < elf_header.e_shnum)
af3fc3bc 5368 {
2cf0635d
NC
5369 Elf_Internal_Shdr * symsec;
5370 Elf_Internal_Sym * symtab;
d79b3d50 5371 unsigned long nsyms;
c256ffe7 5372 unsigned long strtablen = 0;
2cf0635d 5373 char * strtab = NULL;
57346661 5374
4fbb74a6 5375 symsec = section_headers + section->sh_link;
08d8fa11
JJ
5376 if (symsec->sh_type != SHT_SYMTAB
5377 && symsec->sh_type != SHT_DYNSYM)
5378 continue;
5379
af3fc3bc 5380 nsyms = symsec->sh_size / symsec->sh_entsize;
9ad5cbcf 5381 symtab = GET_ELF_SYMBOLS (file, symsec);
252b5132 5382
af3fc3bc
AM
5383 if (symtab == NULL)
5384 continue;
252b5132 5385
4fbb74a6
AM
5386 if (symsec->sh_link != 0
5387 && symsec->sh_link < elf_header.e_shnum)
c256ffe7 5388 {
4fbb74a6 5389 strsec = section_headers + symsec->sh_link;
103f02d3 5390
3f5e193b
NC
5391 strtab = (char *) get_data (NULL, file, strsec->sh_offset,
5392 1, strsec->sh_size,
5393 _("string table"));
c256ffe7
JJ
5394 strtablen = strtab == NULL ? 0 : strsec->sh_size;
5395 }
252b5132 5396
d79b3d50
NC
5397 dump_relocations (file, rel_offset, rel_size,
5398 symtab, nsyms, strtab, strtablen, is_rela);
5399 if (strtab)
5400 free (strtab);
5401 free (symtab);
5402 }
5403 else
5404 dump_relocations (file, rel_offset, rel_size,
5405 NULL, 0, NULL, 0, is_rela);
252b5132
RH
5406
5407 found = 1;
5408 }
5409 }
5410
5411 if (! found)
5412 printf (_("\nThere are no relocations in this file.\n"));
5413 }
5414
5415 return 1;
5416}
5417
57346661
AM
5418/* Process the unwind section. */
5419
4d6ed7c8
NC
5420#include "unwind-ia64.h"
5421
5422/* An absolute address consists of a section and an offset. If the
5423 section is NULL, the offset itself is the address, otherwise, the
5424 address equals to LOAD_ADDRESS(section) + offset. */
5425
5426struct absaddr
5427 {
5428 unsigned short section;
5429 bfd_vma offset;
5430 };
5431
1949de15
L
5432#define ABSADDR(a) \
5433 ((a).section \
5434 ? section_headers [(a).section].sh_addr + (a).offset \
5435 : (a).offset)
5436
3f5e193b
NC
5437struct ia64_unw_table_entry
5438 {
5439 struct absaddr start;
5440 struct absaddr end;
5441 struct absaddr info;
5442 };
5443
57346661 5444struct ia64_unw_aux_info
4d6ed7c8 5445 {
3f5e193b
NC
5446
5447 struct ia64_unw_table_entry *table; /* Unwind table. */
b34976b6 5448 unsigned long table_len; /* Length of unwind table. */
2cf0635d 5449 unsigned char * info; /* Unwind info. */
b34976b6
AM
5450 unsigned long info_size; /* Size of unwind info. */
5451 bfd_vma info_addr; /* starting address of unwind info. */
5452 bfd_vma seg_base; /* Starting address of segment. */
2cf0635d 5453 Elf_Internal_Sym * symtab; /* The symbol table. */
b34976b6 5454 unsigned long nsyms; /* Number of symbols. */
2cf0635d 5455 char * strtab; /* The string table. */
b34976b6 5456 unsigned long strtab_size; /* Size of string table. */
4d6ed7c8
NC
5457 };
5458
4d6ed7c8 5459static void
2cf0635d 5460find_symbol_for_address (Elf_Internal_Sym * symtab,
57346661 5461 unsigned long nsyms,
2cf0635d 5462 const char * strtab,
57346661 5463 unsigned long strtab_size,
d3ba0551 5464 struct absaddr addr,
2cf0635d
NC
5465 const char ** symname,
5466 bfd_vma * offset)
4d6ed7c8 5467{
d3ba0551 5468 bfd_vma dist = 0x100000;
2cf0635d
NC
5469 Elf_Internal_Sym * sym;
5470 Elf_Internal_Sym * best = NULL;
4d6ed7c8
NC
5471 unsigned long i;
5472
0b6ae522
DJ
5473 REMOVE_ARCH_BITS (addr.offset);
5474
57346661 5475 for (i = 0, sym = symtab; i < nsyms; ++i, ++sym)
4d6ed7c8 5476 {
0b6ae522
DJ
5477 bfd_vma value = sym->st_value;
5478
5479 REMOVE_ARCH_BITS (value);
5480
4d6ed7c8
NC
5481 if (ELF_ST_TYPE (sym->st_info) == STT_FUNC
5482 && sym->st_name != 0
5483 && (addr.section == SHN_UNDEF || addr.section == sym->st_shndx)
0b6ae522
DJ
5484 && addr.offset >= value
5485 && addr.offset - value < dist)
4d6ed7c8
NC
5486 {
5487 best = sym;
0b6ae522 5488 dist = addr.offset - value;
4d6ed7c8
NC
5489 if (!dist)
5490 break;
5491 }
5492 }
5493 if (best)
5494 {
57346661 5495 *symname = (best->st_name >= strtab_size
2b692964 5496 ? _("<corrupt>") : strtab + best->st_name);
4d6ed7c8
NC
5497 *offset = dist;
5498 return;
5499 }
5500 *symname = NULL;
5501 *offset = addr.offset;
5502}
5503
5504static void
2cf0635d 5505dump_ia64_unwind (struct ia64_unw_aux_info * aux)
4d6ed7c8 5506{
2cf0635d 5507 struct ia64_unw_table_entry * tp;
4d6ed7c8 5508 int in_body;
7036c0e1 5509
4d6ed7c8
NC
5510 for (tp = aux->table; tp < aux->table + aux->table_len; ++tp)
5511 {
5512 bfd_vma stamp;
5513 bfd_vma offset;
2cf0635d
NC
5514 const unsigned char * dp;
5515 const unsigned char * head;
5516 const char * procname;
4d6ed7c8 5517
57346661
AM
5518 find_symbol_for_address (aux->symtab, aux->nsyms, aux->strtab,
5519 aux->strtab_size, tp->start, &procname, &offset);
4d6ed7c8
NC
5520
5521 fputs ("\n<", stdout);
5522
5523 if (procname)
5524 {
5525 fputs (procname, stdout);
5526
5527 if (offset)
5528 printf ("+%lx", (unsigned long) offset);
5529 }
5530
5531 fputs (">: [", stdout);
5532 print_vma (tp->start.offset, PREFIX_HEX);
5533 fputc ('-', stdout);
5534 print_vma (tp->end.offset, PREFIX_HEX);
86f55779 5535 printf ("], info at +0x%lx\n",
4d6ed7c8
NC
5536 (unsigned long) (tp->info.offset - aux->seg_base));
5537
1949de15 5538 head = aux->info + (ABSADDR (tp->info) - aux->info_addr);
a4a00738 5539 stamp = byte_get ((unsigned char *) head, sizeof (stamp));
4d6ed7c8 5540
86f55779 5541 printf (" v%u, flags=0x%lx (%s%s), len=%lu bytes\n",
4d6ed7c8
NC
5542 (unsigned) UNW_VER (stamp),
5543 (unsigned long) ((stamp & UNW_FLAG_MASK) >> 32),
5544 UNW_FLAG_EHANDLER (stamp) ? " ehandler" : "",
5545 UNW_FLAG_UHANDLER (stamp) ? " uhandler" : "",
89fac5e3 5546 (unsigned long) (eh_addr_size * UNW_LENGTH (stamp)));
4d6ed7c8
NC
5547
5548 if (UNW_VER (stamp) != 1)
5549 {
2b692964 5550 printf (_("\tUnknown version.\n"));
4d6ed7c8
NC
5551 continue;
5552 }
5553
5554 in_body = 0;
89fac5e3 5555 for (dp = head + 8; dp < head + 8 + eh_addr_size * UNW_LENGTH (stamp);)
4d6ed7c8
NC
5556 dp = unw_decode (dp, in_body, & in_body);
5557 }
5558}
5559
5560static int
2cf0635d
NC
5561slurp_ia64_unwind_table (FILE * file,
5562 struct ia64_unw_aux_info * aux,
5563 Elf_Internal_Shdr * sec)
4d6ed7c8 5564{
89fac5e3 5565 unsigned long size, nrelas, i;
2cf0635d
NC
5566 Elf_Internal_Phdr * seg;
5567 struct ia64_unw_table_entry * tep;
5568 Elf_Internal_Shdr * relsec;
5569 Elf_Internal_Rela * rela;
5570 Elf_Internal_Rela * rp;
5571 unsigned char * table;
5572 unsigned char * tp;
5573 Elf_Internal_Sym * sym;
5574 const char * relname;
4d6ed7c8 5575
4d6ed7c8
NC
5576 /* First, find the starting address of the segment that includes
5577 this section: */
5578
5579 if (elf_header.e_phnum)
5580 {
d93f0186 5581 if (! get_program_headers (file))
4d6ed7c8 5582 return 0;
4d6ed7c8 5583
d93f0186
NC
5584 for (seg = program_headers;
5585 seg < program_headers + elf_header.e_phnum;
5586 ++seg)
4d6ed7c8
NC
5587 {
5588 if (seg->p_type != PT_LOAD)
5589 continue;
5590
5591 if (sec->sh_addr >= seg->p_vaddr
5592 && (sec->sh_addr + sec->sh_size <= seg->p_vaddr + seg->p_memsz))
5593 {
5594 aux->seg_base = seg->p_vaddr;
5595 break;
5596 }
5597 }
4d6ed7c8
NC
5598 }
5599
5600 /* Second, build the unwind table from the contents of the unwind section: */
5601 size = sec->sh_size;
3f5e193b
NC
5602 table = (unsigned char *) get_data (NULL, file, sec->sh_offset, 1, size,
5603 _("unwind table"));
a6e9f9df
AM
5604 if (!table)
5605 return 0;
4d6ed7c8 5606
3f5e193b
NC
5607 aux->table = (struct ia64_unw_table_entry *)
5608 xcmalloc (size / (3 * eh_addr_size), sizeof (aux->table[0]));
89fac5e3 5609 tep = aux->table;
c6a0c689 5610 for (tp = table; tp < table + size; ++tep)
4d6ed7c8
NC
5611 {
5612 tep->start.section = SHN_UNDEF;
5613 tep->end.section = SHN_UNDEF;
5614 tep->info.section = SHN_UNDEF;
c6a0c689
AM
5615 tep->start.offset = byte_get (tp, eh_addr_size); tp += eh_addr_size;
5616 tep->end.offset = byte_get (tp, eh_addr_size); tp += eh_addr_size;
5617 tep->info.offset = byte_get (tp, eh_addr_size); tp += eh_addr_size;
4d6ed7c8
NC
5618 tep->start.offset += aux->seg_base;
5619 tep->end.offset += aux->seg_base;
5620 tep->info.offset += aux->seg_base;
5621 }
5622 free (table);
5623
41e92641 5624 /* Third, apply any relocations to the unwind table: */
4d6ed7c8
NC
5625 for (relsec = section_headers;
5626 relsec < section_headers + elf_header.e_shnum;
5627 ++relsec)
5628 {
5629 if (relsec->sh_type != SHT_RELA
4fbb74a6
AM
5630 || relsec->sh_info >= elf_header.e_shnum
5631 || section_headers + relsec->sh_info != sec)
4d6ed7c8
NC
5632 continue;
5633
5634 if (!slurp_rela_relocs (file, relsec->sh_offset, relsec->sh_size,
5635 & rela, & nrelas))
5636 return 0;
5637
5638 for (rp = rela; rp < rela + nrelas; ++rp)
5639 {
aca88567
NC
5640 relname = elf_ia64_reloc_type (get_reloc_type (rp->r_info));
5641 sym = aux->symtab + get_reloc_symindex (rp->r_info);
4d6ed7c8 5642
0112cd26 5643 if (! const_strneq (relname, "R_IA64_SEGREL"))
4d6ed7c8 5644 {
e5fb9629 5645 warn (_("Skipping unexpected relocation type %s\n"), relname);
4d6ed7c8
NC
5646 continue;
5647 }
5648
89fac5e3 5649 i = rp->r_offset / (3 * eh_addr_size);
4d6ed7c8 5650
89fac5e3 5651 switch (rp->r_offset/eh_addr_size % 3)
4d6ed7c8
NC
5652 {
5653 case 0:
5654 aux->table[i].start.section = sym->st_shndx;
e466bc6e 5655 aux->table[i].start.offset = rp->r_addend + sym->st_value;
4d6ed7c8
NC
5656 break;
5657 case 1:
5658 aux->table[i].end.section = sym->st_shndx;
e466bc6e 5659 aux->table[i].end.offset = rp->r_addend + sym->st_value;
4d6ed7c8
NC
5660 break;
5661 case 2:
5662 aux->table[i].info.section = sym->st_shndx;
e466bc6e 5663 aux->table[i].info.offset = rp->r_addend + sym->st_value;
4d6ed7c8
NC
5664 break;
5665 default:
5666 break;
5667 }
5668 }
5669
5670 free (rela);
5671 }
5672
89fac5e3 5673 aux->table_len = size / (3 * eh_addr_size);
4d6ed7c8
NC
5674 return 1;
5675}
5676
5677static int
2cf0635d 5678ia64_process_unwind (FILE * file)
4d6ed7c8 5679{
2cf0635d
NC
5680 Elf_Internal_Shdr * sec;
5681 Elf_Internal_Shdr * unwsec = NULL;
5682 Elf_Internal_Shdr * strsec;
89fac5e3 5683 unsigned long i, unwcount = 0, unwstart = 0;
57346661 5684 struct ia64_unw_aux_info aux;
f1467e33 5685
4d6ed7c8
NC
5686 memset (& aux, 0, sizeof (aux));
5687
4d6ed7c8
NC
5688 for (i = 0, sec = section_headers; i < elf_header.e_shnum; ++i, ++sec)
5689 {
c256ffe7 5690 if (sec->sh_type == SHT_SYMTAB
4fbb74a6 5691 && sec->sh_link < elf_header.e_shnum)
4d6ed7c8
NC
5692 {
5693 aux.nsyms = sec->sh_size / sec->sh_entsize;
9ad5cbcf 5694 aux.symtab = GET_ELF_SYMBOLS (file, sec);
4d6ed7c8 5695
4fbb74a6 5696 strsec = section_headers + sec->sh_link;
3f5e193b
NC
5697 aux.strtab = (char *) get_data (NULL, file, strsec->sh_offset,
5698 1, strsec->sh_size,
5699 _("string table"));
c256ffe7 5700 aux.strtab_size = aux.strtab != NULL ? strsec->sh_size : 0;
4d6ed7c8
NC
5701 }
5702 else if (sec->sh_type == SHT_IA_64_UNWIND)
579f31ac
JJ
5703 unwcount++;
5704 }
5705
5706 if (!unwcount)
5707 printf (_("\nThere are no unwind sections in this file.\n"));
5708
5709 while (unwcount-- > 0)
5710 {
2cf0635d 5711 char * suffix;
579f31ac
JJ
5712 size_t len, len2;
5713
5714 for (i = unwstart, sec = section_headers + unwstart;
5715 i < elf_header.e_shnum; ++i, ++sec)
5716 if (sec->sh_type == SHT_IA_64_UNWIND)
5717 {
5718 unwsec = sec;
5719 break;
5720 }
5721
5722 unwstart = i + 1;
5723 len = sizeof (ELF_STRING_ia64_unwind_once) - 1;
5724
e4b17d5c
L
5725 if ((unwsec->sh_flags & SHF_GROUP) != 0)
5726 {
5727 /* We need to find which section group it is in. */
2cf0635d 5728 struct group_list * g = section_headers_groups [i]->root;
e4b17d5c
L
5729
5730 for (; g != NULL; g = g->next)
5731 {
4fbb74a6 5732 sec = section_headers + g->section_index;
18bd398b
NC
5733
5734 if (streq (SECTION_NAME (sec), ELF_STRING_ia64_unwind_info))
57346661 5735 break;
e4b17d5c
L
5736 }
5737
5738 if (g == NULL)
5739 i = elf_header.e_shnum;
5740 }
18bd398b 5741 else if (strneq (SECTION_NAME (unwsec), ELF_STRING_ia64_unwind_once, len))
579f31ac 5742 {
18bd398b 5743 /* .gnu.linkonce.ia64unw.FOO -> .gnu.linkonce.ia64unwi.FOO. */
579f31ac
JJ
5744 len2 = sizeof (ELF_STRING_ia64_unwind_info_once) - 1;
5745 suffix = SECTION_NAME (unwsec) + len;
5746 for (i = 0, sec = section_headers; i < elf_header.e_shnum;
5747 ++i, ++sec)
18bd398b
NC
5748 if (strneq (SECTION_NAME (sec), ELF_STRING_ia64_unwind_info_once, len2)
5749 && streq (SECTION_NAME (sec) + len2, suffix))
579f31ac
JJ
5750 break;
5751 }
5752 else
5753 {
5754 /* .IA_64.unwindFOO -> .IA_64.unwind_infoFOO
18bd398b 5755 .IA_64.unwind or BAR -> .IA_64.unwind_info. */
579f31ac
JJ
5756 len = sizeof (ELF_STRING_ia64_unwind) - 1;
5757 len2 = sizeof (ELF_STRING_ia64_unwind_info) - 1;
5758 suffix = "";
18bd398b 5759 if (strneq (SECTION_NAME (unwsec), ELF_STRING_ia64_unwind, len))
579f31ac
JJ
5760 suffix = SECTION_NAME (unwsec) + len;
5761 for (i = 0, sec = section_headers; i < elf_header.e_shnum;
5762 ++i, ++sec)
18bd398b
NC
5763 if (strneq (SECTION_NAME (sec), ELF_STRING_ia64_unwind_info, len2)
5764 && streq (SECTION_NAME (sec) + len2, suffix))
579f31ac
JJ
5765 break;
5766 }
5767
5768 if (i == elf_header.e_shnum)
5769 {
5770 printf (_("\nCould not find unwind info section for "));
5771
5772 if (string_table == NULL)
5773 printf ("%d", unwsec->sh_name);
5774 else
3a1a2036 5775 printf (_("'%s'"), SECTION_NAME (unwsec));
579f31ac
JJ
5776 }
5777 else
4d6ed7c8
NC
5778 {
5779 aux.info_size = sec->sh_size;
5780 aux.info_addr = sec->sh_addr;
3f5e193b
NC
5781 aux.info = (unsigned char *) get_data (NULL, file, sec->sh_offset, 1,
5782 aux.info_size,
5783 _("unwind info"));
4d6ed7c8 5784
579f31ac 5785 printf (_("\nUnwind section "));
4d6ed7c8 5786
579f31ac
JJ
5787 if (string_table == NULL)
5788 printf ("%d", unwsec->sh_name);
5789 else
3a1a2036 5790 printf (_("'%s'"), SECTION_NAME (unwsec));
4d6ed7c8 5791
579f31ac 5792 printf (_(" at offset 0x%lx contains %lu entries:\n"),
e59b4dfb 5793 (unsigned long) unwsec->sh_offset,
89fac5e3 5794 (unsigned long) (unwsec->sh_size / (3 * eh_addr_size)));
4d6ed7c8 5795
579f31ac 5796 (void) slurp_ia64_unwind_table (file, & aux, unwsec);
4d6ed7c8 5797
579f31ac
JJ
5798 if (aux.table_len > 0)
5799 dump_ia64_unwind (& aux);
5800
5801 if (aux.table)
5802 free ((char *) aux.table);
5803 if (aux.info)
5804 free ((char *) aux.info);
5805 aux.table = NULL;
5806 aux.info = NULL;
5807 }
4d6ed7c8 5808 }
4d6ed7c8 5809
4d6ed7c8
NC
5810 if (aux.symtab)
5811 free (aux.symtab);
5812 if (aux.strtab)
5813 free ((char *) aux.strtab);
5814
5815 return 1;
5816}
5817
3f5e193b
NC
5818struct hppa_unw_table_entry
5819 {
5820 struct absaddr start;
5821 struct absaddr end;
5822 unsigned int Cannot_unwind:1; /* 0 */
5823 unsigned int Millicode:1; /* 1 */
5824 unsigned int Millicode_save_sr0:1; /* 2 */
5825 unsigned int Region_description:2; /* 3..4 */
5826 unsigned int reserved1:1; /* 5 */
5827 unsigned int Entry_SR:1; /* 6 */
5828 unsigned int Entry_FR:4; /* number saved */ /* 7..10 */
5829 unsigned int Entry_GR:5; /* number saved */ /* 11..15 */
5830 unsigned int Args_stored:1; /* 16 */
5831 unsigned int Variable_Frame:1; /* 17 */
5832 unsigned int Separate_Package_Body:1; /* 18 */
5833 unsigned int Frame_Extension_Millicode:1; /* 19 */
5834 unsigned int Stack_Overflow_Check:1; /* 20 */
5835 unsigned int Two_Instruction_SP_Increment:1; /* 21 */
5836 unsigned int Ada_Region:1; /* 22 */
5837 unsigned int cxx_info:1; /* 23 */
5838 unsigned int cxx_try_catch:1; /* 24 */
5839 unsigned int sched_entry_seq:1; /* 25 */
5840 unsigned int reserved2:1; /* 26 */
5841 unsigned int Save_SP:1; /* 27 */
5842 unsigned int Save_RP:1; /* 28 */
5843 unsigned int Save_MRP_in_frame:1; /* 29 */
5844 unsigned int extn_ptr_defined:1; /* 30 */
5845 unsigned int Cleanup_defined:1; /* 31 */
5846
5847 unsigned int MPE_XL_interrupt_marker:1; /* 0 */
5848 unsigned int HP_UX_interrupt_marker:1; /* 1 */
5849 unsigned int Large_frame:1; /* 2 */
5850 unsigned int Pseudo_SP_Set:1; /* 3 */
5851 unsigned int reserved4:1; /* 4 */
5852 unsigned int Total_frame_size:27; /* 5..31 */
5853 };
5854
57346661
AM
5855struct hppa_unw_aux_info
5856 {
3f5e193b 5857 struct hppa_unw_table_entry *table; /* Unwind table. */
57346661
AM
5858 unsigned long table_len; /* Length of unwind table. */
5859 bfd_vma seg_base; /* Starting address of segment. */
2cf0635d 5860 Elf_Internal_Sym * symtab; /* The symbol table. */
57346661 5861 unsigned long nsyms; /* Number of symbols. */
2cf0635d 5862 char * strtab; /* The string table. */
57346661
AM
5863 unsigned long strtab_size; /* Size of string table. */
5864 };
5865
5866static void
2cf0635d 5867dump_hppa_unwind (struct hppa_unw_aux_info * aux)
57346661 5868{
2cf0635d 5869 struct hppa_unw_table_entry * tp;
57346661 5870
57346661
AM
5871 for (tp = aux->table; tp < aux->table + aux->table_len; ++tp)
5872 {
5873 bfd_vma offset;
2cf0635d 5874 const char * procname;
57346661
AM
5875
5876 find_symbol_for_address (aux->symtab, aux->nsyms, aux->strtab,
5877 aux->strtab_size, tp->start, &procname,
5878 &offset);
5879
5880 fputs ("\n<", stdout);
5881
5882 if (procname)
5883 {
5884 fputs (procname, stdout);
5885
5886 if (offset)
5887 printf ("+%lx", (unsigned long) offset);
5888 }
5889
5890 fputs (">: [", stdout);
5891 print_vma (tp->start.offset, PREFIX_HEX);
5892 fputc ('-', stdout);
5893 print_vma (tp->end.offset, PREFIX_HEX);
5894 printf ("]\n\t");
5895
18bd398b
NC
5896#define PF(_m) if (tp->_m) printf (#_m " ");
5897#define PV(_m) if (tp->_m) printf (#_m "=%d ", tp->_m);
57346661
AM
5898 PF(Cannot_unwind);
5899 PF(Millicode);
5900 PF(Millicode_save_sr0);
18bd398b 5901 /* PV(Region_description); */
57346661
AM
5902 PF(Entry_SR);
5903 PV(Entry_FR);
5904 PV(Entry_GR);
5905 PF(Args_stored);
5906 PF(Variable_Frame);
5907 PF(Separate_Package_Body);
5908 PF(Frame_Extension_Millicode);
5909 PF(Stack_Overflow_Check);
5910 PF(Two_Instruction_SP_Increment);
5911 PF(Ada_Region);
5912 PF(cxx_info);
5913 PF(cxx_try_catch);
5914 PF(sched_entry_seq);
5915 PF(Save_SP);
5916 PF(Save_RP);
5917 PF(Save_MRP_in_frame);
5918 PF(extn_ptr_defined);
5919 PF(Cleanup_defined);
5920 PF(MPE_XL_interrupt_marker);
5921 PF(HP_UX_interrupt_marker);
5922 PF(Large_frame);
5923 PF(Pseudo_SP_Set);
5924 PV(Total_frame_size);
5925#undef PF
5926#undef PV
5927 }
5928
18bd398b 5929 printf ("\n");
57346661
AM
5930}
5931
5932static int
2cf0635d
NC
5933slurp_hppa_unwind_table (FILE * file,
5934 struct hppa_unw_aux_info * aux,
5935 Elf_Internal_Shdr * sec)
57346661 5936{
1c0751b2 5937 unsigned long size, unw_ent_size, nentries, nrelas, i;
2cf0635d
NC
5938 Elf_Internal_Phdr * seg;
5939 struct hppa_unw_table_entry * tep;
5940 Elf_Internal_Shdr * relsec;
5941 Elf_Internal_Rela * rela;
5942 Elf_Internal_Rela * rp;
5943 unsigned char * table;
5944 unsigned char * tp;
5945 Elf_Internal_Sym * sym;
5946 const char * relname;
57346661 5947
57346661
AM
5948 /* First, find the starting address of the segment that includes
5949 this section. */
5950
5951 if (elf_header.e_phnum)
5952 {
5953 if (! get_program_headers (file))
5954 return 0;
5955
5956 for (seg = program_headers;
5957 seg < program_headers + elf_header.e_phnum;
5958 ++seg)
5959 {
5960 if (seg->p_type != PT_LOAD)
5961 continue;
5962
5963 if (sec->sh_addr >= seg->p_vaddr
5964 && (sec->sh_addr + sec->sh_size <= seg->p_vaddr + seg->p_memsz))
5965 {
5966 aux->seg_base = seg->p_vaddr;
5967 break;
5968 }
5969 }
5970 }
5971
5972 /* Second, build the unwind table from the contents of the unwind
5973 section. */
5974 size = sec->sh_size;
3f5e193b
NC
5975 table = (unsigned char *) get_data (NULL, file, sec->sh_offset, 1, size,
5976 _("unwind table"));
57346661
AM
5977 if (!table)
5978 return 0;
5979
1c0751b2
DA
5980 unw_ent_size = 16;
5981 nentries = size / unw_ent_size;
5982 size = unw_ent_size * nentries;
57346661 5983
3f5e193b
NC
5984 tep = aux->table = (struct hppa_unw_table_entry *)
5985 xcmalloc (nentries, sizeof (aux->table[0]));
57346661 5986
1c0751b2 5987 for (tp = table; tp < table + size; tp += unw_ent_size, ++tep)
57346661
AM
5988 {
5989 unsigned int tmp1, tmp2;
5990
5991 tep->start.section = SHN_UNDEF;
5992 tep->end.section = SHN_UNDEF;
5993
1c0751b2
DA
5994 tep->start.offset = byte_get ((unsigned char *) tp + 0, 4);
5995 tep->end.offset = byte_get ((unsigned char *) tp + 4, 4);
5996 tmp1 = byte_get ((unsigned char *) tp + 8, 4);
5997 tmp2 = byte_get ((unsigned char *) tp + 12, 4);
5998
5999 tep->start.offset += aux->seg_base;
6000 tep->end.offset += aux->seg_base;
57346661
AM
6001
6002 tep->Cannot_unwind = (tmp1 >> 31) & 0x1;
6003 tep->Millicode = (tmp1 >> 30) & 0x1;
6004 tep->Millicode_save_sr0 = (tmp1 >> 29) & 0x1;
6005 tep->Region_description = (tmp1 >> 27) & 0x3;
6006 tep->reserved1 = (tmp1 >> 26) & 0x1;
6007 tep->Entry_SR = (tmp1 >> 25) & 0x1;
6008 tep->Entry_FR = (tmp1 >> 21) & 0xf;
6009 tep->Entry_GR = (tmp1 >> 16) & 0x1f;
6010 tep->Args_stored = (tmp1 >> 15) & 0x1;
6011 tep->Variable_Frame = (tmp1 >> 14) & 0x1;
6012 tep->Separate_Package_Body = (tmp1 >> 13) & 0x1;
6013 tep->Frame_Extension_Millicode = (tmp1 >> 12) & 0x1;
6014 tep->Stack_Overflow_Check = (tmp1 >> 11) & 0x1;
6015 tep->Two_Instruction_SP_Increment = (tmp1 >> 10) & 0x1;
6016 tep->Ada_Region = (tmp1 >> 9) & 0x1;
6017 tep->cxx_info = (tmp1 >> 8) & 0x1;
6018 tep->cxx_try_catch = (tmp1 >> 7) & 0x1;
6019 tep->sched_entry_seq = (tmp1 >> 6) & 0x1;
6020 tep->reserved2 = (tmp1 >> 5) & 0x1;
6021 tep->Save_SP = (tmp1 >> 4) & 0x1;
6022 tep->Save_RP = (tmp1 >> 3) & 0x1;
6023 tep->Save_MRP_in_frame = (tmp1 >> 2) & 0x1;
6024 tep->extn_ptr_defined = (tmp1 >> 1) & 0x1;
6025 tep->Cleanup_defined = tmp1 & 0x1;
6026
6027 tep->MPE_XL_interrupt_marker = (tmp2 >> 31) & 0x1;
6028 tep->HP_UX_interrupt_marker = (tmp2 >> 30) & 0x1;
6029 tep->Large_frame = (tmp2 >> 29) & 0x1;
6030 tep->Pseudo_SP_Set = (tmp2 >> 28) & 0x1;
6031 tep->reserved4 = (tmp2 >> 27) & 0x1;
6032 tep->Total_frame_size = tmp2 & 0x7ffffff;
57346661
AM
6033 }
6034 free (table);
6035
6036 /* Third, apply any relocations to the unwind table. */
57346661
AM
6037 for (relsec = section_headers;
6038 relsec < section_headers + elf_header.e_shnum;
6039 ++relsec)
6040 {
6041 if (relsec->sh_type != SHT_RELA
4fbb74a6
AM
6042 || relsec->sh_info >= elf_header.e_shnum
6043 || section_headers + relsec->sh_info != sec)
57346661
AM
6044 continue;
6045
6046 if (!slurp_rela_relocs (file, relsec->sh_offset, relsec->sh_size,
6047 & rela, & nrelas))
6048 return 0;
6049
6050 for (rp = rela; rp < rela + nrelas; ++rp)
6051 {
aca88567
NC
6052 relname = elf_hppa_reloc_type (get_reloc_type (rp->r_info));
6053 sym = aux->symtab + get_reloc_symindex (rp->r_info);
57346661
AM
6054
6055 /* R_PARISC_SEGREL32 or R_PARISC_SEGREL64. */
0112cd26 6056 if (! const_strneq (relname, "R_PARISC_SEGREL"))
57346661
AM
6057 {
6058 warn (_("Skipping unexpected relocation type %s\n"), relname);
6059 continue;
6060 }
6061
6062 i = rp->r_offset / unw_ent_size;
6063
89fac5e3 6064 switch ((rp->r_offset % unw_ent_size) / eh_addr_size)
57346661
AM
6065 {
6066 case 0:
6067 aux->table[i].start.section = sym->st_shndx;
1e456d54 6068 aux->table[i].start.offset = sym->st_value + rp->r_addend;
57346661
AM
6069 break;
6070 case 1:
6071 aux->table[i].end.section = sym->st_shndx;
1e456d54 6072 aux->table[i].end.offset = sym->st_value + rp->r_addend;
57346661
AM
6073 break;
6074 default:
6075 break;
6076 }
6077 }
6078
6079 free (rela);
6080 }
6081
1c0751b2 6082 aux->table_len = nentries;
57346661
AM
6083
6084 return 1;
6085}
6086
6087static int
2cf0635d 6088hppa_process_unwind (FILE * file)
57346661 6089{
57346661 6090 struct hppa_unw_aux_info aux;
2cf0635d
NC
6091 Elf_Internal_Shdr * unwsec = NULL;
6092 Elf_Internal_Shdr * strsec;
6093 Elf_Internal_Shdr * sec;
18bd398b 6094 unsigned long i;
57346661
AM
6095
6096 memset (& aux, 0, sizeof (aux));
6097
c256ffe7
JJ
6098 if (string_table == NULL)
6099 return 1;
57346661
AM
6100
6101 for (i = 0, sec = section_headers; i < elf_header.e_shnum; ++i, ++sec)
6102 {
c256ffe7 6103 if (sec->sh_type == SHT_SYMTAB
4fbb74a6 6104 && sec->sh_link < elf_header.e_shnum)
57346661
AM
6105 {
6106 aux.nsyms = sec->sh_size / sec->sh_entsize;
6107 aux.symtab = GET_ELF_SYMBOLS (file, sec);
6108
4fbb74a6 6109 strsec = section_headers + sec->sh_link;
3f5e193b
NC
6110 aux.strtab = (char *) get_data (NULL, file, strsec->sh_offset,
6111 1, strsec->sh_size,
6112 _("string table"));
c256ffe7 6113 aux.strtab_size = aux.strtab != NULL ? strsec->sh_size : 0;
57346661 6114 }
18bd398b 6115 else if (streq (SECTION_NAME (sec), ".PARISC.unwind"))
57346661
AM
6116 unwsec = sec;
6117 }
6118
6119 if (!unwsec)
6120 printf (_("\nThere are no unwind sections in this file.\n"));
6121
6122 for (i = 0, sec = section_headers; i < elf_header.e_shnum; ++i, ++sec)
6123 {
18bd398b 6124 if (streq (SECTION_NAME (sec), ".PARISC.unwind"))
57346661 6125 {
57346661
AM
6126 printf (_("\nUnwind section "));
6127 printf (_("'%s'"), SECTION_NAME (sec));
6128
6129 printf (_(" at offset 0x%lx contains %lu entries:\n"),
6130 (unsigned long) sec->sh_offset,
89fac5e3 6131 (unsigned long) (sec->sh_size / (2 * eh_addr_size + 8)));
57346661
AM
6132
6133 slurp_hppa_unwind_table (file, &aux, sec);
6134 if (aux.table_len > 0)
6135 dump_hppa_unwind (&aux);
6136
6137 if (aux.table)
6138 free ((char *) aux.table);
6139 aux.table = NULL;
6140 }
6141 }
6142
6143 if (aux.symtab)
6144 free (aux.symtab);
6145 if (aux.strtab)
6146 free ((char *) aux.strtab);
6147
6148 return 1;
6149}
6150
0b6ae522
DJ
6151struct arm_section
6152{
6153 unsigned char *data;
6154
6155 Elf_Internal_Shdr *sec;
6156 Elf_Internal_Rela *rela;
6157 unsigned long nrelas;
6158 unsigned int rel_type;
6159
6160 Elf_Internal_Rela *next_rela;
6161};
6162
6163struct arm_unw_aux_info
6164{
6165 FILE *file;
6166
6167 Elf_Internal_Sym *symtab; /* The symbol table. */
6168 unsigned long nsyms; /* Number of symbols. */
6169 char *strtab; /* The string table. */
6170 unsigned long strtab_size; /* Size of string table. */
6171};
6172
6173static const char *
6174arm_print_vma_and_name (struct arm_unw_aux_info *aux,
6175 bfd_vma fn, struct absaddr addr)
6176{
6177 const char *procname;
6178 bfd_vma sym_offset;
6179
6180 if (addr.section == SHN_UNDEF)
6181 addr.offset = fn;
6182
6183 find_symbol_for_address (aux->symtab, aux->nsyms, aux->strtab,
6184 aux->strtab_size, addr, &procname,
6185 &sym_offset);
6186
6187 print_vma (fn, PREFIX_HEX);
6188
6189 if (procname)
6190 {
6191 fputs (" <", stdout);
6192 fputs (procname, stdout);
6193
6194 if (sym_offset)
6195 printf ("+0x%lx", (unsigned long) sym_offset);
6196 fputc ('>', stdout);
6197 }
6198
6199 return procname;
6200}
6201
6202static void
6203arm_free_section (struct arm_section *arm_sec)
6204{
6205 if (arm_sec->data != NULL)
6206 free (arm_sec->data);
6207
6208 if (arm_sec->rela != NULL)
6209 free (arm_sec->rela);
6210}
6211
6212static int
6213arm_section_get_word (struct arm_unw_aux_info *aux,
6214 struct arm_section *arm_sec,
6215 Elf_Internal_Shdr *sec, bfd_vma word_offset,
6216 unsigned int *wordp, struct absaddr *addr)
6217{
6218 Elf_Internal_Rela *rp;
6219 Elf_Internal_Sym *sym;
6220 const char * relname;
6221 unsigned int word;
6222 bfd_boolean wrapped;
6223
6224 addr->section = SHN_UNDEF;
6225 addr->offset = 0;
6226
6227 if (sec != arm_sec->sec)
6228 {
6229 Elf_Internal_Shdr *relsec;
6230
6231 arm_free_section (arm_sec);
6232
6233 arm_sec->sec = sec;
6234 arm_sec->data = get_data (NULL, aux->file, sec->sh_offset, 1,
6235 sec->sh_size, _("unwind data"));
6236
6237 arm_sec->rela = NULL;
6238 arm_sec->nrelas = 0;
6239
6240 for (relsec = section_headers;
6241 relsec < section_headers + elf_header.e_shnum;
6242 ++relsec)
6243 {
6244 if (relsec->sh_info >= elf_header.e_shnum
6245 || section_headers + relsec->sh_info != sec)
6246 continue;
6247
6248 if (relsec->sh_type == SHT_REL)
6249 {
6250 if (!slurp_rel_relocs (aux->file, relsec->sh_offset,
6251 relsec->sh_size,
6252 & arm_sec->rela, & arm_sec->nrelas))
6253 return 0;
6254 break;
6255 }
6256 else if (relsec->sh_type == SHT_RELA)
6257 {
6258 if (!slurp_rela_relocs (aux->file, relsec->sh_offset,
6259 relsec->sh_size,
6260 & arm_sec->rela, & arm_sec->nrelas))
6261 return 0;
6262 break;
6263 }
6264 }
6265
6266 arm_sec->next_rela = arm_sec->rela;
6267 }
6268
6269 if (arm_sec->data == NULL)
6270 return 0;
6271
6272 word = byte_get (arm_sec->data + word_offset, 4);
6273
6274 wrapped = FALSE;
6275 for (rp = arm_sec->next_rela; rp != arm_sec->rela + arm_sec->nrelas; rp++)
6276 {
6277 bfd_vma prelval, offset;
6278
6279 if (rp->r_offset > word_offset && !wrapped)
6280 {
6281 rp = arm_sec->rela;
6282 wrapped = TRUE;
6283 }
6284 if (rp->r_offset > word_offset)
6285 break;
6286
6287 if (rp->r_offset & 3)
6288 {
6289 warn (_("Skipping unexpected relocation at offset 0x%lx\n"),
6290 (unsigned long) rp->r_offset);
6291 continue;
6292 }
6293
6294 if (rp->r_offset < word_offset)
6295 continue;
6296
6297 relname = elf_arm_reloc_type (ELF32_R_TYPE (rp->r_info));
6298
6299 if (streq (relname, "R_ARM_NONE"))
6300 continue;
6301
6302 if (! streq (relname, "R_ARM_PREL31"))
6303 {
6304 warn (_("Skipping unexpected relocation type %s\n"), relname);
6305 continue;
6306 }
6307
6308 sym = aux->symtab + ELF32_R_SYM (rp->r_info);
6309
6310 if (arm_sec->rel_type == SHT_REL)
6311 {
6312 offset = word & 0x7fffffff;
6313 if (offset & 0x40000000)
6314 offset |= ~ (bfd_vma) 0x7fffffff;
6315 }
6316 else
6317 offset = rp->r_addend;
6318
6319 offset += sym->st_value;
6320 prelval = offset - (arm_sec->sec->sh_addr + rp->r_offset);
6321
6322 word = (word & ~ (bfd_vma) 0x7fffffff) | (prelval & 0x7fffffff);
6323 addr->section = sym->st_shndx;
6324 addr->offset = offset;
6325 break;
6326 }
6327
6328 *wordp = word;
6329 arm_sec->next_rela = rp;
6330
6331 return 1;
6332}
6333
6334static void
6335decode_arm_unwind (struct arm_unw_aux_info *aux,
6336 unsigned int word, unsigned int remaining,
6337 bfd_vma data_offset, Elf_Internal_Shdr *data_sec,
6338 struct arm_section *data_arm_sec)
6339{
6340 int per_index;
6341 unsigned int more_words;
6342 struct absaddr addr;
6343
6344#define ADVANCE \
6345 if (remaining == 0 && more_words) \
6346 { \
6347 data_offset += 4; \
6348 if (!arm_section_get_word (aux, data_arm_sec, data_sec, \
6349 data_offset, &word, &addr)) \
6350 return; \
6351 remaining = 4; \
6352 more_words--; \
6353 } \
6354
6355#define GET_OP(OP) \
6356 ADVANCE; \
6357 if (remaining) \
6358 { \
6359 remaining--; \
6360 (OP) = word >> 24; \
6361 word <<= 8; \
6362 } \
6363 else \
6364 { \
2b692964 6365 printf (_("[Truncated opcode]\n")); \
0b6ae522
DJ
6366 return; \
6367 } \
6368 printf (_("0x%02x "), OP)
6369
6370 if (remaining == 0)
6371 {
6372 /* Fetch the first word. */
6373 if (!arm_section_get_word (aux, data_arm_sec, data_sec, data_offset,
6374 &word, &addr))
6375 return;
6376 remaining = 4;
6377 }
6378
6379 if ((word & 0x80000000) == 0)
6380 {
6381 /* Expand prel31 for personality routine. */
6382 bfd_vma fn;
6383 const char *procname;
6384
6385 fn = word;
6386 if (fn & 0x40000000)
6387 fn |= ~ (bfd_vma) 0x7fffffff;
6388 fn = fn + data_sec->sh_addr + data_offset;
6389
6390 printf (_(" Personality routine: "));
6391 procname = arm_print_vma_and_name (aux, fn, addr);
6392 fputc ('\n', stdout);
6393
6394 /* The GCC personality routines use the standard compact
6395 encoding, starting with one byte giving the number of
6396 words. */
6397 if (procname != NULL
6398 && (const_strneq (procname, "__gcc_personality_v0")
6399 || const_strneq (procname, "__gxx_personality_v0")
6400 || const_strneq (procname, "__gcj_personality_v0")
6401 || const_strneq (procname, "__gnu_objc_personality_v0")))
6402 {
6403 remaining = 0;
6404 more_words = 1;
6405 ADVANCE;
6406 if (!remaining)
6407 {
6408 printf (_(" [Truncated data]\n"));
6409 return;
6410 }
6411 more_words = word >> 24;
6412 word <<= 8;
6413 remaining--;
6414 }
6415 else
6416 return;
6417 }
6418 else
6419 {
6420
6421 per_index = (word >> 24) & 0x7f;
6422 if (per_index != 0 && per_index != 1 && per_index != 2)
6423 {
6424 printf (_(" [reserved compact index %d]\n"), per_index);
6425 return;
6426 }
6427
6428 printf (_(" Compact model %d\n"), per_index);
6429 if (per_index == 0)
6430 {
6431 more_words = 0;
6432 word <<= 8;
6433 remaining--;
6434 }
6435 else
6436 {
6437 more_words = (word >> 16) & 0xff;
6438 word <<= 16;
6439 remaining -= 2;
6440 }
6441 }
6442
6443 /* Decode the unwinding instructions. */
6444 while (1)
6445 {
6446 unsigned int op, op2;
6447
6448 ADVANCE;
6449 if (remaining == 0)
6450 break;
6451 remaining--;
6452 op = word >> 24;
6453 word <<= 8;
6454
6455 printf (_(" 0x%02x "), op);
6456
6457 if ((op & 0xc0) == 0x00)
6458 {
6459 int offset = ((op & 0x3f) << 2) + 4;
6460 printf (_(" vsp = vsp + %d"), offset);
6461 }
6462 else if ((op & 0xc0) == 0x40)
6463 {
6464 int offset = ((op & 0x3f) << 2) + 4;
6465 printf (_(" vsp = vsp - %d"), offset);
6466 }
6467 else if ((op & 0xf0) == 0x80)
6468 {
6469 GET_OP (op2);
6470 if (op == 0x80 && op2 == 0)
6471 printf (_("Refuse to unwind"));
6472 else
6473 {
6474 unsigned int mask = ((op & 0x0f) << 8) | op2;
6475 int first = 1;
6476 int i;
2b692964 6477
0b6ae522
DJ
6478 printf ("pop {");
6479 for (i = 0; i < 12; i++)
6480 if (mask & (1 << i))
6481 {
6482 if (first)
6483 first = 0;
6484 else
6485 printf (", ");
6486 printf ("r%d", 4 + i);
6487 }
6488 printf ("}");
6489 }
6490 }
6491 else if ((op & 0xf0) == 0x90)
6492 {
6493 if (op == 0x9d || op == 0x9f)
6494 printf (_(" [Reserved]"));
6495 else
6496 printf (_(" vsp = r%d"), op & 0x0f);
6497 }
6498 else if ((op & 0xf0) == 0xa0)
6499 {
6500 int end = 4 + (op & 0x07);
6501 int first = 1;
6502 int i;
6503 printf (" pop {");
6504 for (i = 4; i <= end; i++)
6505 {
6506 if (first)
6507 first = 0;
6508 else
6509 printf (", ");
6510 printf ("r%d", i);
6511 }
6512 if (op & 0x08)
6513 {
6514 if (first)
6515 printf (", ");
6516 printf ("r14");
6517 }
6518 printf ("}");
6519 }
6520 else if (op == 0xb0)
6521 printf (_(" finish"));
6522 else if (op == 0xb1)
6523 {
6524 GET_OP (op2);
6525 if (op2 == 0 || (op2 & 0xf0) != 0)
6526 printf (_("[Spare]"));
6527 else
6528 {
6529 unsigned int mask = op2 & 0x0f;
6530 int first = 1;
6531 int i;
6532 printf ("pop {");
6533 for (i = 0; i < 12; i++)
6534 if (mask & (1 << i))
6535 {
6536 if (first)
6537 first = 0;
6538 else
6539 printf (", ");
6540 printf ("r%d", i);
6541 }
6542 printf ("}");
6543 }
6544 }
6545 else if (op == 0xb2)
6546 {
b115cf96 6547 unsigned char buf[9];
0b6ae522
DJ
6548 unsigned int i, len;
6549 unsigned long offset;
b115cf96 6550 for (i = 0; i < sizeof (buf); i++)
0b6ae522
DJ
6551 {
6552 GET_OP (buf[i]);
6553 if ((buf[i] & 0x80) == 0)
6554 break;
6555 }
6556 assert (i < sizeof (buf));
6557 offset = read_uleb128 (buf, &len);
6558 assert (len == i + 1);
6559 offset = offset * 4 + 0x204;
6560 printf (_("vsp = vsp + %ld"), offset);
6561 }
6562 else
6563 {
6564 if (op == 0xb3 || op == 0xc6 || op == 0xc7 || op == 0xc8 || op == 0xc9)
6565 {
6566 GET_OP (op2);
6567 printf (_("[unsupported two-byte opcode]"));
6568 }
6569 else
6570 {
6571 printf (_(" [unsupported opcode]"));
6572 }
6573 }
6574 printf ("\n");
6575 }
6576
6577 /* Decode the descriptors. Not implemented. */
6578}
6579
6580static void
6581dump_arm_unwind (struct arm_unw_aux_info *aux, Elf_Internal_Shdr *exidx_sec)
6582{
6583 struct arm_section exidx_arm_sec, extab_arm_sec;
6584 unsigned int i, exidx_len;
6585
6586 memset (&exidx_arm_sec, 0, sizeof (exidx_arm_sec));
6587 memset (&extab_arm_sec, 0, sizeof (extab_arm_sec));
6588 exidx_len = exidx_sec->sh_size / 8;
6589
6590 for (i = 0; i < exidx_len; i++)
6591 {
6592 unsigned int exidx_fn, exidx_entry;
6593 struct absaddr fn_addr, entry_addr;
6594 bfd_vma fn;
6595
6596 fputc ('\n', stdout);
6597
6598 if (!arm_section_get_word (aux, &exidx_arm_sec, exidx_sec,
6599 8 * i, &exidx_fn, &fn_addr)
6600 || !arm_section_get_word (aux, &exidx_arm_sec, exidx_sec,
6601 8 * i + 4, &exidx_entry, &entry_addr))
6602 {
6603 arm_free_section (&exidx_arm_sec);
6604 arm_free_section (&extab_arm_sec);
6605 return;
6606 }
6607
6608 fn = exidx_fn & 0x7fffffff;
6609 if (fn & 0x40000000)
6610 fn |= ~ (bfd_vma) 0x7fffffff;
6611 fn = fn + exidx_sec->sh_addr + 8 * i;
6612
6613 arm_print_vma_and_name (aux, fn, entry_addr);
6614 fputs (": ", stdout);
6615
6616 if (exidx_entry == 1)
6617 {
6618 print_vma (exidx_entry, PREFIX_HEX);
6619 fputs (" [cantunwind]\n", stdout);
6620 }
6621 else if (exidx_entry & 0x80000000)
6622 {
6623 print_vma (exidx_entry, PREFIX_HEX);
6624 fputc ('\n', stdout);
6625 decode_arm_unwind (aux, exidx_entry, 4, 0, NULL, NULL);
6626 }
6627 else
6628 {
8f73510c 6629 bfd_vma table, table_offset = 0;
0b6ae522
DJ
6630 Elf_Internal_Shdr *table_sec;
6631
6632 fputs ("@", stdout);
6633 table = exidx_entry;
6634 if (table & 0x40000000)
6635 table |= ~ (bfd_vma) 0x7fffffff;
6636 table = table + exidx_sec->sh_addr + 8 * i + 4;
6637 print_vma (table, PREFIX_HEX);
6638 printf ("\n");
6639
6640 /* Locate the matching .ARM.extab. */
6641 if (entry_addr.section != SHN_UNDEF
6642 && entry_addr.section < elf_header.e_shnum)
6643 {
6644 table_sec = section_headers + entry_addr.section;
6645 table_offset = entry_addr.offset;
6646 }
6647 else
6648 {
6649 table_sec = find_section_by_address (table);
6650 if (table_sec != NULL)
6651 table_offset = table - table_sec->sh_addr;
6652 }
6653 if (table_sec == NULL)
6654 {
6655 warn (_("Could not locate .ARM.extab section containing 0x%lx.\n"),
6656 (unsigned long) table);
6657 continue;
6658 }
6659 decode_arm_unwind (aux, 0, 0, table_offset, table_sec,
6660 &extab_arm_sec);
6661 }
6662 }
6663
6664 printf ("\n");
6665
6666 arm_free_section (&exidx_arm_sec);
6667 arm_free_section (&extab_arm_sec);
6668}
6669
6670static int
6671arm_process_unwind (FILE *file)
6672{
6673 struct arm_unw_aux_info aux;
6674 Elf_Internal_Shdr *unwsec = NULL;
6675 Elf_Internal_Shdr *strsec;
6676 Elf_Internal_Shdr *sec;
6677 unsigned long i;
6678
6679 memset (& aux, 0, sizeof (aux));
6680 aux.file = file;
6681
6682 if (string_table == NULL)
6683 return 1;
6684
6685 for (i = 0, sec = section_headers; i < elf_header.e_shnum; ++i, ++sec)
6686 {
6687 if (sec->sh_type == SHT_SYMTAB && sec->sh_link < elf_header.e_shnum)
6688 {
6689 aux.nsyms = sec->sh_size / sec->sh_entsize;
6690 aux.symtab = GET_ELF_SYMBOLS (file, sec);
6691
6692 strsec = section_headers + sec->sh_link;
6693 aux.strtab = get_data (NULL, file, strsec->sh_offset,
6694 1, strsec->sh_size, _("string table"));
6695 aux.strtab_size = aux.strtab != NULL ? strsec->sh_size : 0;
6696 }
6697 else if (sec->sh_type == SHT_ARM_EXIDX)
6698 unwsec = sec;
6699 }
6700
6701 if (!unwsec)
6702 printf (_("\nThere are no unwind sections in this file.\n"));
6703
6704 for (i = 0, sec = section_headers; i < elf_header.e_shnum; ++i, ++sec)
6705 {
6706 if (sec->sh_type == SHT_ARM_EXIDX)
6707 {
6708 printf (_("\nUnwind table index '%s' at offset 0x%lx contains %lu entries:\n"),
6709 SECTION_NAME (sec),
6710 (unsigned long) sec->sh_offset,
6711 (unsigned long) (sec->sh_size / (2 * eh_addr_size)));
6712
6713 dump_arm_unwind (&aux, sec);
6714 }
6715 }
6716
6717 if (aux.symtab)
6718 free (aux.symtab);
6719 if (aux.strtab)
6720 free ((char *) aux.strtab);
6721
6722 return 1;
6723}
6724
57346661 6725static int
2cf0635d 6726process_unwind (FILE * file)
57346661 6727{
2cf0635d
NC
6728 struct unwind_handler
6729 {
57346661 6730 int machtype;
2cf0635d
NC
6731 int (* handler)(FILE *);
6732 } handlers[] =
6733 {
0b6ae522 6734 { EM_ARM, arm_process_unwind },
57346661
AM
6735 { EM_IA_64, ia64_process_unwind },
6736 { EM_PARISC, hppa_process_unwind },
6737 { 0, 0 }
6738 };
6739 int i;
6740
6741 if (!do_unwind)
6742 return 1;
6743
6744 for (i = 0; handlers[i].handler != NULL; i++)
6745 if (elf_header.e_machine == handlers[i].machtype)
18bd398b 6746 return handlers[i].handler (file);
57346661
AM
6747
6748 printf (_("\nThere are no unwind sections in this file.\n"));
6749 return 1;
6750}
6751
252b5132 6752static void
2cf0635d 6753dynamic_section_mips_val (Elf_Internal_Dyn * entry)
252b5132
RH
6754{
6755 switch (entry->d_tag)
6756 {
6757 case DT_MIPS_FLAGS:
6758 if (entry->d_un.d_val == 0)
2b692964 6759 printf (_("NONE\n"));
252b5132
RH
6760 else
6761 {
6762 static const char * opts[] =
6763 {
6764 "QUICKSTART", "NOTPOT", "NO_LIBRARY_REPLACEMENT",
6765 "NO_MOVE", "SGI_ONLY", "GUARANTEE_INIT", "DELTA_C_PLUS_PLUS",
6766 "GUARANTEE_START_INIT", "PIXIE", "DEFAULT_DELAY_LOAD",
6767 "REQUICKSTART", "REQUICKSTARTED", "CORD", "NO_UNRES_UNDEF",
6768 "RLD_ORDER_SAFE"
6769 };
6770 unsigned int cnt;
6771 int first = 1;
2b692964 6772
60bca95a 6773 for (cnt = 0; cnt < ARRAY_SIZE (opts); ++cnt)
252b5132
RH
6774 if (entry->d_un.d_val & (1 << cnt))
6775 {
6776 printf ("%s%s", first ? "" : " ", opts[cnt]);
6777 first = 0;
6778 }
6779 puts ("");
6780 }
6781 break;
103f02d3 6782
252b5132 6783 case DT_MIPS_IVERSION:
d79b3d50 6784 if (VALID_DYNAMIC_NAME (entry->d_un.d_val))
2b692964 6785 printf (_("Interface Version: %s\n"), GET_DYNAMIC_NAME (entry->d_un.d_val));
252b5132 6786 else
2b692964 6787 printf (_("<corrupt: %ld>\n"), (long) entry->d_un.d_ptr);
252b5132 6788 break;
103f02d3 6789
252b5132
RH
6790 case DT_MIPS_TIME_STAMP:
6791 {
6792 char timebuf[20];
2cf0635d 6793 struct tm * tmp;
50da7a9c 6794
91d6fa6a
NC
6795 time_t atime = entry->d_un.d_val;
6796 tmp = gmtime (&atime);
e9e44622
JJ
6797 snprintf (timebuf, sizeof (timebuf), "%04u-%02u-%02uT%02u:%02u:%02u",
6798 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
6799 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
2b692964 6800 printf (_("Time Stamp: %s\n"), timebuf);
252b5132
RH
6801 }
6802 break;
103f02d3 6803
252b5132
RH
6804 case DT_MIPS_RLD_VERSION:
6805 case DT_MIPS_LOCAL_GOTNO:
6806 case DT_MIPS_CONFLICTNO:
6807 case DT_MIPS_LIBLISTNO:
6808 case DT_MIPS_SYMTABNO:
6809 case DT_MIPS_UNREFEXTNO:
6810 case DT_MIPS_HIPAGENO:
6811 case DT_MIPS_DELTA_CLASS_NO:
6812 case DT_MIPS_DELTA_INSTANCE_NO:
6813 case DT_MIPS_DELTA_RELOC_NO:
6814 case DT_MIPS_DELTA_SYM_NO:
6815 case DT_MIPS_DELTA_CLASSSYM_NO:
6816 case DT_MIPS_COMPACT_SIZE:
6817 printf ("%ld\n", (long) entry->d_un.d_ptr);
6818 break;
103f02d3
UD
6819
6820 default:
0af1713e 6821 printf ("%#lx\n", (unsigned long) entry->d_un.d_ptr);
103f02d3
UD
6822 }
6823}
6824
103f02d3 6825static void
2cf0635d 6826dynamic_section_parisc_val (Elf_Internal_Dyn * entry)
103f02d3
UD
6827{
6828 switch (entry->d_tag)
6829 {
6830 case DT_HP_DLD_FLAGS:
6831 {
6832 static struct
6833 {
6834 long int bit;
2cf0635d 6835 const char * str;
5e220199
NC
6836 }
6837 flags[] =
6838 {
6839 { DT_HP_DEBUG_PRIVATE, "HP_DEBUG_PRIVATE" },
6840 { DT_HP_DEBUG_CALLBACK, "HP_DEBUG_CALLBACK" },
6841 { DT_HP_DEBUG_CALLBACK_BOR, "HP_DEBUG_CALLBACK_BOR" },
6842 { DT_HP_NO_ENVVAR, "HP_NO_ENVVAR" },
6843 { DT_HP_BIND_NOW, "HP_BIND_NOW" },
6844 { DT_HP_BIND_NONFATAL, "HP_BIND_NONFATAL" },
6845 { DT_HP_BIND_VERBOSE, "HP_BIND_VERBOSE" },
6846 { DT_HP_BIND_RESTRICTED, "HP_BIND_RESTRICTED" },
6847 { DT_HP_BIND_SYMBOLIC, "HP_BIND_SYMBOLIC" },
6848 { DT_HP_RPATH_FIRST, "HP_RPATH_FIRST" },
eec8f817
DA
6849 { DT_HP_BIND_DEPTH_FIRST, "HP_BIND_DEPTH_FIRST" },
6850 { DT_HP_GST, "HP_GST" },
6851 { DT_HP_SHLIB_FIXED, "HP_SHLIB_FIXED" },
6852 { DT_HP_MERGE_SHLIB_SEG, "HP_MERGE_SHLIB_SEG" },
6853 { DT_HP_NODELETE, "HP_NODELETE" },
6854 { DT_HP_GROUP, "HP_GROUP" },
6855 { DT_HP_PROTECT_LINKAGE_TABLE, "HP_PROTECT_LINKAGE_TABLE" }
5e220199 6856 };
103f02d3 6857 int first = 1;
5e220199 6858 size_t cnt;
f7a99963 6859 bfd_vma val = entry->d_un.d_val;
103f02d3 6860
60bca95a 6861 for (cnt = 0; cnt < ARRAY_SIZE (flags); ++cnt)
103f02d3 6862 if (val & flags[cnt].bit)
30800947
NC
6863 {
6864 if (! first)
6865 putchar (' ');
6866 fputs (flags[cnt].str, stdout);
6867 first = 0;
6868 val ^= flags[cnt].bit;
6869 }
76da6bbe 6870
103f02d3 6871 if (val != 0 || first)
f7a99963
NC
6872 {
6873 if (! first)
6874 putchar (' ');
6875 print_vma (val, HEX);
6876 }
103f02d3
UD
6877 }
6878 break;
76da6bbe 6879
252b5132 6880 default:
f7a99963
NC
6881 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
6882 break;
252b5132 6883 }
35b1837e 6884 putchar ('\n');
252b5132
RH
6885}
6886
28f997cf
TG
6887#ifdef BFD64
6888
6889/* VMS vs Unix time offset and factor. */
6890
6891#define VMS_EPOCH_OFFSET 35067168000000000LL
6892#define VMS_GRANULARITY_FACTOR 10000000
6893
6894/* Display a VMS time in a human readable format. */
6895
6896static void
6897print_vms_time (bfd_int64_t vmstime)
6898{
6899 struct tm *tm;
6900 time_t unxtime;
6901
6902 unxtime = (vmstime - VMS_EPOCH_OFFSET) / VMS_GRANULARITY_FACTOR;
6903 tm = gmtime (&unxtime);
6904 printf ("%04u-%02u-%02uT%02u:%02u:%02u",
6905 tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
6906 tm->tm_hour, tm->tm_min, tm->tm_sec);
6907}
6908#endif /* BFD64 */
6909
ecc51f48 6910static void
2cf0635d 6911dynamic_section_ia64_val (Elf_Internal_Dyn * entry)
ecc51f48
NC
6912{
6913 switch (entry->d_tag)
6914 {
0de14b54 6915 case DT_IA_64_PLT_RESERVE:
bdf4d63a 6916 /* First 3 slots reserved. */
ecc51f48
NC
6917 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
6918 printf (" -- ");
6919 print_vma (entry->d_un.d_ptr + (3 * 8), PREFIX_HEX);
bdf4d63a
JJ
6920 break;
6921
28f997cf
TG
6922 case DT_IA_64_VMS_LINKTIME:
6923#ifdef BFD64
6924 print_vms_time (entry->d_un.d_val);
6925#endif
6926 break;
6927
6928 case DT_IA_64_VMS_LNKFLAGS:
6929 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
6930 if (entry->d_un.d_val & VMS_LF_CALL_DEBUG)
6931 printf (" CALL_DEBUG");
6932 if (entry->d_un.d_val & VMS_LF_NOP0BUFS)
6933 printf (" NOP0BUFS");
6934 if (entry->d_un.d_val & VMS_LF_P0IMAGE)
6935 printf (" P0IMAGE");
6936 if (entry->d_un.d_val & VMS_LF_MKTHREADS)
6937 printf (" MKTHREADS");
6938 if (entry->d_un.d_val & VMS_LF_UPCALLS)
6939 printf (" UPCALLS");
6940 if (entry->d_un.d_val & VMS_LF_IMGSTA)
6941 printf (" IMGSTA");
6942 if (entry->d_un.d_val & VMS_LF_INITIALIZE)
6943 printf (" INITIALIZE");
6944 if (entry->d_un.d_val & VMS_LF_MAIN)
6945 printf (" MAIN");
6946 if (entry->d_un.d_val & VMS_LF_EXE_INIT)
6947 printf (" EXE_INIT");
6948 if (entry->d_un.d_val & VMS_LF_TBK_IN_IMG)
6949 printf (" TBK_IN_IMG");
6950 if (entry->d_un.d_val & VMS_LF_DBG_IN_IMG)
6951 printf (" DBG_IN_IMG");
6952 if (entry->d_un.d_val & VMS_LF_TBK_IN_DSF)
6953 printf (" TBK_IN_DSF");
6954 if (entry->d_un.d_val & VMS_LF_DBG_IN_DSF)
6955 printf (" DBG_IN_DSF");
6956 if (entry->d_un.d_val & VMS_LF_SIGNATURES)
6957 printf (" SIGNATURES");
6958 if (entry->d_un.d_val & VMS_LF_REL_SEG_OFF)
6959 printf (" REL_SEG_OFF");
6960 break;
6961
bdf4d63a
JJ
6962 default:
6963 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
6964 break;
ecc51f48 6965 }
bdf4d63a 6966 putchar ('\n');
ecc51f48
NC
6967}
6968
252b5132 6969static int
2cf0635d 6970get_32bit_dynamic_section (FILE * file)
252b5132 6971{
2cf0635d
NC
6972 Elf32_External_Dyn * edyn;
6973 Elf32_External_Dyn * ext;
6974 Elf_Internal_Dyn * entry;
103f02d3 6975
3f5e193b
NC
6976 edyn = (Elf32_External_Dyn *) get_data (NULL, file, dynamic_addr, 1,
6977 dynamic_size, _("dynamic section"));
a6e9f9df
AM
6978 if (!edyn)
6979 return 0;
103f02d3 6980
ba2685cc
AM
6981/* SGI's ELF has more than one section in the DYNAMIC segment, and we
6982 might not have the luxury of section headers. Look for the DT_NULL
6983 terminator to determine the number of entries. */
6984 for (ext = edyn, dynamic_nent = 0;
6985 (char *) ext < (char *) edyn + dynamic_size;
6986 ext++)
6987 {
6988 dynamic_nent++;
6989 if (BYTE_GET (ext->d_tag) == DT_NULL)
6990 break;
6991 }
252b5132 6992
3f5e193b
NC
6993 dynamic_section = (Elf_Internal_Dyn *) cmalloc (dynamic_nent,
6994 sizeof (* entry));
b2d38a17 6995 if (dynamic_section == NULL)
252b5132 6996 {
9ea033b2
NC
6997 error (_("Out of memory\n"));
6998 free (edyn);
6999 return 0;
7000 }
252b5132 7001
fb514b26 7002 for (ext = edyn, entry = dynamic_section;
ba2685cc 7003 entry < dynamic_section + dynamic_nent;
fb514b26 7004 ext++, entry++)
9ea033b2 7005 {
fb514b26
AM
7006 entry->d_tag = BYTE_GET (ext->d_tag);
7007 entry->d_un.d_val = BYTE_GET (ext->d_un.d_val);
252b5132
RH
7008 }
7009
9ea033b2
NC
7010 free (edyn);
7011
7012 return 1;
7013}
7014
7015static int
2cf0635d 7016get_64bit_dynamic_section (FILE * file)
9ea033b2 7017{
2cf0635d
NC
7018 Elf64_External_Dyn * edyn;
7019 Elf64_External_Dyn * ext;
7020 Elf_Internal_Dyn * entry;
103f02d3 7021
3f5e193b
NC
7022 edyn = (Elf64_External_Dyn *) get_data (NULL, file, dynamic_addr, 1,
7023 dynamic_size, _("dynamic section"));
a6e9f9df
AM
7024 if (!edyn)
7025 return 0;
103f02d3 7026
ba2685cc
AM
7027/* SGI's ELF has more than one section in the DYNAMIC segment, and we
7028 might not have the luxury of section headers. Look for the DT_NULL
7029 terminator to determine the number of entries. */
7030 for (ext = edyn, dynamic_nent = 0;
7031 (char *) ext < (char *) edyn + dynamic_size;
7032 ext++)
7033 {
7034 dynamic_nent++;
66543521 7035 if (BYTE_GET (ext->d_tag) == DT_NULL)
ba2685cc
AM
7036 break;
7037 }
252b5132 7038
3f5e193b
NC
7039 dynamic_section = (Elf_Internal_Dyn *) cmalloc (dynamic_nent,
7040 sizeof (* entry));
b2d38a17 7041 if (dynamic_section == NULL)
252b5132
RH
7042 {
7043 error (_("Out of memory\n"));
7044 free (edyn);
7045 return 0;
7046 }
7047
fb514b26 7048 for (ext = edyn, entry = dynamic_section;
ba2685cc 7049 entry < dynamic_section + dynamic_nent;
fb514b26 7050 ext++, entry++)
252b5132 7051 {
66543521
AM
7052 entry->d_tag = BYTE_GET (ext->d_tag);
7053 entry->d_un.d_val = BYTE_GET (ext->d_un.d_val);
252b5132
RH
7054 }
7055
7056 free (edyn);
7057
9ea033b2
NC
7058 return 1;
7059}
7060
e9e44622
JJ
7061static void
7062print_dynamic_flags (bfd_vma flags)
d1133906 7063{
e9e44622 7064 int first = 1;
13ae64f3 7065
d1133906
NC
7066 while (flags)
7067 {
7068 bfd_vma flag;
7069
7070 flag = flags & - flags;
7071 flags &= ~ flag;
7072
e9e44622
JJ
7073 if (first)
7074 first = 0;
7075 else
7076 putc (' ', stdout);
13ae64f3 7077
d1133906
NC
7078 switch (flag)
7079 {
e9e44622
JJ
7080 case DF_ORIGIN: fputs ("ORIGIN", stdout); break;
7081 case DF_SYMBOLIC: fputs ("SYMBOLIC", stdout); break;
7082 case DF_TEXTREL: fputs ("TEXTREL", stdout); break;
7083 case DF_BIND_NOW: fputs ("BIND_NOW", stdout); break;
7084 case DF_STATIC_TLS: fputs ("STATIC_TLS", stdout); break;
2b692964 7085 default: fputs (_("unknown"), stdout); break;
d1133906
NC
7086 }
7087 }
e9e44622 7088 puts ("");
d1133906
NC
7089}
7090
b2d38a17
NC
7091/* Parse and display the contents of the dynamic section. */
7092
9ea033b2 7093static int
2cf0635d 7094process_dynamic_section (FILE * file)
9ea033b2 7095{
2cf0635d 7096 Elf_Internal_Dyn * entry;
9ea033b2
NC
7097
7098 if (dynamic_size == 0)
7099 {
7100 if (do_dynamic)
b2d38a17 7101 printf (_("\nThere is no dynamic section in this file.\n"));
9ea033b2
NC
7102
7103 return 1;
7104 }
7105
7106 if (is_32bit_elf)
7107 {
b2d38a17 7108 if (! get_32bit_dynamic_section (file))
9ea033b2
NC
7109 return 0;
7110 }
b2d38a17 7111 else if (! get_64bit_dynamic_section (file))
9ea033b2
NC
7112 return 0;
7113
252b5132
RH
7114 /* Find the appropriate symbol table. */
7115 if (dynamic_symbols == NULL)
7116 {
86dba8ee
AM
7117 for (entry = dynamic_section;
7118 entry < dynamic_section + dynamic_nent;
7119 ++entry)
252b5132 7120 {
c8286bd1 7121 Elf_Internal_Shdr section;
252b5132
RH
7122
7123 if (entry->d_tag != DT_SYMTAB)
7124 continue;
7125
7126 dynamic_info[DT_SYMTAB] = entry->d_un.d_val;
7127
7128 /* Since we do not know how big the symbol table is,
7129 we default to reading in the entire file (!) and
7130 processing that. This is overkill, I know, but it
e3c8793a 7131 should work. */
d93f0186 7132 section.sh_offset = offset_from_vma (file, entry->d_un.d_val, 0);
252b5132 7133
fb52b2f4
NC
7134 if (archive_file_offset != 0)
7135 section.sh_size = archive_file_size - section.sh_offset;
7136 else
7137 {
7138 if (fseek (file, 0, SEEK_END))
591a748a 7139 error (_("Unable to seek to end of file!\n"));
fb52b2f4
NC
7140
7141 section.sh_size = ftell (file) - section.sh_offset;
7142 }
252b5132 7143
9ea033b2 7144 if (is_32bit_elf)
9ad5cbcf 7145 section.sh_entsize = sizeof (Elf32_External_Sym);
9ea033b2 7146 else
9ad5cbcf 7147 section.sh_entsize = sizeof (Elf64_External_Sym);
252b5132 7148
9ad5cbcf 7149 num_dynamic_syms = section.sh_size / section.sh_entsize;
19936277 7150 if (num_dynamic_syms < 1)
252b5132
RH
7151 {
7152 error (_("Unable to determine the number of symbols to load\n"));
7153 continue;
7154 }
7155
9ad5cbcf 7156 dynamic_symbols = GET_ELF_SYMBOLS (file, &section);
252b5132
RH
7157 }
7158 }
7159
7160 /* Similarly find a string table. */
7161 if (dynamic_strings == NULL)
7162 {
86dba8ee
AM
7163 for (entry = dynamic_section;
7164 entry < dynamic_section + dynamic_nent;
7165 ++entry)
252b5132
RH
7166 {
7167 unsigned long offset;
b34976b6 7168 long str_tab_len;
252b5132
RH
7169
7170 if (entry->d_tag != DT_STRTAB)
7171 continue;
7172
7173 dynamic_info[DT_STRTAB] = entry->d_un.d_val;
7174
7175 /* Since we do not know how big the string table is,
7176 we default to reading in the entire file (!) and
7177 processing that. This is overkill, I know, but it
e3c8793a 7178 should work. */
252b5132 7179
d93f0186 7180 offset = offset_from_vma (file, entry->d_un.d_val, 0);
fb52b2f4
NC
7181
7182 if (archive_file_offset != 0)
7183 str_tab_len = archive_file_size - offset;
7184 else
7185 {
7186 if (fseek (file, 0, SEEK_END))
7187 error (_("Unable to seek to end of file\n"));
7188 str_tab_len = ftell (file) - offset;
7189 }
252b5132
RH
7190
7191 if (str_tab_len < 1)
7192 {
7193 error
7194 (_("Unable to determine the length of the dynamic string table\n"));
7195 continue;
7196 }
7197
3f5e193b
NC
7198 dynamic_strings = (char *) get_data (NULL, file, offset, 1,
7199 str_tab_len,
7200 _("dynamic string table"));
d79b3d50 7201 dynamic_strings_length = str_tab_len;
252b5132
RH
7202 break;
7203 }
7204 }
7205
7206 /* And find the syminfo section if available. */
7207 if (dynamic_syminfo == NULL)
7208 {
3e8bba36 7209 unsigned long syminsz = 0;
252b5132 7210
86dba8ee
AM
7211 for (entry = dynamic_section;
7212 entry < dynamic_section + dynamic_nent;
7213 ++entry)
252b5132
RH
7214 {
7215 if (entry->d_tag == DT_SYMINENT)
7216 {
7217 /* Note: these braces are necessary to avoid a syntax
7218 error from the SunOS4 C compiler. */
7219 assert (sizeof (Elf_External_Syminfo) == entry->d_un.d_val);
7220 }
7221 else if (entry->d_tag == DT_SYMINSZ)
7222 syminsz = entry->d_un.d_val;
7223 else if (entry->d_tag == DT_SYMINFO)
d93f0186
NC
7224 dynamic_syminfo_offset = offset_from_vma (file, entry->d_un.d_val,
7225 syminsz);
252b5132
RH
7226 }
7227
7228 if (dynamic_syminfo_offset != 0 && syminsz != 0)
7229 {
2cf0635d
NC
7230 Elf_External_Syminfo * extsyminfo;
7231 Elf_External_Syminfo * extsym;
7232 Elf_Internal_Syminfo * syminfo;
252b5132
RH
7233
7234 /* There is a syminfo section. Read the data. */
3f5e193b
NC
7235 extsyminfo = (Elf_External_Syminfo *)
7236 get_data (NULL, file, dynamic_syminfo_offset, 1, syminsz,
7237 _("symbol information"));
a6e9f9df
AM
7238 if (!extsyminfo)
7239 return 0;
252b5132 7240
3f5e193b 7241 dynamic_syminfo = (Elf_Internal_Syminfo *) malloc (syminsz);
252b5132
RH
7242 if (dynamic_syminfo == NULL)
7243 {
7244 error (_("Out of memory\n"));
7245 return 0;
7246 }
7247
7248 dynamic_syminfo_nent = syminsz / sizeof (Elf_External_Syminfo);
86dba8ee
AM
7249 for (syminfo = dynamic_syminfo, extsym = extsyminfo;
7250 syminfo < dynamic_syminfo + dynamic_syminfo_nent;
7251 ++syminfo, ++extsym)
252b5132 7252 {
86dba8ee
AM
7253 syminfo->si_boundto = BYTE_GET (extsym->si_boundto);
7254 syminfo->si_flags = BYTE_GET (extsym->si_flags);
252b5132
RH
7255 }
7256
7257 free (extsyminfo);
7258 }
7259 }
7260
7261 if (do_dynamic && dynamic_addr)
86dba8ee
AM
7262 printf (_("\nDynamic section at offset 0x%lx contains %u entries:\n"),
7263 dynamic_addr, dynamic_nent);
252b5132
RH
7264 if (do_dynamic)
7265 printf (_(" Tag Type Name/Value\n"));
7266
86dba8ee
AM
7267 for (entry = dynamic_section;
7268 entry < dynamic_section + dynamic_nent;
7269 entry++)
252b5132
RH
7270 {
7271 if (do_dynamic)
f7a99963 7272 {
2cf0635d 7273 const char * dtype;
e699b9ff 7274
f7a99963
NC
7275 putchar (' ');
7276 print_vma (entry->d_tag, FULL_HEX);
e699b9ff
ILT
7277 dtype = get_dynamic_type (entry->d_tag);
7278 printf (" (%s)%*s", dtype,
7279 ((is_32bit_elf ? 27 : 19)
7280 - (int) strlen (dtype)),
f7a99963
NC
7281 " ");
7282 }
252b5132
RH
7283
7284 switch (entry->d_tag)
7285 {
d1133906
NC
7286 case DT_FLAGS:
7287 if (do_dynamic)
e9e44622 7288 print_dynamic_flags (entry->d_un.d_val);
d1133906 7289 break;
76da6bbe 7290
252b5132
RH
7291 case DT_AUXILIARY:
7292 case DT_FILTER:
019148e4
L
7293 case DT_CONFIG:
7294 case DT_DEPAUDIT:
7295 case DT_AUDIT:
252b5132
RH
7296 if (do_dynamic)
7297 {
019148e4 7298 switch (entry->d_tag)
b34976b6 7299 {
019148e4
L
7300 case DT_AUXILIARY:
7301 printf (_("Auxiliary library"));
7302 break;
7303
7304 case DT_FILTER:
7305 printf (_("Filter library"));
7306 break;
7307
b34976b6 7308 case DT_CONFIG:
019148e4
L
7309 printf (_("Configuration file"));
7310 break;
7311
7312 case DT_DEPAUDIT:
7313 printf (_("Dependency audit library"));
7314 break;
7315
7316 case DT_AUDIT:
7317 printf (_("Audit library"));
7318 break;
7319 }
252b5132 7320
d79b3d50
NC
7321 if (VALID_DYNAMIC_NAME (entry->d_un.d_val))
7322 printf (": [%s]\n", GET_DYNAMIC_NAME (entry->d_un.d_val));
252b5132 7323 else
f7a99963
NC
7324 {
7325 printf (": ");
7326 print_vma (entry->d_un.d_val, PREFIX_HEX);
7327 putchar ('\n');
7328 }
252b5132
RH
7329 }
7330 break;
7331
dcefbbbd 7332 case DT_FEATURE:
252b5132
RH
7333 if (do_dynamic)
7334 {
7335 printf (_("Flags:"));
86f55779 7336
252b5132
RH
7337 if (entry->d_un.d_val == 0)
7338 printf (_(" None\n"));
7339 else
7340 {
7341 unsigned long int val = entry->d_un.d_val;
86f55779 7342
252b5132
RH
7343 if (val & DTF_1_PARINIT)
7344 {
7345 printf (" PARINIT");
7346 val ^= DTF_1_PARINIT;
7347 }
dcefbbbd
L
7348 if (val & DTF_1_CONFEXP)
7349 {
7350 printf (" CONFEXP");
7351 val ^= DTF_1_CONFEXP;
7352 }
252b5132
RH
7353 if (val != 0)
7354 printf (" %lx", val);
7355 puts ("");
7356 }
7357 }
7358 break;
7359
7360 case DT_POSFLAG_1:
7361 if (do_dynamic)
7362 {
7363 printf (_("Flags:"));
86f55779 7364
252b5132
RH
7365 if (entry->d_un.d_val == 0)
7366 printf (_(" None\n"));
7367 else
7368 {
7369 unsigned long int val = entry->d_un.d_val;
86f55779 7370
252b5132
RH
7371 if (val & DF_P1_LAZYLOAD)
7372 {
7373 printf (" LAZYLOAD");
7374 val ^= DF_P1_LAZYLOAD;
7375 }
7376 if (val & DF_P1_GROUPPERM)
7377 {
7378 printf (" GROUPPERM");
7379 val ^= DF_P1_GROUPPERM;
7380 }
7381 if (val != 0)
7382 printf (" %lx", val);
7383 puts ("");
7384 }
7385 }
7386 break;
7387
7388 case DT_FLAGS_1:
7389 if (do_dynamic)
7390 {
7391 printf (_("Flags:"));
7392 if (entry->d_un.d_val == 0)
7393 printf (_(" None\n"));
7394 else
7395 {
7396 unsigned long int val = entry->d_un.d_val;
86f55779 7397
252b5132
RH
7398 if (val & DF_1_NOW)
7399 {
7400 printf (" NOW");
7401 val ^= DF_1_NOW;
7402 }
7403 if (val & DF_1_GLOBAL)
7404 {
7405 printf (" GLOBAL");
7406 val ^= DF_1_GLOBAL;
7407 }
7408 if (val & DF_1_GROUP)
7409 {
7410 printf (" GROUP");
7411 val ^= DF_1_GROUP;
7412 }
7413 if (val & DF_1_NODELETE)
7414 {
7415 printf (" NODELETE");
7416 val ^= DF_1_NODELETE;
7417 }
7418 if (val & DF_1_LOADFLTR)
7419 {
7420 printf (" LOADFLTR");
7421 val ^= DF_1_LOADFLTR;
7422 }
7423 if (val & DF_1_INITFIRST)
7424 {
7425 printf (" INITFIRST");
7426 val ^= DF_1_INITFIRST;
7427 }
7428 if (val & DF_1_NOOPEN)
7429 {
7430 printf (" NOOPEN");
7431 val ^= DF_1_NOOPEN;
7432 }
7433 if (val & DF_1_ORIGIN)
7434 {
7435 printf (" ORIGIN");
7436 val ^= DF_1_ORIGIN;
7437 }
7438 if (val & DF_1_DIRECT)
7439 {
7440 printf (" DIRECT");
7441 val ^= DF_1_DIRECT;
7442 }
7443 if (val & DF_1_TRANS)
7444 {
7445 printf (" TRANS");
7446 val ^= DF_1_TRANS;
7447 }
7448 if (val & DF_1_INTERPOSE)
7449 {
7450 printf (" INTERPOSE");
7451 val ^= DF_1_INTERPOSE;
7452 }
f7db6139 7453 if (val & DF_1_NODEFLIB)
dcefbbbd 7454 {
f7db6139
L
7455 printf (" NODEFLIB");
7456 val ^= DF_1_NODEFLIB;
dcefbbbd
L
7457 }
7458 if (val & DF_1_NODUMP)
7459 {
7460 printf (" NODUMP");
7461 val ^= DF_1_NODUMP;
7462 }
7463 if (val & DF_1_CONLFAT)
7464 {
7465 printf (" CONLFAT");
7466 val ^= DF_1_CONLFAT;
7467 }
252b5132
RH
7468 if (val != 0)
7469 printf (" %lx", val);
7470 puts ("");
7471 }
7472 }
7473 break;
7474
7475 case DT_PLTREL:
566b0d53 7476 dynamic_info[entry->d_tag] = entry->d_un.d_val;
252b5132
RH
7477 if (do_dynamic)
7478 puts (get_dynamic_type (entry->d_un.d_val));
7479 break;
7480
7481 case DT_NULL :
7482 case DT_NEEDED :
7483 case DT_PLTGOT :
7484 case DT_HASH :
7485 case DT_STRTAB :
7486 case DT_SYMTAB :
7487 case DT_RELA :
7488 case DT_INIT :
7489 case DT_FINI :
7490 case DT_SONAME :
7491 case DT_RPATH :
7492 case DT_SYMBOLIC:
7493 case DT_REL :
7494 case DT_DEBUG :
7495 case DT_TEXTREL :
7496 case DT_JMPREL :
019148e4 7497 case DT_RUNPATH :
252b5132
RH
7498 dynamic_info[entry->d_tag] = entry->d_un.d_val;
7499
7500 if (do_dynamic)
7501 {
2cf0635d 7502 char * name;
252b5132 7503
d79b3d50
NC
7504 if (VALID_DYNAMIC_NAME (entry->d_un.d_val))
7505 name = GET_DYNAMIC_NAME (entry->d_un.d_val);
252b5132 7506 else
d79b3d50 7507 name = NULL;
252b5132
RH
7508
7509 if (name)
7510 {
7511 switch (entry->d_tag)
7512 {
7513 case DT_NEEDED:
7514 printf (_("Shared library: [%s]"), name);
7515
18bd398b 7516 if (streq (name, program_interpreter))
f7a99963 7517 printf (_(" program interpreter"));
252b5132
RH
7518 break;
7519
7520 case DT_SONAME:
f7a99963 7521 printf (_("Library soname: [%s]"), name);
252b5132
RH
7522 break;
7523
7524 case DT_RPATH:
f7a99963 7525 printf (_("Library rpath: [%s]"), name);
252b5132
RH
7526 break;
7527
019148e4
L
7528 case DT_RUNPATH:
7529 printf (_("Library runpath: [%s]"), name);
7530 break;
7531
252b5132 7532 default:
f7a99963
NC
7533 print_vma (entry->d_un.d_val, PREFIX_HEX);
7534 break;
252b5132
RH
7535 }
7536 }
7537 else
f7a99963
NC
7538 print_vma (entry->d_un.d_val, PREFIX_HEX);
7539
7540 putchar ('\n');
252b5132
RH
7541 }
7542 break;
7543
7544 case DT_PLTRELSZ:
7545 case DT_RELASZ :
7546 case DT_STRSZ :
7547 case DT_RELSZ :
7548 case DT_RELAENT :
7549 case DT_SYMENT :
7550 case DT_RELENT :
566b0d53 7551 dynamic_info[entry->d_tag] = entry->d_un.d_val;
252b5132
RH
7552 case DT_PLTPADSZ:
7553 case DT_MOVEENT :
7554 case DT_MOVESZ :
7555 case DT_INIT_ARRAYSZ:
7556 case DT_FINI_ARRAYSZ:
047b2264
JJ
7557 case DT_GNU_CONFLICTSZ:
7558 case DT_GNU_LIBLISTSZ:
252b5132 7559 if (do_dynamic)
f7a99963
NC
7560 {
7561 print_vma (entry->d_un.d_val, UNSIGNED);
2b692964 7562 printf (_(" (bytes)\n"));
f7a99963 7563 }
252b5132
RH
7564 break;
7565
7566 case DT_VERDEFNUM:
7567 case DT_VERNEEDNUM:
7568 case DT_RELACOUNT:
7569 case DT_RELCOUNT:
7570 if (do_dynamic)
f7a99963
NC
7571 {
7572 print_vma (entry->d_un.d_val, UNSIGNED);
7573 putchar ('\n');
7574 }
252b5132
RH
7575 break;
7576
7577 case DT_SYMINSZ:
7578 case DT_SYMINENT:
7579 case DT_SYMINFO:
7580 case DT_USED:
7581 case DT_INIT_ARRAY:
7582 case DT_FINI_ARRAY:
7583 if (do_dynamic)
7584 {
d79b3d50
NC
7585 if (entry->d_tag == DT_USED
7586 && VALID_DYNAMIC_NAME (entry->d_un.d_val))
252b5132 7587 {
2cf0635d 7588 char * name = GET_DYNAMIC_NAME (entry->d_un.d_val);
252b5132 7589
b34976b6 7590 if (*name)
252b5132
RH
7591 {
7592 printf (_("Not needed object: [%s]\n"), name);
7593 break;
7594 }
7595 }
103f02d3 7596
f7a99963
NC
7597 print_vma (entry->d_un.d_val, PREFIX_HEX);
7598 putchar ('\n');
252b5132
RH
7599 }
7600 break;
7601
7602 case DT_BIND_NOW:
7603 /* The value of this entry is ignored. */
35b1837e
AM
7604 if (do_dynamic)
7605 putchar ('\n');
252b5132 7606 break;
103f02d3 7607
047b2264
JJ
7608 case DT_GNU_PRELINKED:
7609 if (do_dynamic)
7610 {
2cf0635d 7611 struct tm * tmp;
91d6fa6a 7612 time_t atime = entry->d_un.d_val;
047b2264 7613
91d6fa6a 7614 tmp = gmtime (&atime);
047b2264
JJ
7615 printf ("%04u-%02u-%02uT%02u:%02u:%02u\n",
7616 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
7617 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
7618
7619 }
7620 break;
7621
fdc90cb4
JJ
7622 case DT_GNU_HASH:
7623 dynamic_info_DT_GNU_HASH = entry->d_un.d_val;
7624 if (do_dynamic)
7625 {
7626 print_vma (entry->d_un.d_val, PREFIX_HEX);
7627 putchar ('\n');
7628 }
7629 break;
7630
252b5132
RH
7631 default:
7632 if ((entry->d_tag >= DT_VERSYM) && (entry->d_tag <= DT_VERNEEDNUM))
b34976b6 7633 version_info[DT_VERSIONTAGIDX (entry->d_tag)] =
252b5132
RH
7634 entry->d_un.d_val;
7635
7636 if (do_dynamic)
7637 {
7638 switch (elf_header.e_machine)
7639 {
7640 case EM_MIPS:
4fe85591 7641 case EM_MIPS_RS3_LE:
b2d38a17 7642 dynamic_section_mips_val (entry);
252b5132 7643 break;
103f02d3 7644 case EM_PARISC:
b2d38a17 7645 dynamic_section_parisc_val (entry);
103f02d3 7646 break;
ecc51f48 7647 case EM_IA_64:
b2d38a17 7648 dynamic_section_ia64_val (entry);
ecc51f48 7649 break;
252b5132 7650 default:
f7a99963
NC
7651 print_vma (entry->d_un.d_val, PREFIX_HEX);
7652 putchar ('\n');
252b5132
RH
7653 }
7654 }
7655 break;
7656 }
7657 }
7658
7659 return 1;
7660}
7661
7662static char *
d3ba0551 7663get_ver_flags (unsigned int flags)
252b5132 7664{
b34976b6 7665 static char buff[32];
252b5132
RH
7666
7667 buff[0] = 0;
7668
7669 if (flags == 0)
7670 return _("none");
7671
7672 if (flags & VER_FLG_BASE)
7673 strcat (buff, "BASE ");
7674
7675 if (flags & VER_FLG_WEAK)
7676 {
7677 if (flags & VER_FLG_BASE)
7678 strcat (buff, "| ");
7679
7680 strcat (buff, "WEAK ");
7681 }
7682
44ec90b9
RO
7683 if (flags & VER_FLG_INFO)
7684 {
7685 if (flags & (VER_FLG_BASE|VER_FLG_WEAK))
7686 strcat (buff, "| ");
7687
7688 strcat (buff, "INFO ");
7689 }
7690
7691 if (flags & ~(VER_FLG_BASE | VER_FLG_WEAK | VER_FLG_INFO))
2b692964 7692 strcat (buff, _("| <unknown>"));
252b5132
RH
7693
7694 return buff;
7695}
7696
7697/* Display the contents of the version sections. */
98fb390a 7698
252b5132 7699static int
2cf0635d 7700process_version_sections (FILE * file)
252b5132 7701{
2cf0635d 7702 Elf_Internal_Shdr * section;
b34976b6
AM
7703 unsigned i;
7704 int found = 0;
252b5132
RH
7705
7706 if (! do_version)
7707 return 1;
7708
7709 for (i = 0, section = section_headers;
7710 i < elf_header.e_shnum;
b34976b6 7711 i++, section++)
252b5132
RH
7712 {
7713 switch (section->sh_type)
7714 {
7715 case SHT_GNU_verdef:
7716 {
2cf0635d 7717 Elf_External_Verdef * edefs;
b34976b6
AM
7718 unsigned int idx;
7719 unsigned int cnt;
2cf0635d 7720 char * endbuf;
252b5132
RH
7721
7722 found = 1;
7723
7724 printf
72de5009 7725 (_("\nVersion definition section '%s' contains %u entries:\n"),
252b5132
RH
7726 SECTION_NAME (section), section->sh_info);
7727
7728 printf (_(" Addr: 0x"));
7729 printf_vma (section->sh_addr);
72de5009 7730 printf (_(" Offset: %#08lx Link: %u (%s)\n"),
1b228002 7731 (unsigned long) section->sh_offset, section->sh_link,
4fbb74a6
AM
7732 section->sh_link < elf_header.e_shnum
7733 ? SECTION_NAME (section_headers + section->sh_link)
2b692964 7734 : _("<corrupt>"));
252b5132 7735
3f5e193b
NC
7736 edefs = (Elf_External_Verdef *)
7737 get_data (NULL, file, section->sh_offset, 1,section->sh_size,
7738 _("version definition section"));
54806181 7739 endbuf = (char *) edefs + section->sh_size;
a6e9f9df
AM
7740 if (!edefs)
7741 break;
252b5132 7742
b34976b6 7743 for (idx = cnt = 0; cnt < section->sh_info; ++cnt)
252b5132 7744 {
2cf0635d
NC
7745 char * vstart;
7746 Elf_External_Verdef * edef;
b34976b6 7747 Elf_Internal_Verdef ent;
2cf0635d 7748 Elf_External_Verdaux * eaux;
b34976b6
AM
7749 Elf_Internal_Verdaux aux;
7750 int j;
7751 int isum;
103f02d3 7752
252b5132 7753 vstart = ((char *) edefs) + idx;
54806181
AM
7754 if (vstart + sizeof (*edef) > endbuf)
7755 break;
252b5132
RH
7756
7757 edef = (Elf_External_Verdef *) vstart;
7758
7759 ent.vd_version = BYTE_GET (edef->vd_version);
7760 ent.vd_flags = BYTE_GET (edef->vd_flags);
7761 ent.vd_ndx = BYTE_GET (edef->vd_ndx);
7762 ent.vd_cnt = BYTE_GET (edef->vd_cnt);
7763 ent.vd_hash = BYTE_GET (edef->vd_hash);
7764 ent.vd_aux = BYTE_GET (edef->vd_aux);
7765 ent.vd_next = BYTE_GET (edef->vd_next);
7766
7767 printf (_(" %#06x: Rev: %d Flags: %s"),
7768 idx, ent.vd_version, get_ver_flags (ent.vd_flags));
7769
7770 printf (_(" Index: %d Cnt: %d "),
7771 ent.vd_ndx, ent.vd_cnt);
7772
7773 vstart += ent.vd_aux;
7774
7775 eaux = (Elf_External_Verdaux *) vstart;
7776
7777 aux.vda_name = BYTE_GET (eaux->vda_name);
7778 aux.vda_next = BYTE_GET (eaux->vda_next);
7779
d79b3d50
NC
7780 if (VALID_DYNAMIC_NAME (aux.vda_name))
7781 printf (_("Name: %s\n"), GET_DYNAMIC_NAME (aux.vda_name));
252b5132
RH
7782 else
7783 printf (_("Name index: %ld\n"), aux.vda_name);
7784
7785 isum = idx + ent.vd_aux;
7786
b34976b6 7787 for (j = 1; j < ent.vd_cnt; j++)
252b5132
RH
7788 {
7789 isum += aux.vda_next;
7790 vstart += aux.vda_next;
7791
7792 eaux = (Elf_External_Verdaux *) vstart;
54806181
AM
7793 if (vstart + sizeof (*eaux) > endbuf)
7794 break;
252b5132
RH
7795
7796 aux.vda_name = BYTE_GET (eaux->vda_name);
7797 aux.vda_next = BYTE_GET (eaux->vda_next);
7798
d79b3d50 7799 if (VALID_DYNAMIC_NAME (aux.vda_name))
252b5132 7800 printf (_(" %#06x: Parent %d: %s\n"),
d79b3d50 7801 isum, j, GET_DYNAMIC_NAME (aux.vda_name));
252b5132
RH
7802 else
7803 printf (_(" %#06x: Parent %d, name index: %ld\n"),
7804 isum, j, aux.vda_name);
7805 }
54806181
AM
7806 if (j < ent.vd_cnt)
7807 printf (_(" Version def aux past end of section\n"));
252b5132
RH
7808
7809 idx += ent.vd_next;
7810 }
54806181
AM
7811 if (cnt < section->sh_info)
7812 printf (_(" Version definition past end of section\n"));
252b5132
RH
7813
7814 free (edefs);
7815 }
7816 break;
103f02d3 7817
252b5132
RH
7818 case SHT_GNU_verneed:
7819 {
2cf0635d 7820 Elf_External_Verneed * eneed;
b34976b6
AM
7821 unsigned int idx;
7822 unsigned int cnt;
2cf0635d 7823 char * endbuf;
252b5132
RH
7824
7825 found = 1;
7826
72de5009 7827 printf (_("\nVersion needs section '%s' contains %u entries:\n"),
252b5132
RH
7828 SECTION_NAME (section), section->sh_info);
7829
7830 printf (_(" Addr: 0x"));
7831 printf_vma (section->sh_addr);
72de5009 7832 printf (_(" Offset: %#08lx Link: %u (%s)\n"),
1b228002 7833 (unsigned long) section->sh_offset, section->sh_link,
4fbb74a6
AM
7834 section->sh_link < elf_header.e_shnum
7835 ? SECTION_NAME (section_headers + section->sh_link)
2b692964 7836 : _("<corrupt>"));
252b5132 7837
3f5e193b
NC
7838 eneed = (Elf_External_Verneed *) get_data (NULL, file,
7839 section->sh_offset, 1,
7840 section->sh_size,
7841 _("version need section"));
54806181 7842 endbuf = (char *) eneed + section->sh_size;
a6e9f9df
AM
7843 if (!eneed)
7844 break;
252b5132
RH
7845
7846 for (idx = cnt = 0; cnt < section->sh_info; ++cnt)
7847 {
2cf0635d 7848 Elf_External_Verneed * entry;
b34976b6
AM
7849 Elf_Internal_Verneed ent;
7850 int j;
7851 int isum;
2cf0635d 7852 char * vstart;
252b5132
RH
7853
7854 vstart = ((char *) eneed) + idx;
54806181
AM
7855 if (vstart + sizeof (*entry) > endbuf)
7856 break;
252b5132
RH
7857
7858 entry = (Elf_External_Verneed *) vstart;
7859
7860 ent.vn_version = BYTE_GET (entry->vn_version);
7861 ent.vn_cnt = BYTE_GET (entry->vn_cnt);
7862 ent.vn_file = BYTE_GET (entry->vn_file);
7863 ent.vn_aux = BYTE_GET (entry->vn_aux);
7864 ent.vn_next = BYTE_GET (entry->vn_next);
7865
7866 printf (_(" %#06x: Version: %d"), idx, ent.vn_version);
7867
d79b3d50
NC
7868 if (VALID_DYNAMIC_NAME (ent.vn_file))
7869 printf (_(" File: %s"), GET_DYNAMIC_NAME (ent.vn_file));
252b5132
RH
7870 else
7871 printf (_(" File: %lx"), ent.vn_file);
7872
7873 printf (_(" Cnt: %d\n"), ent.vn_cnt);
7874
7875 vstart += ent.vn_aux;
7876
7877 for (j = 0, isum = idx + ent.vn_aux; j < ent.vn_cnt; ++j)
7878 {
2cf0635d 7879 Elf_External_Vernaux * eaux;
b34976b6 7880 Elf_Internal_Vernaux aux;
252b5132 7881
54806181
AM
7882 if (vstart + sizeof (*eaux) > endbuf)
7883 break;
252b5132
RH
7884 eaux = (Elf_External_Vernaux *) vstart;
7885
7886 aux.vna_hash = BYTE_GET (eaux->vna_hash);
7887 aux.vna_flags = BYTE_GET (eaux->vna_flags);
7888 aux.vna_other = BYTE_GET (eaux->vna_other);
7889 aux.vna_name = BYTE_GET (eaux->vna_name);
7890 aux.vna_next = BYTE_GET (eaux->vna_next);
7891
d79b3d50 7892 if (VALID_DYNAMIC_NAME (aux.vna_name))
ecc2063b 7893 printf (_(" %#06x: Name: %s"),
d79b3d50 7894 isum, GET_DYNAMIC_NAME (aux.vna_name));
252b5132 7895 else
ecc2063b 7896 printf (_(" %#06x: Name index: %lx"),
252b5132
RH
7897 isum, aux.vna_name);
7898
7899 printf (_(" Flags: %s Version: %d\n"),
7900 get_ver_flags (aux.vna_flags), aux.vna_other);
7901
7902 isum += aux.vna_next;
7903 vstart += aux.vna_next;
7904 }
54806181
AM
7905 if (j < ent.vn_cnt)
7906 printf (_(" Version need aux past end of section\n"));
252b5132
RH
7907
7908 idx += ent.vn_next;
7909 }
54806181
AM
7910 if (cnt < section->sh_info)
7911 printf (_(" Version need past end of section\n"));
103f02d3 7912
252b5132
RH
7913 free (eneed);
7914 }
7915 break;
7916
7917 case SHT_GNU_versym:
7918 {
2cf0635d 7919 Elf_Internal_Shdr * link_section;
b34976b6
AM
7920 int total;
7921 int cnt;
2cf0635d
NC
7922 unsigned char * edata;
7923 unsigned short * data;
7924 char * strtab;
7925 Elf_Internal_Sym * symbols;
7926 Elf_Internal_Shdr * string_sec;
d3ba0551 7927 long off;
252b5132 7928
4fbb74a6 7929 if (section->sh_link >= elf_header.e_shnum)
c256ffe7
JJ
7930 break;
7931
4fbb74a6 7932 link_section = section_headers + section->sh_link;
08d8fa11 7933 total = section->sh_size / sizeof (Elf_External_Versym);
252b5132 7934
4fbb74a6 7935 if (link_section->sh_link >= elf_header.e_shnum)
c256ffe7
JJ
7936 break;
7937
252b5132
RH
7938 found = 1;
7939
9ad5cbcf 7940 symbols = GET_ELF_SYMBOLS (file, link_section);
252b5132 7941
4fbb74a6 7942 string_sec = section_headers + link_section->sh_link;
252b5132 7943
3f5e193b
NC
7944 strtab = (char *) get_data (NULL, file, string_sec->sh_offset, 1,
7945 string_sec->sh_size,
7946 _("version string table"));
a6e9f9df
AM
7947 if (!strtab)
7948 break;
252b5132
RH
7949
7950 printf (_("\nVersion symbols section '%s' contains %d entries:\n"),
7951 SECTION_NAME (section), total);
7952
7953 printf (_(" Addr: "));
7954 printf_vma (section->sh_addr);
72de5009 7955 printf (_(" Offset: %#08lx Link: %u (%s)\n"),
1b228002 7956 (unsigned long) section->sh_offset, section->sh_link,
252b5132
RH
7957 SECTION_NAME (link_section));
7958
d3ba0551
AM
7959 off = offset_from_vma (file,
7960 version_info[DT_VERSIONTAGIDX (DT_VERSYM)],
7961 total * sizeof (short));
3f5e193b
NC
7962 edata = (unsigned char *) get_data (NULL, file, off, total,
7963 sizeof (short),
7964 _("version symbol data"));
a6e9f9df
AM
7965 if (!edata)
7966 {
7967 free (strtab);
7968 break;
7969 }
252b5132 7970
3f5e193b 7971 data = (short unsigned int *) cmalloc (total, sizeof (short));
252b5132
RH
7972
7973 for (cnt = total; cnt --;)
b34976b6
AM
7974 data[cnt] = byte_get (edata + cnt * sizeof (short),
7975 sizeof (short));
252b5132
RH
7976
7977 free (edata);
7978
7979 for (cnt = 0; cnt < total; cnt += 4)
7980 {
7981 int j, nn;
00d93f34 7982 int check_def, check_need;
2cf0635d 7983 char * name;
252b5132
RH
7984
7985 printf (" %03x:", cnt);
7986
7987 for (j = 0; (j < 4) && (cnt + j) < total; ++j)
b34976b6 7988 switch (data[cnt + j])
252b5132
RH
7989 {
7990 case 0:
7991 fputs (_(" 0 (*local*) "), stdout);
7992 break;
7993
7994 case 1:
7995 fputs (_(" 1 (*global*) "), stdout);
7996 break;
7997
7998 default:
c244d050
NC
7999 nn = printf ("%4x%c", data[cnt + j] & VERSYM_VERSION,
8000 data[cnt + j] & VERSYM_HIDDEN ? 'h' : ' ');
252b5132 8001
00d93f34
JJ
8002 check_def = 1;
8003 check_need = 1;
4fbb74a6
AM
8004 if (symbols[cnt + j].st_shndx >= elf_header.e_shnum
8005 || section_headers[symbols[cnt + j].st_shndx].sh_type
c256ffe7 8006 != SHT_NOBITS)
252b5132 8007 {
b34976b6 8008 if (symbols[cnt + j].st_shndx == SHN_UNDEF)
00d93f34
JJ
8009 check_def = 0;
8010 else
8011 check_need = 0;
252b5132 8012 }
00d93f34
JJ
8013
8014 if (check_need
b34976b6 8015 && version_info[DT_VERSIONTAGIDX (DT_VERNEED)])
252b5132 8016 {
b34976b6
AM
8017 Elf_Internal_Verneed ivn;
8018 unsigned long offset;
252b5132 8019
d93f0186
NC
8020 offset = offset_from_vma
8021 (file, version_info[DT_VERSIONTAGIDX (DT_VERNEED)],
8022 sizeof (Elf_External_Verneed));
252b5132 8023
b34976b6 8024 do
252b5132 8025 {
b34976b6
AM
8026 Elf_Internal_Vernaux ivna;
8027 Elf_External_Verneed evn;
8028 Elf_External_Vernaux evna;
8029 unsigned long a_off;
252b5132 8030
c256ffe7 8031 get_data (&evn, file, offset, sizeof (evn), 1,
a6e9f9df 8032 _("version need"));
252b5132
RH
8033
8034 ivn.vn_aux = BYTE_GET (evn.vn_aux);
8035 ivn.vn_next = BYTE_GET (evn.vn_next);
8036
8037 a_off = offset + ivn.vn_aux;
8038
8039 do
8040 {
a6e9f9df 8041 get_data (&evna, file, a_off, sizeof (evna),
c256ffe7 8042 1, _("version need aux (2)"));
252b5132
RH
8043
8044 ivna.vna_next = BYTE_GET (evna.vna_next);
8045 ivna.vna_other = BYTE_GET (evna.vna_other);
8046
8047 a_off += ivna.vna_next;
8048 }
b34976b6 8049 while (ivna.vna_other != data[cnt + j]
252b5132
RH
8050 && ivna.vna_next != 0);
8051
b34976b6 8052 if (ivna.vna_other == data[cnt + j])
252b5132
RH
8053 {
8054 ivna.vna_name = BYTE_GET (evna.vna_name);
8055
54806181
AM
8056 if (ivna.vna_name >= string_sec->sh_size)
8057 name = _("*invalid*");
8058 else
8059 name = strtab + ivna.vna_name;
252b5132 8060 nn += printf ("(%s%-*s",
16062207
ILT
8061 name,
8062 12 - (int) strlen (name),
252b5132 8063 ")");
00d93f34 8064 check_def = 0;
252b5132
RH
8065 break;
8066 }
8067
8068 offset += ivn.vn_next;
8069 }
8070 while (ivn.vn_next);
8071 }
00d93f34 8072
b34976b6
AM
8073 if (check_def && data[cnt + j] != 0x8001
8074 && version_info[DT_VERSIONTAGIDX (DT_VERDEF)])
252b5132 8075 {
b34976b6
AM
8076 Elf_Internal_Verdef ivd;
8077 Elf_External_Verdef evd;
8078 unsigned long offset;
252b5132 8079
d93f0186
NC
8080 offset = offset_from_vma
8081 (file, version_info[DT_VERSIONTAGIDX (DT_VERDEF)],
8082 sizeof evd);
252b5132
RH
8083
8084 do
8085 {
c256ffe7 8086 get_data (&evd, file, offset, sizeof (evd), 1,
a6e9f9df 8087 _("version def"));
252b5132
RH
8088
8089 ivd.vd_next = BYTE_GET (evd.vd_next);
8090 ivd.vd_ndx = BYTE_GET (evd.vd_ndx);
8091
8092 offset += ivd.vd_next;
8093 }
c244d050 8094 while (ivd.vd_ndx != (data[cnt + j] & VERSYM_VERSION)
252b5132
RH
8095 && ivd.vd_next != 0);
8096
c244d050 8097 if (ivd.vd_ndx == (data[cnt + j] & VERSYM_VERSION))
252b5132 8098 {
b34976b6
AM
8099 Elf_External_Verdaux evda;
8100 Elf_Internal_Verdaux ivda;
252b5132
RH
8101
8102 ivd.vd_aux = BYTE_GET (evd.vd_aux);
8103
a6e9f9df
AM
8104 get_data (&evda, file,
8105 offset - ivd.vd_next + ivd.vd_aux,
c256ffe7
JJ
8106 sizeof (evda), 1,
8107 _("version def aux"));
252b5132
RH
8108
8109 ivda.vda_name = BYTE_GET (evda.vda_name);
8110
54806181
AM
8111 if (ivda.vda_name >= string_sec->sh_size)
8112 name = _("*invalid*");
8113 else
8114 name = strtab + ivda.vda_name;
252b5132 8115 nn += printf ("(%s%-*s",
16062207
ILT
8116 name,
8117 12 - (int) strlen (name),
252b5132
RH
8118 ")");
8119 }
8120 }
8121
8122 if (nn < 18)
8123 printf ("%*c", 18 - nn, ' ');
8124 }
8125
8126 putchar ('\n');
8127 }
8128
8129 free (data);
8130 free (strtab);
8131 free (symbols);
8132 }
8133 break;
103f02d3 8134
252b5132
RH
8135 default:
8136 break;
8137 }
8138 }
8139
8140 if (! found)
8141 printf (_("\nNo version information found in this file.\n"));
8142
8143 return 1;
8144}
8145
d1133906 8146static const char *
d3ba0551 8147get_symbol_binding (unsigned int binding)
252b5132 8148{
b34976b6 8149 static char buff[32];
252b5132
RH
8150
8151 switch (binding)
8152 {
b34976b6
AM
8153 case STB_LOCAL: return "LOCAL";
8154 case STB_GLOBAL: return "GLOBAL";
8155 case STB_WEAK: return "WEAK";
252b5132
RH
8156 default:
8157 if (binding >= STB_LOPROC && binding <= STB_HIPROC)
e9e44622
JJ
8158 snprintf (buff, sizeof (buff), _("<processor specific>: %d"),
8159 binding);
252b5132 8160 else if (binding >= STB_LOOS && binding <= STB_HIOS)
3e7a7d11
NC
8161 {
8162 if (binding == STB_GNU_UNIQUE
8163 && (elf_header.e_ident[EI_OSABI] == ELFOSABI_LINUX
8164 /* GNU/Linux is still using the default value 0. */
8165 || elf_header.e_ident[EI_OSABI] == ELFOSABI_NONE))
8166 return "UNIQUE";
8167 snprintf (buff, sizeof (buff), _("<OS specific>: %d"), binding);
8168 }
252b5132 8169 else
e9e44622 8170 snprintf (buff, sizeof (buff), _("<unknown>: %d"), binding);
252b5132
RH
8171 return buff;
8172 }
8173}
8174
d1133906 8175static const char *
d3ba0551 8176get_symbol_type (unsigned int type)
252b5132 8177{
b34976b6 8178 static char buff[32];
252b5132
RH
8179
8180 switch (type)
8181 {
b34976b6
AM
8182 case STT_NOTYPE: return "NOTYPE";
8183 case STT_OBJECT: return "OBJECT";
8184 case STT_FUNC: return "FUNC";
8185 case STT_SECTION: return "SECTION";
8186 case STT_FILE: return "FILE";
8187 case STT_COMMON: return "COMMON";
8188 case STT_TLS: return "TLS";
15ab5209
DB
8189 case STT_RELC: return "RELC";
8190 case STT_SRELC: return "SRELC";
252b5132
RH
8191 default:
8192 if (type >= STT_LOPROC && type <= STT_HIPROC)
df75f1af
NC
8193 {
8194 if (elf_header.e_machine == EM_ARM && type == STT_ARM_TFUNC)
103f02d3
UD
8195 return "THUMB_FUNC";
8196
351b4b40 8197 if (elf_header.e_machine == EM_SPARCV9 && type == STT_REGISTER)
103f02d3
UD
8198 return "REGISTER";
8199
8200 if (elf_header.e_machine == EM_PARISC && type == STT_PARISC_MILLI)
8201 return "PARISC_MILLI";
8202
e9e44622 8203 snprintf (buff, sizeof (buff), _("<processor specific>: %d"), type);
df75f1af 8204 }
252b5132 8205 else if (type >= STT_LOOS && type <= STT_HIOS)
103f02d3
UD
8206 {
8207 if (elf_header.e_machine == EM_PARISC)
8208 {
8209 if (type == STT_HP_OPAQUE)
8210 return "HP_OPAQUE";
8211 if (type == STT_HP_STUB)
8212 return "HP_STUB";
8213 }
8214
d8045f23
NC
8215 if (type == STT_GNU_IFUNC
8216 && (elf_header.e_ident[EI_OSABI] == ELFOSABI_LINUX
8217 /* GNU/Linux is still using the default value 0. */
8218 || elf_header.e_ident[EI_OSABI] == ELFOSABI_NONE))
8219 return "IFUNC";
8220
e9e44622 8221 snprintf (buff, sizeof (buff), _("<OS specific>: %d"), type);
103f02d3 8222 }
252b5132 8223 else
e9e44622 8224 snprintf (buff, sizeof (buff), _("<unknown>: %d"), type);
252b5132
RH
8225 return buff;
8226 }
8227}
8228
d1133906 8229static const char *
d3ba0551 8230get_symbol_visibility (unsigned int visibility)
d1133906
NC
8231{
8232 switch (visibility)
8233 {
b34976b6
AM
8234 case STV_DEFAULT: return "DEFAULT";
8235 case STV_INTERNAL: return "INTERNAL";
8236 case STV_HIDDEN: return "HIDDEN";
d1133906
NC
8237 case STV_PROTECTED: return "PROTECTED";
8238 default: abort ();
8239 }
8240}
8241
5e2b0d47
NC
8242static const char *
8243get_mips_symbol_other (unsigned int other)
8244{
8245 switch (other)
8246 {
8247 case STO_OPTIONAL: return "OPTIONAL";
8248 case STO_MIPS16: return "MIPS16";
861fb55a
DJ
8249 case STO_MIPS_PLT: return "MIPS PLT";
8250 case STO_MIPS_PIC: return "MIPS PIC";
5e2b0d47
NC
8251 default: return NULL;
8252 }
8253}
8254
28f997cf
TG
8255static const char *
8256get_ia64_symbol_other (unsigned int other)
8257{
8258 if (is_ia64_vms ())
8259 {
8260 static char res[32];
8261
8262 res[0] = 0;
8263
8264 /* Function types is for images and .STB files only. */
8265 switch (elf_header.e_type)
8266 {
8267 case ET_DYN:
8268 case ET_EXEC:
8269 switch (VMS_ST_FUNC_TYPE (other))
8270 {
8271 case VMS_SFT_CODE_ADDR:
8272 strcat (res, " CA");
8273 break;
8274 case VMS_SFT_SYMV_IDX:
8275 strcat (res, " VEC");
8276 break;
8277 case VMS_SFT_FD:
8278 strcat (res, " FD");
8279 break;
8280 case VMS_SFT_RESERVE:
8281 strcat (res, " RSV");
8282 break;
8283 default:
8284 abort ();
8285 }
8286 break;
8287 default:
8288 break;
8289 }
8290 switch (VMS_ST_LINKAGE (other))
8291 {
8292 case VMS_STL_IGNORE:
8293 strcat (res, " IGN");
8294 break;
8295 case VMS_STL_RESERVE:
8296 strcat (res, " RSV");
8297 break;
8298 case VMS_STL_STD:
8299 strcat (res, " STD");
8300 break;
8301 case VMS_STL_LNK:
8302 strcat (res, " LNK");
8303 break;
8304 default:
8305 abort ();
8306 }
8307
8308 if (res[0] != 0)
8309 return res + 1;
8310 else
8311 return res;
8312 }
8313 return NULL;
8314}
8315
5e2b0d47
NC
8316static const char *
8317get_symbol_other (unsigned int other)
8318{
8319 const char * result = NULL;
8320 static char buff [32];
8321
8322 if (other == 0)
8323 return "";
8324
8325 switch (elf_header.e_machine)
8326 {
8327 case EM_MIPS:
8328 result = get_mips_symbol_other (other);
28f997cf
TG
8329 break;
8330 case EM_IA_64:
8331 result = get_ia64_symbol_other (other);
8332 break;
5e2b0d47
NC
8333 default:
8334 break;
8335 }
8336
8337 if (result)
8338 return result;
8339
8340 snprintf (buff, sizeof buff, _("<other>: %x"), other);
8341 return buff;
8342}
8343
d1133906 8344static const char *
d3ba0551 8345get_symbol_index_type (unsigned int type)
252b5132 8346{
b34976b6 8347 static char buff[32];
5cf1065c 8348
252b5132
RH
8349 switch (type)
8350 {
b34976b6
AM
8351 case SHN_UNDEF: return "UND";
8352 case SHN_ABS: return "ABS";
8353 case SHN_COMMON: return "COM";
252b5132 8354 default:
9ce701e2
L
8355 if (type == SHN_IA_64_ANSI_COMMON
8356 && elf_header.e_machine == EM_IA_64
8357 && elf_header.e_ident[EI_OSABI] == ELFOSABI_HPUX)
8358 return "ANSI_COM";
8a9036a4
L
8359 else if ((elf_header.e_machine == EM_X86_64
8360 || elf_header.e_machine == EM_L1OM)
3b22753a
L
8361 && type == SHN_X86_64_LCOMMON)
8362 return "LARGE_COM";
172553c7
TS
8363 else if (type == SHN_MIPS_SCOMMON
8364 && elf_header.e_machine == EM_MIPS)
8365 return "SCOM";
8366 else if (type == SHN_MIPS_SUNDEFINED
8367 && elf_header.e_machine == EM_MIPS)
8368 return "SUND";
9ce701e2 8369 else if (type >= SHN_LOPROC && type <= SHN_HIPROC)
4fbb74a6 8370 sprintf (buff, "PRC[0x%04x]", type & 0xffff);
252b5132 8371 else if (type >= SHN_LOOS && type <= SHN_HIOS)
4fbb74a6
AM
8372 sprintf (buff, "OS [0x%04x]", type & 0xffff);
8373 else if (type >= SHN_LORESERVE)
8374 sprintf (buff, "RSV[0x%04x]", type & 0xffff);
252b5132 8375 else
232e7cb8 8376 sprintf (buff, "%3d", type);
5cf1065c 8377 break;
252b5132 8378 }
5cf1065c
NC
8379
8380 return buff;
252b5132
RH
8381}
8382
66543521 8383static bfd_vma *
2cf0635d 8384get_dynamic_data (FILE * file, unsigned int number, unsigned int ent_size)
252b5132 8385{
2cf0635d
NC
8386 unsigned char * e_data;
8387 bfd_vma * i_data;
252b5132 8388
3f5e193b 8389 e_data = (unsigned char *) cmalloc (number, ent_size);
252b5132
RH
8390
8391 if (e_data == NULL)
8392 {
8393 error (_("Out of memory\n"));
8394 return NULL;
8395 }
8396
66543521 8397 if (fread (e_data, ent_size, number, file) != number)
252b5132
RH
8398 {
8399 error (_("Unable to read in dynamic data\n"));
8400 return NULL;
8401 }
8402
3f5e193b 8403 i_data = (bfd_vma *) cmalloc (number, sizeof (*i_data));
252b5132
RH
8404
8405 if (i_data == NULL)
8406 {
8407 error (_("Out of memory\n"));
8408 free (e_data);
8409 return NULL;
8410 }
8411
8412 while (number--)
66543521 8413 i_data[number] = byte_get (e_data + number * ent_size, ent_size);
252b5132
RH
8414
8415 free (e_data);
8416
8417 return i_data;
8418}
8419
6bd1a22c
L
8420static void
8421print_dynamic_symbol (bfd_vma si, unsigned long hn)
8422{
2cf0635d 8423 Elf_Internal_Sym * psym;
6bd1a22c
L
8424 int n;
8425
8426 psym = dynamic_symbols + si;
8427
8428 n = print_vma (si, DEC_5);
8429 if (n < 5)
8430 fputs (" " + n, stdout);
8431 printf (" %3lu: ", hn);
8432 print_vma (psym->st_value, LONG_HEX);
8433 putchar (' ');
8434 print_vma (psym->st_size, DEC_5);
8435
f4be36b3
AM
8436 printf (" %-7s", get_symbol_type (ELF_ST_TYPE (psym->st_info)));
8437 printf (" %-6s", get_symbol_binding (ELF_ST_BIND (psym->st_info)));
8438 printf (" %-7s", get_symbol_visibility (ELF_ST_VISIBILITY (psym->st_other)));
6bd1a22c
L
8439 /* Check to see if any other bits in the st_other field are set.
8440 Note - displaying this information disrupts the layout of the
8441 table being generated, but for the moment this case is very
8442 rare. */
8443 if (psym->st_other ^ ELF_ST_VISIBILITY (psym->st_other))
8444 printf (" [%s] ", get_symbol_other (psym->st_other ^ ELF_ST_VISIBILITY (psym->st_other)));
8445 printf (" %3.3s ", get_symbol_index_type (psym->st_shndx));
8446 if (VALID_DYNAMIC_NAME (psym->st_name))
8447 print_symbol (25, GET_DYNAMIC_NAME (psym->st_name));
8448 else
2b692964 8449 printf (_(" <corrupt: %14ld>"), psym->st_name);
6bd1a22c
L
8450 putchar ('\n');
8451}
8452
e3c8793a 8453/* Dump the symbol table. */
252b5132 8454static int
2cf0635d 8455process_symbol_table (FILE * file)
252b5132 8456{
2cf0635d 8457 Elf_Internal_Shdr * section;
66543521
AM
8458 bfd_vma nbuckets = 0;
8459 bfd_vma nchains = 0;
2cf0635d
NC
8460 bfd_vma * buckets = NULL;
8461 bfd_vma * chains = NULL;
fdc90cb4 8462 bfd_vma ngnubuckets = 0;
2cf0635d
NC
8463 bfd_vma * gnubuckets = NULL;
8464 bfd_vma * gnuchains = NULL;
6bd1a22c 8465 bfd_vma gnusymidx = 0;
252b5132 8466
2c610e4b 8467 if (!do_syms && !do_dyn_syms && !do_histogram)
252b5132
RH
8468 return 1;
8469
6bd1a22c
L
8470 if (dynamic_info[DT_HASH]
8471 && (do_histogram
2c610e4b
L
8472 || (do_using_dynamic
8473 && !do_dyn_syms
8474 && dynamic_strings != NULL)))
252b5132 8475 {
66543521
AM
8476 unsigned char nb[8];
8477 unsigned char nc[8];
8478 int hash_ent_size = 4;
8479
8480 if ((elf_header.e_machine == EM_ALPHA
8481 || elf_header.e_machine == EM_S390
8482 || elf_header.e_machine == EM_S390_OLD)
8483 && elf_header.e_ident[EI_CLASS] == ELFCLASS64)
8484 hash_ent_size = 8;
8485
fb52b2f4
NC
8486 if (fseek (file,
8487 (archive_file_offset
8488 + offset_from_vma (file, dynamic_info[DT_HASH],
8489 sizeof nb + sizeof nc)),
d93f0186 8490 SEEK_SET))
252b5132 8491 {
591a748a 8492 error (_("Unable to seek to start of dynamic information\n"));
d3a44ec6 8493 goto no_hash;
252b5132
RH
8494 }
8495
66543521 8496 if (fread (nb, hash_ent_size, 1, file) != 1)
252b5132
RH
8497 {
8498 error (_("Failed to read in number of buckets\n"));
d3a44ec6 8499 goto no_hash;
252b5132
RH
8500 }
8501
66543521 8502 if (fread (nc, hash_ent_size, 1, file) != 1)
252b5132
RH
8503 {
8504 error (_("Failed to read in number of chains\n"));
d3a44ec6 8505 goto no_hash;
252b5132
RH
8506 }
8507
66543521
AM
8508 nbuckets = byte_get (nb, hash_ent_size);
8509 nchains = byte_get (nc, hash_ent_size);
252b5132 8510
66543521
AM
8511 buckets = get_dynamic_data (file, nbuckets, hash_ent_size);
8512 chains = get_dynamic_data (file, nchains, hash_ent_size);
252b5132 8513
d3a44ec6 8514 no_hash:
252b5132 8515 if (buckets == NULL || chains == NULL)
d3a44ec6
JJ
8516 {
8517 if (do_using_dynamic)
8518 return 0;
8519 free (buckets);
8520 free (chains);
8521 buckets = NULL;
8522 chains = NULL;
8523 nbuckets = 0;
8524 nchains = 0;
8525 }
252b5132
RH
8526 }
8527
6bd1a22c
L
8528 if (dynamic_info_DT_GNU_HASH
8529 && (do_histogram
2c610e4b
L
8530 || (do_using_dynamic
8531 && !do_dyn_syms
8532 && dynamic_strings != NULL)))
252b5132 8533 {
6bd1a22c
L
8534 unsigned char nb[16];
8535 bfd_vma i, maxchain = 0xffffffff, bitmaskwords;
8536 bfd_vma buckets_vma;
8537
8538 if (fseek (file,
8539 (archive_file_offset
8540 + offset_from_vma (file, dynamic_info_DT_GNU_HASH,
8541 sizeof nb)),
8542 SEEK_SET))
8543 {
8544 error (_("Unable to seek to start of dynamic information\n"));
d3a44ec6 8545 goto no_gnu_hash;
6bd1a22c 8546 }
252b5132 8547
6bd1a22c
L
8548 if (fread (nb, 16, 1, file) != 1)
8549 {
8550 error (_("Failed to read in number of buckets\n"));
d3a44ec6 8551 goto no_gnu_hash;
6bd1a22c
L
8552 }
8553
8554 ngnubuckets = byte_get (nb, 4);
8555 gnusymidx = byte_get (nb + 4, 4);
8556 bitmaskwords = byte_get (nb + 8, 4);
8557 buckets_vma = dynamic_info_DT_GNU_HASH + 16;
f7a99963 8558 if (is_32bit_elf)
6bd1a22c 8559 buckets_vma += bitmaskwords * 4;
f7a99963 8560 else
6bd1a22c 8561 buckets_vma += bitmaskwords * 8;
252b5132 8562
6bd1a22c
L
8563 if (fseek (file,
8564 (archive_file_offset
8565 + offset_from_vma (file, buckets_vma, 4)),
8566 SEEK_SET))
252b5132 8567 {
6bd1a22c 8568 error (_("Unable to seek to start of dynamic information\n"));
d3a44ec6 8569 goto no_gnu_hash;
6bd1a22c
L
8570 }
8571
8572 gnubuckets = get_dynamic_data (file, ngnubuckets, 4);
252b5132 8573
6bd1a22c 8574 if (gnubuckets == NULL)
d3a44ec6 8575 goto no_gnu_hash;
6bd1a22c
L
8576
8577 for (i = 0; i < ngnubuckets; i++)
8578 if (gnubuckets[i] != 0)
8579 {
8580 if (gnubuckets[i] < gnusymidx)
8581 return 0;
8582
8583 if (maxchain == 0xffffffff || gnubuckets[i] > maxchain)
8584 maxchain = gnubuckets[i];
8585 }
8586
8587 if (maxchain == 0xffffffff)
d3a44ec6 8588 goto no_gnu_hash;
6bd1a22c
L
8589
8590 maxchain -= gnusymidx;
8591
8592 if (fseek (file,
8593 (archive_file_offset
8594 + offset_from_vma (file, buckets_vma
8595 + 4 * (ngnubuckets + maxchain), 4)),
8596 SEEK_SET))
8597 {
8598 error (_("Unable to seek to start of dynamic information\n"));
d3a44ec6 8599 goto no_gnu_hash;
6bd1a22c
L
8600 }
8601
8602 do
8603 {
8604 if (fread (nb, 4, 1, file) != 1)
252b5132 8605 {
6bd1a22c 8606 error (_("Failed to determine last chain length\n"));
d3a44ec6 8607 goto no_gnu_hash;
6bd1a22c 8608 }
252b5132 8609
6bd1a22c 8610 if (maxchain + 1 == 0)
d3a44ec6 8611 goto no_gnu_hash;
252b5132 8612
6bd1a22c
L
8613 ++maxchain;
8614 }
8615 while ((byte_get (nb, 4) & 1) == 0);
76da6bbe 8616
6bd1a22c
L
8617 if (fseek (file,
8618 (archive_file_offset
8619 + offset_from_vma (file, buckets_vma + 4 * ngnubuckets, 4)),
8620 SEEK_SET))
8621 {
8622 error (_("Unable to seek to start of dynamic information\n"));
d3a44ec6 8623 goto no_gnu_hash;
6bd1a22c
L
8624 }
8625
8626 gnuchains = get_dynamic_data (file, maxchain, 4);
8627
d3a44ec6 8628 no_gnu_hash:
6bd1a22c 8629 if (gnuchains == NULL)
d3a44ec6
JJ
8630 {
8631 free (gnubuckets);
d3a44ec6
JJ
8632 gnubuckets = NULL;
8633 ngnubuckets = 0;
f64fddf1
NC
8634 if (do_using_dynamic)
8635 return 0;
d3a44ec6 8636 }
6bd1a22c
L
8637 }
8638
8639 if ((dynamic_info[DT_HASH] || dynamic_info_DT_GNU_HASH)
8640 && do_syms
8641 && do_using_dynamic
8642 && dynamic_strings != NULL)
8643 {
8644 unsigned long hn;
8645
8646 if (dynamic_info[DT_HASH])
8647 {
8648 bfd_vma si;
8649
8650 printf (_("\nSymbol table for image:\n"));
8651 if (is_32bit_elf)
8652 printf (_(" Num Buc: Value Size Type Bind Vis Ndx Name\n"));
8653 else
8654 printf (_(" Num Buc: Value Size Type Bind Vis Ndx Name\n"));
8655
8656 for (hn = 0; hn < nbuckets; hn++)
8657 {
8658 if (! buckets[hn])
8659 continue;
8660
8661 for (si = buckets[hn]; si < nchains && si > 0; si = chains[si])
8662 print_dynamic_symbol (si, hn);
252b5132
RH
8663 }
8664 }
6bd1a22c
L
8665
8666 if (dynamic_info_DT_GNU_HASH)
8667 {
8668 printf (_("\nSymbol table of `.gnu.hash' for image:\n"));
8669 if (is_32bit_elf)
8670 printf (_(" Num Buc: Value Size Type Bind Vis Ndx Name\n"));
8671 else
8672 printf (_(" Num Buc: Value Size Type Bind Vis Ndx Name\n"));
8673
8674 for (hn = 0; hn < ngnubuckets; ++hn)
8675 if (gnubuckets[hn] != 0)
8676 {
8677 bfd_vma si = gnubuckets[hn];
8678 bfd_vma off = si - gnusymidx;
8679
8680 do
8681 {
8682 print_dynamic_symbol (si, hn);
8683 si++;
8684 }
8685 while ((gnuchains[off++] & 1) == 0);
8686 }
8687 }
252b5132 8688 }
2c610e4b 8689 else if (do_dyn_syms || (do_syms && !do_using_dynamic))
252b5132 8690 {
b34976b6 8691 unsigned int i;
252b5132
RH
8692
8693 for (i = 0, section = section_headers;
8694 i < elf_header.e_shnum;
8695 i++, section++)
8696 {
b34976b6 8697 unsigned int si;
2cf0635d 8698 char * strtab = NULL;
c256ffe7 8699 unsigned long int strtab_size = 0;
2cf0635d
NC
8700 Elf_Internal_Sym * symtab;
8701 Elf_Internal_Sym * psym;
252b5132 8702
2c610e4b
L
8703 if ((section->sh_type != SHT_SYMTAB
8704 && section->sh_type != SHT_DYNSYM)
8705 || (!do_syms
8706 && section->sh_type == SHT_SYMTAB))
252b5132
RH
8707 continue;
8708
8709 printf (_("\nSymbol table '%s' contains %lu entries:\n"),
8710 SECTION_NAME (section),
8711 (unsigned long) (section->sh_size / section->sh_entsize));
f7a99963 8712 if (is_32bit_elf)
ca47b30c 8713 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
f7a99963 8714 else
ca47b30c 8715 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
252b5132 8716
9ad5cbcf 8717 symtab = GET_ELF_SYMBOLS (file, section);
252b5132
RH
8718 if (symtab == NULL)
8719 continue;
8720
8721 if (section->sh_link == elf_header.e_shstrndx)
c256ffe7
JJ
8722 {
8723 strtab = string_table;
8724 strtab_size = string_table_length;
8725 }
4fbb74a6 8726 else if (section->sh_link < elf_header.e_shnum)
252b5132 8727 {
2cf0635d 8728 Elf_Internal_Shdr * string_sec;
252b5132 8729
4fbb74a6 8730 string_sec = section_headers + section->sh_link;
252b5132 8731
3f5e193b
NC
8732 strtab = (char *) get_data (NULL, file, string_sec->sh_offset,
8733 1, string_sec->sh_size,
8734 _("string table"));
c256ffe7 8735 strtab_size = strtab != NULL ? string_sec->sh_size : 0;
252b5132
RH
8736 }
8737
8738 for (si = 0, psym = symtab;
8739 si < section->sh_size / section->sh_entsize;
b34976b6 8740 si++, psym++)
252b5132 8741 {
5e220199 8742 printf ("%6d: ", si);
f7a99963
NC
8743 print_vma (psym->st_value, LONG_HEX);
8744 putchar (' ');
8745 print_vma (psym->st_size, DEC_5);
d1133906
NC
8746 printf (" %-7s", get_symbol_type (ELF_ST_TYPE (psym->st_info)));
8747 printf (" %-6s", get_symbol_binding (ELF_ST_BIND (psym->st_info)));
f4be36b3 8748 printf (" %-7s", get_symbol_visibility (ELF_ST_VISIBILITY (psym->st_other)));
5e2b0d47
NC
8749 /* Check to see if any other bits in the st_other field are set.
8750 Note - displaying this information disrupts the layout of the
8751 table being generated, but for the moment this case is very rare. */
8752 if (psym->st_other ^ ELF_ST_VISIBILITY (psym->st_other))
8753 printf (" [%s] ", get_symbol_other (psym->st_other ^ ELF_ST_VISIBILITY (psym->st_other)));
31104126 8754 printf (" %4s ", get_symbol_index_type (psym->st_shndx));
c256ffe7 8755 print_symbol (25, psym->st_name < strtab_size
2b692964 8756 ? strtab + psym->st_name : _("<corrupt>"));
252b5132
RH
8757
8758 if (section->sh_type == SHT_DYNSYM &&
b34976b6 8759 version_info[DT_VERSIONTAGIDX (DT_VERSYM)] != 0)
252b5132 8760 {
b34976b6
AM
8761 unsigned char data[2];
8762 unsigned short vers_data;
8763 unsigned long offset;
8764 int is_nobits;
8765 int check_def;
252b5132 8766
d93f0186
NC
8767 offset = offset_from_vma
8768 (file, version_info[DT_VERSIONTAGIDX (DT_VERSYM)],
8769 sizeof data + si * sizeof (vers_data));
252b5132 8770
a6e9f9df 8771 get_data (&data, file, offset + si * sizeof (vers_data),
c256ffe7 8772 sizeof (data), 1, _("version data"));
252b5132
RH
8773
8774 vers_data = byte_get (data, 2);
8775
4fbb74a6
AM
8776 is_nobits = (psym->st_shndx < elf_header.e_shnum
8777 && section_headers[psym->st_shndx].sh_type
c256ffe7 8778 == SHT_NOBITS);
252b5132
RH
8779
8780 check_def = (psym->st_shndx != SHN_UNDEF);
8781
c244d050 8782 if ((vers_data & VERSYM_HIDDEN) || vers_data > 1)
252b5132 8783 {
b34976b6 8784 if (version_info[DT_VERSIONTAGIDX (DT_VERNEED)]
00d93f34 8785 && (is_nobits || ! check_def))
252b5132 8786 {
b34976b6
AM
8787 Elf_External_Verneed evn;
8788 Elf_Internal_Verneed ivn;
8789 Elf_Internal_Vernaux ivna;
252b5132
RH
8790
8791 /* We must test both. */
d93f0186
NC
8792 offset = offset_from_vma
8793 (file, version_info[DT_VERSIONTAGIDX (DT_VERNEED)],
8794 sizeof evn);
252b5132 8795
252b5132
RH
8796 do
8797 {
b34976b6 8798 unsigned long vna_off;
252b5132 8799
c256ffe7 8800 get_data (&evn, file, offset, sizeof (evn), 1,
a6e9f9df 8801 _("version need"));
dd27201e
L
8802
8803 ivn.vn_aux = BYTE_GET (evn.vn_aux);
8804 ivn.vn_next = BYTE_GET (evn.vn_next);
8805
252b5132
RH
8806 vna_off = offset + ivn.vn_aux;
8807
8808 do
8809 {
b34976b6 8810 Elf_External_Vernaux evna;
252b5132 8811
a6e9f9df 8812 get_data (&evna, file, vna_off,
c256ffe7 8813 sizeof (evna), 1,
a6e9f9df 8814 _("version need aux (3)"));
252b5132
RH
8815
8816 ivna.vna_other = BYTE_GET (evna.vna_other);
8817 ivna.vna_next = BYTE_GET (evna.vna_next);
8818 ivna.vna_name = BYTE_GET (evna.vna_name);
8819
8820 vna_off += ivna.vna_next;
8821 }
8822 while (ivna.vna_other != vers_data
8823 && ivna.vna_next != 0);
8824
8825 if (ivna.vna_other == vers_data)
8826 break;
8827
8828 offset += ivn.vn_next;
8829 }
8830 while (ivn.vn_next != 0);
8831
8832 if (ivna.vna_other == vers_data)
8833 {
8834 printf ("@%s (%d)",
c256ffe7 8835 ivna.vna_name < strtab_size
2b692964 8836 ? strtab + ivna.vna_name : _("<corrupt>"),
c256ffe7 8837 ivna.vna_other);
252b5132
RH
8838 check_def = 0;
8839 }
8840 else if (! is_nobits)
591a748a 8841 error (_("bad dynamic symbol\n"));
252b5132
RH
8842 else
8843 check_def = 1;
8844 }
8845
8846 if (check_def)
8847 {
00d93f34 8848 if (vers_data != 0x8001
b34976b6 8849 && version_info[DT_VERSIONTAGIDX (DT_VERDEF)])
252b5132 8850 {
b34976b6
AM
8851 Elf_Internal_Verdef ivd;
8852 Elf_Internal_Verdaux ivda;
8853 Elf_External_Verdaux evda;
91d6fa6a 8854 unsigned long off;
252b5132 8855
91d6fa6a 8856 off = offset_from_vma
d93f0186
NC
8857 (file,
8858 version_info[DT_VERSIONTAGIDX (DT_VERDEF)],
8859 sizeof (Elf_External_Verdef));
252b5132
RH
8860
8861 do
8862 {
b34976b6 8863 Elf_External_Verdef evd;
252b5132 8864
91d6fa6a 8865 get_data (&evd, file, off, sizeof (evd),
c256ffe7 8866 1, _("version def"));
252b5132 8867
b34976b6
AM
8868 ivd.vd_ndx = BYTE_GET (evd.vd_ndx);
8869 ivd.vd_aux = BYTE_GET (evd.vd_aux);
252b5132
RH
8870 ivd.vd_next = BYTE_GET (evd.vd_next);
8871
91d6fa6a 8872 off += ivd.vd_next;
252b5132 8873 }
c244d050 8874 while (ivd.vd_ndx != (vers_data & VERSYM_VERSION)
252b5132
RH
8875 && ivd.vd_next != 0);
8876
91d6fa6a
NC
8877 off -= ivd.vd_next;
8878 off += ivd.vd_aux;
252b5132 8879
91d6fa6a 8880 get_data (&evda, file, off, sizeof (evda),
c256ffe7 8881 1, _("version def aux"));
252b5132
RH
8882
8883 ivda.vda_name = BYTE_GET (evda.vda_name);
8884
8885 if (psym->st_name != ivda.vda_name)
c244d050 8886 printf ((vers_data & VERSYM_HIDDEN)
252b5132 8887 ? "@%s" : "@@%s",
c256ffe7 8888 ivda.vda_name < strtab_size
2b692964 8889 ? strtab + ivda.vda_name : _("<corrupt>"));
252b5132
RH
8890 }
8891 }
8892 }
8893 }
8894
8895 putchar ('\n');
8896 }
8897
8898 free (symtab);
8899 if (strtab != string_table)
8900 free (strtab);
8901 }
8902 }
8903 else if (do_syms)
8904 printf
8905 (_("\nDynamic symbol information is not available for displaying symbols.\n"));
8906
8907 if (do_histogram && buckets != NULL)
8908 {
2cf0635d
NC
8909 unsigned long * lengths;
8910 unsigned long * counts;
66543521
AM
8911 unsigned long hn;
8912 bfd_vma si;
8913 unsigned long maxlength = 0;
8914 unsigned long nzero_counts = 0;
8915 unsigned long nsyms = 0;
252b5132 8916
66543521
AM
8917 printf (_("\nHistogram for bucket list length (total of %lu buckets):\n"),
8918 (unsigned long) nbuckets);
252b5132
RH
8919 printf (_(" Length Number %% of total Coverage\n"));
8920
3f5e193b 8921 lengths = (unsigned long *) calloc (nbuckets, sizeof (*lengths));
252b5132
RH
8922 if (lengths == NULL)
8923 {
591a748a 8924 error (_("Out of memory\n"));
252b5132
RH
8925 return 0;
8926 }
8927 for (hn = 0; hn < nbuckets; ++hn)
8928 {
f7a99963 8929 for (si = buckets[hn]; si > 0 && si < nchains; si = chains[si])
252b5132 8930 {
b34976b6 8931 ++nsyms;
252b5132 8932 if (maxlength < ++lengths[hn])
b34976b6 8933 ++maxlength;
252b5132
RH
8934 }
8935 }
8936
3f5e193b 8937 counts = (unsigned long *) calloc (maxlength + 1, sizeof (*counts));
252b5132
RH
8938 if (counts == NULL)
8939 {
591a748a 8940 error (_("Out of memory\n"));
252b5132
RH
8941 return 0;
8942 }
8943
8944 for (hn = 0; hn < nbuckets; ++hn)
b34976b6 8945 ++counts[lengths[hn]];
252b5132 8946
103f02d3 8947 if (nbuckets > 0)
252b5132 8948 {
66543521
AM
8949 unsigned long i;
8950 printf (" 0 %-10lu (%5.1f%%)\n",
103f02d3 8951 counts[0], (counts[0] * 100.0) / nbuckets);
66543521 8952 for (i = 1; i <= maxlength; ++i)
103f02d3 8953 {
66543521
AM
8954 nzero_counts += counts[i] * i;
8955 printf ("%7lu %-10lu (%5.1f%%) %5.1f%%\n",
8956 i, counts[i], (counts[i] * 100.0) / nbuckets,
103f02d3
UD
8957 (nzero_counts * 100.0) / nsyms);
8958 }
252b5132
RH
8959 }
8960
8961 free (counts);
8962 free (lengths);
8963 }
8964
8965 if (buckets != NULL)
8966 {
8967 free (buckets);
8968 free (chains);
8969 }
8970
d3a44ec6 8971 if (do_histogram && gnubuckets != NULL)
fdc90cb4 8972 {
2cf0635d
NC
8973 unsigned long * lengths;
8974 unsigned long * counts;
fdc90cb4
JJ
8975 unsigned long hn;
8976 unsigned long maxlength = 0;
8977 unsigned long nzero_counts = 0;
8978 unsigned long nsyms = 0;
fdc90cb4 8979
3f5e193b 8980 lengths = (unsigned long *) calloc (ngnubuckets, sizeof (*lengths));
fdc90cb4
JJ
8981 if (lengths == NULL)
8982 {
591a748a 8983 error (_("Out of memory\n"));
fdc90cb4
JJ
8984 return 0;
8985 }
8986
8987 printf (_("\nHistogram for `.gnu.hash' bucket list length (total of %lu buckets):\n"),
8988 (unsigned long) ngnubuckets);
8989 printf (_(" Length Number %% of total Coverage\n"));
8990
8991 for (hn = 0; hn < ngnubuckets; ++hn)
8992 if (gnubuckets[hn] != 0)
8993 {
8994 bfd_vma off, length = 1;
8995
6bd1a22c 8996 for (off = gnubuckets[hn] - gnusymidx;
fdc90cb4
JJ
8997 (gnuchains[off] & 1) == 0; ++off)
8998 ++length;
8999 lengths[hn] = length;
9000 if (length > maxlength)
9001 maxlength = length;
9002 nsyms += length;
9003 }
9004
3f5e193b 9005 counts = (unsigned long *) calloc (maxlength + 1, sizeof (*counts));
fdc90cb4
JJ
9006 if (counts == NULL)
9007 {
591a748a 9008 error (_("Out of memory\n"));
fdc90cb4
JJ
9009 return 0;
9010 }
9011
9012 for (hn = 0; hn < ngnubuckets; ++hn)
9013 ++counts[lengths[hn]];
9014
9015 if (ngnubuckets > 0)
9016 {
9017 unsigned long j;
9018 printf (" 0 %-10lu (%5.1f%%)\n",
9019 counts[0], (counts[0] * 100.0) / ngnubuckets);
9020 for (j = 1; j <= maxlength; ++j)
9021 {
9022 nzero_counts += counts[j] * j;
9023 printf ("%7lu %-10lu (%5.1f%%) %5.1f%%\n",
9024 j, counts[j], (counts[j] * 100.0) / ngnubuckets,
9025 (nzero_counts * 100.0) / nsyms);
9026 }
9027 }
9028
9029 free (counts);
9030 free (lengths);
9031 free (gnubuckets);
9032 free (gnuchains);
9033 }
9034
252b5132
RH
9035 return 1;
9036}
9037
9038static int
2cf0635d 9039process_syminfo (FILE * file ATTRIBUTE_UNUSED)
252b5132 9040{
b4c96d0d 9041 unsigned int i;
252b5132
RH
9042
9043 if (dynamic_syminfo == NULL
9044 || !do_dynamic)
9045 /* No syminfo, this is ok. */
9046 return 1;
9047
9048 /* There better should be a dynamic symbol section. */
9049 if (dynamic_symbols == NULL || dynamic_strings == NULL)
9050 return 0;
9051
9052 if (dynamic_addr)
9053 printf (_("\nDynamic info segment at offset 0x%lx contains %d entries:\n"),
9054 dynamic_syminfo_offset, dynamic_syminfo_nent);
9055
9056 printf (_(" Num: Name BoundTo Flags\n"));
9057 for (i = 0; i < dynamic_syminfo_nent; ++i)
9058 {
9059 unsigned short int flags = dynamic_syminfo[i].si_flags;
9060
31104126 9061 printf ("%4d: ", i);
d79b3d50
NC
9062 if (VALID_DYNAMIC_NAME (dynamic_symbols[i].st_name))
9063 print_symbol (30, GET_DYNAMIC_NAME (dynamic_symbols[i].st_name));
9064 else
2b692964 9065 printf (_("<corrupt: %19ld>"), dynamic_symbols[i].st_name);
31104126 9066 putchar (' ');
252b5132
RH
9067
9068 switch (dynamic_syminfo[i].si_boundto)
9069 {
9070 case SYMINFO_BT_SELF:
9071 fputs ("SELF ", stdout);
9072 break;
9073 case SYMINFO_BT_PARENT:
9074 fputs ("PARENT ", stdout);
9075 break;
9076 default:
9077 if (dynamic_syminfo[i].si_boundto > 0
d79b3d50
NC
9078 && dynamic_syminfo[i].si_boundto < dynamic_nent
9079 && VALID_DYNAMIC_NAME (dynamic_section[dynamic_syminfo[i].si_boundto].d_un.d_val))
31104126 9080 {
d79b3d50 9081 print_symbol (10, GET_DYNAMIC_NAME (dynamic_section[dynamic_syminfo[i].si_boundto].d_un.d_val));
31104126
NC
9082 putchar (' ' );
9083 }
252b5132
RH
9084 else
9085 printf ("%-10d ", dynamic_syminfo[i].si_boundto);
9086 break;
9087 }
9088
9089 if (flags & SYMINFO_FLG_DIRECT)
9090 printf (" DIRECT");
9091 if (flags & SYMINFO_FLG_PASSTHRU)
9092 printf (" PASSTHRU");
9093 if (flags & SYMINFO_FLG_COPY)
9094 printf (" COPY");
9095 if (flags & SYMINFO_FLG_LAZYLOAD)
9096 printf (" LAZYLOAD");
9097
9098 puts ("");
9099 }
9100
9101 return 1;
9102}
9103
cf13d699
NC
9104/* Check to see if the given reloc needs to be handled in a target specific
9105 manner. If so then process the reloc and return TRUE otherwise return
9106 FALSE. */
09c11c86 9107
cf13d699
NC
9108static bfd_boolean
9109target_specific_reloc_handling (Elf_Internal_Rela * reloc,
9110 unsigned char * start,
9111 Elf_Internal_Sym * symtab)
252b5132 9112{
cf13d699 9113 unsigned int reloc_type = get_reloc_type (reloc->r_info);
252b5132 9114
cf13d699 9115 switch (elf_header.e_machine)
252b5132 9116 {
cf13d699
NC
9117 case EM_MN10300:
9118 case EM_CYGNUS_MN10300:
9119 {
9120 static Elf_Internal_Sym * saved_sym = NULL;
252b5132 9121
cf13d699
NC
9122 switch (reloc_type)
9123 {
9124 case 34: /* R_MN10300_ALIGN */
9125 return TRUE;
9126 case 33: /* R_MN10300_SYM_DIFF */
9127 saved_sym = symtab + get_reloc_symindex (reloc->r_info);
9128 return TRUE;
9129 case 1: /* R_MN10300_32 */
9130 case 2: /* R_MN10300_16 */
9131 if (saved_sym != NULL)
9132 {
9133 bfd_vma value;
252b5132 9134
cf13d699
NC
9135 value = reloc->r_addend
9136 + (symtab[get_reloc_symindex (reloc->r_info)].st_value
9137 - saved_sym->st_value);
252b5132 9138
cf13d699 9139 byte_put (start + reloc->r_offset, value, reloc_type == 1 ? 4 : 2);
252b5132 9140
cf13d699
NC
9141 saved_sym = NULL;
9142 return TRUE;
9143 }
9144 break;
9145 default:
9146 if (saved_sym != NULL)
9147 error (_("Unhandled MN10300 reloc type found after SYM_DIFF reloc"));
9148 break;
9149 }
9150 break;
9151 }
252b5132
RH
9152 }
9153
cf13d699 9154 return FALSE;
252b5132
RH
9155}
9156
aca88567
NC
9157/* Returns TRUE iff RELOC_TYPE is a 32-bit absolute RELA relocation used in
9158 DWARF debug sections. This is a target specific test. Note - we do not
9159 go through the whole including-target-headers-multiple-times route, (as
9160 we have already done with <elf/h8.h>) because this would become very
9161 messy and even then this function would have to contain target specific
9162 information (the names of the relocs instead of their numeric values).
9163 FIXME: This is not the correct way to solve this problem. The proper way
9164 is to have target specific reloc sizing and typing functions created by
9165 the reloc-macros.h header, in the same way that it already creates the
9166 reloc naming functions. */
9167
9168static bfd_boolean
9169is_32bit_abs_reloc (unsigned int reloc_type)
9170{
9171 switch (elf_header.e_machine)
9172 {
41e92641
NC
9173 case EM_386:
9174 case EM_486:
9175 return reloc_type == 1; /* R_386_32. */
aca88567
NC
9176 case EM_68K:
9177 return reloc_type == 1; /* R_68K_32. */
9178 case EM_860:
9179 return reloc_type == 1; /* R_860_32. */
9180 case EM_ALPHA:
9181 return reloc_type == 1; /* XXX Is this right ? */
41e92641
NC
9182 case EM_ARC:
9183 return reloc_type == 1; /* R_ARC_32. */
9184 case EM_ARM:
9185 return reloc_type == 2; /* R_ARM_ABS32 */
cb8f3167 9186 case EM_AVR_OLD:
aca88567
NC
9187 case EM_AVR:
9188 return reloc_type == 1;
9189 case EM_BLACKFIN:
9190 return reloc_type == 0x12; /* R_byte4_data. */
9191 case EM_CRIS:
9192 return reloc_type == 3; /* R_CRIS_32. */
9193 case EM_CR16:
6c03b1ed 9194 case EM_CR16_OLD:
aca88567
NC
9195 return reloc_type == 3; /* R_CR16_NUM32. */
9196 case EM_CRX:
9197 return reloc_type == 15; /* R_CRX_NUM32. */
9198 case EM_CYGNUS_FRV:
9199 return reloc_type == 1;
41e92641
NC
9200 case EM_CYGNUS_D10V:
9201 case EM_D10V:
9202 return reloc_type == 6; /* R_D10V_32. */
aca88567
NC
9203 case EM_CYGNUS_D30V:
9204 case EM_D30V:
9205 return reloc_type == 12; /* R_D30V_32_NORMAL. */
41e92641
NC
9206 case EM_DLX:
9207 return reloc_type == 3; /* R_DLX_RELOC_32. */
aca88567
NC
9208 case EM_CYGNUS_FR30:
9209 case EM_FR30:
9210 return reloc_type == 3; /* R_FR30_32. */
9211 case EM_H8S:
9212 case EM_H8_300:
9213 case EM_H8_300H:
9214 return reloc_type == 1; /* R_H8_DIR32. */
3730236a
NC
9215 case EM_IA_64:
9216 return reloc_type == 0x65; /* R_IA64_SECREL32LSB. */
aca88567
NC
9217 case EM_IP2K_OLD:
9218 case EM_IP2K:
9219 return reloc_type == 2; /* R_IP2K_32. */
9220 case EM_IQ2000:
9221 return reloc_type == 2; /* R_IQ2000_32. */
84e94c90
NC
9222 case EM_LATTICEMICO32:
9223 return reloc_type == 3; /* R_LM32_32. */
ff7eeb89 9224 case EM_M32C_OLD:
aca88567
NC
9225 case EM_M32C:
9226 return reloc_type == 3; /* R_M32C_32. */
9227 case EM_M32R:
9228 return reloc_type == 34; /* R_M32R_32_RELA. */
9229 case EM_MCORE:
9230 return reloc_type == 1; /* R_MCORE_ADDR32. */
9231 case EM_CYGNUS_MEP:
9232 return reloc_type == 4; /* R_MEP_32. */
9233 case EM_MIPS:
9234 return reloc_type == 2; /* R_MIPS_32. */
9235 case EM_MMIX:
9236 return reloc_type == 4; /* R_MMIX_32. */
9237 case EM_CYGNUS_MN10200:
9238 case EM_MN10200:
9239 return reloc_type == 1; /* R_MN10200_32. */
9240 case EM_CYGNUS_MN10300:
9241 case EM_MN10300:
9242 return reloc_type == 1; /* R_MN10300_32. */
9243 case EM_MSP430_OLD:
9244 case EM_MSP430:
9245 return reloc_type == 1; /* R_MSP43_32. */
9246 case EM_MT:
9247 return reloc_type == 2; /* R_MT_32. */
3e0873ac
NC
9248 case EM_ALTERA_NIOS2:
9249 case EM_NIOS32:
9250 return reloc_type == 1; /* R_NIOS_32. */
41e92641
NC
9251 case EM_OPENRISC:
9252 case EM_OR32:
9253 return reloc_type == 1; /* R_OR32_32. */
aca88567 9254 case EM_PARISC:
5fda8eca
NC
9255 return (reloc_type == 1 /* R_PARISC_DIR32. */
9256 || reloc_type == 41); /* R_PARISC_SECREL32. */
aca88567
NC
9257 case EM_PJ:
9258 case EM_PJ_OLD:
9259 return reloc_type == 1; /* R_PJ_DATA_DIR32. */
9260 case EM_PPC64:
9261 return reloc_type == 1; /* R_PPC64_ADDR32. */
9262 case EM_PPC:
9263 return reloc_type == 1; /* R_PPC_ADDR32. */
c7927a3c
NC
9264 case EM_RX:
9265 return reloc_type == 1; /* R_RX_DIR32. */
aca88567
NC
9266 case EM_S370:
9267 return reloc_type == 1; /* R_I370_ADDR31. */
9268 case EM_S390_OLD:
9269 case EM_S390:
9270 return reloc_type == 4; /* R_S390_32. */
41e92641
NC
9271 case EM_SCORE:
9272 return reloc_type == 8; /* R_SCORE_ABS32. */
aca88567
NC
9273 case EM_SH:
9274 return reloc_type == 1; /* R_SH_DIR32. */
9275 case EM_SPARC32PLUS:
9276 case EM_SPARCV9:
9277 case EM_SPARC:
9278 return reloc_type == 3 /* R_SPARC_32. */
9279 || reloc_type == 23; /* R_SPARC_UA32. */
a7dd7d05
AM
9280 case EM_SPU:
9281 return reloc_type == 6; /* R_SPU_ADDR32 */
40b36596
JM
9282 case EM_TI_C6000:
9283 return reloc_type == 1; /* R_C6000_ABS32. */
aca88567
NC
9284 case EM_CYGNUS_V850:
9285 case EM_V850:
9286 return reloc_type == 6; /* R_V850_ABS32. */
9287 case EM_VAX:
9288 return reloc_type == 1; /* R_VAX_32. */
9289 case EM_X86_64:
8a9036a4 9290 case EM_L1OM:
aca88567 9291 return reloc_type == 10; /* R_X86_64_32. */
c29aca4a
NC
9292 case EM_XC16X:
9293 case EM_C166:
9294 return reloc_type == 3; /* R_XC16C_ABS_32. */
aca88567
NC
9295 case EM_XSTORMY16:
9296 return reloc_type == 1; /* R_XSTROMY16_32. */
9297 case EM_XTENSA_OLD:
9298 case EM_XTENSA:
9299 return reloc_type == 1; /* R_XTENSA_32. */
aca88567
NC
9300 default:
9301 error (_("Missing knowledge of 32-bit reloc types used in DWARF sections of machine number %d\n"),
9302 elf_header.e_machine);
9303 abort ();
9304 }
9305}
9306
9307/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
9308 a 32-bit pc-relative RELA relocation used in DWARF debug sections. */
9309
9310static bfd_boolean
9311is_32bit_pcrel_reloc (unsigned int reloc_type)
9312{
9313 switch (elf_header.e_machine)
9314 {
41e92641
NC
9315 case EM_386:
9316 case EM_486:
3e0873ac 9317 return reloc_type == 2; /* R_386_PC32. */
aca88567 9318 case EM_68K:
3e0873ac 9319 return reloc_type == 4; /* R_68K_PC32. */
aca88567
NC
9320 case EM_ALPHA:
9321 return reloc_type == 10; /* R_ALPHA_SREL32. */
41e92641 9322 case EM_ARM:
3e0873ac 9323 return reloc_type == 3; /* R_ARM_REL32 */
aca88567 9324 case EM_PARISC:
85acf597 9325 return reloc_type == 9; /* R_PARISC_PCREL32. */
aca88567
NC
9326 case EM_PPC:
9327 return reloc_type == 26; /* R_PPC_REL32. */
9328 case EM_PPC64:
3e0873ac 9329 return reloc_type == 26; /* R_PPC64_REL32. */
aca88567
NC
9330 case EM_S390_OLD:
9331 case EM_S390:
3e0873ac 9332 return reloc_type == 5; /* R_390_PC32. */
aca88567 9333 case EM_SH:
3e0873ac 9334 return reloc_type == 2; /* R_SH_REL32. */
aca88567
NC
9335 case EM_SPARC32PLUS:
9336 case EM_SPARCV9:
9337 case EM_SPARC:
3e0873ac 9338 return reloc_type == 6; /* R_SPARC_DISP32. */
a7dd7d05
AM
9339 case EM_SPU:
9340 return reloc_type == 13; /* R_SPU_REL32. */
aca88567 9341 case EM_X86_64:
8a9036a4 9342 case EM_L1OM:
3e0873ac 9343 return reloc_type == 2; /* R_X86_64_PC32. */
2fcb9706
BW
9344 case EM_XTENSA_OLD:
9345 case EM_XTENSA:
9346 return reloc_type == 14; /* R_XTENSA_32_PCREL. */
aca88567
NC
9347 default:
9348 /* Do not abort or issue an error message here. Not all targets use
9349 pc-relative 32-bit relocs in their DWARF debug information and we
9350 have already tested for target coverage in is_32bit_abs_reloc. A
cf13d699
NC
9351 more helpful warning message will be generated by apply_relocations
9352 anyway, so just return. */
aca88567
NC
9353 return FALSE;
9354 }
9355}
9356
9357/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
9358 a 64-bit absolute RELA relocation used in DWARF debug sections. */
9359
9360static bfd_boolean
9361is_64bit_abs_reloc (unsigned int reloc_type)
9362{
9363 switch (elf_header.e_machine)
9364 {
9365 case EM_ALPHA:
9366 return reloc_type == 2; /* R_ALPHA_REFQUAD. */
3730236a
NC
9367 case EM_IA_64:
9368 return reloc_type == 0x27; /* R_IA64_DIR64LSB. */
3e0873ac
NC
9369 case EM_PARISC:
9370 return reloc_type == 80; /* R_PARISC_DIR64. */
aca88567
NC
9371 case EM_PPC64:
9372 return reloc_type == 38; /* R_PPC64_ADDR64. */
9373 case EM_SPARC32PLUS:
9374 case EM_SPARCV9:
9375 case EM_SPARC:
9376 return reloc_type == 54; /* R_SPARC_UA64. */
9377 case EM_X86_64:
8a9036a4 9378 case EM_L1OM:
aca88567 9379 return reloc_type == 1; /* R_X86_64_64. */
e819ade1
AS
9380 case EM_S390_OLD:
9381 case EM_S390:
9382 return reloc_type == 22; /* R_S390_64 */
85a82265
AM
9383 case EM_MIPS:
9384 return reloc_type == 18; /* R_MIPS_64 */
aca88567
NC
9385 default:
9386 return FALSE;
9387 }
9388}
9389
85acf597
RH
9390/* Like is_32bit_pcrel_reloc except that it returns TRUE iff RELOC_TYPE is
9391 a 64-bit pc-relative RELA relocation used in DWARF debug sections. */
9392
9393static bfd_boolean
9394is_64bit_pcrel_reloc (unsigned int reloc_type)
9395{
9396 switch (elf_header.e_machine)
9397 {
9398 case EM_ALPHA:
9399 return reloc_type == 11; /* R_ALPHA_SREL64 */
9400 case EM_IA_64:
9401 return reloc_type == 0x4f; /* R_IA64_PCREL64LSB */
9402 case EM_PARISC:
9403 return reloc_type == 72; /* R_PARISC_PCREL64 */
9404 case EM_PPC64:
9405 return reloc_type == 44; /* R_PPC64_REL64 */
9406 case EM_SPARC32PLUS:
9407 case EM_SPARCV9:
9408 case EM_SPARC:
9409 return reloc_type == 46; /* R_SPARC_DISP64 */
9410 case EM_X86_64:
8a9036a4 9411 case EM_L1OM:
85acf597
RH
9412 return reloc_type == 24; /* R_X86_64_PC64 */
9413 case EM_S390_OLD:
9414 case EM_S390:
9415 return reloc_type == 23; /* R_S390_PC64 */
9416 default:
9417 return FALSE;
9418 }
9419}
9420
4dc3c23d
AM
9421/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
9422 a 24-bit absolute RELA relocation used in DWARF debug sections. */
9423
9424static bfd_boolean
9425is_24bit_abs_reloc (unsigned int reloc_type)
9426{
9427 switch (elf_header.e_machine)
9428 {
9429 case EM_CYGNUS_MN10200:
9430 case EM_MN10200:
9431 return reloc_type == 4; /* R_MN10200_24. */
9432 default:
9433 return FALSE;
9434 }
9435}
9436
aca88567
NC
9437/* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
9438 a 16-bit absolute RELA relocation used in DWARF debug sections. */
9439
9440static bfd_boolean
9441is_16bit_abs_reloc (unsigned int reloc_type)
4b78141a
NC
9442{
9443 switch (elf_header.e_machine)
9444 {
aca88567
NC
9445 case EM_AVR_OLD:
9446 case EM_AVR:
9447 return reloc_type == 4; /* R_AVR_16. */
41e92641
NC
9448 case EM_CYGNUS_D10V:
9449 case EM_D10V:
9450 return reloc_type == 3; /* R_D10V_16. */
4b78141a
NC
9451 case EM_H8S:
9452 case EM_H8_300:
9453 case EM_H8_300H:
aca88567
NC
9454 return reloc_type == R_H8_DIR16;
9455 case EM_IP2K_OLD:
9456 case EM_IP2K:
9457 return reloc_type == 1; /* R_IP2K_16. */
ff7eeb89 9458 case EM_M32C_OLD:
f4236fe4
DD
9459 case EM_M32C:
9460 return reloc_type == 1; /* R_M32C_16 */
aca88567
NC
9461 case EM_MSP430_OLD:
9462 case EM_MSP430:
9463 return reloc_type == 5; /* R_MSP430_16_BYTE. */
3e0873ac
NC
9464 case EM_ALTERA_NIOS2:
9465 case EM_NIOS32:
9466 return reloc_type == 9; /* R_NIOS_16. */
40b36596
JM
9467 case EM_TI_C6000:
9468 return reloc_type == 2; /* R_C6000_ABS16. */
c29aca4a
NC
9469 case EM_XC16X:
9470 case EM_C166:
9471 return reloc_type == 2; /* R_XC16C_ABS_16. */
4b78141a 9472 default:
aca88567 9473 return FALSE;
4b78141a
NC
9474 }
9475}
9476
2a7b2e88
JK
9477/* Returns TRUE iff RELOC_TYPE is a NONE relocation used for discarded
9478 relocation entries (possibly formerly used for SHT_GROUP sections). */
9479
9480static bfd_boolean
9481is_none_reloc (unsigned int reloc_type)
9482{
9483 switch (elf_header.e_machine)
9484 {
cb8f3167
NC
9485 case EM_68K: /* R_68K_NONE. */
9486 case EM_386: /* R_386_NONE. */
2a7b2e88
JK
9487 case EM_SPARC32PLUS:
9488 case EM_SPARCV9:
cb8f3167
NC
9489 case EM_SPARC: /* R_SPARC_NONE. */
9490 case EM_MIPS: /* R_MIPS_NONE. */
9491 case EM_PARISC: /* R_PARISC_NONE. */
9492 case EM_ALPHA: /* R_ALPHA_NONE. */
9493 case EM_PPC: /* R_PPC_NONE. */
9494 case EM_PPC64: /* R_PPC64_NONE. */
9495 case EM_ARM: /* R_ARM_NONE. */
9496 case EM_IA_64: /* R_IA64_NONE. */
9497 case EM_SH: /* R_SH_NONE. */
2a7b2e88 9498 case EM_S390_OLD:
cb8f3167
NC
9499 case EM_S390: /* R_390_NONE. */
9500 case EM_CRIS: /* R_CRIS_NONE. */
9501 case EM_X86_64: /* R_X86_64_NONE. */
8a9036a4 9502 case EM_L1OM: /* R_X86_64_NONE. */
cb8f3167
NC
9503 case EM_MN10300: /* R_MN10300_NONE. */
9504 case EM_M32R: /* R_M32R_NONE. */
40b36596 9505 case EM_TI_C6000:/* R_C6000_NONE. */
c29aca4a
NC
9506 case EM_XC16X:
9507 case EM_C166: /* R_XC16X_NONE. */
cb8f3167 9508 return reloc_type == 0;
58332dda
JK
9509 case EM_XTENSA_OLD:
9510 case EM_XTENSA:
4dc3c23d
AM
9511 return (reloc_type == 0 /* R_XTENSA_NONE. */
9512 || reloc_type == 17 /* R_XTENSA_DIFF8. */
9513 || reloc_type == 18 /* R_XTENSA_DIFF16. */
9514 || reloc_type == 19 /* R_XTENSA_DIFF32. */);
2a7b2e88
JK
9515 }
9516 return FALSE;
9517}
9518
cf13d699
NC
9519/* Apply relocations to a section.
9520 Note: So far support has been added only for those relocations
9521 which can be found in debug sections.
9522 FIXME: Add support for more relocations ? */
1b315056 9523
cf13d699
NC
9524static void
9525apply_relocations (void * file,
9526 Elf_Internal_Shdr * section,
9527 unsigned char * start)
1b315056 9528{
cf13d699
NC
9529 Elf_Internal_Shdr * relsec;
9530 unsigned char * end = start + section->sh_size;
cb8f3167 9531
cf13d699
NC
9532 if (elf_header.e_type != ET_REL)
9533 return;
1b315056 9534
cf13d699 9535 /* Find the reloc section associated with the section. */
5b18a4bc
NC
9536 for (relsec = section_headers;
9537 relsec < section_headers + elf_header.e_shnum;
9538 ++relsec)
252b5132 9539 {
41e92641
NC
9540 bfd_boolean is_rela;
9541 unsigned long num_relocs;
2cf0635d
NC
9542 Elf_Internal_Rela * relocs;
9543 Elf_Internal_Rela * rp;
9544 Elf_Internal_Shdr * symsec;
9545 Elf_Internal_Sym * symtab;
9546 Elf_Internal_Sym * sym;
252b5132 9547
41e92641 9548 if ((relsec->sh_type != SHT_RELA && relsec->sh_type != SHT_REL)
4fbb74a6
AM
9549 || relsec->sh_info >= elf_header.e_shnum
9550 || section_headers + relsec->sh_info != section
c256ffe7 9551 || relsec->sh_size == 0
4fbb74a6 9552 || relsec->sh_link >= elf_header.e_shnum)
5b18a4bc 9553 continue;
428409d5 9554
41e92641
NC
9555 is_rela = relsec->sh_type == SHT_RELA;
9556
9557 if (is_rela)
9558 {
3f5e193b
NC
9559 if (!slurp_rela_relocs ((FILE *) file, relsec->sh_offset,
9560 relsec->sh_size, & relocs, & num_relocs))
41e92641
NC
9561 return;
9562 }
9563 else
9564 {
3f5e193b
NC
9565 if (!slurp_rel_relocs ((FILE *) file, relsec->sh_offset,
9566 relsec->sh_size, & relocs, & num_relocs))
41e92641
NC
9567 return;
9568 }
9569
9570 /* SH uses RELA but uses in place value instead of the addend field. */
9571 if (elf_header.e_machine == EM_SH)
9572 is_rela = FALSE;
428409d5 9573
4fbb74a6 9574 symsec = section_headers + relsec->sh_link;
3f5e193b 9575 symtab = GET_ELF_SYMBOLS ((FILE *) file, symsec);
103f02d3 9576
41e92641 9577 for (rp = relocs; rp < relocs + num_relocs; ++rp)
252b5132 9578 {
41e92641
NC
9579 bfd_vma addend;
9580 unsigned int reloc_type;
9581 unsigned int reloc_size;
91d6fa6a 9582 unsigned char * rloc;
4b78141a 9583
aca88567 9584 reloc_type = get_reloc_type (rp->r_info);
41e92641 9585
98fb390a 9586 if (target_specific_reloc_handling (rp, start, symtab))
2a7b2e88 9587 continue;
98fb390a
NC
9588 else if (is_none_reloc (reloc_type))
9589 continue;
9590 else if (is_32bit_abs_reloc (reloc_type)
9591 || is_32bit_pcrel_reloc (reloc_type))
aca88567 9592 reloc_size = 4;
85acf597
RH
9593 else if (is_64bit_abs_reloc (reloc_type)
9594 || is_64bit_pcrel_reloc (reloc_type))
aca88567 9595 reloc_size = 8;
4dc3c23d
AM
9596 else if (is_24bit_abs_reloc (reloc_type))
9597 reloc_size = 3;
aca88567
NC
9598 else if (is_16bit_abs_reloc (reloc_type))
9599 reloc_size = 2;
9600 else
4b78141a 9601 {
41e92641 9602 warn (_("unable to apply unsupported reloc type %d to section %s\n"),
aca88567 9603 reloc_type, SECTION_NAME (section));
4b78141a
NC
9604 continue;
9605 }
103f02d3 9606
91d6fa6a
NC
9607 rloc = start + rp->r_offset;
9608 if ((rloc + reloc_size) > end)
700dd8b7
L
9609 {
9610 warn (_("skipping invalid relocation offset 0x%lx in section %s\n"),
9611 (unsigned long) rp->r_offset,
9612 SECTION_NAME (section));
9613 continue;
9614 }
103f02d3 9615
41e92641
NC
9616 sym = symtab + get_reloc_symindex (rp->r_info);
9617
9618 /* If the reloc has a symbol associated with it,
55f25fc3
L
9619 make sure that it is of an appropriate type.
9620
9621 Relocations against symbols without type can happen.
9622 Gcc -feliminate-dwarf2-dups may generate symbols
9623 without type for debug info.
9624
9625 Icc generates relocations against function symbols
9626 instead of local labels.
9627
9628 Relocations against object symbols can happen, eg when
9629 referencing a global array. For an example of this see
9630 the _clz.o binary in libgcc.a. */
aca88567 9631 if (sym != symtab
55f25fc3 9632 && ELF_ST_TYPE (sym->st_info) > STT_SECTION)
5b18a4bc 9633 {
41e92641 9634 warn (_("skipping unexpected symbol type %s in %ld'th relocation in section %s\n"),
aca88567 9635 get_symbol_type (ELF_ST_TYPE (sym->st_info)),
99dcb0b9 9636 (long int)(rp - relocs),
41e92641 9637 SECTION_NAME (relsec));
aca88567 9638 continue;
5b18a4bc 9639 }
252b5132 9640
4dc3c23d
AM
9641 addend = 0;
9642 if (is_rela)
9643 addend += rp->r_addend;
9644 /* R_XTENSA_32 and R_PJ_DATA_DIR32 are partial_inplace. */
9645 if (!is_rela
9646 || (elf_header.e_machine == EM_XTENSA
9647 && reloc_type == 1)
9648 || ((elf_header.e_machine == EM_PJ
9649 || elf_header.e_machine == EM_PJ_OLD)
9650 && reloc_type == 1))
91d6fa6a 9651 addend += byte_get (rloc, reloc_size);
cb8f3167 9652
85acf597
RH
9653 if (is_32bit_pcrel_reloc (reloc_type)
9654 || is_64bit_pcrel_reloc (reloc_type))
9655 {
9656 /* On HPPA, all pc-relative relocations are biased by 8. */
9657 if (elf_header.e_machine == EM_PARISC)
9658 addend -= 8;
91d6fa6a 9659 byte_put (rloc, (addend + sym->st_value) - rp->r_offset,
85acf597
RH
9660 reloc_size);
9661 }
41e92641 9662 else
91d6fa6a 9663 byte_put (rloc, addend + sym->st_value, reloc_size);
5b18a4bc 9664 }
252b5132 9665
5b18a4bc 9666 free (symtab);
41e92641 9667 free (relocs);
5b18a4bc
NC
9668 break;
9669 }
5b18a4bc 9670}
103f02d3 9671
cf13d699
NC
9672#ifdef SUPPORT_DISASSEMBLY
9673static int
9674disassemble_section (Elf_Internal_Shdr * section, FILE * file)
9675{
9676 printf (_("\nAssembly dump of section %s\n"),
9677 SECTION_NAME (section));
9678
9679 /* XXX -- to be done --- XXX */
9680
9681 return 1;
9682}
9683#endif
9684
9685/* Reads in the contents of SECTION from FILE, returning a pointer
9686 to a malloc'ed buffer or NULL if something went wrong. */
9687
9688static char *
9689get_section_contents (Elf_Internal_Shdr * section, FILE * file)
9690{
9691 bfd_size_type num_bytes;
9692
9693 num_bytes = section->sh_size;
9694
9695 if (num_bytes == 0 || section->sh_type == SHT_NOBITS)
9696 {
9697 printf (_("\nSection '%s' has no data to dump.\n"),
9698 SECTION_NAME (section));
9699 return NULL;
9700 }
9701
3f5e193b
NC
9702 return (char *) get_data (NULL, file, section->sh_offset, 1, num_bytes,
9703 _("section contents"));
cf13d699
NC
9704}
9705
9706
9707static void
9708dump_section_as_strings (Elf_Internal_Shdr * section, FILE * file)
9709{
9710 Elf_Internal_Shdr * relsec;
9711 bfd_size_type num_bytes;
cf13d699
NC
9712 char * data;
9713 char * end;
9714 char * start;
9715 char * name = SECTION_NAME (section);
9716 bfd_boolean some_strings_shown;
9717
9718 start = get_section_contents (section, file);
9719 if (start == NULL)
9720 return;
9721
9722 printf (_("\nString dump of section '%s':\n"), name);
9723
9724 /* If the section being dumped has relocations against it the user might
9725 be expecting these relocations to have been applied. Check for this
9726 case and issue a warning message in order to avoid confusion.
9727 FIXME: Maybe we ought to have an option that dumps a section with
9728 relocs applied ? */
9729 for (relsec = section_headers;
9730 relsec < section_headers + elf_header.e_shnum;
9731 ++relsec)
9732 {
9733 if ((relsec->sh_type != SHT_RELA && relsec->sh_type != SHT_REL)
9734 || relsec->sh_info >= elf_header.e_shnum
9735 || section_headers + relsec->sh_info != section
9736 || relsec->sh_size == 0
9737 || relsec->sh_link >= elf_header.e_shnum)
9738 continue;
9739
9740 printf (_(" Note: This section has relocations against it, but these have NOT been applied to this dump.\n"));
9741 break;
9742 }
9743
9744 num_bytes = section->sh_size;
cf13d699
NC
9745 data = start;
9746 end = start + num_bytes;
9747 some_strings_shown = FALSE;
9748
9749 while (data < end)
9750 {
9751 while (!ISPRINT (* data))
9752 if (++ data >= end)
9753 break;
9754
9755 if (data < end)
9756 {
9757#ifndef __MSVCRT__
c975cc98
NC
9758 /* PR 11128: Use two separate invocations in order to work
9759 around bugs in the Solaris 8 implementation of printf. */
9760 printf (" [%6tx] ", data - start);
9761 printf ("%s\n", data);
cf13d699
NC
9762#else
9763 printf (" [%6Ix] %s\n", (size_t) (data - start), data);
9764#endif
9765 data += strlen (data);
9766 some_strings_shown = TRUE;
9767 }
9768 }
9769
9770 if (! some_strings_shown)
9771 printf (_(" No strings found in this section."));
9772
9773 free (start);
9774
9775 putchar ('\n');
9776}
9777
9778static void
9779dump_section_as_bytes (Elf_Internal_Shdr * section,
9780 FILE * file,
9781 bfd_boolean relocate)
9782{
9783 Elf_Internal_Shdr * relsec;
9784 bfd_size_type bytes;
9785 bfd_vma addr;
9786 unsigned char * data;
9787 unsigned char * start;
9788
9789 start = (unsigned char *) get_section_contents (section, file);
9790 if (start == NULL)
9791 return;
9792
9793 printf (_("\nHex dump of section '%s':\n"), SECTION_NAME (section));
9794
9795 if (relocate)
9796 {
9797 apply_relocations (file, section, start);
9798 }
9799 else
9800 {
9801 /* If the section being dumped has relocations against it the user might
9802 be expecting these relocations to have been applied. Check for this
9803 case and issue a warning message in order to avoid confusion.
9804 FIXME: Maybe we ought to have an option that dumps a section with
9805 relocs applied ? */
9806 for (relsec = section_headers;
9807 relsec < section_headers + elf_header.e_shnum;
9808 ++relsec)
9809 {
9810 if ((relsec->sh_type != SHT_RELA && relsec->sh_type != SHT_REL)
9811 || relsec->sh_info >= elf_header.e_shnum
9812 || section_headers + relsec->sh_info != section
9813 || relsec->sh_size == 0
9814 || relsec->sh_link >= elf_header.e_shnum)
9815 continue;
9816
9817 printf (_(" NOTE: This section has relocations against it, but these have NOT been applied to this dump.\n"));
9818 break;
9819 }
9820 }
9821
9822 addr = section->sh_addr;
9823 bytes = section->sh_size;
9824 data = start;
9825
9826 while (bytes)
9827 {
9828 int j;
9829 int k;
9830 int lbytes;
9831
9832 lbytes = (bytes > 16 ? 16 : bytes);
9833
9834 printf (" 0x%8.8lx ", (unsigned long) addr);
9835
9836 for (j = 0; j < 16; j++)
9837 {
9838 if (j < lbytes)
9839 printf ("%2.2x", data[j]);
9840 else
9841 printf (" ");
9842
9843 if ((j & 3) == 3)
9844 printf (" ");
9845 }
9846
9847 for (j = 0; j < lbytes; j++)
9848 {
9849 k = data[j];
9850 if (k >= ' ' && k < 0x7f)
9851 printf ("%c", k);
9852 else
9853 printf (".");
9854 }
9855
9856 putchar ('\n');
9857
9858 data += lbytes;
9859 addr += lbytes;
9860 bytes -= lbytes;
9861 }
9862
9863 free (start);
9864
9865 putchar ('\n');
9866}
9867
9868/* Uncompresses a section that was compressed using zlib, in place.
9869 This is a copy of bfd_uncompress_section_contents, in bfd/compress.c */
9870
9871static int
d3dbc530
AM
9872uncompress_section_contents (unsigned char **buffer ATTRIBUTE_UNUSED,
9873 dwarf_size_type *size ATTRIBUTE_UNUSED)
cf13d699
NC
9874{
9875#ifndef HAVE_ZLIB_H
cf13d699
NC
9876 return FALSE;
9877#else
9878 dwarf_size_type compressed_size = *size;
9879 unsigned char * compressed_buffer = *buffer;
9880 dwarf_size_type uncompressed_size;
9881 unsigned char * uncompressed_buffer;
9882 z_stream strm;
9883 int rc;
9884 dwarf_size_type header_size = 12;
9885
9886 /* Read the zlib header. In this case, it should be "ZLIB" followed
9887 by the uncompressed section size, 8 bytes in big-endian order. */
9888 if (compressed_size < header_size
9889 || ! streq ((char *) compressed_buffer, "ZLIB"))
9890 return 0;
9891
9892 uncompressed_size = compressed_buffer[4]; uncompressed_size <<= 8;
9893 uncompressed_size += compressed_buffer[5]; uncompressed_size <<= 8;
9894 uncompressed_size += compressed_buffer[6]; uncompressed_size <<= 8;
9895 uncompressed_size += compressed_buffer[7]; uncompressed_size <<= 8;
9896 uncompressed_size += compressed_buffer[8]; uncompressed_size <<= 8;
9897 uncompressed_size += compressed_buffer[9]; uncompressed_size <<= 8;
9898 uncompressed_size += compressed_buffer[10]; uncompressed_size <<= 8;
9899 uncompressed_size += compressed_buffer[11];
9900
9901 /* It is possible the section consists of several compressed
9902 buffers concatenated together, so we uncompress in a loop. */
9903 strm.zalloc = NULL;
9904 strm.zfree = NULL;
9905 strm.opaque = NULL;
9906 strm.avail_in = compressed_size - header_size;
9907 strm.next_in = (Bytef *) compressed_buffer + header_size;
9908 strm.avail_out = uncompressed_size;
3f5e193b 9909 uncompressed_buffer = (unsigned char *) xmalloc (uncompressed_size);
cf13d699
NC
9910
9911 rc = inflateInit (& strm);
9912 while (strm.avail_in > 0)
9913 {
9914 if (rc != Z_OK)
9915 goto fail;
9916 strm.next_out = ((Bytef *) uncompressed_buffer
9917 + (uncompressed_size - strm.avail_out));
9918 rc = inflate (&strm, Z_FINISH);
9919 if (rc != Z_STREAM_END)
9920 goto fail;
9921 rc = inflateReset (& strm);
9922 }
9923 rc = inflateEnd (& strm);
9924 if (rc != Z_OK
9925 || strm.avail_out != 0)
9926 goto fail;
9927
9928 free (compressed_buffer);
9929 *buffer = uncompressed_buffer;
9930 *size = uncompressed_size;
9931 return 1;
9932
9933 fail:
9934 free (uncompressed_buffer);
9935 return 0;
9936#endif /* HAVE_ZLIB_H */
9937}
9938
d966045b
DJ
9939static int
9940load_specific_debug_section (enum dwarf_section_display_enum debug,
2cf0635d 9941 Elf_Internal_Shdr * sec, void * file)
1007acb3 9942{
2cf0635d 9943 struct dwarf_section * section = &debug_displays [debug].section;
19e6b90e 9944 char buf [64];
1b315056 9945 int section_is_compressed;
1007acb3 9946
19e6b90e
L
9947 /* If it is already loaded, do nothing. */
9948 if (section->start != NULL)
9949 return 1;
1007acb3 9950
a71cc8e0 9951 section_is_compressed = section->name == section->compressed_name;
1007acb3 9952
19e6b90e
L
9953 snprintf (buf, sizeof (buf), _("%s section data"), section->name);
9954 section->address = sec->sh_addr;
9955 section->size = sec->sh_size;
3f5e193b
NC
9956 section->start = (unsigned char *) get_data (NULL, (FILE *) file,
9957 sec->sh_offset, 1,
9958 sec->sh_size, buf);
1b315056
CS
9959 if (section->start == NULL)
9960 return 0;
9961
9962 if (section_is_compressed)
0acf065b
CC
9963 {
9964 if (! uncompress_section_contents (&section->start, &section->size))
9965 return 0;
9966 sec->sh_size = section->size;
9967 }
1007acb3 9968
19e6b90e 9969 if (debug_displays [debug].relocate)
3f5e193b 9970 apply_relocations ((FILE *) file, sec, section->start);
1007acb3 9971
1b315056 9972 return 1;
1007acb3
L
9973}
9974
d966045b 9975int
2cf0635d 9976load_debug_section (enum dwarf_section_display_enum debug, void * file)
d966045b 9977{
2cf0635d
NC
9978 struct dwarf_section * section = &debug_displays [debug].section;
9979 Elf_Internal_Shdr * sec;
d966045b
DJ
9980
9981 /* Locate the debug section. */
9982 sec = find_section (section->uncompressed_name);
9983 if (sec != NULL)
9984 section->name = section->uncompressed_name;
9985 else
9986 {
9987 sec = find_section (section->compressed_name);
9988 if (sec != NULL)
9989 section->name = section->compressed_name;
9990 }
9991 if (sec == NULL)
9992 return 0;
9993
3f5e193b 9994 return load_specific_debug_section (debug, sec, (FILE *) file);
d966045b
DJ
9995}
9996
19e6b90e
L
9997void
9998free_debug_section (enum dwarf_section_display_enum debug)
1007acb3 9999{
2cf0635d 10000 struct dwarf_section * section = &debug_displays [debug].section;
1007acb3 10001
19e6b90e
L
10002 if (section->start == NULL)
10003 return;
1007acb3 10004
19e6b90e
L
10005 free ((char *) section->start);
10006 section->start = NULL;
10007 section->address = 0;
10008 section->size = 0;
1007acb3
L
10009}
10010
1007acb3 10011static int
2cf0635d 10012display_debug_section (Elf_Internal_Shdr * section, FILE * file)
1007acb3 10013{
2cf0635d 10014 char * name = SECTION_NAME (section);
19e6b90e
L
10015 bfd_size_type length;
10016 int result = 1;
3f5e193b 10017 int i;
1007acb3 10018
19e6b90e
L
10019 length = section->sh_size;
10020 if (length == 0)
1007acb3 10021 {
19e6b90e
L
10022 printf (_("\nSection '%s' has no debugging data.\n"), name);
10023 return 0;
1007acb3 10024 }
5dff79d8
NC
10025 if (section->sh_type == SHT_NOBITS)
10026 {
10027 /* There is no point in dumping the contents of a debugging section
10028 which has the NOBITS type - the bits in the file will be random.
10029 This can happen when a file containing a .eh_frame section is
10030 stripped with the --only-keep-debug command line option. */
10031 printf (_("section '%s' has the NOBITS type - its contents are unreliable.\n"), name);
10032 return 0;
10033 }
1007acb3 10034
0112cd26 10035 if (const_strneq (name, ".gnu.linkonce.wi."))
19e6b90e 10036 name = ".debug_info";
1007acb3 10037
19e6b90e
L
10038 /* See if we know how to display the contents of this section. */
10039 for (i = 0; i < max; i++)
1b315056
CS
10040 if (streq (debug_displays[i].section.uncompressed_name, name)
10041 || streq (debug_displays[i].section.compressed_name, name))
19e6b90e 10042 {
2cf0635d 10043 struct dwarf_section * sec = &debug_displays [i].section;
d966045b
DJ
10044 int secondary = (section != find_section (name));
10045
10046 if (secondary)
3f5e193b 10047 free_debug_section ((enum dwarf_section_display_enum) i);
1007acb3 10048
2b6f5997 10049 if (streq (sec->uncompressed_name, name))
d966045b
DJ
10050 sec->name = sec->uncompressed_name;
10051 else
10052 sec->name = sec->compressed_name;
3f5e193b
NC
10053 if (load_specific_debug_section ((enum dwarf_section_display_enum) i,
10054 section, file))
19e6b90e
L
10055 {
10056 result &= debug_displays[i].display (sec, file);
1007acb3 10057
d966045b 10058 if (secondary || (i != info && i != abbrev))
3f5e193b 10059 free_debug_section ((enum dwarf_section_display_enum) i);
19e6b90e 10060 }
1007acb3 10061
19e6b90e
L
10062 break;
10063 }
1007acb3 10064
19e6b90e 10065 if (i == max)
1007acb3 10066 {
19e6b90e
L
10067 printf (_("Unrecognized debug section: %s\n"), name);
10068 result = 0;
1007acb3
L
10069 }
10070
19e6b90e 10071 return result;
5b18a4bc 10072}
103f02d3 10073
aef1f6d0
DJ
10074/* Set DUMP_SECTS for all sections where dumps were requested
10075 based on section name. */
10076
10077static void
10078initialise_dumps_byname (void)
10079{
2cf0635d 10080 struct dump_list_entry * cur;
aef1f6d0
DJ
10081
10082 for (cur = dump_sects_byname; cur; cur = cur->next)
10083 {
10084 unsigned int i;
10085 int any;
10086
10087 for (i = 0, any = 0; i < elf_header.e_shnum; i++)
10088 if (streq (SECTION_NAME (section_headers + i), cur->name))
10089 {
09c11c86 10090 request_dump_bynumber (i, cur->type);
aef1f6d0
DJ
10091 any = 1;
10092 }
10093
10094 if (!any)
10095 warn (_("Section '%s' was not dumped because it does not exist!\n"),
10096 cur->name);
10097 }
10098}
10099
5b18a4bc 10100static void
2cf0635d 10101process_section_contents (FILE * file)
5b18a4bc 10102{
2cf0635d 10103 Elf_Internal_Shdr * section;
19e6b90e 10104 unsigned int i;
103f02d3 10105
19e6b90e
L
10106 if (! do_dump)
10107 return;
103f02d3 10108
aef1f6d0
DJ
10109 initialise_dumps_byname ();
10110
19e6b90e
L
10111 for (i = 0, section = section_headers;
10112 i < elf_header.e_shnum && i < num_dump_sects;
10113 i++, section++)
10114 {
10115#ifdef SUPPORT_DISASSEMBLY
10116 if (dump_sects[i] & DISASS_DUMP)
10117 disassemble_section (section, file);
10118#endif
10119 if (dump_sects[i] & HEX_DUMP)
cf13d699 10120 dump_section_as_bytes (section, file, FALSE);
103f02d3 10121
cf13d699
NC
10122 if (dump_sects[i] & RELOC_DUMP)
10123 dump_section_as_bytes (section, file, TRUE);
09c11c86
NC
10124
10125 if (dump_sects[i] & STRING_DUMP)
10126 dump_section_as_strings (section, file);
cf13d699
NC
10127
10128 if (dump_sects[i] & DEBUG_DUMP)
10129 display_debug_section (section, file);
5b18a4bc 10130 }
103f02d3 10131
19e6b90e
L
10132 /* Check to see if the user requested a
10133 dump of a section that does not exist. */
10134 while (i++ < num_dump_sects)
10135 if (dump_sects[i])
10136 warn (_("Section %d was not dumped because it does not exist!\n"), i);
5b18a4bc 10137}
103f02d3 10138
5b18a4bc 10139static void
19e6b90e 10140process_mips_fpe_exception (int mask)
5b18a4bc 10141{
19e6b90e
L
10142 if (mask)
10143 {
10144 int first = 1;
10145 if (mask & OEX_FPU_INEX)
10146 fputs ("INEX", stdout), first = 0;
10147 if (mask & OEX_FPU_UFLO)
10148 printf ("%sUFLO", first ? "" : "|"), first = 0;
10149 if (mask & OEX_FPU_OFLO)
10150 printf ("%sOFLO", first ? "" : "|"), first = 0;
10151 if (mask & OEX_FPU_DIV0)
10152 printf ("%sDIV0", first ? "" : "|"), first = 0;
10153 if (mask & OEX_FPU_INVAL)
10154 printf ("%sINVAL", first ? "" : "|");
10155 }
5b18a4bc 10156 else
19e6b90e 10157 fputs ("0", stdout);
5b18a4bc 10158}
103f02d3 10159
11c1ff18
PB
10160/* ARM EABI attributes section. */
10161typedef struct
10162{
10163 int tag;
2cf0635d 10164 const char * name;
11c1ff18
PB
10165 /* 0 = special, 1 = string, 2 = uleb123, > 0x80 == table lookup. */
10166 int type;
2cf0635d 10167 const char ** table;
11c1ff18
PB
10168} arm_attr_public_tag;
10169
2cf0635d 10170static const char * arm_attr_tag_CPU_arch[] =
11c1ff18 10171 {"Pre-v4", "v4", "v4T", "v5T", "v5TE", "v5TEJ", "v6", "v6KZ", "v6T2",
9e3c6df6 10172 "v6K", "v7", "v6-M", "v6S-M", "v7E-M"};
2cf0635d
NC
10173static const char * arm_attr_tag_ARM_ISA_use[] = {"No", "Yes"};
10174static const char * arm_attr_tag_THUMB_ISA_use[] =
11c1ff18 10175 {"No", "Thumb-1", "Thumb-2"};
75375b3e 10176static const char * arm_attr_tag_FP_arch[] =
62f3b8c8 10177 {"No", "VFPv1", "VFPv2", "VFPv3", "VFPv3-D16", "VFPv4", "VFPv4-D16"};
2cf0635d 10178static const char * arm_attr_tag_WMMX_arch[] = {"No", "WMMXv1", "WMMXv2"};
cd21e546
MGD
10179static const char * arm_attr_tag_Advanced_SIMD_arch[] =
10180 {"No", "NEONv1", "NEONv1 with Fused-MAC"};
2cf0635d 10181static const char * arm_attr_tag_PCS_config[] =
11c1ff18
PB
10182 {"None", "Bare platform", "Linux application", "Linux DSO", "PalmOS 2004",
10183 "PalmOS (reserved)", "SymbianOS 2004", "SymbianOS (reserved)"};
2cf0635d 10184static const char * arm_attr_tag_ABI_PCS_R9_use[] =
11c1ff18 10185 {"V6", "SB", "TLS", "Unused"};
2cf0635d 10186static const char * arm_attr_tag_ABI_PCS_RW_data[] =
11c1ff18 10187 {"Absolute", "PC-relative", "SB-relative", "None"};
2cf0635d 10188static const char * arm_attr_tag_ABI_PCS_RO_data[] =
11c1ff18 10189 {"Absolute", "PC-relative", "None"};
2cf0635d 10190static const char * arm_attr_tag_ABI_PCS_GOT_use[] =
11c1ff18 10191 {"None", "direct", "GOT-indirect"};
2cf0635d 10192static const char * arm_attr_tag_ABI_PCS_wchar_t[] =
11c1ff18 10193 {"None", "??? 1", "2", "??? 3", "4"};
2cf0635d
NC
10194static const char * arm_attr_tag_ABI_FP_rounding[] = {"Unused", "Needed"};
10195static const char * arm_attr_tag_ABI_FP_denormal[] =
f5f53991 10196 {"Unused", "Needed", "Sign only"};
2cf0635d
NC
10197static const char * arm_attr_tag_ABI_FP_exceptions[] = {"Unused", "Needed"};
10198static const char * arm_attr_tag_ABI_FP_user_exceptions[] = {"Unused", "Needed"};
10199static const char * arm_attr_tag_ABI_FP_number_model[] =
11c1ff18 10200 {"Unused", "Finite", "RTABI", "IEEE 754"};
2cf0635d 10201static const char * arm_attr_tag_ABI_enum_size[] =
11c1ff18 10202 {"Unused", "small", "int", "forced to int"};
2cf0635d 10203static const char * arm_attr_tag_ABI_HardFP_use[] =
75375b3e 10204 {"As Tag_FP_arch", "SP only", "DP only", "SP and DP"};
2cf0635d 10205static const char * arm_attr_tag_ABI_VFP_args[] =
11c1ff18 10206 {"AAPCS", "VFP registers", "custom"};
2cf0635d 10207static const char * arm_attr_tag_ABI_WMMX_args[] =
11c1ff18 10208 {"AAPCS", "WMMX registers", "custom"};
2cf0635d 10209static const char * arm_attr_tag_ABI_optimization_goals[] =
11c1ff18
PB
10210 {"None", "Prefer Speed", "Aggressive Speed", "Prefer Size",
10211 "Aggressive Size", "Prefer Debug", "Aggressive Debug"};
2cf0635d 10212static const char * arm_attr_tag_ABI_FP_optimization_goals[] =
11c1ff18
PB
10213 {"None", "Prefer Speed", "Aggressive Speed", "Prefer Size",
10214 "Aggressive Size", "Prefer Accuracy", "Aggressive Accuracy"};
2cf0635d 10215static const char * arm_attr_tag_CPU_unaligned_access[] = {"None", "v6"};
75375b3e 10216static const char * arm_attr_tag_FP_HP_extension[] =
8e79c3df 10217 {"Not Allowed", "Allowed"};
2cf0635d 10218static const char * arm_attr_tag_ABI_FP_16bit_format[] =
8e79c3df 10219 {"None", "IEEE 754", "Alternative Format"};
cd21e546
MGD
10220static const char * arm_attr_tag_MPextension_use[] =
10221 {"Not Allowed", "Allowed"};
10222static const char * arm_attr_tag_DIV_use[] =
10223 {"Allowed in Thumb-ISA, v7-R or v7-M", "Not allowed",
10224 "Allowed in v7-A with integer division extension"};
2cf0635d
NC
10225static const char * arm_attr_tag_T2EE_use[] = {"Not Allowed", "Allowed"};
10226static const char * arm_attr_tag_Virtualization_use[] =
cd21e546
MGD
10227 {"Not Allowed", "TrustZone", "Virtualization Extensions",
10228 "TrustZone and Virtualization Extensions"};
10229static const char * arm_attr_tag_MPextension_use_legacy[] =
f5f53991 10230 {"Not Allowed", "Allowed"};
11c1ff18
PB
10231
10232#define LOOKUP(id, name) \
10233 {id, #name, 0x80 | ARRAY_SIZE(arm_attr_tag_##name), arm_attr_tag_##name}
d70c5fc7 10234static arm_attr_public_tag arm_attr_public_tags[] =
11c1ff18
PB
10235{
10236 {4, "CPU_raw_name", 1, NULL},
10237 {5, "CPU_name", 1, NULL},
10238 LOOKUP(6, CPU_arch),
10239 {7, "CPU_arch_profile", 0, NULL},
10240 LOOKUP(8, ARM_ISA_use),
10241 LOOKUP(9, THUMB_ISA_use),
75375b3e 10242 LOOKUP(10, FP_arch),
11c1ff18 10243 LOOKUP(11, WMMX_arch),
f5f53991
AS
10244 LOOKUP(12, Advanced_SIMD_arch),
10245 LOOKUP(13, PCS_config),
11c1ff18
PB
10246 LOOKUP(14, ABI_PCS_R9_use),
10247 LOOKUP(15, ABI_PCS_RW_data),
f5f53991 10248 LOOKUP(16, ABI_PCS_RO_data),
11c1ff18
PB
10249 LOOKUP(17, ABI_PCS_GOT_use),
10250 LOOKUP(18, ABI_PCS_wchar_t),
10251 LOOKUP(19, ABI_FP_rounding),
10252 LOOKUP(20, ABI_FP_denormal),
10253 LOOKUP(21, ABI_FP_exceptions),
10254 LOOKUP(22, ABI_FP_user_exceptions),
10255 LOOKUP(23, ABI_FP_number_model),
75375b3e
MGD
10256 {24, "ABI_align_needed", 0, NULL},
10257 {25, "ABI_align_preserved", 0, NULL},
11c1ff18
PB
10258 LOOKUP(26, ABI_enum_size),
10259 LOOKUP(27, ABI_HardFP_use),
10260 LOOKUP(28, ABI_VFP_args),
10261 LOOKUP(29, ABI_WMMX_args),
10262 LOOKUP(30, ABI_optimization_goals),
10263 LOOKUP(31, ABI_FP_optimization_goals),
8e79c3df 10264 {32, "compatibility", 0, NULL},
f5f53991 10265 LOOKUP(34, CPU_unaligned_access),
75375b3e 10266 LOOKUP(36, FP_HP_extension),
8e79c3df 10267 LOOKUP(38, ABI_FP_16bit_format),
cd21e546
MGD
10268 LOOKUP(42, MPextension_use),
10269 LOOKUP(44, DIV_use),
f5f53991
AS
10270 {64, "nodefaults", 0, NULL},
10271 {65, "also_compatible_with", 0, NULL},
10272 LOOKUP(66, T2EE_use),
10273 {67, "conformance", 1, NULL},
10274 LOOKUP(68, Virtualization_use),
cd21e546 10275 LOOKUP(70, MPextension_use_legacy)
11c1ff18
PB
10276};
10277#undef LOOKUP
10278
11c1ff18 10279static unsigned char *
2cf0635d 10280display_arm_attribute (unsigned char * p)
11c1ff18
PB
10281{
10282 int tag;
10283 unsigned int len;
10284 int val;
2cf0635d 10285 arm_attr_public_tag * attr;
11c1ff18
PB
10286 unsigned i;
10287 int type;
10288
10289 tag = read_uleb128 (p, &len);
10290 p += len;
10291 attr = NULL;
2cf0635d 10292 for (i = 0; i < ARRAY_SIZE (arm_attr_public_tags); i++)
11c1ff18
PB
10293 {
10294 if (arm_attr_public_tags[i].tag == tag)
10295 {
10296 attr = &arm_attr_public_tags[i];
10297 break;
10298 }
10299 }
10300
10301 if (attr)
10302 {
10303 printf (" Tag_%s: ", attr->name);
10304 switch (attr->type)
10305 {
10306 case 0:
10307 switch (tag)
10308 {
10309 case 7: /* Tag_CPU_arch_profile. */
10310 val = read_uleb128 (p, &len);
10311 p += len;
10312 switch (val)
10313 {
2b692964
NC
10314 case 0: printf (_("None\n")); break;
10315 case 'A': printf (_("Application\n")); break;
10316 case 'R': printf (_("Realtime\n")); break;
10317 case 'M': printf (_("Microcontroller\n")); break;
10318 case 'S': printf (_("Application or Realtime\n")); break;
11c1ff18
PB
10319 default: printf ("??? (%d)\n", val); break;
10320 }
10321 break;
10322
75375b3e
MGD
10323 case 24: /* Tag_align_needed. */
10324 val = read_uleb128 (p, &len);
10325 p += len;
10326 switch (val)
10327 {
2b692964
NC
10328 case 0: printf (_("None\n")); break;
10329 case 1: printf (_("8-byte\n")); break;
10330 case 2: printf (_("4-byte\n")); break;
75375b3e
MGD
10331 case 3: printf ("??? 3\n"); break;
10332 default:
10333 if (val <= 12)
2b692964 10334 printf (_("8-byte and up to %d-byte extended\n"),
75375b3e
MGD
10335 1 << val);
10336 else
10337 printf ("??? (%d)\n", val);
10338 break;
10339 }
10340 break;
10341
10342 case 25: /* Tag_align_preserved. */
10343 val = read_uleb128 (p, &len);
10344 p += len;
10345 switch (val)
10346 {
2b692964
NC
10347 case 0: printf (_("None\n")); break;
10348 case 1: printf (_("8-byte, except leaf SP\n")); break;
10349 case 2: printf (_("8-byte\n")); break;
75375b3e
MGD
10350 case 3: printf ("??? 3\n"); break;
10351 default:
10352 if (val <= 12)
2b692964 10353 printf (_("8-byte and up to %d-byte extended\n"),
75375b3e
MGD
10354 1 << val);
10355 else
10356 printf ("??? (%d)\n", val);
10357 break;
10358 }
10359 break;
10360
11c1ff18
PB
10361 case 32: /* Tag_compatibility. */
10362 val = read_uleb128 (p, &len);
10363 p += len;
2b692964 10364 printf (_("flag = %d, vendor = %s\n"), val, p);
2cf0635d 10365 p += strlen ((char *) p) + 1;
11c1ff18
PB
10366 break;
10367
f5f53991
AS
10368 case 64: /* Tag_nodefaults. */
10369 p++;
2b692964 10370 printf (_("True\n"));
f5f53991
AS
10371 break;
10372
10373 case 65: /* Tag_also_compatible_with. */
10374 val = read_uleb128 (p, &len);
10375 p += len;
10376 if (val == 6 /* Tag_CPU_arch. */)
10377 {
10378 val = read_uleb128 (p, &len);
10379 p += len;
2cf0635d 10380 if ((unsigned int)val >= ARRAY_SIZE (arm_attr_tag_CPU_arch))
f5f53991
AS
10381 printf ("??? (%d)\n", val);
10382 else
10383 printf ("%s\n", arm_attr_tag_CPU_arch[val]);
10384 }
10385 else
10386 printf ("???\n");
10387 while (*(p++) != '\0' /* NUL terminator. */);
10388 break;
10389
11c1ff18 10390 default:
2cf0635d 10391 abort ();
11c1ff18
PB
10392 }
10393 return p;
10394
10395 case 1:
10396 case 2:
10397 type = attr->type;
10398 break;
10399
10400 default:
10401 assert (attr->type & 0x80);
10402 val = read_uleb128 (p, &len);
10403 p += len;
10404 type = attr->type & 0x7f;
10405 if (val >= type)
10406 printf ("??? (%d)\n", val);
10407 else
10408 printf ("%s\n", attr->table[val]);
10409 return p;
10410 }
10411 }
10412 else
10413 {
10414 if (tag & 1)
10415 type = 1; /* String. */
10416 else
10417 type = 2; /* uleb128. */
10418 printf (" Tag_unknown_%d: ", tag);
10419 }
10420
10421 if (type == 1)
10422 {
10423 printf ("\"%s\"\n", p);
2cf0635d 10424 p += strlen ((char *) p) + 1;
11c1ff18
PB
10425 }
10426 else
10427 {
10428 val = read_uleb128 (p, &len);
10429 p += len;
10430 printf ("%d (0x%x)\n", val, val);
10431 }
10432
10433 return p;
10434}
10435
104d59d1 10436static unsigned char *
60bca95a
NC
10437display_gnu_attribute (unsigned char * p,
10438 unsigned char * (* display_proc_gnu_attribute) (unsigned char *, int))
104d59d1
JM
10439{
10440 int tag;
10441 unsigned int len;
10442 int val;
10443 int type;
10444
10445 tag = read_uleb128 (p, &len);
10446 p += len;
10447
10448 /* Tag_compatibility is the only generic GNU attribute defined at
10449 present. */
10450 if (tag == 32)
10451 {
10452 val = read_uleb128 (p, &len);
10453 p += len;
2b692964 10454 printf (_("flag = %d, vendor = %s\n"), val, p);
60bca95a 10455 p += strlen ((char *) p) + 1;
104d59d1
JM
10456 return p;
10457 }
10458
10459 if ((tag & 2) == 0 && display_proc_gnu_attribute)
10460 return display_proc_gnu_attribute (p, tag);
10461
10462 if (tag & 1)
10463 type = 1; /* String. */
10464 else
10465 type = 2; /* uleb128. */
10466 printf (" Tag_unknown_%d: ", tag);
10467
10468 if (type == 1)
10469 {
10470 printf ("\"%s\"\n", p);
60bca95a 10471 p += strlen ((char *) p) + 1;
104d59d1
JM
10472 }
10473 else
10474 {
10475 val = read_uleb128 (p, &len);
10476 p += len;
10477 printf ("%d (0x%x)\n", val, val);
10478 }
10479
10480 return p;
10481}
10482
34c8bcba 10483static unsigned char *
2cf0635d 10484display_power_gnu_attribute (unsigned char * p, int tag)
34c8bcba
JM
10485{
10486 int type;
10487 unsigned int len;
10488 int val;
10489
10490 if (tag == Tag_GNU_Power_ABI_FP)
10491 {
10492 val = read_uleb128 (p, &len);
10493 p += len;
10494 printf (" Tag_GNU_Power_ABI_FP: ");
60bca95a 10495
34c8bcba
JM
10496 switch (val)
10497 {
10498 case 0:
2b692964 10499 printf (_("Hard or soft float\n"));
34c8bcba
JM
10500 break;
10501 case 1:
2b692964 10502 printf (_("Hard float\n"));
34c8bcba
JM
10503 break;
10504 case 2:
2b692964 10505 printf (_("Soft float\n"));
34c8bcba 10506 break;
3c7b9897 10507 case 3:
2b692964 10508 printf (_("Single-precision hard float\n"));
3c7b9897 10509 break;
34c8bcba
JM
10510 default:
10511 printf ("??? (%d)\n", val);
10512 break;
10513 }
10514 return p;
10515 }
10516
c6e65352
DJ
10517 if (tag == Tag_GNU_Power_ABI_Vector)
10518 {
10519 val = read_uleb128 (p, &len);
10520 p += len;
10521 printf (" Tag_GNU_Power_ABI_Vector: ");
10522 switch (val)
10523 {
10524 case 0:
2b692964 10525 printf (_("Any\n"));
c6e65352
DJ
10526 break;
10527 case 1:
2b692964 10528 printf (_("Generic\n"));
c6e65352
DJ
10529 break;
10530 case 2:
10531 printf ("AltiVec\n");
10532 break;
10533 case 3:
10534 printf ("SPE\n");
10535 break;
10536 default:
10537 printf ("??? (%d)\n", val);
10538 break;
10539 }
10540 return p;
10541 }
10542
f82e0623
NF
10543 if (tag == Tag_GNU_Power_ABI_Struct_Return)
10544 {
10545 val = read_uleb128 (p, &len);
10546 p += len;
10547 printf (" Tag_GNU_Power_ABI_Struct_Return: ");
10548 switch (val)
10549 {
10550 case 0:
2b692964 10551 printf (_("Any\n"));
f82e0623
NF
10552 break;
10553 case 1:
10554 printf ("r3/r4\n");
10555 break;
10556 case 2:
2b692964 10557 printf (_("Memory\n"));
f82e0623
NF
10558 break;
10559 default:
10560 printf ("??? (%d)\n", val);
10561 break;
10562 }
10563 return p;
10564 }
10565
34c8bcba
JM
10566 if (tag & 1)
10567 type = 1; /* String. */
10568 else
10569 type = 2; /* uleb128. */
10570 printf (" Tag_unknown_%d: ", tag);
10571
10572 if (type == 1)
10573 {
10574 printf ("\"%s\"\n", p);
60bca95a 10575 p += strlen ((char *) p) + 1;
34c8bcba
JM
10576 }
10577 else
10578 {
10579 val = read_uleb128 (p, &len);
10580 p += len;
10581 printf ("%d (0x%x)\n", val, val);
10582 }
10583
10584 return p;
10585}
10586
2cf19d5c 10587static unsigned char *
2cf0635d 10588display_mips_gnu_attribute (unsigned char * p, int tag)
2cf19d5c
JM
10589{
10590 int type;
10591 unsigned int len;
10592 int val;
10593
10594 if (tag == Tag_GNU_MIPS_ABI_FP)
10595 {
10596 val = read_uleb128 (p, &len);
10597 p += len;
10598 printf (" Tag_GNU_MIPS_ABI_FP: ");
60bca95a 10599
2cf19d5c
JM
10600 switch (val)
10601 {
10602 case 0:
2b692964 10603 printf (_("Hard or soft float\n"));
2cf19d5c
JM
10604 break;
10605 case 1:
2b692964 10606 printf (_("Hard float (double precision)\n"));
2cf19d5c
JM
10607 break;
10608 case 2:
2b692964 10609 printf (_("Hard float (single precision)\n"));
2cf19d5c
JM
10610 break;
10611 case 3:
2b692964 10612 printf (_("Soft float\n"));
2cf19d5c 10613 break;
42554f6a 10614 case 4:
2b692964 10615 printf (_("64-bit float (-mips32r2 -mfp64)\n"));
42554f6a 10616 break;
2cf19d5c
JM
10617 default:
10618 printf ("??? (%d)\n", val);
10619 break;
10620 }
10621 return p;
10622 }
10623
10624 if (tag & 1)
10625 type = 1; /* String. */
10626 else
10627 type = 2; /* uleb128. */
10628 printf (" Tag_unknown_%d: ", tag);
10629
10630 if (type == 1)
10631 {
10632 printf ("\"%s\"\n", p);
60bca95a 10633 p += strlen ((char *) p) + 1;
2cf19d5c
JM
10634 }
10635 else
10636 {
10637 val = read_uleb128 (p, &len);
10638 p += len;
10639 printf ("%d (0x%x)\n", val, val);
10640 }
10641
10642 return p;
10643}
10644
59e6276b
JM
10645static unsigned char *
10646display_tic6x_attribute (unsigned char * p)
10647{
10648 int tag;
10649 unsigned int len;
10650 int val;
10651
10652 tag = read_uleb128 (p, &len);
10653 p += len;
10654
10655 switch (tag)
10656 {
10657 case Tag_C6XABI_Tag_CPU_arch:
10658 val = read_uleb128 (p, &len);
10659 p += len;
10660 printf (" Tag_C6XABI_Tag_CPU_arch: ");
10661
10662 switch (val)
10663 {
10664 case C6XABI_Tag_CPU_arch_none:
10665 printf (_("None\n"));
10666 break;
10667 case C6XABI_Tag_CPU_arch_C62X:
10668 printf ("C62x\n");
10669 break;
10670 case C6XABI_Tag_CPU_arch_C67X:
10671 printf ("C67x\n");
10672 break;
10673 case C6XABI_Tag_CPU_arch_C67XP:
10674 printf ("C67x+\n");
10675 break;
10676 case C6XABI_Tag_CPU_arch_C64X:
10677 printf ("C64x\n");
10678 break;
10679 case C6XABI_Tag_CPU_arch_C64XP:
10680 printf ("C64x+\n");
10681 break;
10682 case C6XABI_Tag_CPU_arch_C674X:
10683 printf ("C674x\n");
10684 break;
10685 default:
10686 printf ("??? (%d)\n", val);
10687 break;
10688 }
10689 return p;
10690
10691 case 32:
10692 /* Tag_compatibility - treated as generic by binutils for now
10693 although not currently specified for C6X. */
10694 val = read_uleb128 (p, &len);
10695 p += len;
10696 printf (_("flag = %d, vendor = %s\n"), val, p);
10697 p += strlen ((char *) p) + 1;
10698 return p;
10699 }
10700
10701 printf (" Tag_unknown_%d: ", tag);
10702
10703 /* No general documentation of handling unknown attributes, treat as
10704 ULEB128 for now. */
10705 val = read_uleb128 (p, &len);
10706 p += len;
10707 printf ("%d (0x%x)\n", val, val);
10708
10709 return p;
10710}
10711
11c1ff18 10712static int
60bca95a
NC
10713process_attributes (FILE * file,
10714 const char * public_name,
104d59d1 10715 unsigned int proc_type,
60bca95a
NC
10716 unsigned char * (* display_pub_attribute) (unsigned char *),
10717 unsigned char * (* display_proc_gnu_attribute) (unsigned char *, int))
11c1ff18 10718{
2cf0635d
NC
10719 Elf_Internal_Shdr * sect;
10720 unsigned char * contents;
10721 unsigned char * p;
10722 unsigned char * end;
11c1ff18
PB
10723 bfd_vma section_len;
10724 bfd_vma len;
10725 unsigned i;
10726
10727 /* Find the section header so that we get the size. */
10728 for (i = 0, sect = section_headers;
10729 i < elf_header.e_shnum;
10730 i++, sect++)
10731 {
104d59d1 10732 if (sect->sh_type != proc_type && sect->sh_type != SHT_GNU_ATTRIBUTES)
11c1ff18
PB
10733 continue;
10734
3f5e193b
NC
10735 contents = (unsigned char *) get_data (NULL, file, sect->sh_offset, 1,
10736 sect->sh_size, _("attributes"));
60bca95a 10737 if (contents == NULL)
11c1ff18 10738 continue;
60bca95a 10739
11c1ff18
PB
10740 p = contents;
10741 if (*p == 'A')
10742 {
10743 len = sect->sh_size - 1;
10744 p++;
60bca95a 10745
11c1ff18
PB
10746 while (len > 0)
10747 {
10748 int namelen;
10749 bfd_boolean public_section;
104d59d1 10750 bfd_boolean gnu_section;
11c1ff18
PB
10751
10752 section_len = byte_get (p, 4);
10753 p += 4;
60bca95a 10754
11c1ff18
PB
10755 if (section_len > len)
10756 {
10757 printf (_("ERROR: Bad section length (%d > %d)\n"),
60bca95a 10758 (int) section_len, (int) len);
11c1ff18
PB
10759 section_len = len;
10760 }
60bca95a 10761
11c1ff18 10762 len -= section_len;
2b692964 10763 printf (_("Attribute Section: %s\n"), p);
60bca95a
NC
10764
10765 if (public_name && streq ((char *) p, public_name))
11c1ff18
PB
10766 public_section = TRUE;
10767 else
10768 public_section = FALSE;
60bca95a
NC
10769
10770 if (streq ((char *) p, "gnu"))
104d59d1
JM
10771 gnu_section = TRUE;
10772 else
10773 gnu_section = FALSE;
60bca95a
NC
10774
10775 namelen = strlen ((char *) p) + 1;
11c1ff18
PB
10776 p += namelen;
10777 section_len -= namelen + 4;
60bca95a 10778
11c1ff18
PB
10779 while (section_len > 0)
10780 {
10781 int tag = *(p++);
10782 int val;
10783 bfd_vma size;
60bca95a 10784
11c1ff18
PB
10785 size = byte_get (p, 4);
10786 if (size > section_len)
10787 {
10788 printf (_("ERROR: Bad subsection length (%d > %d)\n"),
60bca95a 10789 (int) size, (int) section_len);
11c1ff18
PB
10790 size = section_len;
10791 }
60bca95a 10792
11c1ff18
PB
10793 section_len -= size;
10794 end = p + size - 1;
10795 p += 4;
60bca95a 10796
11c1ff18
PB
10797 switch (tag)
10798 {
10799 case 1:
2b692964 10800 printf (_("File Attributes\n"));
11c1ff18
PB
10801 break;
10802 case 2:
2b692964 10803 printf (_("Section Attributes:"));
11c1ff18
PB
10804 goto do_numlist;
10805 case 3:
2b692964 10806 printf (_("Symbol Attributes:"));
11c1ff18
PB
10807 do_numlist:
10808 for (;;)
10809 {
91d6fa6a 10810 unsigned int j;
60bca95a 10811
91d6fa6a
NC
10812 val = read_uleb128 (p, &j);
10813 p += j;
11c1ff18
PB
10814 if (val == 0)
10815 break;
10816 printf (" %d", val);
10817 }
10818 printf ("\n");
10819 break;
10820 default:
2b692964 10821 printf (_("Unknown tag: %d\n"), tag);
11c1ff18
PB
10822 public_section = FALSE;
10823 break;
10824 }
60bca95a 10825
11c1ff18
PB
10826 if (public_section)
10827 {
10828 while (p < end)
104d59d1
JM
10829 p = display_pub_attribute (p);
10830 }
10831 else if (gnu_section)
10832 {
10833 while (p < end)
10834 p = display_gnu_attribute (p,
10835 display_proc_gnu_attribute);
11c1ff18
PB
10836 }
10837 else
10838 {
10839 /* ??? Do something sensible, like dump hex. */
2b692964 10840 printf (_(" Unknown section contexts\n"));
11c1ff18
PB
10841 p = end;
10842 }
10843 }
10844 }
10845 }
10846 else
60bca95a 10847 printf (_("Unknown format '%c'\n"), *p);
d70c5fc7 10848
60bca95a 10849 free (contents);
11c1ff18
PB
10850 }
10851 return 1;
10852}
10853
104d59d1 10854static int
2cf0635d 10855process_arm_specific (FILE * file)
104d59d1
JM
10856{
10857 return process_attributes (file, "aeabi", SHT_ARM_ATTRIBUTES,
10858 display_arm_attribute, NULL);
10859}
10860
34c8bcba 10861static int
2cf0635d 10862process_power_specific (FILE * file)
34c8bcba
JM
10863{
10864 return process_attributes (file, NULL, SHT_GNU_ATTRIBUTES, NULL,
10865 display_power_gnu_attribute);
10866}
10867
59e6276b
JM
10868static int
10869process_tic6x_specific (FILE * file)
10870{
10871 return process_attributes (file, "c6xabi", SHT_C6000_ATTRIBUTES,
10872 display_tic6x_attribute, NULL);
10873}
10874
ccb4c951
RS
10875/* DATA points to the contents of a MIPS GOT that starts at VMA PLTGOT.
10876 Print the Address, Access and Initial fields of an entry at VMA ADDR
10877 and return the VMA of the next entry. */
10878
10879static bfd_vma
2cf0635d 10880print_mips_got_entry (unsigned char * data, bfd_vma pltgot, bfd_vma addr)
ccb4c951
RS
10881{
10882 printf (" ");
10883 print_vma (addr, LONG_HEX);
10884 printf (" ");
10885 if (addr < pltgot + 0xfff0)
10886 printf ("%6d(gp)", (int) (addr - pltgot - 0x7ff0));
10887 else
10888 printf ("%10s", "");
10889 printf (" ");
10890 if (data == NULL)
2b692964 10891 printf ("%*s", is_32bit_elf ? 8 : 16, _("<unknown>"));
ccb4c951
RS
10892 else
10893 {
10894 bfd_vma entry;
10895
10896 entry = byte_get (data + addr - pltgot, is_32bit_elf ? 4 : 8);
10897 print_vma (entry, LONG_HEX);
10898 }
10899 return addr + (is_32bit_elf ? 4 : 8);
10900}
10901
861fb55a
DJ
10902/* DATA points to the contents of a MIPS PLT GOT that starts at VMA
10903 PLTGOT. Print the Address and Initial fields of an entry at VMA
10904 ADDR and return the VMA of the next entry. */
10905
10906static bfd_vma
2cf0635d 10907print_mips_pltgot_entry (unsigned char * data, bfd_vma pltgot, bfd_vma addr)
861fb55a
DJ
10908{
10909 printf (" ");
10910 print_vma (addr, LONG_HEX);
10911 printf (" ");
10912 if (data == NULL)
2b692964 10913 printf ("%*s", is_32bit_elf ? 8 : 16, _("<unknown>"));
861fb55a
DJ
10914 else
10915 {
10916 bfd_vma entry;
10917
10918 entry = byte_get (data + addr - pltgot, is_32bit_elf ? 4 : 8);
10919 print_vma (entry, LONG_HEX);
10920 }
10921 return addr + (is_32bit_elf ? 4 : 8);
10922}
10923
19e6b90e 10924static int
2cf0635d 10925process_mips_specific (FILE * file)
5b18a4bc 10926{
2cf0635d 10927 Elf_Internal_Dyn * entry;
19e6b90e
L
10928 size_t liblist_offset = 0;
10929 size_t liblistno = 0;
10930 size_t conflictsno = 0;
10931 size_t options_offset = 0;
10932 size_t conflicts_offset = 0;
861fb55a
DJ
10933 size_t pltrelsz = 0;
10934 size_t pltrel = 0;
ccb4c951 10935 bfd_vma pltgot = 0;
861fb55a
DJ
10936 bfd_vma mips_pltgot = 0;
10937 bfd_vma jmprel = 0;
ccb4c951
RS
10938 bfd_vma local_gotno = 0;
10939 bfd_vma gotsym = 0;
10940 bfd_vma symtabno = 0;
103f02d3 10941
2cf19d5c
JM
10942 process_attributes (file, NULL, SHT_GNU_ATTRIBUTES, NULL,
10943 display_mips_gnu_attribute);
10944
19e6b90e
L
10945 /* We have a lot of special sections. Thanks SGI! */
10946 if (dynamic_section == NULL)
10947 /* No information available. */
10948 return 0;
252b5132 10949
b2d38a17 10950 for (entry = dynamic_section; entry->d_tag != DT_NULL; ++entry)
252b5132
RH
10951 switch (entry->d_tag)
10952 {
10953 case DT_MIPS_LIBLIST:
d93f0186
NC
10954 liblist_offset
10955 = offset_from_vma (file, entry->d_un.d_val,
10956 liblistno * sizeof (Elf32_External_Lib));
252b5132
RH
10957 break;
10958 case DT_MIPS_LIBLISTNO:
10959 liblistno = entry->d_un.d_val;
10960 break;
10961 case DT_MIPS_OPTIONS:
d93f0186 10962 options_offset = offset_from_vma (file, entry->d_un.d_val, 0);
252b5132
RH
10963 break;
10964 case DT_MIPS_CONFLICT:
d93f0186
NC
10965 conflicts_offset
10966 = offset_from_vma (file, entry->d_un.d_val,
10967 conflictsno * sizeof (Elf32_External_Conflict));
252b5132
RH
10968 break;
10969 case DT_MIPS_CONFLICTNO:
10970 conflictsno = entry->d_un.d_val;
10971 break;
ccb4c951 10972 case DT_PLTGOT:
861fb55a
DJ
10973 pltgot = entry->d_un.d_ptr;
10974 break;
ccb4c951
RS
10975 case DT_MIPS_LOCAL_GOTNO:
10976 local_gotno = entry->d_un.d_val;
10977 break;
10978 case DT_MIPS_GOTSYM:
10979 gotsym = entry->d_un.d_val;
10980 break;
10981 case DT_MIPS_SYMTABNO:
10982 symtabno = entry->d_un.d_val;
10983 break;
861fb55a
DJ
10984 case DT_MIPS_PLTGOT:
10985 mips_pltgot = entry->d_un.d_ptr;
10986 break;
10987 case DT_PLTREL:
10988 pltrel = entry->d_un.d_val;
10989 break;
10990 case DT_PLTRELSZ:
10991 pltrelsz = entry->d_un.d_val;
10992 break;
10993 case DT_JMPREL:
10994 jmprel = entry->d_un.d_ptr;
10995 break;
252b5132
RH
10996 default:
10997 break;
10998 }
10999
11000 if (liblist_offset != 0 && liblistno != 0 && do_dynamic)
11001 {
2cf0635d 11002 Elf32_External_Lib * elib;
252b5132
RH
11003 size_t cnt;
11004
3f5e193b
NC
11005 elib = (Elf32_External_Lib *) get_data (NULL, file, liblist_offset,
11006 liblistno,
11007 sizeof (Elf32_External_Lib),
11008 _("liblist"));
a6e9f9df 11009 if (elib)
252b5132 11010 {
2b692964 11011 printf (_("\nSection '.liblist' contains %lu entries:\n"),
a6e9f9df 11012 (unsigned long) liblistno);
2b692964 11013 fputs (_(" Library Time Stamp Checksum Version Flags\n"),
a6e9f9df
AM
11014 stdout);
11015
11016 for (cnt = 0; cnt < liblistno; ++cnt)
252b5132 11017 {
a6e9f9df 11018 Elf32_Lib liblist;
91d6fa6a 11019 time_t atime;
a6e9f9df 11020 char timebuf[20];
2cf0635d 11021 struct tm * tmp;
a6e9f9df
AM
11022
11023 liblist.l_name = BYTE_GET (elib[cnt].l_name);
91d6fa6a 11024 atime = BYTE_GET (elib[cnt].l_time_stamp);
a6e9f9df
AM
11025 liblist.l_checksum = BYTE_GET (elib[cnt].l_checksum);
11026 liblist.l_version = BYTE_GET (elib[cnt].l_version);
11027 liblist.l_flags = BYTE_GET (elib[cnt].l_flags);
11028
91d6fa6a 11029 tmp = gmtime (&atime);
e9e44622
JJ
11030 snprintf (timebuf, sizeof (timebuf),
11031 "%04u-%02u-%02uT%02u:%02u:%02u",
11032 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
11033 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
a6e9f9df 11034
31104126 11035 printf ("%3lu: ", (unsigned long) cnt);
d79b3d50
NC
11036 if (VALID_DYNAMIC_NAME (liblist.l_name))
11037 print_symbol (20, GET_DYNAMIC_NAME (liblist.l_name));
11038 else
2b692964 11039 printf (_("<corrupt: %9ld>"), liblist.l_name);
31104126
NC
11040 printf (" %s %#10lx %-7ld", timebuf, liblist.l_checksum,
11041 liblist.l_version);
a6e9f9df
AM
11042
11043 if (liblist.l_flags == 0)
2b692964 11044 puts (_(" NONE"));
a6e9f9df
AM
11045 else
11046 {
11047 static const struct
252b5132 11048 {
2cf0635d 11049 const char * name;
a6e9f9df 11050 int bit;
252b5132 11051 }
a6e9f9df
AM
11052 l_flags_vals[] =
11053 {
11054 { " EXACT_MATCH", LL_EXACT_MATCH },
11055 { " IGNORE_INT_VER", LL_IGNORE_INT_VER },
11056 { " REQUIRE_MINOR", LL_REQUIRE_MINOR },
11057 { " EXPORTS", LL_EXPORTS },
11058 { " DELAY_LOAD", LL_DELAY_LOAD },
11059 { " DELTA", LL_DELTA }
11060 };
11061 int flags = liblist.l_flags;
11062 size_t fcnt;
11063
60bca95a 11064 for (fcnt = 0; fcnt < ARRAY_SIZE (l_flags_vals); ++fcnt)
a6e9f9df
AM
11065 if ((flags & l_flags_vals[fcnt].bit) != 0)
11066 {
11067 fputs (l_flags_vals[fcnt].name, stdout);
11068 flags ^= l_flags_vals[fcnt].bit;
11069 }
11070 if (flags != 0)
11071 printf (" %#x", (unsigned int) flags);
252b5132 11072
a6e9f9df
AM
11073 puts ("");
11074 }
252b5132 11075 }
252b5132 11076
a6e9f9df
AM
11077 free (elib);
11078 }
252b5132
RH
11079 }
11080
11081 if (options_offset != 0)
11082 {
2cf0635d
NC
11083 Elf_External_Options * eopt;
11084 Elf_Internal_Shdr * sect = section_headers;
11085 Elf_Internal_Options * iopt;
11086 Elf_Internal_Options * option;
252b5132
RH
11087 size_t offset;
11088 int cnt;
11089
11090 /* Find the section header so that we get the size. */
11091 while (sect->sh_type != SHT_MIPS_OPTIONS)
b34976b6 11092 ++sect;
252b5132 11093
3f5e193b
NC
11094 eopt = (Elf_External_Options *) get_data (NULL, file, options_offset, 1,
11095 sect->sh_size, _("options"));
a6e9f9df 11096 if (eopt)
252b5132 11097 {
3f5e193b
NC
11098 iopt = (Elf_Internal_Options *)
11099 cmalloc ((sect->sh_size / sizeof (eopt)), sizeof (* iopt));
a6e9f9df
AM
11100 if (iopt == NULL)
11101 {
591a748a 11102 error (_("Out of memory\n"));
a6e9f9df
AM
11103 return 0;
11104 }
76da6bbe 11105
a6e9f9df
AM
11106 offset = cnt = 0;
11107 option = iopt;
252b5132 11108
a6e9f9df
AM
11109 while (offset < sect->sh_size)
11110 {
2cf0635d 11111 Elf_External_Options * eoption;
252b5132 11112
a6e9f9df 11113 eoption = (Elf_External_Options *) ((char *) eopt + offset);
252b5132 11114
a6e9f9df
AM
11115 option->kind = BYTE_GET (eoption->kind);
11116 option->size = BYTE_GET (eoption->size);
11117 option->section = BYTE_GET (eoption->section);
11118 option->info = BYTE_GET (eoption->info);
76da6bbe 11119
a6e9f9df 11120 offset += option->size;
252b5132 11121
a6e9f9df
AM
11122 ++option;
11123 ++cnt;
11124 }
252b5132 11125
a6e9f9df
AM
11126 printf (_("\nSection '%s' contains %d entries:\n"),
11127 SECTION_NAME (sect), cnt);
76da6bbe 11128
a6e9f9df 11129 option = iopt;
252b5132 11130
a6e9f9df 11131 while (cnt-- > 0)
252b5132 11132 {
a6e9f9df
AM
11133 size_t len;
11134
11135 switch (option->kind)
252b5132 11136 {
a6e9f9df
AM
11137 case ODK_NULL:
11138 /* This shouldn't happen. */
11139 printf (" NULL %d %lx", option->section, option->info);
11140 break;
11141 case ODK_REGINFO:
11142 printf (" REGINFO ");
11143 if (elf_header.e_machine == EM_MIPS)
11144 {
11145 /* 32bit form. */
2cf0635d 11146 Elf32_External_RegInfo * ereg;
b34976b6 11147 Elf32_RegInfo reginfo;
a6e9f9df
AM
11148
11149 ereg = (Elf32_External_RegInfo *) (option + 1);
11150 reginfo.ri_gprmask = BYTE_GET (ereg->ri_gprmask);
11151 reginfo.ri_cprmask[0] = BYTE_GET (ereg->ri_cprmask[0]);
11152 reginfo.ri_cprmask[1] = BYTE_GET (ereg->ri_cprmask[1]);
11153 reginfo.ri_cprmask[2] = BYTE_GET (ereg->ri_cprmask[2]);
11154 reginfo.ri_cprmask[3] = BYTE_GET (ereg->ri_cprmask[3]);
11155 reginfo.ri_gp_value = BYTE_GET (ereg->ri_gp_value);
11156
11157 printf ("GPR %08lx GP 0x%lx\n",
11158 reginfo.ri_gprmask,
11159 (unsigned long) reginfo.ri_gp_value);
11160 printf (" CPR0 %08lx CPR1 %08lx CPR2 %08lx CPR3 %08lx\n",
11161 reginfo.ri_cprmask[0], reginfo.ri_cprmask[1],
11162 reginfo.ri_cprmask[2], reginfo.ri_cprmask[3]);
11163 }
11164 else
11165 {
11166 /* 64 bit form. */
2cf0635d 11167 Elf64_External_RegInfo * ereg;
a6e9f9df
AM
11168 Elf64_Internal_RegInfo reginfo;
11169
11170 ereg = (Elf64_External_RegInfo *) (option + 1);
11171 reginfo.ri_gprmask = BYTE_GET (ereg->ri_gprmask);
11172 reginfo.ri_cprmask[0] = BYTE_GET (ereg->ri_cprmask[0]);
11173 reginfo.ri_cprmask[1] = BYTE_GET (ereg->ri_cprmask[1]);
11174 reginfo.ri_cprmask[2] = BYTE_GET (ereg->ri_cprmask[2]);
11175 reginfo.ri_cprmask[3] = BYTE_GET (ereg->ri_cprmask[3]);
66543521 11176 reginfo.ri_gp_value = BYTE_GET (ereg->ri_gp_value);
a6e9f9df
AM
11177
11178 printf ("GPR %08lx GP 0x",
11179 reginfo.ri_gprmask);
11180 printf_vma (reginfo.ri_gp_value);
11181 printf ("\n");
11182
11183 printf (" CPR0 %08lx CPR1 %08lx CPR2 %08lx CPR3 %08lx\n",
11184 reginfo.ri_cprmask[0], reginfo.ri_cprmask[1],
11185 reginfo.ri_cprmask[2], reginfo.ri_cprmask[3]);
11186 }
11187 ++option;
11188 continue;
11189 case ODK_EXCEPTIONS:
11190 fputs (" EXCEPTIONS fpe_min(", stdout);
11191 process_mips_fpe_exception (option->info & OEX_FPU_MIN);
11192 fputs (") fpe_max(", stdout);
11193 process_mips_fpe_exception ((option->info & OEX_FPU_MAX) >> 8);
11194 fputs (")", stdout);
11195
11196 if (option->info & OEX_PAGE0)
11197 fputs (" PAGE0", stdout);
11198 if (option->info & OEX_SMM)
11199 fputs (" SMM", stdout);
11200 if (option->info & OEX_FPDBUG)
11201 fputs (" FPDBUG", stdout);
11202 if (option->info & OEX_DISMISS)
11203 fputs (" DISMISS", stdout);
11204 break;
11205 case ODK_PAD:
11206 fputs (" PAD ", stdout);
11207 if (option->info & OPAD_PREFIX)
11208 fputs (" PREFIX", stdout);
11209 if (option->info & OPAD_POSTFIX)
11210 fputs (" POSTFIX", stdout);
11211 if (option->info & OPAD_SYMBOL)
11212 fputs (" SYMBOL", stdout);
11213 break;
11214 case ODK_HWPATCH:
11215 fputs (" HWPATCH ", stdout);
11216 if (option->info & OHW_R4KEOP)
11217 fputs (" R4KEOP", stdout);
11218 if (option->info & OHW_R8KPFETCH)
11219 fputs (" R8KPFETCH", stdout);
11220 if (option->info & OHW_R5KEOP)
11221 fputs (" R5KEOP", stdout);
11222 if (option->info & OHW_R5KCVTL)
11223 fputs (" R5KCVTL", stdout);
11224 break;
11225 case ODK_FILL:
11226 fputs (" FILL ", stdout);
11227 /* XXX Print content of info word? */
11228 break;
11229 case ODK_TAGS:
11230 fputs (" TAGS ", stdout);
11231 /* XXX Print content of info word? */
11232 break;
11233 case ODK_HWAND:
11234 fputs (" HWAND ", stdout);
11235 if (option->info & OHWA0_R4KEOP_CHECKED)
11236 fputs (" R4KEOP_CHECKED", stdout);
11237 if (option->info & OHWA0_R4KEOP_CLEAN)
11238 fputs (" R4KEOP_CLEAN", stdout);
11239 break;
11240 case ODK_HWOR:
11241 fputs (" HWOR ", stdout);
11242 if (option->info & OHWA0_R4KEOP_CHECKED)
11243 fputs (" R4KEOP_CHECKED", stdout);
11244 if (option->info & OHWA0_R4KEOP_CLEAN)
11245 fputs (" R4KEOP_CLEAN", stdout);
11246 break;
11247 case ODK_GP_GROUP:
11248 printf (" GP_GROUP %#06lx self-contained %#06lx",
11249 option->info & OGP_GROUP,
11250 (option->info & OGP_SELF) >> 16);
11251 break;
11252 case ODK_IDENT:
11253 printf (" IDENT %#06lx self-contained %#06lx",
11254 option->info & OGP_GROUP,
11255 (option->info & OGP_SELF) >> 16);
11256 break;
11257 default:
11258 /* This shouldn't happen. */
11259 printf (" %3d ??? %d %lx",
11260 option->kind, option->section, option->info);
11261 break;
252b5132 11262 }
a6e9f9df 11263
2cf0635d 11264 len = sizeof (* eopt);
a6e9f9df
AM
11265 while (len < option->size)
11266 if (((char *) option)[len] >= ' '
11267 && ((char *) option)[len] < 0x7f)
11268 printf ("%c", ((char *) option)[len++]);
11269 else
11270 printf ("\\%03o", ((char *) option)[len++]);
11271
11272 fputs ("\n", stdout);
252b5132 11273 ++option;
252b5132
RH
11274 }
11275
a6e9f9df 11276 free (eopt);
252b5132 11277 }
252b5132
RH
11278 }
11279
11280 if (conflicts_offset != 0 && conflictsno != 0)
11281 {
2cf0635d 11282 Elf32_Conflict * iconf;
252b5132
RH
11283 size_t cnt;
11284
11285 if (dynamic_symbols == NULL)
11286 {
591a748a 11287 error (_("conflict list found without a dynamic symbol table\n"));
252b5132
RH
11288 return 0;
11289 }
11290
3f5e193b 11291 iconf = (Elf32_Conflict *) cmalloc (conflictsno, sizeof (* iconf));
252b5132
RH
11292 if (iconf == NULL)
11293 {
591a748a 11294 error (_("Out of memory\n"));
252b5132
RH
11295 return 0;
11296 }
11297
9ea033b2 11298 if (is_32bit_elf)
252b5132 11299 {
2cf0635d 11300 Elf32_External_Conflict * econf32;
a6e9f9df 11301
3f5e193b
NC
11302 econf32 = (Elf32_External_Conflict *)
11303 get_data (NULL, file, conflicts_offset, conflictsno,
11304 sizeof (* econf32), _("conflict"));
a6e9f9df
AM
11305 if (!econf32)
11306 return 0;
252b5132
RH
11307
11308 for (cnt = 0; cnt < conflictsno; ++cnt)
11309 iconf[cnt] = BYTE_GET (econf32[cnt]);
a6e9f9df
AM
11310
11311 free (econf32);
252b5132
RH
11312 }
11313 else
11314 {
2cf0635d 11315 Elf64_External_Conflict * econf64;
a6e9f9df 11316
3f5e193b
NC
11317 econf64 = (Elf64_External_Conflict *)
11318 get_data (NULL, file, conflicts_offset, conflictsno,
11319 sizeof (* econf64), _("conflict"));
a6e9f9df
AM
11320 if (!econf64)
11321 return 0;
252b5132
RH
11322
11323 for (cnt = 0; cnt < conflictsno; ++cnt)
11324 iconf[cnt] = BYTE_GET (econf64[cnt]);
a6e9f9df
AM
11325
11326 free (econf64);
252b5132
RH
11327 }
11328
c7e7ca54
NC
11329 printf (_("\nSection '.conflict' contains %lu entries:\n"),
11330 (unsigned long) conflictsno);
252b5132
RH
11331 puts (_(" Num: Index Value Name"));
11332
11333 for (cnt = 0; cnt < conflictsno; ++cnt)
11334 {
2cf0635d 11335 Elf_Internal_Sym * psym = & dynamic_symbols[iconf[cnt]];
252b5132 11336
b34976b6 11337 printf ("%5lu: %8lu ", (unsigned long) cnt, iconf[cnt]);
f7a99963 11338 print_vma (psym->st_value, FULL_HEX);
31104126 11339 putchar (' ');
d79b3d50
NC
11340 if (VALID_DYNAMIC_NAME (psym->st_name))
11341 print_symbol (25, GET_DYNAMIC_NAME (psym->st_name));
11342 else
2b692964 11343 printf (_("<corrupt: %14ld>"), psym->st_name);
31104126 11344 putchar ('\n');
252b5132
RH
11345 }
11346
252b5132
RH
11347 free (iconf);
11348 }
11349
ccb4c951
RS
11350 if (pltgot != 0 && local_gotno != 0)
11351 {
91d6fa6a 11352 bfd_vma ent, local_end, global_end;
bbeee7ea 11353 size_t i, offset;
2cf0635d 11354 unsigned char * data;
bbeee7ea 11355 int addr_size;
ccb4c951 11356
91d6fa6a 11357 ent = pltgot;
ccb4c951
RS
11358 addr_size = (is_32bit_elf ? 4 : 8);
11359 local_end = pltgot + local_gotno * addr_size;
11360 global_end = local_end + (symtabno - gotsym) * addr_size;
11361
11362 offset = offset_from_vma (file, pltgot, global_end - pltgot);
3f5e193b
NC
11363 data = (unsigned char *) get_data (NULL, file, offset,
11364 global_end - pltgot, 1, _("GOT"));
ccb4c951
RS
11365 printf (_("\nPrimary GOT:\n"));
11366 printf (_(" Canonical gp value: "));
11367 print_vma (pltgot + 0x7ff0, LONG_HEX);
11368 printf ("\n\n");
11369
11370 printf (_(" Reserved entries:\n"));
11371 printf (_(" %*s %10s %*s Purpose\n"),
2b692964
NC
11372 addr_size * 2, _("Address"), _("Access"),
11373 addr_size * 2, _("Initial"));
91d6fa6a 11374 ent = print_mips_got_entry (data, pltgot, ent);
2b692964 11375 printf (_(" Lazy resolver\n"));
ccb4c951 11376 if (data
91d6fa6a 11377 && (byte_get (data + ent - pltgot, addr_size)
ccb4c951
RS
11378 >> (addr_size * 8 - 1)) != 0)
11379 {
91d6fa6a 11380 ent = print_mips_got_entry (data, pltgot, ent);
2b692964 11381 printf (_(" Module pointer (GNU extension)\n"));
ccb4c951
RS
11382 }
11383 printf ("\n");
11384
91d6fa6a 11385 if (ent < local_end)
ccb4c951
RS
11386 {
11387 printf (_(" Local entries:\n"));
11388 printf (_(" %*s %10s %*s\n"),
2b692964
NC
11389 addr_size * 2, _("Address"), _("Access"),
11390 addr_size * 2, _("Initial"));
91d6fa6a 11391 while (ent < local_end)
ccb4c951 11392 {
91d6fa6a 11393 ent = print_mips_got_entry (data, pltgot, ent);
ccb4c951
RS
11394 printf ("\n");
11395 }
11396 printf ("\n");
11397 }
11398
11399 if (gotsym < symtabno)
11400 {
11401 int sym_width;
11402
11403 printf (_(" Global entries:\n"));
11404 printf (_(" %*s %10s %*s %*s %-7s %3s %s\n"),
2b692964
NC
11405 addr_size * 2, _("Address"), _("Access"),
11406 addr_size * 2, _("Initial"),
11407 addr_size * 2, _("Sym.Val."), _("Type"), _("Ndx"), _("Name"));
ccb4c951
RS
11408 sym_width = (is_32bit_elf ? 80 : 160) - 28 - addr_size * 6 - 1;
11409 for (i = gotsym; i < symtabno; i++)
11410 {
2cf0635d 11411 Elf_Internal_Sym * psym;
ccb4c951
RS
11412
11413 psym = dynamic_symbols + i;
91d6fa6a 11414 ent = print_mips_got_entry (data, pltgot, ent);
ccb4c951
RS
11415 printf (" ");
11416 print_vma (psym->st_value, LONG_HEX);
11417 printf (" %-7s %3s ",
11418 get_symbol_type (ELF_ST_TYPE (psym->st_info)),
11419 get_symbol_index_type (psym->st_shndx));
11420 if (VALID_DYNAMIC_NAME (psym->st_name))
11421 print_symbol (sym_width, GET_DYNAMIC_NAME (psym->st_name));
11422 else
2b692964 11423 printf (_("<corrupt: %14ld>"), psym->st_name);
ccb4c951
RS
11424 printf ("\n");
11425 }
11426 printf ("\n");
11427 }
11428
11429 if (data)
11430 free (data);
11431 }
11432
861fb55a
DJ
11433 if (mips_pltgot != 0 && jmprel != 0 && pltrel != 0 && pltrelsz != 0)
11434 {
91d6fa6a 11435 bfd_vma ent, end;
861fb55a
DJ
11436 size_t offset, rel_offset;
11437 unsigned long count, i;
2cf0635d 11438 unsigned char * data;
861fb55a 11439 int addr_size, sym_width;
2cf0635d 11440 Elf_Internal_Rela * rels;
861fb55a
DJ
11441
11442 rel_offset = offset_from_vma (file, jmprel, pltrelsz);
11443 if (pltrel == DT_RELA)
11444 {
11445 if (!slurp_rela_relocs (file, rel_offset, pltrelsz, &rels, &count))
11446 return 0;
11447 }
11448 else
11449 {
11450 if (!slurp_rel_relocs (file, rel_offset, pltrelsz, &rels, &count))
11451 return 0;
11452 }
11453
91d6fa6a 11454 ent = mips_pltgot;
861fb55a
DJ
11455 addr_size = (is_32bit_elf ? 4 : 8);
11456 end = mips_pltgot + (2 + count) * addr_size;
11457
11458 offset = offset_from_vma (file, mips_pltgot, end - mips_pltgot);
3f5e193b
NC
11459 data = (unsigned char *) get_data (NULL, file, offset, end - mips_pltgot,
11460 1, _("PLT GOT"));
861fb55a
DJ
11461 printf (_("\nPLT GOT:\n\n"));
11462 printf (_(" Reserved entries:\n"));
11463 printf (_(" %*s %*s Purpose\n"),
2b692964 11464 addr_size * 2, _("Address"), addr_size * 2, _("Initial"));
91d6fa6a 11465 ent = print_mips_pltgot_entry (data, mips_pltgot, ent);
2b692964 11466 printf (_(" PLT lazy resolver\n"));
91d6fa6a 11467 ent = print_mips_pltgot_entry (data, mips_pltgot, ent);
2b692964 11468 printf (_(" Module pointer\n"));
861fb55a
DJ
11469 printf ("\n");
11470
11471 printf (_(" Entries:\n"));
11472 printf (_(" %*s %*s %*s %-7s %3s %s\n"),
2b692964
NC
11473 addr_size * 2, _("Address"),
11474 addr_size * 2, _("Initial"),
11475 addr_size * 2, _("Sym.Val."), _("Type"), _("Ndx"), _("Name"));
861fb55a
DJ
11476 sym_width = (is_32bit_elf ? 80 : 160) - 17 - addr_size * 6 - 1;
11477 for (i = 0; i < count; i++)
11478 {
2cf0635d 11479 Elf_Internal_Sym * psym;
861fb55a
DJ
11480
11481 psym = dynamic_symbols + get_reloc_symindex (rels[i].r_info);
91d6fa6a 11482 ent = print_mips_pltgot_entry (data, mips_pltgot, ent);
861fb55a
DJ
11483 printf (" ");
11484 print_vma (psym->st_value, LONG_HEX);
11485 printf (" %-7s %3s ",
11486 get_symbol_type (ELF_ST_TYPE (psym->st_info)),
11487 get_symbol_index_type (psym->st_shndx));
11488 if (VALID_DYNAMIC_NAME (psym->st_name))
11489 print_symbol (sym_width, GET_DYNAMIC_NAME (psym->st_name));
11490 else
2b692964 11491 printf (_("<corrupt: %14ld>"), psym->st_name);
861fb55a
DJ
11492 printf ("\n");
11493 }
11494 printf ("\n");
11495
11496 if (data)
11497 free (data);
11498 free (rels);
11499 }
11500
252b5132
RH
11501 return 1;
11502}
11503
047b2264 11504static int
2cf0635d 11505process_gnu_liblist (FILE * file)
047b2264 11506{
2cf0635d
NC
11507 Elf_Internal_Shdr * section;
11508 Elf_Internal_Shdr * string_sec;
11509 Elf32_External_Lib * elib;
11510 char * strtab;
c256ffe7 11511 size_t strtab_size;
047b2264
JJ
11512 size_t cnt;
11513 unsigned i;
11514
11515 if (! do_arch)
11516 return 0;
11517
11518 for (i = 0, section = section_headers;
11519 i < elf_header.e_shnum;
b34976b6 11520 i++, section++)
047b2264
JJ
11521 {
11522 switch (section->sh_type)
11523 {
11524 case SHT_GNU_LIBLIST:
4fbb74a6 11525 if (section->sh_link >= elf_header.e_shnum)
c256ffe7
JJ
11526 break;
11527
3f5e193b
NC
11528 elib = (Elf32_External_Lib *)
11529 get_data (NULL, file, section->sh_offset, 1, section->sh_size,
11530 _("liblist"));
047b2264
JJ
11531
11532 if (elib == NULL)
11533 break;
4fbb74a6 11534 string_sec = section_headers + section->sh_link;
047b2264 11535
3f5e193b
NC
11536 strtab = (char *) get_data (NULL, file, string_sec->sh_offset, 1,
11537 string_sec->sh_size,
11538 _("liblist string table"));
c256ffe7 11539 strtab_size = string_sec->sh_size;
047b2264
JJ
11540
11541 if (strtab == NULL
11542 || section->sh_entsize != sizeof (Elf32_External_Lib))
11543 {
11544 free (elib);
11545 break;
11546 }
11547
11548 printf (_("\nLibrary list section '%s' contains %lu entries:\n"),
11549 SECTION_NAME (section),
0af1713e 11550 (unsigned long) (section->sh_size / sizeof (Elf32_External_Lib)));
047b2264 11551
2b692964 11552 puts (_(" Library Time Stamp Checksum Version Flags"));
047b2264
JJ
11553
11554 for (cnt = 0; cnt < section->sh_size / sizeof (Elf32_External_Lib);
11555 ++cnt)
11556 {
11557 Elf32_Lib liblist;
91d6fa6a 11558 time_t atime;
047b2264 11559 char timebuf[20];
2cf0635d 11560 struct tm * tmp;
047b2264
JJ
11561
11562 liblist.l_name = BYTE_GET (elib[cnt].l_name);
91d6fa6a 11563 atime = BYTE_GET (elib[cnt].l_time_stamp);
047b2264
JJ
11564 liblist.l_checksum = BYTE_GET (elib[cnt].l_checksum);
11565 liblist.l_version = BYTE_GET (elib[cnt].l_version);
11566 liblist.l_flags = BYTE_GET (elib[cnt].l_flags);
11567
91d6fa6a 11568 tmp = gmtime (&atime);
e9e44622
JJ
11569 snprintf (timebuf, sizeof (timebuf),
11570 "%04u-%02u-%02uT%02u:%02u:%02u",
11571 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
11572 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
047b2264
JJ
11573
11574 printf ("%3lu: ", (unsigned long) cnt);
11575 if (do_wide)
c256ffe7 11576 printf ("%-20s", liblist.l_name < strtab_size
2b692964 11577 ? strtab + liblist.l_name : _("<corrupt>"));
047b2264 11578 else
c256ffe7 11579 printf ("%-20.20s", liblist.l_name < strtab_size
2b692964 11580 ? strtab + liblist.l_name : _("<corrupt>"));
047b2264
JJ
11581 printf (" %s %#010lx %-7ld %-7ld\n", timebuf, liblist.l_checksum,
11582 liblist.l_version, liblist.l_flags);
11583 }
11584
11585 free (elib);
11586 }
11587 }
11588
11589 return 1;
11590}
11591
9437c45b 11592static const char *
d3ba0551 11593get_note_type (unsigned e_type)
779fe533
NC
11594{
11595 static char buff[64];
103f02d3 11596
1ec5cd37
NC
11597 if (elf_header.e_type == ET_CORE)
11598 switch (e_type)
11599 {
57346661 11600 case NT_AUXV:
1ec5cd37 11601 return _("NT_AUXV (auxiliary vector)");
57346661 11602 case NT_PRSTATUS:
1ec5cd37 11603 return _("NT_PRSTATUS (prstatus structure)");
57346661 11604 case NT_FPREGSET:
1ec5cd37 11605 return _("NT_FPREGSET (floating point registers)");
57346661 11606 case NT_PRPSINFO:
1ec5cd37 11607 return _("NT_PRPSINFO (prpsinfo structure)");
57346661 11608 case NT_TASKSTRUCT:
1ec5cd37 11609 return _("NT_TASKSTRUCT (task structure)");
57346661 11610 case NT_PRXFPREG:
1ec5cd37 11611 return _("NT_PRXFPREG (user_xfpregs structure)");
e1e95dec
AM
11612 case NT_PPC_VMX:
11613 return _("NT_PPC_VMX (ppc Altivec registers)");
89eeb0bc
LM
11614 case NT_PPC_VSX:
11615 return _("NT_PPC_VSX (ppc VSX registers)");
4339cae0
L
11616 case NT_X86_XSTATE:
11617 return _("NT_X86_XSTATE (x86 XSAVE extended state)");
0675e188
UW
11618 case NT_S390_HIGH_GPRS:
11619 return _("NT_S390_HIGH_GPRS (s390 upper register halves)");
d7eeb400
MS
11620 case NT_S390_TIMER:
11621 return _("NT_S390_TIMER (s390 timer register)");
11622 case NT_S390_TODCMP:
11623 return _("NT_S390_TODCMP (s390 TOD comparator register)");
11624 case NT_S390_TODPREG:
11625 return _("NT_S390_TODPREG (s390 TOD programmable register)");
11626 case NT_S390_CTRS:
11627 return _("NT_S390_CTRS (s390 control registers)");
11628 case NT_S390_PREFIX:
11629 return _("NT_S390_PREFIX (s390 prefix register)");
57346661 11630 case NT_PSTATUS:
1ec5cd37 11631 return _("NT_PSTATUS (pstatus structure)");
57346661 11632 case NT_FPREGS:
1ec5cd37 11633 return _("NT_FPREGS (floating point registers)");
57346661 11634 case NT_PSINFO:
1ec5cd37 11635 return _("NT_PSINFO (psinfo structure)");
57346661 11636 case NT_LWPSTATUS:
1ec5cd37 11637 return _("NT_LWPSTATUS (lwpstatus_t structure)");
57346661 11638 case NT_LWPSINFO:
1ec5cd37 11639 return _("NT_LWPSINFO (lwpsinfo_t structure)");
57346661 11640 case NT_WIN32PSTATUS:
1ec5cd37
NC
11641 return _("NT_WIN32PSTATUS (win32_pstatus structure)");
11642 default:
11643 break;
11644 }
11645 else
11646 switch (e_type)
11647 {
11648 case NT_VERSION:
11649 return _("NT_VERSION (version)");
11650 case NT_ARCH:
11651 return _("NT_ARCH (architecture)");
11652 default:
11653 break;
11654 }
11655
e9e44622 11656 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
1ec5cd37 11657 return buff;
779fe533
NC
11658}
11659
1118d252
RM
11660static const char *
11661get_gnu_elf_note_type (unsigned e_type)
11662{
11663 static char buff[64];
11664
11665 switch (e_type)
11666 {
11667 case NT_GNU_ABI_TAG:
11668 return _("NT_GNU_ABI_TAG (ABI version tag)");
11669 case NT_GNU_HWCAP:
11670 return _("NT_GNU_HWCAP (DSO-supplied software HWCAP info)");
11671 case NT_GNU_BUILD_ID:
11672 return _("NT_GNU_BUILD_ID (unique build ID bitstring)");
0297aed6
DM
11673 case NT_GNU_GOLD_VERSION:
11674 return _("NT_GNU_GOLD_VERSION (gold version)");
1118d252
RM
11675 default:
11676 break;
11677 }
11678
11679 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
11680 return buff;
11681}
11682
9437c45b 11683static const char *
d3ba0551 11684get_netbsd_elfcore_note_type (unsigned e_type)
9437c45b
JT
11685{
11686 static char buff[64];
11687
b4db1224 11688 if (e_type == NT_NETBSDCORE_PROCINFO)
9437c45b
JT
11689 {
11690 /* NetBSD core "procinfo" structure. */
11691 return _("NetBSD procinfo structure");
11692 }
11693
11694 /* As of Jan 2002 there are no other machine-independent notes
11695 defined for NetBSD core files. If the note type is less
11696 than the start of the machine-dependent note types, we don't
11697 understand it. */
11698
b4db1224 11699 if (e_type < NT_NETBSDCORE_FIRSTMACH)
9437c45b 11700 {
e9e44622 11701 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
9437c45b
JT
11702 return buff;
11703 }
11704
11705 switch (elf_header.e_machine)
11706 {
11707 /* On the Alpha, SPARC (32-bit and 64-bit), PT_GETREGS == mach+0
11708 and PT_GETFPREGS == mach+2. */
11709
11710 case EM_OLD_ALPHA:
11711 case EM_ALPHA:
11712 case EM_SPARC:
11713 case EM_SPARC32PLUS:
11714 case EM_SPARCV9:
11715 switch (e_type)
11716 {
2b692964 11717 case NT_NETBSDCORE_FIRSTMACH + 0:
b4db1224 11718 return _("PT_GETREGS (reg structure)");
2b692964 11719 case NT_NETBSDCORE_FIRSTMACH + 2:
b4db1224 11720 return _("PT_GETFPREGS (fpreg structure)");
9437c45b
JT
11721 default:
11722 break;
11723 }
11724 break;
11725
11726 /* On all other arch's, PT_GETREGS == mach+1 and
11727 PT_GETFPREGS == mach+3. */
11728 default:
11729 switch (e_type)
11730 {
2b692964 11731 case NT_NETBSDCORE_FIRSTMACH + 1:
b4db1224 11732 return _("PT_GETREGS (reg structure)");
2b692964 11733 case NT_NETBSDCORE_FIRSTMACH + 3:
b4db1224 11734 return _("PT_GETFPREGS (fpreg structure)");
9437c45b
JT
11735 default:
11736 break;
11737 }
11738 }
11739
e9e44622
JJ
11740 snprintf (buff, sizeof (buff), _("PT_FIRSTMACH+%d"),
11741 e_type - NT_NETBSDCORE_FIRSTMACH);
9437c45b
JT
11742 return buff;
11743}
11744
6d118b09
NC
11745/* Note that by the ELF standard, the name field is already null byte
11746 terminated, and namesz includes the terminating null byte.
11747 I.E. the value of namesz for the name "FSF" is 4.
11748
e3c8793a 11749 If the value of namesz is zero, there is no name present. */
779fe533 11750static int
2cf0635d 11751process_note (Elf_Internal_Note * pnote)
779fe533 11752{
2cf0635d
NC
11753 const char * name = pnote->namesz ? pnote->namedata : "(NONE)";
11754 const char * nt;
9437c45b
JT
11755
11756 if (pnote->namesz == 0)
1ec5cd37
NC
11757 /* If there is no note name, then use the default set of
11758 note type strings. */
11759 nt = get_note_type (pnote->type);
11760
1118d252
RM
11761 else if (const_strneq (pnote->namedata, "GNU"))
11762 /* GNU-specific object file notes. */
11763 nt = get_gnu_elf_note_type (pnote->type);
11764
0112cd26 11765 else if (const_strneq (pnote->namedata, "NetBSD-CORE"))
1ec5cd37
NC
11766 /* NetBSD-specific core file notes. */
11767 nt = get_netbsd_elfcore_note_type (pnote->type);
11768
b15fa79e
AM
11769 else if (strneq (pnote->namedata, "SPU/", 4))
11770 {
11771 /* SPU-specific core file notes. */
11772 nt = pnote->namedata + 4;
11773 name = "SPU";
11774 }
11775
9437c45b 11776 else
1ec5cd37
NC
11777 /* Don't recognize this note name; just use the default set of
11778 note type strings. */
9437c45b 11779 nt = get_note_type (pnote->type);
9437c45b 11780
b15fa79e 11781 printf (" %s\t\t0x%08lx\t%s\n", name, pnote->descsz, nt);
779fe533
NC
11782 return 1;
11783}
11784
6d118b09 11785
779fe533 11786static int
2cf0635d 11787process_corefile_note_segment (FILE * file, bfd_vma offset, bfd_vma length)
779fe533 11788{
2cf0635d
NC
11789 Elf_External_Note * pnotes;
11790 Elf_External_Note * external;
b34976b6 11791 int res = 1;
103f02d3 11792
779fe533
NC
11793 if (length <= 0)
11794 return 0;
103f02d3 11795
3f5e193b
NC
11796 pnotes = (Elf_External_Note *) get_data (NULL, file, offset, 1, length,
11797 _("notes"));
a6e9f9df
AM
11798 if (!pnotes)
11799 return 0;
779fe533 11800
103f02d3 11801 external = pnotes;
103f02d3 11802
305c7206 11803 printf (_("\nNotes at offset 0x%08lx with length 0x%08lx:\n"),
f3485b74 11804 (unsigned long) offset, (unsigned long) length);
779fe533 11805 printf (_(" Owner\t\tData size\tDescription\n"));
103f02d3 11806
2cf0635d 11807 while (external < (Elf_External_Note *) ((char *) pnotes + length))
779fe533 11808 {
2cf0635d 11809 Elf_External_Note * next;
b34976b6 11810 Elf_Internal_Note inote;
2cf0635d 11811 char * temp = NULL;
6d118b09
NC
11812
11813 inote.type = BYTE_GET (external->type);
11814 inote.namesz = BYTE_GET (external->namesz);
11815 inote.namedata = external->name;
11816 inote.descsz = BYTE_GET (external->descsz);
11817 inote.descdata = inote.namedata + align_power (inote.namesz, 2);
11818 inote.descpos = offset + (inote.descdata - (char *) pnotes);
76da6bbe 11819
2cf0635d 11820 next = (Elf_External_Note *) (inote.descdata + align_power (inote.descsz, 2));
3e55a963
NC
11821
11822 if (((char *) next) > (((char *) pnotes) + length))
11823 {
0fd3a477 11824 warn (_("corrupt note found at offset %lx into core notes\n"),
0af1713e 11825 (unsigned long) ((char *) external - (char *) pnotes));
0fd3a477 11826 warn (_(" type: %lx, namesize: %08lx, descsize: %08lx\n"),
3e55a963
NC
11827 inote.type, inote.namesz, inote.descsz);
11828 break;
11829 }
11830
11831 external = next;
6d118b09
NC
11832
11833 /* Verify that name is null terminated. It appears that at least
11834 one version of Linux (RedHat 6.0) generates corefiles that don't
11835 comply with the ELF spec by failing to include the null byte in
11836 namesz. */
11837 if (inote.namedata[inote.namesz] != '\0')
11838 {
3f5e193b 11839 temp = (char *) malloc (inote.namesz + 1);
76da6bbe 11840
6d118b09
NC
11841 if (temp == NULL)
11842 {
11843 error (_("Out of memory\n"));
11844 res = 0;
11845 break;
11846 }
76da6bbe 11847
6d118b09
NC
11848 strncpy (temp, inote.namedata, inote.namesz);
11849 temp[inote.namesz] = 0;
76da6bbe 11850
6d118b09
NC
11851 /* warn (_("'%s' NOTE name not properly null terminated\n"), temp); */
11852 inote.namedata = temp;
11853 }
11854
11855 res &= process_note (& inote);
103f02d3 11856
6d118b09
NC
11857 if (temp != NULL)
11858 {
11859 free (temp);
11860 temp = NULL;
11861 }
779fe533
NC
11862 }
11863
11864 free (pnotes);
103f02d3 11865
779fe533
NC
11866 return res;
11867}
11868
11869static int
2cf0635d 11870process_corefile_note_segments (FILE * file)
779fe533 11871{
2cf0635d 11872 Elf_Internal_Phdr * segment;
b34976b6
AM
11873 unsigned int i;
11874 int res = 1;
103f02d3 11875
d93f0186 11876 if (! get_program_headers (file))
779fe533 11877 return 0;
103f02d3 11878
779fe533
NC
11879 for (i = 0, segment = program_headers;
11880 i < elf_header.e_phnum;
b34976b6 11881 i++, segment++)
779fe533
NC
11882 {
11883 if (segment->p_type == PT_NOTE)
103f02d3 11884 res &= process_corefile_note_segment (file,
30800947
NC
11885 (bfd_vma) segment->p_offset,
11886 (bfd_vma) segment->p_filesz);
779fe533 11887 }
103f02d3 11888
779fe533
NC
11889 return res;
11890}
11891
11892static int
2cf0635d 11893process_note_sections (FILE * file)
1ec5cd37 11894{
2cf0635d 11895 Elf_Internal_Shdr * section;
1ec5cd37
NC
11896 unsigned long i;
11897 int res = 1;
11898
11899 for (i = 0, section = section_headers;
11900 i < elf_header.e_shnum;
11901 i++, section++)
11902 if (section->sh_type == SHT_NOTE)
11903 res &= process_corefile_note_segment (file,
11904 (bfd_vma) section->sh_offset,
11905 (bfd_vma) section->sh_size);
11906
11907 return res;
11908}
11909
11910static int
2cf0635d 11911process_notes (FILE * file)
779fe533
NC
11912{
11913 /* If we have not been asked to display the notes then do nothing. */
11914 if (! do_notes)
11915 return 1;
103f02d3 11916
779fe533 11917 if (elf_header.e_type != ET_CORE)
1ec5cd37 11918 return process_note_sections (file);
103f02d3 11919
779fe533 11920 /* No program headers means no NOTE segment. */
1ec5cd37
NC
11921 if (elf_header.e_phnum > 0)
11922 return process_corefile_note_segments (file);
779fe533 11923
1ec5cd37
NC
11924 printf (_("No note segments present in the core file.\n"));
11925 return 1;
779fe533
NC
11926}
11927
252b5132 11928static int
2cf0635d 11929process_arch_specific (FILE * file)
252b5132 11930{
a952a375
NC
11931 if (! do_arch)
11932 return 1;
11933
252b5132
RH
11934 switch (elf_header.e_machine)
11935 {
11c1ff18
PB
11936 case EM_ARM:
11937 return process_arm_specific (file);
252b5132 11938 case EM_MIPS:
4fe85591 11939 case EM_MIPS_RS3_LE:
252b5132
RH
11940 return process_mips_specific (file);
11941 break;
34c8bcba
JM
11942 case EM_PPC:
11943 return process_power_specific (file);
11944 break;
59e6276b
JM
11945 case EM_TI_C6000:
11946 return process_tic6x_specific (file);
11947 break;
252b5132
RH
11948 default:
11949 break;
11950 }
11951 return 1;
11952}
11953
11954static int
2cf0635d 11955get_file_header (FILE * file)
252b5132 11956{
9ea033b2
NC
11957 /* Read in the identity array. */
11958 if (fread (elf_header.e_ident, EI_NIDENT, 1, file) != 1)
252b5132
RH
11959 return 0;
11960
9ea033b2 11961 /* Determine how to read the rest of the header. */
b34976b6 11962 switch (elf_header.e_ident[EI_DATA])
9ea033b2
NC
11963 {
11964 default: /* fall through */
11965 case ELFDATANONE: /* fall through */
adab8cdc
AO
11966 case ELFDATA2LSB:
11967 byte_get = byte_get_little_endian;
11968 byte_put = byte_put_little_endian;
11969 break;
11970 case ELFDATA2MSB:
11971 byte_get = byte_get_big_endian;
11972 byte_put = byte_put_big_endian;
11973 break;
9ea033b2
NC
11974 }
11975
11976 /* For now we only support 32 bit and 64 bit ELF files. */
b34976b6 11977 is_32bit_elf = (elf_header.e_ident[EI_CLASS] != ELFCLASS64);
9ea033b2
NC
11978
11979 /* Read in the rest of the header. */
11980 if (is_32bit_elf)
11981 {
11982 Elf32_External_Ehdr ehdr32;
252b5132 11983
9ea033b2
NC
11984 if (fread (ehdr32.e_type, sizeof (ehdr32) - EI_NIDENT, 1, file) != 1)
11985 return 0;
103f02d3 11986
9ea033b2
NC
11987 elf_header.e_type = BYTE_GET (ehdr32.e_type);
11988 elf_header.e_machine = BYTE_GET (ehdr32.e_machine);
11989 elf_header.e_version = BYTE_GET (ehdr32.e_version);
11990 elf_header.e_entry = BYTE_GET (ehdr32.e_entry);
11991 elf_header.e_phoff = BYTE_GET (ehdr32.e_phoff);
11992 elf_header.e_shoff = BYTE_GET (ehdr32.e_shoff);
11993 elf_header.e_flags = BYTE_GET (ehdr32.e_flags);
11994 elf_header.e_ehsize = BYTE_GET (ehdr32.e_ehsize);
11995 elf_header.e_phentsize = BYTE_GET (ehdr32.e_phentsize);
11996 elf_header.e_phnum = BYTE_GET (ehdr32.e_phnum);
11997 elf_header.e_shentsize = BYTE_GET (ehdr32.e_shentsize);
11998 elf_header.e_shnum = BYTE_GET (ehdr32.e_shnum);
11999 elf_header.e_shstrndx = BYTE_GET (ehdr32.e_shstrndx);
12000 }
252b5132 12001 else
9ea033b2
NC
12002 {
12003 Elf64_External_Ehdr ehdr64;
a952a375
NC
12004
12005 /* If we have been compiled with sizeof (bfd_vma) == 4, then
12006 we will not be able to cope with the 64bit data found in
12007 64 ELF files. Detect this now and abort before we start
50c2245b 12008 overwriting things. */
a952a375
NC
12009 if (sizeof (bfd_vma) < 8)
12010 {
e3c8793a
NC
12011 error (_("This instance of readelf has been built without support for a\n\
1201264 bit data type and so it cannot read 64 bit ELF files.\n"));
a952a375
NC
12013 return 0;
12014 }
103f02d3 12015
9ea033b2
NC
12016 if (fread (ehdr64.e_type, sizeof (ehdr64) - EI_NIDENT, 1, file) != 1)
12017 return 0;
103f02d3 12018
9ea033b2
NC
12019 elf_header.e_type = BYTE_GET (ehdr64.e_type);
12020 elf_header.e_machine = BYTE_GET (ehdr64.e_machine);
12021 elf_header.e_version = BYTE_GET (ehdr64.e_version);
66543521
AM
12022 elf_header.e_entry = BYTE_GET (ehdr64.e_entry);
12023 elf_header.e_phoff = BYTE_GET (ehdr64.e_phoff);
12024 elf_header.e_shoff = BYTE_GET (ehdr64.e_shoff);
9ea033b2
NC
12025 elf_header.e_flags = BYTE_GET (ehdr64.e_flags);
12026 elf_header.e_ehsize = BYTE_GET (ehdr64.e_ehsize);
12027 elf_header.e_phentsize = BYTE_GET (ehdr64.e_phentsize);
12028 elf_header.e_phnum = BYTE_GET (ehdr64.e_phnum);
12029 elf_header.e_shentsize = BYTE_GET (ehdr64.e_shentsize);
12030 elf_header.e_shnum = BYTE_GET (ehdr64.e_shnum);
12031 elf_header.e_shstrndx = BYTE_GET (ehdr64.e_shstrndx);
12032 }
252b5132 12033
7ece0d85
JJ
12034 if (elf_header.e_shoff)
12035 {
12036 /* There may be some extensions in the first section header. Don't
12037 bomb if we can't read it. */
12038 if (is_32bit_elf)
12039 get_32bit_section_headers (file, 1);
12040 else
12041 get_64bit_section_headers (file, 1);
12042 }
560f3c1c 12043
252b5132
RH
12044 return 1;
12045}
12046
fb52b2f4
NC
12047/* Process one ELF object file according to the command line options.
12048 This file may actually be stored in an archive. The file is
12049 positioned at the start of the ELF object. */
12050
ff78d6d6 12051static int
2cf0635d 12052process_object (char * file_name, FILE * file)
252b5132 12053{
252b5132
RH
12054 unsigned int i;
12055
252b5132
RH
12056 if (! get_file_header (file))
12057 {
12058 error (_("%s: Failed to read file header\n"), file_name);
ff78d6d6 12059 return 1;
252b5132
RH
12060 }
12061
12062 /* Initialise per file variables. */
60bca95a 12063 for (i = ARRAY_SIZE (version_info); i--;)
252b5132
RH
12064 version_info[i] = 0;
12065
60bca95a 12066 for (i = ARRAY_SIZE (dynamic_info); i--;)
252b5132
RH
12067 dynamic_info[i] = 0;
12068
12069 /* Process the file. */
12070 if (show_name)
12071 printf (_("\nFile: %s\n"), file_name);
12072
18bd398b
NC
12073 /* Initialise the dump_sects array from the cmdline_dump_sects array.
12074 Note we do this even if cmdline_dump_sects is empty because we
12075 must make sure that the dump_sets array is zeroed out before each
12076 object file is processed. */
12077 if (num_dump_sects > num_cmdline_dump_sects)
09c11c86 12078 memset (dump_sects, 0, num_dump_sects * sizeof (* dump_sects));
18bd398b
NC
12079
12080 if (num_cmdline_dump_sects > 0)
12081 {
12082 if (num_dump_sects == 0)
12083 /* A sneaky way of allocating the dump_sects array. */
09c11c86 12084 request_dump_bynumber (num_cmdline_dump_sects, 0);
18bd398b
NC
12085
12086 assert (num_dump_sects >= num_cmdline_dump_sects);
09c11c86
NC
12087 memcpy (dump_sects, cmdline_dump_sects,
12088 num_cmdline_dump_sects * sizeof (* dump_sects));
18bd398b 12089 }
d70c5fc7 12090
252b5132 12091 if (! process_file_header ())
fb52b2f4 12092 return 1;
252b5132 12093
d1f5c6e3 12094 if (! process_section_headers (file))
2f62977e 12095 {
d1f5c6e3
L
12096 /* Without loaded section headers we cannot process lots of
12097 things. */
2f62977e 12098 do_unwind = do_version = do_dump = do_arch = 0;
252b5132 12099
2f62977e 12100 if (! do_using_dynamic)
2c610e4b 12101 do_syms = do_dyn_syms = do_reloc = 0;
2f62977e 12102 }
252b5132 12103
d1f5c6e3
L
12104 if (! process_section_groups (file))
12105 {
12106 /* Without loaded section groups we cannot process unwind. */
12107 do_unwind = 0;
12108 }
12109
2f62977e 12110 if (process_program_headers (file))
b2d38a17 12111 process_dynamic_section (file);
252b5132
RH
12112
12113 process_relocs (file);
12114
4d6ed7c8
NC
12115 process_unwind (file);
12116
252b5132
RH
12117 process_symbol_table (file);
12118
12119 process_syminfo (file);
12120
12121 process_version_sections (file);
12122
12123 process_section_contents (file);
f5842774 12124
1ec5cd37 12125 process_notes (file);
103f02d3 12126
047b2264
JJ
12127 process_gnu_liblist (file);
12128
252b5132
RH
12129 process_arch_specific (file);
12130
d93f0186
NC
12131 if (program_headers)
12132 {
12133 free (program_headers);
12134 program_headers = NULL;
12135 }
12136
252b5132
RH
12137 if (section_headers)
12138 {
12139 free (section_headers);
12140 section_headers = NULL;
12141 }
12142
12143 if (string_table)
12144 {
12145 free (string_table);
12146 string_table = NULL;
d40ac9bd 12147 string_table_length = 0;
252b5132
RH
12148 }
12149
12150 if (dynamic_strings)
12151 {
12152 free (dynamic_strings);
12153 dynamic_strings = NULL;
d79b3d50 12154 dynamic_strings_length = 0;
252b5132
RH
12155 }
12156
12157 if (dynamic_symbols)
12158 {
12159 free (dynamic_symbols);
12160 dynamic_symbols = NULL;
19936277 12161 num_dynamic_syms = 0;
252b5132
RH
12162 }
12163
12164 if (dynamic_syminfo)
12165 {
12166 free (dynamic_syminfo);
12167 dynamic_syminfo = NULL;
12168 }
ff78d6d6 12169
e4b17d5c
L
12170 if (section_headers_groups)
12171 {
12172 free (section_headers_groups);
12173 section_headers_groups = NULL;
12174 }
12175
12176 if (section_groups)
12177 {
2cf0635d
NC
12178 struct group_list * g;
12179 struct group_list * next;
e4b17d5c
L
12180
12181 for (i = 0; i < group_count; i++)
12182 {
12183 for (g = section_groups [i].root; g != NULL; g = next)
12184 {
12185 next = g->next;
12186 free (g);
12187 }
12188 }
12189
12190 free (section_groups);
12191 section_groups = NULL;
12192 }
12193
19e6b90e 12194 free_debug_memory ();
18bd398b 12195
ff78d6d6 12196 return 0;
252b5132
RH
12197}
12198
2cf0635d
NC
12199/* Return the path name for a proxy entry in a thin archive, adjusted relative
12200 to the path name of the thin archive itself if necessary. Always returns
12201 a pointer to malloc'ed memory. */
12202
12203static char *
12204adjust_relative_path (char * file_name, char * name, int name_len)
12205{
12206 char * member_file_name;
12207 const char * base_name = lbasename (file_name);
12208
12209 /* This is a proxy entry for a thin archive member.
12210 If the extended name table contains an absolute path
12211 name, or if the archive is in the current directory,
12212 use the path name as given. Otherwise, we need to
12213 find the member relative to the directory where the
12214 archive is located. */
12215 if (IS_ABSOLUTE_PATH (name) || base_name == file_name)
12216 {
3f5e193b 12217 member_file_name = (char *) malloc (name_len + 1);
2cf0635d
NC
12218 if (member_file_name == NULL)
12219 {
12220 error (_("Out of memory\n"));
12221 return NULL;
12222 }
12223 memcpy (member_file_name, name, name_len);
12224 member_file_name[name_len] = '\0';
12225 }
12226 else
12227 {
12228 /* Concatenate the path components of the archive file name
12229 to the relative path name from the extended name table. */
12230 size_t prefix_len = base_name - file_name;
3f5e193b 12231 member_file_name = (char *) malloc (prefix_len + name_len + 1);
2cf0635d
NC
12232 if (member_file_name == NULL)
12233 {
12234 error (_("Out of memory\n"));
12235 return NULL;
12236 }
12237 memcpy (member_file_name, file_name, prefix_len);
12238 memcpy (member_file_name + prefix_len, name, name_len);
12239 member_file_name[prefix_len + name_len] = '\0';
12240 }
12241 return member_file_name;
12242}
12243
12244/* Structure to hold information about an archive file. */
12245
12246struct archive_info
12247{
12248 char * file_name; /* Archive file name. */
12249 FILE * file; /* Open file descriptor. */
12250 unsigned long index_num; /* Number of symbols in table. */
12251 unsigned long * index_array; /* The array of member offsets. */
12252 char * sym_table; /* The symbol table. */
12253 unsigned long sym_size; /* Size of the symbol table. */
12254 char * longnames; /* The long file names table. */
12255 unsigned long longnames_size; /* Size of the long file names table. */
12256 unsigned long nested_member_origin; /* Origin in the nested archive of the current member. */
12257 unsigned long next_arhdr_offset; /* Offset of the next archive header. */
12258 bfd_boolean is_thin_archive; /* TRUE if this is a thin archive. */
12259 struct ar_hdr arhdr; /* Current archive header. */
12260};
12261
12262/* Read the symbol table and long-name table from an archive. */
fb52b2f4
NC
12263
12264static int
2cf0635d
NC
12265setup_archive (struct archive_info * arch, char * file_name, FILE * file,
12266 bfd_boolean is_thin_archive, bfd_boolean read_symbols)
fb52b2f4 12267{
fb52b2f4
NC
12268 size_t got;
12269 unsigned long size;
fb52b2f4 12270
2cf0635d
NC
12271 arch->file_name = strdup (file_name);
12272 arch->file = file;
12273 arch->index_num = 0;
12274 arch->index_array = NULL;
12275 arch->sym_table = NULL;
12276 arch->sym_size = 0;
12277 arch->longnames = NULL;
12278 arch->longnames_size = 0;
12279 arch->nested_member_origin = 0;
12280 arch->is_thin_archive = is_thin_archive;
12281 arch->next_arhdr_offset = SARMAG;
12282
12283 /* Read the first archive member header. */
12284 if (fseek (file, SARMAG, SEEK_SET) != 0)
12285 {
12286 error (_("%s: failed to seek to first archive header\n"), file_name);
12287 return 1;
12288 }
12289 got = fread (&arch->arhdr, 1, sizeof arch->arhdr, file);
12290 if (got != sizeof arch->arhdr)
fb52b2f4
NC
12291 {
12292 if (got == 0)
12293 return 0;
12294
12295 error (_("%s: failed to read archive header\n"), file_name);
12296 return 1;
12297 }
12298
4145f1d5 12299 /* See if this is the archive symbol table. */
2cf0635d
NC
12300 if (const_strneq (arch->arhdr.ar_name, "/ ")
12301 || const_strneq (arch->arhdr.ar_name, "/SYM64/ "))
fb52b2f4 12302 {
2cf0635d 12303 size = strtoul (arch->arhdr.ar_size, NULL, 10);
4145f1d5
NC
12304 size = size + (size & 1);
12305
2cf0635d
NC
12306 arch->next_arhdr_offset += sizeof arch->arhdr + size;
12307
12308 if (read_symbols)
fb52b2f4 12309 {
4145f1d5
NC
12310 unsigned long i;
12311 /* A buffer used to hold numbers read in from an archive index.
12312 These are always 4 bytes long and stored in big-endian format. */
12313#define SIZEOF_AR_INDEX_NUMBERS 4
12314 unsigned char integer_buffer[SIZEOF_AR_INDEX_NUMBERS];
12315 unsigned char * index_buffer;
12316
12317 /* Check the size of the archive index. */
12318 if (size < SIZEOF_AR_INDEX_NUMBERS)
12319 {
12320 error (_("%s: the archive index is empty\n"), file_name);
12321 return 1;
12322 }
12323
12324 /* Read the numer of entries in the archive index. */
12325 got = fread (integer_buffer, 1, sizeof integer_buffer, file);
12326 if (got != sizeof (integer_buffer))
12327 {
12328 error (_("%s: failed to read archive index\n"), file_name);
12329 return 1;
12330 }
2cf0635d 12331 arch->index_num = byte_get_big_endian (integer_buffer, sizeof integer_buffer);
4145f1d5
NC
12332 size -= SIZEOF_AR_INDEX_NUMBERS;
12333
12334 /* Read in the archive index. */
2cf0635d 12335 if (size < arch->index_num * SIZEOF_AR_INDEX_NUMBERS)
4145f1d5
NC
12336 {
12337 error (_("%s: the archive index is supposed to have %ld entries, but the size in the header is too small\n"),
2cf0635d 12338 file_name, arch->index_num);
4145f1d5
NC
12339 return 1;
12340 }
3f5e193b
NC
12341 index_buffer = (unsigned char *)
12342 malloc (arch->index_num * SIZEOF_AR_INDEX_NUMBERS);
4145f1d5
NC
12343 if (index_buffer == NULL)
12344 {
12345 error (_("Out of memory whilst trying to read archive symbol index\n"));
12346 return 1;
12347 }
2cf0635d
NC
12348 got = fread (index_buffer, SIZEOF_AR_INDEX_NUMBERS, arch->index_num, file);
12349 if (got != arch->index_num)
4145f1d5
NC
12350 {
12351 free (index_buffer);
12352 error (_("%s: failed to read archive index\n"), file_name);
2cf0635d 12353 return 1;
4145f1d5 12354 }
2cf0635d 12355 size -= arch->index_num * SIZEOF_AR_INDEX_NUMBERS;
4145f1d5
NC
12356
12357 /* Convert the index numbers into the host's numeric format. */
3f5e193b
NC
12358 arch->index_array = (long unsigned int *)
12359 malloc (arch->index_num * sizeof (* arch->index_array));
2cf0635d 12360 if (arch->index_array == NULL)
4145f1d5
NC
12361 {
12362 free (index_buffer);
12363 error (_("Out of memory whilst trying to convert the archive symbol index\n"));
12364 return 1;
12365 }
12366
2cf0635d
NC
12367 for (i = 0; i < arch->index_num; i++)
12368 arch->index_array[i] = byte_get_big_endian ((unsigned char *) (index_buffer + (i * SIZEOF_AR_INDEX_NUMBERS)),
12369 SIZEOF_AR_INDEX_NUMBERS);
4145f1d5
NC
12370 free (index_buffer);
12371
12372 /* The remaining space in the header is taken up by the symbol table. */
12373 if (size < 1)
12374 {
12375 error (_("%s: the archive has an index but no symbols\n"), file_name);
2cf0635d 12376 return 1;
4145f1d5 12377 }
3f5e193b 12378 arch->sym_table = (char *) malloc (size);
2cf0635d
NC
12379 arch->sym_size = size;
12380 if (arch->sym_table == NULL)
4145f1d5
NC
12381 {
12382 error (_("Out of memory whilst trying to read archive index symbol table\n"));
2cf0635d 12383 return 1;
4145f1d5 12384 }
2cf0635d 12385 got = fread (arch->sym_table, 1, size, file);
4145f1d5
NC
12386 if (got != size)
12387 {
12388 error (_("%s: failed to read archive index symbol table\n"), file_name);
2cf0635d 12389 return 1;
cb8f3167 12390 }
4145f1d5
NC
12391 }
12392 else
12393 {
12394 if (fseek (file, size, SEEK_CUR) != 0)
12395 {
12396 error (_("%s: failed to skip archive symbol table\n"), file_name);
12397 return 1;
12398 }
fb52b2f4
NC
12399 }
12400
2cf0635d
NC
12401 /* Read the next archive header. */
12402 got = fread (&arch->arhdr, 1, sizeof arch->arhdr, file);
12403 if (got != sizeof arch->arhdr)
fb52b2f4
NC
12404 {
12405 if (got == 0)
2cf0635d 12406 return 0;
4145f1d5 12407 error (_("%s: failed to read archive header following archive index\n"), file_name);
2cf0635d 12408 return 1;
fb52b2f4
NC
12409 }
12410 }
2cf0635d 12411 else if (read_symbols)
4145f1d5 12412 printf (_("%s has no archive index\n"), file_name);
fb52b2f4 12413
2cf0635d 12414 if (const_strneq (arch->arhdr.ar_name, "// "))
fb52b2f4 12415 {
2cf0635d
NC
12416 /* This is the archive string table holding long member names. */
12417 arch->longnames_size = strtoul (arch->arhdr.ar_size, NULL, 10);
12418 arch->next_arhdr_offset += sizeof arch->arhdr + arch->longnames_size;
fb52b2f4 12419
3f5e193b 12420 arch->longnames = (char *) malloc (arch->longnames_size);
2cf0635d 12421 if (arch->longnames == NULL)
fb52b2f4 12422 {
4145f1d5 12423 error (_("Out of memory reading long symbol names in archive\n"));
2cf0635d 12424 return 1;
fb52b2f4
NC
12425 }
12426
2cf0635d 12427 if (fread (arch->longnames, arch->longnames_size, 1, file) != 1)
fb52b2f4 12428 {
2cf0635d
NC
12429 free (arch->longnames);
12430 arch->longnames = NULL;
4145f1d5 12431 error (_("%s: failed to read long symbol name string table\n"), file_name);
2cf0635d 12432 return 1;
fb52b2f4
NC
12433 }
12434
2cf0635d 12435 if ((arch->longnames_size & 1) != 0)
fb52b2f4 12436 getc (file);
2cf0635d 12437 }
fb52b2f4 12438
2cf0635d
NC
12439 return 0;
12440}
12441
12442/* Release the memory used for the archive information. */
12443
12444static void
12445release_archive (struct archive_info * arch)
12446{
12447 if (arch->file_name != NULL)
12448 free (arch->file_name);
12449 if (arch->index_array != NULL)
12450 free (arch->index_array);
12451 if (arch->sym_table != NULL)
12452 free (arch->sym_table);
12453 if (arch->longnames != NULL)
12454 free (arch->longnames);
12455}
12456
12457/* Open and setup a nested archive, if not already open. */
12458
12459static int
12460setup_nested_archive (struct archive_info * nested_arch, char * member_file_name)
12461{
12462 FILE * member_file;
12463
12464 /* Have we already setup this archive? */
12465 if (nested_arch->file_name != NULL
12466 && streq (nested_arch->file_name, member_file_name))
12467 return 0;
12468
12469 /* Close previous file and discard cached information. */
12470 if (nested_arch->file != NULL)
12471 fclose (nested_arch->file);
12472 release_archive (nested_arch);
12473
12474 member_file = fopen (member_file_name, "rb");
12475 if (member_file == NULL)
12476 return 1;
12477 return setup_archive (nested_arch, member_file_name, member_file, FALSE, FALSE);
12478}
12479
12480static char *
12481get_archive_member_name_at (struct archive_info * arch,
12482 unsigned long offset,
12483 struct archive_info * nested_arch);
12484
12485/* Get the name of an archive member from the current archive header.
12486 For simple names, this will modify the ar_name field of the current
12487 archive header. For long names, it will return a pointer to the
12488 longnames table. For nested archives, it will open the nested archive
12489 and get the name recursively. NESTED_ARCH is a single-entry cache so
12490 we don't keep rereading the same information from a nested archive. */
12491
12492static char *
12493get_archive_member_name (struct archive_info * arch,
12494 struct archive_info * nested_arch)
12495{
12496 unsigned long j, k;
12497
12498 if (arch->arhdr.ar_name[0] == '/')
12499 {
12500 /* We have a long name. */
12501 char * endp;
12502 char * member_file_name;
12503 char * member_name;
12504
12505 arch->nested_member_origin = 0;
12506 k = j = strtoul (arch->arhdr.ar_name + 1, &endp, 10);
12507 if (arch->is_thin_archive && endp != NULL && * endp == ':')
12508 arch->nested_member_origin = strtoul (endp + 1, NULL, 10);
12509
12510 while ((j < arch->longnames_size)
12511 && (arch->longnames[j] != '\n')
12512 && (arch->longnames[j] != '\0'))
12513 j++;
12514 if (arch->longnames[j-1] == '/')
12515 j--;
12516 arch->longnames[j] = '\0';
12517
12518 if (!arch->is_thin_archive || arch->nested_member_origin == 0)
12519 return arch->longnames + k;
12520
12521 /* This is a proxy for a member of a nested archive.
12522 Find the name of the member in that archive. */
12523 member_file_name = adjust_relative_path (arch->file_name, arch->longnames + k, j - k);
12524 if (member_file_name != NULL
12525 && setup_nested_archive (nested_arch, member_file_name) == 0
12526 && (member_name = get_archive_member_name_at (nested_arch, arch->nested_member_origin, NULL)) != NULL)
12527 {
12528 free (member_file_name);
12529 return member_name;
12530 }
12531 free (member_file_name);
12532
12533 /* Last resort: just return the name of the nested archive. */
12534 return arch->longnames + k;
12535 }
12536
12537 /* We have a normal (short) name. */
12538 j = 0;
12539 while ((arch->arhdr.ar_name[j] != '/') && (j < 16))
12540 j++;
12541 arch->arhdr.ar_name[j] = '\0';
12542 return arch->arhdr.ar_name;
12543}
12544
12545/* Get the name of an archive member at a given OFFSET within an archive ARCH. */
12546
12547static char *
12548get_archive_member_name_at (struct archive_info * arch,
12549 unsigned long offset,
12550 struct archive_info * nested_arch)
12551{
12552 size_t got;
12553
12554 if (fseek (arch->file, offset, SEEK_SET) != 0)
12555 {
12556 error (_("%s: failed to seek to next file name\n"), arch->file_name);
12557 return NULL;
12558 }
12559 got = fread (&arch->arhdr, 1, sizeof arch->arhdr, arch->file);
12560 if (got != sizeof arch->arhdr)
12561 {
12562 error (_("%s: failed to read archive header\n"), arch->file_name);
12563 return NULL;
12564 }
12565 if (memcmp (arch->arhdr.ar_fmag, ARFMAG, 2) != 0)
12566 {
12567 error (_("%s: did not find a valid archive header\n"), arch->file_name);
12568 return NULL;
12569 }
12570
12571 return get_archive_member_name (arch, nested_arch);
12572}
12573
12574/* Construct a string showing the name of the archive member, qualified
12575 with the name of the containing archive file. For thin archives, we
12576 use square brackets to denote the indirection. For nested archives,
12577 we show the qualified name of the external member inside the square
12578 brackets (e.g., "thin.a[normal.a(foo.o)]"). */
12579
12580static char *
12581make_qualified_name (struct archive_info * arch,
12582 struct archive_info * nested_arch,
12583 char * member_name)
12584{
12585 size_t len;
12586 char * name;
12587
12588 len = strlen (arch->file_name) + strlen (member_name) + 3;
12589 if (arch->is_thin_archive && arch->nested_member_origin != 0)
12590 len += strlen (nested_arch->file_name) + 2;
12591
3f5e193b 12592 name = (char *) malloc (len);
2cf0635d
NC
12593 if (name == NULL)
12594 {
12595 error (_("Out of memory\n"));
12596 return NULL;
12597 }
12598
12599 if (arch->is_thin_archive && arch->nested_member_origin != 0)
12600 snprintf (name, len, "%s[%s(%s)]", arch->file_name, nested_arch->file_name, member_name);
12601 else if (arch->is_thin_archive)
12602 snprintf (name, len, "%s[%s]", arch->file_name, member_name);
12603 else
12604 snprintf (name, len, "%s(%s)", arch->file_name, member_name);
12605
12606 return name;
12607}
12608
12609/* Process an ELF archive.
12610 On entry the file is positioned just after the ARMAG string. */
12611
12612static int
12613process_archive (char * file_name, FILE * file, bfd_boolean is_thin_archive)
12614{
12615 struct archive_info arch;
12616 struct archive_info nested_arch;
12617 size_t got;
2cf0635d
NC
12618 int ret;
12619
12620 show_name = 1;
12621
12622 /* The ARCH structure is used to hold information about this archive. */
12623 arch.file_name = NULL;
12624 arch.file = NULL;
12625 arch.index_array = NULL;
12626 arch.sym_table = NULL;
12627 arch.longnames = NULL;
12628
12629 /* The NESTED_ARCH structure is used as a single-item cache of information
12630 about a nested archive (when members of a thin archive reside within
12631 another regular archive file). */
12632 nested_arch.file_name = NULL;
12633 nested_arch.file = NULL;
12634 nested_arch.index_array = NULL;
12635 nested_arch.sym_table = NULL;
12636 nested_arch.longnames = NULL;
12637
12638 if (setup_archive (&arch, file_name, file, is_thin_archive, do_archive_index) != 0)
12639 {
12640 ret = 1;
12641 goto out;
4145f1d5 12642 }
fb52b2f4 12643
4145f1d5
NC
12644 if (do_archive_index)
12645 {
2cf0635d 12646 if (arch.sym_table == NULL)
4145f1d5
NC
12647 error (_("%s: unable to dump the index as none was found\n"), file_name);
12648 else
12649 {
2cf0635d 12650 unsigned int i, l;
4145f1d5
NC
12651 unsigned long current_pos;
12652
12653 printf (_("Index of archive %s: (%ld entries, 0x%lx bytes in the symbol table)\n"),
2cf0635d 12654 file_name, arch.index_num, arch.sym_size);
4145f1d5
NC
12655 current_pos = ftell (file);
12656
2cf0635d 12657 for (i = l = 0; i < arch.index_num; i++)
4145f1d5 12658 {
2cf0635d
NC
12659 if ((i == 0) || ((i > 0) && (arch.index_array[i] != arch.index_array[i - 1])))
12660 {
12661 char * member_name;
4145f1d5 12662
2cf0635d
NC
12663 member_name = get_archive_member_name_at (&arch, arch.index_array[i], &nested_arch);
12664
12665 if (member_name != NULL)
12666 {
12667 char * qualified_name = make_qualified_name (&arch, &nested_arch, member_name);
12668
12669 if (qualified_name != NULL)
12670 {
12671 printf (_("Binary %s contains:\n"), qualified_name);
12672 free (qualified_name);
12673 }
4145f1d5
NC
12674 }
12675 }
2cf0635d
NC
12676
12677 if (l >= arch.sym_size)
4145f1d5
NC
12678 {
12679 error (_("%s: end of the symbol table reached before the end of the index\n"),
12680 file_name);
cb8f3167 12681 break;
4145f1d5 12682 }
2cf0635d
NC
12683 printf ("\t%s\n", arch.sym_table + l);
12684 l += strlen (arch.sym_table + l) + 1;
4145f1d5
NC
12685 }
12686
2cf0635d
NC
12687 if (l & 01)
12688 ++l;
12689 if (l < arch.sym_size)
4145f1d5
NC
12690 error (_("%s: symbols remain in the index symbol table, but without corresponding entries in the index table\n"),
12691 file_name);
12692
4145f1d5
NC
12693 if (fseek (file, current_pos, SEEK_SET) != 0)
12694 {
12695 error (_("%s: failed to seek back to start of object files in the archive\n"), file_name);
2cf0635d
NC
12696 ret = 1;
12697 goto out;
4145f1d5 12698 }
fb52b2f4 12699 }
4145f1d5
NC
12700
12701 if (!do_dynamic && !do_syms && !do_reloc && !do_unwind && !do_sections
12702 && !do_segments && !do_header && !do_dump && !do_version
12703 && !do_histogram && !do_debugging && !do_arch && !do_notes
2c610e4b 12704 && !do_section_groups && !do_dyn_syms)
2cf0635d
NC
12705 {
12706 ret = 0; /* Archive index only. */
12707 goto out;
12708 }
fb52b2f4
NC
12709 }
12710
d989285c 12711 ret = 0;
fb52b2f4
NC
12712
12713 while (1)
12714 {
2cf0635d
NC
12715 char * name;
12716 size_t namelen;
12717 char * qualified_name;
12718
12719 /* Read the next archive header. */
12720 if (fseek (file, arch.next_arhdr_offset, SEEK_SET) != 0)
12721 {
12722 error (_("%s: failed to seek to next archive header\n"), file_name);
12723 return 1;
12724 }
12725 got = fread (&arch.arhdr, 1, sizeof arch.arhdr, file);
12726 if (got != sizeof arch.arhdr)
12727 {
12728 if (got == 0)
12729 break;
12730 error (_("%s: failed to read archive header\n"), file_name);
12731 ret = 1;
12732 break;
12733 }
12734 if (memcmp (arch.arhdr.ar_fmag, ARFMAG, 2) != 0)
12735 {
12736 error (_("%s: did not find a valid archive header\n"), arch.file_name);
12737 ret = 1;
12738 break;
12739 }
12740
12741 arch.next_arhdr_offset += sizeof arch.arhdr;
12742
12743 archive_file_size = strtoul (arch.arhdr.ar_size, NULL, 10);
12744 if (archive_file_size & 01)
12745 ++archive_file_size;
12746
12747 name = get_archive_member_name (&arch, &nested_arch);
12748 if (name == NULL)
fb52b2f4 12749 {
0fd3a477 12750 error (_("%s: bad archive file name\n"), file_name);
d989285c
ILT
12751 ret = 1;
12752 break;
fb52b2f4 12753 }
2cf0635d 12754 namelen = strlen (name);
fb52b2f4 12755
2cf0635d
NC
12756 qualified_name = make_qualified_name (&arch, &nested_arch, name);
12757 if (qualified_name == NULL)
fb52b2f4 12758 {
2cf0635d 12759 error (_("%s: bad archive file name\n"), file_name);
d989285c
ILT
12760 ret = 1;
12761 break;
fb52b2f4
NC
12762 }
12763
2cf0635d
NC
12764 if (is_thin_archive && arch.nested_member_origin == 0)
12765 {
12766 /* This is a proxy for an external member of a thin archive. */
12767 FILE * member_file;
12768 char * member_file_name = adjust_relative_path (file_name, name, namelen);
12769 if (member_file_name == NULL)
12770 {
12771 ret = 1;
12772 break;
12773 }
12774
12775 member_file = fopen (member_file_name, "rb");
12776 if (member_file == NULL)
12777 {
12778 error (_("Input file '%s' is not readable.\n"), member_file_name);
12779 free (member_file_name);
12780 ret = 1;
12781 break;
12782 }
12783
12784 archive_file_offset = arch.nested_member_origin;
12785
12786 ret |= process_object (qualified_name, member_file);
12787
12788 fclose (member_file);
12789 free (member_file_name);
12790 }
12791 else if (is_thin_archive)
12792 {
12793 /* This is a proxy for a member of a nested archive. */
12794 archive_file_offset = arch.nested_member_origin + sizeof arch.arhdr;
12795
12796 /* The nested archive file will have been opened and setup by
12797 get_archive_member_name. */
12798 if (fseek (nested_arch.file, archive_file_offset, SEEK_SET) != 0)
12799 {
12800 error (_("%s: failed to seek to archive member.\n"), nested_arch.file_name);
12801 ret = 1;
12802 break;
12803 }
12804
12805 ret |= process_object (qualified_name, nested_arch.file);
12806 }
12807 else
12808 {
12809 archive_file_offset = arch.next_arhdr_offset;
12810 arch.next_arhdr_offset += archive_file_size;
fb52b2f4 12811
2cf0635d
NC
12812 ret |= process_object (qualified_name, file);
12813 }
fb52b2f4 12814
2cf0635d 12815 free (qualified_name);
fb52b2f4
NC
12816 }
12817
4145f1d5 12818 out:
2cf0635d
NC
12819 if (nested_arch.file != NULL)
12820 fclose (nested_arch.file);
12821 release_archive (&nested_arch);
12822 release_archive (&arch);
fb52b2f4 12823
d989285c 12824 return ret;
fb52b2f4
NC
12825}
12826
12827static int
2cf0635d 12828process_file (char * file_name)
fb52b2f4 12829{
2cf0635d 12830 FILE * file;
fb52b2f4
NC
12831 struct stat statbuf;
12832 char armag[SARMAG];
12833 int ret;
12834
12835 if (stat (file_name, &statbuf) < 0)
12836 {
f24ddbdd
NC
12837 if (errno == ENOENT)
12838 error (_("'%s': No such file\n"), file_name);
12839 else
12840 error (_("Could not locate '%s'. System error message: %s\n"),
12841 file_name, strerror (errno));
12842 return 1;
12843 }
12844
12845 if (! S_ISREG (statbuf.st_mode))
12846 {
12847 error (_("'%s' is not an ordinary file\n"), file_name);
fb52b2f4
NC
12848 return 1;
12849 }
12850
12851 file = fopen (file_name, "rb");
12852 if (file == NULL)
12853 {
f24ddbdd 12854 error (_("Input file '%s' is not readable.\n"), file_name);
fb52b2f4
NC
12855 return 1;
12856 }
12857
12858 if (fread (armag, SARMAG, 1, file) != 1)
12859 {
4145f1d5 12860 error (_("%s: Failed to read file's magic number\n"), file_name);
fb52b2f4
NC
12861 fclose (file);
12862 return 1;
12863 }
12864
12865 if (memcmp (armag, ARMAG, SARMAG) == 0)
2cf0635d
NC
12866 ret = process_archive (file_name, file, FALSE);
12867 else if (memcmp (armag, ARMAGT, SARMAG) == 0)
12868 ret = process_archive (file_name, file, TRUE);
fb52b2f4
NC
12869 else
12870 {
4145f1d5
NC
12871 if (do_archive_index)
12872 error (_("File %s is not an archive so its index cannot be displayed.\n"),
12873 file_name);
12874
fb52b2f4
NC
12875 rewind (file);
12876 archive_file_size = archive_file_offset = 0;
12877 ret = process_object (file_name, file);
12878 }
12879
12880 fclose (file);
12881
12882 return ret;
12883}
12884
252b5132
RH
12885#ifdef SUPPORT_DISASSEMBLY
12886/* Needed by the i386 disassembler. For extra credit, someone could
9ea033b2 12887 fix this so that we insert symbolic addresses here, esp for GOT/PLT
e3c8793a 12888 symbols. */
252b5132
RH
12889
12890void
2cf0635d 12891print_address (unsigned int addr, FILE * outfile)
252b5132
RH
12892{
12893 fprintf (outfile,"0x%8.8x", addr);
12894}
12895
e3c8793a 12896/* Needed by the i386 disassembler. */
252b5132
RH
12897void
12898db_task_printsym (unsigned int addr)
12899{
12900 print_address (addr, stderr);
12901}
12902#endif
12903
12904int
2cf0635d 12905main (int argc, char ** argv)
252b5132 12906{
ff78d6d6
L
12907 int err;
12908
252b5132
RH
12909#if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
12910 setlocale (LC_MESSAGES, "");
3882b010
L
12911#endif
12912#if defined (HAVE_SETLOCALE)
12913 setlocale (LC_CTYPE, "");
252b5132
RH
12914#endif
12915 bindtextdomain (PACKAGE, LOCALEDIR);
12916 textdomain (PACKAGE);
12917
869b9d07
MM
12918 expandargv (&argc, &argv);
12919
252b5132
RH
12920 parse_args (argc, argv);
12921
18bd398b 12922 if (num_dump_sects > 0)
59f14fc0 12923 {
18bd398b 12924 /* Make a copy of the dump_sects array. */
3f5e193b
NC
12925 cmdline_dump_sects = (dump_type *)
12926 malloc (num_dump_sects * sizeof (* dump_sects));
59f14fc0 12927 if (cmdline_dump_sects == NULL)
591a748a 12928 error (_("Out of memory allocating dump request table.\n"));
59f14fc0
AS
12929 else
12930 {
09c11c86
NC
12931 memcpy (cmdline_dump_sects, dump_sects,
12932 num_dump_sects * sizeof (* dump_sects));
59f14fc0
AS
12933 num_cmdline_dump_sects = num_dump_sects;
12934 }
12935 }
12936
18bd398b
NC
12937 if (optind < (argc - 1))
12938 show_name = 1;
12939
ff78d6d6 12940 err = 0;
252b5132 12941 while (optind < argc)
18bd398b 12942 err |= process_file (argv[optind++]);
252b5132
RH
12943
12944 if (dump_sects != NULL)
12945 free (dump_sects);
59f14fc0
AS
12946 if (cmdline_dump_sects != NULL)
12947 free (cmdline_dump_sects);
252b5132 12948
ff78d6d6 12949 return err;
252b5132 12950}