1 /* readelf.c -- display contents of an ELF format file
2 Copyright 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
4 Originally developed by Eric Youngdale <eric@andante.jic.com>
5 Modifications by Nick Clifton <nickc@redhat.com>
7 This file is part of GNU Binutils.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
24 /* The difference between readelf and objdump:
26 Both programs are capabale of displaying the contents of ELF format files,
27 so why does the binutils project have two file dumpers ?
29 The reason is that objdump sees an ELF file through a BFD filter of the
30 world; if BFD has a bug where, say, it disagrees about a machine constant
31 in e_flags, then the odds are good that it will remain internally
32 consistent. The linker sees it the BFD way, objdump sees it the BFD way,
33 GAS sees it the BFD way. There was need for a tool to go find out what
34 the file actually says.
36 This is why the readelf program does not link against the BFD library - it
37 exists as an independent program to help verify the correct working of BFD.
39 There is also the case that readelf can provide more information about an
40 ELF file than is provided by objdump. In particular it can display DWARF
41 debugging information which (at the moment) objdump cannot. */
44 #include <sys/types.h>
50 /* Define BFD64 here, even if our default architecture is 32 bit ELF
51 as this will allow us to read in and parse 64bit and 32bit ELF files.
52 Only do this if we believe that the compiler can support a 64 bit
53 data type. For now we only rely on GCC being able to do this. */
59 #include "elf/common.h"
60 #include "elf/external.h"
61 #include "elf/internal.h"
62 #include "elf/dwarf2.h"
64 /* The following headers use the elf/reloc-macros.h file to
65 automatically generate relocation recognition functions
66 such as elf_mips_reloc_type() */
68 #define RELOC_MACROS_GEN_FUNC
70 #include "elf/alpha.h"
90 #include "elf/m68hc11.h"
91 #include "elf/mcore.h"
94 #include "elf/mn10200.h"
95 #include "elf/mn10300.h"
96 #include "elf/msp430.h"
100 #include "elf/ppc64.h"
101 #include "elf/s390.h"
103 #include "elf/sparc.h"
104 #include "elf/v850.h"
106 #include "elf/x86-64.h"
107 #include "elf/xstormy16.h"
108 #include "elf/iq2000.h"
109 #include "elf/xtensa.h"
115 #include "libiberty.h"
117 char *program_name
= "readelf";
118 long archive_file_offset
;
119 unsigned long archive_file_size
;
120 unsigned long dynamic_addr
;
121 bfd_size_type dynamic_size
;
122 char *dynamic_strings
;
124 unsigned long string_table_length
;
125 unsigned long num_dynamic_syms
;
126 Elf_Internal_Sym
*dynamic_symbols
;
127 Elf_Internal_Syminfo
*dynamic_syminfo
;
128 unsigned long dynamic_syminfo_offset
;
129 unsigned int dynamic_syminfo_nent
;
130 char program_interpreter
[64];
131 bfd_vma dynamic_info
[DT_JMPREL
+ 1];
132 bfd_vma version_info
[16];
133 Elf_Internal_Ehdr elf_header
;
134 Elf_Internal_Shdr
*section_headers
;
135 Elf_Internal_Phdr
*program_headers
;
136 Elf_Internal_Dyn
*dynamic_segment
;
137 Elf_Internal_Shdr
*symtab_shndx_hdr
;
145 int do_using_dynamic
;
153 int do_debug_abbrevs
;
155 int do_debug_pubnames
;
156 int do_debug_aranges
;
158 int do_debug_frames_interp
;
159 int do_debug_macinfo
;
166 /* A dynamic array of flags indicating which sections require dumping. */
167 char *dump_sects
= NULL
;
168 unsigned int num_dump_sects
= 0;
170 #define HEX_DUMP (1 << 0)
171 #define DISASS_DUMP (1 << 1)
172 #define DEBUG_DUMP (1 << 2)
174 /* How to rpint a vma value. */
175 typedef enum print_mode
187 static bfd_vma (*byte_get
) (unsigned char *, int);
188 static void (*byte_put
) (unsigned char *, bfd_vma
, int);
190 typedef int Elf32_Word
;
194 #define SECTION_NAME(X) ((X) == NULL ? "<none>" : \
195 ((X)->sh_name >= string_table_length \
196 ? "<corrupt>" : string_table + (X)->sh_name))
198 /* Given st_shndx I, map to section_headers index. */
199 #define SECTION_HEADER_INDEX(I) \
200 ((I) < SHN_LORESERVE \
202 : ((I) <= SHN_HIRESERVE \
204 : (I) - (SHN_HIRESERVE + 1 - SHN_LORESERVE)))
206 /* Reverse of the above. */
207 #define SECTION_HEADER_NUM(N) \
208 ((N) < SHN_LORESERVE \
210 : (N) + (SHN_HIRESERVE + 1 - SHN_LORESERVE))
212 #define SECTION_HEADER(I) (section_headers + SECTION_HEADER_INDEX (I))
214 #define DT_VERSIONTAGIDX(tag) (DT_VERNEEDNUM - (tag)) /* Reverse order! */
216 #define BYTE_GET(field) byte_get (field, sizeof (field))
218 /* If we can support a 64 bit data type then BFD64 should be defined
219 and sizeof (bfd_vma) == 8. In this case when translating from an
220 external 8 byte field to an internal field, we can assume that the
221 internal field is also 8 bytes wide and so we can extract all the data.
222 If, however, BFD64 is not defined, then we must assume that the
223 internal data structure only has 4 byte wide fields that are the
224 equivalent of the 8 byte wide external counterparts, and so we must
225 truncate the data. */
227 #define BYTE_GET8(field) byte_get (field, -8)
229 #define BYTE_GET8(field) byte_get (field, 8)
232 #define NUM_ELEM(array) (sizeof (array) / sizeof ((array)[0]))
234 #define GET_ELF_SYMBOLS(file, section) \
235 (is_32bit_elf ? get_32bit_elf_symbols (file, section) \
236 : get_64bit_elf_symbols (file, section))
240 error (const char *message
, ...)
244 va_start (args
, message
);
245 fprintf (stderr
, _("%s: Error: "), program_name
);
246 vfprintf (stderr
, message
, args
);
251 warn (const char *message
, ...)
255 va_start (args
, message
);
256 fprintf (stderr
, _("%s: Warning: "), program_name
);
257 vfprintf (stderr
, message
, args
);
262 get_data (void *var
, FILE *file
, long offset
, size_t size
, const char *reason
)
269 if (fseek (file
, archive_file_offset
+ offset
, SEEK_SET
))
271 error (_("Unable to seek to 0x%x for %s\n"),
272 archive_file_offset
+ offset
, reason
);
279 mvar
= malloc (size
);
283 error (_("Out of memory allocating 0x%x bytes for %s\n"),
289 if (fread (mvar
, size
, 1, file
) != 1)
291 error (_("Unable to read in 0x%x bytes of %s\n"), size
, reason
);
301 byte_get_little_endian (unsigned char *field
, int size
)
309 return ((unsigned int) (field
[0]))
310 | (((unsigned int) (field
[1])) << 8);
314 /* We want to extract data from an 8 byte wide field and
315 place it into a 4 byte wide field. Since this is a little
316 endian source we can just use the 4 byte extraction code. */
320 return ((unsigned long) (field
[0]))
321 | (((unsigned long) (field
[1])) << 8)
322 | (((unsigned long) (field
[2])) << 16)
323 | (((unsigned long) (field
[3])) << 24);
328 /* This is a special case, generated by the BYTE_GET8 macro.
329 It means that we are loading an 8 byte value from a field
330 in an external structure into an 8 byte value in a field
331 in an internal structure. */
332 return ((bfd_vma
) (field
[0]))
333 | (((bfd_vma
) (field
[1])) << 8)
334 | (((bfd_vma
) (field
[2])) << 16)
335 | (((bfd_vma
) (field
[3])) << 24)
336 | (((bfd_vma
) (field
[4])) << 32)
337 | (((bfd_vma
) (field
[5])) << 40)
338 | (((bfd_vma
) (field
[6])) << 48)
339 | (((bfd_vma
) (field
[7])) << 56);
342 error (_("Unhandled data length: %d\n"), size
);
348 byte_get_signed (unsigned char *field
, int size
)
350 bfd_vma x
= byte_get (field
, size
);
355 return (x
^ 0x80) - 0x80;
357 return (x
^ 0x8000) - 0x8000;
359 return (x
^ 0x80000000) - 0x80000000;
369 byte_put_little_endian (unsigned char *field
, bfd_vma value
, int size
)
374 field
[7] = (((value
>> 24) >> 24) >> 8) & 0xff;
375 field
[6] = ((value
>> 24) >> 24) & 0xff;
376 field
[5] = ((value
>> 24) >> 16) & 0xff;
377 field
[4] = ((value
>> 24) >> 8) & 0xff;
380 field
[3] = (value
>> 24) & 0xff;
381 field
[2] = (value
>> 16) & 0xff;
384 field
[1] = (value
>> 8) & 0xff;
387 field
[0] = value
& 0xff;
391 error (_("Unhandled data length: %d\n"), size
);
396 /* Print a VMA value. */
398 print_vma (bfd_vma vma
, print_mode mode
)
410 printf ("%8.8lx", (unsigned long) vma
);
416 printf ("%5ld", (long) vma
);
424 printf ("%lx", (unsigned long) vma
);
428 printf ("%ld", (unsigned long) vma
);
432 printf ("%lu", (unsigned long) vma
);
454 #if BFD_HOST_64BIT_LONG
457 if (_bfd_int64_high (vma
))
458 printf ("%lx%8.8lx", _bfd_int64_high (vma
), _bfd_int64_low (vma
));
460 printf ("%lx", _bfd_int64_low (vma
));
465 #if BFD_HOST_64BIT_LONG
468 if (_bfd_int64_high (vma
))
470 printf ("++%ld", _bfd_int64_low (vma
));
472 printf ("%ld", _bfd_int64_low (vma
));
477 #if BFD_HOST_64BIT_LONG
479 printf ("%5ld", vma
);
481 printf ("%#lx", vma
);
483 if (_bfd_int64_high (vma
))
485 printf ("++%ld", _bfd_int64_low (vma
));
486 else if (vma
<= 99999)
487 printf ("%5ld", _bfd_int64_low (vma
));
489 printf ("%#lx", _bfd_int64_low (vma
));
494 #if BFD_HOST_64BIT_LONG
497 if (_bfd_int64_high (vma
))
499 printf ("++%lu", _bfd_int64_low (vma
));
501 printf ("%lu", _bfd_int64_low (vma
));
509 /* Display a symbol on stdout. If do_wide is not true then
510 format the symbol to be at most WIDTH characters,
511 truncating as necessary. If WIDTH is negative then
512 format the string to be exactly - WIDTH characters,
513 truncating or padding as necessary. */
516 print_symbol (int width
, const char *symbol
)
519 printf ("%s", symbol
);
521 printf ("%-*.*s", width
, width
, symbol
);
523 printf ("%-.*s", width
, symbol
);
527 byte_get_big_endian (unsigned char *field
, int size
)
535 return ((unsigned int) (field
[1])) | (((int) (field
[0])) << 8);
538 return ((unsigned long) (field
[3]))
539 | (((unsigned long) (field
[2])) << 8)
540 | (((unsigned long) (field
[1])) << 16)
541 | (((unsigned long) (field
[0])) << 24);
545 /* Although we are extracing data from an 8 byte wide field, we
546 are returning only 4 bytes of data. */
547 return ((unsigned long) (field
[7]))
548 | (((unsigned long) (field
[6])) << 8)
549 | (((unsigned long) (field
[5])) << 16)
550 | (((unsigned long) (field
[4])) << 24);
554 /* This is a special case, generated by the BYTE_GET8 macro.
555 It means that we are loading an 8 byte value from a field
556 in an external structure into an 8 byte value in a field
557 in an internal structure. */
558 return ((bfd_vma
) (field
[7]))
559 | (((bfd_vma
) (field
[6])) << 8)
560 | (((bfd_vma
) (field
[5])) << 16)
561 | (((bfd_vma
) (field
[4])) << 24)
562 | (((bfd_vma
) (field
[3])) << 32)
563 | (((bfd_vma
) (field
[2])) << 40)
564 | (((bfd_vma
) (field
[1])) << 48)
565 | (((bfd_vma
) (field
[0])) << 56);
569 error (_("Unhandled data length: %d\n"), size
);
575 byte_put_big_endian (unsigned char *field
, bfd_vma value
, int size
)
580 field
[7] = value
& 0xff;
581 field
[6] = (value
>> 8) & 0xff;
582 field
[5] = (value
>> 16) & 0xff;
583 field
[4] = (value
>> 24) & 0xff;
588 field
[3] = value
& 0xff;
589 field
[2] = (value
>> 8) & 0xff;
593 field
[1] = value
& 0xff;
597 field
[0] = value
& 0xff;
601 error (_("Unhandled data length: %d\n"), size
);
606 /* Guess the relocation size commonly used by the specific machines. */
609 guess_is_rela (unsigned long e_machine
)
613 /* Targets that use REL relocations. */
629 /* Targets that use RELA relocations. */
644 case EM_CYGNUS_MN10200
:
646 case EM_CYGNUS_MN10300
:
691 warn (_("Don't know about relocations on this machine architecture\n"));
697 slurp_rela_relocs (FILE *file
,
698 unsigned long rel_offset
,
699 unsigned long rel_size
,
700 Elf_Internal_Rela
**relasp
,
701 unsigned long *nrelasp
)
703 Elf_Internal_Rela
*relas
;
704 unsigned long nrelas
;
709 Elf32_External_Rela
*erelas
;
711 erelas
= get_data (NULL
, file
, rel_offset
, rel_size
, _("relocs"));
715 nrelas
= rel_size
/ sizeof (Elf32_External_Rela
);
717 relas
= malloc (nrelas
* sizeof (Elf_Internal_Rela
));
721 error(_("out of memory parsing relocs"));
725 for (i
= 0; i
< nrelas
; i
++)
727 relas
[i
].r_offset
= BYTE_GET (erelas
[i
].r_offset
);
728 relas
[i
].r_info
= BYTE_GET (erelas
[i
].r_info
);
729 relas
[i
].r_addend
= BYTE_GET (erelas
[i
].r_addend
);
736 Elf64_External_Rela
*erelas
;
738 erelas
= get_data (NULL
, file
, rel_offset
, rel_size
, _("relocs"));
742 nrelas
= rel_size
/ sizeof (Elf64_External_Rela
);
744 relas
= malloc (nrelas
* sizeof (Elf_Internal_Rela
));
748 error(_("out of memory parsing relocs"));
752 for (i
= 0; i
< nrelas
; i
++)
754 relas
[i
].r_offset
= BYTE_GET8 (erelas
[i
].r_offset
);
755 relas
[i
].r_info
= BYTE_GET8 (erelas
[i
].r_info
);
756 relas
[i
].r_addend
= BYTE_GET8 (erelas
[i
].r_addend
);
767 slurp_rel_relocs (FILE *file
,
768 unsigned long rel_offset
,
769 unsigned long rel_size
,
770 Elf_Internal_Rela
**relsp
,
771 unsigned long *nrelsp
)
773 Elf_Internal_Rela
*rels
;
779 Elf32_External_Rel
*erels
;
781 erels
= get_data (NULL
, file
, rel_offset
, rel_size
, _("relocs"));
785 nrels
= rel_size
/ sizeof (Elf32_External_Rel
);
787 rels
= malloc (nrels
* sizeof (Elf_Internal_Rela
));
791 error(_("out of memory parsing relocs"));
795 for (i
= 0; i
< nrels
; i
++)
797 rels
[i
].r_offset
= BYTE_GET (erels
[i
].r_offset
);
798 rels
[i
].r_info
= BYTE_GET (erels
[i
].r_info
);
799 rels
[i
].r_addend
= 0;
806 Elf64_External_Rel
*erels
;
808 erels
= get_data (NULL
, file
, rel_offset
, rel_size
, _("relocs"));
812 nrels
= rel_size
/ sizeof (Elf64_External_Rel
);
814 rels
= malloc (nrels
* sizeof (Elf_Internal_Rela
));
818 error(_("out of memory parsing relocs"));
822 for (i
= 0; i
< nrels
; i
++)
824 rels
[i
].r_offset
= BYTE_GET8 (erels
[i
].r_offset
);
825 rels
[i
].r_info
= BYTE_GET8 (erels
[i
].r_info
);
826 rels
[i
].r_addend
= 0;
836 /* Display the contents of the relocation data found at the specified
840 dump_relocations (FILE *file
,
841 unsigned long rel_offset
,
842 unsigned long rel_size
,
843 Elf_Internal_Sym
*symtab
,
849 Elf_Internal_Rela
*rels
;
852 if (is_rela
== UNKNOWN
)
853 is_rela
= guess_is_rela (elf_header
.e_machine
);
857 if (!slurp_rela_relocs (file
, rel_offset
, rel_size
, &rels
, &rel_size
))
862 if (!slurp_rel_relocs (file
, rel_offset
, rel_size
, &rels
, &rel_size
))
871 printf (_(" Offset Info Type Sym. Value Symbol's Name + Addend\n"));
873 printf (_(" Offset Info Type Sym.Value Sym. Name + Addend\n"));
878 printf (_(" Offset Info Type Sym. Value Symbol's Name\n"));
880 printf (_(" Offset Info Type Sym.Value Sym. Name\n"));
888 printf (_(" Offset Info Type Symbol's Value Symbol's Name + Addend\n"));
890 printf (_(" Offset Info Type Sym. Value Sym. Name + Addend\n"));
895 printf (_(" Offset Info Type Symbol's Value Symbol's Name\n"));
897 printf (_(" Offset Info Type Sym. Value Sym. Name\n"));
901 for (i
= 0; i
< rel_size
; i
++)
904 const char *rtype2
= NULL
;
905 const char *rtype3
= NULL
;
908 bfd_vma symtab_index
;
913 offset
= rels
[i
].r_offset
;
914 info
= rels
[i
].r_info
;
918 type
= ELF32_R_TYPE (info
);
919 symtab_index
= ELF32_R_SYM (info
);
923 /* The #ifdef BFD64 below is to prevent a compile time warning.
924 We know that if we do not have a 64 bit data type that we
925 will never execute this code anyway. */
927 if (elf_header
.e_machine
== EM_MIPS
)
929 /* In little-endian objects, r_info isn't really a 64-bit
930 little-endian value: it has a 32-bit little-endian
931 symbol index followed by four individual byte fields.
932 Reorder INFO accordingly. */
933 if (elf_header
.e_ident
[EI_DATA
] != ELFDATA2MSB
)
934 info
= (((info
& 0xffffffff) << 32)
935 | ((info
>> 56) & 0xff)
936 | ((info
>> 40) & 0xff00)
937 | ((info
>> 24) & 0xff0000)
938 | ((info
>> 8) & 0xff000000));
939 type
= ELF64_MIPS_R_TYPE (info
);
940 type2
= ELF64_MIPS_R_TYPE2 (info
);
941 type3
= ELF64_MIPS_R_TYPE3 (info
);
943 else if (elf_header
.e_machine
== EM_SPARCV9
)
944 type
= ELF64_R_TYPE_ID (info
);
946 type
= ELF64_R_TYPE (info
);
948 symtab_index
= ELF64_R_SYM (info
);
954 #ifdef _bfd_int64_low
955 printf ("%8.8lx %8.8lx ", _bfd_int64_low (offset
), _bfd_int64_low (info
));
957 printf ("%8.8lx %8.8lx ", offset
, info
);
962 #ifdef _bfd_int64_low
964 ? "%8.8lx%8.8lx %8.8lx%8.8lx "
965 : "%4.4lx%8.8lx %4.4lx%8.8lx ",
966 _bfd_int64_high (offset
),
967 _bfd_int64_low (offset
),
968 _bfd_int64_high (info
),
969 _bfd_int64_low (info
));
972 ? "%16.16lx %16.16lx "
973 : "%12.12lx %12.12lx ",
978 switch (elf_header
.e_machine
)
986 rtype
= elf_m32r_reloc_type (type
);
991 rtype
= elf_i386_reloc_type (type
);
996 rtype
= elf_m68hc11_reloc_type (type
);
1000 rtype
= elf_m68k_reloc_type (type
);
1004 rtype
= elf_i960_reloc_type (type
);
1009 rtype
= elf_avr_reloc_type (type
);
1012 case EM_OLD_SPARCV9
:
1013 case EM_SPARC32PLUS
:
1016 rtype
= elf_sparc_reloc_type (type
);
1020 case EM_CYGNUS_V850
:
1021 rtype
= v850_reloc_type (type
);
1025 case EM_CYGNUS_D10V
:
1026 rtype
= elf_d10v_reloc_type (type
);
1030 case EM_CYGNUS_D30V
:
1031 rtype
= elf_d30v_reloc_type (type
);
1035 rtype
= elf_dlx_reloc_type (type
);
1039 rtype
= elf_sh_reloc_type (type
);
1043 case EM_CYGNUS_MN10300
:
1044 rtype
= elf_mn10300_reloc_type (type
);
1048 case EM_CYGNUS_MN10200
:
1049 rtype
= elf_mn10200_reloc_type (type
);
1053 case EM_CYGNUS_FR30
:
1054 rtype
= elf_fr30_reloc_type (type
);
1058 rtype
= elf_frv_reloc_type (type
);
1062 rtype
= elf_mcore_reloc_type (type
);
1066 rtype
= elf_mmix_reloc_type (type
);
1071 rtype
= elf_msp430_reloc_type (type
);
1075 rtype
= elf_ppc_reloc_type (type
);
1079 rtype
= elf_ppc64_reloc_type (type
);
1083 case EM_MIPS_RS3_LE
:
1084 rtype
= elf_mips_reloc_type (type
);
1087 rtype2
= elf_mips_reloc_type (type2
);
1088 rtype3
= elf_mips_reloc_type (type3
);
1093 rtype
= elf_alpha_reloc_type (type
);
1097 rtype
= elf_arm_reloc_type (type
);
1101 rtype
= elf_arc_reloc_type (type
);
1105 rtype
= elf_hppa_reloc_type (type
);
1111 rtype
= elf_h8_reloc_type (type
);
1116 rtype
= elf_or32_reloc_type (type
);
1121 rtype
= elf_pj_reloc_type (type
);
1124 rtype
= elf_ia64_reloc_type (type
);
1128 rtype
= elf_cris_reloc_type (type
);
1132 rtype
= elf_i860_reloc_type (type
);
1136 rtype
= elf_x86_64_reloc_type (type
);
1140 rtype
= i370_reloc_type (type
);
1145 rtype
= elf_s390_reloc_type (type
);
1149 rtype
= elf_xstormy16_reloc_type (type
);
1153 rtype
= elf_vax_reloc_type (type
);
1158 rtype
= elf_ip2k_reloc_type (type
);
1162 rtype
= elf_iq2000_reloc_type (type
);
1167 rtype
= elf_xtensa_reloc_type (type
);
1172 #ifdef _bfd_int64_low
1173 printf (_("unrecognized: %-7lx"), _bfd_int64_low (type
));
1175 printf (_("unrecognized: %-7lx"), type
);
1178 printf (do_wide
? "%-22.22s" : "%-17.17s", rtype
);
1182 if (symtab
== NULL
|| symtab_index
>= nsyms
)
1183 printf (" bad symbol index: %08lx", (unsigned long) symtab_index
);
1186 Elf_Internal_Sym
*psym
;
1188 psym
= symtab
+ symtab_index
;
1191 print_vma (psym
->st_value
, LONG_HEX
);
1192 printf (is_32bit_elf
? " " : " ");
1194 if (psym
->st_name
== 0)
1196 const char *sec_name
= "<null>";
1199 if (ELF_ST_TYPE (psym
->st_info
) == STT_SECTION
)
1201 bfd_vma sec_index
= (bfd_vma
) -1;
1203 if (psym
->st_shndx
< SHN_LORESERVE
)
1204 sec_index
= psym
->st_shndx
;
1205 else if (psym
->st_shndx
> SHN_LORESERVE
)
1206 sec_index
= psym
->st_shndx
- (SHN_HIRESERVE
+ 1
1209 if (sec_index
!= (bfd_vma
) -1)
1210 sec_name
= SECTION_NAME (section_headers
+ sec_index
);
1211 else if (psym
->st_shndx
== SHN_ABS
)
1213 else if (psym
->st_shndx
== SHN_COMMON
)
1214 sec_name
= "COMMON";
1215 else if (elf_header
.e_machine
== EM_IA_64
1216 && elf_header
.e_ident
[EI_OSABI
] == ELFOSABI_HPUX
1217 && psym
->st_shndx
== SHN_IA_64_ANSI_COMMON
)
1218 sec_name
= "ANSI_COM";
1221 sprintf (name_buf
, "<section 0x%x>",
1222 (unsigned int) psym
->st_shndx
);
1223 sec_name
= name_buf
;
1226 print_symbol (22, sec_name
);
1228 else if (strtab
== NULL
)
1229 printf (_("<string table index %3ld>"), psym
->st_name
);
1231 print_symbol (22, strtab
+ psym
->st_name
);
1234 printf (" + %lx", (unsigned long) rels
[i
].r_addend
);
1239 printf ("%*c", is_32bit_elf
? (do_wide
? 34 : 28) : (do_wide
? 26 : 20), ' ');
1240 print_vma (rels
[i
].r_addend
, LONG_HEX
);
1243 if (elf_header
.e_machine
== EM_SPARCV9
1244 && !strcmp (rtype
, "R_SPARC_OLO10"))
1245 printf (" + %lx", (unsigned long) ELF64_R_TYPE_DATA (info
));
1249 if (! is_32bit_elf
&& elf_header
.e_machine
== EM_MIPS
)
1251 printf (" Type2: ");
1254 #ifdef _bfd_int64_low
1255 printf (_("unrecognized: %-7lx"), _bfd_int64_low (type2
));
1257 printf (_("unrecognized: %-7lx"), type2
);
1260 printf ("%-17.17s", rtype2
);
1262 printf("\n Type3: ");
1265 #ifdef _bfd_int64_low
1266 printf (_("unrecognized: %-7lx"), _bfd_int64_low (type3
));
1268 printf (_("unrecognized: %-7lx"), type3
);
1271 printf ("%-17.17s", rtype3
);
1283 get_mips_dynamic_type (unsigned long type
)
1287 case DT_MIPS_RLD_VERSION
: return "MIPS_RLD_VERSION";
1288 case DT_MIPS_TIME_STAMP
: return "MIPS_TIME_STAMP";
1289 case DT_MIPS_ICHECKSUM
: return "MIPS_ICHECKSUM";
1290 case DT_MIPS_IVERSION
: return "MIPS_IVERSION";
1291 case DT_MIPS_FLAGS
: return "MIPS_FLAGS";
1292 case DT_MIPS_BASE_ADDRESS
: return "MIPS_BASE_ADDRESS";
1293 case DT_MIPS_MSYM
: return "MIPS_MSYM";
1294 case DT_MIPS_CONFLICT
: return "MIPS_CONFLICT";
1295 case DT_MIPS_LIBLIST
: return "MIPS_LIBLIST";
1296 case DT_MIPS_LOCAL_GOTNO
: return "MIPS_LOCAL_GOTNO";
1297 case DT_MIPS_CONFLICTNO
: return "MIPS_CONFLICTNO";
1298 case DT_MIPS_LIBLISTNO
: return "MIPS_LIBLISTNO";
1299 case DT_MIPS_SYMTABNO
: return "MIPS_SYMTABNO";
1300 case DT_MIPS_UNREFEXTNO
: return "MIPS_UNREFEXTNO";
1301 case DT_MIPS_GOTSYM
: return "MIPS_GOTSYM";
1302 case DT_MIPS_HIPAGENO
: return "MIPS_HIPAGENO";
1303 case DT_MIPS_RLD_MAP
: return "MIPS_RLD_MAP";
1304 case DT_MIPS_DELTA_CLASS
: return "MIPS_DELTA_CLASS";
1305 case DT_MIPS_DELTA_CLASS_NO
: return "MIPS_DELTA_CLASS_NO";
1306 case DT_MIPS_DELTA_INSTANCE
: return "MIPS_DELTA_INSTANCE";
1307 case DT_MIPS_DELTA_INSTANCE_NO
: return "MIPS_DELTA_INSTANCE_NO";
1308 case DT_MIPS_DELTA_RELOC
: return "MIPS_DELTA_RELOC";
1309 case DT_MIPS_DELTA_RELOC_NO
: return "MIPS_DELTA_RELOC_NO";
1310 case DT_MIPS_DELTA_SYM
: return "MIPS_DELTA_SYM";
1311 case DT_MIPS_DELTA_SYM_NO
: return "MIPS_DELTA_SYM_NO";
1312 case DT_MIPS_DELTA_CLASSSYM
: return "MIPS_DELTA_CLASSSYM";
1313 case DT_MIPS_DELTA_CLASSSYM_NO
: return "MIPS_DELTA_CLASSSYM_NO";
1314 case DT_MIPS_CXX_FLAGS
: return "MIPS_CXX_FLAGS";
1315 case DT_MIPS_PIXIE_INIT
: return "MIPS_PIXIE_INIT";
1316 case DT_MIPS_SYMBOL_LIB
: return "MIPS_SYMBOL_LIB";
1317 case DT_MIPS_LOCALPAGE_GOTIDX
: return "MIPS_LOCALPAGE_GOTIDX";
1318 case DT_MIPS_LOCAL_GOTIDX
: return "MIPS_LOCAL_GOTIDX";
1319 case DT_MIPS_HIDDEN_GOTIDX
: return "MIPS_HIDDEN_GOTIDX";
1320 case DT_MIPS_PROTECTED_GOTIDX
: return "MIPS_PROTECTED_GOTIDX";
1321 case DT_MIPS_OPTIONS
: return "MIPS_OPTIONS";
1322 case DT_MIPS_INTERFACE
: return "MIPS_INTERFACE";
1323 case DT_MIPS_DYNSTR_ALIGN
: return "MIPS_DYNSTR_ALIGN";
1324 case DT_MIPS_INTERFACE_SIZE
: return "MIPS_INTERFACE_SIZE";
1325 case DT_MIPS_RLD_TEXT_RESOLVE_ADDR
: return "MIPS_RLD_TEXT_RESOLVE_ADDR";
1326 case DT_MIPS_PERF_SUFFIX
: return "MIPS_PERF_SUFFIX";
1327 case DT_MIPS_COMPACT_SIZE
: return "MIPS_COMPACT_SIZE";
1328 case DT_MIPS_GP_VALUE
: return "MIPS_GP_VALUE";
1329 case DT_MIPS_AUX_DYNAMIC
: return "MIPS_AUX_DYNAMIC";
1336 get_sparc64_dynamic_type (unsigned long type
)
1340 case DT_SPARC_REGISTER
: return "SPARC_REGISTER";
1347 get_ppc64_dynamic_type (unsigned long type
)
1351 case DT_PPC64_GLINK
: return "PPC64_GLINK";
1352 case DT_PPC64_OPD
: return "PPC64_OPD";
1353 case DT_PPC64_OPDSZ
: return "PPC64_OPDSZ";
1360 get_parisc_dynamic_type (unsigned long type
)
1364 case DT_HP_LOAD_MAP
: return "HP_LOAD_MAP";
1365 case DT_HP_DLD_FLAGS
: return "HP_DLD_FLAGS";
1366 case DT_HP_DLD_HOOK
: return "HP_DLD_HOOK";
1367 case DT_HP_UX10_INIT
: return "HP_UX10_INIT";
1368 case DT_HP_UX10_INITSZ
: return "HP_UX10_INITSZ";
1369 case DT_HP_PREINIT
: return "HP_PREINIT";
1370 case DT_HP_PREINITSZ
: return "HP_PREINITSZ";
1371 case DT_HP_NEEDED
: return "HP_NEEDED";
1372 case DT_HP_TIME_STAMP
: return "HP_TIME_STAMP";
1373 case DT_HP_CHECKSUM
: return "HP_CHECKSUM";
1374 case DT_HP_GST_SIZE
: return "HP_GST_SIZE";
1375 case DT_HP_GST_VERSION
: return "HP_GST_VERSION";
1376 case DT_HP_GST_HASHVAL
: return "HP_GST_HASHVAL";
1383 get_ia64_dynamic_type (unsigned long type
)
1387 case DT_IA_64_PLT_RESERVE
: return "IA_64_PLT_RESERVE";
1394 get_dynamic_type (unsigned long type
)
1396 static char buff
[32];
1400 case DT_NULL
: return "NULL";
1401 case DT_NEEDED
: return "NEEDED";
1402 case DT_PLTRELSZ
: return "PLTRELSZ";
1403 case DT_PLTGOT
: return "PLTGOT";
1404 case DT_HASH
: return "HASH";
1405 case DT_STRTAB
: return "STRTAB";
1406 case DT_SYMTAB
: return "SYMTAB";
1407 case DT_RELA
: return "RELA";
1408 case DT_RELASZ
: return "RELASZ";
1409 case DT_RELAENT
: return "RELAENT";
1410 case DT_STRSZ
: return "STRSZ";
1411 case DT_SYMENT
: return "SYMENT";
1412 case DT_INIT
: return "INIT";
1413 case DT_FINI
: return "FINI";
1414 case DT_SONAME
: return "SONAME";
1415 case DT_RPATH
: return "RPATH";
1416 case DT_SYMBOLIC
: return "SYMBOLIC";
1417 case DT_REL
: return "REL";
1418 case DT_RELSZ
: return "RELSZ";
1419 case DT_RELENT
: return "RELENT";
1420 case DT_PLTREL
: return "PLTREL";
1421 case DT_DEBUG
: return "DEBUG";
1422 case DT_TEXTREL
: return "TEXTREL";
1423 case DT_JMPREL
: return "JMPREL";
1424 case DT_BIND_NOW
: return "BIND_NOW";
1425 case DT_INIT_ARRAY
: return "INIT_ARRAY";
1426 case DT_FINI_ARRAY
: return "FINI_ARRAY";
1427 case DT_INIT_ARRAYSZ
: return "INIT_ARRAYSZ";
1428 case DT_FINI_ARRAYSZ
: return "FINI_ARRAYSZ";
1429 case DT_RUNPATH
: return "RUNPATH";
1430 case DT_FLAGS
: return "FLAGS";
1432 case DT_PREINIT_ARRAY
: return "PREINIT_ARRAY";
1433 case DT_PREINIT_ARRAYSZ
: return "PREINIT_ARRAYSZ";
1435 case DT_CHECKSUM
: return "CHECKSUM";
1436 case DT_PLTPADSZ
: return "PLTPADSZ";
1437 case DT_MOVEENT
: return "MOVEENT";
1438 case DT_MOVESZ
: return "MOVESZ";
1439 case DT_FEATURE
: return "FEATURE";
1440 case DT_POSFLAG_1
: return "POSFLAG_1";
1441 case DT_SYMINSZ
: return "SYMINSZ";
1442 case DT_SYMINENT
: return "SYMINENT"; /* aka VALRNGHI */
1444 case DT_ADDRRNGLO
: return "ADDRRNGLO";
1445 case DT_CONFIG
: return "CONFIG";
1446 case DT_DEPAUDIT
: return "DEPAUDIT";
1447 case DT_AUDIT
: return "AUDIT";
1448 case DT_PLTPAD
: return "PLTPAD";
1449 case DT_MOVETAB
: return "MOVETAB";
1450 case DT_SYMINFO
: return "SYMINFO"; /* aka ADDRRNGHI */
1452 case DT_VERSYM
: return "VERSYM";
1454 case DT_RELACOUNT
: return "RELACOUNT";
1455 case DT_RELCOUNT
: return "RELCOUNT";
1456 case DT_FLAGS_1
: return "FLAGS_1";
1457 case DT_VERDEF
: return "VERDEF";
1458 case DT_VERDEFNUM
: return "VERDEFNUM";
1459 case DT_VERNEED
: return "VERNEED";
1460 case DT_VERNEEDNUM
: return "VERNEEDNUM";
1462 case DT_AUXILIARY
: return "AUXILIARY";
1463 case DT_USED
: return "USED";
1464 case DT_FILTER
: return "FILTER";
1466 case DT_GNU_PRELINKED
: return "GNU_PRELINKED";
1467 case DT_GNU_CONFLICT
: return "GNU_CONFLICT";
1468 case DT_GNU_CONFLICTSZ
: return "GNU_CONFLICTSZ";
1469 case DT_GNU_LIBLIST
: return "GNU_LIBLIST";
1470 case DT_GNU_LIBLISTSZ
: return "GNU_LIBLISTSZ";
1473 if ((type
>= DT_LOPROC
) && (type
<= DT_HIPROC
))
1477 switch (elf_header
.e_machine
)
1480 case EM_MIPS_RS3_LE
:
1481 result
= get_mips_dynamic_type (type
);
1484 result
= get_sparc64_dynamic_type (type
);
1487 result
= get_ppc64_dynamic_type (type
);
1490 result
= get_ia64_dynamic_type (type
);
1500 sprintf (buff
, _("Processor Specific: %lx"), type
);
1502 else if ((type
>= DT_LOOS
) && (type
<= DT_HIOS
))
1506 switch (elf_header
.e_machine
)
1509 result
= get_parisc_dynamic_type (type
);
1519 sprintf (buff
, _("Operating System specific: %lx"), type
);
1522 sprintf (buff
, _("<unknown>: %lx"), type
);
1529 get_file_type (unsigned e_type
)
1531 static char buff
[32];
1535 case ET_NONE
: return _("NONE (None)");
1536 case ET_REL
: return _("REL (Relocatable file)");
1537 case ET_EXEC
: return _("EXEC (Executable file)");
1538 case ET_DYN
: return _("DYN (Shared object file)");
1539 case ET_CORE
: return _("CORE (Core file)");
1542 if ((e_type
>= ET_LOPROC
) && (e_type
<= ET_HIPROC
))
1543 sprintf (buff
, _("Processor Specific: (%x)"), e_type
);
1544 else if ((e_type
>= ET_LOOS
) && (e_type
<= ET_HIOS
))
1545 sprintf (buff
, _("OS Specific: (%x)"), e_type
);
1547 sprintf (buff
, _("<unknown>: %x"), e_type
);
1553 get_machine_name (unsigned e_machine
)
1555 static char buff
[64]; /* XXX */
1559 case EM_NONE
: return _("None");
1560 case EM_M32
: return "WE32100";
1561 case EM_SPARC
: return "Sparc";
1562 case EM_386
: return "Intel 80386";
1563 case EM_68K
: return "MC68000";
1564 case EM_88K
: return "MC88000";
1565 case EM_486
: return "Intel 80486";
1566 case EM_860
: return "Intel 80860";
1567 case EM_MIPS
: return "MIPS R3000";
1568 case EM_S370
: return "IBM System/370";
1569 case EM_MIPS_RS3_LE
: return "MIPS R4000 big-endian";
1570 case EM_OLD_SPARCV9
: return "Sparc v9 (old)";
1571 case EM_PARISC
: return "HPPA";
1572 case EM_PPC_OLD
: return "Power PC (old)";
1573 case EM_SPARC32PLUS
: return "Sparc v8+" ;
1574 case EM_960
: return "Intel 90860";
1575 case EM_PPC
: return "PowerPC";
1576 case EM_PPC64
: return "PowerPC64";
1577 case EM_V800
: return "NEC V800";
1578 case EM_FR20
: return "Fujitsu FR20";
1579 case EM_RH32
: return "TRW RH32";
1580 case EM_MCORE
: return "MCORE";
1581 case EM_ARM
: return "ARM";
1582 case EM_OLD_ALPHA
: return "Digital Alpha (old)";
1583 case EM_SH
: return "Renesas / SuperH SH";
1584 case EM_SPARCV9
: return "Sparc v9";
1585 case EM_TRICORE
: return "Siemens Tricore";
1586 case EM_ARC
: return "ARC";
1587 case EM_H8_300
: return "Renesas H8/300";
1588 case EM_H8_300H
: return "Renesas H8/300H";
1589 case EM_H8S
: return "Renesas H8S";
1590 case EM_H8_500
: return "Renesas H8/500";
1591 case EM_IA_64
: return "Intel IA-64";
1592 case EM_MIPS_X
: return "Stanford MIPS-X";
1593 case EM_COLDFIRE
: return "Motorola Coldfire";
1594 case EM_68HC12
: return "Motorola M68HC12";
1595 case EM_ALPHA
: return "Alpha";
1596 case EM_CYGNUS_D10V
:
1597 case EM_D10V
: return "d10v";
1598 case EM_CYGNUS_D30V
:
1599 case EM_D30V
: return "d30v";
1600 case EM_CYGNUS_M32R
:
1601 case EM_M32R
: return "Renesas M32R (formerly Mitsubishi M32r)";
1602 case EM_CYGNUS_V850
:
1603 case EM_V850
: return "NEC v850";
1604 case EM_CYGNUS_MN10300
:
1605 case EM_MN10300
: return "mn10300";
1606 case EM_CYGNUS_MN10200
:
1607 case EM_MN10200
: return "mn10200";
1608 case EM_CYGNUS_FR30
:
1609 case EM_FR30
: return "Fujitsu FR30";
1610 case EM_CYGNUS_FRV
: return "Fujitsu FR-V";
1612 case EM_PJ
: return "picoJava";
1613 case EM_MMA
: return "Fujitsu Multimedia Accelerator";
1614 case EM_PCP
: return "Siemens PCP";
1615 case EM_NCPU
: return "Sony nCPU embedded RISC processor";
1616 case EM_NDR1
: return "Denso NDR1 microprocesspr";
1617 case EM_STARCORE
: return "Motorola Star*Core processor";
1618 case EM_ME16
: return "Toyota ME16 processor";
1619 case EM_ST100
: return "STMicroelectronics ST100 processor";
1620 case EM_TINYJ
: return "Advanced Logic Corp. TinyJ embedded processor";
1621 case EM_FX66
: return "Siemens FX66 microcontroller";
1622 case EM_ST9PLUS
: return "STMicroelectronics ST9+ 8/16 bit microcontroller";
1623 case EM_ST7
: return "STMicroelectronics ST7 8-bit microcontroller";
1624 case EM_68HC16
: return "Motorola MC68HC16 Microcontroller";
1625 case EM_68HC11
: return "Motorola MC68HC11 Microcontroller";
1626 case EM_68HC08
: return "Motorola MC68HC08 Microcontroller";
1627 case EM_68HC05
: return "Motorola MC68HC05 Microcontroller";
1628 case EM_SVX
: return "Silicon Graphics SVx";
1629 case EM_ST19
: return "STMicroelectronics ST19 8-bit microcontroller";
1630 case EM_VAX
: return "Digital VAX";
1632 case EM_AVR
: return "Atmel AVR 8-bit microcontroller";
1633 case EM_CRIS
: return "Axis Communications 32-bit embedded processor";
1634 case EM_JAVELIN
: return "Infineon Technologies 32-bit embedded cpu";
1635 case EM_FIREPATH
: return "Element 14 64-bit DSP processor";
1636 case EM_ZSP
: return "LSI Logic's 16-bit DSP processor";
1637 case EM_MMIX
: return "Donald Knuth's educational 64-bit processor";
1638 case EM_HUANY
: return "Harvard Universitys's machine-independent object format";
1639 case EM_PRISM
: return "Vitesse Prism";
1640 case EM_X86_64
: return "Advanced Micro Devices X86-64";
1642 case EM_S390
: return "IBM S/390";
1643 case EM_XSTORMY16
: return "Sanyo Xstormy16 CPU core";
1645 case EM_OR32
: return "OpenRISC";
1646 case EM_DLX
: return "OpenDLX";
1648 case EM_IP2K
: return "Ubicom IP2xxx 8-bit microcontrollers";
1649 case EM_IQ2000
: return "Vitesse IQ2000";
1651 case EM_XTENSA
: return "Tensilica Xtensa Processor";
1653 sprintf (buff
, _("<unknown>: %x"), e_machine
);
1659 decode_ARM_machine_flags (unsigned e_flags
, char buf
[])
1664 eabi
= EF_ARM_EABI_VERSION (e_flags
);
1665 e_flags
&= ~ EF_ARM_EABIMASK
;
1667 /* Handle "generic" ARM flags. */
1668 if (e_flags
& EF_ARM_RELEXEC
)
1670 strcat (buf
, ", relocatable executable");
1671 e_flags
&= ~ EF_ARM_RELEXEC
;
1674 if (e_flags
& EF_ARM_HASENTRY
)
1676 strcat (buf
, ", has entry point");
1677 e_flags
&= ~ EF_ARM_HASENTRY
;
1680 /* Now handle EABI specific flags. */
1684 strcat (buf
, ", <unrecognized EABI>");
1689 case EF_ARM_EABI_VER1
:
1690 strcat (buf
, ", Version1 EABI");
1695 /* Process flags one bit at a time. */
1696 flag
= e_flags
& - e_flags
;
1701 case EF_ARM_SYMSARESORTED
: /* Conflicts with EF_ARM_INTERWORK. */
1702 strcat (buf
, ", sorted symbol tables");
1712 case EF_ARM_EABI_VER2
:
1713 strcat (buf
, ", Version2 EABI");
1718 /* Process flags one bit at a time. */
1719 flag
= e_flags
& - e_flags
;
1724 case EF_ARM_SYMSARESORTED
: /* Conflicts with EF_ARM_INTERWORK. */
1725 strcat (buf
, ", sorted symbol tables");
1728 case EF_ARM_DYNSYMSUSESEGIDX
:
1729 strcat (buf
, ", dynamic symbols use segment index");
1732 case EF_ARM_MAPSYMSFIRST
:
1733 strcat (buf
, ", mapping symbols precede others");
1743 case EF_ARM_EABI_UNKNOWN
:
1744 strcat (buf
, ", GNU EABI");
1749 /* Process flags one bit at a time. */
1750 flag
= e_flags
& - e_flags
;
1755 case EF_ARM_INTERWORK
:
1756 strcat (buf
, ", interworking enabled");
1759 case EF_ARM_APCS_26
:
1760 strcat (buf
, ", uses APCS/26");
1763 case EF_ARM_APCS_FLOAT
:
1764 strcat (buf
, ", uses APCS/float");
1768 strcat (buf
, ", position independent");
1772 strcat (buf
, ", 8 bit structure alignment");
1775 case EF_ARM_NEW_ABI
:
1776 strcat (buf
, ", uses new ABI");
1779 case EF_ARM_OLD_ABI
:
1780 strcat (buf
, ", uses old ABI");
1783 case EF_ARM_SOFT_FLOAT
:
1784 strcat (buf
, ", software FP");
1787 case EF_ARM_MAVERICK_FLOAT
:
1788 strcat (buf
, ", Maverick FP");
1799 strcat (buf
,", <unknown>");
1803 get_machine_flags (unsigned e_flags
, unsigned e_machine
)
1805 static char buf
[1024];
1817 decode_ARM_machine_flags (e_flags
, buf
);
1821 if (e_flags
& EF_CPU32
)
1822 strcat (buf
, ", cpu32");
1823 if (e_flags
& EF_M68000
)
1824 strcat (buf
, ", m68000");
1828 if (e_flags
& EF_PPC_EMB
)
1829 strcat (buf
, ", emb");
1831 if (e_flags
& EF_PPC_RELOCATABLE
)
1832 strcat (buf
, ", relocatable");
1834 if (e_flags
& EF_PPC_RELOCATABLE_LIB
)
1835 strcat (buf
, ", relocatable-lib");
1839 case EM_CYGNUS_V850
:
1840 switch (e_flags
& EF_V850_ARCH
)
1843 strcat (buf
, ", v850e1");
1846 strcat (buf
, ", v850e");
1849 strcat (buf
, ", v850");
1852 strcat (buf
, ", unknown v850 architecture variant");
1858 case EM_CYGNUS_M32R
:
1859 if ((e_flags
& EF_M32R_ARCH
) == E_M32R_ARCH
)
1860 strcat (buf
, ", m32r");
1865 case EM_MIPS_RS3_LE
:
1866 if (e_flags
& EF_MIPS_NOREORDER
)
1867 strcat (buf
, ", noreorder");
1869 if (e_flags
& EF_MIPS_PIC
)
1870 strcat (buf
, ", pic");
1872 if (e_flags
& EF_MIPS_CPIC
)
1873 strcat (buf
, ", cpic");
1875 if (e_flags
& EF_MIPS_UCODE
)
1876 strcat (buf
, ", ugen_reserved");
1878 if (e_flags
& EF_MIPS_ABI2
)
1879 strcat (buf
, ", abi2");
1881 if (e_flags
& EF_MIPS_OPTIONS_FIRST
)
1882 strcat (buf
, ", odk first");
1884 if (e_flags
& EF_MIPS_32BITMODE
)
1885 strcat (buf
, ", 32bitmode");
1887 switch ((e_flags
& EF_MIPS_MACH
))
1889 case E_MIPS_MACH_3900
: strcat (buf
, ", 3900"); break;
1890 case E_MIPS_MACH_4010
: strcat (buf
, ", 4010"); break;
1891 case E_MIPS_MACH_4100
: strcat (buf
, ", 4100"); break;
1892 case E_MIPS_MACH_4111
: strcat (buf
, ", 4111"); break;
1893 case E_MIPS_MACH_4120
: strcat (buf
, ", 4120"); break;
1894 case E_MIPS_MACH_4650
: strcat (buf
, ", 4650"); break;
1895 case E_MIPS_MACH_5400
: strcat (buf
, ", 5400"); break;
1896 case E_MIPS_MACH_5500
: strcat (buf
, ", 5500"); break;
1897 case E_MIPS_MACH_SB1
: strcat (buf
, ", sb1"); break;
1899 /* We simply ignore the field in this case to avoid confusion:
1900 MIPS ELF does not specify EF_MIPS_MACH, it is a GNU
1903 default: strcat (buf
, ", unknown CPU"); break;
1906 switch ((e_flags
& EF_MIPS_ABI
))
1908 case E_MIPS_ABI_O32
: strcat (buf
, ", o32"); break;
1909 case E_MIPS_ABI_O64
: strcat (buf
, ", o64"); break;
1910 case E_MIPS_ABI_EABI32
: strcat (buf
, ", eabi32"); break;
1911 case E_MIPS_ABI_EABI64
: strcat (buf
, ", eabi64"); break;
1913 /* We simply ignore the field in this case to avoid confusion:
1914 MIPS ELF does not specify EF_MIPS_ABI, it is a GNU extension.
1915 This means it is likely to be an o32 file, but not for
1918 default: strcat (buf
, ", unknown ABI"); break;
1921 if (e_flags
& EF_MIPS_ARCH_ASE_MDMX
)
1922 strcat (buf
, ", mdmx");
1924 if (e_flags
& EF_MIPS_ARCH_ASE_M16
)
1925 strcat (buf
, ", mips16");
1927 switch ((e_flags
& EF_MIPS_ARCH
))
1929 case E_MIPS_ARCH_1
: strcat (buf
, ", mips1"); break;
1930 case E_MIPS_ARCH_2
: strcat (buf
, ", mips2"); break;
1931 case E_MIPS_ARCH_3
: strcat (buf
, ", mips3"); break;
1932 case E_MIPS_ARCH_4
: strcat (buf
, ", mips4"); break;
1933 case E_MIPS_ARCH_5
: strcat (buf
, ", mips5"); break;
1934 case E_MIPS_ARCH_32
: strcat (buf
, ", mips32"); break;
1935 case E_MIPS_ARCH_32R2
: strcat (buf
, ", mips32r2"); break;
1936 case E_MIPS_ARCH_64
: strcat (buf
, ", mips64"); break;
1937 case E_MIPS_ARCH_64R2
: strcat (buf
, ", mips64r2"); break;
1938 default: strcat (buf
, ", unknown ISA"); break;
1944 if (e_flags
& EF_SPARC_32PLUS
)
1945 strcat (buf
, ", v8+");
1947 if (e_flags
& EF_SPARC_SUN_US1
)
1948 strcat (buf
, ", ultrasparcI");
1950 if (e_flags
& EF_SPARC_SUN_US3
)
1951 strcat (buf
, ", ultrasparcIII");
1953 if (e_flags
& EF_SPARC_HAL_R1
)
1954 strcat (buf
, ", halr1");
1956 if (e_flags
& EF_SPARC_LEDATA
)
1957 strcat (buf
, ", ledata");
1959 if ((e_flags
& EF_SPARCV9_MM
) == EF_SPARCV9_TSO
)
1960 strcat (buf
, ", tso");
1962 if ((e_flags
& EF_SPARCV9_MM
) == EF_SPARCV9_PSO
)
1963 strcat (buf
, ", pso");
1965 if ((e_flags
& EF_SPARCV9_MM
) == EF_SPARCV9_RMO
)
1966 strcat (buf
, ", rmo");
1970 switch (e_flags
& EF_PARISC_ARCH
)
1972 case EFA_PARISC_1_0
:
1973 strcpy (buf
, ", PA-RISC 1.0");
1975 case EFA_PARISC_1_1
:
1976 strcpy (buf
, ", PA-RISC 1.1");
1978 case EFA_PARISC_2_0
:
1979 strcpy (buf
, ", PA-RISC 2.0");
1984 if (e_flags
& EF_PARISC_TRAPNIL
)
1985 strcat (buf
, ", trapnil");
1986 if (e_flags
& EF_PARISC_EXT
)
1987 strcat (buf
, ", ext");
1988 if (e_flags
& EF_PARISC_LSB
)
1989 strcat (buf
, ", lsb");
1990 if (e_flags
& EF_PARISC_WIDE
)
1991 strcat (buf
, ", wide");
1992 if (e_flags
& EF_PARISC_NO_KABP
)
1993 strcat (buf
, ", no kabp");
1994 if (e_flags
& EF_PARISC_LAZYSWAP
)
1995 strcat (buf
, ", lazyswap");
2000 if ((e_flags
& EF_PICOJAVA_NEWCALLS
) == EF_PICOJAVA_NEWCALLS
)
2001 strcat (buf
, ", new calling convention");
2003 if ((e_flags
& EF_PICOJAVA_GNUCALLS
) == EF_PICOJAVA_GNUCALLS
)
2004 strcat (buf
, ", gnu calling convention");
2008 if ((e_flags
& EF_IA_64_ABI64
))
2009 strcat (buf
, ", 64-bit");
2011 strcat (buf
, ", 32-bit");
2012 if ((e_flags
& EF_IA_64_REDUCEDFP
))
2013 strcat (buf
, ", reduced fp model");
2014 if ((e_flags
& EF_IA_64_NOFUNCDESC_CONS_GP
))
2015 strcat (buf
, ", no function descriptors, constant gp");
2016 else if ((e_flags
& EF_IA_64_CONS_GP
))
2017 strcat (buf
, ", constant gp");
2018 if ((e_flags
& EF_IA_64_ABSOLUTE
))
2019 strcat (buf
, ", absolute");
2023 if ((e_flags
& EF_VAX_NONPIC
))
2024 strcat (buf
, ", non-PIC");
2025 if ((e_flags
& EF_VAX_DFLOAT
))
2026 strcat (buf
, ", D-Float");
2027 if ((e_flags
& EF_VAX_GFLOAT
))
2028 strcat (buf
, ", G-Float");
2037 get_osabi_name (unsigned int osabi
)
2039 static char buff
[32];
2043 case ELFOSABI_NONE
: return "UNIX - System V";
2044 case ELFOSABI_HPUX
: return "UNIX - HP-UX";
2045 case ELFOSABI_NETBSD
: return "UNIX - NetBSD";
2046 case ELFOSABI_LINUX
: return "UNIX - Linux";
2047 case ELFOSABI_HURD
: return "GNU/Hurd";
2048 case ELFOSABI_SOLARIS
: return "UNIX - Solaris";
2049 case ELFOSABI_AIX
: return "UNIX - AIX";
2050 case ELFOSABI_IRIX
: return "UNIX - IRIX";
2051 case ELFOSABI_FREEBSD
: return "UNIX - FreeBSD";
2052 case ELFOSABI_TRU64
: return "UNIX - TRU64";
2053 case ELFOSABI_MODESTO
: return "Novell - Modesto";
2054 case ELFOSABI_OPENBSD
: return "UNIX - OpenBSD";
2055 case ELFOSABI_OPENVMS
: return "VMS - OpenVMS";
2056 case ELFOSABI_NSK
: return "HP - Non-Stop Kernel";
2057 case ELFOSABI_AROS
: return "Amiga Research OS";
2058 case ELFOSABI_STANDALONE
: return _("Standalone App");
2059 case ELFOSABI_ARM
: return "ARM";
2061 sprintf (buff
, _("<unknown: %x>"), osabi
);
2067 get_mips_segment_type (unsigned long type
)
2071 case PT_MIPS_REGINFO
:
2073 case PT_MIPS_RTPROC
:
2075 case PT_MIPS_OPTIONS
:
2085 get_parisc_segment_type (unsigned long type
)
2089 case PT_HP_TLS
: return "HP_TLS";
2090 case PT_HP_CORE_NONE
: return "HP_CORE_NONE";
2091 case PT_HP_CORE_VERSION
: return "HP_CORE_VERSION";
2092 case PT_HP_CORE_KERNEL
: return "HP_CORE_KERNEL";
2093 case PT_HP_CORE_COMM
: return "HP_CORE_COMM";
2094 case PT_HP_CORE_PROC
: return "HP_CORE_PROC";
2095 case PT_HP_CORE_LOADABLE
: return "HP_CORE_LOADABLE";
2096 case PT_HP_CORE_STACK
: return "HP_CORE_STACK";
2097 case PT_HP_CORE_SHM
: return "HP_CORE_SHM";
2098 case PT_HP_CORE_MMF
: return "HP_CORE_MMF";
2099 case PT_HP_PARALLEL
: return "HP_PARALLEL";
2100 case PT_HP_FASTBIND
: return "HP_FASTBIND";
2101 case PT_PARISC_ARCHEXT
: return "PARISC_ARCHEXT";
2102 case PT_PARISC_UNWIND
: return "PARISC_UNWIND";
2111 get_ia64_segment_type (unsigned long type
)
2115 case PT_IA_64_ARCHEXT
: return "IA_64_ARCHEXT";
2116 case PT_IA_64_UNWIND
: return "IA_64_UNWIND";
2117 case PT_HP_TLS
: return "HP_TLS";
2118 case PT_IA_64_HP_OPT_ANOT
: return "HP_OPT_ANNOT";
2119 case PT_IA_64_HP_HSL_ANOT
: return "HP_HSL_ANNOT";
2120 case PT_IA_64_HP_STACK
: return "HP_STACK";
2129 get_segment_type (unsigned long p_type
)
2131 static char buff
[32];
2135 case PT_NULL
: return "NULL";
2136 case PT_LOAD
: return "LOAD";
2137 case PT_DYNAMIC
: return "DYNAMIC";
2138 case PT_INTERP
: return "INTERP";
2139 case PT_NOTE
: return "NOTE";
2140 case PT_SHLIB
: return "SHLIB";
2141 case PT_PHDR
: return "PHDR";
2142 case PT_TLS
: return "TLS";
2144 case PT_GNU_EH_FRAME
:
2145 return "GNU_EH_FRAME";
2146 case PT_GNU_STACK
: return "STACK";
2149 if ((p_type
>= PT_LOPROC
) && (p_type
<= PT_HIPROC
))
2153 switch (elf_header
.e_machine
)
2156 case EM_MIPS_RS3_LE
:
2157 result
= get_mips_segment_type (p_type
);
2160 result
= get_parisc_segment_type (p_type
);
2163 result
= get_ia64_segment_type (p_type
);
2173 sprintf (buff
, "LOPROC+%lx", p_type
- PT_LOPROC
);
2175 else if ((p_type
>= PT_LOOS
) && (p_type
<= PT_HIOS
))
2179 switch (elf_header
.e_machine
)
2182 result
= get_parisc_segment_type (p_type
);
2185 result
= get_ia64_segment_type (p_type
);
2195 sprintf (buff
, "LOOS+%lx", p_type
- PT_LOOS
);
2198 sprintf (buff
, _("<unknown>: %lx"), p_type
);
2205 get_mips_section_type_name (unsigned int sh_type
)
2209 case SHT_MIPS_LIBLIST
: return "MIPS_LIBLIST";
2210 case SHT_MIPS_MSYM
: return "MIPS_MSYM";
2211 case SHT_MIPS_CONFLICT
: return "MIPS_CONFLICT";
2212 case SHT_MIPS_GPTAB
: return "MIPS_GPTAB";
2213 case SHT_MIPS_UCODE
: return "MIPS_UCODE";
2214 case SHT_MIPS_DEBUG
: return "MIPS_DEBUG";
2215 case SHT_MIPS_REGINFO
: return "MIPS_REGINFO";
2216 case SHT_MIPS_PACKAGE
: return "MIPS_PACKAGE";
2217 case SHT_MIPS_PACKSYM
: return "MIPS_PACKSYM";
2218 case SHT_MIPS_RELD
: return "MIPS_RELD";
2219 case SHT_MIPS_IFACE
: return "MIPS_IFACE";
2220 case SHT_MIPS_CONTENT
: return "MIPS_CONTENT";
2221 case SHT_MIPS_OPTIONS
: return "MIPS_OPTIONS";
2222 case SHT_MIPS_SHDR
: return "MIPS_SHDR";
2223 case SHT_MIPS_FDESC
: return "MIPS_FDESC";
2224 case SHT_MIPS_EXTSYM
: return "MIPS_EXTSYM";
2225 case SHT_MIPS_DENSE
: return "MIPS_DENSE";
2226 case SHT_MIPS_PDESC
: return "MIPS_PDESC";
2227 case SHT_MIPS_LOCSYM
: return "MIPS_LOCSYM";
2228 case SHT_MIPS_AUXSYM
: return "MIPS_AUXSYM";
2229 case SHT_MIPS_OPTSYM
: return "MIPS_OPTSYM";
2230 case SHT_MIPS_LOCSTR
: return "MIPS_LOCSTR";
2231 case SHT_MIPS_LINE
: return "MIPS_LINE";
2232 case SHT_MIPS_RFDESC
: return "MIPS_RFDESC";
2233 case SHT_MIPS_DELTASYM
: return "MIPS_DELTASYM";
2234 case SHT_MIPS_DELTAINST
: return "MIPS_DELTAINST";
2235 case SHT_MIPS_DELTACLASS
: return "MIPS_DELTACLASS";
2236 case SHT_MIPS_DWARF
: return "MIPS_DWARF";
2237 case SHT_MIPS_DELTADECL
: return "MIPS_DELTADECL";
2238 case SHT_MIPS_SYMBOL_LIB
: return "MIPS_SYMBOL_LIB";
2239 case SHT_MIPS_EVENTS
: return "MIPS_EVENTS";
2240 case SHT_MIPS_TRANSLATE
: return "MIPS_TRANSLATE";
2241 case SHT_MIPS_PIXIE
: return "MIPS_PIXIE";
2242 case SHT_MIPS_XLATE
: return "MIPS_XLATE";
2243 case SHT_MIPS_XLATE_DEBUG
: return "MIPS_XLATE_DEBUG";
2244 case SHT_MIPS_WHIRL
: return "MIPS_WHIRL";
2245 case SHT_MIPS_EH_REGION
: return "MIPS_EH_REGION";
2246 case SHT_MIPS_XLATE_OLD
: return "MIPS_XLATE_OLD";
2247 case SHT_MIPS_PDR_EXCEPTION
: return "MIPS_PDR_EXCEPTION";
2255 get_parisc_section_type_name (unsigned int sh_type
)
2259 case SHT_PARISC_EXT
: return "PARISC_EXT";
2260 case SHT_PARISC_UNWIND
: return "PARISC_UNWIND";
2261 case SHT_PARISC_DOC
: return "PARISC_DOC";
2269 get_ia64_section_type_name (unsigned int sh_type
)
2271 /* If the top 8 bits are 0x78 the next 8 are the os/abi ID. */
2272 if ((sh_type
& 0xFF000000) == SHT_IA_64_LOPSREG
)
2273 return get_osabi_name ((sh_type
& 0x00FF0000) >> 16);
2277 case SHT_IA_64_EXT
: return "IA_64_EXT";
2278 case SHT_IA_64_UNWIND
: return "IA_64_UNWIND";
2279 case SHT_IA_64_PRIORITY_INIT
: return "IA_64_PRIORITY_INIT";
2287 get_section_type_name (unsigned int sh_type
)
2289 static char buff
[32];
2293 case SHT_NULL
: return "NULL";
2294 case SHT_PROGBITS
: return "PROGBITS";
2295 case SHT_SYMTAB
: return "SYMTAB";
2296 case SHT_STRTAB
: return "STRTAB";
2297 case SHT_RELA
: return "RELA";
2298 case SHT_HASH
: return "HASH";
2299 case SHT_DYNAMIC
: return "DYNAMIC";
2300 case SHT_NOTE
: return "NOTE";
2301 case SHT_NOBITS
: return "NOBITS";
2302 case SHT_REL
: return "REL";
2303 case SHT_SHLIB
: return "SHLIB";
2304 case SHT_DYNSYM
: return "DYNSYM";
2305 case SHT_INIT_ARRAY
: return "INIT_ARRAY";
2306 case SHT_FINI_ARRAY
: return "FINI_ARRAY";
2307 case SHT_PREINIT_ARRAY
: return "PREINIT_ARRAY";
2308 case SHT_GROUP
: return "GROUP";
2309 case SHT_SYMTAB_SHNDX
: return "SYMTAB SECTION INDICIES";
2310 case SHT_GNU_verdef
: return "VERDEF";
2311 case SHT_GNU_verneed
: return "VERNEED";
2312 case SHT_GNU_versym
: return "VERSYM";
2313 case 0x6ffffff0: return "VERSYM";
2314 case 0x6ffffffc: return "VERDEF";
2315 case 0x7ffffffd: return "AUXILIARY";
2316 case 0x7fffffff: return "FILTER";
2317 case SHT_GNU_LIBLIST
: return "GNU_LIBLIST";
2320 if ((sh_type
>= SHT_LOPROC
) && (sh_type
<= SHT_HIPROC
))
2324 switch (elf_header
.e_machine
)
2327 case EM_MIPS_RS3_LE
:
2328 result
= get_mips_section_type_name (sh_type
);
2331 result
= get_parisc_section_type_name (sh_type
);
2334 result
= get_ia64_section_type_name (sh_type
);
2344 sprintf (buff
, "LOPROC+%x", sh_type
- SHT_LOPROC
);
2346 else if ((sh_type
>= SHT_LOOS
) && (sh_type
<= SHT_HIOS
))
2347 sprintf (buff
, "LOOS+%x", sh_type
- SHT_LOOS
);
2348 else if ((sh_type
>= SHT_LOUSER
) && (sh_type
<= SHT_HIUSER
))
2349 sprintf (buff
, "LOUSER+%x", sh_type
- SHT_LOUSER
);
2351 sprintf (buff
, _("<unknown>: %x"), sh_type
);
2357 #define OPTION_DEBUG_DUMP 512
2359 struct option options
[] =
2361 {"all", no_argument
, 0, 'a'},
2362 {"file-header", no_argument
, 0, 'h'},
2363 {"program-headers", no_argument
, 0, 'l'},
2364 {"headers", no_argument
, 0, 'e'},
2365 {"histogram", no_argument
, 0, 'I'},
2366 {"segments", no_argument
, 0, 'l'},
2367 {"sections", no_argument
, 0, 'S'},
2368 {"section-headers", no_argument
, 0, 'S'},
2369 {"symbols", no_argument
, 0, 's'},
2370 {"syms", no_argument
, 0, 's'},
2371 {"relocs", no_argument
, 0, 'r'},
2372 {"notes", no_argument
, 0, 'n'},
2373 {"dynamic", no_argument
, 0, 'd'},
2374 {"arch-specific", no_argument
, 0, 'A'},
2375 {"version-info", no_argument
, 0, 'V'},
2376 {"use-dynamic", no_argument
, 0, 'D'},
2377 {"hex-dump", required_argument
, 0, 'x'},
2378 {"debug-dump", optional_argument
, 0, OPTION_DEBUG_DUMP
},
2379 {"unwind", no_argument
, 0, 'u'},
2380 #ifdef SUPPORT_DISASSEMBLY
2381 {"instruction-dump", required_argument
, 0, 'i'},
2384 {"version", no_argument
, 0, 'v'},
2385 {"wide", no_argument
, 0, 'W'},
2386 {"help", no_argument
, 0, 'H'},
2387 {0, no_argument
, 0, 0}
2393 fprintf (stdout
, _("Usage: readelf <option(s)> elf-file(s)\n"));
2394 fprintf (stdout
, _(" Display information about the contents of ELF format files\n"));
2395 fprintf (stdout
, _(" Options are:\n\
2396 -a --all Equivalent to: -h -l -S -s -r -d -V -A -I\n\
2397 -h --file-header Display the ELF file header\n\
2398 -l --program-headers Display the program headers\n\
2399 --segments An alias for --program-headers\n\
2400 -S --section-headers Display the sections' header\n\
2401 --sections An alias for --section-headers\n\
2402 -e --headers Equivalent to: -h -l -S\n\
2403 -s --syms Display the symbol table\n\
2404 --symbols An alias for --syms\n\
2405 -n --notes Display the core notes (if present)\n\
2406 -r --relocs Display the relocations (if present)\n\
2407 -u --unwind Display the unwind info (if present)\n\
2408 -d --dynamic Display the dynamic segment (if present)\n\
2409 -V --version-info Display the version sections (if present)\n\
2410 -A --arch-specific Display architecture specific information (if any).\n\
2411 -D --use-dynamic Use the dynamic section info when displaying symbols\n\
2412 -x --hex-dump=<number> Dump the contents of section <number>\n\
2413 -w[liaprmfFso] or\n\
2414 --debug-dump[=line,=info,=abbrev,=pubnames,=ranges,=macro,=frames,=str,=loc]\n\
2415 Display the contents of DWARF2 debug sections\n"));
2416 #ifdef SUPPORT_DISASSEMBLY
2417 fprintf (stdout
, _("\
2418 -i --instruction-dump=<number>\n\
2419 Disassemble the contents of section <number>\n"));
2421 fprintf (stdout
, _("\
2422 -I --histogram Display histogram of bucket list lengths\n\
2423 -W --wide Allow output width to exceed 80 characters\n\
2424 -H --help Display this information\n\
2425 -v --version Display the version number of readelf\n"));
2426 fprintf (stdout
, _("Report bugs to %s\n"), REPORT_BUGS_TO
);
2432 request_dump (unsigned int section
, int type
)
2434 if (section
>= num_dump_sects
)
2436 char *new_dump_sects
;
2438 new_dump_sects
= calloc (section
+ 1, 1);
2440 if (new_dump_sects
== NULL
)
2441 error (_("Out of memory allocating dump request table."));
2444 /* Copy current flag settings. */
2445 memcpy (new_dump_sects
, dump_sects
, num_dump_sects
);
2449 dump_sects
= new_dump_sects
;
2450 num_dump_sects
= section
+ 1;
2455 dump_sects
[section
] |= type
;
2461 parse_args (int argc
, char **argv
)
2468 while ((c
= getopt_long
2469 (argc
, argv
, "ersuahnldSDAIw::x:i:vVWH", options
, NULL
)) != EOF
)
2536 section
= strtoul (optarg
, & cp
, 0);
2537 if (! *cp
&& section
>= 0)
2539 request_dump (section
, HEX_DUMP
);
2549 unsigned int index
= 0;
2553 while (optarg
[index
])
2554 switch (optarg
[index
++])
2563 do_debug_abbrevs
= 1;
2573 do_debug_pubnames
= 1;
2578 do_debug_aranges
= 1;
2582 do_debug_frames_interp
= 1;
2584 do_debug_frames
= 1;
2589 do_debug_macinfo
= 1;
2603 warn (_("Unrecognized debug option '%s'\n"), optarg
);
2608 case OPTION_DEBUG_DUMP
:
2614 static const char *debug_dump_opt
[]
2615 = { "line", "info", "abbrev", "pubnames", "ranges",
2616 "macro", "frames", "frames-interp", "str", "loc", NULL
};
2625 for (index
= 0; debug_dump_opt
[index
]; index
++)
2627 size_t len
= strlen (debug_dump_opt
[index
]);
2629 if (strncmp (p
, debug_dump_opt
[index
], len
) == 0
2630 && (p
[len
] == ',' || p
[len
] == '\0'))
2639 do_debug_abbrevs
= 1;
2650 do_debug_pubnames
= 1;
2654 do_debug_aranges
= 1;
2659 do_debug_frames_interp
= 1;
2660 do_debug_frames
= 1;
2664 do_debug_macinfo
= 1;
2677 if (debug_dump_opt
[index
] == NULL
)
2679 warn (_("Unrecognized debug option '%s'\n"), p
);
2680 p
= strchr (p
, ',');
2690 #ifdef SUPPORT_DISASSEMBLY
2693 section
= strtoul (optarg
, & cp
, 0);
2694 if (! *cp
&& section
>= 0)
2696 request_dump (section
, DISASS_DUMP
);
2702 print_version (program_name
);
2712 /* xgettext:c-format */
2713 error (_("Invalid option '-%c'\n"), c
);
2720 if (!do_dynamic
&& !do_syms
&& !do_reloc
&& !do_unwind
&& !do_sections
2721 && !do_segments
&& !do_header
&& !do_dump
&& !do_version
2722 && !do_histogram
&& !do_debugging
&& !do_arch
&& !do_notes
)
2726 warn (_("Nothing to do.\n"));
2732 get_elf_class (unsigned int elf_class
)
2734 static char buff
[32];
2738 case ELFCLASSNONE
: return _("none");
2739 case ELFCLASS32
: return "ELF32";
2740 case ELFCLASS64
: return "ELF64";
2742 sprintf (buff
, _("<unknown: %x>"), elf_class
);
2748 get_data_encoding (unsigned int encoding
)
2750 static char buff
[32];
2754 case ELFDATANONE
: return _("none");
2755 case ELFDATA2LSB
: return _("2's complement, little endian");
2756 case ELFDATA2MSB
: return _("2's complement, big endian");
2758 sprintf (buff
, _("<unknown: %x>"), encoding
);
2763 /* Decode the data held in 'elf_header'. */
2766 process_file_header (void)
2768 if ( elf_header
.e_ident
[EI_MAG0
] != ELFMAG0
2769 || elf_header
.e_ident
[EI_MAG1
] != ELFMAG1
2770 || elf_header
.e_ident
[EI_MAG2
] != ELFMAG2
2771 || elf_header
.e_ident
[EI_MAG3
] != ELFMAG3
)
2774 (_("Not an ELF file - it has the wrong magic bytes at the start\n"));
2782 printf (_("ELF Header:\n"));
2783 printf (_(" Magic: "));
2784 for (i
= 0; i
< EI_NIDENT
; i
++)
2785 printf ("%2.2x ", elf_header
.e_ident
[i
]);
2787 printf (_(" Class: %s\n"),
2788 get_elf_class (elf_header
.e_ident
[EI_CLASS
]));
2789 printf (_(" Data: %s\n"),
2790 get_data_encoding (elf_header
.e_ident
[EI_DATA
]));
2791 printf (_(" Version: %d %s\n"),
2792 elf_header
.e_ident
[EI_VERSION
],
2793 (elf_header
.e_ident
[EI_VERSION
] == EV_CURRENT
2795 : (elf_header
.e_ident
[EI_VERSION
] != EV_NONE
2798 printf (_(" OS/ABI: %s\n"),
2799 get_osabi_name (elf_header
.e_ident
[EI_OSABI
]));
2800 printf (_(" ABI Version: %d\n"),
2801 elf_header
.e_ident
[EI_ABIVERSION
]);
2802 printf (_(" Type: %s\n"),
2803 get_file_type (elf_header
.e_type
));
2804 printf (_(" Machine: %s\n"),
2805 get_machine_name (elf_header
.e_machine
));
2806 printf (_(" Version: 0x%lx\n"),
2807 (unsigned long) elf_header
.e_version
);
2809 printf (_(" Entry point address: "));
2810 print_vma ((bfd_vma
) elf_header
.e_entry
, PREFIX_HEX
);
2811 printf (_("\n Start of program headers: "));
2812 print_vma ((bfd_vma
) elf_header
.e_phoff
, DEC
);
2813 printf (_(" (bytes into file)\n Start of section headers: "));
2814 print_vma ((bfd_vma
) elf_header
.e_shoff
, DEC
);
2815 printf (_(" (bytes into file)\n"));
2817 printf (_(" Flags: 0x%lx%s\n"),
2818 (unsigned long) elf_header
.e_flags
,
2819 get_machine_flags (elf_header
.e_flags
, elf_header
.e_machine
));
2820 printf (_(" Size of this header: %ld (bytes)\n"),
2821 (long) elf_header
.e_ehsize
);
2822 printf (_(" Size of program headers: %ld (bytes)\n"),
2823 (long) elf_header
.e_phentsize
);
2824 printf (_(" Number of program headers: %ld\n"),
2825 (long) elf_header
.e_phnum
);
2826 printf (_(" Size of section headers: %ld (bytes)\n"),
2827 (long) elf_header
.e_shentsize
);
2828 printf (_(" Number of section headers: %ld"),
2829 (long) elf_header
.e_shnum
);
2830 if (section_headers
!= NULL
&& elf_header
.e_shnum
== 0)
2831 printf (" (%ld)", (long) section_headers
[0].sh_size
);
2832 putc ('\n', stdout
);
2833 printf (_(" Section header string table index: %ld"),
2834 (long) elf_header
.e_shstrndx
);
2835 if (section_headers
!= NULL
&& elf_header
.e_shstrndx
== SHN_XINDEX
)
2836 printf (" (%ld)", (long) section_headers
[0].sh_link
);
2837 putc ('\n', stdout
);
2840 if (section_headers
!= NULL
)
2842 if (elf_header
.e_shnum
== 0)
2843 elf_header
.e_shnum
= section_headers
[0].sh_size
;
2844 if (elf_header
.e_shstrndx
== SHN_XINDEX
)
2845 elf_header
.e_shstrndx
= section_headers
[0].sh_link
;
2846 free (section_headers
);
2847 section_headers
= NULL
;
2855 get_32bit_program_headers (FILE *file
, Elf_Internal_Phdr
*program_headers
)
2857 Elf32_External_Phdr
*phdrs
;
2858 Elf32_External_Phdr
*external
;
2859 Elf_Internal_Phdr
*internal
;
2862 phdrs
= get_data (NULL
, file
, elf_header
.e_phoff
,
2863 elf_header
.e_phentsize
* elf_header
.e_phnum
,
2864 _("program headers"));
2868 for (i
= 0, internal
= program_headers
, external
= phdrs
;
2869 i
< elf_header
.e_phnum
;
2870 i
++, internal
++, external
++)
2872 internal
->p_type
= BYTE_GET (external
->p_type
);
2873 internal
->p_offset
= BYTE_GET (external
->p_offset
);
2874 internal
->p_vaddr
= BYTE_GET (external
->p_vaddr
);
2875 internal
->p_paddr
= BYTE_GET (external
->p_paddr
);
2876 internal
->p_filesz
= BYTE_GET (external
->p_filesz
);
2877 internal
->p_memsz
= BYTE_GET (external
->p_memsz
);
2878 internal
->p_flags
= BYTE_GET (external
->p_flags
);
2879 internal
->p_align
= BYTE_GET (external
->p_align
);
2888 get_64bit_program_headers (FILE *file
, Elf_Internal_Phdr
*program_headers
)
2890 Elf64_External_Phdr
*phdrs
;
2891 Elf64_External_Phdr
*external
;
2892 Elf_Internal_Phdr
*internal
;
2895 phdrs
= get_data (NULL
, file
, elf_header
.e_phoff
,
2896 elf_header
.e_phentsize
* elf_header
.e_phnum
,
2897 _("program headers"));
2901 for (i
= 0, internal
= program_headers
, external
= phdrs
;
2902 i
< elf_header
.e_phnum
;
2903 i
++, internal
++, external
++)
2905 internal
->p_type
= BYTE_GET (external
->p_type
);
2906 internal
->p_flags
= BYTE_GET (external
->p_flags
);
2907 internal
->p_offset
= BYTE_GET8 (external
->p_offset
);
2908 internal
->p_vaddr
= BYTE_GET8 (external
->p_vaddr
);
2909 internal
->p_paddr
= BYTE_GET8 (external
->p_paddr
);
2910 internal
->p_filesz
= BYTE_GET8 (external
->p_filesz
);
2911 internal
->p_memsz
= BYTE_GET8 (external
->p_memsz
);
2912 internal
->p_align
= BYTE_GET8 (external
->p_align
);
2920 /* Returns 1 if the program headers were read into `program_headers'. */
2923 get_program_headers (FILE *file
)
2925 Elf_Internal_Phdr
*phdrs
;
2927 /* Check cache of prior read. */
2928 if (program_headers
!= NULL
)
2931 phdrs
= malloc (elf_header
.e_phnum
* sizeof (Elf_Internal_Phdr
));
2935 error (_("Out of memory\n"));
2940 ? get_32bit_program_headers (file
, phdrs
)
2941 : get_64bit_program_headers (file
, phdrs
))
2943 program_headers
= phdrs
;
2951 /* Returns 1 if the program headers were loaded. */
2954 process_program_headers (FILE *file
)
2956 Elf_Internal_Phdr
*segment
;
2959 if (elf_header
.e_phnum
== 0)
2962 printf (_("\nThere are no program headers in this file.\n"));
2966 if (do_segments
&& !do_header
)
2968 printf (_("\nElf file type is %s\n"), get_file_type (elf_header
.e_type
));
2969 printf (_("Entry point "));
2970 print_vma ((bfd_vma
) elf_header
.e_entry
, PREFIX_HEX
);
2971 printf (_("\nThere are %d program headers, starting at offset "),
2972 elf_header
.e_phnum
);
2973 print_vma ((bfd_vma
) elf_header
.e_phoff
, DEC
);
2977 if (! get_program_headers (file
))
2982 if (elf_header
.e_phnum
> 1)
2983 printf (_("\nProgram Headers:\n"));
2985 printf (_("\nProgram Headers:\n"));
2989 (_(" Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align\n"));
2992 (_(" Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align\n"));
2996 (_(" Type Offset VirtAddr PhysAddr\n"));
2998 (_(" FileSiz MemSiz Flags Align\n"));
3005 for (i
= 0, segment
= program_headers
;
3006 i
< elf_header
.e_phnum
;
3011 printf (" %-14.14s ", get_segment_type (segment
->p_type
));
3015 printf ("0x%6.6lx ", (unsigned long) segment
->p_offset
);
3016 printf ("0x%8.8lx ", (unsigned long) segment
->p_vaddr
);
3017 printf ("0x%8.8lx ", (unsigned long) segment
->p_paddr
);
3018 printf ("0x%5.5lx ", (unsigned long) segment
->p_filesz
);
3019 printf ("0x%5.5lx ", (unsigned long) segment
->p_memsz
);
3021 (segment
->p_flags
& PF_R
? 'R' : ' '),
3022 (segment
->p_flags
& PF_W
? 'W' : ' '),
3023 (segment
->p_flags
& PF_X
? 'E' : ' '));
3024 printf ("%#lx", (unsigned long) segment
->p_align
);
3028 if ((unsigned long) segment
->p_offset
== segment
->p_offset
)
3029 printf ("0x%6.6lx ", (unsigned long) segment
->p_offset
);
3032 print_vma (segment
->p_offset
, FULL_HEX
);
3036 print_vma (segment
->p_vaddr
, FULL_HEX
);
3038 print_vma (segment
->p_paddr
, FULL_HEX
);
3041 if ((unsigned long) segment
->p_filesz
== segment
->p_filesz
)
3042 printf ("0x%6.6lx ", (unsigned long) segment
->p_filesz
);
3045 print_vma (segment
->p_filesz
, FULL_HEX
);
3049 if ((unsigned long) segment
->p_memsz
== segment
->p_memsz
)
3050 printf ("0x%6.6lx", (unsigned long) segment
->p_memsz
);
3053 print_vma (segment
->p_offset
, FULL_HEX
);
3057 (segment
->p_flags
& PF_R
? 'R' : ' '),
3058 (segment
->p_flags
& PF_W
? 'W' : ' '),
3059 (segment
->p_flags
& PF_X
? 'E' : ' '));
3061 if ((unsigned long) segment
->p_align
== segment
->p_align
)
3062 printf ("%#lx", (unsigned long) segment
->p_align
);
3065 print_vma (segment
->p_align
, PREFIX_HEX
);
3070 print_vma (segment
->p_offset
, FULL_HEX
);
3072 print_vma (segment
->p_vaddr
, FULL_HEX
);
3074 print_vma (segment
->p_paddr
, FULL_HEX
);
3076 print_vma (segment
->p_filesz
, FULL_HEX
);
3078 print_vma (segment
->p_memsz
, FULL_HEX
);
3080 (segment
->p_flags
& PF_R
? 'R' : ' '),
3081 (segment
->p_flags
& PF_W
? 'W' : ' '),
3082 (segment
->p_flags
& PF_X
? 'E' : ' '));
3083 print_vma (segment
->p_align
, HEX
);
3087 switch (segment
->p_type
)
3091 error (_("more than one dynamic segment\n"));
3093 dynamic_addr
= segment
->p_offset
;
3094 dynamic_size
= segment
->p_filesz
;
3098 if (fseek (file
, archive_file_offset
+ (long) segment
->p_offset
,
3100 error (_("Unable to find program interpreter name\n"));
3103 program_interpreter
[0] = 0;
3104 fscanf (file
, "%63s", program_interpreter
);
3107 printf (_("\n [Requesting program interpreter: %s]"),
3108 program_interpreter
);
3114 putc ('\n', stdout
);
3117 if (do_segments
&& section_headers
!= NULL
)
3119 printf (_("\n Section to Segment mapping:\n"));
3120 printf (_(" Segment Sections...\n"));
3122 assert (string_table
!= NULL
);
3124 for (i
= 0; i
< elf_header
.e_phnum
; i
++)
3127 Elf_Internal_Shdr
*section
;
3129 segment
= program_headers
+ i
;
3130 section
= section_headers
;
3132 printf (" %2.2d ", i
);
3134 for (j
= 1; j
< elf_header
.e_shnum
; j
++, section
++)
3136 if (section
->sh_size
> 0
3137 /* Compare allocated sections by VMA, unallocated
3138 sections by file offset. */
3139 && (section
->sh_flags
& SHF_ALLOC
3140 ? (section
->sh_addr
>= segment
->p_vaddr
3141 && section
->sh_addr
+ section
->sh_size
3142 <= segment
->p_vaddr
+ segment
->p_memsz
)
3143 : ((bfd_vma
) section
->sh_offset
>= segment
->p_offset
3144 && (section
->sh_offset
+ section
->sh_size
3145 <= segment
->p_offset
+ segment
->p_filesz
))))
3146 printf ("%s ", SECTION_NAME (section
));
3157 /* Find the file offset corresponding to VMA by using the program headers. */
3160 offset_from_vma (FILE *file
, bfd_vma vma
, bfd_size_type size
)
3162 Elf_Internal_Phdr
*seg
;
3164 if (! get_program_headers (file
))
3166 warn (_("Cannot interpret virtual addresses without program headers.\n"));
3170 for (seg
= program_headers
;
3171 seg
< program_headers
+ elf_header
.e_phnum
;
3174 if (seg
->p_type
!= PT_LOAD
)
3177 if (vma
>= (seg
->p_vaddr
& -seg
->p_align
)
3178 && vma
+ size
<= seg
->p_vaddr
+ seg
->p_filesz
)
3179 return vma
- seg
->p_vaddr
+ seg
->p_offset
;
3182 warn (_("Virtual address 0x%lx not located in any PT_LOAD segment.\n"),
3189 get_32bit_section_headers (FILE *file
, unsigned int num
)
3191 Elf32_External_Shdr
*shdrs
;
3192 Elf_Internal_Shdr
*internal
;
3195 shdrs
= get_data (NULL
, file
, elf_header
.e_shoff
,
3196 elf_header
.e_shentsize
* num
, _("section headers"));
3200 section_headers
= malloc (num
* sizeof (Elf_Internal_Shdr
));
3202 if (section_headers
== NULL
)
3204 error (_("Out of memory\n"));
3208 for (i
= 0, internal
= section_headers
;
3212 internal
->sh_name
= BYTE_GET (shdrs
[i
].sh_name
);
3213 internal
->sh_type
= BYTE_GET (shdrs
[i
].sh_type
);
3214 internal
->sh_flags
= BYTE_GET (shdrs
[i
].sh_flags
);
3215 internal
->sh_addr
= BYTE_GET (shdrs
[i
].sh_addr
);
3216 internal
->sh_offset
= BYTE_GET (shdrs
[i
].sh_offset
);
3217 internal
->sh_size
= BYTE_GET (shdrs
[i
].sh_size
);
3218 internal
->sh_link
= BYTE_GET (shdrs
[i
].sh_link
);
3219 internal
->sh_info
= BYTE_GET (shdrs
[i
].sh_info
);
3220 internal
->sh_addralign
= BYTE_GET (shdrs
[i
].sh_addralign
);
3221 internal
->sh_entsize
= BYTE_GET (shdrs
[i
].sh_entsize
);
3230 get_64bit_section_headers (FILE *file
, unsigned int num
)
3232 Elf64_External_Shdr
*shdrs
;
3233 Elf_Internal_Shdr
*internal
;
3236 shdrs
= get_data (NULL
, file
, elf_header
.e_shoff
,
3237 elf_header
.e_shentsize
* num
, _("section headers"));
3241 section_headers
= malloc (num
* sizeof (Elf_Internal_Shdr
));
3243 if (section_headers
== NULL
)
3245 error (_("Out of memory\n"));
3249 for (i
= 0, internal
= section_headers
;
3253 internal
->sh_name
= BYTE_GET (shdrs
[i
].sh_name
);
3254 internal
->sh_type
= BYTE_GET (shdrs
[i
].sh_type
);
3255 internal
->sh_flags
= BYTE_GET8 (shdrs
[i
].sh_flags
);
3256 internal
->sh_addr
= BYTE_GET8 (shdrs
[i
].sh_addr
);
3257 internal
->sh_size
= BYTE_GET8 (shdrs
[i
].sh_size
);
3258 internal
->sh_entsize
= BYTE_GET8 (shdrs
[i
].sh_entsize
);
3259 internal
->sh_link
= BYTE_GET (shdrs
[i
].sh_link
);
3260 internal
->sh_info
= BYTE_GET (shdrs
[i
].sh_info
);
3261 internal
->sh_offset
= BYTE_GET (shdrs
[i
].sh_offset
);
3262 internal
->sh_addralign
= BYTE_GET (shdrs
[i
].sh_addralign
);
3270 static Elf_Internal_Sym
*
3271 get_32bit_elf_symbols (FILE *file
, Elf_Internal_Shdr
*section
)
3273 unsigned long number
;
3274 Elf32_External_Sym
*esyms
;
3275 Elf_External_Sym_Shndx
*shndx
;
3276 Elf_Internal_Sym
*isyms
;
3277 Elf_Internal_Sym
*psym
;
3280 esyms
= get_data (NULL
, file
, section
->sh_offset
, section
->sh_size
,
3286 if (symtab_shndx_hdr
!= NULL
3287 && (symtab_shndx_hdr
->sh_link
3288 == (unsigned long) SECTION_HEADER_NUM (section
- section_headers
)))
3290 shndx
= get_data (NULL
, file
, symtab_shndx_hdr
->sh_offset
,
3291 symtab_shndx_hdr
->sh_size
, _("symtab shndx"));
3299 number
= section
->sh_size
/ section
->sh_entsize
;
3300 isyms
= malloc (number
* sizeof (Elf_Internal_Sym
));
3304 error (_("Out of memory\n"));
3311 for (j
= 0, psym
= isyms
;
3315 psym
->st_name
= BYTE_GET (esyms
[j
].st_name
);
3316 psym
->st_value
= BYTE_GET (esyms
[j
].st_value
);
3317 psym
->st_size
= BYTE_GET (esyms
[j
].st_size
);
3318 psym
->st_shndx
= BYTE_GET (esyms
[j
].st_shndx
);
3319 if (psym
->st_shndx
== SHN_XINDEX
&& shndx
!= NULL
)
3321 = byte_get ((unsigned char *) &shndx
[j
], sizeof (shndx
[j
]));
3322 psym
->st_info
= BYTE_GET (esyms
[j
].st_info
);
3323 psym
->st_other
= BYTE_GET (esyms
[j
].st_other
);
3333 static Elf_Internal_Sym
*
3334 get_64bit_elf_symbols (FILE *file
, Elf_Internal_Shdr
*section
)
3336 unsigned long number
;
3337 Elf64_External_Sym
*esyms
;
3338 Elf_External_Sym_Shndx
*shndx
;
3339 Elf_Internal_Sym
*isyms
;
3340 Elf_Internal_Sym
*psym
;
3343 esyms
= get_data (NULL
, file
, section
->sh_offset
, section
->sh_size
,
3349 if (symtab_shndx_hdr
!= NULL
3350 && (symtab_shndx_hdr
->sh_link
3351 == (unsigned long) SECTION_HEADER_NUM (section
- section_headers
)))
3353 shndx
= get_data (NULL
, file
, symtab_shndx_hdr
->sh_offset
,
3354 symtab_shndx_hdr
->sh_size
, _("symtab shndx"));
3362 number
= section
->sh_size
/ section
->sh_entsize
;
3363 isyms
= malloc (number
* sizeof (Elf_Internal_Sym
));
3367 error (_("Out of memory\n"));
3374 for (j
= 0, psym
= isyms
;
3378 psym
->st_name
= BYTE_GET (esyms
[j
].st_name
);
3379 psym
->st_info
= BYTE_GET (esyms
[j
].st_info
);
3380 psym
->st_other
= BYTE_GET (esyms
[j
].st_other
);
3381 psym
->st_shndx
= BYTE_GET (esyms
[j
].st_shndx
);
3382 if (psym
->st_shndx
== SHN_XINDEX
&& shndx
!= NULL
)
3384 = byte_get ((unsigned char *) &shndx
[j
], sizeof (shndx
[j
]));
3385 psym
->st_value
= BYTE_GET8 (esyms
[j
].st_value
);
3386 psym
->st_size
= BYTE_GET8 (esyms
[j
].st_size
);
3397 get_elf_section_flags (bfd_vma sh_flags
)
3399 static char buff
[32];
3407 flag
= sh_flags
& - sh_flags
;
3412 case SHF_WRITE
: strcat (buff
, "W"); break;
3413 case SHF_ALLOC
: strcat (buff
, "A"); break;
3414 case SHF_EXECINSTR
: strcat (buff
, "X"); break;
3415 case SHF_MERGE
: strcat (buff
, "M"); break;
3416 case SHF_STRINGS
: strcat (buff
, "S"); break;
3417 case SHF_INFO_LINK
: strcat (buff
, "I"); break;
3418 case SHF_LINK_ORDER
: strcat (buff
, "L"); break;
3419 case SHF_OS_NONCONFORMING
: strcat (buff
, "O"); break;
3420 case SHF_GROUP
: strcat (buff
, "G"); break;
3421 case SHF_TLS
: strcat (buff
, "T"); break;
3424 if (flag
& SHF_MASKOS
)
3427 sh_flags
&= ~ SHF_MASKOS
;
3429 else if (flag
& SHF_MASKPROC
)
3432 sh_flags
&= ~ SHF_MASKPROC
;
3444 process_section_headers (FILE *file
)
3446 Elf_Internal_Shdr
*section
;
3449 section_headers
= NULL
;
3451 if (elf_header
.e_shnum
== 0)
3454 printf (_("\nThere are no sections in this file.\n"));
3459 if (do_sections
&& !do_header
)
3460 printf (_("There are %d section headers, starting at offset 0x%lx:\n"),
3461 elf_header
.e_shnum
, (unsigned long) elf_header
.e_shoff
);
3465 if (! get_32bit_section_headers (file
, elf_header
.e_shnum
))
3468 else if (! get_64bit_section_headers (file
, elf_header
.e_shnum
))
3471 /* Read in the string table, so that we have names to display. */
3472 section
= SECTION_HEADER (elf_header
.e_shstrndx
);
3474 if (section
->sh_size
!= 0)
3476 string_table
= get_data (NULL
, file
, section
->sh_offset
,
3477 section
->sh_size
, _("string table"));
3479 if (string_table
== NULL
)
3482 string_table_length
= section
->sh_size
;
3485 /* Scan the sections for the dynamic symbol table
3486 and dynamic string table and debug sections. */
3487 dynamic_symbols
= NULL
;
3488 dynamic_strings
= NULL
;
3489 dynamic_syminfo
= NULL
;
3490 symtab_shndx_hdr
= NULL
;
3492 for (i
= 0, section
= section_headers
;
3493 i
< elf_header
.e_shnum
;
3496 char *name
= SECTION_NAME (section
);
3498 if (section
->sh_type
== SHT_DYNSYM
)
3500 if (dynamic_symbols
!= NULL
)
3502 error (_("File contains multiple dynamic symbol tables\n"));
3506 num_dynamic_syms
= section
->sh_size
/ section
->sh_entsize
;
3507 dynamic_symbols
= GET_ELF_SYMBOLS (file
, section
);
3509 else if (section
->sh_type
== SHT_STRTAB
3510 && strcmp (name
, ".dynstr") == 0)
3512 if (dynamic_strings
!= NULL
)
3514 error (_("File contains multiple dynamic string tables\n"));
3518 dynamic_strings
= get_data (NULL
, file
, section
->sh_offset
,
3519 section
->sh_size
, _("dynamic strings"));
3521 else if (section
->sh_type
== SHT_SYMTAB_SHNDX
)
3523 if (symtab_shndx_hdr
!= NULL
)
3525 error (_("File contains multiple symtab shndx tables\n"));
3528 symtab_shndx_hdr
= section
;
3530 else if ((do_debugging
|| do_debug_info
|| do_debug_abbrevs
3531 || do_debug_lines
|| do_debug_pubnames
|| do_debug_aranges
3532 || do_debug_frames
|| do_debug_macinfo
|| do_debug_str
3534 && strncmp (name
, ".debug_", 7) == 0)
3539 || (do_debug_info
&& (strcmp (name
, "info") == 0))
3540 || (do_debug_abbrevs
&& (strcmp (name
, "abbrev") == 0))
3541 || (do_debug_lines
&& (strcmp (name
, "line") == 0))
3542 || (do_debug_pubnames
&& (strcmp (name
, "pubnames") == 0))
3543 || (do_debug_aranges
&& (strcmp (name
, "aranges") == 0))
3544 || (do_debug_frames
&& (strcmp (name
, "frame") == 0))
3545 || (do_debug_macinfo
&& (strcmp (name
, "macinfo") == 0))
3546 || (do_debug_str
&& (strcmp (name
, "str") == 0))
3547 || (do_debug_loc
&& (strcmp (name
, "loc") == 0))
3549 request_dump (i
, DEBUG_DUMP
);
3551 /* linkonce section to be combined with .debug_info at link time. */
3552 else if ((do_debugging
|| do_debug_info
)
3553 && strncmp (name
, ".gnu.linkonce.wi.", 17) == 0)
3554 request_dump (i
, DEBUG_DUMP
);
3555 else if (do_debug_frames
&& strcmp (name
, ".eh_frame") == 0)
3556 request_dump (i
, DEBUG_DUMP
);
3562 if (elf_header
.e_shnum
> 1)
3563 printf (_("\nSection Headers:\n"));
3565 printf (_("\nSection Header:\n"));
3569 (_(" [Nr] Name Type Addr Off Size ES Flg Lk Inf Al\n"));
3572 (_(" [Nr] Name Type Address Off Size ES Flg Lk Inf Al\n"));
3575 printf (_(" [Nr] Name Type Address Offset\n"));
3576 printf (_(" Size EntSize Flags Link Info Align\n"));
3579 for (i
= 0, section
= section_headers
;
3580 i
< elf_header
.e_shnum
;
3583 printf (" [%2u] %-17.17s %-15.15s ",
3584 SECTION_HEADER_NUM (i
),
3585 SECTION_NAME (section
),
3586 get_section_type_name (section
->sh_type
));
3590 print_vma (section
->sh_addr
, LONG_HEX
);
3592 printf ( " %6.6lx %6.6lx %2.2lx",
3593 (unsigned long) section
->sh_offset
,
3594 (unsigned long) section
->sh_size
,
3595 (unsigned long) section
->sh_entsize
);
3597 printf (" %3s ", get_elf_section_flags (section
->sh_flags
));
3599 printf ("%2ld %3lx %2ld\n",
3600 (unsigned long) section
->sh_link
,
3601 (unsigned long) section
->sh_info
,
3602 (unsigned long) section
->sh_addralign
);
3606 print_vma (section
->sh_addr
, LONG_HEX
);
3608 if ((long) section
->sh_offset
== section
->sh_offset
)
3609 printf (" %6.6lx", (unsigned long) section
->sh_offset
);
3613 print_vma (section
->sh_offset
, LONG_HEX
);
3616 if ((unsigned long) section
->sh_size
== section
->sh_size
)
3617 printf (" %6.6lx", (unsigned long) section
->sh_size
);
3621 print_vma (section
->sh_size
, LONG_HEX
);
3624 if ((unsigned long) section
->sh_entsize
== section
->sh_entsize
)
3625 printf (" %2.2lx", (unsigned long) section
->sh_entsize
);
3629 print_vma (section
->sh_entsize
, LONG_HEX
);
3632 printf (" %3s ", get_elf_section_flags (section
->sh_flags
));
3634 printf ("%2ld %3lx ",
3635 (unsigned long) section
->sh_link
,
3636 (unsigned long) section
->sh_info
);
3638 if ((unsigned long) section
->sh_addralign
== section
->sh_addralign
)
3639 printf ("%2ld\n", (unsigned long) section
->sh_addralign
);
3642 print_vma (section
->sh_addralign
, DEC
);
3649 print_vma (section
->sh_addr
, LONG_HEX
);
3650 if ((long) section
->sh_offset
== section
->sh_offset
)
3651 printf (" %8.8lx", (unsigned long) section
->sh_offset
);
3655 print_vma (section
->sh_offset
, LONG_HEX
);
3658 print_vma (section
->sh_size
, LONG_HEX
);
3660 print_vma (section
->sh_entsize
, LONG_HEX
);
3662 printf (" %3s ", get_elf_section_flags (section
->sh_flags
));
3664 printf (" %2ld %3lx %ld\n",
3665 (unsigned long) section
->sh_link
,
3666 (unsigned long) section
->sh_info
,
3667 (unsigned long) section
->sh_addralign
);
3671 printf (_("Key to Flags:\n\
3672 W (write), A (alloc), X (execute), M (merge), S (strings)\n\
3673 I (info), L (link order), G (group), x (unknown)\n\
3674 O (extra OS processing required) o (OS specific), p (processor specific)\n"));
3685 } dynamic_relocations
[] =
3687 { "REL", DT_REL
, DT_RELSZ
, FALSE
},
3688 { "RELA", DT_RELA
, DT_RELASZ
, TRUE
},
3689 { "PLT", DT_JMPREL
, DT_PLTRELSZ
, UNKNOWN
}
3692 /* Process the reloc section. */
3694 process_relocs (FILE *file
)
3696 unsigned long rel_size
;
3697 unsigned long rel_offset
;
3703 if (do_using_dynamic
)
3707 int has_dynamic_reloc
;
3710 has_dynamic_reloc
= 0;
3712 for (i
= 0; i
< ARRAY_SIZE (dynamic_relocations
); i
++)
3714 is_rela
= dynamic_relocations
[i
].rela
;
3715 name
= dynamic_relocations
[i
].name
;
3716 rel_size
= dynamic_info
[dynamic_relocations
[i
].size
];
3717 rel_offset
= dynamic_info
[dynamic_relocations
[i
].reloc
];
3719 has_dynamic_reloc
|= rel_size
;
3721 if (is_rela
== UNKNOWN
)
3723 if (dynamic_relocations
[i
].reloc
== DT_JMPREL
)
3724 switch (dynamic_info
[DT_PLTREL
])
3738 (_("\n'%s' relocation section at offset 0x%lx contains %ld bytes:\n"),
3739 name
, rel_offset
, rel_size
);
3741 dump_relocations (file
,
3742 offset_from_vma (file
, rel_offset
, rel_size
),
3744 dynamic_symbols
, num_dynamic_syms
,
3745 dynamic_strings
, is_rela
);
3749 if (! has_dynamic_reloc
)
3750 printf (_("\nThere are no dynamic relocations in this file.\n"));
3754 Elf_Internal_Shdr
*section
;
3758 for (i
= 0, section
= section_headers
;
3759 i
< elf_header
.e_shnum
;
3762 if ( section
->sh_type
!= SHT_RELA
3763 && section
->sh_type
!= SHT_REL
)
3766 rel_offset
= section
->sh_offset
;
3767 rel_size
= section
->sh_size
;
3771 Elf_Internal_Shdr
*strsec
;
3772 Elf_Internal_Sym
*symtab
;
3775 unsigned long nsyms
;
3777 printf (_("\nRelocation section "));
3779 if (string_table
== NULL
)
3780 printf ("%d", section
->sh_name
);
3782 printf (_("'%s'"), SECTION_NAME (section
));
3784 printf (_(" at offset 0x%lx contains %lu entries:\n"),
3785 rel_offset
, (unsigned long) (rel_size
/ section
->sh_entsize
));
3790 if (section
->sh_link
)
3792 Elf_Internal_Shdr
*symsec
;
3794 symsec
= SECTION_HEADER (section
->sh_link
);
3795 nsyms
= symsec
->sh_size
/ symsec
->sh_entsize
;
3796 symtab
= GET_ELF_SYMBOLS (file
, symsec
);
3801 strsec
= SECTION_HEADER (symsec
->sh_link
);
3803 strtab
= get_data (NULL
, file
, strsec
->sh_offset
,
3804 strsec
->sh_size
, _("string table"));
3806 is_rela
= section
->sh_type
== SHT_RELA
;
3808 dump_relocations (file
, rel_offset
, rel_size
,
3809 symtab
, nsyms
, strtab
, is_rela
);
3821 printf (_("\nThere are no relocations in this file.\n"));
3827 #include "unwind-ia64.h"
3829 /* An absolute address consists of a section and an offset. If the
3830 section is NULL, the offset itself is the address, otherwise, the
3831 address equals to LOAD_ADDRESS(section) + offset. */
3835 unsigned short section
;
3841 struct unw_table_entry
3843 struct absaddr start
;
3845 struct absaddr info
;
3847 *table
; /* Unwind table. */
3848 unsigned long table_len
; /* Length of unwind table. */
3849 unsigned char *info
; /* Unwind info. */
3850 unsigned long info_size
; /* Size of unwind info. */
3851 bfd_vma info_addr
; /* starting address of unwind info. */
3852 bfd_vma seg_base
; /* Starting address of segment. */
3853 Elf_Internal_Sym
*symtab
; /* The symbol table. */
3854 unsigned long nsyms
; /* Number of symbols. */
3855 char *strtab
; /* The string table. */
3856 unsigned long strtab_size
; /* Size of string table. */
3860 find_symbol_for_address (struct unw_aux_info
*aux
,
3861 struct absaddr addr
,
3862 const char **symname
,
3865 bfd_vma dist
= 0x100000;
3866 Elf_Internal_Sym
*sym
, *best
= NULL
;
3869 for (i
= 0, sym
= aux
->symtab
; i
< aux
->nsyms
; ++i
, ++sym
)
3871 if (ELF_ST_TYPE (sym
->st_info
) == STT_FUNC
3872 && sym
->st_name
!= 0
3873 && (addr
.section
== SHN_UNDEF
|| addr
.section
== sym
->st_shndx
)
3874 && addr
.offset
>= sym
->st_value
3875 && addr
.offset
- sym
->st_value
< dist
)
3878 dist
= addr
.offset
- sym
->st_value
;
3885 *symname
= (best
->st_name
>= aux
->strtab_size
3886 ? "<corrupt>" : aux
->strtab
+ best
->st_name
);
3891 *offset
= addr
.offset
;
3895 dump_ia64_unwind (struct unw_aux_info
*aux
)
3898 struct unw_table_entry
*tp
;
3901 addr_size
= is_32bit_elf
? 4 : 8;
3903 for (tp
= aux
->table
; tp
< aux
->table
+ aux
->table_len
; ++tp
)
3907 const unsigned char *dp
;
3908 const unsigned char *head
;
3909 const char *procname
;
3911 find_symbol_for_address (aux
, tp
->start
, &procname
, &offset
);
3913 fputs ("\n<", stdout
);
3917 fputs (procname
, stdout
);
3920 printf ("+%lx", (unsigned long) offset
);
3923 fputs (">: [", stdout
);
3924 print_vma (tp
->start
.offset
, PREFIX_HEX
);
3925 fputc ('-', stdout
);
3926 print_vma (tp
->end
.offset
, PREFIX_HEX
);
3927 printf ("], info at +0x%lx\n",
3928 (unsigned long) (tp
->info
.offset
- aux
->seg_base
));
3930 head
= aux
->info
+ (tp
->info
.offset
- aux
->info_addr
);
3931 stamp
= BYTE_GET8 ((unsigned char *) head
);
3933 printf (" v%u, flags=0x%lx (%s%s), len=%lu bytes\n",
3934 (unsigned) UNW_VER (stamp
),
3935 (unsigned long) ((stamp
& UNW_FLAG_MASK
) >> 32),
3936 UNW_FLAG_EHANDLER (stamp
) ? " ehandler" : "",
3937 UNW_FLAG_UHANDLER (stamp
) ? " uhandler" : "",
3938 (unsigned long) (addr_size
* UNW_LENGTH (stamp
)));
3940 if (UNW_VER (stamp
) != 1)
3942 printf ("\tUnknown version.\n");
3947 for (dp
= head
+ 8; dp
< head
+ 8 + addr_size
* UNW_LENGTH (stamp
);)
3948 dp
= unw_decode (dp
, in_body
, & in_body
);
3953 slurp_ia64_unwind_table (FILE *file
,
3954 struct unw_aux_info
*aux
,
3955 Elf_Internal_Shdr
*sec
)
3957 unsigned long size
, addr_size
, nrelas
, i
;
3958 Elf_Internal_Phdr
*seg
;
3959 struct unw_table_entry
*tep
;
3960 Elf_Internal_Shdr
*relsec
;
3961 Elf_Internal_Rela
*rela
, *rp
;
3962 unsigned char *table
, *tp
;
3963 Elf_Internal_Sym
*sym
;
3964 const char *relname
;
3966 addr_size
= is_32bit_elf
? 4 : 8;
3968 /* First, find the starting address of the segment that includes
3971 if (elf_header
.e_phnum
)
3973 if (! get_program_headers (file
))
3976 for (seg
= program_headers
;
3977 seg
< program_headers
+ elf_header
.e_phnum
;
3980 if (seg
->p_type
!= PT_LOAD
)
3983 if (sec
->sh_addr
>= seg
->p_vaddr
3984 && (sec
->sh_addr
+ sec
->sh_size
<= seg
->p_vaddr
+ seg
->p_memsz
))
3986 aux
->seg_base
= seg
->p_vaddr
;
3992 /* Second, build the unwind table from the contents of the unwind section: */
3993 size
= sec
->sh_size
;
3994 table
= get_data (NULL
, file
, sec
->sh_offset
, size
, _("unwind table"));
3998 tep
= aux
->table
= xmalloc (size
/ (3 * addr_size
) * sizeof (aux
->table
[0]));
3999 for (tp
= table
; tp
< table
+ size
; tp
+= 3 * addr_size
, ++tep
)
4001 tep
->start
.section
= SHN_UNDEF
;
4002 tep
->end
.section
= SHN_UNDEF
;
4003 tep
->info
.section
= SHN_UNDEF
;
4006 tep
->start
.offset
= byte_get ((unsigned char *) tp
+ 0, 4);
4007 tep
->end
.offset
= byte_get ((unsigned char *) tp
+ 4, 4);
4008 tep
->info
.offset
= byte_get ((unsigned char *) tp
+ 8, 4);
4012 tep
->start
.offset
= BYTE_GET8 ((unsigned char *) tp
+ 0);
4013 tep
->end
.offset
= BYTE_GET8 ((unsigned char *) tp
+ 8);
4014 tep
->info
.offset
= BYTE_GET8 ((unsigned char *) tp
+ 16);
4016 tep
->start
.offset
+= aux
->seg_base
;
4017 tep
->end
.offset
+= aux
->seg_base
;
4018 tep
->info
.offset
+= aux
->seg_base
;
4022 /* Third, apply any relocations to the unwind table: */
4024 for (relsec
= section_headers
;
4025 relsec
< section_headers
+ elf_header
.e_shnum
;
4028 if (relsec
->sh_type
!= SHT_RELA
4029 || SECTION_HEADER (relsec
->sh_info
) != sec
)
4032 if (!slurp_rela_relocs (file
, relsec
->sh_offset
, relsec
->sh_size
,
4036 for (rp
= rela
; rp
< rela
+ nrelas
; ++rp
)
4040 relname
= elf_ia64_reloc_type (ELF32_R_TYPE (rp
->r_info
));
4041 sym
= aux
->symtab
+ ELF32_R_SYM (rp
->r_info
);
4043 if (ELF32_ST_TYPE (sym
->st_info
) != STT_SECTION
)
4045 warn (_("Skipping unexpected symbol type %u\n"),
4046 ELF32_ST_TYPE (sym
->st_info
));
4052 relname
= elf_ia64_reloc_type (ELF64_R_TYPE (rp
->r_info
));
4053 sym
= aux
->symtab
+ ELF64_R_SYM (rp
->r_info
);
4055 if (ELF64_ST_TYPE (sym
->st_info
) != STT_SECTION
)
4057 warn (_("Skipping unexpected symbol type %u\n"),
4058 ELF64_ST_TYPE (sym
->st_info
));
4063 if (strncmp (relname
, "R_IA64_SEGREL", 13) != 0)
4065 warn (_("Skipping unexpected relocation type %s\n"), relname
);
4069 i
= rp
->r_offset
/ (3 * addr_size
);
4071 switch (rp
->r_offset
/addr_size
% 3)
4074 aux
->table
[i
].start
.section
= sym
->st_shndx
;
4075 aux
->table
[i
].start
.offset
+= rp
->r_addend
;
4078 aux
->table
[i
].end
.section
= sym
->st_shndx
;
4079 aux
->table
[i
].end
.offset
+= rp
->r_addend
;
4082 aux
->table
[i
].info
.section
= sym
->st_shndx
;
4083 aux
->table
[i
].info
.offset
+= rp
->r_addend
;
4093 aux
->table_len
= size
/ (3 * addr_size
);
4098 process_unwind (FILE *file
)
4100 Elf_Internal_Shdr
*sec
, *unwsec
= NULL
, *strsec
;
4101 unsigned long i
, addr_size
, unwcount
= 0, unwstart
= 0;
4102 struct unw_aux_info aux
;
4107 if (elf_header
.e_machine
!= EM_IA_64
)
4109 printf (_("\nThere are no unwind sections in this file.\n"));
4113 memset (& aux
, 0, sizeof (aux
));
4115 addr_size
= is_32bit_elf
? 4 : 8;
4117 for (i
= 0, sec
= section_headers
; i
< elf_header
.e_shnum
; ++i
, ++sec
)
4119 if (sec
->sh_type
== SHT_SYMTAB
)
4121 aux
.nsyms
= sec
->sh_size
/ sec
->sh_entsize
;
4122 aux
.symtab
= GET_ELF_SYMBOLS (file
, sec
);
4124 strsec
= SECTION_HEADER (sec
->sh_link
);
4125 aux
.strtab_size
= strsec
->sh_size
;
4126 aux
.strtab
= get_data (NULL
, file
, strsec
->sh_offset
,
4127 aux
.strtab_size
, _("string table"));
4129 else if (sec
->sh_type
== SHT_IA_64_UNWIND
)
4134 printf (_("\nThere are no unwind sections in this file.\n"));
4136 while (unwcount
-- > 0)
4141 for (i
= unwstart
, sec
= section_headers
+ unwstart
;
4142 i
< elf_header
.e_shnum
; ++i
, ++sec
)
4143 if (sec
->sh_type
== SHT_IA_64_UNWIND
)
4150 len
= sizeof (ELF_STRING_ia64_unwind_once
) - 1;
4152 if (strncmp (SECTION_NAME (unwsec
), ELF_STRING_ia64_unwind_once
,
4155 /* .gnu.linkonce.ia64unw.FOO -> .gnu.linkonce.ia64unwi.FOO */
4156 len2
= sizeof (ELF_STRING_ia64_unwind_info_once
) - 1;
4157 suffix
= SECTION_NAME (unwsec
) + len
;
4158 for (i
= 0, sec
= section_headers
; i
< elf_header
.e_shnum
;
4160 if (strncmp (SECTION_NAME (sec
),
4161 ELF_STRING_ia64_unwind_info_once
, len2
) == 0
4162 && strcmp (SECTION_NAME (sec
) + len2
, suffix
) == 0)
4167 /* .IA_64.unwindFOO -> .IA_64.unwind_infoFOO
4168 .IA_64.unwind or BAR -> .IA_64.unwind_info */
4169 len
= sizeof (ELF_STRING_ia64_unwind
) - 1;
4170 len2
= sizeof (ELF_STRING_ia64_unwind_info
) - 1;
4172 if (strncmp (SECTION_NAME (unwsec
), ELF_STRING_ia64_unwind
,
4174 suffix
= SECTION_NAME (unwsec
) + len
;
4175 for (i
= 0, sec
= section_headers
; i
< elf_header
.e_shnum
;
4177 if (strncmp (SECTION_NAME (sec
),
4178 ELF_STRING_ia64_unwind_info
, len2
) == 0
4179 && strcmp (SECTION_NAME (sec
) + len2
, suffix
) == 0)
4183 if (i
== elf_header
.e_shnum
)
4185 printf (_("\nCould not find unwind info section for "));
4187 if (string_table
== NULL
)
4188 printf ("%d", unwsec
->sh_name
);
4190 printf (_("'%s'"), SECTION_NAME (unwsec
));
4194 aux
.info_size
= sec
->sh_size
;
4195 aux
.info_addr
= sec
->sh_addr
;
4196 aux
.info
= get_data (NULL
, file
, sec
->sh_offset
, aux
.info_size
,
4199 printf (_("\nUnwind section "));
4201 if (string_table
== NULL
)
4202 printf ("%d", unwsec
->sh_name
);
4204 printf (_("'%s'"), SECTION_NAME (unwsec
));
4206 printf (_(" at offset 0x%lx contains %lu entries:\n"),
4207 (unsigned long) unwsec
->sh_offset
,
4208 (unsigned long) (unwsec
->sh_size
/ (3 * addr_size
)));
4210 (void) slurp_ia64_unwind_table (file
, & aux
, unwsec
);
4212 if (aux
.table_len
> 0)
4213 dump_ia64_unwind (& aux
);
4216 free ((char *) aux
.table
);
4218 free ((char *) aux
.info
);
4227 free ((char *) aux
.strtab
);
4233 dynamic_segment_mips_val (Elf_Internal_Dyn
*entry
)
4235 switch (entry
->d_tag
)
4238 if (entry
->d_un
.d_val
== 0)
4242 static const char * opts
[] =
4244 "QUICKSTART", "NOTPOT", "NO_LIBRARY_REPLACEMENT",
4245 "NO_MOVE", "SGI_ONLY", "GUARANTEE_INIT", "DELTA_C_PLUS_PLUS",
4246 "GUARANTEE_START_INIT", "PIXIE", "DEFAULT_DELAY_LOAD",
4247 "REQUICKSTART", "REQUICKSTARTED", "CORD", "NO_UNRES_UNDEF",
4252 for (cnt
= 0; cnt
< NUM_ELEM (opts
); ++cnt
)
4253 if (entry
->d_un
.d_val
& (1 << cnt
))
4255 printf ("%s%s", first
? "" : " ", opts
[cnt
]);
4262 case DT_MIPS_IVERSION
:
4263 if (dynamic_strings
!= NULL
)
4264 printf ("Interface Version: %s\n",
4265 dynamic_strings
+ entry
->d_un
.d_val
);
4267 printf ("%ld\n", (long) entry
->d_un
.d_ptr
);
4270 case DT_MIPS_TIME_STAMP
:
4275 time_t time
= entry
->d_un
.d_val
;
4276 tmp
= gmtime (&time
);
4277 sprintf (timebuf
, "%04u-%02u-%02uT%02u:%02u:%02u",
4278 tmp
->tm_year
+ 1900, tmp
->tm_mon
+ 1, tmp
->tm_mday
,
4279 tmp
->tm_hour
, tmp
->tm_min
, tmp
->tm_sec
);
4280 printf ("Time Stamp: %s\n", timebuf
);
4284 case DT_MIPS_RLD_VERSION
:
4285 case DT_MIPS_LOCAL_GOTNO
:
4286 case DT_MIPS_CONFLICTNO
:
4287 case DT_MIPS_LIBLISTNO
:
4288 case DT_MIPS_SYMTABNO
:
4289 case DT_MIPS_UNREFEXTNO
:
4290 case DT_MIPS_HIPAGENO
:
4291 case DT_MIPS_DELTA_CLASS_NO
:
4292 case DT_MIPS_DELTA_INSTANCE_NO
:
4293 case DT_MIPS_DELTA_RELOC_NO
:
4294 case DT_MIPS_DELTA_SYM_NO
:
4295 case DT_MIPS_DELTA_CLASSSYM_NO
:
4296 case DT_MIPS_COMPACT_SIZE
:
4297 printf ("%ld\n", (long) entry
->d_un
.d_ptr
);
4301 printf ("%#lx\n", (long) entry
->d_un
.d_ptr
);
4307 dynamic_segment_parisc_val (Elf_Internal_Dyn
*entry
)
4309 switch (entry
->d_tag
)
4311 case DT_HP_DLD_FLAGS
:
4320 { DT_HP_DEBUG_PRIVATE
, "HP_DEBUG_PRIVATE" },
4321 { DT_HP_DEBUG_CALLBACK
, "HP_DEBUG_CALLBACK" },
4322 { DT_HP_DEBUG_CALLBACK_BOR
, "HP_DEBUG_CALLBACK_BOR" },
4323 { DT_HP_NO_ENVVAR
, "HP_NO_ENVVAR" },
4324 { DT_HP_BIND_NOW
, "HP_BIND_NOW" },
4325 { DT_HP_BIND_NONFATAL
, "HP_BIND_NONFATAL" },
4326 { DT_HP_BIND_VERBOSE
, "HP_BIND_VERBOSE" },
4327 { DT_HP_BIND_RESTRICTED
, "HP_BIND_RESTRICTED" },
4328 { DT_HP_BIND_SYMBOLIC
, "HP_BIND_SYMBOLIC" },
4329 { DT_HP_RPATH_FIRST
, "HP_RPATH_FIRST" },
4330 { DT_HP_BIND_DEPTH_FIRST
, "HP_BIND_DEPTH_FIRST" }
4334 bfd_vma val
= entry
->d_un
.d_val
;
4336 for (cnt
= 0; cnt
< sizeof (flags
) / sizeof (flags
[0]); ++cnt
)
4337 if (val
& flags
[cnt
].bit
)
4341 fputs (flags
[cnt
].str
, stdout
);
4343 val
^= flags
[cnt
].bit
;
4346 if (val
!= 0 || first
)
4350 print_vma (val
, HEX
);
4356 print_vma (entry
->d_un
.d_ptr
, PREFIX_HEX
);
4363 dynamic_segment_ia64_val (Elf_Internal_Dyn
*entry
)
4365 switch (entry
->d_tag
)
4367 case DT_IA_64_PLT_RESERVE
:
4368 /* First 3 slots reserved. */
4369 print_vma (entry
->d_un
.d_ptr
, PREFIX_HEX
);
4371 print_vma (entry
->d_un
.d_ptr
+ (3 * 8), PREFIX_HEX
);
4375 print_vma (entry
->d_un
.d_ptr
, PREFIX_HEX
);
4382 get_32bit_dynamic_segment (FILE *file
)
4384 Elf32_External_Dyn
*edyn
;
4385 Elf_Internal_Dyn
*entry
;
4388 edyn
= get_data (NULL
, file
, dynamic_addr
, dynamic_size
,
4389 _("dynamic segment"));
4393 /* SGI's ELF has more than one section in the DYNAMIC segment. Determine
4394 how large this .dynamic is now. We can do this even before the byte
4395 swapping since the DT_NULL tag is recognizable. */
4397 while (*(Elf32_Word
*) edyn
[dynamic_size
++].d_tag
!= DT_NULL
)
4400 dynamic_segment
= malloc (dynamic_size
* sizeof (Elf_Internal_Dyn
));
4402 if (dynamic_segment
== NULL
)
4404 error (_("Out of memory\n"));
4409 for (i
= 0, entry
= dynamic_segment
;
4413 entry
->d_tag
= BYTE_GET (edyn
[i
].d_tag
);
4414 entry
->d_un
.d_val
= BYTE_GET (edyn
[i
].d_un
.d_val
);
4423 get_64bit_dynamic_segment (FILE *file
)
4425 Elf64_External_Dyn
*edyn
;
4426 Elf_Internal_Dyn
*entry
;
4429 edyn
= get_data (NULL
, file
, dynamic_addr
, dynamic_size
,
4430 _("dynamic segment"));
4434 /* SGI's ELF has more than one section in the DYNAMIC segment. Determine
4435 how large this .dynamic is now. We can do this even before the byte
4436 swapping since the DT_NULL tag is recognizable. */
4438 while (*(bfd_vma
*) edyn
[dynamic_size
++].d_tag
!= DT_NULL
)
4441 dynamic_segment
= malloc (dynamic_size
* sizeof (Elf_Internal_Dyn
));
4443 if (dynamic_segment
== NULL
)
4445 error (_("Out of memory\n"));
4450 for (i
= 0, entry
= dynamic_segment
;
4454 entry
->d_tag
= BYTE_GET8 (edyn
[i
].d_tag
);
4455 entry
->d_un
.d_val
= BYTE_GET8 (edyn
[i
].d_un
.d_val
);
4464 get_dynamic_flags (bfd_vma flags
)
4466 static char buff
[128];
4474 flag
= flags
& - flags
;
4482 case DF_ORIGIN
: strcpy (p
, "ORIGIN"); break;
4483 case DF_SYMBOLIC
: strcpy (p
, "SYMBOLIC"); break;
4484 case DF_TEXTREL
: strcpy (p
, "TEXTREL"); break;
4485 case DF_BIND_NOW
: strcpy (p
, "BIND_NOW"); break;
4486 case DF_STATIC_TLS
: strcpy (p
, "STATIC_TLS"); break;
4487 default: strcpy (p
, "unknown"); break;
4490 p
= strchr (p
, '\0');
4495 /* Parse and display the contents of the dynamic segment. */
4497 process_dynamic_segment (FILE *file
)
4499 Elf_Internal_Dyn
*entry
;
4502 if (dynamic_size
== 0)
4505 printf (_("\nThere is no dynamic segment in this file.\n"));
4512 if (! get_32bit_dynamic_segment (file
))
4515 else if (! get_64bit_dynamic_segment (file
))
4518 /* Find the appropriate symbol table. */
4519 if (dynamic_symbols
== NULL
)
4521 for (i
= 0, entry
= dynamic_segment
;
4525 Elf_Internal_Shdr section
;
4527 if (entry
->d_tag
!= DT_SYMTAB
)
4530 dynamic_info
[DT_SYMTAB
] = entry
->d_un
.d_val
;
4532 /* Since we do not know how big the symbol table is,
4533 we default to reading in the entire file (!) and
4534 processing that. This is overkill, I know, but it
4536 section
.sh_offset
= offset_from_vma (file
, entry
->d_un
.d_val
, 0);
4538 if (archive_file_offset
!= 0)
4539 section
.sh_size
= archive_file_size
- section
.sh_offset
;
4542 if (fseek (file
, 0, SEEK_END
))
4543 error (_("Unable to seek to end of file!"));
4545 section
.sh_size
= ftell (file
) - section
.sh_offset
;
4549 section
.sh_entsize
= sizeof (Elf32_External_Sym
);
4551 section
.sh_entsize
= sizeof (Elf64_External_Sym
);
4553 num_dynamic_syms
= section
.sh_size
/ section
.sh_entsize
;
4554 if (num_dynamic_syms
< 1)
4556 error (_("Unable to determine the number of symbols to load\n"));
4560 dynamic_symbols
= GET_ELF_SYMBOLS (file
, §ion
);
4564 /* Similarly find a string table. */
4565 if (dynamic_strings
== NULL
)
4567 for (i
= 0, entry
= dynamic_segment
;
4571 unsigned long offset
;
4574 if (entry
->d_tag
!= DT_STRTAB
)
4577 dynamic_info
[DT_STRTAB
] = entry
->d_un
.d_val
;
4579 /* Since we do not know how big the string table is,
4580 we default to reading in the entire file (!) and
4581 processing that. This is overkill, I know, but it
4584 offset
= offset_from_vma (file
, entry
->d_un
.d_val
, 0);
4586 if (archive_file_offset
!= 0)
4587 str_tab_len
= archive_file_size
- offset
;
4590 if (fseek (file
, 0, SEEK_END
))
4591 error (_("Unable to seek to end of file\n"));
4592 str_tab_len
= ftell (file
) - offset
;
4595 if (str_tab_len
< 1)
4598 (_("Unable to determine the length of the dynamic string table\n"));
4602 dynamic_strings
= get_data (NULL
, file
, offset
, str_tab_len
,
4603 _("dynamic string table"));
4608 /* And find the syminfo section if available. */
4609 if (dynamic_syminfo
== NULL
)
4611 unsigned long syminsz
= 0;
4613 for (i
= 0, entry
= dynamic_segment
;
4617 if (entry
->d_tag
== DT_SYMINENT
)
4619 /* Note: these braces are necessary to avoid a syntax
4620 error from the SunOS4 C compiler. */
4621 assert (sizeof (Elf_External_Syminfo
) == entry
->d_un
.d_val
);
4623 else if (entry
->d_tag
== DT_SYMINSZ
)
4624 syminsz
= entry
->d_un
.d_val
;
4625 else if (entry
->d_tag
== DT_SYMINFO
)
4626 dynamic_syminfo_offset
= offset_from_vma (file
, entry
->d_un
.d_val
,
4630 if (dynamic_syminfo_offset
!= 0 && syminsz
!= 0)
4632 Elf_External_Syminfo
*extsyminfo
;
4633 Elf_Internal_Syminfo
*syminfo
;
4635 /* There is a syminfo section. Read the data. */
4636 extsyminfo
= get_data (NULL
, file
, dynamic_syminfo_offset
, syminsz
,
4637 _("symbol information"));
4641 dynamic_syminfo
= malloc (syminsz
);
4642 if (dynamic_syminfo
== NULL
)
4644 error (_("Out of memory\n"));
4648 dynamic_syminfo_nent
= syminsz
/ sizeof (Elf_External_Syminfo
);
4649 for (i
= 0, syminfo
= dynamic_syminfo
; i
< dynamic_syminfo_nent
;
4652 syminfo
->si_boundto
= BYTE_GET (extsyminfo
[i
].si_boundto
);
4653 syminfo
->si_flags
= BYTE_GET (extsyminfo
[i
].si_flags
);
4660 if (do_dynamic
&& dynamic_addr
)
4661 printf (_("\nDynamic segment at offset 0x%lx contains %ld entries:\n"),
4662 dynamic_addr
, (long) dynamic_size
);
4664 printf (_(" Tag Type Name/Value\n"));
4666 for (i
= 0, entry
= dynamic_segment
;
4675 print_vma (entry
->d_tag
, FULL_HEX
);
4676 dtype
= get_dynamic_type (entry
->d_tag
);
4677 printf (" (%s)%*s", dtype
,
4678 ((is_32bit_elf
? 27 : 19)
4679 - (int) strlen (dtype
)),
4683 switch (entry
->d_tag
)
4687 puts (get_dynamic_flags (entry
->d_un
.d_val
));
4697 switch (entry
->d_tag
)
4700 printf (_("Auxiliary library"));
4704 printf (_("Filter library"));
4708 printf (_("Configuration file"));
4712 printf (_("Dependency audit library"));
4716 printf (_("Audit library"));
4720 if (dynamic_strings
)
4721 printf (": [%s]\n", dynamic_strings
+ entry
->d_un
.d_val
);
4725 print_vma (entry
->d_un
.d_val
, PREFIX_HEX
);
4734 printf (_("Flags:"));
4736 if (entry
->d_un
.d_val
== 0)
4737 printf (_(" None\n"));
4740 unsigned long int val
= entry
->d_un
.d_val
;
4742 if (val
& DTF_1_PARINIT
)
4744 printf (" PARINIT");
4745 val
^= DTF_1_PARINIT
;
4747 if (val
& DTF_1_CONFEXP
)
4749 printf (" CONFEXP");
4750 val
^= DTF_1_CONFEXP
;
4753 printf (" %lx", val
);
4762 printf (_("Flags:"));
4764 if (entry
->d_un
.d_val
== 0)
4765 printf (_(" None\n"));
4768 unsigned long int val
= entry
->d_un
.d_val
;
4770 if (val
& DF_P1_LAZYLOAD
)
4772 printf (" LAZYLOAD");
4773 val
^= DF_P1_LAZYLOAD
;
4775 if (val
& DF_P1_GROUPPERM
)
4777 printf (" GROUPPERM");
4778 val
^= DF_P1_GROUPPERM
;
4781 printf (" %lx", val
);
4790 printf (_("Flags:"));
4791 if (entry
->d_un
.d_val
== 0)
4792 printf (_(" None\n"));
4795 unsigned long int val
= entry
->d_un
.d_val
;
4802 if (val
& DF_1_GLOBAL
)
4807 if (val
& DF_1_GROUP
)
4812 if (val
& DF_1_NODELETE
)
4814 printf (" NODELETE");
4815 val
^= DF_1_NODELETE
;
4817 if (val
& DF_1_LOADFLTR
)
4819 printf (" LOADFLTR");
4820 val
^= DF_1_LOADFLTR
;
4822 if (val
& DF_1_INITFIRST
)
4824 printf (" INITFIRST");
4825 val
^= DF_1_INITFIRST
;
4827 if (val
& DF_1_NOOPEN
)
4832 if (val
& DF_1_ORIGIN
)
4837 if (val
& DF_1_DIRECT
)
4842 if (val
& DF_1_TRANS
)
4847 if (val
& DF_1_INTERPOSE
)
4849 printf (" INTERPOSE");
4850 val
^= DF_1_INTERPOSE
;
4852 if (val
& DF_1_NODEFLIB
)
4854 printf (" NODEFLIB");
4855 val
^= DF_1_NODEFLIB
;
4857 if (val
& DF_1_NODUMP
)
4862 if (val
& DF_1_CONLFAT
)
4864 printf (" CONLFAT");
4865 val
^= DF_1_CONLFAT
;
4868 printf (" %lx", val
);
4875 dynamic_info
[entry
->d_tag
] = entry
->d_un
.d_val
;
4877 puts (get_dynamic_type (entry
->d_un
.d_val
));
4897 dynamic_info
[entry
->d_tag
] = entry
->d_un
.d_val
;
4903 if (dynamic_strings
== NULL
)
4906 name
= dynamic_strings
+ entry
->d_un
.d_val
;
4910 switch (entry
->d_tag
)
4913 printf (_("Shared library: [%s]"), name
);
4915 if (strcmp (name
, program_interpreter
) == 0)
4916 printf (_(" program interpreter"));
4920 printf (_("Library soname: [%s]"), name
);
4924 printf (_("Library rpath: [%s]"), name
);
4928 printf (_("Library runpath: [%s]"), name
);
4932 print_vma (entry
->d_un
.d_val
, PREFIX_HEX
);
4937 print_vma (entry
->d_un
.d_val
, PREFIX_HEX
);
4950 dynamic_info
[entry
->d_tag
] = entry
->d_un
.d_val
;
4954 case DT_INIT_ARRAYSZ
:
4955 case DT_FINI_ARRAYSZ
:
4956 case DT_GNU_CONFLICTSZ
:
4957 case DT_GNU_LIBLISTSZ
:
4960 print_vma (entry
->d_un
.d_val
, UNSIGNED
);
4961 printf (" (bytes)\n");
4971 print_vma (entry
->d_un
.d_val
, UNSIGNED
);
4984 if (dynamic_strings
!= NULL
&& entry
->d_tag
== DT_USED
)
4988 name
= dynamic_strings
+ entry
->d_un
.d_val
;
4992 printf (_("Not needed object: [%s]\n"), name
);
4997 print_vma (entry
->d_un
.d_val
, PREFIX_HEX
);
5003 /* The value of this entry is ignored. */
5008 case DT_GNU_PRELINKED
:
5012 time_t time
= entry
->d_un
.d_val
;
5014 tmp
= gmtime (&time
);
5015 printf ("%04u-%02u-%02uT%02u:%02u:%02u\n",
5016 tmp
->tm_year
+ 1900, tmp
->tm_mon
+ 1, tmp
->tm_mday
,
5017 tmp
->tm_hour
, tmp
->tm_min
, tmp
->tm_sec
);
5023 if ((entry
->d_tag
>= DT_VERSYM
) && (entry
->d_tag
<= DT_VERNEEDNUM
))
5024 version_info
[DT_VERSIONTAGIDX (entry
->d_tag
)] =
5029 switch (elf_header
.e_machine
)
5032 case EM_MIPS_RS3_LE
:
5033 dynamic_segment_mips_val (entry
);
5036 dynamic_segment_parisc_val (entry
);
5039 dynamic_segment_ia64_val (entry
);
5042 print_vma (entry
->d_un
.d_val
, PREFIX_HEX
);
5054 get_ver_flags (unsigned int flags
)
5056 static char buff
[32];
5063 if (flags
& VER_FLG_BASE
)
5064 strcat (buff
, "BASE ");
5066 if (flags
& VER_FLG_WEAK
)
5068 if (flags
& VER_FLG_BASE
)
5069 strcat (buff
, "| ");
5071 strcat (buff
, "WEAK ");
5074 if (flags
& ~(VER_FLG_BASE
| VER_FLG_WEAK
))
5075 strcat (buff
, "| <unknown>");
5080 /* Display the contents of the version sections. */
5082 process_version_sections (FILE *file
)
5084 Elf_Internal_Shdr
*section
;
5091 for (i
= 0, section
= section_headers
;
5092 i
< elf_header
.e_shnum
;
5095 switch (section
->sh_type
)
5097 case SHT_GNU_verdef
:
5099 Elf_External_Verdef
*edefs
;
5106 (_("\nVersion definition section '%s' contains %ld entries:\n"),
5107 SECTION_NAME (section
), section
->sh_info
);
5109 printf (_(" Addr: 0x"));
5110 printf_vma (section
->sh_addr
);
5111 printf (_(" Offset: %#08lx Link: %lx (%s)\n"),
5112 (unsigned long) section
->sh_offset
, section
->sh_link
,
5113 SECTION_NAME (SECTION_HEADER (section
->sh_link
)));
5115 edefs
= get_data (NULL
, file
, section
->sh_offset
, section
->sh_size
,
5116 _("version definition section"));
5120 for (idx
= cnt
= 0; cnt
< section
->sh_info
; ++cnt
)
5123 Elf_External_Verdef
*edef
;
5124 Elf_Internal_Verdef ent
;
5125 Elf_External_Verdaux
*eaux
;
5126 Elf_Internal_Verdaux aux
;
5130 vstart
= ((char *) edefs
) + idx
;
5132 edef
= (Elf_External_Verdef
*) vstart
;
5134 ent
.vd_version
= BYTE_GET (edef
->vd_version
);
5135 ent
.vd_flags
= BYTE_GET (edef
->vd_flags
);
5136 ent
.vd_ndx
= BYTE_GET (edef
->vd_ndx
);
5137 ent
.vd_cnt
= BYTE_GET (edef
->vd_cnt
);
5138 ent
.vd_hash
= BYTE_GET (edef
->vd_hash
);
5139 ent
.vd_aux
= BYTE_GET (edef
->vd_aux
);
5140 ent
.vd_next
= BYTE_GET (edef
->vd_next
);
5142 printf (_(" %#06x: Rev: %d Flags: %s"),
5143 idx
, ent
.vd_version
, get_ver_flags (ent
.vd_flags
));
5145 printf (_(" Index: %d Cnt: %d "),
5146 ent
.vd_ndx
, ent
.vd_cnt
);
5148 vstart
+= ent
.vd_aux
;
5150 eaux
= (Elf_External_Verdaux
*) vstart
;
5152 aux
.vda_name
= BYTE_GET (eaux
->vda_name
);
5153 aux
.vda_next
= BYTE_GET (eaux
->vda_next
);
5155 if (dynamic_strings
)
5156 printf (_("Name: %s\n"), dynamic_strings
+ aux
.vda_name
);
5158 printf (_("Name index: %ld\n"), aux
.vda_name
);
5160 isum
= idx
+ ent
.vd_aux
;
5162 for (j
= 1; j
< ent
.vd_cnt
; j
++)
5164 isum
+= aux
.vda_next
;
5165 vstart
+= aux
.vda_next
;
5167 eaux
= (Elf_External_Verdaux
*) vstart
;
5169 aux
.vda_name
= BYTE_GET (eaux
->vda_name
);
5170 aux
.vda_next
= BYTE_GET (eaux
->vda_next
);
5172 if (dynamic_strings
)
5173 printf (_(" %#06x: Parent %d: %s\n"),
5174 isum
, j
, dynamic_strings
+ aux
.vda_name
);
5176 printf (_(" %#06x: Parent %d, name index: %ld\n"),
5177 isum
, j
, aux
.vda_name
);
5187 case SHT_GNU_verneed
:
5189 Elf_External_Verneed
*eneed
;
5195 printf (_("\nVersion needs section '%s' contains %ld entries:\n"),
5196 SECTION_NAME (section
), section
->sh_info
);
5198 printf (_(" Addr: 0x"));
5199 printf_vma (section
->sh_addr
);
5200 printf (_(" Offset: %#08lx Link to section: %ld (%s)\n"),
5201 (unsigned long) section
->sh_offset
, section
->sh_link
,
5202 SECTION_NAME (SECTION_HEADER (section
->sh_link
)));
5204 eneed
= get_data (NULL
, file
, section
->sh_offset
, section
->sh_size
,
5205 _("version need section"));
5209 for (idx
= cnt
= 0; cnt
< section
->sh_info
; ++cnt
)
5211 Elf_External_Verneed
*entry
;
5212 Elf_Internal_Verneed ent
;
5217 vstart
= ((char *) eneed
) + idx
;
5219 entry
= (Elf_External_Verneed
*) vstart
;
5221 ent
.vn_version
= BYTE_GET (entry
->vn_version
);
5222 ent
.vn_cnt
= BYTE_GET (entry
->vn_cnt
);
5223 ent
.vn_file
= BYTE_GET (entry
->vn_file
);
5224 ent
.vn_aux
= BYTE_GET (entry
->vn_aux
);
5225 ent
.vn_next
= BYTE_GET (entry
->vn_next
);
5227 printf (_(" %#06x: Version: %d"), idx
, ent
.vn_version
);
5229 if (dynamic_strings
)
5230 printf (_(" File: %s"), dynamic_strings
+ ent
.vn_file
);
5232 printf (_(" File: %lx"), ent
.vn_file
);
5234 printf (_(" Cnt: %d\n"), ent
.vn_cnt
);
5236 vstart
+= ent
.vn_aux
;
5238 for (j
= 0, isum
= idx
+ ent
.vn_aux
; j
< ent
.vn_cnt
; ++j
)
5240 Elf_External_Vernaux
*eaux
;
5241 Elf_Internal_Vernaux aux
;
5243 eaux
= (Elf_External_Vernaux
*) vstart
;
5245 aux
.vna_hash
= BYTE_GET (eaux
->vna_hash
);
5246 aux
.vna_flags
= BYTE_GET (eaux
->vna_flags
);
5247 aux
.vna_other
= BYTE_GET (eaux
->vna_other
);
5248 aux
.vna_name
= BYTE_GET (eaux
->vna_name
);
5249 aux
.vna_next
= BYTE_GET (eaux
->vna_next
);
5251 if (dynamic_strings
)
5252 printf (_(" %#06x: Name: %s"),
5253 isum
, dynamic_strings
+ aux
.vna_name
);
5255 printf (_(" %#06x: Name index: %lx"),
5256 isum
, aux
.vna_name
);
5258 printf (_(" Flags: %s Version: %d\n"),
5259 get_ver_flags (aux
.vna_flags
), aux
.vna_other
);
5261 isum
+= aux
.vna_next
;
5262 vstart
+= aux
.vna_next
;
5272 case SHT_GNU_versym
:
5274 Elf_Internal_Shdr
*link_section
;
5277 unsigned char *edata
;
5278 unsigned short *data
;
5280 Elf_Internal_Sym
*symbols
;
5281 Elf_Internal_Shdr
*string_sec
;
5284 link_section
= SECTION_HEADER (section
->sh_link
);
5285 total
= section
->sh_size
/ section
->sh_entsize
;
5289 symbols
= GET_ELF_SYMBOLS (file
, link_section
);
5291 string_sec
= SECTION_HEADER (link_section
->sh_link
);
5293 strtab
= get_data (NULL
, file
, string_sec
->sh_offset
,
5294 string_sec
->sh_size
, _("version string table"));
5298 printf (_("\nVersion symbols section '%s' contains %d entries:\n"),
5299 SECTION_NAME (section
), total
);
5301 printf (_(" Addr: "));
5302 printf_vma (section
->sh_addr
);
5303 printf (_(" Offset: %#08lx Link: %lx (%s)\n"),
5304 (unsigned long) section
->sh_offset
, section
->sh_link
,
5305 SECTION_NAME (link_section
));
5307 off
= offset_from_vma (file
,
5308 version_info
[DT_VERSIONTAGIDX (DT_VERSYM
)],
5309 total
* sizeof (short));
5310 edata
= get_data (NULL
, file
, off
, total
* sizeof (short),
5311 _("version symbol data"));
5318 data
= malloc (total
* sizeof (short));
5320 for (cnt
= total
; cnt
--;)
5321 data
[cnt
] = byte_get (edata
+ cnt
* sizeof (short),
5326 for (cnt
= 0; cnt
< total
; cnt
+= 4)
5329 int check_def
, check_need
;
5332 printf (" %03x:", cnt
);
5334 for (j
= 0; (j
< 4) && (cnt
+ j
) < total
; ++j
)
5335 switch (data
[cnt
+ j
])
5338 fputs (_(" 0 (*local*) "), stdout
);
5342 fputs (_(" 1 (*global*) "), stdout
);
5346 nn
= printf ("%4x%c", data
[cnt
+ j
] & 0x7fff,
5347 data
[cnt
+ j
] & 0x8000 ? 'h' : ' ');
5351 if (SECTION_HEADER (symbols
[cnt
+ j
].st_shndx
)->sh_type
5354 if (symbols
[cnt
+ j
].st_shndx
== SHN_UNDEF
)
5361 && version_info
[DT_VERSIONTAGIDX (DT_VERNEED
)])
5363 Elf_Internal_Verneed ivn
;
5364 unsigned long offset
;
5366 offset
= offset_from_vma
5367 (file
, version_info
[DT_VERSIONTAGIDX (DT_VERNEED
)],
5368 sizeof (Elf_External_Verneed
));
5372 Elf_Internal_Vernaux ivna
;
5373 Elf_External_Verneed evn
;
5374 Elf_External_Vernaux evna
;
5375 unsigned long a_off
;
5377 get_data (&evn
, file
, offset
, sizeof (evn
),
5380 ivn
.vn_aux
= BYTE_GET (evn
.vn_aux
);
5381 ivn
.vn_next
= BYTE_GET (evn
.vn_next
);
5383 a_off
= offset
+ ivn
.vn_aux
;
5387 get_data (&evna
, file
, a_off
, sizeof (evna
),
5388 _("version need aux (2)"));
5390 ivna
.vna_next
= BYTE_GET (evna
.vna_next
);
5391 ivna
.vna_other
= BYTE_GET (evna
.vna_other
);
5393 a_off
+= ivna
.vna_next
;
5395 while (ivna
.vna_other
!= data
[cnt
+ j
]
5396 && ivna
.vna_next
!= 0);
5398 if (ivna
.vna_other
== data
[cnt
+ j
])
5400 ivna
.vna_name
= BYTE_GET (evna
.vna_name
);
5402 name
= strtab
+ ivna
.vna_name
;
5403 nn
+= printf ("(%s%-*s",
5405 12 - (int) strlen (name
),
5411 offset
+= ivn
.vn_next
;
5413 while (ivn
.vn_next
);
5416 if (check_def
&& data
[cnt
+ j
] != 0x8001
5417 && version_info
[DT_VERSIONTAGIDX (DT_VERDEF
)])
5419 Elf_Internal_Verdef ivd
;
5420 Elf_External_Verdef evd
;
5421 unsigned long offset
;
5423 offset
= offset_from_vma
5424 (file
, version_info
[DT_VERSIONTAGIDX (DT_VERDEF
)],
5429 get_data (&evd
, file
, offset
, sizeof (evd
),
5432 ivd
.vd_next
= BYTE_GET (evd
.vd_next
);
5433 ivd
.vd_ndx
= BYTE_GET (evd
.vd_ndx
);
5435 offset
+= ivd
.vd_next
;
5437 while (ivd
.vd_ndx
!= (data
[cnt
+ j
] & 0x7fff)
5438 && ivd
.vd_next
!= 0);
5440 if (ivd
.vd_ndx
== (data
[cnt
+ j
] & 0x7fff))
5442 Elf_External_Verdaux evda
;
5443 Elf_Internal_Verdaux ivda
;
5445 ivd
.vd_aux
= BYTE_GET (evd
.vd_aux
);
5447 get_data (&evda
, file
,
5448 offset
- ivd
.vd_next
+ ivd
.vd_aux
,
5449 sizeof (evda
), _("version def aux"));
5451 ivda
.vda_name
= BYTE_GET (evda
.vda_name
);
5453 name
= strtab
+ ivda
.vda_name
;
5454 nn
+= printf ("(%s%-*s",
5456 12 - (int) strlen (name
),
5462 printf ("%*c", 18 - nn
, ' ');
5480 printf (_("\nNo version information found in this file.\n"));
5486 get_symbol_binding (unsigned int binding
)
5488 static char buff
[32];
5492 case STB_LOCAL
: return "LOCAL";
5493 case STB_GLOBAL
: return "GLOBAL";
5494 case STB_WEAK
: return "WEAK";
5496 if (binding
>= STB_LOPROC
&& binding
<= STB_HIPROC
)
5497 sprintf (buff
, _("<processor specific>: %d"), binding
);
5498 else if (binding
>= STB_LOOS
&& binding
<= STB_HIOS
)
5499 sprintf (buff
, _("<OS specific>: %d"), binding
);
5501 sprintf (buff
, _("<unknown>: %d"), binding
);
5507 get_symbol_type (unsigned int type
)
5509 static char buff
[32];
5513 case STT_NOTYPE
: return "NOTYPE";
5514 case STT_OBJECT
: return "OBJECT";
5515 case STT_FUNC
: return "FUNC";
5516 case STT_SECTION
: return "SECTION";
5517 case STT_FILE
: return "FILE";
5518 case STT_COMMON
: return "COMMON";
5519 case STT_TLS
: return "TLS";
5521 if (type
>= STT_LOPROC
&& type
<= STT_HIPROC
)
5523 if (elf_header
.e_machine
== EM_ARM
&& type
== STT_ARM_TFUNC
)
5524 return "THUMB_FUNC";
5526 if (elf_header
.e_machine
== EM_SPARCV9
&& type
== STT_REGISTER
)
5529 if (elf_header
.e_machine
== EM_PARISC
&& type
== STT_PARISC_MILLI
)
5530 return "PARISC_MILLI";
5532 sprintf (buff
, _("<processor specific>: %d"), type
);
5534 else if (type
>= STT_LOOS
&& type
<= STT_HIOS
)
5536 if (elf_header
.e_machine
== EM_PARISC
)
5538 if (type
== STT_HP_OPAQUE
)
5540 if (type
== STT_HP_STUB
)
5544 sprintf (buff
, _("<OS specific>: %d"), type
);
5547 sprintf (buff
, _("<unknown>: %d"), type
);
5553 get_symbol_visibility (unsigned int visibility
)
5557 case STV_DEFAULT
: return "DEFAULT";
5558 case STV_INTERNAL
: return "INTERNAL";
5559 case STV_HIDDEN
: return "HIDDEN";
5560 case STV_PROTECTED
: return "PROTECTED";
5566 get_symbol_index_type (unsigned int type
)
5568 static char buff
[32];
5572 case SHN_UNDEF
: return "UND";
5573 case SHN_ABS
: return "ABS";
5574 case SHN_COMMON
: return "COM";
5576 if (type
== SHN_IA_64_ANSI_COMMON
5577 && elf_header
.e_machine
== EM_IA_64
5578 && elf_header
.e_ident
[EI_OSABI
] == ELFOSABI_HPUX
)
5580 else if (type
>= SHN_LOPROC
&& type
<= SHN_HIPROC
)
5581 sprintf (buff
, "PRC[0x%04x]", type
);
5582 else if (type
>= SHN_LOOS
&& type
<= SHN_HIOS
)
5583 sprintf (buff
, "OS [0x%04x]", type
);
5584 else if (type
>= SHN_LORESERVE
&& type
<= SHN_HIRESERVE
)
5585 sprintf (buff
, "RSV[0x%04x]", type
);
5587 sprintf (buff
, "%3d", type
);
5595 get_dynamic_data (FILE *file
, unsigned int number
)
5597 unsigned char *e_data
;
5600 e_data
= malloc (number
* 4);
5604 error (_("Out of memory\n"));
5608 if (fread (e_data
, 4, number
, file
) != number
)
5610 error (_("Unable to read in dynamic data\n"));
5614 i_data
= malloc (number
* sizeof (*i_data
));
5618 error (_("Out of memory\n"));
5624 i_data
[number
] = byte_get (e_data
+ number
* 4, 4);
5631 /* Dump the symbol table. */
5633 process_symbol_table (FILE *file
)
5635 Elf_Internal_Shdr
*section
;
5636 unsigned char nb
[4];
5637 unsigned char nc
[4];
5640 int *buckets
= NULL
;
5643 if (! do_syms
&& !do_histogram
)
5646 if (dynamic_info
[DT_HASH
] && ((do_using_dynamic
&& dynamic_strings
!= NULL
)
5650 (archive_file_offset
5651 + offset_from_vma (file
, dynamic_info
[DT_HASH
],
5652 sizeof nb
+ sizeof nc
)),
5655 error (_("Unable to seek to start of dynamic information"));
5659 if (fread (nb
, sizeof (nb
), 1, file
) != 1)
5661 error (_("Failed to read in number of buckets\n"));
5665 if (fread (nc
, sizeof (nc
), 1, file
) != 1)
5667 error (_("Failed to read in number of chains\n"));
5671 nbuckets
= byte_get (nb
, 4);
5672 nchains
= byte_get (nc
, 4);
5674 buckets
= get_dynamic_data (file
, nbuckets
);
5675 chains
= get_dynamic_data (file
, nchains
);
5677 if (buckets
== NULL
|| chains
== NULL
)
5682 && dynamic_info
[DT_HASH
] && do_using_dynamic
&& dynamic_strings
!= NULL
)
5687 printf (_("\nSymbol table for image:\n"));
5689 printf (_(" Num Buc: Value Size Type Bind Vis Ndx Name\n"));
5691 printf (_(" Num Buc: Value Size Type Bind Vis Ndx Name\n"));
5693 for (hn
= 0; hn
< nbuckets
; hn
++)
5698 for (si
= buckets
[hn
]; si
< nchains
&& si
> 0; si
= chains
[si
])
5700 Elf_Internal_Sym
*psym
;
5702 psym
= dynamic_symbols
+ si
;
5704 printf (" %3d %3d: ", si
, hn
);
5705 print_vma (psym
->st_value
, LONG_HEX
);
5707 print_vma (psym
->st_size
, DEC_5
);
5709 printf (" %6s", get_symbol_type (ELF_ST_TYPE (psym
->st_info
)));
5710 printf (" %6s", get_symbol_binding (ELF_ST_BIND (psym
->st_info
)));
5711 printf (" %3s", get_symbol_visibility (ELF_ST_VISIBILITY (psym
->st_other
)));
5712 printf (" %3.3s ", get_symbol_index_type (psym
->st_shndx
));
5713 print_symbol (25, dynamic_strings
+ psym
->st_name
);
5718 else if (do_syms
&& !do_using_dynamic
)
5722 for (i
= 0, section
= section_headers
;
5723 i
< elf_header
.e_shnum
;
5728 Elf_Internal_Sym
*symtab
;
5729 Elf_Internal_Sym
*psym
;
5732 if ( section
->sh_type
!= SHT_SYMTAB
5733 && section
->sh_type
!= SHT_DYNSYM
)
5736 printf (_("\nSymbol table '%s' contains %lu entries:\n"),
5737 SECTION_NAME (section
),
5738 (unsigned long) (section
->sh_size
/ section
->sh_entsize
));
5740 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
5742 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
5744 symtab
= GET_ELF_SYMBOLS (file
, section
);
5748 if (section
->sh_link
== elf_header
.e_shstrndx
)
5749 strtab
= string_table
;
5752 Elf_Internal_Shdr
*string_sec
;
5754 string_sec
= SECTION_HEADER (section
->sh_link
);
5756 strtab
= get_data (NULL
, file
, string_sec
->sh_offset
,
5757 string_sec
->sh_size
, _("string table"));
5760 for (si
= 0, psym
= symtab
;
5761 si
< section
->sh_size
/ section
->sh_entsize
;
5764 printf ("%6d: ", si
);
5765 print_vma (psym
->st_value
, LONG_HEX
);
5767 print_vma (psym
->st_size
, DEC_5
);
5768 printf (" %-7s", get_symbol_type (ELF_ST_TYPE (psym
->st_info
)));
5769 printf (" %-6s", get_symbol_binding (ELF_ST_BIND (psym
->st_info
)));
5770 printf (" %-3s", get_symbol_visibility (ELF_ST_VISIBILITY (psym
->st_other
)));
5771 printf (" %4s ", get_symbol_index_type (psym
->st_shndx
));
5772 print_symbol (25, strtab
+ psym
->st_name
);
5774 if (section
->sh_type
== SHT_DYNSYM
&&
5775 version_info
[DT_VERSIONTAGIDX (DT_VERSYM
)] != 0)
5777 unsigned char data
[2];
5778 unsigned short vers_data
;
5779 unsigned long offset
;
5783 offset
= offset_from_vma
5784 (file
, version_info
[DT_VERSIONTAGIDX (DT_VERSYM
)],
5785 sizeof data
+ si
* sizeof (vers_data
));
5787 get_data (&data
, file
, offset
+ si
* sizeof (vers_data
),
5788 sizeof (data
), _("version data"));
5790 vers_data
= byte_get (data
, 2);
5792 is_nobits
= (SECTION_HEADER (psym
->st_shndx
)->sh_type
5795 check_def
= (psym
->st_shndx
!= SHN_UNDEF
);
5797 if ((vers_data
& 0x8000) || vers_data
> 1)
5799 if (version_info
[DT_VERSIONTAGIDX (DT_VERNEED
)]
5800 && (is_nobits
|| ! check_def
))
5802 Elf_External_Verneed evn
;
5803 Elf_Internal_Verneed ivn
;
5804 Elf_Internal_Vernaux ivna
;
5806 /* We must test both. */
5807 offset
= offset_from_vma
5808 (file
, version_info
[DT_VERSIONTAGIDX (DT_VERNEED
)],
5813 unsigned long vna_off
;
5815 get_data (&evn
, file
, offset
, sizeof (evn
),
5818 ivn
.vn_aux
= BYTE_GET (evn
.vn_aux
);
5819 ivn
.vn_next
= BYTE_GET (evn
.vn_next
);
5821 vna_off
= offset
+ ivn
.vn_aux
;
5825 Elf_External_Vernaux evna
;
5827 get_data (&evna
, file
, vna_off
,
5829 _("version need aux (3)"));
5831 ivna
.vna_other
= BYTE_GET (evna
.vna_other
);
5832 ivna
.vna_next
= BYTE_GET (evna
.vna_next
);
5833 ivna
.vna_name
= BYTE_GET (evna
.vna_name
);
5835 vna_off
+= ivna
.vna_next
;
5837 while (ivna
.vna_other
!= vers_data
5838 && ivna
.vna_next
!= 0);
5840 if (ivna
.vna_other
== vers_data
)
5843 offset
+= ivn
.vn_next
;
5845 while (ivn
.vn_next
!= 0);
5847 if (ivna
.vna_other
== vers_data
)
5850 strtab
+ ivna
.vna_name
, ivna
.vna_other
);
5853 else if (! is_nobits
)
5854 error (_("bad dynamic symbol"));
5861 if (vers_data
!= 0x8001
5862 && version_info
[DT_VERSIONTAGIDX (DT_VERDEF
)])
5864 Elf_Internal_Verdef ivd
;
5865 Elf_Internal_Verdaux ivda
;
5866 Elf_External_Verdaux evda
;
5867 unsigned long offset
;
5869 offset
= offset_from_vma
5871 version_info
[DT_VERSIONTAGIDX (DT_VERDEF
)],
5872 sizeof (Elf_External_Verdef
));
5876 Elf_External_Verdef evd
;
5878 get_data (&evd
, file
, offset
, sizeof (evd
),
5881 ivd
.vd_ndx
= BYTE_GET (evd
.vd_ndx
);
5882 ivd
.vd_aux
= BYTE_GET (evd
.vd_aux
);
5883 ivd
.vd_next
= BYTE_GET (evd
.vd_next
);
5885 offset
+= ivd
.vd_next
;
5887 while (ivd
.vd_ndx
!= (vers_data
& 0x7fff)
5888 && ivd
.vd_next
!= 0);
5890 offset
-= ivd
.vd_next
;
5891 offset
+= ivd
.vd_aux
;
5893 get_data (&evda
, file
, offset
, sizeof (evda
),
5894 _("version def aux"));
5896 ivda
.vda_name
= BYTE_GET (evda
.vda_name
);
5898 if (psym
->st_name
!= ivda
.vda_name
)
5899 printf ((vers_data
& 0x8000)
5901 strtab
+ ivda
.vda_name
);
5911 if (strtab
!= string_table
)
5917 (_("\nDynamic symbol information is not available for displaying symbols.\n"));
5919 if (do_histogram
&& buckets
!= NULL
)
5926 int nzero_counts
= 0;
5929 printf (_("\nHistogram for bucket list length (total of %d buckets):\n"),
5931 printf (_(" Length Number %% of total Coverage\n"));
5933 lengths
= calloc (nbuckets
, sizeof (int));
5934 if (lengths
== NULL
)
5936 error (_("Out of memory"));
5939 for (hn
= 0; hn
< nbuckets
; ++hn
)
5944 for (si
= buckets
[hn
]; si
> 0 && si
< nchains
; si
= chains
[si
])
5947 if (maxlength
< ++lengths
[hn
])
5952 counts
= calloc (maxlength
+ 1, sizeof (int));
5955 error (_("Out of memory"));
5959 for (hn
= 0; hn
< nbuckets
; ++hn
)
5960 ++counts
[lengths
[hn
]];
5964 printf (" 0 %-10d (%5.1f%%)\n",
5965 counts
[0], (counts
[0] * 100.0) / nbuckets
);
5966 for (si
= 1; si
<= maxlength
; ++si
)
5968 nzero_counts
+= counts
[si
] * si
;
5969 printf ("%7d %-10d (%5.1f%%) %5.1f%%\n",
5970 si
, counts
[si
], (counts
[si
] * 100.0) / nbuckets
,
5971 (nzero_counts
* 100.0) / nsyms
);
5979 if (buckets
!= NULL
)
5989 process_syminfo (FILE *file ATTRIBUTE_UNUSED
)
5993 if (dynamic_syminfo
== NULL
5995 /* No syminfo, this is ok. */
5998 /* There better should be a dynamic symbol section. */
5999 if (dynamic_symbols
== NULL
|| dynamic_strings
== NULL
)
6003 printf (_("\nDynamic info segment at offset 0x%lx contains %d entries:\n"),
6004 dynamic_syminfo_offset
, dynamic_syminfo_nent
);
6006 printf (_(" Num: Name BoundTo Flags\n"));
6007 for (i
= 0; i
< dynamic_syminfo_nent
; ++i
)
6009 unsigned short int flags
= dynamic_syminfo
[i
].si_flags
;
6011 printf ("%4d: ", i
);
6012 print_symbol (30, dynamic_strings
+ dynamic_symbols
[i
].st_name
);
6015 switch (dynamic_syminfo
[i
].si_boundto
)
6017 case SYMINFO_BT_SELF
:
6018 fputs ("SELF ", stdout
);
6020 case SYMINFO_BT_PARENT
:
6021 fputs ("PARENT ", stdout
);
6024 if (dynamic_syminfo
[i
].si_boundto
> 0
6025 && dynamic_syminfo
[i
].si_boundto
< dynamic_size
)
6030 [dynamic_syminfo
[i
].si_boundto
].d_un
.d_val
));
6034 printf ("%-10d ", dynamic_syminfo
[i
].si_boundto
);
6038 if (flags
& SYMINFO_FLG_DIRECT
)
6040 if (flags
& SYMINFO_FLG_PASSTHRU
)
6041 printf (" PASSTHRU");
6042 if (flags
& SYMINFO_FLG_COPY
)
6044 if (flags
& SYMINFO_FLG_LAZYLOAD
)
6045 printf (" LAZYLOAD");
6053 #ifdef SUPPORT_DISASSEMBLY
6055 disassemble_section (Elf_Internal_Shdr
*section
, FILE *file
)
6057 printf (_("\nAssembly dump of section %s\n"),
6058 SECTION_NAME (section
));
6060 /* XXX -- to be done --- XXX */
6067 dump_section (Elf_Internal_Shdr
*section
, FILE *file
)
6069 bfd_size_type bytes
;
6071 unsigned char *data
;
6072 unsigned char *start
;
6074 bytes
= section
->sh_size
;
6076 if (bytes
== 0 || section
->sh_type
== SHT_NOBITS
)
6078 printf (_("\nSection '%s' has no data to dump.\n"),
6079 SECTION_NAME (section
));
6083 printf (_("\nHex dump of section '%s':\n"), SECTION_NAME (section
));
6085 addr
= section
->sh_addr
;
6087 start
= get_data (NULL
, file
, section
->sh_offset
, bytes
, _("section data"));
6099 lbytes
= (bytes
> 16 ? 16 : bytes
);
6101 printf (" 0x%8.8lx ", (unsigned long) addr
);
6103 switch (elf_header
.e_ident
[EI_DATA
])
6107 for (j
= 15; j
>= 0; j
--)
6110 printf ("%2.2x", data
[j
]);
6120 for (j
= 0; j
< 16; j
++)
6123 printf ("%2.2x", data
[j
]);
6133 for (j
= 0; j
< lbytes
; j
++)
6136 if (k
>= ' ' && k
< 0x7f)
6155 static unsigned long int
6156 read_leb128 (unsigned char *data
, int *length_return
, int sign
)
6158 unsigned long int result
= 0;
6159 unsigned int num_read
= 0;
6168 result
|= (byte
& 0x7f) << shift
;
6173 while (byte
& 0x80);
6175 if (length_return
!= NULL
)
6176 *length_return
= num_read
;
6178 if (sign
&& (shift
< 32) && (byte
& 0x40))
6179 result
|= -1 << shift
;
6184 typedef struct State_Machine_Registers
6186 unsigned long address
;
6189 unsigned int column
;
6193 /* This variable hold the number of the last entry seen
6194 in the File Table. */
6195 unsigned int last_file_entry
;
6198 static SMR state_machine_regs
;
6201 reset_state_machine (int is_stmt
)
6203 state_machine_regs
.address
= 0;
6204 state_machine_regs
.file
= 1;
6205 state_machine_regs
.line
= 1;
6206 state_machine_regs
.column
= 0;
6207 state_machine_regs
.is_stmt
= is_stmt
;
6208 state_machine_regs
.basic_block
= 0;
6209 state_machine_regs
.end_sequence
= 0;
6210 state_machine_regs
.last_file_entry
= 0;
6213 /* Handled an extend line op. Returns true if this is the end
6216 process_extended_line_op (unsigned char *data
, int is_stmt
, int pointer_size
)
6218 unsigned char op_code
;
6221 unsigned char *name
;
6224 len
= read_leb128 (data
, & bytes_read
, 0);
6229 warn (_("badly formed extended line op encountered!\n"));
6236 printf (_(" Extended opcode %d: "), op_code
);
6240 case DW_LNE_end_sequence
:
6241 printf (_("End of Sequence\n\n"));
6242 reset_state_machine (is_stmt
);
6245 case DW_LNE_set_address
:
6246 adr
= byte_get (data
, pointer_size
);
6247 printf (_("set Address to 0x%lx\n"), adr
);
6248 state_machine_regs
.address
= adr
;
6251 case DW_LNE_define_file
:
6252 printf (_(" define new File Table entry\n"));
6253 printf (_(" Entry\tDir\tTime\tSize\tName\n"));
6255 printf (_(" %d\t"), ++state_machine_regs
.last_file_entry
);
6257 data
+= strlen ((char *) data
) + 1;
6258 printf (_("%lu\t"), read_leb128 (data
, & bytes_read
, 0));
6260 printf (_("%lu\t"), read_leb128 (data
, & bytes_read
, 0));
6262 printf (_("%lu\t"), read_leb128 (data
, & bytes_read
, 0));
6263 printf (_("%s\n\n"), name
);
6267 printf (_("UNKNOWN: length %d\n"), len
- bytes_read
);
6274 /* Size of pointers in the .debug_line section. This information is not
6275 really present in that section. It's obtained before dumping the debug
6276 sections by doing some pre-scan of the .debug_info section. */
6277 static int debug_line_pointer_size
= 4;
6280 display_debug_lines (Elf_Internal_Shdr
*section
,
6281 unsigned char * start
,
6282 FILE *file ATTRIBUTE_UNUSED
)
6284 unsigned char *hdrptr
;
6285 DWARF2_Internal_LineInfo info
;
6286 unsigned char *standard_opcodes
;
6287 unsigned char *data
= start
;
6288 unsigned char *end
= start
+ section
->sh_size
;
6289 unsigned char *end_of_sequence
;
6292 int initial_length_size
;
6294 printf (_("\nDump of debug contents of section %s:\n\n"),
6295 SECTION_NAME (section
));
6301 /* Check the length of the block. */
6302 info
.li_length
= byte_get (hdrptr
, 4);
6305 if (info
.li_length
== 0xffffffff)
6307 /* This section is 64-bit DWARF 3. */
6308 info
.li_length
= byte_get (hdrptr
, 8);
6311 initial_length_size
= 12;
6316 initial_length_size
= 4;
6319 if (info
.li_length
+ initial_length_size
> section
->sh_size
)
6322 (_("The line info appears to be corrupt - the section is too small\n"));
6326 /* Check its version number. */
6327 info
.li_version
= byte_get (hdrptr
, 2);
6329 if (info
.li_version
!= 2 && info
.li_version
!= 3)
6331 warn (_("Only DWARF version 2 and 3 line info is currently supported.\n"));
6335 info
.li_prologue_length
= byte_get (hdrptr
, offset_size
);
6336 hdrptr
+= offset_size
;
6337 info
.li_min_insn_length
= byte_get (hdrptr
, 1);
6339 info
.li_default_is_stmt
= byte_get (hdrptr
, 1);
6341 info
.li_line_base
= byte_get (hdrptr
, 1);
6343 info
.li_line_range
= byte_get (hdrptr
, 1);
6345 info
.li_opcode_base
= byte_get (hdrptr
, 1);
6348 /* Sign extend the line base field. */
6349 info
.li_line_base
<<= 24;
6350 info
.li_line_base
>>= 24;
6352 printf (_(" Length: %ld\n"), info
.li_length
);
6353 printf (_(" DWARF Version: %d\n"), info
.li_version
);
6354 printf (_(" Prologue Length: %d\n"), info
.li_prologue_length
);
6355 printf (_(" Minimum Instruction Length: %d\n"), info
.li_min_insn_length
);
6356 printf (_(" Initial value of 'is_stmt': %d\n"), info
.li_default_is_stmt
);
6357 printf (_(" Line Base: %d\n"), info
.li_line_base
);
6358 printf (_(" Line Range: %d\n"), info
.li_line_range
);
6359 printf (_(" Opcode Base: %d\n"), info
.li_opcode_base
);
6361 end_of_sequence
= data
+ info
.li_length
+ initial_length_size
;
6363 reset_state_machine (info
.li_default_is_stmt
);
6365 /* Display the contents of the Opcodes table. */
6366 standard_opcodes
= hdrptr
;
6368 printf (_("\n Opcodes:\n"));
6370 for (i
= 1; i
< info
.li_opcode_base
; i
++)
6371 printf (_(" Opcode %d has %d args\n"), i
, standard_opcodes
[i
- 1]);
6373 /* Display the contents of the Directory table. */
6374 data
= standard_opcodes
+ info
.li_opcode_base
- 1;
6377 printf (_("\n The Directory Table is empty.\n"));
6380 printf (_("\n The Directory Table:\n"));
6384 printf (_(" %s\n"), data
);
6386 data
+= strlen ((char *) data
) + 1;
6390 /* Skip the NUL at the end of the table. */
6393 /* Display the contents of the File Name table. */
6395 printf (_("\n The File Name Table is empty.\n"));
6398 printf (_("\n The File Name Table:\n"));
6399 printf (_(" Entry\tDir\tTime\tSize\tName\n"));
6403 unsigned char *name
;
6406 printf (_(" %d\t"), ++state_machine_regs
.last_file_entry
);
6409 data
+= strlen ((char *) data
) + 1;
6411 printf (_("%lu\t"), read_leb128 (data
, & bytes_read
, 0));
6413 printf (_("%lu\t"), read_leb128 (data
, & bytes_read
, 0));
6415 printf (_("%lu\t"), read_leb128 (data
, & bytes_read
, 0));
6417 printf (_("%s\n"), name
);
6421 /* Skip the NUL at the end of the table. */
6424 /* Now display the statements. */
6425 printf (_("\n Line Number Statements:\n"));
6428 while (data
< end_of_sequence
)
6430 unsigned char op_code
;
6436 if (op_code
>= info
.li_opcode_base
)
6438 op_code
-= info
.li_opcode_base
;
6439 adv
= (op_code
/ info
.li_line_range
) * info
.li_min_insn_length
;
6440 state_machine_regs
.address
+= adv
;
6441 printf (_(" Special opcode %d: advance Address by %d to 0x%lx"),
6442 op_code
, adv
, state_machine_regs
.address
);
6443 adv
= (op_code
% info
.li_line_range
) + info
.li_line_base
;
6444 state_machine_regs
.line
+= adv
;
6445 printf (_(" and Line by %d to %d\n"),
6446 adv
, state_machine_regs
.line
);
6448 else switch (op_code
)
6450 case DW_LNS_extended_op
:
6451 data
+= process_extended_line_op (data
, info
.li_default_is_stmt
,
6452 debug_line_pointer_size
);
6456 printf (_(" Copy\n"));
6459 case DW_LNS_advance_pc
:
6460 adv
= info
.li_min_insn_length
* read_leb128 (data
, & bytes_read
, 0);
6462 state_machine_regs
.address
+= adv
;
6463 printf (_(" Advance PC by %d to %lx\n"), adv
,
6464 state_machine_regs
.address
);
6467 case DW_LNS_advance_line
:
6468 adv
= read_leb128 (data
, & bytes_read
, 1);
6470 state_machine_regs
.line
+= adv
;
6471 printf (_(" Advance Line by %d to %d\n"), adv
,
6472 state_machine_regs
.line
);
6475 case DW_LNS_set_file
:
6476 adv
= read_leb128 (data
, & bytes_read
, 0);
6478 printf (_(" Set File Name to entry %d in the File Name Table\n"),
6480 state_machine_regs
.file
= adv
;
6483 case DW_LNS_set_column
:
6484 adv
= read_leb128 (data
, & bytes_read
, 0);
6486 printf (_(" Set column to %d\n"), adv
);
6487 state_machine_regs
.column
= adv
;
6490 case DW_LNS_negate_stmt
:
6491 adv
= state_machine_regs
.is_stmt
;
6493 printf (_(" Set is_stmt to %d\n"), adv
);
6494 state_machine_regs
.is_stmt
= adv
;
6497 case DW_LNS_set_basic_block
:
6498 printf (_(" Set basic block\n"));
6499 state_machine_regs
.basic_block
= 1;
6502 case DW_LNS_const_add_pc
:
6503 adv
= (((255 - info
.li_opcode_base
) / info
.li_line_range
)
6504 * info
.li_min_insn_length
);
6505 state_machine_regs
.address
+= adv
;
6506 printf (_(" Advance PC by constant %d to 0x%lx\n"), adv
,
6507 state_machine_regs
.address
);
6510 case DW_LNS_fixed_advance_pc
:
6511 adv
= byte_get (data
, 2);
6513 state_machine_regs
.address
+= adv
;
6514 printf (_(" Advance PC by fixed size amount %d to 0x%lx\n"),
6515 adv
, state_machine_regs
.address
);
6518 case DW_LNS_set_prologue_end
:
6519 printf (_(" Set prologue_end to true\n"));
6522 case DW_LNS_set_epilogue_begin
:
6523 printf (_(" Set epilogue_begin to true\n"));
6526 case DW_LNS_set_isa
:
6527 adv
= read_leb128 (data
, & bytes_read
, 0);
6529 printf (_(" Set ISA to %d\n"), adv
);
6533 printf (_(" Unknown opcode %d with operands: "), op_code
);
6536 for (i
= standard_opcodes
[op_code
- 1]; i
> 0 ; --i
)
6538 printf ("0x%lx%s", read_leb128 (data
, &bytes_read
, 0),
6539 i
== 1 ? "" : ", ");
6554 display_debug_pubnames (Elf_Internal_Shdr
*section
,
6555 unsigned char *start
,
6556 FILE *file ATTRIBUTE_UNUSED
)
6558 DWARF2_Internal_PubNames pubnames
;
6561 end
= start
+ section
->sh_size
;
6563 printf (_("Contents of the %s section:\n\n"), SECTION_NAME (section
));
6567 unsigned char *data
;
6568 unsigned long offset
;
6569 int offset_size
, initial_length_size
;
6573 pubnames
.pn_length
= byte_get (data
, 4);
6575 if (pubnames
.pn_length
== 0xffffffff)
6577 pubnames
.pn_length
= byte_get (data
, 8);
6580 initial_length_size
= 12;
6585 initial_length_size
= 4;
6588 pubnames
.pn_version
= byte_get (data
, 2);
6590 pubnames
.pn_offset
= byte_get (data
, offset_size
);
6591 data
+= offset_size
;
6592 pubnames
.pn_size
= byte_get (data
, offset_size
);
6593 data
+= offset_size
;
6595 start
+= pubnames
.pn_length
+ initial_length_size
;
6597 if (pubnames
.pn_version
!= 2 && pubnames
.pn_version
!= 3)
6599 static int warned
= 0;
6603 warn (_("Only DWARF 2 and 3 pubnames are currently supported\n"));
6610 printf (_(" Length: %ld\n"),
6611 pubnames
.pn_length
);
6612 printf (_(" Version: %d\n"),
6613 pubnames
.pn_version
);
6614 printf (_(" Offset into .debug_info section: %ld\n"),
6615 pubnames
.pn_offset
);
6616 printf (_(" Size of area in .debug_info section: %ld\n"),
6619 printf (_("\n Offset\tName\n"));
6623 offset
= byte_get (data
, offset_size
);
6627 data
+= offset_size
;
6628 printf (" %ld\t\t%s\n", offset
, data
);
6629 data
+= strlen ((char *) data
) + 1;
6632 while (offset
!= 0);
6640 get_TAG_name (unsigned long tag
)
6644 case DW_TAG_padding
: return "DW_TAG_padding";
6645 case DW_TAG_array_type
: return "DW_TAG_array_type";
6646 case DW_TAG_class_type
: return "DW_TAG_class_type";
6647 case DW_TAG_entry_point
: return "DW_TAG_entry_point";
6648 case DW_TAG_enumeration_type
: return "DW_TAG_enumeration_type";
6649 case DW_TAG_formal_parameter
: return "DW_TAG_formal_parameter";
6650 case DW_TAG_imported_declaration
: return "DW_TAG_imported_declaration";
6651 case DW_TAG_label
: return "DW_TAG_label";
6652 case DW_TAG_lexical_block
: return "DW_TAG_lexical_block";
6653 case DW_TAG_member
: return "DW_TAG_member";
6654 case DW_TAG_pointer_type
: return "DW_TAG_pointer_type";
6655 case DW_TAG_reference_type
: return "DW_TAG_reference_type";
6656 case DW_TAG_compile_unit
: return "DW_TAG_compile_unit";
6657 case DW_TAG_string_type
: return "DW_TAG_string_type";
6658 case DW_TAG_structure_type
: return "DW_TAG_structure_type";
6659 case DW_TAG_subroutine_type
: return "DW_TAG_subroutine_type";
6660 case DW_TAG_typedef
: return "DW_TAG_typedef";
6661 case DW_TAG_union_type
: return "DW_TAG_union_type";
6662 case DW_TAG_unspecified_parameters
: return "DW_TAG_unspecified_parameters";
6663 case DW_TAG_variant
: return "DW_TAG_variant";
6664 case DW_TAG_common_block
: return "DW_TAG_common_block";
6665 case DW_TAG_common_inclusion
: return "DW_TAG_common_inclusion";
6666 case DW_TAG_inheritance
: return "DW_TAG_inheritance";
6667 case DW_TAG_inlined_subroutine
: return "DW_TAG_inlined_subroutine";
6668 case DW_TAG_module
: return "DW_TAG_module";
6669 case DW_TAG_ptr_to_member_type
: return "DW_TAG_ptr_to_member_type";
6670 case DW_TAG_set_type
: return "DW_TAG_set_type";
6671 case DW_TAG_subrange_type
: return "DW_TAG_subrange_type";
6672 case DW_TAG_with_stmt
: return "DW_TAG_with_stmt";
6673 case DW_TAG_access_declaration
: return "DW_TAG_access_declaration";
6674 case DW_TAG_base_type
: return "DW_TAG_base_type";
6675 case DW_TAG_catch_block
: return "DW_TAG_catch_block";
6676 case DW_TAG_const_type
: return "DW_TAG_const_type";
6677 case DW_TAG_constant
: return "DW_TAG_constant";
6678 case DW_TAG_enumerator
: return "DW_TAG_enumerator";
6679 case DW_TAG_file_type
: return "DW_TAG_file_type";
6680 case DW_TAG_friend
: return "DW_TAG_friend";
6681 case DW_TAG_namelist
: return "DW_TAG_namelist";
6682 case DW_TAG_namelist_item
: return "DW_TAG_namelist_item";
6683 case DW_TAG_packed_type
: return "DW_TAG_packed_type";
6684 case DW_TAG_subprogram
: return "DW_TAG_subprogram";
6685 case DW_TAG_template_type_param
: return "DW_TAG_template_type_param";
6686 case DW_TAG_template_value_param
: return "DW_TAG_template_value_param";
6687 case DW_TAG_thrown_type
: return "DW_TAG_thrown_type";
6688 case DW_TAG_try_block
: return "DW_TAG_try_block";
6689 case DW_TAG_variant_part
: return "DW_TAG_variant_part";
6690 case DW_TAG_variable
: return "DW_TAG_variable";
6691 case DW_TAG_volatile_type
: return "DW_TAG_volatile_type";
6692 case DW_TAG_MIPS_loop
: return "DW_TAG_MIPS_loop";
6693 case DW_TAG_format_label
: return "DW_TAG_format_label";
6694 case DW_TAG_function_template
: return "DW_TAG_function_template";
6695 case DW_TAG_class_template
: return "DW_TAG_class_template";
6696 /* DWARF 2.1 values. */
6697 case DW_TAG_dwarf_procedure
: return "DW_TAG_dwarf_procedure";
6698 case DW_TAG_restrict_type
: return "DW_TAG_restrict_type";
6699 case DW_TAG_interface_type
: return "DW_TAG_interface_type";
6700 case DW_TAG_namespace
: return "DW_TAG_namespace";
6701 case DW_TAG_imported_module
: return "DW_TAG_imported_module";
6702 case DW_TAG_unspecified_type
: return "DW_TAG_unspecified_type";
6703 case DW_TAG_partial_unit
: return "DW_TAG_partial_unit";
6704 case DW_TAG_imported_unit
: return "DW_TAG_imported_unit";
6706 case DW_TAG_upc_shared_type
: return "DW_TAG_upc_shared_type";
6707 case DW_TAG_upc_strict_type
: return "DW_TAG_upc_strict_type";
6708 case DW_TAG_upc_relaxed_type
: return "DW_TAG_upc_relaxed_type";
6711 static char buffer
[100];
6713 sprintf (buffer
, _("Unknown TAG value: %lx"), tag
);
6720 get_AT_name (unsigned long attribute
)
6724 case DW_AT_sibling
: return "DW_AT_sibling";
6725 case DW_AT_location
: return "DW_AT_location";
6726 case DW_AT_name
: return "DW_AT_name";
6727 case DW_AT_ordering
: return "DW_AT_ordering";
6728 case DW_AT_subscr_data
: return "DW_AT_subscr_data";
6729 case DW_AT_byte_size
: return "DW_AT_byte_size";
6730 case DW_AT_bit_offset
: return "DW_AT_bit_offset";
6731 case DW_AT_bit_size
: return "DW_AT_bit_size";
6732 case DW_AT_element_list
: return "DW_AT_element_list";
6733 case DW_AT_stmt_list
: return "DW_AT_stmt_list";
6734 case DW_AT_low_pc
: return "DW_AT_low_pc";
6735 case DW_AT_high_pc
: return "DW_AT_high_pc";
6736 case DW_AT_language
: return "DW_AT_language";
6737 case DW_AT_member
: return "DW_AT_member";
6738 case DW_AT_discr
: return "DW_AT_discr";
6739 case DW_AT_discr_value
: return "DW_AT_discr_value";
6740 case DW_AT_visibility
: return "DW_AT_visibility";
6741 case DW_AT_import
: return "DW_AT_import";
6742 case DW_AT_string_length
: return "DW_AT_string_length";
6743 case DW_AT_common_reference
: return "DW_AT_common_reference";
6744 case DW_AT_comp_dir
: return "DW_AT_comp_dir";
6745 case DW_AT_const_value
: return "DW_AT_const_value";
6746 case DW_AT_containing_type
: return "DW_AT_containing_type";
6747 case DW_AT_default_value
: return "DW_AT_default_value";
6748 case DW_AT_inline
: return "DW_AT_inline";
6749 case DW_AT_is_optional
: return "DW_AT_is_optional";
6750 case DW_AT_lower_bound
: return "DW_AT_lower_bound";
6751 case DW_AT_producer
: return "DW_AT_producer";
6752 case DW_AT_prototyped
: return "DW_AT_prototyped";
6753 case DW_AT_return_addr
: return "DW_AT_return_addr";
6754 case DW_AT_start_scope
: return "DW_AT_start_scope";
6755 case DW_AT_stride_size
: return "DW_AT_stride_size";
6756 case DW_AT_upper_bound
: return "DW_AT_upper_bound";
6757 case DW_AT_abstract_origin
: return "DW_AT_abstract_origin";
6758 case DW_AT_accessibility
: return "DW_AT_accessibility";
6759 case DW_AT_address_class
: return "DW_AT_address_class";
6760 case DW_AT_artificial
: return "DW_AT_artificial";
6761 case DW_AT_base_types
: return "DW_AT_base_types";
6762 case DW_AT_calling_convention
: return "DW_AT_calling_convention";
6763 case DW_AT_count
: return "DW_AT_count";
6764 case DW_AT_data_member_location
: return "DW_AT_data_member_location";
6765 case DW_AT_decl_column
: return "DW_AT_decl_column";
6766 case DW_AT_decl_file
: return "DW_AT_decl_file";
6767 case DW_AT_decl_line
: return "DW_AT_decl_line";
6768 case DW_AT_declaration
: return "DW_AT_declaration";
6769 case DW_AT_discr_list
: return "DW_AT_discr_list";
6770 case DW_AT_encoding
: return "DW_AT_encoding";
6771 case DW_AT_external
: return "DW_AT_external";
6772 case DW_AT_frame_base
: return "DW_AT_frame_base";
6773 case DW_AT_friend
: return "DW_AT_friend";
6774 case DW_AT_identifier_case
: return "DW_AT_identifier_case";
6775 case DW_AT_macro_info
: return "DW_AT_macro_info";
6776 case DW_AT_namelist_items
: return "DW_AT_namelist_items";
6777 case DW_AT_priority
: return "DW_AT_priority";
6778 case DW_AT_segment
: return "DW_AT_segment";
6779 case DW_AT_specification
: return "DW_AT_specification";
6780 case DW_AT_static_link
: return "DW_AT_static_link";
6781 case DW_AT_type
: return "DW_AT_type";
6782 case DW_AT_use_location
: return "DW_AT_use_location";
6783 case DW_AT_variable_parameter
: return "DW_AT_variable_parameter";
6784 case DW_AT_virtuality
: return "DW_AT_virtuality";
6785 case DW_AT_vtable_elem_location
: return "DW_AT_vtable_elem_location";
6786 /* DWARF 2.1 values. */
6787 case DW_AT_allocated
: return "DW_AT_allocated";
6788 case DW_AT_associated
: return "DW_AT_associated";
6789 case DW_AT_data_location
: return "DW_AT_data_location";
6790 case DW_AT_stride
: return "DW_AT_stride";
6791 case DW_AT_entry_pc
: return "DW_AT_entry_pc";
6792 case DW_AT_use_UTF8
: return "DW_AT_use_UTF8";
6793 case DW_AT_extension
: return "DW_AT_extension";
6794 case DW_AT_ranges
: return "DW_AT_ranges";
6795 case DW_AT_trampoline
: return "DW_AT_trampoline";
6796 case DW_AT_call_column
: return "DW_AT_call_column";
6797 case DW_AT_call_file
: return "DW_AT_call_file";
6798 case DW_AT_call_line
: return "DW_AT_call_line";
6799 /* SGI/MIPS extensions. */
6800 case DW_AT_MIPS_fde
: return "DW_AT_MIPS_fde";
6801 case DW_AT_MIPS_loop_begin
: return "DW_AT_MIPS_loop_begin";
6802 case DW_AT_MIPS_tail_loop_begin
: return "DW_AT_MIPS_tail_loop_begin";
6803 case DW_AT_MIPS_epilog_begin
: return "DW_AT_MIPS_epilog_begin";
6804 case DW_AT_MIPS_loop_unroll_factor
: return "DW_AT_MIPS_loop_unroll_factor";
6805 case DW_AT_MIPS_software_pipeline_depth
:
6806 return "DW_AT_MIPS_software_pipeline_depth";
6807 case DW_AT_MIPS_linkage_name
: return "DW_AT_MIPS_linkage_name";
6808 case DW_AT_MIPS_stride
: return "DW_AT_MIPS_stride";
6809 case DW_AT_MIPS_abstract_name
: return "DW_AT_MIPS_abstract_name";
6810 case DW_AT_MIPS_clone_origin
: return "DW_AT_MIPS_clone_origin";
6811 case DW_AT_MIPS_has_inlines
: return "DW_AT_MIPS_has_inlines";
6812 /* GNU extensions. */
6813 case DW_AT_sf_names
: return "DW_AT_sf_names";
6814 case DW_AT_src_info
: return "DW_AT_src_info";
6815 case DW_AT_mac_info
: return "DW_AT_mac_info";
6816 case DW_AT_src_coords
: return "DW_AT_src_coords";
6817 case DW_AT_body_begin
: return "DW_AT_body_begin";
6818 case DW_AT_body_end
: return "DW_AT_body_end";
6819 case DW_AT_GNU_vector
: return "DW_AT_GNU_vector";
6820 /* UPC extension. */
6821 case DW_AT_upc_threads_scaled
: return "DW_AT_upc_threads_scaled";
6824 static char buffer
[100];
6826 sprintf (buffer
, _("Unknown AT value: %lx"), attribute
);
6833 get_FORM_name (unsigned long form
)
6837 case DW_FORM_addr
: return "DW_FORM_addr";
6838 case DW_FORM_block2
: return "DW_FORM_block2";
6839 case DW_FORM_block4
: return "DW_FORM_block4";
6840 case DW_FORM_data2
: return "DW_FORM_data2";
6841 case DW_FORM_data4
: return "DW_FORM_data4";
6842 case DW_FORM_data8
: return "DW_FORM_data8";
6843 case DW_FORM_string
: return "DW_FORM_string";
6844 case DW_FORM_block
: return "DW_FORM_block";
6845 case DW_FORM_block1
: return "DW_FORM_block1";
6846 case DW_FORM_data1
: return "DW_FORM_data1";
6847 case DW_FORM_flag
: return "DW_FORM_flag";
6848 case DW_FORM_sdata
: return "DW_FORM_sdata";
6849 case DW_FORM_strp
: return "DW_FORM_strp";
6850 case DW_FORM_udata
: return "DW_FORM_udata";
6851 case DW_FORM_ref_addr
: return "DW_FORM_ref_addr";
6852 case DW_FORM_ref1
: return "DW_FORM_ref1";
6853 case DW_FORM_ref2
: return "DW_FORM_ref2";
6854 case DW_FORM_ref4
: return "DW_FORM_ref4";
6855 case DW_FORM_ref8
: return "DW_FORM_ref8";
6856 case DW_FORM_ref_udata
: return "DW_FORM_ref_udata";
6857 case DW_FORM_indirect
: return "DW_FORM_indirect";
6860 static char buffer
[100];
6862 sprintf (buffer
, _("Unknown FORM value: %lx"), form
);
6868 /* FIXME: There are better and more efficient ways to handle
6869 these structures. For now though, I just want something that
6870 is simple to implement. */
6871 typedef struct abbrev_attr
6873 unsigned long attribute
;
6875 struct abbrev_attr
*next
;
6879 typedef struct abbrev_entry
6881 unsigned long entry
;
6884 struct abbrev_attr
*first_attr
;
6885 struct abbrev_attr
*last_attr
;
6886 struct abbrev_entry
*next
;
6890 static abbrev_entry
*first_abbrev
= NULL
;
6891 static abbrev_entry
*last_abbrev
= NULL
;
6896 abbrev_entry
*abbrev
;
6898 for (abbrev
= first_abbrev
; abbrev
;)
6900 abbrev_entry
*next
= abbrev
->next
;
6903 for (attr
= abbrev
->first_attr
; attr
;)
6905 abbrev_attr
*next
= attr
->next
;
6915 last_abbrev
= first_abbrev
= NULL
;
6919 add_abbrev (unsigned long number
, unsigned long tag
, int children
)
6921 abbrev_entry
*entry
;
6923 entry
= malloc (sizeof (*entry
));
6929 entry
->entry
= number
;
6931 entry
->children
= children
;
6932 entry
->first_attr
= NULL
;
6933 entry
->last_attr
= NULL
;
6936 if (first_abbrev
== NULL
)
6937 first_abbrev
= entry
;
6939 last_abbrev
->next
= entry
;
6941 last_abbrev
= entry
;
6945 add_abbrev_attr (unsigned long attribute
, unsigned long form
)
6949 attr
= malloc (sizeof (*attr
));
6955 attr
->attribute
= attribute
;
6959 if (last_abbrev
->first_attr
== NULL
)
6960 last_abbrev
->first_attr
= attr
;
6962 last_abbrev
->last_attr
->next
= attr
;
6964 last_abbrev
->last_attr
= attr
;
6967 /* Processes the (partial) contents of a .debug_abbrev section.
6968 Returns NULL if the end of the section was encountered.
6969 Returns the address after the last byte read if the end of
6970 an abbreviation set was found. */
6972 static unsigned char *
6973 process_abbrev_section (unsigned char *start
, unsigned char *end
)
6975 if (first_abbrev
!= NULL
)
6981 unsigned long entry
;
6983 unsigned long attribute
;
6986 entry
= read_leb128 (start
, & bytes_read
, 0);
6987 start
+= bytes_read
;
6989 /* A single zero is supposed to end the section according
6990 to the standard. If there's more, then signal that to
6993 return start
== end
? NULL
: start
;
6995 tag
= read_leb128 (start
, & bytes_read
, 0);
6996 start
+= bytes_read
;
6998 children
= *start
++;
7000 add_abbrev (entry
, tag
, children
);
7006 attribute
= read_leb128 (start
, & bytes_read
, 0);
7007 start
+= bytes_read
;
7009 form
= read_leb128 (start
, & bytes_read
, 0);
7010 start
+= bytes_read
;
7013 add_abbrev_attr (attribute
, form
);
7015 while (attribute
!= 0);
7023 display_debug_macinfo (Elf_Internal_Shdr
*section
,
7024 unsigned char *start
,
7025 FILE *file ATTRIBUTE_UNUSED
)
7027 unsigned char *end
= start
+ section
->sh_size
;
7028 unsigned char *curr
= start
;
7029 unsigned int bytes_read
;
7030 enum dwarf_macinfo_record_type op
;
7032 printf (_("Contents of the %s section:\n\n"), SECTION_NAME (section
));
7036 unsigned int lineno
;
7044 case DW_MACINFO_start_file
:
7046 unsigned int filenum
;
7048 lineno
= read_leb128 (curr
, & bytes_read
, 0);
7050 filenum
= read_leb128 (curr
, & bytes_read
, 0);
7053 printf (_(" DW_MACINFO_start_file - lineno: %d filenum: %d\n"), lineno
, filenum
);
7057 case DW_MACINFO_end_file
:
7058 printf (_(" DW_MACINFO_end_file\n"));
7061 case DW_MACINFO_define
:
7062 lineno
= read_leb128 (curr
, & bytes_read
, 0);
7065 curr
+= strlen (string
) + 1;
7066 printf (_(" DW_MACINFO_define - lineno : %d macro : %s\n"), lineno
, string
);
7069 case DW_MACINFO_undef
:
7070 lineno
= read_leb128 (curr
, & bytes_read
, 0);
7073 curr
+= strlen (string
) + 1;
7074 printf (_(" DW_MACINFO_undef - lineno : %d macro : %s\n"), lineno
, string
);
7077 case DW_MACINFO_vendor_ext
:
7079 unsigned int constant
;
7081 constant
= read_leb128 (curr
, & bytes_read
, 0);
7084 curr
+= strlen (string
) + 1;
7085 printf (_(" DW_MACINFO_vendor_ext - constant : %d string : %s\n"), constant
, string
);
7096 display_debug_abbrev (Elf_Internal_Shdr
*section
,
7097 unsigned char *start
,
7098 FILE *file ATTRIBUTE_UNUSED
)
7100 abbrev_entry
*entry
;
7101 unsigned char *end
= start
+ section
->sh_size
;
7103 printf (_("Contents of the %s section:\n\n"), SECTION_NAME (section
));
7107 start
= process_abbrev_section (start
, end
);
7109 if (first_abbrev
== NULL
)
7112 printf (_(" Number TAG\n"));
7114 for (entry
= first_abbrev
; entry
; entry
= entry
->next
)
7118 printf (_(" %ld %s [%s]\n"),
7120 get_TAG_name (entry
->tag
),
7121 entry
->children
? _("has children") : _("no children"));
7123 for (attr
= entry
->first_attr
; attr
; attr
= attr
->next
)
7125 printf (_(" %-18s %s\n"),
7126 get_AT_name (attr
->attribute
),
7127 get_FORM_name (attr
->form
));
7141 static unsigned char *
7142 display_block (unsigned char *data
, unsigned long length
)
7144 printf (_(" %lu byte block: "), length
);
7147 printf ("%lx ", (unsigned long) byte_get (data
++, 1));
7153 decode_location_expression (unsigned char * data
,
7154 unsigned int pointer_size
,
7155 unsigned long length
)
7159 unsigned long uvalue
;
7160 unsigned char *end
= data
+ length
;
7169 printf ("DW_OP_addr: %lx",
7170 (unsigned long) byte_get (data
, pointer_size
));
7171 data
+= pointer_size
;
7174 printf ("DW_OP_deref");
7177 printf ("DW_OP_const1u: %lu", (unsigned long) byte_get (data
++, 1));
7180 printf ("DW_OP_const1s: %ld", (long) byte_get (data
++, 1));
7183 printf ("DW_OP_const2u: %lu", (unsigned long) byte_get (data
, 2));
7187 printf ("DW_OP_const2s: %ld", (long) byte_get (data
, 2));
7191 printf ("DW_OP_const4u: %lu", (unsigned long) byte_get (data
, 4));
7195 printf ("DW_OP_const4s: %ld", (long) byte_get (data
, 4));
7199 printf ("DW_OP_const8u: %lu %lu", (unsigned long) byte_get (data
, 4),
7200 (unsigned long) byte_get (data
+ 4, 4));
7204 printf ("DW_OP_const8s: %ld %ld", (long) byte_get (data
, 4),
7205 (long) byte_get (data
+ 4, 4));
7209 printf ("DW_OP_constu: %lu", read_leb128 (data
, &bytes_read
, 0));
7213 printf ("DW_OP_consts: %ld", read_leb128 (data
, &bytes_read
, 1));
7217 printf ("DW_OP_dup");
7220 printf ("DW_OP_drop");
7223 printf ("DW_OP_over");
7226 printf ("DW_OP_pick: %ld", (unsigned long) byte_get (data
++, 1));
7229 printf ("DW_OP_swap");
7232 printf ("DW_OP_rot");
7235 printf ("DW_OP_xderef");
7238 printf ("DW_OP_abs");
7241 printf ("DW_OP_and");
7244 printf ("DW_OP_div");
7247 printf ("DW_OP_minus");
7250 printf ("DW_OP_mod");
7253 printf ("DW_OP_mul");
7256 printf ("DW_OP_neg");
7259 printf ("DW_OP_not");
7262 printf ("DW_OP_or");
7265 printf ("DW_OP_plus");
7267 case DW_OP_plus_uconst
:
7268 printf ("DW_OP_plus_uconst: %lu",
7269 read_leb128 (data
, &bytes_read
, 0));
7273 printf ("DW_OP_shl");
7276 printf ("DW_OP_shr");
7279 printf ("DW_OP_shra");
7282 printf ("DW_OP_xor");
7285 printf ("DW_OP_bra: %ld", (long) byte_get (data
, 2));
7289 printf ("DW_OP_eq");
7292 printf ("DW_OP_ge");
7295 printf ("DW_OP_gt");
7298 printf ("DW_OP_le");
7301 printf ("DW_OP_lt");
7304 printf ("DW_OP_ne");
7307 printf ("DW_OP_skip: %ld", (long) byte_get (data
, 2));
7343 printf ("DW_OP_lit%d", op
- DW_OP_lit0
);
7378 printf ("DW_OP_reg%d", op
- DW_OP_reg0
);
7413 printf ("DW_OP_breg%d: %ld", op
- DW_OP_breg0
,
7414 read_leb128 (data
, &bytes_read
, 1));
7419 printf ("DW_OP_regx: %lu", read_leb128 (data
, &bytes_read
, 0));
7423 printf ("DW_OP_fbreg: %ld", read_leb128 (data
, &bytes_read
, 1));
7427 uvalue
= read_leb128 (data
, &bytes_read
, 0);
7429 printf ("DW_OP_bregx: %lu %ld", uvalue
,
7430 read_leb128 (data
, &bytes_read
, 1));
7434 printf ("DW_OP_piece: %lu", read_leb128 (data
, &bytes_read
, 0));
7437 case DW_OP_deref_size
:
7438 printf ("DW_OP_deref_size: %ld", (long) byte_get (data
++, 1));
7440 case DW_OP_xderef_size
:
7441 printf ("DW_OP_xderef_size: %ld", (long) byte_get (data
++, 1));
7444 printf ("DW_OP_nop");
7447 /* DWARF 3 extensions. */
7448 case DW_OP_push_object_address
:
7449 printf ("DW_OP_push_object_address");
7452 printf ("DW_OP_call2: <%lx>", (long) byte_get (data
, 2));
7456 printf ("DW_OP_call4: <%lx>", (long) byte_get (data
, 4));
7459 case DW_OP_call_ref
:
7460 printf ("DW_OP_call_ref");
7463 /* GNU extensions. */
7464 case DW_OP_GNU_push_tls_address
:
7465 printf ("DW_OP_GNU_push_tls_address");
7469 if (op
>= DW_OP_lo_user
7470 && op
<= DW_OP_hi_user
)
7471 printf (_("(User defined location op)"));
7473 printf (_("(Unknown location op)"));
7474 /* No way to tell where the next op is, so just bail. */
7478 /* Separate the ops. */
7484 static const char *debug_loc_contents
;
7485 static bfd_vma debug_loc_size
;
7488 load_debug_loc (FILE *file
)
7490 Elf_Internal_Shdr
*sec
;
7493 /* If it is already loaded, do nothing. */
7494 if (debug_loc_contents
!= NULL
)
7497 /* Locate the .debug_loc section. */
7498 for (i
= 0, sec
= section_headers
;
7499 i
< elf_header
.e_shnum
;
7501 if (strcmp (SECTION_NAME (sec
), ".debug_loc") == 0)
7504 if (i
== elf_header
.e_shnum
|| sec
->sh_size
== 0)
7507 debug_loc_size
= sec
->sh_size
;
7509 debug_loc_contents
= get_data (NULL
, file
, sec
->sh_offset
, sec
->sh_size
,
7510 _("debug_loc section data"));
7514 free_debug_loc (void)
7516 if (debug_loc_contents
== NULL
)
7519 free ((char *) debug_loc_contents
);
7520 debug_loc_contents
= NULL
;
7526 display_debug_loc (Elf_Internal_Shdr
*section
,
7527 unsigned char *start
,
7528 FILE *file ATTRIBUTE_UNUSED
)
7530 unsigned char *section_end
;
7531 unsigned long bytes
;
7532 unsigned char *section_begin
= start
;
7535 addr
= section
->sh_addr
;
7536 bytes
= section
->sh_size
;
7537 section_end
= start
+ bytes
;
7541 printf (_("\nThe .debug_loc section is empty.\n"));
7545 printf (_("Contents of the .debug_loc section:\n\n"));
7546 printf (_("\n Offset Begin End Expression\n"));
7548 while (start
< section_end
)
7550 unsigned long begin
;
7552 unsigned short length
;
7553 unsigned long offset
;
7555 offset
= start
- section_begin
;
7559 /* Normally, the lists in the debug_loc section are related to a
7560 given compilation unit, and thus, we would use the pointer size
7561 of that compilation unit. However, since we are displaying it
7562 separately here, we either have to store pointer sizes of all
7563 compilation units, or assume they don't change. We assume,
7564 like the debug_line display, that it doesn't change. */
7565 begin
= byte_get (start
, debug_line_pointer_size
);
7566 start
+= debug_line_pointer_size
;
7567 end
= byte_get (start
, debug_line_pointer_size
);
7568 start
+= debug_line_pointer_size
;
7570 if (begin
== 0 && end
== 0)
7573 /* For now, skip any base address specifiers. */
7574 if (begin
== 0xffffffff)
7580 length
= byte_get (start
, 2);
7583 printf (" %8.8lx %8.8lx %8.8lx (", offset
, begin
, end
);
7584 decode_location_expression (start
, debug_line_pointer_size
, length
);
7594 static const char *debug_str_contents
;
7595 static bfd_vma debug_str_size
;
7598 load_debug_str (FILE *file
)
7600 Elf_Internal_Shdr
*sec
;
7603 /* If it is already loaded, do nothing. */
7604 if (debug_str_contents
!= NULL
)
7607 /* Locate the .debug_str section. */
7608 for (i
= 0, sec
= section_headers
;
7609 i
< elf_header
.e_shnum
;
7611 if (strcmp (SECTION_NAME (sec
), ".debug_str") == 0)
7614 if (i
== elf_header
.e_shnum
|| sec
->sh_size
== 0)
7617 debug_str_size
= sec
->sh_size
;
7619 debug_str_contents
= get_data (NULL
, file
, sec
->sh_offset
, sec
->sh_size
,
7620 _("debug_str section data"));
7624 free_debug_str (void)
7626 if (debug_str_contents
== NULL
)
7629 free ((char *) debug_str_contents
);
7630 debug_str_contents
= NULL
;
7635 fetch_indirect_string (unsigned long offset
)
7637 if (debug_str_contents
== NULL
)
7638 return _("<no .debug_str section>");
7640 if (offset
> debug_str_size
)
7641 return _("<offset is too big>");
7643 return debug_str_contents
+ offset
;
7647 display_debug_str (Elf_Internal_Shdr
*section
,
7648 unsigned char *start
,
7649 FILE *file ATTRIBUTE_UNUSED
)
7651 unsigned long bytes
;
7654 addr
= section
->sh_addr
;
7655 bytes
= section
->sh_size
;
7659 printf (_("\nThe .debug_str section is empty.\n"));
7663 printf (_("Contents of the .debug_str section:\n\n"));
7671 lbytes
= (bytes
> 16 ? 16 : bytes
);
7673 printf (" 0x%8.8lx ", (unsigned long) addr
);
7675 for (j
= 0; j
< 16; j
++)
7678 printf ("%2.2x", start
[j
]);
7686 for (j
= 0; j
< lbytes
; j
++)
7689 if (k
>= ' ' && k
< 0x80)
7705 static unsigned char *
7706 read_and_display_attr_value (unsigned long attribute
,
7708 unsigned char *data
,
7709 unsigned long cu_offset
,
7710 unsigned long pointer_size
,
7711 unsigned long offset_size
,
7714 unsigned long uvalue
= 0;
7715 unsigned char *block_start
= NULL
;
7723 case DW_FORM_ref_addr
:
7724 if (dwarf_version
== 2)
7726 uvalue
= byte_get (data
, pointer_size
);
7727 data
+= pointer_size
;
7729 else if (dwarf_version
== 3)
7731 uvalue
= byte_get (data
, offset_size
);
7732 data
+= offset_size
;
7736 error (_("Internal error: DWARF version is not 2 or 3.\n"));
7741 uvalue
= byte_get (data
, pointer_size
);
7742 data
+= pointer_size
;
7746 uvalue
= byte_get (data
, offset_size
);
7747 data
+= offset_size
;
7753 uvalue
= byte_get (data
++, 1);
7758 uvalue
= byte_get (data
, 2);
7764 uvalue
= byte_get (data
, 4);
7769 uvalue
= read_leb128 (data
, & bytes_read
, 1);
7773 case DW_FORM_ref_udata
:
7775 uvalue
= read_leb128 (data
, & bytes_read
, 0);
7779 case DW_FORM_indirect
:
7780 form
= read_leb128 (data
, & bytes_read
, 0);
7782 printf (" %s", get_FORM_name (form
));
7783 return read_and_display_attr_value (attribute
, form
, data
, cu_offset
,
7784 pointer_size
, offset_size
,
7790 case DW_FORM_ref_addr
:
7791 printf (" <#%lx>", uvalue
);
7797 case DW_FORM_ref_udata
:
7798 printf (" <%lx>", uvalue
+ cu_offset
);
7802 printf (" %#lx", uvalue
);
7810 printf (" %ld", uvalue
);
7815 uvalue
= byte_get (data
, 4);
7816 printf (" %lx", uvalue
);
7817 printf (" %lx", (unsigned long) byte_get (data
+ 4, 4));
7821 case DW_FORM_string
:
7822 printf (" %s", data
);
7823 data
+= strlen ((char *) data
) + 1;
7827 uvalue
= read_leb128 (data
, & bytes_read
, 0);
7828 block_start
= data
+ bytes_read
;
7829 data
= display_block (block_start
, uvalue
);
7832 case DW_FORM_block1
:
7833 uvalue
= byte_get (data
, 1);
7834 block_start
= data
+ 1;
7835 data
= display_block (block_start
, uvalue
);
7838 case DW_FORM_block2
:
7839 uvalue
= byte_get (data
, 2);
7840 block_start
= data
+ 2;
7841 data
= display_block (block_start
, uvalue
);
7844 case DW_FORM_block4
:
7845 uvalue
= byte_get (data
, 4);
7846 block_start
= data
+ 4;
7847 data
= display_block (block_start
, uvalue
);
7851 printf (_(" (indirect string, offset: 0x%lx): %s"),
7852 uvalue
, fetch_indirect_string (uvalue
));
7855 case DW_FORM_indirect
:
7856 /* Handled above. */
7860 warn (_("Unrecognized form: %d\n"), form
);
7864 /* For some attributes we can display further information. */
7873 case DW_INL_not_inlined
:
7874 printf (_("(not inlined)"));
7876 case DW_INL_inlined
:
7877 printf (_("(inlined)"));
7879 case DW_INL_declared_not_inlined
:
7880 printf (_("(declared as inline but ignored)"));
7882 case DW_INL_declared_inlined
:
7883 printf (_("(declared as inline and inlined)"));
7886 printf (_(" (Unknown inline attribute value: %lx)"), uvalue
);
7891 case DW_AT_language
:
7894 case DW_LANG_C
: printf ("(non-ANSI C)"); break;
7895 case DW_LANG_C89
: printf ("(ANSI C)"); break;
7896 case DW_LANG_C_plus_plus
: printf ("(C++)"); break;
7897 case DW_LANG_Fortran77
: printf ("(FORTRAN 77)"); break;
7898 case DW_LANG_Fortran90
: printf ("(Fortran 90)"); break;
7899 case DW_LANG_Modula2
: printf ("(Modula 2)"); break;
7900 case DW_LANG_Pascal83
: printf ("(ANSI Pascal)"); break;
7901 case DW_LANG_Ada83
: printf ("(Ada)"); break;
7902 case DW_LANG_Cobol74
: printf ("(Cobol 74)"); break;
7903 case DW_LANG_Cobol85
: printf ("(Cobol 85)"); break;
7904 /* DWARF 2.1 values. */
7905 case DW_LANG_C99
: printf ("(ANSI C99)"); break;
7906 case DW_LANG_Ada95
: printf ("(ADA 95)"); break;
7907 case DW_LANG_Fortran95
: printf ("(Fortran 95)"); break;
7908 /* MIPS extension. */
7909 case DW_LANG_Mips_Assembler
: printf ("(MIPS assembler)"); break;
7910 /* UPC extension. */
7911 case DW_LANG_Upc
: printf ("(Unified Parallel C)"); break;
7913 printf ("(Unknown: %lx)", uvalue
);
7918 case DW_AT_encoding
:
7921 case DW_ATE_void
: printf ("(void)"); break;
7922 case DW_ATE_address
: printf ("(machine address)"); break;
7923 case DW_ATE_boolean
: printf ("(boolean)"); break;
7924 case DW_ATE_complex_float
: printf ("(complex float)"); break;
7925 case DW_ATE_float
: printf ("(float)"); break;
7926 case DW_ATE_signed
: printf ("(signed)"); break;
7927 case DW_ATE_signed_char
: printf ("(signed char)"); break;
7928 case DW_ATE_unsigned
: printf ("(unsigned)"); break;
7929 case DW_ATE_unsigned_char
: printf ("(unsigned char)"); break;
7930 /* DWARF 2.1 value. */
7931 case DW_ATE_imaginary_float
: printf ("(imaginary float)"); break;
7933 if (uvalue
>= DW_ATE_lo_user
7934 && uvalue
<= DW_ATE_hi_user
)
7935 printf ("(user defined type)");
7937 printf ("(unknown type)");
7942 case DW_AT_accessibility
:
7945 case DW_ACCESS_public
: printf ("(public)"); break;
7946 case DW_ACCESS_protected
: printf ("(protected)"); break;
7947 case DW_ACCESS_private
: printf ("(private)"); break;
7949 printf ("(unknown accessibility)");
7954 case DW_AT_visibility
:
7957 case DW_VIS_local
: printf ("(local)"); break;
7958 case DW_VIS_exported
: printf ("(exported)"); break;
7959 case DW_VIS_qualified
: printf ("(qualified)"); break;
7960 default: printf ("(unknown visibility)"); break;
7964 case DW_AT_virtuality
:
7967 case DW_VIRTUALITY_none
: printf ("(none)"); break;
7968 case DW_VIRTUALITY_virtual
: printf ("(virtual)"); break;
7969 case DW_VIRTUALITY_pure_virtual
:printf ("(pure_virtual)"); break;
7970 default: printf ("(unknown virtuality)"); break;
7974 case DW_AT_identifier_case
:
7977 case DW_ID_case_sensitive
: printf ("(case_sensitive)"); break;
7978 case DW_ID_up_case
: printf ("(up_case)"); break;
7979 case DW_ID_down_case
: printf ("(down_case)"); break;
7980 case DW_ID_case_insensitive
: printf ("(case_insensitive)"); break;
7981 default: printf ("(unknown case)"); break;
7985 case DW_AT_calling_convention
:
7988 case DW_CC_normal
: printf ("(normal)"); break;
7989 case DW_CC_program
: printf ("(program)"); break;
7990 case DW_CC_nocall
: printf ("(nocall)"); break;
7992 if (uvalue
>= DW_CC_lo_user
7993 && uvalue
<= DW_CC_hi_user
)
7994 printf ("(user defined)");
7996 printf ("(unknown convention)");
8000 case DW_AT_ordering
:
8003 case -1: printf ("(undefined)"); break;
8004 case 0: printf ("(row major)"); break;
8005 case 1: printf ("(column major)"); break;
8009 case DW_AT_frame_base
:
8010 case DW_AT_location
:
8011 case DW_AT_data_member_location
:
8012 case DW_AT_vtable_elem_location
:
8013 case DW_AT_allocated
:
8014 case DW_AT_associated
:
8015 case DW_AT_data_location
:
8017 case DW_AT_upper_bound
:
8018 case DW_AT_lower_bound
:
8022 decode_location_expression (block_start
, pointer_size
, uvalue
);
8025 else if (form
== DW_FORM_data4
|| form
== DW_FORM_data8
)
8028 printf ("location list");
8040 static unsigned char *
8041 read_and_display_attr (unsigned long attribute
,
8043 unsigned char *data
,
8044 unsigned long cu_offset
,
8045 unsigned long pointer_size
,
8046 unsigned long offset_size
,
8049 printf (" %-18s:", get_AT_name (attribute
));
8050 data
= read_and_display_attr_value (attribute
, form
, data
, cu_offset
,
8051 pointer_size
, offset_size
, dwarf_version
);
8057 display_debug_info (Elf_Internal_Shdr
*section
,
8058 unsigned char *start
,
8061 unsigned char *end
= start
+ section
->sh_size
;
8062 unsigned char *section_begin
= start
;
8064 printf (_("The section %s contains:\n\n"), SECTION_NAME (section
));
8066 load_debug_str (file
);
8067 load_debug_loc (file
);
8071 DWARF2_Internal_CompUnit compunit
;
8072 Elf_Internal_Shdr
*relsec
;
8073 unsigned char *hdrptr
;
8074 unsigned char *cu_abbrev_offset_ptr
;
8075 unsigned char *tags
;
8078 unsigned long cu_offset
;
8080 int initial_length_size
;
8084 compunit
.cu_length
= byte_get (hdrptr
, 4);
8087 if (compunit
.cu_length
== 0xffffffff)
8089 compunit
.cu_length
= byte_get (hdrptr
, 8);
8092 initial_length_size
= 12;
8097 initial_length_size
= 4;
8100 compunit
.cu_version
= byte_get (hdrptr
, 2);
8103 /* Apply addends of RELA relocations. */
8104 for (relsec
= section_headers
;
8105 relsec
< section_headers
+ elf_header
.e_shnum
;
8108 unsigned long nrelas
;
8109 Elf_Internal_Rela
*rela
, *rp
;
8110 Elf_Internal_Shdr
*symsec
;
8111 Elf_Internal_Sym
*symtab
;
8112 Elf_Internal_Sym
*sym
;
8114 if (relsec
->sh_type
!= SHT_RELA
8115 || SECTION_HEADER (relsec
->sh_info
) != section
8116 || relsec
->sh_size
== 0)
8119 if (!slurp_rela_relocs (file
, relsec
->sh_offset
, relsec
->sh_size
,
8123 symsec
= SECTION_HEADER (relsec
->sh_link
);
8124 symtab
= GET_ELF_SYMBOLS (file
, symsec
);
8126 for (rp
= rela
; rp
< rela
+ nrelas
; ++rp
)
8130 if (rp
->r_offset
>= (bfd_vma
) (hdrptr
- section_begin
)
8131 && section
->sh_size
> (bfd_vma
) offset_size
8132 && rp
->r_offset
<= section
->sh_size
- offset_size
)
8133 loc
= section_begin
+ rp
->r_offset
;
8139 sym
= symtab
+ ELF32_R_SYM (rp
->r_info
);
8141 if (ELF32_R_SYM (rp
->r_info
) != 0
8142 && ELF32_ST_TYPE (sym
->st_info
) != STT_SECTION
)
8144 warn (_("Skipping unexpected symbol type %u\n"),
8145 ELF32_ST_TYPE (sym
->st_info
));
8151 sym
= symtab
+ ELF64_R_SYM (rp
->r_info
);
8153 if (ELF64_R_SYM (rp
->r_info
) != 0
8154 && ELF64_ST_TYPE (sym
->st_info
) != STT_SECTION
)
8156 warn (_("Skipping unexpected symbol type %u\n"),
8157 ELF64_ST_TYPE (sym
->st_info
));
8162 byte_put (loc
, rp
->r_addend
, offset_size
);
8169 cu_abbrev_offset_ptr
= hdrptr
;
8170 compunit
.cu_abbrev_offset
= byte_get (hdrptr
, offset_size
);
8171 hdrptr
+= offset_size
;
8173 compunit
.cu_pointer_size
= byte_get (hdrptr
, 1);
8177 cu_offset
= start
- section_begin
;
8178 start
+= compunit
.cu_length
+ initial_length_size
;
8180 printf (_(" Compilation Unit @ %lx:\n"), cu_offset
);
8181 printf (_(" Length: %ld\n"), compunit
.cu_length
);
8182 printf (_(" Version: %d\n"), compunit
.cu_version
);
8183 printf (_(" Abbrev Offset: %ld\n"), compunit
.cu_abbrev_offset
);
8184 printf (_(" Pointer Size: %d\n"), compunit
.cu_pointer_size
);
8186 if (compunit
.cu_version
!= 2 && compunit
.cu_version
!= 3)
8188 warn (_("Only version 2 and 3 DWARF debug information is currently supported.\n"));
8194 /* Read in the abbrevs used by this compilation unit. */
8196 Elf_Internal_Shdr
*sec
;
8197 unsigned char *begin
;
8199 /* Locate the .debug_abbrev section and process it. */
8200 for (i
= 0, sec
= section_headers
;
8201 i
< elf_header
.e_shnum
;
8203 if (strcmp (SECTION_NAME (sec
), ".debug_abbrev") == 0)
8206 if (i
== elf_header
.e_shnum
|| sec
->sh_size
== 0)
8208 warn (_("Unable to locate .debug_abbrev section!\n"));
8212 begin
= get_data (NULL
, file
, sec
->sh_offset
, sec
->sh_size
,
8213 _("debug_abbrev section data"));
8217 process_abbrev_section (begin
+ compunit
.cu_abbrev_offset
,
8218 begin
+ sec
->sh_size
);
8224 while (tags
< start
)
8227 unsigned long abbrev_number
;
8228 abbrev_entry
*entry
;
8231 abbrev_number
= read_leb128 (tags
, & bytes_read
, 0);
8234 /* A null DIE marks the end of a list of children. */
8235 if (abbrev_number
== 0)
8241 /* Scan through the abbreviation list until we reach the
8243 for (entry
= first_abbrev
;
8244 entry
&& entry
->entry
!= abbrev_number
;
8245 entry
= entry
->next
)
8250 warn (_("Unable to locate entry %lu in the abbreviation table\n"),
8255 printf (_(" <%d><%lx>: Abbrev Number: %lu (%s)\n"),
8257 (unsigned long) (tags
- section_begin
- bytes_read
),
8259 get_TAG_name (entry
->tag
));
8261 for (attr
= entry
->first_attr
; attr
; attr
= attr
->next
)
8262 tags
= read_and_display_attr (attr
->attribute
,
8265 compunit
.cu_pointer_size
,
8267 compunit
.cu_version
);
8269 if (entry
->children
)
8283 display_debug_aranges (Elf_Internal_Shdr
*section
,
8284 unsigned char *start
,
8285 FILE *file ATTRIBUTE_UNUSED
)
8287 unsigned char *end
= start
+ section
->sh_size
;
8289 printf (_("The section %s contains:\n\n"), SECTION_NAME (section
));
8293 unsigned char *hdrptr
;
8294 DWARF2_Internal_ARange arange
;
8295 unsigned char *ranges
;
8296 unsigned long length
;
8297 unsigned long address
;
8300 int initial_length_size
;
8304 arange
.ar_length
= byte_get (hdrptr
, 4);
8307 if (arange
.ar_length
== 0xffffffff)
8309 arange
.ar_length
= byte_get (hdrptr
, 8);
8312 initial_length_size
= 12;
8317 initial_length_size
= 4;
8320 arange
.ar_version
= byte_get (hdrptr
, 2);
8323 arange
.ar_info_offset
= byte_get (hdrptr
, offset_size
);
8324 hdrptr
+= offset_size
;
8326 arange
.ar_pointer_size
= byte_get (hdrptr
, 1);
8329 arange
.ar_segment_size
= byte_get (hdrptr
, 1);
8332 if (arange
.ar_version
!= 2 && arange
.ar_version
!= 3)
8334 warn (_("Only DWARF 2 and 3 aranges are currently supported.\n"));
8338 printf (_(" Length: %ld\n"), arange
.ar_length
);
8339 printf (_(" Version: %d\n"), arange
.ar_version
);
8340 printf (_(" Offset into .debug_info: %lx\n"), arange
.ar_info_offset
);
8341 printf (_(" Pointer Size: %d\n"), arange
.ar_pointer_size
);
8342 printf (_(" Segment Size: %d\n"), arange
.ar_segment_size
);
8344 printf (_("\n Address Length\n"));
8348 /* Must pad to an alignment boundary that is twice the pointer size. */
8349 excess
= (hdrptr
- start
) % (2 * arange
.ar_pointer_size
);
8351 ranges
+= (2 * arange
.ar_pointer_size
) - excess
;
8355 address
= byte_get (ranges
, arange
.ar_pointer_size
);
8357 ranges
+= arange
.ar_pointer_size
;
8359 length
= byte_get (ranges
, arange
.ar_pointer_size
);
8361 ranges
+= arange
.ar_pointer_size
;
8363 /* A pair of zeros marks the end of the list. */
8364 if (address
== 0 && length
== 0)
8367 printf (" %8.8lx %lu\n", address
, length
);
8370 start
+= arange
.ar_length
+ initial_length_size
;
8378 typedef struct Frame_Chunk
8380 struct Frame_Chunk
*next
;
8381 unsigned char *chunk_start
;
8383 /* DW_CFA_{undefined,same_value,offset,register,unreferenced} */
8384 short int *col_type
;
8387 unsigned int code_factor
;
8389 unsigned long pc_begin
;
8390 unsigned long pc_range
;
8394 unsigned char fde_encoding
;
8395 unsigned char cfa_exp
;
8399 /* A marker for a col_type that means this column was never referenced
8400 in the frame info. */
8401 #define DW_CFA_unreferenced (-1)
8404 frame_need_space (Frame_Chunk
*fc
, int reg
)
8406 int prev
= fc
->ncols
;
8408 if (reg
< fc
->ncols
)
8411 fc
->ncols
= reg
+ 1;
8412 fc
->col_type
= xrealloc (fc
->col_type
, fc
->ncols
* sizeof (short int));
8413 fc
->col_offset
= xrealloc (fc
->col_offset
, fc
->ncols
* sizeof (int));
8415 while (prev
< fc
->ncols
)
8417 fc
->col_type
[prev
] = DW_CFA_unreferenced
;
8418 fc
->col_offset
[prev
] = 0;
8424 frame_display_row (Frame_Chunk
*fc
, int *need_col_headers
, int *max_regs
)
8429 if (*max_regs
< fc
->ncols
)
8430 *max_regs
= fc
->ncols
;
8432 if (*need_col_headers
)
8434 *need_col_headers
= 0;
8436 printf (" LOC CFA ");
8438 for (r
= 0; r
< *max_regs
; r
++)
8439 if (fc
->col_type
[r
] != DW_CFA_unreferenced
)
8444 printf ("r%-4d", r
);
8450 printf ("%08lx ", fc
->pc_begin
);
8452 strcpy (tmp
, "exp");
8454 sprintf (tmp
, "r%d%+d", fc
->cfa_reg
, fc
->cfa_offset
);
8455 printf ("%-8s ", tmp
);
8457 for (r
= 0; r
< fc
->ncols
; r
++)
8459 if (fc
->col_type
[r
] != DW_CFA_unreferenced
)
8461 switch (fc
->col_type
[r
])
8463 case DW_CFA_undefined
:
8466 case DW_CFA_same_value
:
8470 sprintf (tmp
, "c%+d", fc
->col_offset
[r
]);
8472 case DW_CFA_register
:
8473 sprintf (tmp
, "r%d", fc
->col_offset
[r
]);
8475 case DW_CFA_expression
:
8476 strcpy (tmp
, "exp");
8479 strcpy (tmp
, "n/a");
8482 printf ("%-5s", tmp
);
8489 size_of_encoded_value (int encoding
)
8491 switch (encoding
& 0x7)
8494 case 0: return is_32bit_elf
? 4 : 8;
8502 get_encoded_value (unsigned char *data
, int encoding
)
8504 int size
= size_of_encoded_value (encoding
);
8505 if (encoding
& DW_EH_PE_signed
)
8506 return byte_get_signed (data
, size
);
8508 return byte_get (data
, size
);
8511 #define GET(N) byte_get (start, N); start += N
8512 #define LEB() read_leb128 (start, & length_return, 0); start += length_return
8513 #define SLEB() read_leb128 (start, & length_return, 1); start += length_return
8516 display_debug_frames (Elf_Internal_Shdr
*section
,
8517 unsigned char *start
,
8518 FILE *file ATTRIBUTE_UNUSED
)
8520 unsigned char *end
= start
+ section
->sh_size
;
8521 unsigned char *section_start
= start
;
8522 Frame_Chunk
*chunks
= 0;
8523 Frame_Chunk
*remembered_state
= 0;
8525 int is_eh
= (strcmp (SECTION_NAME (section
), ".eh_frame") == 0);
8528 int addr_size
= is_32bit_elf
? 4 : 8;
8530 printf (_("The section %s contains:\n"), SECTION_NAME (section
));
8534 unsigned char *saved_start
;
8535 unsigned char *block_end
;
8536 unsigned long length
;
8537 unsigned long cie_id
;
8540 int need_col_headers
= 1;
8541 unsigned char *augmentation_data
= NULL
;
8542 unsigned long augmentation_data_len
= 0;
8543 int encoded_ptr_size
= addr_size
;
8545 int initial_length_size
;
8547 saved_start
= start
;
8548 length
= byte_get (start
, 4); start
+= 4;
8552 printf ("\n%08lx ZERO terminator\n\n",
8553 (unsigned long)(saved_start
- section_start
));
8557 if (length
== 0xffffffff)
8559 length
= byte_get (start
, 8);
8562 initial_length_size
= 12;
8567 initial_length_size
= 4;
8570 block_end
= saved_start
+ length
+ initial_length_size
;
8571 cie_id
= byte_get (start
, offset_size
); start
+= offset_size
;
8573 if (is_eh
? (cie_id
== 0) : (cie_id
== DW_CIE_ID
))
8577 fc
= xmalloc (sizeof (Frame_Chunk
));
8578 memset (fc
, 0, sizeof (Frame_Chunk
));
8582 fc
->chunk_start
= saved_start
;
8584 fc
->col_type
= xmalloc (sizeof (short int));
8585 fc
->col_offset
= xmalloc (sizeof (int));
8586 frame_need_space (fc
, max_regs
-1);
8590 fc
->augmentation
= start
;
8591 start
= strchr (start
, '\0') + 1;
8593 if (fc
->augmentation
[0] == 'z')
8595 fc
->code_factor
= LEB ();
8596 fc
->data_factor
= SLEB ();
8597 fc
->ra
= byte_get (start
, 1); start
+= 1;
8598 augmentation_data_len
= LEB ();
8599 augmentation_data
= start
;
8600 start
+= augmentation_data_len
;
8602 else if (strcmp (fc
->augmentation
, "eh") == 0)
8605 fc
->code_factor
= LEB ();
8606 fc
->data_factor
= SLEB ();
8607 fc
->ra
= byte_get (start
, 1); start
+= 1;
8611 fc
->code_factor
= LEB ();
8612 fc
->data_factor
= SLEB ();
8613 fc
->ra
= byte_get (start
, 1); start
+= 1;
8617 if (do_debug_frames_interp
)
8618 printf ("\n%08lx %08lx %08lx CIE \"%s\" cf=%d df=%d ra=%d\n",
8619 (unsigned long)(saved_start
- section_start
), length
, cie_id
,
8620 fc
->augmentation
, fc
->code_factor
, fc
->data_factor
,
8624 printf ("\n%08lx %08lx %08lx CIE\n",
8625 (unsigned long)(saved_start
- section_start
), length
, cie_id
);
8626 printf (" Version: %d\n", version
);
8627 printf (" Augmentation: \"%s\"\n", fc
->augmentation
);
8628 printf (" Code alignment factor: %u\n", fc
->code_factor
);
8629 printf (" Data alignment factor: %d\n", fc
->data_factor
);
8630 printf (" Return address column: %d\n", fc
->ra
);
8632 if (augmentation_data_len
)
8635 printf (" Augmentation data: ");
8636 for (i
= 0; i
< augmentation_data_len
; ++i
)
8637 printf (" %02x", augmentation_data
[i
]);
8643 if (augmentation_data_len
)
8645 unsigned char *p
, *q
;
8646 p
= fc
->augmentation
+ 1;
8647 q
= augmentation_data
;
8654 q
+= 1 + size_of_encoded_value (*q
);
8656 fc
->fde_encoding
= *q
++;
8662 if (fc
->fde_encoding
)
8663 encoded_ptr_size
= size_of_encoded_value (fc
->fde_encoding
);
8666 frame_need_space (fc
, fc
->ra
);
8670 unsigned char *look_for
;
8671 static Frame_Chunk fde_fc
;
8674 memset (fc
, 0, sizeof (Frame_Chunk
));
8676 look_for
= is_eh
? start
- 4 - cie_id
: section_start
+ cie_id
;
8678 for (cie
= chunks
; cie
; cie
= cie
->next
)
8679 if (cie
->chunk_start
== look_for
)
8684 warn ("Invalid CIE pointer %08lx in FDE at %08lx\n",
8685 cie_id
, saved_start
);
8688 fc
->col_type
= xmalloc (sizeof (short int));
8689 fc
->col_offset
= xmalloc (sizeof (int));
8690 frame_need_space (fc
, max_regs
- 1);
8692 fc
->augmentation
= "";
8693 fc
->fde_encoding
= 0;
8697 fc
->ncols
= cie
->ncols
;
8698 fc
->col_type
= xmalloc (fc
->ncols
* sizeof (short int));
8699 fc
->col_offset
= xmalloc (fc
->ncols
* sizeof (int));
8700 memcpy (fc
->col_type
, cie
->col_type
, fc
->ncols
* sizeof (short int));
8701 memcpy (fc
->col_offset
, cie
->col_offset
, fc
->ncols
* sizeof (int));
8702 fc
->augmentation
= cie
->augmentation
;
8703 fc
->code_factor
= cie
->code_factor
;
8704 fc
->data_factor
= cie
->data_factor
;
8705 fc
->cfa_reg
= cie
->cfa_reg
;
8706 fc
->cfa_offset
= cie
->cfa_offset
;
8708 frame_need_space (fc
, max_regs
-1);
8709 fc
->fde_encoding
= cie
->fde_encoding
;
8712 if (fc
->fde_encoding
)
8713 encoded_ptr_size
= size_of_encoded_value (fc
->fde_encoding
);
8715 fc
->pc_begin
= get_encoded_value (start
, fc
->fde_encoding
);
8716 if ((fc
->fde_encoding
& 0x70) == DW_EH_PE_pcrel
)
8717 fc
->pc_begin
+= section
->sh_addr
+ (start
- section_start
);
8718 start
+= encoded_ptr_size
;
8719 fc
->pc_range
= byte_get (start
, encoded_ptr_size
);
8720 start
+= encoded_ptr_size
;
8722 if (cie
->augmentation
[0] == 'z')
8724 augmentation_data_len
= LEB ();
8725 augmentation_data
= start
;
8726 start
+= augmentation_data_len
;
8729 printf ("\n%08lx %08lx %08lx FDE cie=%08lx pc=%08lx..%08lx\n",
8730 (unsigned long)(saved_start
- section_start
), length
, cie_id
,
8731 (unsigned long)(cie
->chunk_start
- section_start
),
8732 fc
->pc_begin
, fc
->pc_begin
+ fc
->pc_range
);
8733 if (! do_debug_frames_interp
&& augmentation_data_len
)
8736 printf (" Augmentation data: ");
8737 for (i
= 0; i
< augmentation_data_len
; ++i
)
8738 printf (" %02x", augmentation_data
[i
]);
8744 /* At this point, fc is the current chunk, cie (if any) is set, and we're
8745 about to interpret instructions for the chunk. */
8746 /* ??? At present we need to do this always, since this sizes the
8747 fc->col_type and fc->col_offset arrays, which we write into always.
8748 We should probably split the interpreted and non-interpreted bits
8749 into two different routines, since there's so much that doesn't
8750 really overlap between them. */
8751 if (1 || do_debug_frames_interp
)
8753 /* Start by making a pass over the chunk, allocating storage
8754 and taking note of what registers are used. */
8755 unsigned char *tmp
= start
;
8757 while (start
< block_end
)
8760 unsigned long reg
, tmp
;
8767 /* Warning: if you add any more cases to this switch, be
8768 sure to add them to the corresponding switch below. */
8771 case DW_CFA_advance_loc
:
8775 frame_need_space (fc
, opa
);
8776 fc
->col_type
[opa
] = DW_CFA_undefined
;
8778 case DW_CFA_restore
:
8779 frame_need_space (fc
, opa
);
8780 fc
->col_type
[opa
] = DW_CFA_undefined
;
8782 case DW_CFA_set_loc
:
8783 start
+= encoded_ptr_size
;
8785 case DW_CFA_advance_loc1
:
8788 case DW_CFA_advance_loc2
:
8791 case DW_CFA_advance_loc4
:
8794 case DW_CFA_offset_extended
:
8795 reg
= LEB (); LEB ();
8796 frame_need_space (fc
, reg
);
8797 fc
->col_type
[reg
] = DW_CFA_undefined
;
8799 case DW_CFA_restore_extended
:
8801 frame_need_space (fc
, reg
);
8802 fc
->col_type
[reg
] = DW_CFA_undefined
;
8804 case DW_CFA_undefined
:
8806 frame_need_space (fc
, reg
);
8807 fc
->col_type
[reg
] = DW_CFA_undefined
;
8809 case DW_CFA_same_value
:
8811 frame_need_space (fc
, reg
);
8812 fc
->col_type
[reg
] = DW_CFA_undefined
;
8814 case DW_CFA_register
:
8815 reg
= LEB (); LEB ();
8816 frame_need_space (fc
, reg
);
8817 fc
->col_type
[reg
] = DW_CFA_undefined
;
8819 case DW_CFA_def_cfa
:
8822 case DW_CFA_def_cfa_register
:
8825 case DW_CFA_def_cfa_offset
:
8828 case DW_CFA_def_cfa_expression
:
8832 case DW_CFA_expression
:
8836 frame_need_space (fc
, reg
);
8837 fc
->col_type
[reg
] = DW_CFA_undefined
;
8839 case DW_CFA_offset_extended_sf
:
8840 reg
= LEB (); SLEB ();
8841 frame_need_space (fc
, reg
);
8842 fc
->col_type
[reg
] = DW_CFA_undefined
;
8844 case DW_CFA_def_cfa_sf
:
8847 case DW_CFA_def_cfa_offset_sf
:
8850 case DW_CFA_MIPS_advance_loc8
:
8853 case DW_CFA_GNU_args_size
:
8856 case DW_CFA_GNU_negative_offset_extended
:
8857 reg
= LEB (); LEB ();
8858 frame_need_space (fc
, reg
);
8859 fc
->col_type
[reg
] = DW_CFA_undefined
;
8868 /* Now we know what registers are used, make a second pass over
8869 the chunk, this time actually printing out the info. */
8871 while (start
< block_end
)
8874 unsigned long ul
, reg
, roffs
;
8883 /* Warning: if you add any more cases to this switch, be
8884 sure to add them to the corresponding switch above. */
8887 case DW_CFA_advance_loc
:
8888 if (do_debug_frames_interp
)
8889 frame_display_row (fc
, &need_col_headers
, &max_regs
);
8891 printf (" DW_CFA_advance_loc: %d to %08lx\n",
8892 opa
* fc
->code_factor
,
8893 fc
->pc_begin
+ opa
* fc
->code_factor
);
8894 fc
->pc_begin
+= opa
* fc
->code_factor
;
8899 if (! do_debug_frames_interp
)
8900 printf (" DW_CFA_offset: r%d at cfa%+ld\n",
8901 opa
, roffs
* fc
->data_factor
);
8902 fc
->col_type
[opa
] = DW_CFA_offset
;
8903 fc
->col_offset
[opa
] = roffs
* fc
->data_factor
;
8906 case DW_CFA_restore
:
8907 if (! do_debug_frames_interp
)
8908 printf (" DW_CFA_restore: r%d\n", opa
);
8909 fc
->col_type
[opa
] = cie
->col_type
[opa
];
8910 fc
->col_offset
[opa
] = cie
->col_offset
[opa
];
8913 case DW_CFA_set_loc
:
8914 vma
= get_encoded_value (start
, fc
->fde_encoding
);
8915 if ((fc
->fde_encoding
& 0x70) == DW_EH_PE_pcrel
)
8916 vma
+= section
->sh_addr
+ (start
- section_start
);
8917 start
+= encoded_ptr_size
;
8918 if (do_debug_frames_interp
)
8919 frame_display_row (fc
, &need_col_headers
, &max_regs
);
8921 printf (" DW_CFA_set_loc: %08lx\n", (unsigned long)vma
);
8925 case DW_CFA_advance_loc1
:
8926 ofs
= byte_get (start
, 1); start
+= 1;
8927 if (do_debug_frames_interp
)
8928 frame_display_row (fc
, &need_col_headers
, &max_regs
);
8930 printf (" DW_CFA_advance_loc1: %ld to %08lx\n",
8931 ofs
* fc
->code_factor
,
8932 fc
->pc_begin
+ ofs
* fc
->code_factor
);
8933 fc
->pc_begin
+= ofs
* fc
->code_factor
;
8936 case DW_CFA_advance_loc2
:
8937 ofs
= byte_get (start
, 2); start
+= 2;
8938 if (do_debug_frames_interp
)
8939 frame_display_row (fc
, &need_col_headers
, &max_regs
);
8941 printf (" DW_CFA_advance_loc2: %ld to %08lx\n",
8942 ofs
* fc
->code_factor
,
8943 fc
->pc_begin
+ ofs
* fc
->code_factor
);
8944 fc
->pc_begin
+= ofs
* fc
->code_factor
;
8947 case DW_CFA_advance_loc4
:
8948 ofs
= byte_get (start
, 4); start
+= 4;
8949 if (do_debug_frames_interp
)
8950 frame_display_row (fc
, &need_col_headers
, &max_regs
);
8952 printf (" DW_CFA_advance_loc4: %ld to %08lx\n",
8953 ofs
* fc
->code_factor
,
8954 fc
->pc_begin
+ ofs
* fc
->code_factor
);
8955 fc
->pc_begin
+= ofs
* fc
->code_factor
;
8958 case DW_CFA_offset_extended
:
8961 if (! do_debug_frames_interp
)
8962 printf (" DW_CFA_offset_extended: r%ld at cfa%+ld\n",
8963 reg
, roffs
* fc
->data_factor
);
8964 fc
->col_type
[reg
] = DW_CFA_offset
;
8965 fc
->col_offset
[reg
] = roffs
* fc
->data_factor
;
8968 case DW_CFA_restore_extended
:
8970 if (! do_debug_frames_interp
)
8971 printf (" DW_CFA_restore_extended: r%ld\n", reg
);
8972 fc
->col_type
[reg
] = cie
->col_type
[reg
];
8973 fc
->col_offset
[reg
] = cie
->col_offset
[reg
];
8976 case DW_CFA_undefined
:
8978 if (! do_debug_frames_interp
)
8979 printf (" DW_CFA_undefined: r%ld\n", reg
);
8980 fc
->col_type
[reg
] = DW_CFA_undefined
;
8981 fc
->col_offset
[reg
] = 0;
8984 case DW_CFA_same_value
:
8986 if (! do_debug_frames_interp
)
8987 printf (" DW_CFA_same_value: r%ld\n", reg
);
8988 fc
->col_type
[reg
] = DW_CFA_same_value
;
8989 fc
->col_offset
[reg
] = 0;
8992 case DW_CFA_register
:
8995 if (! do_debug_frames_interp
)
8996 printf (" DW_CFA_register: r%ld in r%ld\n", reg
, roffs
);
8997 fc
->col_type
[reg
] = DW_CFA_register
;
8998 fc
->col_offset
[reg
] = roffs
;
9001 case DW_CFA_remember_state
:
9002 if (! do_debug_frames_interp
)
9003 printf (" DW_CFA_remember_state\n");
9004 rs
= xmalloc (sizeof (Frame_Chunk
));
9005 rs
->ncols
= fc
->ncols
;
9006 rs
->col_type
= xmalloc (rs
->ncols
* sizeof (short int));
9007 rs
->col_offset
= xmalloc (rs
->ncols
* sizeof (int));
9008 memcpy (rs
->col_type
, fc
->col_type
, rs
->ncols
);
9009 memcpy (rs
->col_offset
, fc
->col_offset
, rs
->ncols
* sizeof (int));
9010 rs
->next
= remembered_state
;
9011 remembered_state
= rs
;
9014 case DW_CFA_restore_state
:
9015 if (! do_debug_frames_interp
)
9016 printf (" DW_CFA_restore_state\n");
9017 rs
= remembered_state
;
9018 remembered_state
= rs
->next
;
9019 frame_need_space (fc
, rs
->ncols
-1);
9020 memcpy (fc
->col_type
, rs
->col_type
, rs
->ncols
);
9021 memcpy (fc
->col_offset
, rs
->col_offset
, rs
->ncols
* sizeof (int));
9022 free (rs
->col_type
);
9023 free (rs
->col_offset
);
9027 case DW_CFA_def_cfa
:
9028 fc
->cfa_reg
= LEB ();
9029 fc
->cfa_offset
= LEB ();
9031 if (! do_debug_frames_interp
)
9032 printf (" DW_CFA_def_cfa: r%d ofs %d\n",
9033 fc
->cfa_reg
, fc
->cfa_offset
);
9036 case DW_CFA_def_cfa_register
:
9037 fc
->cfa_reg
= LEB ();
9039 if (! do_debug_frames_interp
)
9040 printf (" DW_CFA_def_cfa_reg: r%d\n", fc
->cfa_reg
);
9043 case DW_CFA_def_cfa_offset
:
9044 fc
->cfa_offset
= LEB ();
9045 if (! do_debug_frames_interp
)
9046 printf (" DW_CFA_def_cfa_offset: %d\n", fc
->cfa_offset
);
9050 if (! do_debug_frames_interp
)
9051 printf (" DW_CFA_nop\n");
9054 case DW_CFA_def_cfa_expression
:
9056 if (! do_debug_frames_interp
)
9058 printf (" DW_CFA_def_cfa_expression (");
9059 decode_location_expression (start
, addr_size
, ul
);
9066 case DW_CFA_expression
:
9069 if (! do_debug_frames_interp
)
9071 printf (" DW_CFA_expression: r%ld (", reg
);
9072 decode_location_expression (start
, addr_size
, ul
);
9075 fc
->col_type
[reg
] = DW_CFA_expression
;
9079 case DW_CFA_offset_extended_sf
:
9082 frame_need_space (fc
, reg
);
9083 if (! do_debug_frames_interp
)
9084 printf (" DW_CFA_offset_extended_sf: r%ld at cfa%+ld\n",
9085 reg
, l
* fc
->data_factor
);
9086 fc
->col_type
[reg
] = DW_CFA_offset
;
9087 fc
->col_offset
[reg
] = l
* fc
->data_factor
;
9090 case DW_CFA_def_cfa_sf
:
9091 fc
->cfa_reg
= LEB ();
9092 fc
->cfa_offset
= SLEB ();
9094 if (! do_debug_frames_interp
)
9095 printf (" DW_CFA_def_cfa_sf: r%d ofs %d\n",
9096 fc
->cfa_reg
, fc
->cfa_offset
);
9099 case DW_CFA_def_cfa_offset_sf
:
9100 fc
->cfa_offset
= SLEB ();
9101 if (! do_debug_frames_interp
)
9102 printf (" DW_CFA_def_cfa_offset_sf: %d\n", fc
->cfa_offset
);
9105 case DW_CFA_MIPS_advance_loc8
:
9106 ofs
= byte_get (start
, 8); start
+= 8;
9107 if (do_debug_frames_interp
)
9108 frame_display_row (fc
, &need_col_headers
, &max_regs
);
9110 printf (" DW_CFA_MIPS_advance_loc8: %ld to %08lx\n",
9111 ofs
* fc
->code_factor
,
9112 fc
->pc_begin
+ ofs
* fc
->code_factor
);
9113 fc
->pc_begin
+= ofs
* fc
->code_factor
;
9116 case DW_CFA_GNU_window_save
:
9117 if (! do_debug_frames_interp
)
9118 printf (" DW_CFA_GNU_window_save\n");
9121 case DW_CFA_GNU_args_size
:
9123 if (! do_debug_frames_interp
)
9124 printf (" DW_CFA_GNU_args_size: %ld\n", ul
);
9127 case DW_CFA_GNU_negative_offset_extended
:
9130 frame_need_space (fc
, reg
);
9131 if (! do_debug_frames_interp
)
9132 printf (" DW_CFA_GNU_negative_offset_extended: r%ld at cfa%+ld\n",
9133 reg
, l
* fc
->data_factor
);
9134 fc
->col_type
[reg
] = DW_CFA_offset
;
9135 fc
->col_offset
[reg
] = l
* fc
->data_factor
;
9139 fprintf (stderr
, "unsupported or unknown DW_CFA_%d\n", op
);
9144 if (do_debug_frames_interp
)
9145 frame_display_row (fc
, &need_col_headers
, &max_regs
);
9160 display_debug_not_supported (Elf_Internal_Shdr
*section
,
9161 unsigned char *start ATTRIBUTE_UNUSED
,
9162 FILE *file ATTRIBUTE_UNUSED
)
9164 printf (_("Displaying the debug contents of section %s is not yet supported.\n"),
9165 SECTION_NAME (section
));
9170 /* Pre-scan the .debug_info section to record the size of address.
9171 When dumping the .debug_line, we use that size information, assuming
9172 that all compilation units have the same address size. */
9174 prescan_debug_info (Elf_Internal_Shdr
*section ATTRIBUTE_UNUSED
,
9175 unsigned char *start
,
9176 FILE *file ATTRIBUTE_UNUSED
)
9178 unsigned long length
;
9180 /* Read the first 4 bytes. For a 32-bit DWARF section, this will
9181 be the length. For a 64-bit DWARF section, it'll be the escape
9182 code 0xffffffff followed by an 8 byte length. For the purposes
9183 of this prescan, we don't care about the actual length, but the
9184 presence of the escape bytes does affect the location of the byte
9185 which describes the address size. */
9186 length
= byte_get (start
, 4);
9188 if (length
== 0xffffffff)
9190 /* For 64-bit DWARF, the 1-byte address_size field is 22 bytes
9191 from the start of the section. This is computed as follows:
9193 unit_length: 12 bytes
9195 debug_abbrev_offset: 8 bytes
9196 -----------------------------
9199 debug_line_pointer_size
= byte_get (start
+ 22, 1);
9203 /* For 32-bit DWARF, the 1-byte address_size field is 10 bytes from
9204 the start of the section:
9205 unit_length: 4 bytes
9207 debug_abbrev_offset: 4 bytes
9208 -----------------------------
9211 debug_line_pointer_size
= byte_get (start
+ 10, 1);
9216 /* A structure containing the name of a debug section and a pointer
9217 to a function that can decode it. The third field is a prescan
9218 function to be run over the section before displaying any of the
9222 const char *const name
;
9223 int (*display
) (Elf_Internal_Shdr
*, unsigned char *, FILE *);
9224 int (*prescan
) (Elf_Internal_Shdr
*, unsigned char *, FILE *);
9228 { ".debug_abbrev", display_debug_abbrev
, NULL
},
9229 { ".debug_aranges", display_debug_aranges
, NULL
},
9230 { ".debug_frame", display_debug_frames
, NULL
},
9231 { ".debug_info", display_debug_info
, prescan_debug_info
},
9232 { ".debug_line", display_debug_lines
, NULL
},
9233 { ".debug_pubnames", display_debug_pubnames
, NULL
},
9234 { ".eh_frame", display_debug_frames
, NULL
},
9235 { ".debug_macinfo", display_debug_macinfo
, NULL
},
9236 { ".debug_str", display_debug_str
, NULL
},
9237 { ".debug_loc", display_debug_loc
, NULL
},
9238 { ".debug_pubtypes", display_debug_not_supported
, NULL
},
9239 { ".debug_ranges", display_debug_not_supported
, NULL
},
9240 { ".debug_static_func", display_debug_not_supported
, NULL
},
9241 { ".debug_static_vars", display_debug_not_supported
, NULL
},
9242 { ".debug_types", display_debug_not_supported
, NULL
},
9243 { ".debug_weaknames", display_debug_not_supported
, NULL
}
9247 display_debug_section (Elf_Internal_Shdr
*section
, FILE *file
)
9249 char *name
= SECTION_NAME (section
);
9250 bfd_size_type length
;
9251 unsigned char *start
;
9254 length
= section
->sh_size
;
9257 printf (_("\nSection '%s' has no debugging data.\n"), name
);
9261 start
= get_data (NULL
, file
, section
->sh_offset
, length
,
9262 _("debug section data"));
9266 /* See if we know how to display the contents of this section. */
9267 if (strncmp (name
, ".gnu.linkonce.wi.", 17) == 0)
9268 name
= ".debug_info";
9270 for (i
= NUM_ELEM (debug_displays
); i
--;)
9271 if (strcmp (debug_displays
[i
].name
, name
) == 0)
9273 debug_displays
[i
].display (section
, start
, file
);
9278 printf (_("Unrecognized debug section: %s\n"), name
);
9282 /* If we loaded in the abbrev section at some point,
9283 we must release it here. */
9290 process_section_contents (FILE *file
)
9292 Elf_Internal_Shdr
*section
;
9298 /* Pre-scan the debug sections to find some debug information not
9299 present in some of them. For the .debug_line, we must find out the
9300 size of address (specified in .debug_info and .debug_aranges). */
9301 for (i
= 0, section
= section_headers
;
9302 i
< elf_header
.e_shnum
&& i
< num_dump_sects
;
9305 char *name
= SECTION_NAME (section
);
9308 if (section
->sh_size
== 0)
9311 /* See if there is some pre-scan operation for this section. */
9312 for (j
= NUM_ELEM (debug_displays
); j
--;)
9313 if (strcmp (debug_displays
[j
].name
, name
) == 0)
9315 if (debug_displays
[j
].prescan
!= NULL
)
9317 bfd_size_type length
;
9318 unsigned char *start
;
9320 length
= section
->sh_size
;
9321 start
= get_data (NULL
, file
, section
->sh_offset
, length
,
9322 _("debug section data"));
9326 debug_displays
[j
].prescan (section
, start
, file
);
9334 for (i
= 0, section
= section_headers
;
9335 i
< elf_header
.e_shnum
&& i
< num_dump_sects
;
9338 #ifdef SUPPORT_DISASSEMBLY
9339 if (dump_sects
[i
] & DISASS_DUMP
)
9340 disassemble_section (section
, file
);
9342 if (dump_sects
[i
] & HEX_DUMP
)
9343 dump_section (section
, file
);
9345 if (dump_sects
[i
] & DEBUG_DUMP
)
9346 display_debug_section (section
, file
);
9349 if (i
< num_dump_sects
)
9350 warn (_("Some sections were not dumped because they do not exist!\n"));
9356 process_mips_fpe_exception (int mask
)
9361 if (mask
& OEX_FPU_INEX
)
9362 fputs ("INEX", stdout
), first
= 0;
9363 if (mask
& OEX_FPU_UFLO
)
9364 printf ("%sUFLO", first
? "" : "|"), first
= 0;
9365 if (mask
& OEX_FPU_OFLO
)
9366 printf ("%sOFLO", first
? "" : "|"), first
= 0;
9367 if (mask
& OEX_FPU_DIV0
)
9368 printf ("%sDIV0", first
? "" : "|"), first
= 0;
9369 if (mask
& OEX_FPU_INVAL
)
9370 printf ("%sINVAL", first
? "" : "|");
9373 fputs ("0", stdout
);
9377 process_mips_specific (FILE *file
)
9379 Elf_Internal_Dyn
*entry
;
9380 size_t liblist_offset
= 0;
9381 size_t liblistno
= 0;
9382 size_t conflictsno
= 0;
9383 size_t options_offset
= 0;
9384 size_t conflicts_offset
= 0;
9386 /* We have a lot of special sections. Thanks SGI! */
9387 if (dynamic_segment
== NULL
)
9388 /* No information available. */
9391 for (entry
= dynamic_segment
; entry
->d_tag
!= DT_NULL
; ++entry
)
9392 switch (entry
->d_tag
)
9394 case DT_MIPS_LIBLIST
:
9396 = offset_from_vma (file
, entry
->d_un
.d_val
,
9397 liblistno
* sizeof (Elf32_External_Lib
));
9399 case DT_MIPS_LIBLISTNO
:
9400 liblistno
= entry
->d_un
.d_val
;
9402 case DT_MIPS_OPTIONS
:
9403 options_offset
= offset_from_vma (file
, entry
->d_un
.d_val
, 0);
9405 case DT_MIPS_CONFLICT
:
9407 = offset_from_vma (file
, entry
->d_un
.d_val
,
9408 conflictsno
* sizeof (Elf32_External_Conflict
));
9410 case DT_MIPS_CONFLICTNO
:
9411 conflictsno
= entry
->d_un
.d_val
;
9417 if (liblist_offset
!= 0 && liblistno
!= 0 && do_dynamic
)
9419 Elf32_External_Lib
*elib
;
9422 elib
= get_data (NULL
, file
, liblist_offset
,
9423 liblistno
* sizeof (Elf32_External_Lib
),
9427 printf ("\nSection '.liblist' contains %lu entries:\n",
9428 (unsigned long) liblistno
);
9429 fputs (" Library Time Stamp Checksum Version Flags\n",
9432 for (cnt
= 0; cnt
< liblistno
; ++cnt
)
9439 liblist
.l_name
= BYTE_GET (elib
[cnt
].l_name
);
9440 time
= BYTE_GET (elib
[cnt
].l_time_stamp
);
9441 liblist
.l_checksum
= BYTE_GET (elib
[cnt
].l_checksum
);
9442 liblist
.l_version
= BYTE_GET (elib
[cnt
].l_version
);
9443 liblist
.l_flags
= BYTE_GET (elib
[cnt
].l_flags
);
9445 tmp
= gmtime (&time
);
9446 sprintf (timebuf
, "%04u-%02u-%02uT%02u:%02u:%02u",
9447 tmp
->tm_year
+ 1900, tmp
->tm_mon
+ 1, tmp
->tm_mday
,
9448 tmp
->tm_hour
, tmp
->tm_min
, tmp
->tm_sec
);
9450 printf ("%3lu: ", (unsigned long) cnt
);
9451 print_symbol (20, dynamic_strings
+ liblist
.l_name
);
9452 printf (" %s %#10lx %-7ld", timebuf
, liblist
.l_checksum
,
9455 if (liblist
.l_flags
== 0)
9466 { " EXACT_MATCH", LL_EXACT_MATCH
},
9467 { " IGNORE_INT_VER", LL_IGNORE_INT_VER
},
9468 { " REQUIRE_MINOR", LL_REQUIRE_MINOR
},
9469 { " EXPORTS", LL_EXPORTS
},
9470 { " DELAY_LOAD", LL_DELAY_LOAD
},
9471 { " DELTA", LL_DELTA
}
9473 int flags
= liblist
.l_flags
;
9477 fcnt
< sizeof (l_flags_vals
) / sizeof (l_flags_vals
[0]);
9479 if ((flags
& l_flags_vals
[fcnt
].bit
) != 0)
9481 fputs (l_flags_vals
[fcnt
].name
, stdout
);
9482 flags
^= l_flags_vals
[fcnt
].bit
;
9485 printf (" %#x", (unsigned int) flags
);
9495 if (options_offset
!= 0)
9497 Elf_External_Options
*eopt
;
9498 Elf_Internal_Shdr
*sect
= section_headers
;
9499 Elf_Internal_Options
*iopt
;
9500 Elf_Internal_Options
*option
;
9504 /* Find the section header so that we get the size. */
9505 while (sect
->sh_type
!= SHT_MIPS_OPTIONS
)
9508 eopt
= get_data (NULL
, file
, options_offset
, sect
->sh_size
,
9512 iopt
= malloc ((sect
->sh_size
/ sizeof (eopt
)) * sizeof (*iopt
));
9515 error (_("Out of memory"));
9522 while (offset
< sect
->sh_size
)
9524 Elf_External_Options
*eoption
;
9526 eoption
= (Elf_External_Options
*) ((char *) eopt
+ offset
);
9528 option
->kind
= BYTE_GET (eoption
->kind
);
9529 option
->size
= BYTE_GET (eoption
->size
);
9530 option
->section
= BYTE_GET (eoption
->section
);
9531 option
->info
= BYTE_GET (eoption
->info
);
9533 offset
+= option
->size
;
9539 printf (_("\nSection '%s' contains %d entries:\n"),
9540 SECTION_NAME (sect
), cnt
);
9548 switch (option
->kind
)
9551 /* This shouldn't happen. */
9552 printf (" NULL %d %lx", option
->section
, option
->info
);
9555 printf (" REGINFO ");
9556 if (elf_header
.e_machine
== EM_MIPS
)
9559 Elf32_External_RegInfo
*ereg
;
9560 Elf32_RegInfo reginfo
;
9562 ereg
= (Elf32_External_RegInfo
*) (option
+ 1);
9563 reginfo
.ri_gprmask
= BYTE_GET (ereg
->ri_gprmask
);
9564 reginfo
.ri_cprmask
[0] = BYTE_GET (ereg
->ri_cprmask
[0]);
9565 reginfo
.ri_cprmask
[1] = BYTE_GET (ereg
->ri_cprmask
[1]);
9566 reginfo
.ri_cprmask
[2] = BYTE_GET (ereg
->ri_cprmask
[2]);
9567 reginfo
.ri_cprmask
[3] = BYTE_GET (ereg
->ri_cprmask
[3]);
9568 reginfo
.ri_gp_value
= BYTE_GET (ereg
->ri_gp_value
);
9570 printf ("GPR %08lx GP 0x%lx\n",
9572 (unsigned long) reginfo
.ri_gp_value
);
9573 printf (" CPR0 %08lx CPR1 %08lx CPR2 %08lx CPR3 %08lx\n",
9574 reginfo
.ri_cprmask
[0], reginfo
.ri_cprmask
[1],
9575 reginfo
.ri_cprmask
[2], reginfo
.ri_cprmask
[3]);
9580 Elf64_External_RegInfo
*ereg
;
9581 Elf64_Internal_RegInfo reginfo
;
9583 ereg
= (Elf64_External_RegInfo
*) (option
+ 1);
9584 reginfo
.ri_gprmask
= BYTE_GET (ereg
->ri_gprmask
);
9585 reginfo
.ri_cprmask
[0] = BYTE_GET (ereg
->ri_cprmask
[0]);
9586 reginfo
.ri_cprmask
[1] = BYTE_GET (ereg
->ri_cprmask
[1]);
9587 reginfo
.ri_cprmask
[2] = BYTE_GET (ereg
->ri_cprmask
[2]);
9588 reginfo
.ri_cprmask
[3] = BYTE_GET (ereg
->ri_cprmask
[3]);
9589 reginfo
.ri_gp_value
= BYTE_GET8 (ereg
->ri_gp_value
);
9591 printf ("GPR %08lx GP 0x",
9592 reginfo
.ri_gprmask
);
9593 printf_vma (reginfo
.ri_gp_value
);
9596 printf (" CPR0 %08lx CPR1 %08lx CPR2 %08lx CPR3 %08lx\n",
9597 reginfo
.ri_cprmask
[0], reginfo
.ri_cprmask
[1],
9598 reginfo
.ri_cprmask
[2], reginfo
.ri_cprmask
[3]);
9602 case ODK_EXCEPTIONS
:
9603 fputs (" EXCEPTIONS fpe_min(", stdout
);
9604 process_mips_fpe_exception (option
->info
& OEX_FPU_MIN
);
9605 fputs (") fpe_max(", stdout
);
9606 process_mips_fpe_exception ((option
->info
& OEX_FPU_MAX
) >> 8);
9607 fputs (")", stdout
);
9609 if (option
->info
& OEX_PAGE0
)
9610 fputs (" PAGE0", stdout
);
9611 if (option
->info
& OEX_SMM
)
9612 fputs (" SMM", stdout
);
9613 if (option
->info
& OEX_FPDBUG
)
9614 fputs (" FPDBUG", stdout
);
9615 if (option
->info
& OEX_DISMISS
)
9616 fputs (" DISMISS", stdout
);
9619 fputs (" PAD ", stdout
);
9620 if (option
->info
& OPAD_PREFIX
)
9621 fputs (" PREFIX", stdout
);
9622 if (option
->info
& OPAD_POSTFIX
)
9623 fputs (" POSTFIX", stdout
);
9624 if (option
->info
& OPAD_SYMBOL
)
9625 fputs (" SYMBOL", stdout
);
9628 fputs (" HWPATCH ", stdout
);
9629 if (option
->info
& OHW_R4KEOP
)
9630 fputs (" R4KEOP", stdout
);
9631 if (option
->info
& OHW_R8KPFETCH
)
9632 fputs (" R8KPFETCH", stdout
);
9633 if (option
->info
& OHW_R5KEOP
)
9634 fputs (" R5KEOP", stdout
);
9635 if (option
->info
& OHW_R5KCVTL
)
9636 fputs (" R5KCVTL", stdout
);
9639 fputs (" FILL ", stdout
);
9640 /* XXX Print content of info word? */
9643 fputs (" TAGS ", stdout
);
9644 /* XXX Print content of info word? */
9647 fputs (" HWAND ", stdout
);
9648 if (option
->info
& OHWA0_R4KEOP_CHECKED
)
9649 fputs (" R4KEOP_CHECKED", stdout
);
9650 if (option
->info
& OHWA0_R4KEOP_CLEAN
)
9651 fputs (" R4KEOP_CLEAN", stdout
);
9654 fputs (" HWOR ", stdout
);
9655 if (option
->info
& OHWA0_R4KEOP_CHECKED
)
9656 fputs (" R4KEOP_CHECKED", stdout
);
9657 if (option
->info
& OHWA0_R4KEOP_CLEAN
)
9658 fputs (" R4KEOP_CLEAN", stdout
);
9661 printf (" GP_GROUP %#06lx self-contained %#06lx",
9662 option
->info
& OGP_GROUP
,
9663 (option
->info
& OGP_SELF
) >> 16);
9666 printf (" IDENT %#06lx self-contained %#06lx",
9667 option
->info
& OGP_GROUP
,
9668 (option
->info
& OGP_SELF
) >> 16);
9671 /* This shouldn't happen. */
9672 printf (" %3d ??? %d %lx",
9673 option
->kind
, option
->section
, option
->info
);
9677 len
= sizeof (*eopt
);
9678 while (len
< option
->size
)
9679 if (((char *) option
)[len
] >= ' '
9680 && ((char *) option
)[len
] < 0x7f)
9681 printf ("%c", ((char *) option
)[len
++]);
9683 printf ("\\%03o", ((char *) option
)[len
++]);
9685 fputs ("\n", stdout
);
9693 if (conflicts_offset
!= 0 && conflictsno
!= 0)
9695 Elf32_Conflict
*iconf
;
9698 if (dynamic_symbols
== NULL
)
9700 error (_("conflict list found without a dynamic symbol table"));
9704 iconf
= malloc (conflictsno
* sizeof (*iconf
));
9707 error (_("Out of memory"));
9713 Elf32_External_Conflict
*econf32
;
9715 econf32
= get_data (NULL
, file
, conflicts_offset
,
9716 conflictsno
* sizeof (*econf32
), _("conflict"));
9720 for (cnt
= 0; cnt
< conflictsno
; ++cnt
)
9721 iconf
[cnt
] = BYTE_GET (econf32
[cnt
]);
9727 Elf64_External_Conflict
*econf64
;
9729 econf64
= get_data (NULL
, file
, conflicts_offset
,
9730 conflictsno
* sizeof (*econf64
), _("conflict"));
9734 for (cnt
= 0; cnt
< conflictsno
; ++cnt
)
9735 iconf
[cnt
] = BYTE_GET (econf64
[cnt
]);
9740 printf (_("\nSection '.conflict' contains %ld entries:\n"),
9741 (long) conflictsno
);
9742 puts (_(" Num: Index Value Name"));
9744 for (cnt
= 0; cnt
< conflictsno
; ++cnt
)
9746 Elf_Internal_Sym
*psym
= & dynamic_symbols
[iconf
[cnt
]];
9748 printf ("%5lu: %8lu ", (unsigned long) cnt
, iconf
[cnt
]);
9749 print_vma (psym
->st_value
, FULL_HEX
);
9751 print_symbol (25, dynamic_strings
+ psym
->st_name
);
9762 process_gnu_liblist (FILE *file
)
9764 Elf_Internal_Shdr
*section
, *string_sec
;
9765 Elf32_External_Lib
*elib
;
9773 for (i
= 0, section
= section_headers
;
9774 i
< elf_header
.e_shnum
;
9777 switch (section
->sh_type
)
9779 case SHT_GNU_LIBLIST
:
9780 elib
= get_data (NULL
, file
, section
->sh_offset
, section
->sh_size
,
9785 string_sec
= SECTION_HEADER (section
->sh_link
);
9787 strtab
= get_data (NULL
, file
, string_sec
->sh_offset
,
9788 string_sec
->sh_size
, _("liblist string table"));
9791 || section
->sh_entsize
!= sizeof (Elf32_External_Lib
))
9797 printf (_("\nLibrary list section '%s' contains %lu entries:\n"),
9798 SECTION_NAME (section
),
9799 (long) (section
->sh_size
/ sizeof (Elf32_External_Lib
)));
9801 puts (" Library Time Stamp Checksum Version Flags");
9803 for (cnt
= 0; cnt
< section
->sh_size
/ sizeof (Elf32_External_Lib
);
9811 liblist
.l_name
= BYTE_GET (elib
[cnt
].l_name
);
9812 time
= BYTE_GET (elib
[cnt
].l_time_stamp
);
9813 liblist
.l_checksum
= BYTE_GET (elib
[cnt
].l_checksum
);
9814 liblist
.l_version
= BYTE_GET (elib
[cnt
].l_version
);
9815 liblist
.l_flags
= BYTE_GET (elib
[cnt
].l_flags
);
9817 tmp
= gmtime (&time
);
9818 sprintf (timebuf
, "%04u-%02u-%02uT%02u:%02u:%02u",
9819 tmp
->tm_year
+ 1900, tmp
->tm_mon
+ 1, tmp
->tm_mday
,
9820 tmp
->tm_hour
, tmp
->tm_min
, tmp
->tm_sec
);
9822 printf ("%3lu: ", (unsigned long) cnt
);
9824 printf ("%-20s", strtab
+ liblist
.l_name
);
9826 printf ("%-20.20s", strtab
+ liblist
.l_name
);
9827 printf (" %s %#010lx %-7ld %-7ld\n", timebuf
, liblist
.l_checksum
,
9828 liblist
.l_version
, liblist
.l_flags
);
9839 get_note_type (unsigned e_type
)
9841 static char buff
[64];
9845 case NT_PRSTATUS
: return _("NT_PRSTATUS (prstatus structure)");
9846 case NT_FPREGSET
: return _("NT_FPREGSET (floating point registers)");
9847 case NT_PRPSINFO
: return _("NT_PRPSINFO (prpsinfo structure)");
9848 case NT_TASKSTRUCT
: return _("NT_TASKSTRUCT (task structure)");
9849 case NT_PRXFPREG
: return _("NT_PRXFPREG (user_xfpregs structure)");
9850 case NT_PSTATUS
: return _("NT_PSTATUS (pstatus structure)");
9851 case NT_FPREGS
: return _("NT_FPREGS (floating point registers)");
9852 case NT_PSINFO
: return _("NT_PSINFO (psinfo structure)");
9853 case NT_LWPSTATUS
: return _("NT_LWPSTATUS (lwpstatus_t structure)");
9854 case NT_LWPSINFO
: return _("NT_LWPSINFO (lwpsinfo_t structure)");
9855 case NT_WIN32PSTATUS
: return _("NT_WIN32PSTATUS (win32_pstatus structure)");
9857 sprintf (buff
, _("Unknown note type: (0x%08x)"), e_type
);
9863 get_netbsd_elfcore_note_type (unsigned e_type
)
9865 static char buff
[64];
9867 if (e_type
== NT_NETBSDCORE_PROCINFO
)
9869 /* NetBSD core "procinfo" structure. */
9870 return _("NetBSD procinfo structure");
9873 /* As of Jan 2002 there are no other machine-independent notes
9874 defined for NetBSD core files. If the note type is less
9875 than the start of the machine-dependent note types, we don't
9878 if (e_type
< NT_NETBSDCORE_FIRSTMACH
)
9880 sprintf (buff
, _("Unknown note type: (0x%08x)"), e_type
);
9884 switch (elf_header
.e_machine
)
9886 /* On the Alpha, SPARC (32-bit and 64-bit), PT_GETREGS == mach+0
9887 and PT_GETFPREGS == mach+2. */
9892 case EM_SPARC32PLUS
:
9896 case NT_NETBSDCORE_FIRSTMACH
+0:
9897 return _("PT_GETREGS (reg structure)");
9898 case NT_NETBSDCORE_FIRSTMACH
+2:
9899 return _("PT_GETFPREGS (fpreg structure)");
9905 /* On all other arch's, PT_GETREGS == mach+1 and
9906 PT_GETFPREGS == mach+3. */
9910 case NT_NETBSDCORE_FIRSTMACH
+1:
9911 return _("PT_GETREGS (reg structure)");
9912 case NT_NETBSDCORE_FIRSTMACH
+3:
9913 return _("PT_GETFPREGS (fpreg structure)");
9919 sprintf (buff
, _("PT_FIRSTMACH+%d"), e_type
- NT_NETBSDCORE_FIRSTMACH
);
9923 /* Note that by the ELF standard, the name field is already null byte
9924 terminated, and namesz includes the terminating null byte.
9925 I.E. the value of namesz for the name "FSF" is 4.
9927 If the value of namesz is zero, there is no name present. */
9929 process_note (Elf_Internal_Note
*pnote
)
9933 if (pnote
->namesz
== 0)
9935 /* If there is no note name, then use the default set of
9936 note type strings. */
9937 nt
= get_note_type (pnote
->type
);
9939 else if (strncmp (pnote
->namedata
, "NetBSD-CORE", 11) == 0)
9941 /* NetBSD-specific core file notes. */
9942 nt
= get_netbsd_elfcore_note_type (pnote
->type
);
9946 /* Don't recognize this note name; just use the default set of
9947 note type strings. */
9948 nt
= get_note_type (pnote
->type
);
9951 printf (" %s\t\t0x%08lx\t%s\n",
9952 pnote
->namesz
? pnote
->namedata
: "(NONE)",
9959 process_corefile_note_segment (FILE *file
, bfd_vma offset
, bfd_vma length
)
9961 Elf_External_Note
*pnotes
;
9962 Elf_External_Note
*external
;
9968 pnotes
= get_data (NULL
, file
, offset
, length
, _("notes"));
9974 printf (_("\nNotes at offset 0x%08lx with length 0x%08lx:\n"),
9975 (unsigned long) offset
, (unsigned long) length
);
9976 printf (_(" Owner\t\tData size\tDescription\n"));
9978 while (external
< (Elf_External_Note
*)((char *) pnotes
+ length
))
9980 Elf_External_Note
*next
;
9981 Elf_Internal_Note inote
;
9984 inote
.type
= BYTE_GET (external
->type
);
9985 inote
.namesz
= BYTE_GET (external
->namesz
);
9986 inote
.namedata
= external
->name
;
9987 inote
.descsz
= BYTE_GET (external
->descsz
);
9988 inote
.descdata
= inote
.namedata
+ align_power (inote
.namesz
, 2);
9989 inote
.descpos
= offset
+ (inote
.descdata
- (char *) pnotes
);
9991 next
= (Elf_External_Note
*)(inote
.descdata
+ align_power (inote
.descsz
, 2));
9993 if (((char *) next
) > (((char *) pnotes
) + length
))
9995 warn (_("corrupt note found at offset %x into core notes\n"),
9996 ((char *) external
) - ((char *) pnotes
));
9997 warn (_(" type: %x, namesize: %08lx, descsize: %08lx\n"),
9998 inote
.type
, inote
.namesz
, inote
.descsz
);
10004 /* Verify that name is null terminated. It appears that at least
10005 one version of Linux (RedHat 6.0) generates corefiles that don't
10006 comply with the ELF spec by failing to include the null byte in
10008 if (inote
.namedata
[inote
.namesz
] != '\0')
10010 temp
= malloc (inote
.namesz
+ 1);
10014 error (_("Out of memory\n"));
10019 strncpy (temp
, inote
.namedata
, inote
.namesz
);
10020 temp
[inote
.namesz
] = 0;
10022 /* warn (_("'%s' NOTE name not properly null terminated\n"), temp); */
10023 inote
.namedata
= temp
;
10026 res
&= process_note (& inote
);
10041 process_corefile_note_segments (FILE *file
)
10043 Elf_Internal_Phdr
*segment
;
10047 if (! get_program_headers (file
))
10050 for (i
= 0, segment
= program_headers
;
10051 i
< elf_header
.e_phnum
;
10054 if (segment
->p_type
== PT_NOTE
)
10055 res
&= process_corefile_note_segment (file
,
10056 (bfd_vma
) segment
->p_offset
,
10057 (bfd_vma
) segment
->p_filesz
);
10064 process_corefile_contents (FILE *file
)
10066 /* If we have not been asked to display the notes then do nothing. */
10070 /* If file is not a core file then exit. */
10071 if (elf_header
.e_type
!= ET_CORE
)
10074 /* No program headers means no NOTE segment. */
10075 if (elf_header
.e_phnum
== 0)
10077 printf (_("No note segments present in the core file.\n"));
10081 return process_corefile_note_segments (file
);
10085 process_arch_specific (FILE *file
)
10090 switch (elf_header
.e_machine
)
10093 case EM_MIPS_RS3_LE
:
10094 return process_mips_specific (file
);
10103 get_file_header (FILE *file
)
10105 /* Read in the identity array. */
10106 if (fread (elf_header
.e_ident
, EI_NIDENT
, 1, file
) != 1)
10109 /* Determine how to read the rest of the header. */
10110 switch (elf_header
.e_ident
[EI_DATA
])
10112 default: /* fall through */
10113 case ELFDATANONE
: /* fall through */
10115 byte_get
= byte_get_little_endian
;
10116 byte_put
= byte_put_little_endian
;
10119 byte_get
= byte_get_big_endian
;
10120 byte_put
= byte_put_big_endian
;
10124 /* For now we only support 32 bit and 64 bit ELF files. */
10125 is_32bit_elf
= (elf_header
.e_ident
[EI_CLASS
] != ELFCLASS64
);
10127 /* Read in the rest of the header. */
10130 Elf32_External_Ehdr ehdr32
;
10132 if (fread (ehdr32
.e_type
, sizeof (ehdr32
) - EI_NIDENT
, 1, file
) != 1)
10135 elf_header
.e_type
= BYTE_GET (ehdr32
.e_type
);
10136 elf_header
.e_machine
= BYTE_GET (ehdr32
.e_machine
);
10137 elf_header
.e_version
= BYTE_GET (ehdr32
.e_version
);
10138 elf_header
.e_entry
= BYTE_GET (ehdr32
.e_entry
);
10139 elf_header
.e_phoff
= BYTE_GET (ehdr32
.e_phoff
);
10140 elf_header
.e_shoff
= BYTE_GET (ehdr32
.e_shoff
);
10141 elf_header
.e_flags
= BYTE_GET (ehdr32
.e_flags
);
10142 elf_header
.e_ehsize
= BYTE_GET (ehdr32
.e_ehsize
);
10143 elf_header
.e_phentsize
= BYTE_GET (ehdr32
.e_phentsize
);
10144 elf_header
.e_phnum
= BYTE_GET (ehdr32
.e_phnum
);
10145 elf_header
.e_shentsize
= BYTE_GET (ehdr32
.e_shentsize
);
10146 elf_header
.e_shnum
= BYTE_GET (ehdr32
.e_shnum
);
10147 elf_header
.e_shstrndx
= BYTE_GET (ehdr32
.e_shstrndx
);
10151 Elf64_External_Ehdr ehdr64
;
10153 /* If we have been compiled with sizeof (bfd_vma) == 4, then
10154 we will not be able to cope with the 64bit data found in
10155 64 ELF files. Detect this now and abort before we start
10156 overwriting things. */
10157 if (sizeof (bfd_vma
) < 8)
10159 error (_("This instance of readelf has been built without support for a\n\
10160 64 bit data type and so it cannot read 64 bit ELF files.\n"));
10164 if (fread (ehdr64
.e_type
, sizeof (ehdr64
) - EI_NIDENT
, 1, file
) != 1)
10167 elf_header
.e_type
= BYTE_GET (ehdr64
.e_type
);
10168 elf_header
.e_machine
= BYTE_GET (ehdr64
.e_machine
);
10169 elf_header
.e_version
= BYTE_GET (ehdr64
.e_version
);
10170 elf_header
.e_entry
= BYTE_GET8 (ehdr64
.e_entry
);
10171 elf_header
.e_phoff
= BYTE_GET8 (ehdr64
.e_phoff
);
10172 elf_header
.e_shoff
= BYTE_GET8 (ehdr64
.e_shoff
);
10173 elf_header
.e_flags
= BYTE_GET (ehdr64
.e_flags
);
10174 elf_header
.e_ehsize
= BYTE_GET (ehdr64
.e_ehsize
);
10175 elf_header
.e_phentsize
= BYTE_GET (ehdr64
.e_phentsize
);
10176 elf_header
.e_phnum
= BYTE_GET (ehdr64
.e_phnum
);
10177 elf_header
.e_shentsize
= BYTE_GET (ehdr64
.e_shentsize
);
10178 elf_header
.e_shnum
= BYTE_GET (ehdr64
.e_shnum
);
10179 elf_header
.e_shstrndx
= BYTE_GET (ehdr64
.e_shstrndx
);
10182 if (elf_header
.e_shoff
)
10184 /* There may be some extensions in the first section header. Don't
10185 bomb if we can't read it. */
10187 get_32bit_section_headers (file
, 1);
10189 get_64bit_section_headers (file
, 1);
10195 /* Process one ELF object file according to the command line options.
10196 This file may actually be stored in an archive. The file is
10197 positioned at the start of the ELF object. */
10200 process_object (char *file_name
, FILE *file
)
10204 if (! get_file_header (file
))
10206 error (_("%s: Failed to read file header\n"), file_name
);
10210 /* Initialise per file variables. */
10211 for (i
= NUM_ELEM (version_info
); i
--;)
10212 version_info
[i
] = 0;
10214 for (i
= NUM_ELEM (dynamic_info
); i
--;)
10215 dynamic_info
[i
] = 0;
10217 /* Process the file. */
10219 printf (_("\nFile: %s\n"), file_name
);
10221 if (! process_file_header ())
10224 if (! process_section_headers (file
))
10226 /* Without loaded section headers we
10227 cannot process lots of things. */
10228 do_unwind
= do_version
= do_dump
= do_arch
= 0;
10230 if (! do_using_dynamic
)
10231 do_syms
= do_reloc
= 0;
10234 if (process_program_headers (file
))
10235 process_dynamic_segment (file
);
10237 process_relocs (file
);
10239 process_unwind (file
);
10241 process_symbol_table (file
);
10243 process_syminfo (file
);
10245 process_version_sections (file
);
10247 process_section_contents (file
);
10249 process_corefile_contents (file
);
10251 process_gnu_liblist (file
);
10253 process_arch_specific (file
);
10255 if (program_headers
)
10257 free (program_headers
);
10258 program_headers
= NULL
;
10261 if (section_headers
)
10263 free (section_headers
);
10264 section_headers
= NULL
;
10269 free (string_table
);
10270 string_table
= NULL
;
10271 string_table_length
= 0;
10274 if (dynamic_strings
)
10276 free (dynamic_strings
);
10277 dynamic_strings
= NULL
;
10280 if (dynamic_symbols
)
10282 free (dynamic_symbols
);
10283 dynamic_symbols
= NULL
;
10284 num_dynamic_syms
= 0;
10287 if (dynamic_syminfo
)
10289 free (dynamic_syminfo
);
10290 dynamic_syminfo
= NULL
;
10296 /* Process an ELF archive. The file is positioned just after the
10300 process_archive (char *file_name
, FILE *file
)
10302 struct ar_hdr arhdr
;
10304 unsigned long size
;
10305 char *longnames
= NULL
;
10306 unsigned long longnames_size
= 0;
10307 size_t file_name_size
;
10312 got
= fread (&arhdr
, 1, sizeof arhdr
, file
);
10313 if (got
!= sizeof arhdr
)
10318 error (_("%s: failed to read archive header\n"), file_name
);
10322 if (memcmp (arhdr
.ar_name
, "/ ", 16) == 0)
10324 /* This is the archive symbol table. Skip it.
10325 FIXME: We should have an option to dump it. */
10326 size
= strtoul (arhdr
.ar_size
, NULL
, 10);
10327 if (fseek (file
, size
+ (size
& 1), SEEK_CUR
) != 0)
10329 error (_("%s: failed to skip archive symbol table\n"), file_name
);
10333 got
= fread (&arhdr
, 1, sizeof arhdr
, file
);
10334 if (got
!= sizeof arhdr
)
10339 error (_("%s: failed to read archive header\n"), file_name
);
10344 if (memcmp (arhdr
.ar_name
, "// ", 16) == 0)
10346 /* This is the archive string table holding long member
10349 longnames_size
= strtoul (arhdr
.ar_size
, NULL
, 10);
10351 longnames
= malloc (longnames_size
);
10352 if (longnames
== NULL
)
10354 error (_("Out of memory\n"));
10358 if (fread (longnames
, longnames_size
, 1, file
) != 1)
10361 error(_("%s: failed to read string table\n"), file_name
);
10365 if ((longnames_size
& 1) != 0)
10368 got
= fread (&arhdr
, 1, sizeof arhdr
, file
);
10369 if (got
!= sizeof arhdr
)
10376 error (_("%s: failed to read archive header\n"), file_name
);
10381 file_name_size
= strlen (file_name
);
10390 if (arhdr
.ar_name
[0] == '/')
10394 off
= strtoul (arhdr
.ar_name
+ 1, NULL
, 10);
10395 if (off
>= longnames_size
)
10397 error (_("%s: invalid archive string table offset %lu\n"), off
);
10402 name
= longnames
+ off
;
10403 nameend
= memchr (name
, '/', longnames_size
- off
);
10407 name
= arhdr
.ar_name
;
10408 nameend
= memchr (name
, '/', 16);
10411 if (nameend
== NULL
)
10413 error (_("%s: bad archive file name\n"));
10418 namealc
= malloc (file_name_size
+ (nameend
- name
) + 3);
10419 if (namealc
== NULL
)
10421 error (_("Out of memory\n"));
10426 memcpy (namealc
, file_name
, file_name_size
);
10427 namealc
[file_name_size
] = '(';
10428 memcpy (namealc
+ file_name_size
+ 1, name
, nameend
- name
);
10429 namealc
[file_name_size
+ 1 + (nameend
- name
)] = ')';
10430 namealc
[file_name_size
+ 2 + (nameend
- name
)] = '\0';
10432 archive_file_offset
= ftell (file
);
10433 archive_file_size
= strtoul (arhdr
.ar_size
, NULL
, 10);
10435 ret
|= process_object (namealc
, file
);
10440 (archive_file_offset
10441 + archive_file_size
10442 + (archive_file_size
& 1)),
10445 error (_("%s: failed to seek to next archive header\n"), file_name
);
10450 got
= fread (&arhdr
, 1, sizeof arhdr
, file
);
10451 if (got
!= sizeof arhdr
)
10456 error (_("%s: failed to read archive header\n"), file_name
);
10462 if (longnames
!= 0)
10469 process_file (char *file_name
)
10472 struct stat statbuf
;
10473 char armag
[SARMAG
];
10476 if (stat (file_name
, &statbuf
) < 0)
10478 if (errno
== ENOENT
)
10479 error (_("'%s': No such file\n"), file_name
);
10481 error (_("Could not locate '%s'. System error message: %s\n"),
10482 file_name
, strerror (errno
));
10486 if (! S_ISREG (statbuf
.st_mode
))
10488 error (_("'%s' is not an ordinary file\n"), file_name
);
10492 file
= fopen (file_name
, "rb");
10495 error (_("Input file '%s' is not readable.\n"), file_name
);
10499 if (fread (armag
, SARMAG
, 1, file
) != 1)
10501 error (_("%s: Failed to read file header\n"), file_name
);
10506 if (memcmp (armag
, ARMAG
, SARMAG
) == 0)
10507 ret
= process_archive (file_name
, file
);
10511 archive_file_size
= archive_file_offset
= 0;
10512 ret
= process_object (file_name
, file
);
10520 #ifdef SUPPORT_DISASSEMBLY
10521 /* Needed by the i386 disassembler. For extra credit, someone could
10522 fix this so that we insert symbolic addresses here, esp for GOT/PLT
10526 print_address (unsigned int addr
, FILE *outfile
)
10528 fprintf (outfile
,"0x%8.8x", addr
);
10531 /* Needed by the i386 disassembler. */
10533 db_task_printsym (unsigned int addr
)
10535 print_address (addr
, stderr
);
10540 main (int argc
, char **argv
)
10543 char *cmdline_dump_sects
= NULL
;
10544 unsigned num_cmdline_dump_sects
= 0;
10546 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
10547 setlocale (LC_MESSAGES
, "");
10549 #if defined (HAVE_SETLOCALE)
10550 setlocale (LC_CTYPE
, "");
10552 bindtextdomain (PACKAGE
, LOCALEDIR
);
10553 textdomain (PACKAGE
);
10555 parse_args (argc
, argv
);
10557 if (optind
< (argc
- 1))
10560 /* When processing more than one file remember the dump requests
10561 issued on command line to reset them after each file. */
10562 if (optind
+ 1 < argc
&& dump_sects
!= NULL
)
10564 cmdline_dump_sects
= malloc (num_dump_sects
);
10565 if (cmdline_dump_sects
== NULL
)
10566 error (_("Out of memory allocating dump request table."));
10569 memcpy (cmdline_dump_sects
, dump_sects
, num_dump_sects
);
10570 num_cmdline_dump_sects
= num_dump_sects
;
10575 while (optind
< argc
)
10577 err
|= process_file (argv
[optind
++]);
10579 /* Reset dump requests. */
10580 if (optind
< argc
&& dump_sects
!= NULL
)
10582 num_dump_sects
= num_cmdline_dump_sects
;
10583 if (num_cmdline_dump_sects
> 0)
10584 memcpy (dump_sects
, cmdline_dump_sects
, num_cmdline_dump_sects
);
10588 if (dump_sects
!= NULL
)
10590 if (cmdline_dump_sects
!= NULL
)
10591 free (cmdline_dump_sects
);