1 /* readelf.c -- display contents of an ELF format file
2 Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
3 Free Software Foundation, Inc.
5 Originally developed by Eric Youngdale <eric@andante.jic.com>
6 Modifications by Nick Clifton <nickc@redhat.com>
8 This file is part of GNU Binutils.
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
25 /* The difference between readelf and objdump:
27 Both programs are capable of displaying the contents of ELF format files,
28 so why does the binutils project have two file dumpers ?
30 The reason is that objdump sees an ELF file through a BFD filter of the
31 world; if BFD has a bug where, say, it disagrees about a machine constant
32 in e_flags, then the odds are good that it will remain internally
33 consistent. The linker sees it the BFD way, objdump sees it the BFD way,
34 GAS sees it the BFD way. There was need for a tool to go find out what
35 the file actually says.
37 This is why the readelf program does not link against the BFD library - it
38 exists as an independent program to help verify the correct working of BFD.
40 There is also the case that readelf can provide more information about an
41 ELF file than is provided by objdump. In particular it can display DWARF
42 debugging information which (at the moment) objdump cannot. */
56 # ifdef HAVE_SYS_PARAM_H
57 # include <sys/param.h>
61 # define PATH_MAX MAXPATHLEN
63 # define PATH_MAX 1024
69 /* Define BFD64 here, even if our default architecture is 32 bit ELF
70 as this will allow us to read in and parse 64bit and 32bit ELF files.
71 Only do this if we believe that the compiler can support a 64 bit
72 data type. For now we only rely on GCC being able to do this. */
80 #include "elf/common.h"
81 #include "elf/external.h"
82 #include "elf/internal.h"
85 /* Included here, before RELOC_MACROS_GEN_FUNC is defined, so that
86 we can obtain the H8 reloc numbers. We need these for the
87 get_reloc_size() function. We include h8.h again after defining
88 RELOC_MACROS_GEN_FUNC so that we get the naming function as well. */
93 /* Undo the effects of #including reloc-macros.h. */
95 #undef START_RELOC_NUMBERS
99 #undef END_RELOC_NUMBERS
100 #undef _RELOC_MACROS_H
102 /* The following headers use the elf/reloc-macros.h file to
103 automatically generate relocation recognition functions
104 such as elf_mips_reloc_type() */
106 #define RELOC_MACROS_GEN_FUNC
108 #include "elf/alpha.h"
112 #include "elf/bfin.h"
113 #include "elf/cr16.h"
114 #include "elf/cris.h"
116 #include "elf/d10v.h"
117 #include "elf/d30v.h"
119 #include "elf/fr30.h"
122 #include "elf/hppa.h"
123 #include "elf/i386.h"
124 #include "elf/i370.h"
125 #include "elf/i860.h"
126 #include "elf/i960.h"
127 #include "elf/ia64.h"
128 #include "elf/ip2k.h"
129 #include "elf/iq2000.h"
130 #include "elf/m32c.h"
131 #include "elf/m32r.h"
132 #include "elf/m68k.h"
133 #include "elf/m68hc11.h"
134 #include "elf/mcore.h"
136 #include "elf/mips.h"
137 #include "elf/mmix.h"
138 #include "elf/mn10200.h"
139 #include "elf/mn10300.h"
141 #include "elf/msp430.h"
142 #include "elf/or32.h"
145 #include "elf/ppc64.h"
146 #include "elf/s390.h"
147 #include "elf/score.h"
149 #include "elf/sparc.h"
151 #include "elf/v850.h"
153 #include "elf/x86-64.h"
154 #include "elf/xstormy16.h"
155 #include "elf/xtensa.h"
160 #include "libiberty.h"
161 #include "safe-ctype.h"
163 char *program_name
= "readelf";
164 static long archive_file_offset
;
165 static unsigned long archive_file_size
;
166 static unsigned long dynamic_addr
;
167 static bfd_size_type dynamic_size
;
168 static unsigned int dynamic_nent
;
169 static char *dynamic_strings
;
170 static unsigned long dynamic_strings_length
;
171 static char *string_table
;
172 static unsigned long string_table_length
;
173 static unsigned long num_dynamic_syms
;
174 static Elf_Internal_Sym
*dynamic_symbols
;
175 static Elf_Internal_Syminfo
*dynamic_syminfo
;
176 static unsigned long dynamic_syminfo_offset
;
177 static unsigned int dynamic_syminfo_nent
;
178 static char program_interpreter
[PATH_MAX
];
179 static bfd_vma dynamic_info
[DT_JMPREL
+ 1];
180 static bfd_vma dynamic_info_DT_GNU_HASH
;
181 static bfd_vma version_info
[16];
182 static Elf_Internal_Ehdr elf_header
;
183 static Elf_Internal_Shdr
*section_headers
;
184 static Elf_Internal_Phdr
*program_headers
;
185 static Elf_Internal_Dyn
*dynamic_section
;
186 static Elf_Internal_Shdr
*symtab_shndx_hdr
;
187 static int show_name
;
188 static int do_dynamic
;
191 static int do_sections
;
192 static int do_section_groups
;
193 static int do_section_details
;
194 static int do_segments
;
195 static int do_unwind
;
196 static int do_using_dynamic
;
197 static int do_header
;
199 static int do_version
;
201 static int do_histogram
;
202 static int do_debugging
;
205 static int do_archive_index
;
206 static int is_32bit_elf
;
210 struct group_list
*next
;
211 unsigned int section_index
;
216 struct group_list
*root
;
217 unsigned int group_index
;
220 static size_t group_count
;
221 static struct group
*section_groups
;
222 static struct group
**section_headers_groups
;
225 /* Flag bits indicating particular types of dump. */
226 #define HEX_DUMP (1 << 0) /* The -x command line switch. */
227 #define DISASS_DUMP (1 << 1) /* The -i command line switch. */
228 #define DEBUG_DUMP (1 << 2) /* The -w command line switch. */
229 #define STRING_DUMP (1 << 3) /* The -p command line switch. */
231 typedef unsigned char dump_type
;
233 /* A linked list of the section names for which dumps were requested. */
234 struct dump_list_entry
238 struct dump_list_entry
*next
;
240 static struct dump_list_entry
*dump_sects_byname
;
242 /* A dynamic array of flags indicating for which sections a dump
243 has been requested via command line switches. */
244 static dump_type
* cmdline_dump_sects
= NULL
;
245 static unsigned int num_cmdline_dump_sects
= 0;
247 /* A dynamic array of flags indicating for which sections a dump of
248 some kind has been requested. It is reset on a per-object file
249 basis and then initialised from the cmdline_dump_sects array,
250 the results of interpreting the -w switch, and the
251 dump_sects_byname list. */
252 static dump_type
* dump_sects
= NULL
;
253 static unsigned int num_dump_sects
= 0;
256 /* How to print a vma value. */
257 typedef enum print_mode
269 static void (*byte_put
) (unsigned char *, bfd_vma
, int);
273 #define SECTION_NAME(X) \
274 ((X) == NULL ? "<none>" \
275 : string_table == NULL ? "<no-name>" \
276 : ((X)->sh_name >= string_table_length ? "<corrupt>" \
277 : string_table + (X)->sh_name))
279 /* Given st_shndx I, map to section_headers index. */
280 #define SECTION_HEADER_INDEX(I) \
281 ((I) < SHN_LORESERVE \
283 : ((I) <= SHN_HIRESERVE \
285 : (I) - (SHN_HIRESERVE + 1 - SHN_LORESERVE)))
287 /* Reverse of the above. */
288 #define SECTION_HEADER_NUM(N) \
289 ((N) < SHN_LORESERVE \
291 : (N) + (SHN_HIRESERVE + 1 - SHN_LORESERVE))
293 #define SECTION_HEADER(I) (section_headers + SECTION_HEADER_INDEX (I))
295 #define DT_VERSIONTAGIDX(tag) (DT_VERNEEDNUM - (tag)) /* Reverse order! */
297 #define BYTE_GET(field) byte_get (field, sizeof (field))
299 #define GET_ELF_SYMBOLS(file, section) \
300 (is_32bit_elf ? get_32bit_elf_symbols (file, section) \
301 : get_64bit_elf_symbols (file, section))
303 #define VALID_DYNAMIC_NAME(offset) ((dynamic_strings != NULL) && (offset < dynamic_strings_length))
304 /* GET_DYNAMIC_NAME asssumes that VALID_DYNAMIC_NAME has
305 already been called and verified that the string exists. */
306 #define GET_DYNAMIC_NAME(offset) (dynamic_strings + offset)
308 /* This is just a bit of syntatic sugar. */
309 #define streq(a,b) (strcmp ((a), (b)) == 0)
310 #define strneq(a,b,n) (strncmp ((a), (b), (n)) == 0)
311 #define const_strneq(a,b) (strncmp ((a), (b), sizeof (b) - 1) == 0)
314 get_data (void *var
, FILE *file
, long offset
, size_t size
, size_t nmemb
,
319 if (size
== 0 || nmemb
== 0)
322 if (fseek (file
, archive_file_offset
+ offset
, SEEK_SET
))
324 error (_("Unable to seek to 0x%lx for %s\n"),
325 archive_file_offset
+ offset
, reason
);
332 /* Check for overflow. */
333 if (nmemb
< (~(size_t) 0 - 1) / size
)
334 /* + 1 so that we can '\0' terminate invalid string table sections. */
335 mvar
= malloc (size
* nmemb
+ 1);
339 error (_("Out of memory allocating 0x%lx bytes for %s\n"),
340 (unsigned long)(size
* nmemb
), reason
);
344 ((char *) mvar
)[size
* nmemb
] = '\0';
347 if (fread (mvar
, size
, nmemb
, file
) != nmemb
)
349 error (_("Unable to read in 0x%lx bytes of %s\n"),
350 (unsigned long)(size
* nmemb
), reason
);
360 byte_put_little_endian (unsigned char *field
, bfd_vma value
, int size
)
365 field
[7] = (((value
>> 24) >> 24) >> 8) & 0xff;
366 field
[6] = ((value
>> 24) >> 24) & 0xff;
367 field
[5] = ((value
>> 24) >> 16) & 0xff;
368 field
[4] = ((value
>> 24) >> 8) & 0xff;
371 field
[3] = (value
>> 24) & 0xff;
372 field
[2] = (value
>> 16) & 0xff;
375 field
[1] = (value
>> 8) & 0xff;
378 field
[0] = value
& 0xff;
382 error (_("Unhandled data length: %d\n"), size
);
387 #if defined BFD64 && !BFD_HOST_64BIT_LONG && !BFD_HOST_64BIT_LONG_LONG
389 print_dec_vma (bfd_vma vma
, int is_signed
)
395 if (is_signed
&& (bfd_signed_vma
) vma
< 0)
404 *bufp
++ = '0' + vma
% 10;
416 print_hex_vma (bfd_vma vma
)
424 char digit
= '0' + (vma
& 0x0f);
426 digit
+= 'a' - '0' - 10;
439 /* Print a VMA value. */
441 print_vma (bfd_vma vma
, print_mode mode
)
450 return printf ("0x%8.8lx", (unsigned long) vma
);
453 return printf ("%8.8lx", (unsigned long) vma
);
457 return printf ("%5ld", (long) vma
);
461 return printf ("0x%lx", (unsigned long) vma
);
464 return printf ("%lx", (unsigned long) vma
);
467 return printf ("%ld", (unsigned long) vma
);
470 return printf ("%lu", (unsigned long) vma
);
493 #if BFD_HOST_64BIT_LONG
494 return nc
+ printf ("%lx", vma
);
495 #elif BFD_HOST_64BIT_LONG_LONG
496 return nc
+ printf ("%llx", vma
);
498 return nc
+ print_hex_vma (vma
);
502 #if BFD_HOST_64BIT_LONG
503 return printf ("%ld", vma
);
504 #elif BFD_HOST_64BIT_LONG_LONG
505 return printf ("%lld", vma
);
507 return print_dec_vma (vma
, 1);
511 #if BFD_HOST_64BIT_LONG
513 return printf ("%5ld", vma
);
515 return printf ("%#lx", vma
);
516 #elif BFD_HOST_64BIT_LONG_LONG
518 return printf ("%5lld", vma
);
520 return printf ("%#llx", vma
);
523 return printf ("%5ld", _bfd_int64_low (vma
));
525 return print_hex_vma (vma
);
529 #if BFD_HOST_64BIT_LONG
530 return printf ("%lu", vma
);
531 #elif BFD_HOST_64BIT_LONG_LONG
532 return printf ("%llu", vma
);
534 return print_dec_vma (vma
, 0);
542 /* Display a symbol on stdout. If do_wide is not true then
543 format the symbol to be at most WIDTH characters,
544 truncating as necessary. If WIDTH is negative then
545 format the string to be exactly - WIDTH characters,
546 truncating or padding as necessary. */
549 print_symbol (int width
, const char *symbol
)
552 printf ("%s", symbol
);
554 printf ("%-*.*s", width
, width
, symbol
);
556 printf ("%-.*s", width
, symbol
);
560 byte_put_big_endian (unsigned char *field
, bfd_vma value
, int size
)
565 field
[7] = value
& 0xff;
566 field
[6] = (value
>> 8) & 0xff;
567 field
[5] = (value
>> 16) & 0xff;
568 field
[4] = (value
>> 24) & 0xff;
573 field
[3] = value
& 0xff;
574 field
[2] = (value
>> 8) & 0xff;
578 field
[1] = value
& 0xff;
582 field
[0] = value
& 0xff;
586 error (_("Unhandled data length: %d\n"), size
);
591 /* Return a pointer to section NAME, or NULL if no such section exists. */
593 static Elf_Internal_Shdr
*
594 find_section (const char *name
)
598 for (i
= 0; i
< elf_header
.e_shnum
; i
++)
599 if (streq (SECTION_NAME (section_headers
+ i
), name
))
600 return section_headers
+ i
;
605 /* Guess the relocation size commonly used by the specific machines. */
608 guess_is_rela (unsigned long e_machine
)
612 /* Targets that use REL relocations. */
628 /* Targets that use RELA relocations. */
632 case EM_ALTERA_NIOS2
:
657 case EM_CYGNUS_MN10200
:
659 case EM_CYGNUS_MN10300
:
700 warn (_("Don't know about relocations on this machine architecture\n"));
706 slurp_rela_relocs (FILE *file
,
707 unsigned long rel_offset
,
708 unsigned long rel_size
,
709 Elf_Internal_Rela
**relasp
,
710 unsigned long *nrelasp
)
712 Elf_Internal_Rela
*relas
;
713 unsigned long nrelas
;
718 Elf32_External_Rela
*erelas
;
720 erelas
= get_data (NULL
, file
, rel_offset
, 1, rel_size
, _("relocs"));
724 nrelas
= rel_size
/ sizeof (Elf32_External_Rela
);
726 relas
= cmalloc (nrelas
, sizeof (Elf_Internal_Rela
));
731 error (_("out of memory parsing relocs\n"));
735 for (i
= 0; i
< nrelas
; i
++)
737 relas
[i
].r_offset
= BYTE_GET (erelas
[i
].r_offset
);
738 relas
[i
].r_info
= BYTE_GET (erelas
[i
].r_info
);
739 relas
[i
].r_addend
= BYTE_GET (erelas
[i
].r_addend
);
746 Elf64_External_Rela
*erelas
;
748 erelas
= get_data (NULL
, file
, rel_offset
, 1, rel_size
, _("relocs"));
752 nrelas
= rel_size
/ sizeof (Elf64_External_Rela
);
754 relas
= cmalloc (nrelas
, sizeof (Elf_Internal_Rela
));
759 error (_("out of memory parsing relocs\n"));
763 for (i
= 0; i
< nrelas
; i
++)
765 relas
[i
].r_offset
= BYTE_GET (erelas
[i
].r_offset
);
766 relas
[i
].r_info
= BYTE_GET (erelas
[i
].r_info
);
767 relas
[i
].r_addend
= BYTE_GET (erelas
[i
].r_addend
);
778 slurp_rel_relocs (FILE *file
,
779 unsigned long rel_offset
,
780 unsigned long rel_size
,
781 Elf_Internal_Rela
**relsp
,
782 unsigned long *nrelsp
)
784 Elf_Internal_Rela
*rels
;
790 Elf32_External_Rel
*erels
;
792 erels
= get_data (NULL
, file
, rel_offset
, 1, rel_size
, _("relocs"));
796 nrels
= rel_size
/ sizeof (Elf32_External_Rel
);
798 rels
= cmalloc (nrels
, sizeof (Elf_Internal_Rela
));
803 error (_("out of memory parsing relocs\n"));
807 for (i
= 0; i
< nrels
; i
++)
809 rels
[i
].r_offset
= BYTE_GET (erels
[i
].r_offset
);
810 rels
[i
].r_info
= BYTE_GET (erels
[i
].r_info
);
811 rels
[i
].r_addend
= 0;
818 Elf64_External_Rel
*erels
;
820 erels
= get_data (NULL
, file
, rel_offset
, 1, rel_size
, _("relocs"));
824 nrels
= rel_size
/ sizeof (Elf64_External_Rel
);
826 rels
= cmalloc (nrels
, sizeof (Elf_Internal_Rela
));
831 error (_("out of memory parsing relocs\n"));
835 for (i
= 0; i
< nrels
; i
++)
837 rels
[i
].r_offset
= BYTE_GET (erels
[i
].r_offset
);
838 rels
[i
].r_info
= BYTE_GET (erels
[i
].r_info
);
839 rels
[i
].r_addend
= 0;
849 /* Returns the reloc type extracted from the reloc info field. */
852 get_reloc_type (bfd_vma reloc_info
)
855 return ELF32_R_TYPE (reloc_info
);
857 switch (elf_header
.e_machine
)
860 /* Note: We assume that reloc_info has already been adjusted for us. */
861 return ELF64_MIPS_R_TYPE (reloc_info
);
864 return ELF64_R_TYPE_ID (reloc_info
);
867 return ELF64_R_TYPE (reloc_info
);
871 /* Return the symbol index extracted from the reloc info field. */
874 get_reloc_symindex (bfd_vma reloc_info
)
876 return is_32bit_elf
? ELF32_R_SYM (reloc_info
) : ELF64_R_SYM (reloc_info
);
879 /* Display the contents of the relocation data found at the specified
883 dump_relocations (FILE *file
,
884 unsigned long rel_offset
,
885 unsigned long rel_size
,
886 Elf_Internal_Sym
*symtab
,
889 unsigned long strtablen
,
893 Elf_Internal_Rela
*rels
;
896 if (is_rela
== UNKNOWN
)
897 is_rela
= guess_is_rela (elf_header
.e_machine
);
901 if (!slurp_rela_relocs (file
, rel_offset
, rel_size
, &rels
, &rel_size
))
906 if (!slurp_rel_relocs (file
, rel_offset
, rel_size
, &rels
, &rel_size
))
915 printf (_(" Offset Info Type Sym. Value Symbol's Name + Addend\n"));
917 printf (_(" Offset Info Type Sym.Value Sym. Name + Addend\n"));
922 printf (_(" Offset Info Type Sym. Value Symbol's Name\n"));
924 printf (_(" Offset Info Type Sym.Value Sym. Name\n"));
932 printf (_(" Offset Info Type Symbol's Value Symbol's Name + Addend\n"));
934 printf (_(" Offset Info Type Sym. Value Sym. Name + Addend\n"));
939 printf (_(" Offset Info Type Symbol's Value Symbol's Name\n"));
941 printf (_(" Offset Info Type Sym. Value Sym. Name\n"));
945 for (i
= 0; i
< rel_size
; i
++)
950 bfd_vma symtab_index
;
953 offset
= rels
[i
].r_offset
;
954 info
= rels
[i
].r_info
;
956 /* The #ifdef BFD64 below is to prevent a compile time warning.
957 We know that if we do not have a 64 bit data type that we
958 will never execute this code anyway. */
961 && elf_header
.e_machine
== EM_MIPS
962 && elf_header
.e_ident
[EI_DATA
] != ELFDATA2MSB
)
964 /* In little-endian objects, r_info isn't really a 64-bit
965 little-endian value: it has a 32-bit little-endian
966 symbol index followed by four individual byte fields.
967 Reorder INFO accordingly. */
968 info
= (((info
& 0xffffffff) << 32)
969 | ((info
>> 56) & 0xff)
970 | ((info
>> 40) & 0xff00)
971 | ((info
>> 24) & 0xff0000)
972 | ((info
>> 8) & 0xff000000));
976 type
= get_reloc_type (info
);
977 symtab_index
= get_reloc_symindex (info
);
981 printf ("%8.8lx %8.8lx ",
982 (unsigned long) offset
& 0xffffffff,
983 (unsigned long) info
& 0xffffffff);
987 #if BFD_HOST_64BIT_LONG
989 ? "%16.16lx %16.16lx "
990 : "%12.12lx %12.12lx ",
992 #elif BFD_HOST_64BIT_LONG_LONG
994 ? "%16.16llx %16.16llx "
995 : "%12.12llx %12.12llx ",
999 ? "%8.8lx%8.8lx %8.8lx%8.8lx "
1000 : "%4.4lx%8.8lx %4.4lx%8.8lx ",
1001 _bfd_int64_high (offset
),
1002 _bfd_int64_low (offset
),
1003 _bfd_int64_high (info
),
1004 _bfd_int64_low (info
));
1008 switch (elf_header
.e_machine
)
1015 case EM_CYGNUS_M32R
:
1016 rtype
= elf_m32r_reloc_type (type
);
1021 rtype
= elf_i386_reloc_type (type
);
1026 rtype
= elf_m68hc11_reloc_type (type
);
1030 rtype
= elf_m68k_reloc_type (type
);
1034 rtype
= elf_i960_reloc_type (type
);
1039 rtype
= elf_avr_reloc_type (type
);
1042 case EM_OLD_SPARCV9
:
1043 case EM_SPARC32PLUS
:
1046 rtype
= elf_sparc_reloc_type (type
);
1050 rtype
= elf_spu_reloc_type (type
);
1054 case EM_CYGNUS_V850
:
1055 rtype
= v850_reloc_type (type
);
1059 case EM_CYGNUS_D10V
:
1060 rtype
= elf_d10v_reloc_type (type
);
1064 case EM_CYGNUS_D30V
:
1065 rtype
= elf_d30v_reloc_type (type
);
1069 rtype
= elf_dlx_reloc_type (type
);
1073 rtype
= elf_sh_reloc_type (type
);
1077 case EM_CYGNUS_MN10300
:
1078 rtype
= elf_mn10300_reloc_type (type
);
1082 case EM_CYGNUS_MN10200
:
1083 rtype
= elf_mn10200_reloc_type (type
);
1087 case EM_CYGNUS_FR30
:
1088 rtype
= elf_fr30_reloc_type (type
);
1092 rtype
= elf_frv_reloc_type (type
);
1096 rtype
= elf_mcore_reloc_type (type
);
1100 rtype
= elf_mmix_reloc_type (type
);
1105 rtype
= elf_msp430_reloc_type (type
);
1109 rtype
= elf_ppc_reloc_type (type
);
1113 rtype
= elf_ppc64_reloc_type (type
);
1117 case EM_MIPS_RS3_LE
:
1118 rtype
= elf_mips_reloc_type (type
);
1122 rtype
= elf_alpha_reloc_type (type
);
1126 rtype
= elf_arm_reloc_type (type
);
1130 rtype
= elf_arc_reloc_type (type
);
1134 rtype
= elf_hppa_reloc_type (type
);
1140 rtype
= elf_h8_reloc_type (type
);
1145 rtype
= elf_or32_reloc_type (type
);
1150 rtype
= elf_pj_reloc_type (type
);
1153 rtype
= elf_ia64_reloc_type (type
);
1157 rtype
= elf_cris_reloc_type (type
);
1161 rtype
= elf_i860_reloc_type (type
);
1165 rtype
= elf_x86_64_reloc_type (type
);
1169 rtype
= i370_reloc_type (type
);
1174 rtype
= elf_s390_reloc_type (type
);
1178 rtype
= elf_score_reloc_type (type
);
1182 rtype
= elf_xstormy16_reloc_type (type
);
1186 rtype
= elf_crx_reloc_type (type
);
1190 rtype
= elf_vax_reloc_type (type
);
1195 rtype
= elf_ip2k_reloc_type (type
);
1199 rtype
= elf_iq2000_reloc_type (type
);
1204 rtype
= elf_xtensa_reloc_type (type
);
1208 rtype
= elf_m32c_reloc_type (type
);
1212 rtype
= elf_mt_reloc_type (type
);
1216 rtype
= elf_bfin_reloc_type (type
);
1220 rtype
= elf_mep_reloc_type (type
);
1224 rtype
= elf_cr16_reloc_type (type
);
1229 printf (_("unrecognized: %-7lx"), (unsigned long) type
& 0xffffffff);
1231 printf (do_wide
? "%-22.22s" : "%-17.17s", rtype
);
1233 if (elf_header
.e_machine
== EM_ALPHA
1235 && streq (rtype
, "R_ALPHA_LITUSE")
1238 switch (rels
[i
].r_addend
)
1240 case LITUSE_ALPHA_ADDR
: rtype
= "ADDR"; break;
1241 case LITUSE_ALPHA_BASE
: rtype
= "BASE"; break;
1242 case LITUSE_ALPHA_BYTOFF
: rtype
= "BYTOFF"; break;
1243 case LITUSE_ALPHA_JSR
: rtype
= "JSR"; break;
1244 case LITUSE_ALPHA_TLSGD
: rtype
= "TLSGD"; break;
1245 case LITUSE_ALPHA_TLSLDM
: rtype
= "TLSLDM"; break;
1246 case LITUSE_ALPHA_JSRDIRECT
: rtype
= "JSRDIRECT"; break;
1247 default: rtype
= NULL
;
1250 printf (" (%s)", rtype
);
1254 printf (_("<unknown addend: %lx>"),
1255 (unsigned long) rels
[i
].r_addend
);
1258 else if (symtab_index
)
1260 if (symtab
== NULL
|| symtab_index
>= nsyms
)
1261 printf (" bad symbol index: %08lx", (unsigned long) symtab_index
);
1264 Elf_Internal_Sym
*psym
;
1266 psym
= symtab
+ symtab_index
;
1269 print_vma (psym
->st_value
, LONG_HEX
);
1270 printf (is_32bit_elf
? " " : " ");
1272 if (psym
->st_name
== 0)
1274 const char *sec_name
= "<null>";
1277 if (ELF_ST_TYPE (psym
->st_info
) == STT_SECTION
)
1279 bfd_vma sec_index
= (bfd_vma
) -1;
1281 if (psym
->st_shndx
< SHN_LORESERVE
)
1282 sec_index
= psym
->st_shndx
;
1283 else if (psym
->st_shndx
> SHN_HIRESERVE
)
1284 sec_index
= psym
->st_shndx
- (SHN_HIRESERVE
+ 1
1287 if (sec_index
!= (bfd_vma
) -1)
1288 sec_name
= SECTION_NAME (section_headers
+ sec_index
);
1289 else if (psym
->st_shndx
== SHN_ABS
)
1291 else if (psym
->st_shndx
== SHN_COMMON
)
1292 sec_name
= "COMMON";
1293 else if (elf_header
.e_machine
== EM_MIPS
1294 && psym
->st_shndx
== SHN_MIPS_SCOMMON
)
1295 sec_name
= "SCOMMON";
1296 else if (elf_header
.e_machine
== EM_MIPS
1297 && psym
->st_shndx
== SHN_MIPS_SUNDEFINED
)
1298 sec_name
= "SUNDEF";
1299 else if (elf_header
.e_machine
== EM_X86_64
1300 && psym
->st_shndx
== SHN_X86_64_LCOMMON
)
1301 sec_name
= "LARGE_COMMON";
1302 else if (elf_header
.e_machine
== EM_IA_64
1303 && elf_header
.e_ident
[EI_OSABI
] == ELFOSABI_HPUX
1304 && psym
->st_shndx
== SHN_IA_64_ANSI_COMMON
)
1305 sec_name
= "ANSI_COM";
1308 sprintf (name_buf
, "<section 0x%x>",
1309 (unsigned int) psym
->st_shndx
);
1310 sec_name
= name_buf
;
1313 print_symbol (22, sec_name
);
1315 else if (strtab
== NULL
)
1316 printf (_("<string table index: %3ld>"), psym
->st_name
);
1317 else if (psym
->st_name
>= strtablen
)
1318 printf (_("<corrupt string table index: %3ld>"), psym
->st_name
);
1320 print_symbol (22, strtab
+ psym
->st_name
);
1323 printf (" + %lx", (unsigned long) rels
[i
].r_addend
);
1328 printf ("%*c", is_32bit_elf
?
1329 (do_wide
? 34 : 28) : (do_wide
? 26 : 20), ' ');
1330 print_vma (rels
[i
].r_addend
, LONG_HEX
);
1333 if (elf_header
.e_machine
== EM_SPARCV9
1335 && streq (rtype
, "R_SPARC_OLO10"))
1336 printf (" + %lx", (unsigned long) ELF64_R_TYPE_DATA (info
));
1341 if (! is_32bit_elf
&& elf_header
.e_machine
== EM_MIPS
)
1343 bfd_vma type2
= ELF64_MIPS_R_TYPE2 (info
);
1344 bfd_vma type3
= ELF64_MIPS_R_TYPE3 (info
);
1345 const char *rtype2
= elf_mips_reloc_type (type2
);
1346 const char *rtype3
= elf_mips_reloc_type (type3
);
1348 printf (" Type2: ");
1351 printf (_("unrecognized: %-7lx"),
1352 (unsigned long) type2
& 0xffffffff);
1354 printf ("%-17.17s", rtype2
);
1356 printf ("\n Type3: ");
1359 printf (_("unrecognized: %-7lx"),
1360 (unsigned long) type3
& 0xffffffff);
1362 printf ("%-17.17s", rtype3
);
1373 get_mips_dynamic_type (unsigned long type
)
1377 case DT_MIPS_RLD_VERSION
: return "MIPS_RLD_VERSION";
1378 case DT_MIPS_TIME_STAMP
: return "MIPS_TIME_STAMP";
1379 case DT_MIPS_ICHECKSUM
: return "MIPS_ICHECKSUM";
1380 case DT_MIPS_IVERSION
: return "MIPS_IVERSION";
1381 case DT_MIPS_FLAGS
: return "MIPS_FLAGS";
1382 case DT_MIPS_BASE_ADDRESS
: return "MIPS_BASE_ADDRESS";
1383 case DT_MIPS_MSYM
: return "MIPS_MSYM";
1384 case DT_MIPS_CONFLICT
: return "MIPS_CONFLICT";
1385 case DT_MIPS_LIBLIST
: return "MIPS_LIBLIST";
1386 case DT_MIPS_LOCAL_GOTNO
: return "MIPS_LOCAL_GOTNO";
1387 case DT_MIPS_CONFLICTNO
: return "MIPS_CONFLICTNO";
1388 case DT_MIPS_LIBLISTNO
: return "MIPS_LIBLISTNO";
1389 case DT_MIPS_SYMTABNO
: return "MIPS_SYMTABNO";
1390 case DT_MIPS_UNREFEXTNO
: return "MIPS_UNREFEXTNO";
1391 case DT_MIPS_GOTSYM
: return "MIPS_GOTSYM";
1392 case DT_MIPS_HIPAGENO
: return "MIPS_HIPAGENO";
1393 case DT_MIPS_RLD_MAP
: return "MIPS_RLD_MAP";
1394 case DT_MIPS_DELTA_CLASS
: return "MIPS_DELTA_CLASS";
1395 case DT_MIPS_DELTA_CLASS_NO
: return "MIPS_DELTA_CLASS_NO";
1396 case DT_MIPS_DELTA_INSTANCE
: return "MIPS_DELTA_INSTANCE";
1397 case DT_MIPS_DELTA_INSTANCE_NO
: return "MIPS_DELTA_INSTANCE_NO";
1398 case DT_MIPS_DELTA_RELOC
: return "MIPS_DELTA_RELOC";
1399 case DT_MIPS_DELTA_RELOC_NO
: return "MIPS_DELTA_RELOC_NO";
1400 case DT_MIPS_DELTA_SYM
: return "MIPS_DELTA_SYM";
1401 case DT_MIPS_DELTA_SYM_NO
: return "MIPS_DELTA_SYM_NO";
1402 case DT_MIPS_DELTA_CLASSSYM
: return "MIPS_DELTA_CLASSSYM";
1403 case DT_MIPS_DELTA_CLASSSYM_NO
: return "MIPS_DELTA_CLASSSYM_NO";
1404 case DT_MIPS_CXX_FLAGS
: return "MIPS_CXX_FLAGS";
1405 case DT_MIPS_PIXIE_INIT
: return "MIPS_PIXIE_INIT";
1406 case DT_MIPS_SYMBOL_LIB
: return "MIPS_SYMBOL_LIB";
1407 case DT_MIPS_LOCALPAGE_GOTIDX
: return "MIPS_LOCALPAGE_GOTIDX";
1408 case DT_MIPS_LOCAL_GOTIDX
: return "MIPS_LOCAL_GOTIDX";
1409 case DT_MIPS_HIDDEN_GOTIDX
: return "MIPS_HIDDEN_GOTIDX";
1410 case DT_MIPS_PROTECTED_GOTIDX
: return "MIPS_PROTECTED_GOTIDX";
1411 case DT_MIPS_OPTIONS
: return "MIPS_OPTIONS";
1412 case DT_MIPS_INTERFACE
: return "MIPS_INTERFACE";
1413 case DT_MIPS_DYNSTR_ALIGN
: return "MIPS_DYNSTR_ALIGN";
1414 case DT_MIPS_INTERFACE_SIZE
: return "MIPS_INTERFACE_SIZE";
1415 case DT_MIPS_RLD_TEXT_RESOLVE_ADDR
: return "MIPS_RLD_TEXT_RESOLVE_ADDR";
1416 case DT_MIPS_PERF_SUFFIX
: return "MIPS_PERF_SUFFIX";
1417 case DT_MIPS_COMPACT_SIZE
: return "MIPS_COMPACT_SIZE";
1418 case DT_MIPS_GP_VALUE
: return "MIPS_GP_VALUE";
1419 case DT_MIPS_AUX_DYNAMIC
: return "MIPS_AUX_DYNAMIC";
1426 get_sparc64_dynamic_type (unsigned long type
)
1430 case DT_SPARC_REGISTER
: return "SPARC_REGISTER";
1437 get_ppc_dynamic_type (unsigned long type
)
1441 case DT_PPC_GOT
: return "PPC_GOT";
1448 get_ppc64_dynamic_type (unsigned long type
)
1452 case DT_PPC64_GLINK
: return "PPC64_GLINK";
1453 case DT_PPC64_OPD
: return "PPC64_OPD";
1454 case DT_PPC64_OPDSZ
: return "PPC64_OPDSZ";
1461 get_parisc_dynamic_type (unsigned long type
)
1465 case DT_HP_LOAD_MAP
: return "HP_LOAD_MAP";
1466 case DT_HP_DLD_FLAGS
: return "HP_DLD_FLAGS";
1467 case DT_HP_DLD_HOOK
: return "HP_DLD_HOOK";
1468 case DT_HP_UX10_INIT
: return "HP_UX10_INIT";
1469 case DT_HP_UX10_INITSZ
: return "HP_UX10_INITSZ";
1470 case DT_HP_PREINIT
: return "HP_PREINIT";
1471 case DT_HP_PREINITSZ
: return "HP_PREINITSZ";
1472 case DT_HP_NEEDED
: return "HP_NEEDED";
1473 case DT_HP_TIME_STAMP
: return "HP_TIME_STAMP";
1474 case DT_HP_CHECKSUM
: return "HP_CHECKSUM";
1475 case DT_HP_GST_SIZE
: return "HP_GST_SIZE";
1476 case DT_HP_GST_VERSION
: return "HP_GST_VERSION";
1477 case DT_HP_GST_HASHVAL
: return "HP_GST_HASHVAL";
1478 case DT_HP_EPLTREL
: return "HP_GST_EPLTREL";
1479 case DT_HP_EPLTRELSZ
: return "HP_GST_EPLTRELSZ";
1480 case DT_HP_FILTERED
: return "HP_FILTERED";
1481 case DT_HP_FILTER_TLS
: return "HP_FILTER_TLS";
1482 case DT_HP_COMPAT_FILTERED
: return "HP_COMPAT_FILTERED";
1483 case DT_HP_LAZYLOAD
: return "HP_LAZYLOAD";
1484 case DT_HP_BIND_NOW_COUNT
: return "HP_BIND_NOW_COUNT";
1485 case DT_PLT
: return "PLT";
1486 case DT_PLT_SIZE
: return "PLT_SIZE";
1487 case DT_DLT
: return "DLT";
1488 case DT_DLT_SIZE
: return "DLT_SIZE";
1495 get_ia64_dynamic_type (unsigned long type
)
1499 case DT_IA_64_PLT_RESERVE
: return "IA_64_PLT_RESERVE";
1506 get_alpha_dynamic_type (unsigned long type
)
1510 case DT_ALPHA_PLTRO
: return "ALPHA_PLTRO";
1517 get_score_dynamic_type (unsigned long type
)
1521 case DT_SCORE_BASE_ADDRESS
: return "SCORE_BASE_ADDRESS";
1522 case DT_SCORE_LOCAL_GOTNO
: return "SCORE_LOCAL_GOTNO";
1523 case DT_SCORE_SYMTABNO
: return "SCORE_SYMTABNO";
1524 case DT_SCORE_GOTSYM
: return "SCORE_GOTSYM";
1525 case DT_SCORE_UNREFEXTNO
: return "SCORE_UNREFEXTNO";
1526 case DT_SCORE_HIPAGENO
: return "SCORE_HIPAGENO";
1534 get_dynamic_type (unsigned long type
)
1536 static char buff
[64];
1540 case DT_NULL
: return "NULL";
1541 case DT_NEEDED
: return "NEEDED";
1542 case DT_PLTRELSZ
: return "PLTRELSZ";
1543 case DT_PLTGOT
: return "PLTGOT";
1544 case DT_HASH
: return "HASH";
1545 case DT_STRTAB
: return "STRTAB";
1546 case DT_SYMTAB
: return "SYMTAB";
1547 case DT_RELA
: return "RELA";
1548 case DT_RELASZ
: return "RELASZ";
1549 case DT_RELAENT
: return "RELAENT";
1550 case DT_STRSZ
: return "STRSZ";
1551 case DT_SYMENT
: return "SYMENT";
1552 case DT_INIT
: return "INIT";
1553 case DT_FINI
: return "FINI";
1554 case DT_SONAME
: return "SONAME";
1555 case DT_RPATH
: return "RPATH";
1556 case DT_SYMBOLIC
: return "SYMBOLIC";
1557 case DT_REL
: return "REL";
1558 case DT_RELSZ
: return "RELSZ";
1559 case DT_RELENT
: return "RELENT";
1560 case DT_PLTREL
: return "PLTREL";
1561 case DT_DEBUG
: return "DEBUG";
1562 case DT_TEXTREL
: return "TEXTREL";
1563 case DT_JMPREL
: return "JMPREL";
1564 case DT_BIND_NOW
: return "BIND_NOW";
1565 case DT_INIT_ARRAY
: return "INIT_ARRAY";
1566 case DT_FINI_ARRAY
: return "FINI_ARRAY";
1567 case DT_INIT_ARRAYSZ
: return "INIT_ARRAYSZ";
1568 case DT_FINI_ARRAYSZ
: return "FINI_ARRAYSZ";
1569 case DT_RUNPATH
: return "RUNPATH";
1570 case DT_FLAGS
: return "FLAGS";
1572 case DT_PREINIT_ARRAY
: return "PREINIT_ARRAY";
1573 case DT_PREINIT_ARRAYSZ
: return "PREINIT_ARRAYSZ";
1575 case DT_CHECKSUM
: return "CHECKSUM";
1576 case DT_PLTPADSZ
: return "PLTPADSZ";
1577 case DT_MOVEENT
: return "MOVEENT";
1578 case DT_MOVESZ
: return "MOVESZ";
1579 case DT_FEATURE
: return "FEATURE";
1580 case DT_POSFLAG_1
: return "POSFLAG_1";
1581 case DT_SYMINSZ
: return "SYMINSZ";
1582 case DT_SYMINENT
: return "SYMINENT"; /* aka VALRNGHI */
1584 case DT_ADDRRNGLO
: return "ADDRRNGLO";
1585 case DT_CONFIG
: return "CONFIG";
1586 case DT_DEPAUDIT
: return "DEPAUDIT";
1587 case DT_AUDIT
: return "AUDIT";
1588 case DT_PLTPAD
: return "PLTPAD";
1589 case DT_MOVETAB
: return "MOVETAB";
1590 case DT_SYMINFO
: return "SYMINFO"; /* aka ADDRRNGHI */
1592 case DT_VERSYM
: return "VERSYM";
1594 case DT_TLSDESC_GOT
: return "TLSDESC_GOT";
1595 case DT_TLSDESC_PLT
: return "TLSDESC_PLT";
1596 case DT_RELACOUNT
: return "RELACOUNT";
1597 case DT_RELCOUNT
: return "RELCOUNT";
1598 case DT_FLAGS_1
: return "FLAGS_1";
1599 case DT_VERDEF
: return "VERDEF";
1600 case DT_VERDEFNUM
: return "VERDEFNUM";
1601 case DT_VERNEED
: return "VERNEED";
1602 case DT_VERNEEDNUM
: return "VERNEEDNUM";
1604 case DT_AUXILIARY
: return "AUXILIARY";
1605 case DT_USED
: return "USED";
1606 case DT_FILTER
: return "FILTER";
1608 case DT_GNU_PRELINKED
: return "GNU_PRELINKED";
1609 case DT_GNU_CONFLICT
: return "GNU_CONFLICT";
1610 case DT_GNU_CONFLICTSZ
: return "GNU_CONFLICTSZ";
1611 case DT_GNU_LIBLIST
: return "GNU_LIBLIST";
1612 case DT_GNU_LIBLISTSZ
: return "GNU_LIBLISTSZ";
1613 case DT_GNU_HASH
: return "GNU_HASH";
1616 if ((type
>= DT_LOPROC
) && (type
<= DT_HIPROC
))
1620 switch (elf_header
.e_machine
)
1623 case EM_MIPS_RS3_LE
:
1624 result
= get_mips_dynamic_type (type
);
1627 result
= get_sparc64_dynamic_type (type
);
1630 result
= get_ppc_dynamic_type (type
);
1633 result
= get_ppc64_dynamic_type (type
);
1636 result
= get_ia64_dynamic_type (type
);
1639 result
= get_alpha_dynamic_type (type
);
1642 result
= get_score_dynamic_type (type
);
1652 snprintf (buff
, sizeof (buff
), _("Processor Specific: %lx"), type
);
1654 else if (((type
>= DT_LOOS
) && (type
<= DT_HIOS
))
1655 || (elf_header
.e_machine
== EM_PARISC
1656 && (type
>= OLD_DT_LOOS
) && (type
<= OLD_DT_HIOS
)))
1660 switch (elf_header
.e_machine
)
1663 result
= get_parisc_dynamic_type (type
);
1673 snprintf (buff
, sizeof (buff
), _("Operating System specific: %lx"),
1677 snprintf (buff
, sizeof (buff
), _("<unknown>: %lx"), type
);
1684 get_file_type (unsigned e_type
)
1686 static char buff
[32];
1690 case ET_NONE
: return _("NONE (None)");
1691 case ET_REL
: return _("REL (Relocatable file)");
1692 case ET_EXEC
: return _("EXEC (Executable file)");
1693 case ET_DYN
: return _("DYN (Shared object file)");
1694 case ET_CORE
: return _("CORE (Core file)");
1697 if ((e_type
>= ET_LOPROC
) && (e_type
<= ET_HIPROC
))
1698 snprintf (buff
, sizeof (buff
), _("Processor Specific: (%x)"), e_type
);
1699 else if ((e_type
>= ET_LOOS
) && (e_type
<= ET_HIOS
))
1700 snprintf (buff
, sizeof (buff
), _("OS Specific: (%x)"), e_type
);
1702 snprintf (buff
, sizeof (buff
), _("<unknown>: %x"), e_type
);
1708 get_machine_name (unsigned e_machine
)
1710 static char buff
[64]; /* XXX */
1714 case EM_NONE
: return _("None");
1715 case EM_M32
: return "WE32100";
1716 case EM_SPARC
: return "Sparc";
1717 case EM_SPU
: return "SPU";
1718 case EM_386
: return "Intel 80386";
1719 case EM_68K
: return "MC68000";
1720 case EM_88K
: return "MC88000";
1721 case EM_486
: return "Intel 80486";
1722 case EM_860
: return "Intel 80860";
1723 case EM_MIPS
: return "MIPS R3000";
1724 case EM_S370
: return "IBM System/370";
1725 case EM_MIPS_RS3_LE
: return "MIPS R4000 big-endian";
1726 case EM_OLD_SPARCV9
: return "Sparc v9 (old)";
1727 case EM_PARISC
: return "HPPA";
1728 case EM_PPC_OLD
: return "Power PC (old)";
1729 case EM_SPARC32PLUS
: return "Sparc v8+" ;
1730 case EM_960
: return "Intel 90860";
1731 case EM_PPC
: return "PowerPC";
1732 case EM_PPC64
: return "PowerPC64";
1733 case EM_V800
: return "NEC V800";
1734 case EM_FR20
: return "Fujitsu FR20";
1735 case EM_RH32
: return "TRW RH32";
1736 case EM_MCORE
: return "MCORE";
1737 case EM_ARM
: return "ARM";
1738 case EM_OLD_ALPHA
: return "Digital Alpha (old)";
1739 case EM_SH
: return "Renesas / SuperH SH";
1740 case EM_SPARCV9
: return "Sparc v9";
1741 case EM_TRICORE
: return "Siemens Tricore";
1742 case EM_ARC
: return "ARC";
1743 case EM_H8_300
: return "Renesas H8/300";
1744 case EM_H8_300H
: return "Renesas H8/300H";
1745 case EM_H8S
: return "Renesas H8S";
1746 case EM_H8_500
: return "Renesas H8/500";
1747 case EM_IA_64
: return "Intel IA-64";
1748 case EM_MIPS_X
: return "Stanford MIPS-X";
1749 case EM_COLDFIRE
: return "Motorola Coldfire";
1750 case EM_68HC12
: return "Motorola M68HC12";
1751 case EM_ALPHA
: return "Alpha";
1752 case EM_CYGNUS_D10V
:
1753 case EM_D10V
: return "d10v";
1754 case EM_CYGNUS_D30V
:
1755 case EM_D30V
: return "d30v";
1756 case EM_CYGNUS_M32R
:
1757 case EM_M32R
: return "Renesas M32R (formerly Mitsubishi M32r)";
1758 case EM_CYGNUS_V850
:
1759 case EM_V850
: return "NEC v850";
1760 case EM_CYGNUS_MN10300
:
1761 case EM_MN10300
: return "mn10300";
1762 case EM_CYGNUS_MN10200
:
1763 case EM_MN10200
: return "mn10200";
1764 case EM_CYGNUS_FR30
:
1765 case EM_FR30
: return "Fujitsu FR30";
1766 case EM_CYGNUS_FRV
: return "Fujitsu FR-V";
1768 case EM_PJ
: return "picoJava";
1769 case EM_MMA
: return "Fujitsu Multimedia Accelerator";
1770 case EM_PCP
: return "Siemens PCP";
1771 case EM_NCPU
: return "Sony nCPU embedded RISC processor";
1772 case EM_NDR1
: return "Denso NDR1 microprocesspr";
1773 case EM_STARCORE
: return "Motorola Star*Core processor";
1774 case EM_ME16
: return "Toyota ME16 processor";
1775 case EM_ST100
: return "STMicroelectronics ST100 processor";
1776 case EM_TINYJ
: return "Advanced Logic Corp. TinyJ embedded processor";
1777 case EM_FX66
: return "Siemens FX66 microcontroller";
1778 case EM_ST9PLUS
: return "STMicroelectronics ST9+ 8/16 bit microcontroller";
1779 case EM_ST7
: return "STMicroelectronics ST7 8-bit microcontroller";
1780 case EM_68HC16
: return "Motorola MC68HC16 Microcontroller";
1781 case EM_68HC11
: return "Motorola MC68HC11 Microcontroller";
1782 case EM_68HC08
: return "Motorola MC68HC08 Microcontroller";
1783 case EM_68HC05
: return "Motorola MC68HC05 Microcontroller";
1784 case EM_SVX
: return "Silicon Graphics SVx";
1785 case EM_ST19
: return "STMicroelectronics ST19 8-bit microcontroller";
1786 case EM_VAX
: return "Digital VAX";
1788 case EM_AVR
: return "Atmel AVR 8-bit microcontroller";
1789 case EM_CRIS
: return "Axis Communications 32-bit embedded processor";
1790 case EM_JAVELIN
: return "Infineon Technologies 32-bit embedded cpu";
1791 case EM_FIREPATH
: return "Element 14 64-bit DSP processor";
1792 case EM_ZSP
: return "LSI Logic's 16-bit DSP processor";
1793 case EM_MMIX
: return "Donald Knuth's educational 64-bit processor";
1794 case EM_HUANY
: return "Harvard Universitys's machine-independent object format";
1795 case EM_PRISM
: return "Vitesse Prism";
1796 case EM_X86_64
: return "Advanced Micro Devices X86-64";
1798 case EM_S390
: return "IBM S/390";
1799 case EM_SCORE
: return "SUNPLUS S+Core";
1800 case EM_XSTORMY16
: return "Sanyo Xstormy16 CPU core";
1802 case EM_OR32
: return "OpenRISC";
1803 case EM_CRX
: return "National Semiconductor CRX microprocessor";
1804 case EM_DLX
: return "OpenDLX";
1806 case EM_IP2K
: return "Ubicom IP2xxx 8-bit microcontrollers";
1807 case EM_IQ2000
: return "Vitesse IQ2000";
1809 case EM_XTENSA
: return "Tensilica Xtensa Processor";
1810 case EM_M32C
: return "Renesas M32c";
1811 case EM_MT
: return "Morpho Techologies MT processor";
1812 case EM_BLACKFIN
: return "Analog Devices Blackfin";
1813 case EM_NIOS32
: return "Altera Nios";
1814 case EM_ALTERA_NIOS2
: return "Altera Nios II";
1815 case EM_XC16X
: return "Infineon Technologies xc16x";
1816 case EM_CYGNUS_MEP
: return "Toshiba MeP Media Engine";
1817 case EM_CR16
: return "National Semiconductor's CR16";
1819 snprintf (buff
, sizeof (buff
), _("<unknown>: 0x%x"), e_machine
);
1825 decode_ARM_machine_flags (unsigned e_flags
, char buf
[])
1830 eabi
= EF_ARM_EABI_VERSION (e_flags
);
1831 e_flags
&= ~ EF_ARM_EABIMASK
;
1833 /* Handle "generic" ARM flags. */
1834 if (e_flags
& EF_ARM_RELEXEC
)
1836 strcat (buf
, ", relocatable executable");
1837 e_flags
&= ~ EF_ARM_RELEXEC
;
1840 if (e_flags
& EF_ARM_HASENTRY
)
1842 strcat (buf
, ", has entry point");
1843 e_flags
&= ~ EF_ARM_HASENTRY
;
1846 /* Now handle EABI specific flags. */
1850 strcat (buf
, ", <unrecognized EABI>");
1855 case EF_ARM_EABI_VER1
:
1856 strcat (buf
, ", Version1 EABI");
1861 /* Process flags one bit at a time. */
1862 flag
= e_flags
& - e_flags
;
1867 case EF_ARM_SYMSARESORTED
: /* Conflicts with EF_ARM_INTERWORK. */
1868 strcat (buf
, ", sorted symbol tables");
1878 case EF_ARM_EABI_VER2
:
1879 strcat (buf
, ", Version2 EABI");
1884 /* Process flags one bit at a time. */
1885 flag
= e_flags
& - e_flags
;
1890 case EF_ARM_SYMSARESORTED
: /* Conflicts with EF_ARM_INTERWORK. */
1891 strcat (buf
, ", sorted symbol tables");
1894 case EF_ARM_DYNSYMSUSESEGIDX
:
1895 strcat (buf
, ", dynamic symbols use segment index");
1898 case EF_ARM_MAPSYMSFIRST
:
1899 strcat (buf
, ", mapping symbols precede others");
1909 case EF_ARM_EABI_VER3
:
1910 strcat (buf
, ", Version3 EABI");
1913 case EF_ARM_EABI_VER4
:
1914 strcat (buf
, ", Version4 EABI");
1917 case EF_ARM_EABI_VER5
:
1918 strcat (buf
, ", Version5 EABI");
1924 /* Process flags one bit at a time. */
1925 flag
= e_flags
& - e_flags
;
1931 strcat (buf
, ", BE8");
1935 strcat (buf
, ", LE8");
1945 case EF_ARM_EABI_UNKNOWN
:
1946 strcat (buf
, ", GNU EABI");
1951 /* Process flags one bit at a time. */
1952 flag
= e_flags
& - e_flags
;
1957 case EF_ARM_INTERWORK
:
1958 strcat (buf
, ", interworking enabled");
1961 case EF_ARM_APCS_26
:
1962 strcat (buf
, ", uses APCS/26");
1965 case EF_ARM_APCS_FLOAT
:
1966 strcat (buf
, ", uses APCS/float");
1970 strcat (buf
, ", position independent");
1974 strcat (buf
, ", 8 bit structure alignment");
1977 case EF_ARM_NEW_ABI
:
1978 strcat (buf
, ", uses new ABI");
1981 case EF_ARM_OLD_ABI
:
1982 strcat (buf
, ", uses old ABI");
1985 case EF_ARM_SOFT_FLOAT
:
1986 strcat (buf
, ", software FP");
1989 case EF_ARM_VFP_FLOAT
:
1990 strcat (buf
, ", VFP");
1993 case EF_ARM_MAVERICK_FLOAT
:
1994 strcat (buf
, ", Maverick FP");
2005 strcat (buf
,", <unknown>");
2009 get_machine_flags (unsigned e_flags
, unsigned e_machine
)
2011 static char buf
[1024];
2023 decode_ARM_machine_flags (e_flags
, buf
);
2027 switch (e_flags
& EF_FRV_CPU_MASK
)
2029 case EF_FRV_CPU_GENERIC
:
2033 strcat (buf
, ", fr???");
2036 case EF_FRV_CPU_FR300
:
2037 strcat (buf
, ", fr300");
2040 case EF_FRV_CPU_FR400
:
2041 strcat (buf
, ", fr400");
2043 case EF_FRV_CPU_FR405
:
2044 strcat (buf
, ", fr405");
2047 case EF_FRV_CPU_FR450
:
2048 strcat (buf
, ", fr450");
2051 case EF_FRV_CPU_FR500
:
2052 strcat (buf
, ", fr500");
2054 case EF_FRV_CPU_FR550
:
2055 strcat (buf
, ", fr550");
2058 case EF_FRV_CPU_SIMPLE
:
2059 strcat (buf
, ", simple");
2061 case EF_FRV_CPU_TOMCAT
:
2062 strcat (buf
, ", tomcat");
2068 if ((e_flags
& EF_M68K_ARCH_MASK
) == EF_M68K_M68000
)
2069 strcat (buf
, ", m68000");
2070 else if ((e_flags
& EF_M68K_ARCH_MASK
) == EF_M68K_CPU32
)
2071 strcat (buf
, ", cpu32");
2072 else if ((e_flags
& EF_M68K_ARCH_MASK
) == EF_M68K_FIDO
)
2073 strcat (buf
, ", fido_a");
2076 char const *isa
= _("unknown");
2077 char const *mac
= _("unknown mac");
2078 char const *additional
= NULL
;
2080 switch (e_flags
& EF_M68K_CF_ISA_MASK
)
2082 case EF_M68K_CF_ISA_A_NODIV
:
2084 additional
= ", nodiv";
2086 case EF_M68K_CF_ISA_A
:
2089 case EF_M68K_CF_ISA_A_PLUS
:
2092 case EF_M68K_CF_ISA_B_NOUSP
:
2094 additional
= ", nousp";
2096 case EF_M68K_CF_ISA_B
:
2100 strcat (buf
, ", cf, isa ");
2103 strcat (buf
, additional
);
2104 if (e_flags
& EF_M68K_CF_FLOAT
)
2105 strcat (buf
, ", float");
2106 switch (e_flags
& EF_M68K_CF_MAC_MASK
)
2111 case EF_M68K_CF_MAC
:
2114 case EF_M68K_CF_EMAC
:
2127 if (e_flags
& EF_PPC_EMB
)
2128 strcat (buf
, ", emb");
2130 if (e_flags
& EF_PPC_RELOCATABLE
)
2131 strcat (buf
, ", relocatable");
2133 if (e_flags
& EF_PPC_RELOCATABLE_LIB
)
2134 strcat (buf
, ", relocatable-lib");
2138 case EM_CYGNUS_V850
:
2139 switch (e_flags
& EF_V850_ARCH
)
2142 strcat (buf
, ", v850e1");
2145 strcat (buf
, ", v850e");
2148 strcat (buf
, ", v850");
2151 strcat (buf
, ", unknown v850 architecture variant");
2157 case EM_CYGNUS_M32R
:
2158 if ((e_flags
& EF_M32R_ARCH
) == E_M32R_ARCH
)
2159 strcat (buf
, ", m32r");
2163 case EM_MIPS_RS3_LE
:
2164 if (e_flags
& EF_MIPS_NOREORDER
)
2165 strcat (buf
, ", noreorder");
2167 if (e_flags
& EF_MIPS_PIC
)
2168 strcat (buf
, ", pic");
2170 if (e_flags
& EF_MIPS_CPIC
)
2171 strcat (buf
, ", cpic");
2173 if (e_flags
& EF_MIPS_UCODE
)
2174 strcat (buf
, ", ugen_reserved");
2176 if (e_flags
& EF_MIPS_ABI2
)
2177 strcat (buf
, ", abi2");
2179 if (e_flags
& EF_MIPS_OPTIONS_FIRST
)
2180 strcat (buf
, ", odk first");
2182 if (e_flags
& EF_MIPS_32BITMODE
)
2183 strcat (buf
, ", 32bitmode");
2185 switch ((e_flags
& EF_MIPS_MACH
))
2187 case E_MIPS_MACH_3900
: strcat (buf
, ", 3900"); break;
2188 case E_MIPS_MACH_4010
: strcat (buf
, ", 4010"); break;
2189 case E_MIPS_MACH_4100
: strcat (buf
, ", 4100"); break;
2190 case E_MIPS_MACH_4111
: strcat (buf
, ", 4111"); break;
2191 case E_MIPS_MACH_4120
: strcat (buf
, ", 4120"); break;
2192 case E_MIPS_MACH_4650
: strcat (buf
, ", 4650"); break;
2193 case E_MIPS_MACH_5400
: strcat (buf
, ", 5400"); break;
2194 case E_MIPS_MACH_5500
: strcat (buf
, ", 5500"); break;
2195 case E_MIPS_MACH_SB1
: strcat (buf
, ", sb1"); break;
2196 case E_MIPS_MACH_9000
: strcat (buf
, ", 9000"); break;
2197 case E_MIPS_MACH_LS2E
: strcat (buf
, ", loongson-2e"); break;
2198 case E_MIPS_MACH_LS2F
: strcat (buf
, ", loongson-2f"); break;
2200 /* We simply ignore the field in this case to avoid confusion:
2201 MIPS ELF does not specify EF_MIPS_MACH, it is a GNU
2204 default: strcat (buf
, ", unknown CPU"); break;
2207 switch ((e_flags
& EF_MIPS_ABI
))
2209 case E_MIPS_ABI_O32
: strcat (buf
, ", o32"); break;
2210 case E_MIPS_ABI_O64
: strcat (buf
, ", o64"); break;
2211 case E_MIPS_ABI_EABI32
: strcat (buf
, ", eabi32"); break;
2212 case E_MIPS_ABI_EABI64
: strcat (buf
, ", eabi64"); break;
2214 /* We simply ignore the field in this case to avoid confusion:
2215 MIPS ELF does not specify EF_MIPS_ABI, it is a GNU extension.
2216 This means it is likely to be an o32 file, but not for
2219 default: strcat (buf
, ", unknown ABI"); break;
2222 if (e_flags
& EF_MIPS_ARCH_ASE_MDMX
)
2223 strcat (buf
, ", mdmx");
2225 if (e_flags
& EF_MIPS_ARCH_ASE_M16
)
2226 strcat (buf
, ", mips16");
2228 switch ((e_flags
& EF_MIPS_ARCH
))
2230 case E_MIPS_ARCH_1
: strcat (buf
, ", mips1"); break;
2231 case E_MIPS_ARCH_2
: strcat (buf
, ", mips2"); break;
2232 case E_MIPS_ARCH_3
: strcat (buf
, ", mips3"); break;
2233 case E_MIPS_ARCH_4
: strcat (buf
, ", mips4"); break;
2234 case E_MIPS_ARCH_5
: strcat (buf
, ", mips5"); break;
2235 case E_MIPS_ARCH_32
: strcat (buf
, ", mips32"); break;
2236 case E_MIPS_ARCH_32R2
: strcat (buf
, ", mips32r2"); break;
2237 case E_MIPS_ARCH_64
: strcat (buf
, ", mips64"); break;
2238 case E_MIPS_ARCH_64R2
: strcat (buf
, ", mips64r2"); break;
2239 default: strcat (buf
, ", unknown ISA"); break;
2245 switch ((e_flags
& EF_SH_MACH_MASK
))
2247 case EF_SH1
: strcat (buf
, ", sh1"); break;
2248 case EF_SH2
: strcat (buf
, ", sh2"); break;
2249 case EF_SH3
: strcat (buf
, ", sh3"); break;
2250 case EF_SH_DSP
: strcat (buf
, ", sh-dsp"); break;
2251 case EF_SH3_DSP
: strcat (buf
, ", sh3-dsp"); break;
2252 case EF_SH4AL_DSP
: strcat (buf
, ", sh4al-dsp"); break;
2253 case EF_SH3E
: strcat (buf
, ", sh3e"); break;
2254 case EF_SH4
: strcat (buf
, ", sh4"); break;
2255 case EF_SH5
: strcat (buf
, ", sh5"); break;
2256 case EF_SH2E
: strcat (buf
, ", sh2e"); break;
2257 case EF_SH4A
: strcat (buf
, ", sh4a"); break;
2258 case EF_SH2A
: strcat (buf
, ", sh2a"); break;
2259 case EF_SH4_NOFPU
: strcat (buf
, ", sh4-nofpu"); break;
2260 case EF_SH4A_NOFPU
: strcat (buf
, ", sh4a-nofpu"); break;
2261 case EF_SH2A_NOFPU
: strcat (buf
, ", sh2a-nofpu"); break;
2262 case EF_SH3_NOMMU
: strcat (buf
, ", sh3-nommu"); break;
2263 case EF_SH4_NOMMU_NOFPU
: strcat (buf
, ", sh4-nommu-nofpu"); break;
2264 case EF_SH2A_SH4_NOFPU
: strcat (buf
, ", sh2a-nofpu-or-sh4-nommu-nofpu"); break;
2265 case EF_SH2A_SH3_NOFPU
: strcat (buf
, ", sh2a-nofpu-or-sh3-nommu"); break;
2266 case EF_SH2A_SH4
: strcat (buf
, ", sh2a-or-sh4"); break;
2267 case EF_SH2A_SH3E
: strcat (buf
, ", sh2a-or-sh3e"); break;
2268 default: strcat (buf
, ", unknown ISA"); break;
2274 if (e_flags
& EF_SPARC_32PLUS
)
2275 strcat (buf
, ", v8+");
2277 if (e_flags
& EF_SPARC_SUN_US1
)
2278 strcat (buf
, ", ultrasparcI");
2280 if (e_flags
& EF_SPARC_SUN_US3
)
2281 strcat (buf
, ", ultrasparcIII");
2283 if (e_flags
& EF_SPARC_HAL_R1
)
2284 strcat (buf
, ", halr1");
2286 if (e_flags
& EF_SPARC_LEDATA
)
2287 strcat (buf
, ", ledata");
2289 if ((e_flags
& EF_SPARCV9_MM
) == EF_SPARCV9_TSO
)
2290 strcat (buf
, ", tso");
2292 if ((e_flags
& EF_SPARCV9_MM
) == EF_SPARCV9_PSO
)
2293 strcat (buf
, ", pso");
2295 if ((e_flags
& EF_SPARCV9_MM
) == EF_SPARCV9_RMO
)
2296 strcat (buf
, ", rmo");
2300 switch (e_flags
& EF_PARISC_ARCH
)
2302 case EFA_PARISC_1_0
:
2303 strcpy (buf
, ", PA-RISC 1.0");
2305 case EFA_PARISC_1_1
:
2306 strcpy (buf
, ", PA-RISC 1.1");
2308 case EFA_PARISC_2_0
:
2309 strcpy (buf
, ", PA-RISC 2.0");
2314 if (e_flags
& EF_PARISC_TRAPNIL
)
2315 strcat (buf
, ", trapnil");
2316 if (e_flags
& EF_PARISC_EXT
)
2317 strcat (buf
, ", ext");
2318 if (e_flags
& EF_PARISC_LSB
)
2319 strcat (buf
, ", lsb");
2320 if (e_flags
& EF_PARISC_WIDE
)
2321 strcat (buf
, ", wide");
2322 if (e_flags
& EF_PARISC_NO_KABP
)
2323 strcat (buf
, ", no kabp");
2324 if (e_flags
& EF_PARISC_LAZYSWAP
)
2325 strcat (buf
, ", lazyswap");
2330 if ((e_flags
& EF_PICOJAVA_NEWCALLS
) == EF_PICOJAVA_NEWCALLS
)
2331 strcat (buf
, ", new calling convention");
2333 if ((e_flags
& EF_PICOJAVA_GNUCALLS
) == EF_PICOJAVA_GNUCALLS
)
2334 strcat (buf
, ", gnu calling convention");
2338 if ((e_flags
& EF_IA_64_ABI64
))
2339 strcat (buf
, ", 64-bit");
2341 strcat (buf
, ", 32-bit");
2342 if ((e_flags
& EF_IA_64_REDUCEDFP
))
2343 strcat (buf
, ", reduced fp model");
2344 if ((e_flags
& EF_IA_64_NOFUNCDESC_CONS_GP
))
2345 strcat (buf
, ", no function descriptors, constant gp");
2346 else if ((e_flags
& EF_IA_64_CONS_GP
))
2347 strcat (buf
, ", constant gp");
2348 if ((e_flags
& EF_IA_64_ABSOLUTE
))
2349 strcat (buf
, ", absolute");
2353 if ((e_flags
& EF_VAX_NONPIC
))
2354 strcat (buf
, ", non-PIC");
2355 if ((e_flags
& EF_VAX_DFLOAT
))
2356 strcat (buf
, ", D-Float");
2357 if ((e_flags
& EF_VAX_GFLOAT
))
2358 strcat (buf
, ", G-Float");
2367 get_osabi_name (unsigned int osabi
)
2369 static char buff
[32];
2373 case ELFOSABI_NONE
: return "UNIX - System V";
2374 case ELFOSABI_HPUX
: return "UNIX - HP-UX";
2375 case ELFOSABI_NETBSD
: return "UNIX - NetBSD";
2376 case ELFOSABI_LINUX
: return "UNIX - Linux";
2377 case ELFOSABI_HURD
: return "GNU/Hurd";
2378 case ELFOSABI_SOLARIS
: return "UNIX - Solaris";
2379 case ELFOSABI_AIX
: return "UNIX - AIX";
2380 case ELFOSABI_IRIX
: return "UNIX - IRIX";
2381 case ELFOSABI_FREEBSD
: return "UNIX - FreeBSD";
2382 case ELFOSABI_TRU64
: return "UNIX - TRU64";
2383 case ELFOSABI_MODESTO
: return "Novell - Modesto";
2384 case ELFOSABI_OPENBSD
: return "UNIX - OpenBSD";
2385 case ELFOSABI_OPENVMS
: return "VMS - OpenVMS";
2386 case ELFOSABI_NSK
: return "HP - Non-Stop Kernel";
2387 case ELFOSABI_AROS
: return "Amiga Research OS";
2388 case ELFOSABI_STANDALONE
: return _("Standalone App");
2389 case ELFOSABI_ARM
: return "ARM";
2391 snprintf (buff
, sizeof (buff
), _("<unknown: %x>"), osabi
);
2397 get_arm_segment_type (unsigned long type
)
2411 get_mips_segment_type (unsigned long type
)
2415 case PT_MIPS_REGINFO
:
2417 case PT_MIPS_RTPROC
:
2419 case PT_MIPS_OPTIONS
:
2429 get_parisc_segment_type (unsigned long type
)
2433 case PT_HP_TLS
: return "HP_TLS";
2434 case PT_HP_CORE_NONE
: return "HP_CORE_NONE";
2435 case PT_HP_CORE_VERSION
: return "HP_CORE_VERSION";
2436 case PT_HP_CORE_KERNEL
: return "HP_CORE_KERNEL";
2437 case PT_HP_CORE_COMM
: return "HP_CORE_COMM";
2438 case PT_HP_CORE_PROC
: return "HP_CORE_PROC";
2439 case PT_HP_CORE_LOADABLE
: return "HP_CORE_LOADABLE";
2440 case PT_HP_CORE_STACK
: return "HP_CORE_STACK";
2441 case PT_HP_CORE_SHM
: return "HP_CORE_SHM";
2442 case PT_HP_CORE_MMF
: return "HP_CORE_MMF";
2443 case PT_HP_PARALLEL
: return "HP_PARALLEL";
2444 case PT_HP_FASTBIND
: return "HP_FASTBIND";
2445 case PT_HP_OPT_ANNOT
: return "HP_OPT_ANNOT";
2446 case PT_HP_HSL_ANNOT
: return "HP_HSL_ANNOT";
2447 case PT_HP_STACK
: return "HP_STACK";
2448 case PT_HP_CORE_UTSNAME
: return "HP_CORE_UTSNAME";
2449 case PT_PARISC_ARCHEXT
: return "PARISC_ARCHEXT";
2450 case PT_PARISC_UNWIND
: return "PARISC_UNWIND";
2451 case PT_PARISC_WEAKORDER
: return "PARISC_WEAKORDER";
2460 get_ia64_segment_type (unsigned long type
)
2464 case PT_IA_64_ARCHEXT
: return "IA_64_ARCHEXT";
2465 case PT_IA_64_UNWIND
: return "IA_64_UNWIND";
2466 case PT_HP_TLS
: return "HP_TLS";
2467 case PT_IA_64_HP_OPT_ANOT
: return "HP_OPT_ANNOT";
2468 case PT_IA_64_HP_HSL_ANOT
: return "HP_HSL_ANNOT";
2469 case PT_IA_64_HP_STACK
: return "HP_STACK";
2478 get_segment_type (unsigned long p_type
)
2480 static char buff
[32];
2484 case PT_NULL
: return "NULL";
2485 case PT_LOAD
: return "LOAD";
2486 case PT_DYNAMIC
: return "DYNAMIC";
2487 case PT_INTERP
: return "INTERP";
2488 case PT_NOTE
: return "NOTE";
2489 case PT_SHLIB
: return "SHLIB";
2490 case PT_PHDR
: return "PHDR";
2491 case PT_TLS
: return "TLS";
2493 case PT_GNU_EH_FRAME
:
2494 return "GNU_EH_FRAME";
2495 case PT_GNU_STACK
: return "GNU_STACK";
2496 case PT_GNU_RELRO
: return "GNU_RELRO";
2499 if ((p_type
>= PT_LOPROC
) && (p_type
<= PT_HIPROC
))
2503 switch (elf_header
.e_machine
)
2506 result
= get_arm_segment_type (p_type
);
2509 case EM_MIPS_RS3_LE
:
2510 result
= get_mips_segment_type (p_type
);
2513 result
= get_parisc_segment_type (p_type
);
2516 result
= get_ia64_segment_type (p_type
);
2526 sprintf (buff
, "LOPROC+%lx", p_type
- PT_LOPROC
);
2528 else if ((p_type
>= PT_LOOS
) && (p_type
<= PT_HIOS
))
2532 switch (elf_header
.e_machine
)
2535 result
= get_parisc_segment_type (p_type
);
2538 result
= get_ia64_segment_type (p_type
);
2548 sprintf (buff
, "LOOS+%lx", p_type
- PT_LOOS
);
2551 snprintf (buff
, sizeof (buff
), _("<unknown>: %lx"), p_type
);
2558 get_mips_section_type_name (unsigned int sh_type
)
2562 case SHT_MIPS_LIBLIST
: return "MIPS_LIBLIST";
2563 case SHT_MIPS_MSYM
: return "MIPS_MSYM";
2564 case SHT_MIPS_CONFLICT
: return "MIPS_CONFLICT";
2565 case SHT_MIPS_GPTAB
: return "MIPS_GPTAB";
2566 case SHT_MIPS_UCODE
: return "MIPS_UCODE";
2567 case SHT_MIPS_DEBUG
: return "MIPS_DEBUG";
2568 case SHT_MIPS_REGINFO
: return "MIPS_REGINFO";
2569 case SHT_MIPS_PACKAGE
: return "MIPS_PACKAGE";
2570 case SHT_MIPS_PACKSYM
: return "MIPS_PACKSYM";
2571 case SHT_MIPS_RELD
: return "MIPS_RELD";
2572 case SHT_MIPS_IFACE
: return "MIPS_IFACE";
2573 case SHT_MIPS_CONTENT
: return "MIPS_CONTENT";
2574 case SHT_MIPS_OPTIONS
: return "MIPS_OPTIONS";
2575 case SHT_MIPS_SHDR
: return "MIPS_SHDR";
2576 case SHT_MIPS_FDESC
: return "MIPS_FDESC";
2577 case SHT_MIPS_EXTSYM
: return "MIPS_EXTSYM";
2578 case SHT_MIPS_DENSE
: return "MIPS_DENSE";
2579 case SHT_MIPS_PDESC
: return "MIPS_PDESC";
2580 case SHT_MIPS_LOCSYM
: return "MIPS_LOCSYM";
2581 case SHT_MIPS_AUXSYM
: return "MIPS_AUXSYM";
2582 case SHT_MIPS_OPTSYM
: return "MIPS_OPTSYM";
2583 case SHT_MIPS_LOCSTR
: return "MIPS_LOCSTR";
2584 case SHT_MIPS_LINE
: return "MIPS_LINE";
2585 case SHT_MIPS_RFDESC
: return "MIPS_RFDESC";
2586 case SHT_MIPS_DELTASYM
: return "MIPS_DELTASYM";
2587 case SHT_MIPS_DELTAINST
: return "MIPS_DELTAINST";
2588 case SHT_MIPS_DELTACLASS
: return "MIPS_DELTACLASS";
2589 case SHT_MIPS_DWARF
: return "MIPS_DWARF";
2590 case SHT_MIPS_DELTADECL
: return "MIPS_DELTADECL";
2591 case SHT_MIPS_SYMBOL_LIB
: return "MIPS_SYMBOL_LIB";
2592 case SHT_MIPS_EVENTS
: return "MIPS_EVENTS";
2593 case SHT_MIPS_TRANSLATE
: return "MIPS_TRANSLATE";
2594 case SHT_MIPS_PIXIE
: return "MIPS_PIXIE";
2595 case SHT_MIPS_XLATE
: return "MIPS_XLATE";
2596 case SHT_MIPS_XLATE_DEBUG
: return "MIPS_XLATE_DEBUG";
2597 case SHT_MIPS_WHIRL
: return "MIPS_WHIRL";
2598 case SHT_MIPS_EH_REGION
: return "MIPS_EH_REGION";
2599 case SHT_MIPS_XLATE_OLD
: return "MIPS_XLATE_OLD";
2600 case SHT_MIPS_PDR_EXCEPTION
: return "MIPS_PDR_EXCEPTION";
2608 get_parisc_section_type_name (unsigned int sh_type
)
2612 case SHT_PARISC_EXT
: return "PARISC_EXT";
2613 case SHT_PARISC_UNWIND
: return "PARISC_UNWIND";
2614 case SHT_PARISC_DOC
: return "PARISC_DOC";
2615 case SHT_PARISC_ANNOT
: return "PARISC_ANNOT";
2616 case SHT_PARISC_SYMEXTN
: return "PARISC_SYMEXTN";
2617 case SHT_PARISC_STUBS
: return "PARISC_STUBS";
2618 case SHT_PARISC_DLKM
: return "PARISC_DLKM";
2626 get_ia64_section_type_name (unsigned int sh_type
)
2628 /* If the top 8 bits are 0x78 the next 8 are the os/abi ID. */
2629 if ((sh_type
& 0xFF000000) == SHT_IA_64_LOPSREG
)
2630 return get_osabi_name ((sh_type
& 0x00FF0000) >> 16);
2634 case SHT_IA_64_EXT
: return "IA_64_EXT";
2635 case SHT_IA_64_UNWIND
: return "IA_64_UNWIND";
2636 case SHT_IA_64_PRIORITY_INIT
: return "IA_64_PRIORITY_INIT";
2644 get_x86_64_section_type_name (unsigned int sh_type
)
2648 case SHT_X86_64_UNWIND
: return "X86_64_UNWIND";
2656 get_arm_section_type_name (unsigned int sh_type
)
2662 case SHT_ARM_PREEMPTMAP
:
2663 return "ARM_PREEMPTMAP";
2664 case SHT_ARM_ATTRIBUTES
:
2665 return "ARM_ATTRIBUTES";
2673 get_section_type_name (unsigned int sh_type
)
2675 static char buff
[32];
2679 case SHT_NULL
: return "NULL";
2680 case SHT_PROGBITS
: return "PROGBITS";
2681 case SHT_SYMTAB
: return "SYMTAB";
2682 case SHT_STRTAB
: return "STRTAB";
2683 case SHT_RELA
: return "RELA";
2684 case SHT_HASH
: return "HASH";
2685 case SHT_DYNAMIC
: return "DYNAMIC";
2686 case SHT_NOTE
: return "NOTE";
2687 case SHT_NOBITS
: return "NOBITS";
2688 case SHT_REL
: return "REL";
2689 case SHT_SHLIB
: return "SHLIB";
2690 case SHT_DYNSYM
: return "DYNSYM";
2691 case SHT_INIT_ARRAY
: return "INIT_ARRAY";
2692 case SHT_FINI_ARRAY
: return "FINI_ARRAY";
2693 case SHT_PREINIT_ARRAY
: return "PREINIT_ARRAY";
2694 case SHT_GNU_HASH
: return "GNU_HASH";
2695 case SHT_GROUP
: return "GROUP";
2696 case SHT_SYMTAB_SHNDX
: return "SYMTAB SECTION INDICIES";
2697 case SHT_GNU_verdef
: return "VERDEF";
2698 case SHT_GNU_verneed
: return "VERNEED";
2699 case SHT_GNU_versym
: return "VERSYM";
2700 case 0x6ffffff0: return "VERSYM";
2701 case 0x6ffffffc: return "VERDEF";
2702 case 0x7ffffffd: return "AUXILIARY";
2703 case 0x7fffffff: return "FILTER";
2704 case SHT_GNU_LIBLIST
: return "GNU_LIBLIST";
2707 if ((sh_type
>= SHT_LOPROC
) && (sh_type
<= SHT_HIPROC
))
2711 switch (elf_header
.e_machine
)
2714 case EM_MIPS_RS3_LE
:
2715 result
= get_mips_section_type_name (sh_type
);
2718 result
= get_parisc_section_type_name (sh_type
);
2721 result
= get_ia64_section_type_name (sh_type
);
2724 result
= get_x86_64_section_type_name (sh_type
);
2727 result
= get_arm_section_type_name (sh_type
);
2737 sprintf (buff
, "LOPROC+%x", sh_type
- SHT_LOPROC
);
2739 else if ((sh_type
>= SHT_LOOS
) && (sh_type
<= SHT_HIOS
))
2740 sprintf (buff
, "LOOS+%x", sh_type
- SHT_LOOS
);
2741 else if ((sh_type
>= SHT_LOUSER
) && (sh_type
<= SHT_HIUSER
))
2742 sprintf (buff
, "LOUSER+%x", sh_type
- SHT_LOUSER
);
2744 snprintf (buff
, sizeof (buff
), _("<unknown>: %x"), sh_type
);
2750 #define OPTION_DEBUG_DUMP 512
2752 static struct option options
[] =
2754 {"all", no_argument
, 0, 'a'},
2755 {"file-header", no_argument
, 0, 'h'},
2756 {"program-headers", no_argument
, 0, 'l'},
2757 {"headers", no_argument
, 0, 'e'},
2758 {"histogram", no_argument
, 0, 'I'},
2759 {"segments", no_argument
, 0, 'l'},
2760 {"sections", no_argument
, 0, 'S'},
2761 {"section-headers", no_argument
, 0, 'S'},
2762 {"section-groups", no_argument
, 0, 'g'},
2763 {"section-details", no_argument
, 0, 't'},
2764 {"full-section-name",no_argument
, 0, 'N'},
2765 {"symbols", no_argument
, 0, 's'},
2766 {"syms", no_argument
, 0, 's'},
2767 {"relocs", no_argument
, 0, 'r'},
2768 {"notes", no_argument
, 0, 'n'},
2769 {"dynamic", no_argument
, 0, 'd'},
2770 {"arch-specific", no_argument
, 0, 'A'},
2771 {"version-info", no_argument
, 0, 'V'},
2772 {"use-dynamic", no_argument
, 0, 'D'},
2773 {"unwind", no_argument
, 0, 'u'},
2774 {"archive-index", no_argument
, 0, 'c'},
2775 {"hex-dump", required_argument
, 0, 'x'},
2776 {"debug-dump", optional_argument
, 0, OPTION_DEBUG_DUMP
},
2777 {"string-dump", required_argument
, 0, 'p'},
2778 #ifdef SUPPORT_DISASSEMBLY
2779 {"instruction-dump", required_argument
, 0, 'i'},
2782 {"version", no_argument
, 0, 'v'},
2783 {"wide", no_argument
, 0, 'W'},
2784 {"help", no_argument
, 0, 'H'},
2785 {0, no_argument
, 0, 0}
2789 usage (FILE *stream
)
2791 fprintf (stream
, _("Usage: readelf <option(s)> elf-file(s)\n"));
2792 fprintf (stream
, _(" Display information about the contents of ELF format files\n"));
2793 fprintf (stream
, _(" Options are:\n\
2794 -a --all Equivalent to: -h -l -S -s -r -d -V -A -I\n\
2795 -h --file-header Display the ELF file header\n\
2796 -l --program-headers Display the program headers\n\
2797 --segments An alias for --program-headers\n\
2798 -S --section-headers Display the sections' header\n\
2799 --sections An alias for --section-headers\n\
2800 -g --section-groups Display the section groups\n\
2801 -t --section-details Display the section details\n\
2802 -e --headers Equivalent to: -h -l -S\n\
2803 -s --syms Display the symbol table\n\
2804 --symbols An alias for --syms\n\
2805 -n --notes Display the core notes (if present)\n\
2806 -r --relocs Display the relocations (if present)\n\
2807 -u --unwind Display the unwind info (if present)\n\
2808 -d --dynamic Display the dynamic section (if present)\n\
2809 -V --version-info Display the version sections (if present)\n\
2810 -A --arch-specific Display architecture specific information (if any).\n\
2811 -c --archive-index Display the symbol/file index in an archive\n\
2812 -D --use-dynamic Use the dynamic section info when displaying symbols\n\
2813 -x --hex-dump=<number|name>\n\
2814 Dump the contents of section <number|name> as bytes\n\
2815 -p --string-dump=<number|name>\n\
2816 Dump the contents of section <number|name> as strings\n\
2817 -w[liaprmfFsoR] or\n\
2818 --debug-dump[=line,=info,=abbrev,=pubnames,=aranges,=macro,=frames,=str,=loc,=Ranges]\n\
2819 Display the contents of DWARF2 debug sections\n"));
2820 #ifdef SUPPORT_DISASSEMBLY
2821 fprintf (stream
, _("\
2822 -i --instruction-dump=<number|name>\n\
2823 Disassemble the contents of section <number|name>\n"));
2825 fprintf (stream
, _("\
2826 -I --histogram Display histogram of bucket list lengths\n\
2827 -W --wide Allow output width to exceed 80 characters\n\
2828 @<file> Read options from <file>\n\
2829 -H --help Display this information\n\
2830 -v --version Display the version number of readelf\n"));
2832 if (REPORT_BUGS_TO
[0] && stream
== stdout
)
2833 fprintf (stdout
, _("Report bugs to %s\n"), REPORT_BUGS_TO
);
2835 exit (stream
== stdout
? 0 : 1);
2838 /* Record the fact that the user wants the contents of section number
2839 SECTION to be displayed using the method(s) encoded as flags bits
2840 in TYPE. Note, TYPE can be zero if we are creating the array for
2844 request_dump_bynumber (unsigned int section
, dump_type type
)
2846 if (section
>= num_dump_sects
)
2848 dump_type
*new_dump_sects
;
2850 new_dump_sects
= calloc (section
+ 1, sizeof (* dump_sects
));
2852 if (new_dump_sects
== NULL
)
2853 error (_("Out of memory allocating dump request table.\n"));
2856 /* Copy current flag settings. */
2857 memcpy (new_dump_sects
, dump_sects
, num_dump_sects
* sizeof (* dump_sects
));
2861 dump_sects
= new_dump_sects
;
2862 num_dump_sects
= section
+ 1;
2867 dump_sects
[section
] |= type
;
2872 /* Request a dump by section name. */
2875 request_dump_byname (const char *section
, dump_type type
)
2877 struct dump_list_entry
*new_request
;
2879 new_request
= malloc (sizeof (struct dump_list_entry
));
2881 error (_("Out of memory allocating dump request table.\n"));
2883 new_request
->name
= strdup (section
);
2884 if (!new_request
->name
)
2885 error (_("Out of memory allocating dump request table.\n"));
2887 new_request
->type
= type
;
2889 new_request
->next
= dump_sects_byname
;
2890 dump_sects_byname
= new_request
;
2894 parse_args (int argc
, char **argv
)
2901 while ((c
= getopt_long
2902 (argc
, argv
, "ADHINSVWacdeghi:lnp:rstuvw::x:", options
, NULL
)) != EOF
)
2923 do_section_groups
++;
2931 do_section_groups
++;
2936 do_section_details
++;
2981 section
= strtoul (optarg
, & cp
, 0);
2982 if (! *cp
&& section
>= 0)
2983 request_dump_bynumber (section
, HEX_DUMP
);
2985 request_dump_byname (optarg
, HEX_DUMP
);
2989 section
= strtoul (optarg
, & cp
, 0);
2990 if (! *cp
&& section
>= 0)
2991 request_dump_bynumber (section
, STRING_DUMP
);
2993 request_dump_byname (optarg
, STRING_DUMP
);
3001 unsigned int index
= 0;
3005 while (optarg
[index
])
3006 switch (optarg
[index
++])
3015 do_debug_abbrevs
= 1;
3025 do_debug_pubnames
= 1;
3029 do_debug_aranges
= 1;
3033 do_debug_ranges
= 1;
3037 do_debug_frames_interp
= 1;
3039 do_debug_frames
= 1;
3044 do_debug_macinfo
= 1;
3058 warn (_("Unrecognized debug option '%s'\n"), optarg
);
3063 case OPTION_DEBUG_DUMP
:
3071 const char * option
;
3074 debug_dump_long_opts
;
3076 debug_dump_long_opts opts_table
[] =
3078 /* Please keep this table alpha- sorted. */
3079 { "Ranges", & do_debug_ranges
},
3080 { "abbrev", & do_debug_abbrevs
},
3081 { "aranges", & do_debug_aranges
},
3082 { "frames", & do_debug_frames
},
3083 { "frames-interp", & do_debug_frames_interp
},
3084 { "info", & do_debug_info
},
3085 { "line", & do_debug_lines
},
3086 { "loc", & do_debug_loc
},
3087 { "macro", & do_debug_macinfo
},
3088 { "pubnames", & do_debug_pubnames
},
3089 /* This entry is for compatability
3090 with earlier versions of readelf. */
3091 { "ranges", & do_debug_aranges
},
3092 { "str", & do_debug_str
},
3103 debug_dump_long_opts
* entry
;
3105 for (entry
= opts_table
; entry
->option
; entry
++)
3107 size_t len
= strlen (entry
->option
);
3109 if (strneq (p
, entry
->option
, len
)
3110 && (p
[len
] == ',' || p
[len
] == '\0'))
3112 * entry
->variable
= 1;
3114 /* The --debug-dump=frames-interp option also
3115 enables the --debug-dump=frames option. */
3116 if (do_debug_frames_interp
)
3117 do_debug_frames
= 1;
3124 if (entry
->option
== NULL
)
3126 warn (_("Unrecognized debug option '%s'\n"), p
);
3127 p
= strchr (p
, ',');
3137 #ifdef SUPPORT_DISASSEMBLY
3140 section
= strtoul (optarg
, & cp
, 0);
3141 if (! *cp
&& section
>= 0)
3142 request_dump_bynumber (section
, DISASS_DUMP
);
3144 request_dump_byname (optarg
, DISASS_DUMP
);
3147 print_version (program_name
);
3156 /* xgettext:c-format */
3157 error (_("Invalid option '-%c'\n"), c
);
3164 if (!do_dynamic
&& !do_syms
&& !do_reloc
&& !do_unwind
&& !do_sections
3165 && !do_segments
&& !do_header
&& !do_dump
&& !do_version
3166 && !do_histogram
&& !do_debugging
&& !do_arch
&& !do_notes
3167 && !do_section_groups
&& !do_archive_index
)
3171 warn (_("Nothing to do.\n"));
3177 get_elf_class (unsigned int elf_class
)
3179 static char buff
[32];
3183 case ELFCLASSNONE
: return _("none");
3184 case ELFCLASS32
: return "ELF32";
3185 case ELFCLASS64
: return "ELF64";
3187 snprintf (buff
, sizeof (buff
), _("<unknown: %x>"), elf_class
);
3193 get_data_encoding (unsigned int encoding
)
3195 static char buff
[32];
3199 case ELFDATANONE
: return _("none");
3200 case ELFDATA2LSB
: return _("2's complement, little endian");
3201 case ELFDATA2MSB
: return _("2's complement, big endian");
3203 snprintf (buff
, sizeof (buff
), _("<unknown: %x>"), encoding
);
3208 /* Decode the data held in 'elf_header'. */
3211 process_file_header (void)
3213 if ( elf_header
.e_ident
[EI_MAG0
] != ELFMAG0
3214 || elf_header
.e_ident
[EI_MAG1
] != ELFMAG1
3215 || elf_header
.e_ident
[EI_MAG2
] != ELFMAG2
3216 || elf_header
.e_ident
[EI_MAG3
] != ELFMAG3
)
3219 (_("Not an ELF file - it has the wrong magic bytes at the start\n"));
3227 printf (_("ELF Header:\n"));
3228 printf (_(" Magic: "));
3229 for (i
= 0; i
< EI_NIDENT
; i
++)
3230 printf ("%2.2x ", elf_header
.e_ident
[i
]);
3232 printf (_(" Class: %s\n"),
3233 get_elf_class (elf_header
.e_ident
[EI_CLASS
]));
3234 printf (_(" Data: %s\n"),
3235 get_data_encoding (elf_header
.e_ident
[EI_DATA
]));
3236 printf (_(" Version: %d %s\n"),
3237 elf_header
.e_ident
[EI_VERSION
],
3238 (elf_header
.e_ident
[EI_VERSION
] == EV_CURRENT
3240 : (elf_header
.e_ident
[EI_VERSION
] != EV_NONE
3243 printf (_(" OS/ABI: %s\n"),
3244 get_osabi_name (elf_header
.e_ident
[EI_OSABI
]));
3245 printf (_(" ABI Version: %d\n"),
3246 elf_header
.e_ident
[EI_ABIVERSION
]);
3247 printf (_(" Type: %s\n"),
3248 get_file_type (elf_header
.e_type
));
3249 printf (_(" Machine: %s\n"),
3250 get_machine_name (elf_header
.e_machine
));
3251 printf (_(" Version: 0x%lx\n"),
3252 (unsigned long) elf_header
.e_version
);
3254 printf (_(" Entry point address: "));
3255 print_vma ((bfd_vma
) elf_header
.e_entry
, PREFIX_HEX
);
3256 printf (_("\n Start of program headers: "));
3257 print_vma ((bfd_vma
) elf_header
.e_phoff
, DEC
);
3258 printf (_(" (bytes into file)\n Start of section headers: "));
3259 print_vma ((bfd_vma
) elf_header
.e_shoff
, DEC
);
3260 printf (_(" (bytes into file)\n"));
3262 printf (_(" Flags: 0x%lx%s\n"),
3263 (unsigned long) elf_header
.e_flags
,
3264 get_machine_flags (elf_header
.e_flags
, elf_header
.e_machine
));
3265 printf (_(" Size of this header: %ld (bytes)\n"),
3266 (long) elf_header
.e_ehsize
);
3267 printf (_(" Size of program headers: %ld (bytes)\n"),
3268 (long) elf_header
.e_phentsize
);
3269 printf (_(" Number of program headers: %ld\n"),
3270 (long) elf_header
.e_phnum
);
3271 printf (_(" Size of section headers: %ld (bytes)\n"),
3272 (long) elf_header
.e_shentsize
);
3273 printf (_(" Number of section headers: %ld"),
3274 (long) elf_header
.e_shnum
);
3275 if (section_headers
!= NULL
&& elf_header
.e_shnum
== 0)
3276 printf (" (%ld)", (long) section_headers
[0].sh_size
);
3277 putc ('\n', stdout
);
3278 printf (_(" Section header string table index: %ld"),
3279 (long) elf_header
.e_shstrndx
);
3280 if (section_headers
!= NULL
&& elf_header
.e_shstrndx
== SHN_XINDEX
)
3281 printf (" (%ld)", (long) section_headers
[0].sh_link
);
3282 else if (elf_header
.e_shstrndx
!= SHN_UNDEF
3283 && (elf_header
.e_shstrndx
>= elf_header
.e_shnum
3284 || (elf_header
.e_shstrndx
>= SHN_LORESERVE
3285 && elf_header
.e_shstrndx
<= SHN_HIRESERVE
)))
3286 printf (" <corrupt: out of range>");
3287 putc ('\n', stdout
);
3290 if (section_headers
!= NULL
)
3292 if (elf_header
.e_shnum
== 0)
3293 elf_header
.e_shnum
= section_headers
[0].sh_size
;
3294 if (elf_header
.e_shstrndx
== SHN_XINDEX
)
3295 elf_header
.e_shstrndx
= section_headers
[0].sh_link
;
3296 else if (elf_header
.e_shstrndx
!= SHN_UNDEF
3297 && (elf_header
.e_shstrndx
>= elf_header
.e_shnum
3298 || (elf_header
.e_shstrndx
>= SHN_LORESERVE
3299 && elf_header
.e_shstrndx
<= SHN_HIRESERVE
)))
3300 elf_header
.e_shstrndx
= SHN_UNDEF
;
3301 free (section_headers
);
3302 section_headers
= NULL
;
3310 get_32bit_program_headers (FILE *file
, Elf_Internal_Phdr
*program_headers
)
3312 Elf32_External_Phdr
*phdrs
;
3313 Elf32_External_Phdr
*external
;
3314 Elf_Internal_Phdr
*internal
;
3317 phdrs
= get_data (NULL
, file
, elf_header
.e_phoff
,
3318 elf_header
.e_phentsize
, elf_header
.e_phnum
,
3319 _("program headers"));
3323 for (i
= 0, internal
= program_headers
, external
= phdrs
;
3324 i
< elf_header
.e_phnum
;
3325 i
++, internal
++, external
++)
3327 internal
->p_type
= BYTE_GET (external
->p_type
);
3328 internal
->p_offset
= BYTE_GET (external
->p_offset
);
3329 internal
->p_vaddr
= BYTE_GET (external
->p_vaddr
);
3330 internal
->p_paddr
= BYTE_GET (external
->p_paddr
);
3331 internal
->p_filesz
= BYTE_GET (external
->p_filesz
);
3332 internal
->p_memsz
= BYTE_GET (external
->p_memsz
);
3333 internal
->p_flags
= BYTE_GET (external
->p_flags
);
3334 internal
->p_align
= BYTE_GET (external
->p_align
);
3343 get_64bit_program_headers (FILE *file
, Elf_Internal_Phdr
*program_headers
)
3345 Elf64_External_Phdr
*phdrs
;
3346 Elf64_External_Phdr
*external
;
3347 Elf_Internal_Phdr
*internal
;
3350 phdrs
= get_data (NULL
, file
, elf_header
.e_phoff
,
3351 elf_header
.e_phentsize
, elf_header
.e_phnum
,
3352 _("program headers"));
3356 for (i
= 0, internal
= program_headers
, external
= phdrs
;
3357 i
< elf_header
.e_phnum
;
3358 i
++, internal
++, external
++)
3360 internal
->p_type
= BYTE_GET (external
->p_type
);
3361 internal
->p_flags
= BYTE_GET (external
->p_flags
);
3362 internal
->p_offset
= BYTE_GET (external
->p_offset
);
3363 internal
->p_vaddr
= BYTE_GET (external
->p_vaddr
);
3364 internal
->p_paddr
= BYTE_GET (external
->p_paddr
);
3365 internal
->p_filesz
= BYTE_GET (external
->p_filesz
);
3366 internal
->p_memsz
= BYTE_GET (external
->p_memsz
);
3367 internal
->p_align
= BYTE_GET (external
->p_align
);
3375 /* Returns 1 if the program headers were read into `program_headers'. */
3378 get_program_headers (FILE *file
)
3380 Elf_Internal_Phdr
*phdrs
;
3382 /* Check cache of prior read. */
3383 if (program_headers
!= NULL
)
3386 phdrs
= cmalloc (elf_header
.e_phnum
, sizeof (Elf_Internal_Phdr
));
3390 error (_("Out of memory\n"));
3395 ? get_32bit_program_headers (file
, phdrs
)
3396 : get_64bit_program_headers (file
, phdrs
))
3398 program_headers
= phdrs
;
3406 /* Returns 1 if the program headers were loaded. */
3409 process_program_headers (FILE *file
)
3411 Elf_Internal_Phdr
*segment
;
3414 if (elf_header
.e_phnum
== 0)
3417 printf (_("\nThere are no program headers in this file.\n"));
3421 if (do_segments
&& !do_header
)
3423 printf (_("\nElf file type is %s\n"), get_file_type (elf_header
.e_type
));
3424 printf (_("Entry point "));
3425 print_vma ((bfd_vma
) elf_header
.e_entry
, PREFIX_HEX
);
3426 printf (_("\nThere are %d program headers, starting at offset "),
3427 elf_header
.e_phnum
);
3428 print_vma ((bfd_vma
) elf_header
.e_phoff
, DEC
);
3432 if (! get_program_headers (file
))
3437 if (elf_header
.e_phnum
> 1)
3438 printf (_("\nProgram Headers:\n"));
3440 printf (_("\nProgram Headers:\n"));
3444 (_(" Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align\n"));
3447 (_(" Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align\n"));
3451 (_(" Type Offset VirtAddr PhysAddr\n"));
3453 (_(" FileSiz MemSiz Flags Align\n"));
3460 for (i
= 0, segment
= program_headers
;
3461 i
< elf_header
.e_phnum
;
3466 printf (" %-14.14s ", get_segment_type (segment
->p_type
));
3470 printf ("0x%6.6lx ", (unsigned long) segment
->p_offset
);
3471 printf ("0x%8.8lx ", (unsigned long) segment
->p_vaddr
);
3472 printf ("0x%8.8lx ", (unsigned long) segment
->p_paddr
);
3473 printf ("0x%5.5lx ", (unsigned long) segment
->p_filesz
);
3474 printf ("0x%5.5lx ", (unsigned long) segment
->p_memsz
);
3476 (segment
->p_flags
& PF_R
? 'R' : ' '),
3477 (segment
->p_flags
& PF_W
? 'W' : ' '),
3478 (segment
->p_flags
& PF_X
? 'E' : ' '));
3479 printf ("%#lx", (unsigned long) segment
->p_align
);
3483 if ((unsigned long) segment
->p_offset
== segment
->p_offset
)
3484 printf ("0x%6.6lx ", (unsigned long) segment
->p_offset
);
3487 print_vma (segment
->p_offset
, FULL_HEX
);
3491 print_vma (segment
->p_vaddr
, FULL_HEX
);
3493 print_vma (segment
->p_paddr
, FULL_HEX
);
3496 if ((unsigned long) segment
->p_filesz
== segment
->p_filesz
)
3497 printf ("0x%6.6lx ", (unsigned long) segment
->p_filesz
);
3500 print_vma (segment
->p_filesz
, FULL_HEX
);
3504 if ((unsigned long) segment
->p_memsz
== segment
->p_memsz
)
3505 printf ("0x%6.6lx", (unsigned long) segment
->p_memsz
);
3508 print_vma (segment
->p_offset
, FULL_HEX
);
3512 (segment
->p_flags
& PF_R
? 'R' : ' '),
3513 (segment
->p_flags
& PF_W
? 'W' : ' '),
3514 (segment
->p_flags
& PF_X
? 'E' : ' '));
3516 if ((unsigned long) segment
->p_align
== segment
->p_align
)
3517 printf ("%#lx", (unsigned long) segment
->p_align
);
3520 print_vma (segment
->p_align
, PREFIX_HEX
);
3525 print_vma (segment
->p_offset
, FULL_HEX
);
3527 print_vma (segment
->p_vaddr
, FULL_HEX
);
3529 print_vma (segment
->p_paddr
, FULL_HEX
);
3531 print_vma (segment
->p_filesz
, FULL_HEX
);
3533 print_vma (segment
->p_memsz
, FULL_HEX
);
3535 (segment
->p_flags
& PF_R
? 'R' : ' '),
3536 (segment
->p_flags
& PF_W
? 'W' : ' '),
3537 (segment
->p_flags
& PF_X
? 'E' : ' '));
3538 print_vma (segment
->p_align
, HEX
);
3542 switch (segment
->p_type
)
3546 error (_("more than one dynamic segment\n"));
3548 /* By default, assume that the .dynamic section is the first
3549 section in the DYNAMIC segment. */
3550 dynamic_addr
= segment
->p_offset
;
3551 dynamic_size
= segment
->p_filesz
;
3553 /* Try to locate the .dynamic section. If there is
3554 a section header table, we can easily locate it. */
3555 if (section_headers
!= NULL
)
3557 Elf_Internal_Shdr
*sec
;
3559 sec
= find_section (".dynamic");
3560 if (sec
== NULL
|| sec
->sh_size
== 0)
3562 error (_("no .dynamic section in the dynamic segment\n"));
3566 if (sec
->sh_type
== SHT_NOBITS
)
3572 dynamic_addr
= sec
->sh_offset
;
3573 dynamic_size
= sec
->sh_size
;
3575 if (dynamic_addr
< segment
->p_offset
3576 || dynamic_addr
> segment
->p_offset
+ segment
->p_filesz
)
3577 warn (_("the .dynamic section is not contained"
3578 " within the dynamic segment\n"));
3579 else if (dynamic_addr
> segment
->p_offset
)
3580 warn (_("the .dynamic section is not the first section"
3581 " in the dynamic segment.\n"));
3586 if (fseek (file
, archive_file_offset
+ (long) segment
->p_offset
,
3588 error (_("Unable to find program interpreter name\n"));
3592 int ret
= snprintf (fmt
, sizeof (fmt
), "%%%ds", PATH_MAX
);
3594 if (ret
>= (int) sizeof (fmt
) || ret
< 0)
3595 error (_("Internal error: failed to create format string to display program interpreter\n"));
3597 program_interpreter
[0] = 0;
3598 if (fscanf (file
, fmt
, program_interpreter
) <= 0)
3599 error (_("Unable to read program interpreter name\n"));
3602 printf (_("\n [Requesting program interpreter: %s]"),
3603 program_interpreter
);
3609 putc ('\n', stdout
);
3612 if (do_segments
&& section_headers
!= NULL
&& string_table
!= NULL
)
3614 printf (_("\n Section to Segment mapping:\n"));
3615 printf (_(" Segment Sections...\n"));
3617 for (i
= 0; i
< elf_header
.e_phnum
; i
++)
3620 Elf_Internal_Shdr
*section
;
3622 segment
= program_headers
+ i
;
3623 section
= section_headers
;
3625 printf (" %2.2d ", i
);
3627 for (j
= 1; j
< elf_header
.e_shnum
; j
++, section
++)
3629 if (ELF_IS_SECTION_IN_SEGMENT_MEMORY(section
, segment
))
3630 printf ("%s ", SECTION_NAME (section
));
3641 /* Find the file offset corresponding to VMA by using the program headers. */
3644 offset_from_vma (FILE *file
, bfd_vma vma
, bfd_size_type size
)
3646 Elf_Internal_Phdr
*seg
;
3648 if (! get_program_headers (file
))
3650 warn (_("Cannot interpret virtual addresses without program headers.\n"));
3654 for (seg
= program_headers
;
3655 seg
< program_headers
+ elf_header
.e_phnum
;
3658 if (seg
->p_type
!= PT_LOAD
)
3661 if (vma
>= (seg
->p_vaddr
& -seg
->p_align
)
3662 && vma
+ size
<= seg
->p_vaddr
+ seg
->p_filesz
)
3663 return vma
- seg
->p_vaddr
+ seg
->p_offset
;
3666 warn (_("Virtual address 0x%lx not located in any PT_LOAD segment.\n"),
3673 get_32bit_section_headers (FILE *file
, unsigned int num
)
3675 Elf32_External_Shdr
*shdrs
;
3676 Elf_Internal_Shdr
*internal
;
3679 shdrs
= get_data (NULL
, file
, elf_header
.e_shoff
,
3680 elf_header
.e_shentsize
, num
, _("section headers"));
3684 section_headers
= cmalloc (num
, sizeof (Elf_Internal_Shdr
));
3686 if (section_headers
== NULL
)
3688 error (_("Out of memory\n"));
3692 for (i
= 0, internal
= section_headers
;
3696 internal
->sh_name
= BYTE_GET (shdrs
[i
].sh_name
);
3697 internal
->sh_type
= BYTE_GET (shdrs
[i
].sh_type
);
3698 internal
->sh_flags
= BYTE_GET (shdrs
[i
].sh_flags
);
3699 internal
->sh_addr
= BYTE_GET (shdrs
[i
].sh_addr
);
3700 internal
->sh_offset
= BYTE_GET (shdrs
[i
].sh_offset
);
3701 internal
->sh_size
= BYTE_GET (shdrs
[i
].sh_size
);
3702 internal
->sh_link
= BYTE_GET (shdrs
[i
].sh_link
);
3703 internal
->sh_info
= BYTE_GET (shdrs
[i
].sh_info
);
3704 internal
->sh_addralign
= BYTE_GET (shdrs
[i
].sh_addralign
);
3705 internal
->sh_entsize
= BYTE_GET (shdrs
[i
].sh_entsize
);
3714 get_64bit_section_headers (FILE *file
, unsigned int num
)
3716 Elf64_External_Shdr
*shdrs
;
3717 Elf_Internal_Shdr
*internal
;
3720 shdrs
= get_data (NULL
, file
, elf_header
.e_shoff
,
3721 elf_header
.e_shentsize
, num
, _("section headers"));
3725 section_headers
= cmalloc (num
, sizeof (Elf_Internal_Shdr
));
3727 if (section_headers
== NULL
)
3729 error (_("Out of memory\n"));
3733 for (i
= 0, internal
= section_headers
;
3737 internal
->sh_name
= BYTE_GET (shdrs
[i
].sh_name
);
3738 internal
->sh_type
= BYTE_GET (shdrs
[i
].sh_type
);
3739 internal
->sh_flags
= BYTE_GET (shdrs
[i
].sh_flags
);
3740 internal
->sh_addr
= BYTE_GET (shdrs
[i
].sh_addr
);
3741 internal
->sh_size
= BYTE_GET (shdrs
[i
].sh_size
);
3742 internal
->sh_entsize
= BYTE_GET (shdrs
[i
].sh_entsize
);
3743 internal
->sh_link
= BYTE_GET (shdrs
[i
].sh_link
);
3744 internal
->sh_info
= BYTE_GET (shdrs
[i
].sh_info
);
3745 internal
->sh_offset
= BYTE_GET (shdrs
[i
].sh_offset
);
3746 internal
->sh_addralign
= BYTE_GET (shdrs
[i
].sh_addralign
);
3754 static Elf_Internal_Sym
*
3755 get_32bit_elf_symbols (FILE *file
, Elf_Internal_Shdr
*section
)
3757 unsigned long number
;
3758 Elf32_External_Sym
*esyms
;
3759 Elf_External_Sym_Shndx
*shndx
;
3760 Elf_Internal_Sym
*isyms
;
3761 Elf_Internal_Sym
*psym
;
3764 esyms
= get_data (NULL
, file
, section
->sh_offset
, 1, section
->sh_size
,
3770 if (symtab_shndx_hdr
!= NULL
3771 && (symtab_shndx_hdr
->sh_link
3772 == (unsigned long) SECTION_HEADER_NUM (section
- section_headers
)))
3774 shndx
= get_data (NULL
, file
, symtab_shndx_hdr
->sh_offset
,
3775 1, symtab_shndx_hdr
->sh_size
, _("symtab shndx"));
3783 number
= section
->sh_size
/ section
->sh_entsize
;
3784 isyms
= cmalloc (number
, sizeof (Elf_Internal_Sym
));
3788 error (_("Out of memory\n"));
3795 for (j
= 0, psym
= isyms
;
3799 psym
->st_name
= BYTE_GET (esyms
[j
].st_name
);
3800 psym
->st_value
= BYTE_GET (esyms
[j
].st_value
);
3801 psym
->st_size
= BYTE_GET (esyms
[j
].st_size
);
3802 psym
->st_shndx
= BYTE_GET (esyms
[j
].st_shndx
);
3803 if (psym
->st_shndx
== SHN_XINDEX
&& shndx
!= NULL
)
3805 = byte_get ((unsigned char *) &shndx
[j
], sizeof (shndx
[j
]));
3806 psym
->st_info
= BYTE_GET (esyms
[j
].st_info
);
3807 psym
->st_other
= BYTE_GET (esyms
[j
].st_other
);
3817 static Elf_Internal_Sym
*
3818 get_64bit_elf_symbols (FILE *file
, Elf_Internal_Shdr
*section
)
3820 unsigned long number
;
3821 Elf64_External_Sym
*esyms
;
3822 Elf_External_Sym_Shndx
*shndx
;
3823 Elf_Internal_Sym
*isyms
;
3824 Elf_Internal_Sym
*psym
;
3827 esyms
= get_data (NULL
, file
, section
->sh_offset
, 1, section
->sh_size
,
3833 if (symtab_shndx_hdr
!= NULL
3834 && (symtab_shndx_hdr
->sh_link
3835 == (unsigned long) SECTION_HEADER_NUM (section
- section_headers
)))
3837 shndx
= get_data (NULL
, file
, symtab_shndx_hdr
->sh_offset
,
3838 1, symtab_shndx_hdr
->sh_size
, _("symtab shndx"));
3846 number
= section
->sh_size
/ section
->sh_entsize
;
3847 isyms
= cmalloc (number
, sizeof (Elf_Internal_Sym
));
3851 error (_("Out of memory\n"));
3858 for (j
= 0, psym
= isyms
;
3862 psym
->st_name
= BYTE_GET (esyms
[j
].st_name
);
3863 psym
->st_info
= BYTE_GET (esyms
[j
].st_info
);
3864 psym
->st_other
= BYTE_GET (esyms
[j
].st_other
);
3865 psym
->st_shndx
= BYTE_GET (esyms
[j
].st_shndx
);
3866 if (psym
->st_shndx
== SHN_XINDEX
&& shndx
!= NULL
)
3868 = byte_get ((unsigned char *) &shndx
[j
], sizeof (shndx
[j
]));
3869 psym
->st_value
= BYTE_GET (esyms
[j
].st_value
);
3870 psym
->st_size
= BYTE_GET (esyms
[j
].st_size
);
3881 get_elf_section_flags (bfd_vma sh_flags
)
3883 static char buff
[1024];
3885 int field_size
= is_32bit_elf
? 8 : 16;
3886 int index
, size
= sizeof (buff
) - (field_size
+ 4 + 1);
3887 bfd_vma os_flags
= 0;
3888 bfd_vma proc_flags
= 0;
3889 bfd_vma unknown_flags
= 0;
3903 { "LINK ORDER", 10 },
3904 { "OS NONCONF", 10 },
3909 if (do_section_details
)
3911 sprintf (buff
, "[%*.*lx]: ",
3912 field_size
, field_size
, (unsigned long) sh_flags
);
3913 p
+= field_size
+ 4;
3920 flag
= sh_flags
& - sh_flags
;
3923 if (do_section_details
)
3927 case SHF_WRITE
: index
= 0; break;
3928 case SHF_ALLOC
: index
= 1; break;
3929 case SHF_EXECINSTR
: index
= 2; break;
3930 case SHF_MERGE
: index
= 3; break;
3931 case SHF_STRINGS
: index
= 4; break;
3932 case SHF_INFO_LINK
: index
= 5; break;
3933 case SHF_LINK_ORDER
: index
= 6; break;
3934 case SHF_OS_NONCONFORMING
: index
= 7; break;
3935 case SHF_GROUP
: index
= 8; break;
3936 case SHF_TLS
: index
= 9; break;
3945 if (p
!= buff
+ field_size
+ 4)
3947 if (size
< (10 + 2))
3954 size
-= flags
[index
].len
;
3955 p
= stpcpy (p
, flags
[index
].str
);
3957 else if (flag
& SHF_MASKOS
)
3959 else if (flag
& SHF_MASKPROC
)
3962 unknown_flags
|= flag
;
3968 case SHF_WRITE
: *p
= 'W'; break;
3969 case SHF_ALLOC
: *p
= 'A'; break;
3970 case SHF_EXECINSTR
: *p
= 'X'; break;
3971 case SHF_MERGE
: *p
= 'M'; break;
3972 case SHF_STRINGS
: *p
= 'S'; break;
3973 case SHF_INFO_LINK
: *p
= 'I'; break;
3974 case SHF_LINK_ORDER
: *p
= 'L'; break;
3975 case SHF_OS_NONCONFORMING
: *p
= 'O'; break;
3976 case SHF_GROUP
: *p
= 'G'; break;
3977 case SHF_TLS
: *p
= 'T'; break;
3980 if (elf_header
.e_machine
== EM_X86_64
3981 && flag
== SHF_X86_64_LARGE
)
3983 else if (flag
& SHF_MASKOS
)
3986 sh_flags
&= ~ SHF_MASKOS
;
3988 else if (flag
& SHF_MASKPROC
)
3991 sh_flags
&= ~ SHF_MASKPROC
;
4001 if (do_section_details
)
4005 size
-= 5 + field_size
;
4006 if (p
!= buff
+ field_size
+ 4)
4014 sprintf (p
, "OS (%*.*lx)", field_size
, field_size
,
4015 (unsigned long) os_flags
);
4016 p
+= 5 + field_size
;
4020 size
-= 7 + field_size
;
4021 if (p
!= buff
+ field_size
+ 4)
4029 sprintf (p
, "PROC (%*.*lx)", field_size
, field_size
,
4030 (unsigned long) proc_flags
);
4031 p
+= 7 + field_size
;
4035 size
-= 10 + field_size
;
4036 if (p
!= buff
+ field_size
+ 4)
4044 sprintf (p
, "UNKNOWN (%*.*lx)", field_size
, field_size
,
4045 (unsigned long) unknown_flags
);
4046 p
+= 10 + field_size
;
4055 process_section_headers (FILE *file
)
4057 Elf_Internal_Shdr
*section
;
4060 section_headers
= NULL
;
4062 if (elf_header
.e_shnum
== 0)
4065 printf (_("\nThere are no sections in this file.\n"));
4070 if (do_sections
&& !do_header
)
4071 printf (_("There are %d section headers, starting at offset 0x%lx:\n"),
4072 elf_header
.e_shnum
, (unsigned long) elf_header
.e_shoff
);
4076 if (! get_32bit_section_headers (file
, elf_header
.e_shnum
))
4079 else if (! get_64bit_section_headers (file
, elf_header
.e_shnum
))
4082 /* Read in the string table, so that we have names to display. */
4083 if (elf_header
.e_shstrndx
!= SHN_UNDEF
4084 && SECTION_HEADER_INDEX (elf_header
.e_shstrndx
) < elf_header
.e_shnum
)
4086 section
= SECTION_HEADER (elf_header
.e_shstrndx
);
4088 if (section
->sh_size
!= 0)
4090 string_table
= get_data (NULL
, file
, section
->sh_offset
,
4091 1, section
->sh_size
, _("string table"));
4093 string_table_length
= string_table
!= NULL
? section
->sh_size
: 0;
4097 /* Scan the sections for the dynamic symbol table
4098 and dynamic string table and debug sections. */
4099 dynamic_symbols
= NULL
;
4100 dynamic_strings
= NULL
;
4101 dynamic_syminfo
= NULL
;
4102 symtab_shndx_hdr
= NULL
;
4104 eh_addr_size
= is_32bit_elf
? 4 : 8;
4105 switch (elf_header
.e_machine
)
4108 case EM_MIPS_RS3_LE
:
4109 /* The 64-bit MIPS EABI uses a combination of 32-bit ELF and 64-bit
4110 FDE addresses. However, the ABI also has a semi-official ILP32
4111 variant for which the normal FDE address size rules apply.
4113 GCC 4.0 marks EABI64 objects with a dummy .gcc_compiled_longXX
4114 section, where XX is the size of longs in bits. Unfortunately,
4115 earlier compilers provided no way of distinguishing ILP32 objects
4116 from LP64 objects, so if there's any doubt, we should assume that
4117 the official LP64 form is being used. */
4118 if ((elf_header
.e_flags
& EF_MIPS_ABI
) == E_MIPS_ABI_EABI64
4119 && find_section (".gcc_compiled_long32") == NULL
)
4125 switch (elf_header
.e_flags
& EF_H8_MACH
)
4127 case E_H8_MACH_H8300
:
4128 case E_H8_MACH_H8300HN
:
4129 case E_H8_MACH_H8300SN
:
4130 case E_H8_MACH_H8300SXN
:
4133 case E_H8_MACH_H8300H
:
4134 case E_H8_MACH_H8300S
:
4135 case E_H8_MACH_H8300SX
:
4141 #define CHECK_ENTSIZE_VALUES(section, i, size32, size64) \
4144 size_t expected_entsize \
4145 = is_32bit_elf ? size32 : size64; \
4146 if (section->sh_entsize != expected_entsize) \
4147 error (_("Section %d has invalid sh_entsize %lx (expected %lx)\n"), \
4148 i, (unsigned long int) section->sh_entsize, \
4149 (unsigned long int) expected_entsize); \
4150 section->sh_entsize = expected_entsize; \
4153 #define CHECK_ENTSIZE(section, i, type) \
4154 CHECK_ENTSIZE_VALUES (section, i, sizeof (Elf32_External_##type), \
4155 sizeof (Elf64_External_##type))
4157 for (i
= 0, section
= section_headers
;
4158 i
< elf_header
.e_shnum
;
4161 char *name
= SECTION_NAME (section
);
4163 if (section
->sh_type
== SHT_DYNSYM
)
4165 if (dynamic_symbols
!= NULL
)
4167 error (_("File contains multiple dynamic symbol tables\n"));
4171 CHECK_ENTSIZE (section
, i
, Sym
);
4172 num_dynamic_syms
= section
->sh_size
/ section
->sh_entsize
;
4173 dynamic_symbols
= GET_ELF_SYMBOLS (file
, section
);
4175 else if (section
->sh_type
== SHT_STRTAB
4176 && streq (name
, ".dynstr"))
4178 if (dynamic_strings
!= NULL
)
4180 error (_("File contains multiple dynamic string tables\n"));
4184 dynamic_strings
= get_data (NULL
, file
, section
->sh_offset
,
4185 1, section
->sh_size
, _("dynamic strings"));
4186 dynamic_strings_length
= section
->sh_size
;
4188 else if (section
->sh_type
== SHT_SYMTAB_SHNDX
)
4190 if (symtab_shndx_hdr
!= NULL
)
4192 error (_("File contains multiple symtab shndx tables\n"));
4195 symtab_shndx_hdr
= section
;
4197 else if (section
->sh_type
== SHT_SYMTAB
)
4198 CHECK_ENTSIZE (section
, i
, Sym
);
4199 else if (section
->sh_type
== SHT_GROUP
)
4200 CHECK_ENTSIZE_VALUES (section
, i
, GRP_ENTRY_SIZE
, GRP_ENTRY_SIZE
);
4201 else if (section
->sh_type
== SHT_REL
)
4202 CHECK_ENTSIZE (section
, i
, Rel
);
4203 else if (section
->sh_type
== SHT_RELA
)
4204 CHECK_ENTSIZE (section
, i
, Rela
);
4205 else if ((do_debugging
|| do_debug_info
|| do_debug_abbrevs
4206 || do_debug_lines
|| do_debug_pubnames
|| do_debug_aranges
4207 || do_debug_frames
|| do_debug_macinfo
|| do_debug_str
4208 || do_debug_loc
|| do_debug_ranges
)
4209 && const_strneq (name
, ".debug_"))
4214 || (do_debug_info
&& streq (name
, "info"))
4215 || (do_debug_abbrevs
&& streq (name
, "abbrev"))
4216 || (do_debug_lines
&& streq (name
, "line"))
4217 || (do_debug_pubnames
&& streq (name
, "pubnames"))
4218 || (do_debug_aranges
&& streq (name
, "aranges"))
4219 || (do_debug_ranges
&& streq (name
, "ranges"))
4220 || (do_debug_frames
&& streq (name
, "frame"))
4221 || (do_debug_macinfo
&& streq (name
, "macinfo"))
4222 || (do_debug_str
&& streq (name
, "str"))
4223 || (do_debug_loc
&& streq (name
, "loc"))
4225 request_dump_bynumber (i
, DEBUG_DUMP
);
4227 /* linkonce section to be combined with .debug_info at link time. */
4228 else if ((do_debugging
|| do_debug_info
)
4229 && const_strneq (name
, ".gnu.linkonce.wi."))
4230 request_dump_bynumber (i
, DEBUG_DUMP
);
4231 else if (do_debug_frames
&& streq (name
, ".eh_frame"))
4232 request_dump_bynumber (i
, DEBUG_DUMP
);
4238 if (elf_header
.e_shnum
> 1)
4239 printf (_("\nSection Headers:\n"));
4241 printf (_("\nSection Header:\n"));
4245 if (do_section_details
)
4247 printf (_(" [Nr] Name\n"));
4248 printf (_(" Type Addr Off Size ES Lk Inf Al\n"));
4252 (_(" [Nr] Name Type Addr Off Size ES Flg Lk Inf Al\n"));
4256 if (do_section_details
)
4258 printf (_(" [Nr] Name\n"));
4259 printf (_(" Type Address Off Size ES Lk Inf Al\n"));
4263 (_(" [Nr] Name Type Address Off Size ES Flg Lk Inf Al\n"));
4267 if (do_section_details
)
4269 printf (_(" [Nr] Name\n"));
4270 printf (_(" Type Address Offset Link\n"));
4271 printf (_(" Size EntSize Info Align\n"));
4275 printf (_(" [Nr] Name Type Address Offset\n"));
4276 printf (_(" Size EntSize Flags Link Info Align\n"));
4280 if (do_section_details
)
4281 printf (_(" Flags\n"));
4283 for (i
= 0, section
= section_headers
;
4284 i
< elf_header
.e_shnum
;
4287 if (do_section_details
)
4289 printf (" [%2u] %s\n",
4290 SECTION_HEADER_NUM (i
),
4291 SECTION_NAME (section
));
4292 if (is_32bit_elf
|| do_wide
)
4293 printf (" %-15.15s ",
4294 get_section_type_name (section
->sh_type
));
4297 printf (" [%2u] %-17.17s %-15.15s ",
4298 SECTION_HEADER_NUM (i
),
4299 SECTION_NAME (section
),
4300 get_section_type_name (section
->sh_type
));
4304 print_vma (section
->sh_addr
, LONG_HEX
);
4306 printf ( " %6.6lx %6.6lx %2.2lx",
4307 (unsigned long) section
->sh_offset
,
4308 (unsigned long) section
->sh_size
,
4309 (unsigned long) section
->sh_entsize
);
4311 if (do_section_details
)
4312 fputs (" ", stdout
);
4314 printf (" %3s ", get_elf_section_flags (section
->sh_flags
));
4316 printf ("%2ld %3lu %2ld\n",
4317 (unsigned long) section
->sh_link
,
4318 (unsigned long) section
->sh_info
,
4319 (unsigned long) section
->sh_addralign
);
4323 print_vma (section
->sh_addr
, LONG_HEX
);
4325 if ((long) section
->sh_offset
== section
->sh_offset
)
4326 printf (" %6.6lx", (unsigned long) section
->sh_offset
);
4330 print_vma (section
->sh_offset
, LONG_HEX
);
4333 if ((unsigned long) section
->sh_size
== section
->sh_size
)
4334 printf (" %6.6lx", (unsigned long) section
->sh_size
);
4338 print_vma (section
->sh_size
, LONG_HEX
);
4341 if ((unsigned long) section
->sh_entsize
== section
->sh_entsize
)
4342 printf (" %2.2lx", (unsigned long) section
->sh_entsize
);
4346 print_vma (section
->sh_entsize
, LONG_HEX
);
4349 if (do_section_details
)
4350 fputs (" ", stdout
);
4352 printf (" %3s ", get_elf_section_flags (section
->sh_flags
));
4354 printf ("%2ld %3lu ",
4355 (unsigned long) section
->sh_link
,
4356 (unsigned long) section
->sh_info
);
4358 if ((unsigned long) section
->sh_addralign
== section
->sh_addralign
)
4359 printf ("%2ld\n", (unsigned long) section
->sh_addralign
);
4362 print_vma (section
->sh_addralign
, DEC
);
4366 else if (do_section_details
)
4368 printf (" %-15.15s ",
4369 get_section_type_name (section
->sh_type
));
4370 print_vma (section
->sh_addr
, LONG_HEX
);
4371 if ((long) section
->sh_offset
== section
->sh_offset
)
4372 printf (" %16.16lx", (unsigned long) section
->sh_offset
);
4376 print_vma (section
->sh_offset
, LONG_HEX
);
4378 printf (" %ld\n ", (unsigned long) section
->sh_link
);
4379 print_vma (section
->sh_size
, LONG_HEX
);
4381 print_vma (section
->sh_entsize
, LONG_HEX
);
4383 printf (" %-16lu %ld\n",
4384 (unsigned long) section
->sh_info
,
4385 (unsigned long) section
->sh_addralign
);
4390 print_vma (section
->sh_addr
, LONG_HEX
);
4391 if ((long) section
->sh_offset
== section
->sh_offset
)
4392 printf (" %8.8lx", (unsigned long) section
->sh_offset
);
4396 print_vma (section
->sh_offset
, LONG_HEX
);
4399 print_vma (section
->sh_size
, LONG_HEX
);
4401 print_vma (section
->sh_entsize
, LONG_HEX
);
4403 printf (" %3s ", get_elf_section_flags (section
->sh_flags
));
4405 printf (" %2ld %3lu %ld\n",
4406 (unsigned long) section
->sh_link
,
4407 (unsigned long) section
->sh_info
,
4408 (unsigned long) section
->sh_addralign
);
4411 if (do_section_details
)
4412 printf (" %s\n", get_elf_section_flags (section
->sh_flags
));
4415 if (!do_section_details
)
4416 printf (_("Key to Flags:\n\
4417 W (write), A (alloc), X (execute), M (merge), S (strings)\n\
4418 I (info), L (link order), G (group), x (unknown)\n\
4419 O (extra OS processing required) o (OS specific), p (processor specific)\n"));
4425 get_group_flags (unsigned int flags
)
4427 static char buff
[32];
4434 snprintf (buff
, sizeof (buff
), _("[<unknown>: 0x%x]"), flags
);
4441 process_section_groups (FILE *file
)
4443 Elf_Internal_Shdr
*section
;
4445 struct group
*group
;
4446 Elf_Internal_Shdr
*symtab_sec
, *strtab_sec
;
4447 Elf_Internal_Sym
*symtab
;
4451 /* Don't process section groups unless needed. */
4452 if (!do_unwind
&& !do_section_groups
)
4455 if (elf_header
.e_shnum
== 0)
4457 if (do_section_groups
)
4458 printf (_("\nThere are no sections in this file.\n"));
4463 if (section_headers
== NULL
)
4465 error (_("Section headers are not available!\n"));
4469 section_headers_groups
= calloc (elf_header
.e_shnum
,
4470 sizeof (struct group
*));
4472 if (section_headers_groups
== NULL
)
4474 error (_("Out of memory\n"));
4478 /* Scan the sections for the group section. */
4480 for (i
= 0, section
= section_headers
;
4481 i
< elf_header
.e_shnum
;
4483 if (section
->sh_type
== SHT_GROUP
)
4486 if (group_count
== 0)
4488 if (do_section_groups
)
4489 printf (_("\nThere are no section groups in this file.\n"));
4494 section_groups
= calloc (group_count
, sizeof (struct group
));
4496 if (section_groups
== NULL
)
4498 error (_("Out of memory\n"));
4507 for (i
= 0, section
= section_headers
, group
= section_groups
;
4508 i
< elf_header
.e_shnum
;
4511 if (section
->sh_type
== SHT_GROUP
)
4513 char *name
= SECTION_NAME (section
);
4515 unsigned char *start
, *indices
;
4516 unsigned int entry
, j
, size
;
4517 Elf_Internal_Shdr
*sec
;
4518 Elf_Internal_Sym
*sym
;
4520 /* Get the symbol table. */
4521 if (SECTION_HEADER_INDEX (section
->sh_link
) >= elf_header
.e_shnum
4522 || ((sec
= SECTION_HEADER (section
->sh_link
))->sh_type
4525 error (_("Bad sh_link in group section `%s'\n"), name
);
4529 if (symtab_sec
!= sec
)
4534 symtab
= GET_ELF_SYMBOLS (file
, symtab_sec
);
4537 sym
= symtab
+ section
->sh_info
;
4539 if (ELF_ST_TYPE (sym
->st_info
) == STT_SECTION
)
4541 bfd_vma sec_index
= SECTION_HEADER_INDEX (sym
->st_shndx
);
4544 error (_("Bad sh_info in group section `%s'\n"), name
);
4548 group_name
= SECTION_NAME (section_headers
+ sec_index
);
4557 /* Get the string table. */
4558 if (SECTION_HEADER_INDEX (symtab_sec
->sh_link
)
4559 >= elf_header
.e_shnum
)
4568 != (sec
= SECTION_HEADER (symtab_sec
->sh_link
)))
4573 strtab
= get_data (NULL
, file
, strtab_sec
->sh_offset
,
4574 1, strtab_sec
->sh_size
,
4576 strtab_size
= strtab
!= NULL
? strtab_sec
->sh_size
: 0;
4578 group_name
= sym
->st_name
< strtab_size
4579 ? strtab
+ sym
->st_name
: "<corrupt>";
4582 start
= get_data (NULL
, file
, section
->sh_offset
,
4583 1, section
->sh_size
, _("section data"));
4586 size
= (section
->sh_size
/ section
->sh_entsize
) - 1;
4587 entry
= byte_get (indices
, 4);
4590 if (do_section_groups
)
4592 printf ("\n%s group section [%5u] `%s' [%s] contains %u sections:\n",
4593 get_group_flags (entry
), i
, name
, group_name
, size
);
4595 printf (_(" [Index] Name\n"));
4598 group
->group_index
= i
;
4600 for (j
= 0; j
< size
; j
++)
4602 struct group_list
*g
;
4604 entry
= byte_get (indices
, 4);
4607 if (SECTION_HEADER_INDEX (entry
) >= elf_header
.e_shnum
)
4609 error (_("section [%5u] in group section [%5u] > maximum section [%5u]\n"),
4610 entry
, i
, elf_header
.e_shnum
- 1);
4613 else if (entry
>= SHN_LORESERVE
&& entry
<= SHN_HIRESERVE
)
4615 error (_("invalid section [%5u] in group section [%5u]\n"),
4620 if (section_headers_groups
[SECTION_HEADER_INDEX (entry
)]
4625 error (_("section [%5u] in group section [%5u] already in group section [%5u]\n"),
4627 section_headers_groups
[SECTION_HEADER_INDEX (entry
)]->group_index
);
4632 /* Intel C/C++ compiler may put section 0 in a
4633 section group. We just warn it the first time
4634 and ignore it afterwards. */
4635 static int warned
= 0;
4638 error (_("section 0 in group section [%5u]\n"),
4639 section_headers_groups
[SECTION_HEADER_INDEX (entry
)]->group_index
);
4645 section_headers_groups
[SECTION_HEADER_INDEX (entry
)]
4648 if (do_section_groups
)
4650 sec
= SECTION_HEADER (entry
);
4651 printf (" [%5u] %s\n", entry
, SECTION_NAME (sec
));
4654 g
= xmalloc (sizeof (struct group_list
));
4655 g
->section_index
= entry
;
4656 g
->next
= group
->root
;
4680 } dynamic_relocations
[] =
4682 { "REL", DT_REL
, DT_RELSZ
, FALSE
},
4683 { "RELA", DT_RELA
, DT_RELASZ
, TRUE
},
4684 { "PLT", DT_JMPREL
, DT_PLTRELSZ
, UNKNOWN
}
4687 /* Process the reloc section. */
4690 process_relocs (FILE *file
)
4692 unsigned long rel_size
;
4693 unsigned long rel_offset
;
4699 if (do_using_dynamic
)
4703 int has_dynamic_reloc
;
4706 has_dynamic_reloc
= 0;
4708 for (i
= 0; i
< ARRAY_SIZE (dynamic_relocations
); i
++)
4710 is_rela
= dynamic_relocations
[i
].rela
;
4711 name
= dynamic_relocations
[i
].name
;
4712 rel_size
= dynamic_info
[dynamic_relocations
[i
].size
];
4713 rel_offset
= dynamic_info
[dynamic_relocations
[i
].reloc
];
4715 has_dynamic_reloc
|= rel_size
;
4717 if (is_rela
== UNKNOWN
)
4719 if (dynamic_relocations
[i
].reloc
== DT_JMPREL
)
4720 switch (dynamic_info
[DT_PLTREL
])
4734 (_("\n'%s' relocation section at offset 0x%lx contains %ld bytes:\n"),
4735 name
, rel_offset
, rel_size
);
4737 dump_relocations (file
,
4738 offset_from_vma (file
, rel_offset
, rel_size
),
4740 dynamic_symbols
, num_dynamic_syms
,
4741 dynamic_strings
, dynamic_strings_length
, is_rela
);
4745 if (! has_dynamic_reloc
)
4746 printf (_("\nThere are no dynamic relocations in this file.\n"));
4750 Elf_Internal_Shdr
*section
;
4754 for (i
= 0, section
= section_headers
;
4755 i
< elf_header
.e_shnum
;
4758 if ( section
->sh_type
!= SHT_RELA
4759 && section
->sh_type
!= SHT_REL
)
4762 rel_offset
= section
->sh_offset
;
4763 rel_size
= section
->sh_size
;
4767 Elf_Internal_Shdr
*strsec
;
4770 printf (_("\nRelocation section "));
4772 if (string_table
== NULL
)
4773 printf ("%d", section
->sh_name
);
4775 printf (_("'%s'"), SECTION_NAME (section
));
4777 printf (_(" at offset 0x%lx contains %lu entries:\n"),
4778 rel_offset
, (unsigned long) (rel_size
/ section
->sh_entsize
));
4780 is_rela
= section
->sh_type
== SHT_RELA
;
4782 if (section
->sh_link
4783 && SECTION_HEADER_INDEX (section
->sh_link
)
4784 < elf_header
.e_shnum
)
4786 Elf_Internal_Shdr
*symsec
;
4787 Elf_Internal_Sym
*symtab
;
4788 unsigned long nsyms
;
4789 unsigned long strtablen
= 0;
4790 char *strtab
= NULL
;
4792 symsec
= SECTION_HEADER (section
->sh_link
);
4793 if (symsec
->sh_type
!= SHT_SYMTAB
4794 && symsec
->sh_type
!= SHT_DYNSYM
)
4797 nsyms
= symsec
->sh_size
/ symsec
->sh_entsize
;
4798 symtab
= GET_ELF_SYMBOLS (file
, symsec
);
4803 if (SECTION_HEADER_INDEX (symsec
->sh_link
)
4804 < elf_header
.e_shnum
)
4806 strsec
= SECTION_HEADER (symsec
->sh_link
);
4808 strtab
= get_data (NULL
, file
, strsec
->sh_offset
,
4811 strtablen
= strtab
== NULL
? 0 : strsec
->sh_size
;
4814 dump_relocations (file
, rel_offset
, rel_size
,
4815 symtab
, nsyms
, strtab
, strtablen
, is_rela
);
4821 dump_relocations (file
, rel_offset
, rel_size
,
4822 NULL
, 0, NULL
, 0, is_rela
);
4829 printf (_("\nThere are no relocations in this file.\n"));
4835 /* Process the unwind section. */
4837 #include "unwind-ia64.h"
4839 /* An absolute address consists of a section and an offset. If the
4840 section is NULL, the offset itself is the address, otherwise, the
4841 address equals to LOAD_ADDRESS(section) + offset. */
4845 unsigned short section
;
4849 #define ABSADDR(a) \
4851 ? section_headers [(a).section].sh_addr + (a).offset \
4854 struct ia64_unw_aux_info
4856 struct ia64_unw_table_entry
4858 struct absaddr start
;
4860 struct absaddr info
;
4862 *table
; /* Unwind table. */
4863 unsigned long table_len
; /* Length of unwind table. */
4864 unsigned char *info
; /* Unwind info. */
4865 unsigned long info_size
; /* Size of unwind info. */
4866 bfd_vma info_addr
; /* starting address of unwind info. */
4867 bfd_vma seg_base
; /* Starting address of segment. */
4868 Elf_Internal_Sym
*symtab
; /* The symbol table. */
4869 unsigned long nsyms
; /* Number of symbols. */
4870 char *strtab
; /* The string table. */
4871 unsigned long strtab_size
; /* Size of string table. */
4875 find_symbol_for_address (Elf_Internal_Sym
*symtab
,
4876 unsigned long nsyms
,
4878 unsigned long strtab_size
,
4879 struct absaddr addr
,
4880 const char **symname
,
4883 bfd_vma dist
= 0x100000;
4884 Elf_Internal_Sym
*sym
, *best
= NULL
;
4887 for (i
= 0, sym
= symtab
; i
< nsyms
; ++i
, ++sym
)
4889 if (ELF_ST_TYPE (sym
->st_info
) == STT_FUNC
4890 && sym
->st_name
!= 0
4891 && (addr
.section
== SHN_UNDEF
|| addr
.section
== sym
->st_shndx
)
4892 && addr
.offset
>= sym
->st_value
4893 && addr
.offset
- sym
->st_value
< dist
)
4896 dist
= addr
.offset
- sym
->st_value
;
4903 *symname
= (best
->st_name
>= strtab_size
4904 ? "<corrupt>" : strtab
+ best
->st_name
);
4909 *offset
= addr
.offset
;
4913 dump_ia64_unwind (struct ia64_unw_aux_info
*aux
)
4915 struct ia64_unw_table_entry
*tp
;
4918 for (tp
= aux
->table
; tp
< aux
->table
+ aux
->table_len
; ++tp
)
4922 const unsigned char *dp
;
4923 const unsigned char *head
;
4924 const char *procname
;
4926 find_symbol_for_address (aux
->symtab
, aux
->nsyms
, aux
->strtab
,
4927 aux
->strtab_size
, tp
->start
, &procname
, &offset
);
4929 fputs ("\n<", stdout
);
4933 fputs (procname
, stdout
);
4936 printf ("+%lx", (unsigned long) offset
);
4939 fputs (">: [", stdout
);
4940 print_vma (tp
->start
.offset
, PREFIX_HEX
);
4941 fputc ('-', stdout
);
4942 print_vma (tp
->end
.offset
, PREFIX_HEX
);
4943 printf ("], info at +0x%lx\n",
4944 (unsigned long) (tp
->info
.offset
- aux
->seg_base
));
4946 head
= aux
->info
+ (ABSADDR (tp
->info
) - aux
->info_addr
);
4947 stamp
= byte_get ((unsigned char *) head
, sizeof (stamp
));
4949 printf (" v%u, flags=0x%lx (%s%s), len=%lu bytes\n",
4950 (unsigned) UNW_VER (stamp
),
4951 (unsigned long) ((stamp
& UNW_FLAG_MASK
) >> 32),
4952 UNW_FLAG_EHANDLER (stamp
) ? " ehandler" : "",
4953 UNW_FLAG_UHANDLER (stamp
) ? " uhandler" : "",
4954 (unsigned long) (eh_addr_size
* UNW_LENGTH (stamp
)));
4956 if (UNW_VER (stamp
) != 1)
4958 printf ("\tUnknown version.\n");
4963 for (dp
= head
+ 8; dp
< head
+ 8 + eh_addr_size
* UNW_LENGTH (stamp
);)
4964 dp
= unw_decode (dp
, in_body
, & in_body
);
4969 slurp_ia64_unwind_table (FILE *file
,
4970 struct ia64_unw_aux_info
*aux
,
4971 Elf_Internal_Shdr
*sec
)
4973 unsigned long size
, nrelas
, i
;
4974 Elf_Internal_Phdr
*seg
;
4975 struct ia64_unw_table_entry
*tep
;
4976 Elf_Internal_Shdr
*relsec
;
4977 Elf_Internal_Rela
*rela
, *rp
;
4978 unsigned char *table
, *tp
;
4979 Elf_Internal_Sym
*sym
;
4980 const char *relname
;
4982 /* First, find the starting address of the segment that includes
4985 if (elf_header
.e_phnum
)
4987 if (! get_program_headers (file
))
4990 for (seg
= program_headers
;
4991 seg
< program_headers
+ elf_header
.e_phnum
;
4994 if (seg
->p_type
!= PT_LOAD
)
4997 if (sec
->sh_addr
>= seg
->p_vaddr
4998 && (sec
->sh_addr
+ sec
->sh_size
<= seg
->p_vaddr
+ seg
->p_memsz
))
5000 aux
->seg_base
= seg
->p_vaddr
;
5006 /* Second, build the unwind table from the contents of the unwind section: */
5007 size
= sec
->sh_size
;
5008 table
= get_data (NULL
, file
, sec
->sh_offset
, 1, size
, _("unwind table"));
5012 aux
->table
= xcmalloc (size
/ (3 * eh_addr_size
), sizeof (aux
->table
[0]));
5014 for (tp
= table
; tp
< table
+ size
; tp
+= 3 * eh_addr_size
, ++tep
)
5016 tep
->start
.section
= SHN_UNDEF
;
5017 tep
->end
.section
= SHN_UNDEF
;
5018 tep
->info
.section
= SHN_UNDEF
;
5021 tep
->start
.offset
= byte_get ((unsigned char *) tp
+ 0, 4);
5022 tep
->end
.offset
= byte_get ((unsigned char *) tp
+ 4, 4);
5023 tep
->info
.offset
= byte_get ((unsigned char *) tp
+ 8, 4);
5027 tep
->start
.offset
= BYTE_GET ((unsigned char *) tp
+ 0);
5028 tep
->end
.offset
= BYTE_GET ((unsigned char *) tp
+ 8);
5029 tep
->info
.offset
= BYTE_GET ((unsigned char *) tp
+ 16);
5031 tep
->start
.offset
+= aux
->seg_base
;
5032 tep
->end
.offset
+= aux
->seg_base
;
5033 tep
->info
.offset
+= aux
->seg_base
;
5037 /* Third, apply any relocations to the unwind table: */
5038 for (relsec
= section_headers
;
5039 relsec
< section_headers
+ elf_header
.e_shnum
;
5042 if (relsec
->sh_type
!= SHT_RELA
5043 || SECTION_HEADER_INDEX (relsec
->sh_info
) >= elf_header
.e_shnum
5044 || SECTION_HEADER (relsec
->sh_info
) != sec
)
5047 if (!slurp_rela_relocs (file
, relsec
->sh_offset
, relsec
->sh_size
,
5051 for (rp
= rela
; rp
< rela
+ nrelas
; ++rp
)
5053 relname
= elf_ia64_reloc_type (get_reloc_type (rp
->r_info
));
5054 sym
= aux
->symtab
+ get_reloc_symindex (rp
->r_info
);
5056 if (! const_strneq (relname
, "R_IA64_SEGREL"))
5058 warn (_("Skipping unexpected relocation type %s\n"), relname
);
5062 i
= rp
->r_offset
/ (3 * eh_addr_size
);
5064 switch (rp
->r_offset
/eh_addr_size
% 3)
5067 aux
->table
[i
].start
.section
= sym
->st_shndx
;
5068 aux
->table
[i
].start
.offset
+= rp
->r_addend
+ sym
->st_value
;
5071 aux
->table
[i
].end
.section
= sym
->st_shndx
;
5072 aux
->table
[i
].end
.offset
+= rp
->r_addend
+ sym
->st_value
;
5075 aux
->table
[i
].info
.section
= sym
->st_shndx
;
5076 aux
->table
[i
].info
.offset
+= rp
->r_addend
+ sym
->st_value
;
5086 aux
->table_len
= size
/ (3 * eh_addr_size
);
5091 ia64_process_unwind (FILE *file
)
5093 Elf_Internal_Shdr
*sec
, *unwsec
= NULL
, *strsec
;
5094 unsigned long i
, unwcount
= 0, unwstart
= 0;
5095 struct ia64_unw_aux_info aux
;
5097 memset (& aux
, 0, sizeof (aux
));
5099 for (i
= 0, sec
= section_headers
; i
< elf_header
.e_shnum
; ++i
, ++sec
)
5101 if (sec
->sh_type
== SHT_SYMTAB
5102 && SECTION_HEADER_INDEX (sec
->sh_link
) < elf_header
.e_shnum
)
5104 aux
.nsyms
= sec
->sh_size
/ sec
->sh_entsize
;
5105 aux
.symtab
= GET_ELF_SYMBOLS (file
, sec
);
5107 strsec
= SECTION_HEADER (sec
->sh_link
);
5108 aux
.strtab
= get_data (NULL
, file
, strsec
->sh_offset
,
5109 1, strsec
->sh_size
, _("string table"));
5110 aux
.strtab_size
= aux
.strtab
!= NULL
? strsec
->sh_size
: 0;
5112 else if (sec
->sh_type
== SHT_IA_64_UNWIND
)
5117 printf (_("\nThere are no unwind sections in this file.\n"));
5119 while (unwcount
-- > 0)
5124 for (i
= unwstart
, sec
= section_headers
+ unwstart
;
5125 i
< elf_header
.e_shnum
; ++i
, ++sec
)
5126 if (sec
->sh_type
== SHT_IA_64_UNWIND
)
5133 len
= sizeof (ELF_STRING_ia64_unwind_once
) - 1;
5135 if ((unwsec
->sh_flags
& SHF_GROUP
) != 0)
5137 /* We need to find which section group it is in. */
5138 struct group_list
*g
= section_headers_groups
[i
]->root
;
5140 for (; g
!= NULL
; g
= g
->next
)
5142 sec
= SECTION_HEADER (g
->section_index
);
5144 if (streq (SECTION_NAME (sec
), ELF_STRING_ia64_unwind_info
))
5149 i
= elf_header
.e_shnum
;
5151 else if (strneq (SECTION_NAME (unwsec
), ELF_STRING_ia64_unwind_once
, len
))
5153 /* .gnu.linkonce.ia64unw.FOO -> .gnu.linkonce.ia64unwi.FOO. */
5154 len2
= sizeof (ELF_STRING_ia64_unwind_info_once
) - 1;
5155 suffix
= SECTION_NAME (unwsec
) + len
;
5156 for (i
= 0, sec
= section_headers
; i
< elf_header
.e_shnum
;
5158 if (strneq (SECTION_NAME (sec
), ELF_STRING_ia64_unwind_info_once
, len2
)
5159 && streq (SECTION_NAME (sec
) + len2
, suffix
))
5164 /* .IA_64.unwindFOO -> .IA_64.unwind_infoFOO
5165 .IA_64.unwind or BAR -> .IA_64.unwind_info. */
5166 len
= sizeof (ELF_STRING_ia64_unwind
) - 1;
5167 len2
= sizeof (ELF_STRING_ia64_unwind_info
) - 1;
5169 if (strneq (SECTION_NAME (unwsec
), ELF_STRING_ia64_unwind
, len
))
5170 suffix
= SECTION_NAME (unwsec
) + len
;
5171 for (i
= 0, sec
= section_headers
; i
< elf_header
.e_shnum
;
5173 if (strneq (SECTION_NAME (sec
), ELF_STRING_ia64_unwind_info
, len2
)
5174 && streq (SECTION_NAME (sec
) + len2
, suffix
))
5178 if (i
== elf_header
.e_shnum
)
5180 printf (_("\nCould not find unwind info section for "));
5182 if (string_table
== NULL
)
5183 printf ("%d", unwsec
->sh_name
);
5185 printf (_("'%s'"), SECTION_NAME (unwsec
));
5189 aux
.info_size
= sec
->sh_size
;
5190 aux
.info_addr
= sec
->sh_addr
;
5191 aux
.info
= get_data (NULL
, file
, sec
->sh_offset
, 1, aux
.info_size
,
5194 printf (_("\nUnwind section "));
5196 if (string_table
== NULL
)
5197 printf ("%d", unwsec
->sh_name
);
5199 printf (_("'%s'"), SECTION_NAME (unwsec
));
5201 printf (_(" at offset 0x%lx contains %lu entries:\n"),
5202 (unsigned long) unwsec
->sh_offset
,
5203 (unsigned long) (unwsec
->sh_size
/ (3 * eh_addr_size
)));
5205 (void) slurp_ia64_unwind_table (file
, & aux
, unwsec
);
5207 if (aux
.table_len
> 0)
5208 dump_ia64_unwind (& aux
);
5211 free ((char *) aux
.table
);
5213 free ((char *) aux
.info
);
5222 free ((char *) aux
.strtab
);
5227 struct hppa_unw_aux_info
5229 struct hppa_unw_table_entry
5231 struct absaddr start
;
5233 unsigned int Cannot_unwind
:1; /* 0 */
5234 unsigned int Millicode
:1; /* 1 */
5235 unsigned int Millicode_save_sr0
:1; /* 2 */
5236 unsigned int Region_description
:2; /* 3..4 */
5237 unsigned int reserved1
:1; /* 5 */
5238 unsigned int Entry_SR
:1; /* 6 */
5239 unsigned int Entry_FR
:4; /* number saved */ /* 7..10 */
5240 unsigned int Entry_GR
:5; /* number saved */ /* 11..15 */
5241 unsigned int Args_stored
:1; /* 16 */
5242 unsigned int Variable_Frame
:1; /* 17 */
5243 unsigned int Separate_Package_Body
:1; /* 18 */
5244 unsigned int Frame_Extension_Millicode
:1; /* 19 */
5245 unsigned int Stack_Overflow_Check
:1; /* 20 */
5246 unsigned int Two_Instruction_SP_Increment
:1; /* 21 */
5247 unsigned int Ada_Region
:1; /* 22 */
5248 unsigned int cxx_info
:1; /* 23 */
5249 unsigned int cxx_try_catch
:1; /* 24 */
5250 unsigned int sched_entry_seq
:1; /* 25 */
5251 unsigned int reserved2
:1; /* 26 */
5252 unsigned int Save_SP
:1; /* 27 */
5253 unsigned int Save_RP
:1; /* 28 */
5254 unsigned int Save_MRP_in_frame
:1; /* 29 */
5255 unsigned int extn_ptr_defined
:1; /* 30 */
5256 unsigned int Cleanup_defined
:1; /* 31 */
5258 unsigned int MPE_XL_interrupt_marker
:1; /* 0 */
5259 unsigned int HP_UX_interrupt_marker
:1; /* 1 */
5260 unsigned int Large_frame
:1; /* 2 */
5261 unsigned int Pseudo_SP_Set
:1; /* 3 */
5262 unsigned int reserved4
:1; /* 4 */
5263 unsigned int Total_frame_size
:27; /* 5..31 */
5265 *table
; /* Unwind table. */
5266 unsigned long table_len
; /* Length of unwind table. */
5267 bfd_vma seg_base
; /* Starting address of segment. */
5268 Elf_Internal_Sym
*symtab
; /* The symbol table. */
5269 unsigned long nsyms
; /* Number of symbols. */
5270 char *strtab
; /* The string table. */
5271 unsigned long strtab_size
; /* Size of string table. */
5275 dump_hppa_unwind (struct hppa_unw_aux_info
*aux
)
5277 struct hppa_unw_table_entry
*tp
;
5279 for (tp
= aux
->table
; tp
< aux
->table
+ aux
->table_len
; ++tp
)
5282 const char *procname
;
5284 find_symbol_for_address (aux
->symtab
, aux
->nsyms
, aux
->strtab
,
5285 aux
->strtab_size
, tp
->start
, &procname
,
5288 fputs ("\n<", stdout
);
5292 fputs (procname
, stdout
);
5295 printf ("+%lx", (unsigned long) offset
);
5298 fputs (">: [", stdout
);
5299 print_vma (tp
->start
.offset
, PREFIX_HEX
);
5300 fputc ('-', stdout
);
5301 print_vma (tp
->end
.offset
, PREFIX_HEX
);
5304 #define PF(_m) if (tp->_m) printf (#_m " ");
5305 #define PV(_m) if (tp->_m) printf (#_m "=%d ", tp->_m);
5308 PF(Millicode_save_sr0
);
5309 /* PV(Region_description); */
5315 PF(Separate_Package_Body
);
5316 PF(Frame_Extension_Millicode
);
5317 PF(Stack_Overflow_Check
);
5318 PF(Two_Instruction_SP_Increment
);
5322 PF(sched_entry_seq
);
5325 PF(Save_MRP_in_frame
);
5326 PF(extn_ptr_defined
);
5327 PF(Cleanup_defined
);
5328 PF(MPE_XL_interrupt_marker
);
5329 PF(HP_UX_interrupt_marker
);
5332 PV(Total_frame_size
);
5341 slurp_hppa_unwind_table (FILE *file
,
5342 struct hppa_unw_aux_info
*aux
,
5343 Elf_Internal_Shdr
*sec
)
5345 unsigned long size
, unw_ent_size
, nentries
, nrelas
, i
;
5346 Elf_Internal_Phdr
*seg
;
5347 struct hppa_unw_table_entry
*tep
;
5348 Elf_Internal_Shdr
*relsec
;
5349 Elf_Internal_Rela
*rela
, *rp
;
5350 unsigned char *table
, *tp
;
5351 Elf_Internal_Sym
*sym
;
5352 const char *relname
;
5354 /* First, find the starting address of the segment that includes
5357 if (elf_header
.e_phnum
)
5359 if (! get_program_headers (file
))
5362 for (seg
= program_headers
;
5363 seg
< program_headers
+ elf_header
.e_phnum
;
5366 if (seg
->p_type
!= PT_LOAD
)
5369 if (sec
->sh_addr
>= seg
->p_vaddr
5370 && (sec
->sh_addr
+ sec
->sh_size
<= seg
->p_vaddr
+ seg
->p_memsz
))
5372 aux
->seg_base
= seg
->p_vaddr
;
5378 /* Second, build the unwind table from the contents of the unwind
5380 size
= sec
->sh_size
;
5381 table
= get_data (NULL
, file
, sec
->sh_offset
, 1, size
, _("unwind table"));
5386 nentries
= size
/ unw_ent_size
;
5387 size
= unw_ent_size
* nentries
;
5389 tep
= aux
->table
= xcmalloc (nentries
, sizeof (aux
->table
[0]));
5391 for (tp
= table
; tp
< table
+ size
; tp
+= unw_ent_size
, ++tep
)
5393 unsigned int tmp1
, tmp2
;
5395 tep
->start
.section
= SHN_UNDEF
;
5396 tep
->end
.section
= SHN_UNDEF
;
5398 tep
->start
.offset
= byte_get ((unsigned char *) tp
+ 0, 4);
5399 tep
->end
.offset
= byte_get ((unsigned char *) tp
+ 4, 4);
5400 tmp1
= byte_get ((unsigned char *) tp
+ 8, 4);
5401 tmp2
= byte_get ((unsigned char *) tp
+ 12, 4);
5403 tep
->start
.offset
+= aux
->seg_base
;
5404 tep
->end
.offset
+= aux
->seg_base
;
5406 tep
->Cannot_unwind
= (tmp1
>> 31) & 0x1;
5407 tep
->Millicode
= (tmp1
>> 30) & 0x1;
5408 tep
->Millicode_save_sr0
= (tmp1
>> 29) & 0x1;
5409 tep
->Region_description
= (tmp1
>> 27) & 0x3;
5410 tep
->reserved1
= (tmp1
>> 26) & 0x1;
5411 tep
->Entry_SR
= (tmp1
>> 25) & 0x1;
5412 tep
->Entry_FR
= (tmp1
>> 21) & 0xf;
5413 tep
->Entry_GR
= (tmp1
>> 16) & 0x1f;
5414 tep
->Args_stored
= (tmp1
>> 15) & 0x1;
5415 tep
->Variable_Frame
= (tmp1
>> 14) & 0x1;
5416 tep
->Separate_Package_Body
= (tmp1
>> 13) & 0x1;
5417 tep
->Frame_Extension_Millicode
= (tmp1
>> 12) & 0x1;
5418 tep
->Stack_Overflow_Check
= (tmp1
>> 11) & 0x1;
5419 tep
->Two_Instruction_SP_Increment
= (tmp1
>> 10) & 0x1;
5420 tep
->Ada_Region
= (tmp1
>> 9) & 0x1;
5421 tep
->cxx_info
= (tmp1
>> 8) & 0x1;
5422 tep
->cxx_try_catch
= (tmp1
>> 7) & 0x1;
5423 tep
->sched_entry_seq
= (tmp1
>> 6) & 0x1;
5424 tep
->reserved2
= (tmp1
>> 5) & 0x1;
5425 tep
->Save_SP
= (tmp1
>> 4) & 0x1;
5426 tep
->Save_RP
= (tmp1
>> 3) & 0x1;
5427 tep
->Save_MRP_in_frame
= (tmp1
>> 2) & 0x1;
5428 tep
->extn_ptr_defined
= (tmp1
>> 1) & 0x1;
5429 tep
->Cleanup_defined
= tmp1
& 0x1;
5431 tep
->MPE_XL_interrupt_marker
= (tmp2
>> 31) & 0x1;
5432 tep
->HP_UX_interrupt_marker
= (tmp2
>> 30) & 0x1;
5433 tep
->Large_frame
= (tmp2
>> 29) & 0x1;
5434 tep
->Pseudo_SP_Set
= (tmp2
>> 28) & 0x1;
5435 tep
->reserved4
= (tmp2
>> 27) & 0x1;
5436 tep
->Total_frame_size
= tmp2
& 0x7ffffff;
5440 /* Third, apply any relocations to the unwind table. */
5441 for (relsec
= section_headers
;
5442 relsec
< section_headers
+ elf_header
.e_shnum
;
5445 if (relsec
->sh_type
!= SHT_RELA
5446 || SECTION_HEADER_INDEX (relsec
->sh_info
) >= elf_header
.e_shnum
5447 || SECTION_HEADER (relsec
->sh_info
) != sec
)
5450 if (!slurp_rela_relocs (file
, relsec
->sh_offset
, relsec
->sh_size
,
5454 for (rp
= rela
; rp
< rela
+ nrelas
; ++rp
)
5456 relname
= elf_hppa_reloc_type (get_reloc_type (rp
->r_info
));
5457 sym
= aux
->symtab
+ get_reloc_symindex (rp
->r_info
);
5459 /* R_PARISC_SEGREL32 or R_PARISC_SEGREL64. */
5460 if (! const_strneq (relname
, "R_PARISC_SEGREL"))
5462 warn (_("Skipping unexpected relocation type %s\n"), relname
);
5466 i
= rp
->r_offset
/ unw_ent_size
;
5468 switch ((rp
->r_offset
% unw_ent_size
) / eh_addr_size
)
5471 aux
->table
[i
].start
.section
= sym
->st_shndx
;
5472 aux
->table
[i
].start
.offset
+= sym
->st_value
+ rp
->r_addend
;
5475 aux
->table
[i
].end
.section
= sym
->st_shndx
;
5476 aux
->table
[i
].end
.offset
+= sym
->st_value
+ rp
->r_addend
;
5486 aux
->table_len
= nentries
;
5492 hppa_process_unwind (FILE *file
)
5494 struct hppa_unw_aux_info aux
;
5495 Elf_Internal_Shdr
*unwsec
= NULL
;
5496 Elf_Internal_Shdr
*strsec
;
5497 Elf_Internal_Shdr
*sec
;
5500 memset (& aux
, 0, sizeof (aux
));
5502 if (string_table
== NULL
)
5505 for (i
= 0, sec
= section_headers
; i
< elf_header
.e_shnum
; ++i
, ++sec
)
5507 if (sec
->sh_type
== SHT_SYMTAB
5508 && SECTION_HEADER_INDEX (sec
->sh_link
) < elf_header
.e_shnum
)
5510 aux
.nsyms
= sec
->sh_size
/ sec
->sh_entsize
;
5511 aux
.symtab
= GET_ELF_SYMBOLS (file
, sec
);
5513 strsec
= SECTION_HEADER (sec
->sh_link
);
5514 aux
.strtab
= get_data (NULL
, file
, strsec
->sh_offset
,
5515 1, strsec
->sh_size
, _("string table"));
5516 aux
.strtab_size
= aux
.strtab
!= NULL
? strsec
->sh_size
: 0;
5518 else if (streq (SECTION_NAME (sec
), ".PARISC.unwind"))
5523 printf (_("\nThere are no unwind sections in this file.\n"));
5525 for (i
= 0, sec
= section_headers
; i
< elf_header
.e_shnum
; ++i
, ++sec
)
5527 if (streq (SECTION_NAME (sec
), ".PARISC.unwind"))
5529 printf (_("\nUnwind section "));
5530 printf (_("'%s'"), SECTION_NAME (sec
));
5532 printf (_(" at offset 0x%lx contains %lu entries:\n"),
5533 (unsigned long) sec
->sh_offset
,
5534 (unsigned long) (sec
->sh_size
/ (2 * eh_addr_size
+ 8)));
5536 slurp_hppa_unwind_table (file
, &aux
, sec
);
5537 if (aux
.table_len
> 0)
5538 dump_hppa_unwind (&aux
);
5541 free ((char *) aux
.table
);
5549 free ((char *) aux
.strtab
);
5555 process_unwind (FILE *file
)
5557 struct unwind_handler
{
5559 int (*handler
)(FILE *file
);
5561 { EM_IA_64
, ia64_process_unwind
},
5562 { EM_PARISC
, hppa_process_unwind
},
5570 for (i
= 0; handlers
[i
].handler
!= NULL
; i
++)
5571 if (elf_header
.e_machine
== handlers
[i
].machtype
)
5572 return handlers
[i
].handler (file
);
5574 printf (_("\nThere are no unwind sections in this file.\n"));
5579 dynamic_section_mips_val (Elf_Internal_Dyn
*entry
)
5581 switch (entry
->d_tag
)
5584 if (entry
->d_un
.d_val
== 0)
5588 static const char * opts
[] =
5590 "QUICKSTART", "NOTPOT", "NO_LIBRARY_REPLACEMENT",
5591 "NO_MOVE", "SGI_ONLY", "GUARANTEE_INIT", "DELTA_C_PLUS_PLUS",
5592 "GUARANTEE_START_INIT", "PIXIE", "DEFAULT_DELAY_LOAD",
5593 "REQUICKSTART", "REQUICKSTARTED", "CORD", "NO_UNRES_UNDEF",
5598 for (cnt
= 0; cnt
< ARRAY_SIZE (opts
); ++cnt
)
5599 if (entry
->d_un
.d_val
& (1 << cnt
))
5601 printf ("%s%s", first
? "" : " ", opts
[cnt
]);
5608 case DT_MIPS_IVERSION
:
5609 if (VALID_DYNAMIC_NAME (entry
->d_un
.d_val
))
5610 printf ("Interface Version: %s\n", GET_DYNAMIC_NAME (entry
->d_un
.d_val
));
5612 printf ("<corrupt: %ld>\n", (long) entry
->d_un
.d_ptr
);
5615 case DT_MIPS_TIME_STAMP
:
5620 time_t time
= entry
->d_un
.d_val
;
5621 tmp
= gmtime (&time
);
5622 snprintf (timebuf
, sizeof (timebuf
), "%04u-%02u-%02uT%02u:%02u:%02u",
5623 tmp
->tm_year
+ 1900, tmp
->tm_mon
+ 1, tmp
->tm_mday
,
5624 tmp
->tm_hour
, tmp
->tm_min
, tmp
->tm_sec
);
5625 printf ("Time Stamp: %s\n", timebuf
);
5629 case DT_MIPS_RLD_VERSION
:
5630 case DT_MIPS_LOCAL_GOTNO
:
5631 case DT_MIPS_CONFLICTNO
:
5632 case DT_MIPS_LIBLISTNO
:
5633 case DT_MIPS_SYMTABNO
:
5634 case DT_MIPS_UNREFEXTNO
:
5635 case DT_MIPS_HIPAGENO
:
5636 case DT_MIPS_DELTA_CLASS_NO
:
5637 case DT_MIPS_DELTA_INSTANCE_NO
:
5638 case DT_MIPS_DELTA_RELOC_NO
:
5639 case DT_MIPS_DELTA_SYM_NO
:
5640 case DT_MIPS_DELTA_CLASSSYM_NO
:
5641 case DT_MIPS_COMPACT_SIZE
:
5642 printf ("%ld\n", (long) entry
->d_un
.d_ptr
);
5646 printf ("%#lx\n", (long) entry
->d_un
.d_ptr
);
5652 dynamic_section_parisc_val (Elf_Internal_Dyn
*entry
)
5654 switch (entry
->d_tag
)
5656 case DT_HP_DLD_FLAGS
:
5665 { DT_HP_DEBUG_PRIVATE
, "HP_DEBUG_PRIVATE" },
5666 { DT_HP_DEBUG_CALLBACK
, "HP_DEBUG_CALLBACK" },
5667 { DT_HP_DEBUG_CALLBACK_BOR
, "HP_DEBUG_CALLBACK_BOR" },
5668 { DT_HP_NO_ENVVAR
, "HP_NO_ENVVAR" },
5669 { DT_HP_BIND_NOW
, "HP_BIND_NOW" },
5670 { DT_HP_BIND_NONFATAL
, "HP_BIND_NONFATAL" },
5671 { DT_HP_BIND_VERBOSE
, "HP_BIND_VERBOSE" },
5672 { DT_HP_BIND_RESTRICTED
, "HP_BIND_RESTRICTED" },
5673 { DT_HP_BIND_SYMBOLIC
, "HP_BIND_SYMBOLIC" },
5674 { DT_HP_RPATH_FIRST
, "HP_RPATH_FIRST" },
5675 { DT_HP_BIND_DEPTH_FIRST
, "HP_BIND_DEPTH_FIRST" },
5676 { DT_HP_GST
, "HP_GST" },
5677 { DT_HP_SHLIB_FIXED
, "HP_SHLIB_FIXED" },
5678 { DT_HP_MERGE_SHLIB_SEG
, "HP_MERGE_SHLIB_SEG" },
5679 { DT_HP_NODELETE
, "HP_NODELETE" },
5680 { DT_HP_GROUP
, "HP_GROUP" },
5681 { DT_HP_PROTECT_LINKAGE_TABLE
, "HP_PROTECT_LINKAGE_TABLE" }
5685 bfd_vma val
= entry
->d_un
.d_val
;
5687 for (cnt
= 0; cnt
< ARRAY_SIZE (flags
); ++cnt
)
5688 if (val
& flags
[cnt
].bit
)
5692 fputs (flags
[cnt
].str
, stdout
);
5694 val
^= flags
[cnt
].bit
;
5697 if (val
!= 0 || first
)
5701 print_vma (val
, HEX
);
5707 print_vma (entry
->d_un
.d_ptr
, PREFIX_HEX
);
5714 dynamic_section_ia64_val (Elf_Internal_Dyn
*entry
)
5716 switch (entry
->d_tag
)
5718 case DT_IA_64_PLT_RESERVE
:
5719 /* First 3 slots reserved. */
5720 print_vma (entry
->d_un
.d_ptr
, PREFIX_HEX
);
5722 print_vma (entry
->d_un
.d_ptr
+ (3 * 8), PREFIX_HEX
);
5726 print_vma (entry
->d_un
.d_ptr
, PREFIX_HEX
);
5733 get_32bit_dynamic_section (FILE *file
)
5735 Elf32_External_Dyn
*edyn
, *ext
;
5736 Elf_Internal_Dyn
*entry
;
5738 edyn
= get_data (NULL
, file
, dynamic_addr
, 1, dynamic_size
,
5739 _("dynamic section"));
5743 /* SGI's ELF has more than one section in the DYNAMIC segment, and we
5744 might not have the luxury of section headers. Look for the DT_NULL
5745 terminator to determine the number of entries. */
5746 for (ext
= edyn
, dynamic_nent
= 0;
5747 (char *) ext
< (char *) edyn
+ dynamic_size
;
5751 if (BYTE_GET (ext
->d_tag
) == DT_NULL
)
5755 dynamic_section
= cmalloc (dynamic_nent
, sizeof (*entry
));
5756 if (dynamic_section
== NULL
)
5758 error (_("Out of memory\n"));
5763 for (ext
= edyn
, entry
= dynamic_section
;
5764 entry
< dynamic_section
+ dynamic_nent
;
5767 entry
->d_tag
= BYTE_GET (ext
->d_tag
);
5768 entry
->d_un
.d_val
= BYTE_GET (ext
->d_un
.d_val
);
5777 get_64bit_dynamic_section (FILE *file
)
5779 Elf64_External_Dyn
*edyn
, *ext
;
5780 Elf_Internal_Dyn
*entry
;
5782 edyn
= get_data (NULL
, file
, dynamic_addr
, 1, dynamic_size
,
5783 _("dynamic section"));
5787 /* SGI's ELF has more than one section in the DYNAMIC segment, and we
5788 might not have the luxury of section headers. Look for the DT_NULL
5789 terminator to determine the number of entries. */
5790 for (ext
= edyn
, dynamic_nent
= 0;
5791 (char *) ext
< (char *) edyn
+ dynamic_size
;
5795 if (BYTE_GET (ext
->d_tag
) == DT_NULL
)
5799 dynamic_section
= cmalloc (dynamic_nent
, sizeof (*entry
));
5800 if (dynamic_section
== NULL
)
5802 error (_("Out of memory\n"));
5807 for (ext
= edyn
, entry
= dynamic_section
;
5808 entry
< dynamic_section
+ dynamic_nent
;
5811 entry
->d_tag
= BYTE_GET (ext
->d_tag
);
5812 entry
->d_un
.d_val
= BYTE_GET (ext
->d_un
.d_val
);
5821 print_dynamic_flags (bfd_vma flags
)
5829 flag
= flags
& - flags
;
5839 case DF_ORIGIN
: fputs ("ORIGIN", stdout
); break;
5840 case DF_SYMBOLIC
: fputs ("SYMBOLIC", stdout
); break;
5841 case DF_TEXTREL
: fputs ("TEXTREL", stdout
); break;
5842 case DF_BIND_NOW
: fputs ("BIND_NOW", stdout
); break;
5843 case DF_STATIC_TLS
: fputs ("STATIC_TLS", stdout
); break;
5844 default: fputs ("unknown", stdout
); break;
5850 /* Parse and display the contents of the dynamic section. */
5853 process_dynamic_section (FILE *file
)
5855 Elf_Internal_Dyn
*entry
;
5857 if (dynamic_size
== 0)
5860 printf (_("\nThere is no dynamic section in this file.\n"));
5867 if (! get_32bit_dynamic_section (file
))
5870 else if (! get_64bit_dynamic_section (file
))
5873 /* Find the appropriate symbol table. */
5874 if (dynamic_symbols
== NULL
)
5876 for (entry
= dynamic_section
;
5877 entry
< dynamic_section
+ dynamic_nent
;
5880 Elf_Internal_Shdr section
;
5882 if (entry
->d_tag
!= DT_SYMTAB
)
5885 dynamic_info
[DT_SYMTAB
] = entry
->d_un
.d_val
;
5887 /* Since we do not know how big the symbol table is,
5888 we default to reading in the entire file (!) and
5889 processing that. This is overkill, I know, but it
5891 section
.sh_offset
= offset_from_vma (file
, entry
->d_un
.d_val
, 0);
5893 if (archive_file_offset
!= 0)
5894 section
.sh_size
= archive_file_size
- section
.sh_offset
;
5897 if (fseek (file
, 0, SEEK_END
))
5898 error (_("Unable to seek to end of file!\n"));
5900 section
.sh_size
= ftell (file
) - section
.sh_offset
;
5904 section
.sh_entsize
= sizeof (Elf32_External_Sym
);
5906 section
.sh_entsize
= sizeof (Elf64_External_Sym
);
5908 num_dynamic_syms
= section
.sh_size
/ section
.sh_entsize
;
5909 if (num_dynamic_syms
< 1)
5911 error (_("Unable to determine the number of symbols to load\n"));
5915 dynamic_symbols
= GET_ELF_SYMBOLS (file
, §ion
);
5919 /* Similarly find a string table. */
5920 if (dynamic_strings
== NULL
)
5922 for (entry
= dynamic_section
;
5923 entry
< dynamic_section
+ dynamic_nent
;
5926 unsigned long offset
;
5929 if (entry
->d_tag
!= DT_STRTAB
)
5932 dynamic_info
[DT_STRTAB
] = entry
->d_un
.d_val
;
5934 /* Since we do not know how big the string table is,
5935 we default to reading in the entire file (!) and
5936 processing that. This is overkill, I know, but it
5939 offset
= offset_from_vma (file
, entry
->d_un
.d_val
, 0);
5941 if (archive_file_offset
!= 0)
5942 str_tab_len
= archive_file_size
- offset
;
5945 if (fseek (file
, 0, SEEK_END
))
5946 error (_("Unable to seek to end of file\n"));
5947 str_tab_len
= ftell (file
) - offset
;
5950 if (str_tab_len
< 1)
5953 (_("Unable to determine the length of the dynamic string table\n"));
5957 dynamic_strings
= get_data (NULL
, file
, offset
, 1, str_tab_len
,
5958 _("dynamic string table"));
5959 dynamic_strings_length
= str_tab_len
;
5964 /* And find the syminfo section if available. */
5965 if (dynamic_syminfo
== NULL
)
5967 unsigned long syminsz
= 0;
5969 for (entry
= dynamic_section
;
5970 entry
< dynamic_section
+ dynamic_nent
;
5973 if (entry
->d_tag
== DT_SYMINENT
)
5975 /* Note: these braces are necessary to avoid a syntax
5976 error from the SunOS4 C compiler. */
5977 assert (sizeof (Elf_External_Syminfo
) == entry
->d_un
.d_val
);
5979 else if (entry
->d_tag
== DT_SYMINSZ
)
5980 syminsz
= entry
->d_un
.d_val
;
5981 else if (entry
->d_tag
== DT_SYMINFO
)
5982 dynamic_syminfo_offset
= offset_from_vma (file
, entry
->d_un
.d_val
,
5986 if (dynamic_syminfo_offset
!= 0 && syminsz
!= 0)
5988 Elf_External_Syminfo
*extsyminfo
, *extsym
;
5989 Elf_Internal_Syminfo
*syminfo
;
5991 /* There is a syminfo section. Read the data. */
5992 extsyminfo
= get_data (NULL
, file
, dynamic_syminfo_offset
, 1,
5993 syminsz
, _("symbol information"));
5997 dynamic_syminfo
= malloc (syminsz
);
5998 if (dynamic_syminfo
== NULL
)
6000 error (_("Out of memory\n"));
6004 dynamic_syminfo_nent
= syminsz
/ sizeof (Elf_External_Syminfo
);
6005 for (syminfo
= dynamic_syminfo
, extsym
= extsyminfo
;
6006 syminfo
< dynamic_syminfo
+ dynamic_syminfo_nent
;
6007 ++syminfo
, ++extsym
)
6009 syminfo
->si_boundto
= BYTE_GET (extsym
->si_boundto
);
6010 syminfo
->si_flags
= BYTE_GET (extsym
->si_flags
);
6017 if (do_dynamic
&& dynamic_addr
)
6018 printf (_("\nDynamic section at offset 0x%lx contains %u entries:\n"),
6019 dynamic_addr
, dynamic_nent
);
6021 printf (_(" Tag Type Name/Value\n"));
6023 for (entry
= dynamic_section
;
6024 entry
< dynamic_section
+ dynamic_nent
;
6032 print_vma (entry
->d_tag
, FULL_HEX
);
6033 dtype
= get_dynamic_type (entry
->d_tag
);
6034 printf (" (%s)%*s", dtype
,
6035 ((is_32bit_elf
? 27 : 19)
6036 - (int) strlen (dtype
)),
6040 switch (entry
->d_tag
)
6044 print_dynamic_flags (entry
->d_un
.d_val
);
6054 switch (entry
->d_tag
)
6057 printf (_("Auxiliary library"));
6061 printf (_("Filter library"));
6065 printf (_("Configuration file"));
6069 printf (_("Dependency audit library"));
6073 printf (_("Audit library"));
6077 if (VALID_DYNAMIC_NAME (entry
->d_un
.d_val
))
6078 printf (": [%s]\n", GET_DYNAMIC_NAME (entry
->d_un
.d_val
));
6082 print_vma (entry
->d_un
.d_val
, PREFIX_HEX
);
6091 printf (_("Flags:"));
6093 if (entry
->d_un
.d_val
== 0)
6094 printf (_(" None\n"));
6097 unsigned long int val
= entry
->d_un
.d_val
;
6099 if (val
& DTF_1_PARINIT
)
6101 printf (" PARINIT");
6102 val
^= DTF_1_PARINIT
;
6104 if (val
& DTF_1_CONFEXP
)
6106 printf (" CONFEXP");
6107 val
^= DTF_1_CONFEXP
;
6110 printf (" %lx", val
);
6119 printf (_("Flags:"));
6121 if (entry
->d_un
.d_val
== 0)
6122 printf (_(" None\n"));
6125 unsigned long int val
= entry
->d_un
.d_val
;
6127 if (val
& DF_P1_LAZYLOAD
)
6129 printf (" LAZYLOAD");
6130 val
^= DF_P1_LAZYLOAD
;
6132 if (val
& DF_P1_GROUPPERM
)
6134 printf (" GROUPPERM");
6135 val
^= DF_P1_GROUPPERM
;
6138 printf (" %lx", val
);
6147 printf (_("Flags:"));
6148 if (entry
->d_un
.d_val
== 0)
6149 printf (_(" None\n"));
6152 unsigned long int val
= entry
->d_un
.d_val
;
6159 if (val
& DF_1_GLOBAL
)
6164 if (val
& DF_1_GROUP
)
6169 if (val
& DF_1_NODELETE
)
6171 printf (" NODELETE");
6172 val
^= DF_1_NODELETE
;
6174 if (val
& DF_1_LOADFLTR
)
6176 printf (" LOADFLTR");
6177 val
^= DF_1_LOADFLTR
;
6179 if (val
& DF_1_INITFIRST
)
6181 printf (" INITFIRST");
6182 val
^= DF_1_INITFIRST
;
6184 if (val
& DF_1_NOOPEN
)
6189 if (val
& DF_1_ORIGIN
)
6194 if (val
& DF_1_DIRECT
)
6199 if (val
& DF_1_TRANS
)
6204 if (val
& DF_1_INTERPOSE
)
6206 printf (" INTERPOSE");
6207 val
^= DF_1_INTERPOSE
;
6209 if (val
& DF_1_NODEFLIB
)
6211 printf (" NODEFLIB");
6212 val
^= DF_1_NODEFLIB
;
6214 if (val
& DF_1_NODUMP
)
6219 if (val
& DF_1_CONLFAT
)
6221 printf (" CONLFAT");
6222 val
^= DF_1_CONLFAT
;
6225 printf (" %lx", val
);
6232 dynamic_info
[entry
->d_tag
] = entry
->d_un
.d_val
;
6234 puts (get_dynamic_type (entry
->d_un
.d_val
));
6254 dynamic_info
[entry
->d_tag
] = entry
->d_un
.d_val
;
6260 if (VALID_DYNAMIC_NAME (entry
->d_un
.d_val
))
6261 name
= GET_DYNAMIC_NAME (entry
->d_un
.d_val
);
6267 switch (entry
->d_tag
)
6270 printf (_("Shared library: [%s]"), name
);
6272 if (streq (name
, program_interpreter
))
6273 printf (_(" program interpreter"));
6277 printf (_("Library soname: [%s]"), name
);
6281 printf (_("Library rpath: [%s]"), name
);
6285 printf (_("Library runpath: [%s]"), name
);
6289 print_vma (entry
->d_un
.d_val
, PREFIX_HEX
);
6294 print_vma (entry
->d_un
.d_val
, PREFIX_HEX
);
6307 dynamic_info
[entry
->d_tag
] = entry
->d_un
.d_val
;
6311 case DT_INIT_ARRAYSZ
:
6312 case DT_FINI_ARRAYSZ
:
6313 case DT_GNU_CONFLICTSZ
:
6314 case DT_GNU_LIBLISTSZ
:
6317 print_vma (entry
->d_un
.d_val
, UNSIGNED
);
6318 printf (" (bytes)\n");
6328 print_vma (entry
->d_un
.d_val
, UNSIGNED
);
6341 if (entry
->d_tag
== DT_USED
6342 && VALID_DYNAMIC_NAME (entry
->d_un
.d_val
))
6344 char *name
= GET_DYNAMIC_NAME (entry
->d_un
.d_val
);
6348 printf (_("Not needed object: [%s]\n"), name
);
6353 print_vma (entry
->d_un
.d_val
, PREFIX_HEX
);
6359 /* The value of this entry is ignored. */
6364 case DT_GNU_PRELINKED
:
6368 time_t time
= entry
->d_un
.d_val
;
6370 tmp
= gmtime (&time
);
6371 printf ("%04u-%02u-%02uT%02u:%02u:%02u\n",
6372 tmp
->tm_year
+ 1900, tmp
->tm_mon
+ 1, tmp
->tm_mday
,
6373 tmp
->tm_hour
, tmp
->tm_min
, tmp
->tm_sec
);
6379 dynamic_info_DT_GNU_HASH
= entry
->d_un
.d_val
;
6382 print_vma (entry
->d_un
.d_val
, PREFIX_HEX
);
6388 if ((entry
->d_tag
>= DT_VERSYM
) && (entry
->d_tag
<= DT_VERNEEDNUM
))
6389 version_info
[DT_VERSIONTAGIDX (entry
->d_tag
)] =
6394 switch (elf_header
.e_machine
)
6397 case EM_MIPS_RS3_LE
:
6398 dynamic_section_mips_val (entry
);
6401 dynamic_section_parisc_val (entry
);
6404 dynamic_section_ia64_val (entry
);
6407 print_vma (entry
->d_un
.d_val
, PREFIX_HEX
);
6419 get_ver_flags (unsigned int flags
)
6421 static char buff
[32];
6428 if (flags
& VER_FLG_BASE
)
6429 strcat (buff
, "BASE ");
6431 if (flags
& VER_FLG_WEAK
)
6433 if (flags
& VER_FLG_BASE
)
6434 strcat (buff
, "| ");
6436 strcat (buff
, "WEAK ");
6439 if (flags
& ~(VER_FLG_BASE
| VER_FLG_WEAK
))
6440 strcat (buff
, "| <unknown>");
6445 /* Display the contents of the version sections. */
6447 process_version_sections (FILE *file
)
6449 Elf_Internal_Shdr
*section
;
6456 for (i
= 0, section
= section_headers
;
6457 i
< elf_header
.e_shnum
;
6460 switch (section
->sh_type
)
6462 case SHT_GNU_verdef
:
6464 Elf_External_Verdef
*edefs
;
6472 (_("\nVersion definition section '%s' contains %ld entries:\n"),
6473 SECTION_NAME (section
), section
->sh_info
);
6475 printf (_(" Addr: 0x"));
6476 printf_vma (section
->sh_addr
);
6477 printf (_(" Offset: %#08lx Link: %lx (%s)\n"),
6478 (unsigned long) section
->sh_offset
, section
->sh_link
,
6479 SECTION_HEADER_INDEX (section
->sh_link
)
6480 < elf_header
.e_shnum
6481 ? SECTION_NAME (SECTION_HEADER (section
->sh_link
))
6484 edefs
= get_data (NULL
, file
, section
->sh_offset
, 1,
6486 _("version definition section"));
6487 endbuf
= (char *) edefs
+ section
->sh_size
;
6491 for (idx
= cnt
= 0; cnt
< section
->sh_info
; ++cnt
)
6494 Elf_External_Verdef
*edef
;
6495 Elf_Internal_Verdef ent
;
6496 Elf_External_Verdaux
*eaux
;
6497 Elf_Internal_Verdaux aux
;
6501 vstart
= ((char *) edefs
) + idx
;
6502 if (vstart
+ sizeof (*edef
) > endbuf
)
6505 edef
= (Elf_External_Verdef
*) vstart
;
6507 ent
.vd_version
= BYTE_GET (edef
->vd_version
);
6508 ent
.vd_flags
= BYTE_GET (edef
->vd_flags
);
6509 ent
.vd_ndx
= BYTE_GET (edef
->vd_ndx
);
6510 ent
.vd_cnt
= BYTE_GET (edef
->vd_cnt
);
6511 ent
.vd_hash
= BYTE_GET (edef
->vd_hash
);
6512 ent
.vd_aux
= BYTE_GET (edef
->vd_aux
);
6513 ent
.vd_next
= BYTE_GET (edef
->vd_next
);
6515 printf (_(" %#06x: Rev: %d Flags: %s"),
6516 idx
, ent
.vd_version
, get_ver_flags (ent
.vd_flags
));
6518 printf (_(" Index: %d Cnt: %d "),
6519 ent
.vd_ndx
, ent
.vd_cnt
);
6521 vstart
+= ent
.vd_aux
;
6523 eaux
= (Elf_External_Verdaux
*) vstart
;
6525 aux
.vda_name
= BYTE_GET (eaux
->vda_name
);
6526 aux
.vda_next
= BYTE_GET (eaux
->vda_next
);
6528 if (VALID_DYNAMIC_NAME (aux
.vda_name
))
6529 printf (_("Name: %s\n"), GET_DYNAMIC_NAME (aux
.vda_name
));
6531 printf (_("Name index: %ld\n"), aux
.vda_name
);
6533 isum
= idx
+ ent
.vd_aux
;
6535 for (j
= 1; j
< ent
.vd_cnt
; j
++)
6537 isum
+= aux
.vda_next
;
6538 vstart
+= aux
.vda_next
;
6540 eaux
= (Elf_External_Verdaux
*) vstart
;
6541 if (vstart
+ sizeof (*eaux
) > endbuf
)
6544 aux
.vda_name
= BYTE_GET (eaux
->vda_name
);
6545 aux
.vda_next
= BYTE_GET (eaux
->vda_next
);
6547 if (VALID_DYNAMIC_NAME (aux
.vda_name
))
6548 printf (_(" %#06x: Parent %d: %s\n"),
6549 isum
, j
, GET_DYNAMIC_NAME (aux
.vda_name
));
6551 printf (_(" %#06x: Parent %d, name index: %ld\n"),
6552 isum
, j
, aux
.vda_name
);
6555 printf (_(" Version def aux past end of section\n"));
6559 if (cnt
< section
->sh_info
)
6560 printf (_(" Version definition past end of section\n"));
6566 case SHT_GNU_verneed
:
6568 Elf_External_Verneed
*eneed
;
6575 printf (_("\nVersion needs section '%s' contains %ld entries:\n"),
6576 SECTION_NAME (section
), section
->sh_info
);
6578 printf (_(" Addr: 0x"));
6579 printf_vma (section
->sh_addr
);
6580 printf (_(" Offset: %#08lx Link to section: %ld (%s)\n"),
6581 (unsigned long) section
->sh_offset
, section
->sh_link
,
6582 SECTION_HEADER_INDEX (section
->sh_link
)
6583 < elf_header
.e_shnum
6584 ? SECTION_NAME (SECTION_HEADER (section
->sh_link
))
6587 eneed
= get_data (NULL
, file
, section
->sh_offset
, 1,
6589 _("version need section"));
6590 endbuf
= (char *) eneed
+ section
->sh_size
;
6594 for (idx
= cnt
= 0; cnt
< section
->sh_info
; ++cnt
)
6596 Elf_External_Verneed
*entry
;
6597 Elf_Internal_Verneed ent
;
6602 vstart
= ((char *) eneed
) + idx
;
6603 if (vstart
+ sizeof (*entry
) > endbuf
)
6606 entry
= (Elf_External_Verneed
*) vstart
;
6608 ent
.vn_version
= BYTE_GET (entry
->vn_version
);
6609 ent
.vn_cnt
= BYTE_GET (entry
->vn_cnt
);
6610 ent
.vn_file
= BYTE_GET (entry
->vn_file
);
6611 ent
.vn_aux
= BYTE_GET (entry
->vn_aux
);
6612 ent
.vn_next
= BYTE_GET (entry
->vn_next
);
6614 printf (_(" %#06x: Version: %d"), idx
, ent
.vn_version
);
6616 if (VALID_DYNAMIC_NAME (ent
.vn_file
))
6617 printf (_(" File: %s"), GET_DYNAMIC_NAME (ent
.vn_file
));
6619 printf (_(" File: %lx"), ent
.vn_file
);
6621 printf (_(" Cnt: %d\n"), ent
.vn_cnt
);
6623 vstart
+= ent
.vn_aux
;
6625 for (j
= 0, isum
= idx
+ ent
.vn_aux
; j
< ent
.vn_cnt
; ++j
)
6627 Elf_External_Vernaux
*eaux
;
6628 Elf_Internal_Vernaux aux
;
6630 if (vstart
+ sizeof (*eaux
) > endbuf
)
6632 eaux
= (Elf_External_Vernaux
*) vstart
;
6634 aux
.vna_hash
= BYTE_GET (eaux
->vna_hash
);
6635 aux
.vna_flags
= BYTE_GET (eaux
->vna_flags
);
6636 aux
.vna_other
= BYTE_GET (eaux
->vna_other
);
6637 aux
.vna_name
= BYTE_GET (eaux
->vna_name
);
6638 aux
.vna_next
= BYTE_GET (eaux
->vna_next
);
6640 if (VALID_DYNAMIC_NAME (aux
.vna_name
))
6641 printf (_(" %#06x: Name: %s"),
6642 isum
, GET_DYNAMIC_NAME (aux
.vna_name
));
6644 printf (_(" %#06x: Name index: %lx"),
6645 isum
, aux
.vna_name
);
6647 printf (_(" Flags: %s Version: %d\n"),
6648 get_ver_flags (aux
.vna_flags
), aux
.vna_other
);
6650 isum
+= aux
.vna_next
;
6651 vstart
+= aux
.vna_next
;
6654 printf (_(" Version need aux past end of section\n"));
6658 if (cnt
< section
->sh_info
)
6659 printf (_(" Version need past end of section\n"));
6665 case SHT_GNU_versym
:
6667 Elf_Internal_Shdr
*link_section
;
6670 unsigned char *edata
;
6671 unsigned short *data
;
6673 Elf_Internal_Sym
*symbols
;
6674 Elf_Internal_Shdr
*string_sec
;
6677 if (SECTION_HEADER_INDEX (section
->sh_link
) >= elf_header
.e_shnum
)
6680 link_section
= SECTION_HEADER (section
->sh_link
);
6681 total
= section
->sh_size
/ sizeof (Elf_External_Versym
);
6683 if (SECTION_HEADER_INDEX (link_section
->sh_link
)
6684 >= elf_header
.e_shnum
)
6689 symbols
= GET_ELF_SYMBOLS (file
, link_section
);
6691 string_sec
= SECTION_HEADER (link_section
->sh_link
);
6693 strtab
= get_data (NULL
, file
, string_sec
->sh_offset
, 1,
6694 string_sec
->sh_size
, _("version string table"));
6698 printf (_("\nVersion symbols section '%s' contains %d entries:\n"),
6699 SECTION_NAME (section
), total
);
6701 printf (_(" Addr: "));
6702 printf_vma (section
->sh_addr
);
6703 printf (_(" Offset: %#08lx Link: %lx (%s)\n"),
6704 (unsigned long) section
->sh_offset
, section
->sh_link
,
6705 SECTION_NAME (link_section
));
6707 off
= offset_from_vma (file
,
6708 version_info
[DT_VERSIONTAGIDX (DT_VERSYM
)],
6709 total
* sizeof (short));
6710 edata
= get_data (NULL
, file
, off
, total
, sizeof (short),
6711 _("version symbol data"));
6718 data
= cmalloc (total
, sizeof (short));
6720 for (cnt
= total
; cnt
--;)
6721 data
[cnt
] = byte_get (edata
+ cnt
* sizeof (short),
6726 for (cnt
= 0; cnt
< total
; cnt
+= 4)
6729 int check_def
, check_need
;
6732 printf (" %03x:", cnt
);
6734 for (j
= 0; (j
< 4) && (cnt
+ j
) < total
; ++j
)
6735 switch (data
[cnt
+ j
])
6738 fputs (_(" 0 (*local*) "), stdout
);
6742 fputs (_(" 1 (*global*) "), stdout
);
6746 nn
= printf ("%4x%c", data
[cnt
+ j
] & 0x7fff,
6747 data
[cnt
+ j
] & 0x8000 ? 'h' : ' ');
6751 if (SECTION_HEADER_INDEX (symbols
[cnt
+ j
].st_shndx
)
6752 >= elf_header
.e_shnum
6753 || SECTION_HEADER (symbols
[cnt
+ j
].st_shndx
)->sh_type
6756 if (symbols
[cnt
+ j
].st_shndx
== SHN_UNDEF
)
6763 && version_info
[DT_VERSIONTAGIDX (DT_VERNEED
)])
6765 Elf_Internal_Verneed ivn
;
6766 unsigned long offset
;
6768 offset
= offset_from_vma
6769 (file
, version_info
[DT_VERSIONTAGIDX (DT_VERNEED
)],
6770 sizeof (Elf_External_Verneed
));
6774 Elf_Internal_Vernaux ivna
;
6775 Elf_External_Verneed evn
;
6776 Elf_External_Vernaux evna
;
6777 unsigned long a_off
;
6779 get_data (&evn
, file
, offset
, sizeof (evn
), 1,
6782 ivn
.vn_aux
= BYTE_GET (evn
.vn_aux
);
6783 ivn
.vn_next
= BYTE_GET (evn
.vn_next
);
6785 a_off
= offset
+ ivn
.vn_aux
;
6789 get_data (&evna
, file
, a_off
, sizeof (evna
),
6790 1, _("version need aux (2)"));
6792 ivna
.vna_next
= BYTE_GET (evna
.vna_next
);
6793 ivna
.vna_other
= BYTE_GET (evna
.vna_other
);
6795 a_off
+= ivna
.vna_next
;
6797 while (ivna
.vna_other
!= data
[cnt
+ j
]
6798 && ivna
.vna_next
!= 0);
6800 if (ivna
.vna_other
== data
[cnt
+ j
])
6802 ivna
.vna_name
= BYTE_GET (evna
.vna_name
);
6804 if (ivna
.vna_name
>= string_sec
->sh_size
)
6805 name
= _("*invalid*");
6807 name
= strtab
+ ivna
.vna_name
;
6808 nn
+= printf ("(%s%-*s",
6810 12 - (int) strlen (name
),
6816 offset
+= ivn
.vn_next
;
6818 while (ivn
.vn_next
);
6821 if (check_def
&& data
[cnt
+ j
] != 0x8001
6822 && version_info
[DT_VERSIONTAGIDX (DT_VERDEF
)])
6824 Elf_Internal_Verdef ivd
;
6825 Elf_External_Verdef evd
;
6826 unsigned long offset
;
6828 offset
= offset_from_vma
6829 (file
, version_info
[DT_VERSIONTAGIDX (DT_VERDEF
)],
6834 get_data (&evd
, file
, offset
, sizeof (evd
), 1,
6837 ivd
.vd_next
= BYTE_GET (evd
.vd_next
);
6838 ivd
.vd_ndx
= BYTE_GET (evd
.vd_ndx
);
6840 offset
+= ivd
.vd_next
;
6842 while (ivd
.vd_ndx
!= (data
[cnt
+ j
] & 0x7fff)
6843 && ivd
.vd_next
!= 0);
6845 if (ivd
.vd_ndx
== (data
[cnt
+ j
] & 0x7fff))
6847 Elf_External_Verdaux evda
;
6848 Elf_Internal_Verdaux ivda
;
6850 ivd
.vd_aux
= BYTE_GET (evd
.vd_aux
);
6852 get_data (&evda
, file
,
6853 offset
- ivd
.vd_next
+ ivd
.vd_aux
,
6855 _("version def aux"));
6857 ivda
.vda_name
= BYTE_GET (evda
.vda_name
);
6859 if (ivda
.vda_name
>= string_sec
->sh_size
)
6860 name
= _("*invalid*");
6862 name
= strtab
+ ivda
.vda_name
;
6863 nn
+= printf ("(%s%-*s",
6865 12 - (int) strlen (name
),
6871 printf ("%*c", 18 - nn
, ' ');
6889 printf (_("\nNo version information found in this file.\n"));
6895 get_symbol_binding (unsigned int binding
)
6897 static char buff
[32];
6901 case STB_LOCAL
: return "LOCAL";
6902 case STB_GLOBAL
: return "GLOBAL";
6903 case STB_WEAK
: return "WEAK";
6905 if (binding
>= STB_LOPROC
&& binding
<= STB_HIPROC
)
6906 snprintf (buff
, sizeof (buff
), _("<processor specific>: %d"),
6908 else if (binding
>= STB_LOOS
&& binding
<= STB_HIOS
)
6909 snprintf (buff
, sizeof (buff
), _("<OS specific>: %d"), binding
);
6911 snprintf (buff
, sizeof (buff
), _("<unknown>: %d"), binding
);
6917 get_symbol_type (unsigned int type
)
6919 static char buff
[32];
6923 case STT_NOTYPE
: return "NOTYPE";
6924 case STT_OBJECT
: return "OBJECT";
6925 case STT_FUNC
: return "FUNC";
6926 case STT_SECTION
: return "SECTION";
6927 case STT_FILE
: return "FILE";
6928 case STT_COMMON
: return "COMMON";
6929 case STT_TLS
: return "TLS";
6930 case STT_RELC
: return "RELC";
6931 case STT_SRELC
: return "SRELC";
6933 if (type
>= STT_LOPROC
&& type
<= STT_HIPROC
)
6935 if (elf_header
.e_machine
== EM_ARM
&& type
== STT_ARM_TFUNC
)
6936 return "THUMB_FUNC";
6938 if (elf_header
.e_machine
== EM_SPARCV9
&& type
== STT_REGISTER
)
6941 if (elf_header
.e_machine
== EM_PARISC
&& type
== STT_PARISC_MILLI
)
6942 return "PARISC_MILLI";
6944 snprintf (buff
, sizeof (buff
), _("<processor specific>: %d"), type
);
6946 else if (type
>= STT_LOOS
&& type
<= STT_HIOS
)
6948 if (elf_header
.e_machine
== EM_PARISC
)
6950 if (type
== STT_HP_OPAQUE
)
6952 if (type
== STT_HP_STUB
)
6956 snprintf (buff
, sizeof (buff
), _("<OS specific>: %d"), type
);
6959 snprintf (buff
, sizeof (buff
), _("<unknown>: %d"), type
);
6965 get_symbol_visibility (unsigned int visibility
)
6969 case STV_DEFAULT
: return "DEFAULT";
6970 case STV_INTERNAL
: return "INTERNAL";
6971 case STV_HIDDEN
: return "HIDDEN";
6972 case STV_PROTECTED
: return "PROTECTED";
6978 get_mips_symbol_other (unsigned int other
)
6982 case STO_OPTIONAL
: return "OPTIONAL";
6983 case STO_MIPS16
: return "MIPS16";
6984 default: return NULL
;
6989 get_symbol_other (unsigned int other
)
6991 const char * result
= NULL
;
6992 static char buff
[32];
6997 switch (elf_header
.e_machine
)
7000 result
= get_mips_symbol_other (other
);
7008 snprintf (buff
, sizeof buff
, _("<other>: %x"), other
);
7013 get_symbol_index_type (unsigned int type
)
7015 static char buff
[32];
7019 case SHN_UNDEF
: return "UND";
7020 case SHN_ABS
: return "ABS";
7021 case SHN_COMMON
: return "COM";
7023 if (type
== SHN_IA_64_ANSI_COMMON
7024 && elf_header
.e_machine
== EM_IA_64
7025 && elf_header
.e_ident
[EI_OSABI
] == ELFOSABI_HPUX
)
7027 else if (elf_header
.e_machine
== EM_X86_64
7028 && type
== SHN_X86_64_LCOMMON
)
7030 else if (type
== SHN_MIPS_SCOMMON
7031 && elf_header
.e_machine
== EM_MIPS
)
7033 else if (type
== SHN_MIPS_SUNDEFINED
7034 && elf_header
.e_machine
== EM_MIPS
)
7036 else if (type
>= SHN_LOPROC
&& type
<= SHN_HIPROC
)
7037 sprintf (buff
, "PRC[0x%04x]", type
);
7038 else if (type
>= SHN_LOOS
&& type
<= SHN_HIOS
)
7039 sprintf (buff
, "OS [0x%04x]", type
);
7040 else if (type
>= SHN_LORESERVE
&& type
<= SHN_HIRESERVE
)
7041 sprintf (buff
, "RSV[0x%04x]", type
);
7043 sprintf (buff
, "%3d", type
);
7051 get_dynamic_data (FILE *file
, unsigned int number
, unsigned int ent_size
)
7053 unsigned char *e_data
;
7056 e_data
= cmalloc (number
, ent_size
);
7060 error (_("Out of memory\n"));
7064 if (fread (e_data
, ent_size
, number
, file
) != number
)
7066 error (_("Unable to read in dynamic data\n"));
7070 i_data
= cmalloc (number
, sizeof (*i_data
));
7074 error (_("Out of memory\n"));
7080 i_data
[number
] = byte_get (e_data
+ number
* ent_size
, ent_size
);
7088 print_dynamic_symbol (bfd_vma si
, unsigned long hn
)
7090 Elf_Internal_Sym
*psym
;
7093 psym
= dynamic_symbols
+ si
;
7095 n
= print_vma (si
, DEC_5
);
7097 fputs (" " + n
, stdout
);
7098 printf (" %3lu: ", hn
);
7099 print_vma (psym
->st_value
, LONG_HEX
);
7101 print_vma (psym
->st_size
, DEC_5
);
7103 printf (" %6s", get_symbol_type (ELF_ST_TYPE (psym
->st_info
)));
7104 printf (" %6s", get_symbol_binding (ELF_ST_BIND (psym
->st_info
)));
7105 printf (" %3s", get_symbol_visibility (ELF_ST_VISIBILITY (psym
->st_other
)));
7106 /* Check to see if any other bits in the st_other field are set.
7107 Note - displaying this information disrupts the layout of the
7108 table being generated, but for the moment this case is very
7110 if (psym
->st_other
^ ELF_ST_VISIBILITY (psym
->st_other
))
7111 printf (" [%s] ", get_symbol_other (psym
->st_other
^ ELF_ST_VISIBILITY (psym
->st_other
)));
7112 printf (" %3.3s ", get_symbol_index_type (psym
->st_shndx
));
7113 if (VALID_DYNAMIC_NAME (psym
->st_name
))
7114 print_symbol (25, GET_DYNAMIC_NAME (psym
->st_name
));
7116 printf (" <corrupt: %14ld>", psym
->st_name
);
7120 /* Dump the symbol table. */
7122 process_symbol_table (FILE *file
)
7124 Elf_Internal_Shdr
*section
;
7125 bfd_vma nbuckets
= 0;
7126 bfd_vma nchains
= 0;
7127 bfd_vma
*buckets
= NULL
;
7128 bfd_vma
*chains
= NULL
;
7129 bfd_vma ngnubuckets
= 0;
7130 bfd_vma
*gnubuckets
= NULL
;
7131 bfd_vma
*gnuchains
= NULL
;
7132 bfd_vma gnusymidx
= 0;
7134 if (! do_syms
&& !do_histogram
)
7137 if (dynamic_info
[DT_HASH
]
7139 || (do_using_dynamic
&& dynamic_strings
!= NULL
)))
7141 unsigned char nb
[8];
7142 unsigned char nc
[8];
7143 int hash_ent_size
= 4;
7145 if ((elf_header
.e_machine
== EM_ALPHA
7146 || elf_header
.e_machine
== EM_S390
7147 || elf_header
.e_machine
== EM_S390_OLD
)
7148 && elf_header
.e_ident
[EI_CLASS
] == ELFCLASS64
)
7152 (archive_file_offset
7153 + offset_from_vma (file
, dynamic_info
[DT_HASH
],
7154 sizeof nb
+ sizeof nc
)),
7157 error (_("Unable to seek to start of dynamic information\n"));
7161 if (fread (nb
, hash_ent_size
, 1, file
) != 1)
7163 error (_("Failed to read in number of buckets\n"));
7167 if (fread (nc
, hash_ent_size
, 1, file
) != 1)
7169 error (_("Failed to read in number of chains\n"));
7173 nbuckets
= byte_get (nb
, hash_ent_size
);
7174 nchains
= byte_get (nc
, hash_ent_size
);
7176 buckets
= get_dynamic_data (file
, nbuckets
, hash_ent_size
);
7177 chains
= get_dynamic_data (file
, nchains
, hash_ent_size
);
7179 if (buckets
== NULL
|| chains
== NULL
)
7183 if (dynamic_info_DT_GNU_HASH
7185 || (do_using_dynamic
&& dynamic_strings
!= NULL
)))
7187 unsigned char nb
[16];
7188 bfd_vma i
, maxchain
= 0xffffffff, bitmaskwords
;
7189 bfd_vma buckets_vma
;
7192 (archive_file_offset
7193 + offset_from_vma (file
, dynamic_info_DT_GNU_HASH
,
7197 error (_("Unable to seek to start of dynamic information\n"));
7201 if (fread (nb
, 16, 1, file
) != 1)
7203 error (_("Failed to read in number of buckets\n"));
7207 ngnubuckets
= byte_get (nb
, 4);
7208 gnusymidx
= byte_get (nb
+ 4, 4);
7209 bitmaskwords
= byte_get (nb
+ 8, 4);
7210 buckets_vma
= dynamic_info_DT_GNU_HASH
+ 16;
7212 buckets_vma
+= bitmaskwords
* 4;
7214 buckets_vma
+= bitmaskwords
* 8;
7217 (archive_file_offset
7218 + offset_from_vma (file
, buckets_vma
, 4)),
7221 error (_("Unable to seek to start of dynamic information\n"));
7225 gnubuckets
= get_dynamic_data (file
, ngnubuckets
, 4);
7227 if (gnubuckets
== NULL
)
7230 for (i
= 0; i
< ngnubuckets
; i
++)
7231 if (gnubuckets
[i
] != 0)
7233 if (gnubuckets
[i
] < gnusymidx
)
7236 if (maxchain
== 0xffffffff || gnubuckets
[i
] > maxchain
)
7237 maxchain
= gnubuckets
[i
];
7240 if (maxchain
== 0xffffffff)
7243 maxchain
-= gnusymidx
;
7246 (archive_file_offset
7247 + offset_from_vma (file
, buckets_vma
7248 + 4 * (ngnubuckets
+ maxchain
), 4)),
7251 error (_("Unable to seek to start of dynamic information\n"));
7257 if (fread (nb
, 4, 1, file
) != 1)
7259 error (_("Failed to determine last chain length\n"));
7263 if (maxchain
+ 1 == 0)
7268 while ((byte_get (nb
, 4) & 1) == 0);
7271 (archive_file_offset
7272 + offset_from_vma (file
, buckets_vma
+ 4 * ngnubuckets
, 4)),
7275 error (_("Unable to seek to start of dynamic information\n"));
7279 gnuchains
= get_dynamic_data (file
, maxchain
, 4);
7281 if (gnuchains
== NULL
)
7285 if ((dynamic_info
[DT_HASH
] || dynamic_info_DT_GNU_HASH
)
7288 && dynamic_strings
!= NULL
)
7292 if (dynamic_info
[DT_HASH
])
7296 printf (_("\nSymbol table for image:\n"));
7298 printf (_(" Num Buc: Value Size Type Bind Vis Ndx Name\n"));
7300 printf (_(" Num Buc: Value Size Type Bind Vis Ndx Name\n"));
7302 for (hn
= 0; hn
< nbuckets
; hn
++)
7307 for (si
= buckets
[hn
]; si
< nchains
&& si
> 0; si
= chains
[si
])
7308 print_dynamic_symbol (si
, hn
);
7312 if (dynamic_info_DT_GNU_HASH
)
7314 printf (_("\nSymbol table of `.gnu.hash' for image:\n"));
7316 printf (_(" Num Buc: Value Size Type Bind Vis Ndx Name\n"));
7318 printf (_(" Num Buc: Value Size Type Bind Vis Ndx Name\n"));
7320 for (hn
= 0; hn
< ngnubuckets
; ++hn
)
7321 if (gnubuckets
[hn
] != 0)
7323 bfd_vma si
= gnubuckets
[hn
];
7324 bfd_vma off
= si
- gnusymidx
;
7328 print_dynamic_symbol (si
, hn
);
7331 while ((gnuchains
[off
++] & 1) == 0);
7335 else if (do_syms
&& !do_using_dynamic
)
7339 for (i
= 0, section
= section_headers
;
7340 i
< elf_header
.e_shnum
;
7344 char *strtab
= NULL
;
7345 unsigned long int strtab_size
= 0;
7346 Elf_Internal_Sym
*symtab
;
7347 Elf_Internal_Sym
*psym
;
7350 if ( section
->sh_type
!= SHT_SYMTAB
7351 && section
->sh_type
!= SHT_DYNSYM
)
7354 printf (_("\nSymbol table '%s' contains %lu entries:\n"),
7355 SECTION_NAME (section
),
7356 (unsigned long) (section
->sh_size
/ section
->sh_entsize
));
7358 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
7360 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
7362 symtab
= GET_ELF_SYMBOLS (file
, section
);
7366 if (section
->sh_link
== elf_header
.e_shstrndx
)
7368 strtab
= string_table
;
7369 strtab_size
= string_table_length
;
7371 else if (SECTION_HEADER_INDEX (section
->sh_link
) < elf_header
.e_shnum
)
7373 Elf_Internal_Shdr
*string_sec
;
7375 string_sec
= SECTION_HEADER (section
->sh_link
);
7377 strtab
= get_data (NULL
, file
, string_sec
->sh_offset
,
7378 1, string_sec
->sh_size
, _("string table"));
7379 strtab_size
= strtab
!= NULL
? string_sec
->sh_size
: 0;
7382 for (si
= 0, psym
= symtab
;
7383 si
< section
->sh_size
/ section
->sh_entsize
;
7386 printf ("%6d: ", si
);
7387 print_vma (psym
->st_value
, LONG_HEX
);
7389 print_vma (psym
->st_size
, DEC_5
);
7390 printf (" %-7s", get_symbol_type (ELF_ST_TYPE (psym
->st_info
)));
7391 printf (" %-6s", get_symbol_binding (ELF_ST_BIND (psym
->st_info
)));
7392 printf (" %-3s", get_symbol_visibility (ELF_ST_VISIBILITY (psym
->st_other
)));
7393 /* Check to see if any other bits in the st_other field are set.
7394 Note - displaying this information disrupts the layout of the
7395 table being generated, but for the moment this case is very rare. */
7396 if (psym
->st_other
^ ELF_ST_VISIBILITY (psym
->st_other
))
7397 printf (" [%s] ", get_symbol_other (psym
->st_other
^ ELF_ST_VISIBILITY (psym
->st_other
)));
7398 printf (" %4s ", get_symbol_index_type (psym
->st_shndx
));
7399 print_symbol (25, psym
->st_name
< strtab_size
7400 ? strtab
+ psym
->st_name
: "<corrupt>");
7402 if (section
->sh_type
== SHT_DYNSYM
&&
7403 version_info
[DT_VERSIONTAGIDX (DT_VERSYM
)] != 0)
7405 unsigned char data
[2];
7406 unsigned short vers_data
;
7407 unsigned long offset
;
7411 offset
= offset_from_vma
7412 (file
, version_info
[DT_VERSIONTAGIDX (DT_VERSYM
)],
7413 sizeof data
+ si
* sizeof (vers_data
));
7415 get_data (&data
, file
, offset
+ si
* sizeof (vers_data
),
7416 sizeof (data
), 1, _("version data"));
7418 vers_data
= byte_get (data
, 2);
7420 is_nobits
= (SECTION_HEADER_INDEX (psym
->st_shndx
)
7421 < elf_header
.e_shnum
7422 && SECTION_HEADER (psym
->st_shndx
)->sh_type
7425 check_def
= (psym
->st_shndx
!= SHN_UNDEF
);
7427 if ((vers_data
& 0x8000) || vers_data
> 1)
7429 if (version_info
[DT_VERSIONTAGIDX (DT_VERNEED
)]
7430 && (is_nobits
|| ! check_def
))
7432 Elf_External_Verneed evn
;
7433 Elf_Internal_Verneed ivn
;
7434 Elf_Internal_Vernaux ivna
;
7436 /* We must test both. */
7437 offset
= offset_from_vma
7438 (file
, version_info
[DT_VERSIONTAGIDX (DT_VERNEED
)],
7443 unsigned long vna_off
;
7445 get_data (&evn
, file
, offset
, sizeof (evn
), 1,
7448 ivn
.vn_aux
= BYTE_GET (evn
.vn_aux
);
7449 ivn
.vn_next
= BYTE_GET (evn
.vn_next
);
7451 vna_off
= offset
+ ivn
.vn_aux
;
7455 Elf_External_Vernaux evna
;
7457 get_data (&evna
, file
, vna_off
,
7459 _("version need aux (3)"));
7461 ivna
.vna_other
= BYTE_GET (evna
.vna_other
);
7462 ivna
.vna_next
= BYTE_GET (evna
.vna_next
);
7463 ivna
.vna_name
= BYTE_GET (evna
.vna_name
);
7465 vna_off
+= ivna
.vna_next
;
7467 while (ivna
.vna_other
!= vers_data
7468 && ivna
.vna_next
!= 0);
7470 if (ivna
.vna_other
== vers_data
)
7473 offset
+= ivn
.vn_next
;
7475 while (ivn
.vn_next
!= 0);
7477 if (ivna
.vna_other
== vers_data
)
7480 ivna
.vna_name
< strtab_size
7481 ? strtab
+ ivna
.vna_name
: "<corrupt>",
7485 else if (! is_nobits
)
7486 error (_("bad dynamic symbol\n"));
7493 if (vers_data
!= 0x8001
7494 && version_info
[DT_VERSIONTAGIDX (DT_VERDEF
)])
7496 Elf_Internal_Verdef ivd
;
7497 Elf_Internal_Verdaux ivda
;
7498 Elf_External_Verdaux evda
;
7499 unsigned long offset
;
7501 offset
= offset_from_vma
7503 version_info
[DT_VERSIONTAGIDX (DT_VERDEF
)],
7504 sizeof (Elf_External_Verdef
));
7508 Elf_External_Verdef evd
;
7510 get_data (&evd
, file
, offset
, sizeof (evd
),
7511 1, _("version def"));
7513 ivd
.vd_ndx
= BYTE_GET (evd
.vd_ndx
);
7514 ivd
.vd_aux
= BYTE_GET (evd
.vd_aux
);
7515 ivd
.vd_next
= BYTE_GET (evd
.vd_next
);
7517 offset
+= ivd
.vd_next
;
7519 while (ivd
.vd_ndx
!= (vers_data
& 0x7fff)
7520 && ivd
.vd_next
!= 0);
7522 offset
-= ivd
.vd_next
;
7523 offset
+= ivd
.vd_aux
;
7525 get_data (&evda
, file
, offset
, sizeof (evda
),
7526 1, _("version def aux"));
7528 ivda
.vda_name
= BYTE_GET (evda
.vda_name
);
7530 if (psym
->st_name
!= ivda
.vda_name
)
7531 printf ((vers_data
& 0x8000)
7533 ivda
.vda_name
< strtab_size
7534 ? strtab
+ ivda
.vda_name
: "<corrupt>");
7544 if (strtab
!= string_table
)
7550 (_("\nDynamic symbol information is not available for displaying symbols.\n"));
7552 if (do_histogram
&& buckets
!= NULL
)
7554 unsigned long *lengths
;
7555 unsigned long *counts
;
7558 unsigned long maxlength
= 0;
7559 unsigned long nzero_counts
= 0;
7560 unsigned long nsyms
= 0;
7562 printf (_("\nHistogram for bucket list length (total of %lu buckets):\n"),
7563 (unsigned long) nbuckets
);
7564 printf (_(" Length Number %% of total Coverage\n"));
7566 lengths
= calloc (nbuckets
, sizeof (*lengths
));
7567 if (lengths
== NULL
)
7569 error (_("Out of memory\n"));
7572 for (hn
= 0; hn
< nbuckets
; ++hn
)
7574 for (si
= buckets
[hn
]; si
> 0 && si
< nchains
; si
= chains
[si
])
7577 if (maxlength
< ++lengths
[hn
])
7582 counts
= calloc (maxlength
+ 1, sizeof (*counts
));
7585 error (_("Out of memory\n"));
7589 for (hn
= 0; hn
< nbuckets
; ++hn
)
7590 ++counts
[lengths
[hn
]];
7595 printf (" 0 %-10lu (%5.1f%%)\n",
7596 counts
[0], (counts
[0] * 100.0) / nbuckets
);
7597 for (i
= 1; i
<= maxlength
; ++i
)
7599 nzero_counts
+= counts
[i
] * i
;
7600 printf ("%7lu %-10lu (%5.1f%%) %5.1f%%\n",
7601 i
, counts
[i
], (counts
[i
] * 100.0) / nbuckets
,
7602 (nzero_counts
* 100.0) / nsyms
);
7610 if (buckets
!= NULL
)
7616 if (do_histogram
&& dynamic_info_DT_GNU_HASH
)
7618 unsigned long *lengths
;
7619 unsigned long *counts
;
7621 unsigned long maxlength
= 0;
7622 unsigned long nzero_counts
= 0;
7623 unsigned long nsyms
= 0;
7625 lengths
= calloc (ngnubuckets
, sizeof (*lengths
));
7626 if (lengths
== NULL
)
7628 error (_("Out of memory\n"));
7632 printf (_("\nHistogram for `.gnu.hash' bucket list length (total of %lu buckets):\n"),
7633 (unsigned long) ngnubuckets
);
7634 printf (_(" Length Number %% of total Coverage\n"));
7636 for (hn
= 0; hn
< ngnubuckets
; ++hn
)
7637 if (gnubuckets
[hn
] != 0)
7639 bfd_vma off
, length
= 1;
7641 for (off
= gnubuckets
[hn
] - gnusymidx
;
7642 (gnuchains
[off
] & 1) == 0; ++off
)
7644 lengths
[hn
] = length
;
7645 if (length
> maxlength
)
7650 counts
= calloc (maxlength
+ 1, sizeof (*counts
));
7653 error (_("Out of memory\n"));
7657 for (hn
= 0; hn
< ngnubuckets
; ++hn
)
7658 ++counts
[lengths
[hn
]];
7660 if (ngnubuckets
> 0)
7663 printf (" 0 %-10lu (%5.1f%%)\n",
7664 counts
[0], (counts
[0] * 100.0) / ngnubuckets
);
7665 for (j
= 1; j
<= maxlength
; ++j
)
7667 nzero_counts
+= counts
[j
] * j
;
7668 printf ("%7lu %-10lu (%5.1f%%) %5.1f%%\n",
7669 j
, counts
[j
], (counts
[j
] * 100.0) / ngnubuckets
,
7670 (nzero_counts
* 100.0) / nsyms
);
7684 process_syminfo (FILE *file ATTRIBUTE_UNUSED
)
7688 if (dynamic_syminfo
== NULL
7690 /* No syminfo, this is ok. */
7693 /* There better should be a dynamic symbol section. */
7694 if (dynamic_symbols
== NULL
|| dynamic_strings
== NULL
)
7698 printf (_("\nDynamic info segment at offset 0x%lx contains %d entries:\n"),
7699 dynamic_syminfo_offset
, dynamic_syminfo_nent
);
7701 printf (_(" Num: Name BoundTo Flags\n"));
7702 for (i
= 0; i
< dynamic_syminfo_nent
; ++i
)
7704 unsigned short int flags
= dynamic_syminfo
[i
].si_flags
;
7706 printf ("%4d: ", i
);
7707 if (VALID_DYNAMIC_NAME (dynamic_symbols
[i
].st_name
))
7708 print_symbol (30, GET_DYNAMIC_NAME (dynamic_symbols
[i
].st_name
));
7710 printf ("<corrupt: %19ld>", dynamic_symbols
[i
].st_name
);
7713 switch (dynamic_syminfo
[i
].si_boundto
)
7715 case SYMINFO_BT_SELF
:
7716 fputs ("SELF ", stdout
);
7718 case SYMINFO_BT_PARENT
:
7719 fputs ("PARENT ", stdout
);
7722 if (dynamic_syminfo
[i
].si_boundto
> 0
7723 && dynamic_syminfo
[i
].si_boundto
< dynamic_nent
7724 && VALID_DYNAMIC_NAME (dynamic_section
[dynamic_syminfo
[i
].si_boundto
].d_un
.d_val
))
7726 print_symbol (10, GET_DYNAMIC_NAME (dynamic_section
[dynamic_syminfo
[i
].si_boundto
].d_un
.d_val
));
7730 printf ("%-10d ", dynamic_syminfo
[i
].si_boundto
);
7734 if (flags
& SYMINFO_FLG_DIRECT
)
7736 if (flags
& SYMINFO_FLG_PASSTHRU
)
7737 printf (" PASSTHRU");
7738 if (flags
& SYMINFO_FLG_COPY
)
7740 if (flags
& SYMINFO_FLG_LAZYLOAD
)
7741 printf (" LAZYLOAD");
7749 #ifdef SUPPORT_DISASSEMBLY
7751 disassemble_section (Elf_Internal_Shdr
*section
, FILE *file
)
7753 printf (_("\nAssembly dump of section %s\n"),
7754 SECTION_NAME (section
));
7756 /* XXX -- to be done --- XXX */
7763 dump_section_as_strings (Elf_Internal_Shdr
*section
, FILE *file
)
7765 Elf_Internal_Shdr
*relsec
;
7766 bfd_size_type num_bytes
;
7771 char *name
= SECTION_NAME (section
);
7772 bfd_boolean some_strings_shown
;
7774 num_bytes
= section
->sh_size
;
7776 if (num_bytes
== 0 || section
->sh_type
== SHT_NOBITS
)
7778 printf (_("\nSection '%s' has no data to dump.\n"), name
);
7782 addr
= section
->sh_addr
;
7784 start
= get_data (NULL
, file
, section
->sh_offset
, 1, num_bytes
,
7789 printf (_("\nString dump of section '%s':\n"), name
);
7791 /* If the section being dumped has relocations against it the user might
7792 be expecting these relocations to have been applied. Check for this
7793 case and issue a warning message in order to avoid confusion.
7794 FIXME: Maybe we ought to have an option that dumps a section with
7796 for (relsec
= section_headers
;
7797 relsec
< section_headers
+ elf_header
.e_shnum
;
7800 if ((relsec
->sh_type
!= SHT_RELA
&& relsec
->sh_type
!= SHT_REL
)
7801 || SECTION_HEADER_INDEX (relsec
->sh_info
) >= elf_header
.e_shnum
7802 || SECTION_HEADER (relsec
->sh_info
) != section
7803 || relsec
->sh_size
== 0
7804 || SECTION_HEADER_INDEX (relsec
->sh_link
) >= elf_header
.e_shnum
)
7807 printf (_(" Note: This section has relocations against it, but these have NOT been applied to this dump.\n"));
7812 end
= start
+ num_bytes
;
7813 some_strings_shown
= FALSE
;
7817 while (!ISPRINT (* data
))
7823 printf (" [%6tx] %s\n", data
- start
, data
);
7824 data
+= strlen (data
);
7825 some_strings_shown
= TRUE
;
7829 if (! some_strings_shown
)
7830 printf (_(" No strings found in this section."));
7840 dump_section_as_bytes (Elf_Internal_Shdr
*section
, FILE *file
)
7842 Elf_Internal_Shdr
*relsec
;
7843 bfd_size_type bytes
;
7845 unsigned char *data
;
7846 unsigned char *start
;
7848 bytes
= section
->sh_size
;
7850 if (bytes
== 0 || section
->sh_type
== SHT_NOBITS
)
7852 printf (_("\nSection '%s' has no data to dump.\n"),
7853 SECTION_NAME (section
));
7857 printf (_("\nHex dump of section '%s':\n"), SECTION_NAME (section
));
7859 addr
= section
->sh_addr
;
7861 start
= get_data (NULL
, file
, section
->sh_offset
, 1, bytes
,
7866 /* If the section being dumped has relocations against it the user might
7867 be expecting these relocations to have been applied. Check for this
7868 case and issue a warning message in order to avoid confusion.
7869 FIXME: Maybe we ought to have an option that dumps a section with
7871 for (relsec
= section_headers
;
7872 relsec
< section_headers
+ elf_header
.e_shnum
;
7875 if ((relsec
->sh_type
!= SHT_RELA
&& relsec
->sh_type
!= SHT_REL
)
7876 || SECTION_HEADER_INDEX (relsec
->sh_info
) >= elf_header
.e_shnum
7877 || SECTION_HEADER (relsec
->sh_info
) != section
7878 || relsec
->sh_size
== 0
7879 || SECTION_HEADER_INDEX (relsec
->sh_link
) >= elf_header
.e_shnum
)
7882 printf (_(" NOTE: This section has relocations against it, but these have NOT been applied to this dump.\n"));
7894 lbytes
= (bytes
> 16 ? 16 : bytes
);
7896 printf (" 0x%8.8lx ", (unsigned long) addr
);
7898 for (j
= 0; j
< 16; j
++)
7901 printf ("%2.2x", data
[j
]);
7909 for (j
= 0; j
< lbytes
; j
++)
7912 if (k
>= ' ' && k
< 0x7f)
7931 /* Returns TRUE iff RELOC_TYPE is a 32-bit absolute RELA relocation used in
7932 DWARF debug sections. This is a target specific test. Note - we do not
7933 go through the whole including-target-headers-multiple-times route, (as
7934 we have already done with <elf/h8.h>) because this would become very
7935 messy and even then this function would have to contain target specific
7936 information (the names of the relocs instead of their numeric values).
7937 FIXME: This is not the correct way to solve this problem. The proper way
7938 is to have target specific reloc sizing and typing functions created by
7939 the reloc-macros.h header, in the same way that it already creates the
7940 reloc naming functions. */
7943 is_32bit_abs_reloc (unsigned int reloc_type
)
7945 switch (elf_header
.e_machine
)
7949 return reloc_type
== 1; /* R_386_32. */
7951 return reloc_type
== 1; /* R_68K_32. */
7953 return reloc_type
== 1; /* R_860_32. */
7955 return reloc_type
== 1; /* XXX Is this right ? */
7957 return reloc_type
== 1; /* R_ARC_32. */
7959 return reloc_type
== 2; /* R_ARM_ABS32 */
7962 return reloc_type
== 1;
7964 return reloc_type
== 0x12; /* R_byte4_data. */
7966 return reloc_type
== 3; /* R_CRIS_32. */
7968 return reloc_type
== 3; /* R_CR16_NUM32. */
7970 return reloc_type
== 15; /* R_CRX_NUM32. */
7972 return reloc_type
== 1;
7973 case EM_CYGNUS_D10V
:
7975 return reloc_type
== 6; /* R_D10V_32. */
7976 case EM_CYGNUS_D30V
:
7978 return reloc_type
== 12; /* R_D30V_32_NORMAL. */
7980 return reloc_type
== 3; /* R_DLX_RELOC_32. */
7981 case EM_CYGNUS_FR30
:
7983 return reloc_type
== 3; /* R_FR30_32. */
7987 return reloc_type
== 1; /* R_H8_DIR32. */
7989 return reloc_type
== 0x65; /* R_IA64_SECREL32LSB. */
7992 return reloc_type
== 2; /* R_IP2K_32. */
7994 return reloc_type
== 2; /* R_IQ2000_32. */
7996 return reloc_type
== 3; /* R_M32C_32. */
7998 return reloc_type
== 34; /* R_M32R_32_RELA. */
8000 return reloc_type
== 1; /* R_MCORE_ADDR32. */
8002 return reloc_type
== 4; /* R_MEP_32. */
8004 return reloc_type
== 2; /* R_MIPS_32. */
8006 return reloc_type
== 4; /* R_MMIX_32. */
8007 case EM_CYGNUS_MN10200
:
8009 return reloc_type
== 1; /* R_MN10200_32. */
8010 case EM_CYGNUS_MN10300
:
8012 return reloc_type
== 1; /* R_MN10300_32. */
8015 return reloc_type
== 1; /* R_MSP43_32. */
8017 return reloc_type
== 2; /* R_MT_32. */
8018 case EM_ALTERA_NIOS2
:
8020 return reloc_type
== 1; /* R_NIOS_32. */
8023 return reloc_type
== 1; /* R_OR32_32. */
8025 return reloc_type
== 1; /* R_PARISC_DIR32. */
8028 return reloc_type
== 1; /* R_PJ_DATA_DIR32. */
8030 return reloc_type
== 1; /* R_PPC64_ADDR32. */
8032 return reloc_type
== 1; /* R_PPC_ADDR32. */
8034 return reloc_type
== 1; /* R_I370_ADDR31. */
8037 return reloc_type
== 4; /* R_S390_32. */
8039 return reloc_type
== 8; /* R_SCORE_ABS32. */
8041 return reloc_type
== 1; /* R_SH_DIR32. */
8042 case EM_SPARC32PLUS
:
8045 return reloc_type
== 3 /* R_SPARC_32. */
8046 || reloc_type
== 23; /* R_SPARC_UA32. */
8048 return reloc_type
== 6; /* R_SPU_ADDR32 */
8049 case EM_CYGNUS_V850
:
8051 return reloc_type
== 6; /* R_V850_ABS32. */
8053 return reloc_type
== 1; /* R_VAX_32. */
8055 return reloc_type
== 10; /* R_X86_64_32. */
8057 return reloc_type
== 1; /* R_XSTROMY16_32. */
8060 return reloc_type
== 1; /* R_XTENSA_32. */
8063 error (_("Missing knowledge of 32-bit reloc types used in DWARF sections of machine number %d\n"),
8064 elf_header
.e_machine
);
8069 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
8070 a 32-bit pc-relative RELA relocation used in DWARF debug sections. */
8073 is_32bit_pcrel_reloc (unsigned int reloc_type
)
8075 switch (elf_header
.e_machine
)
8079 return reloc_type
== 2; /* R_386_PC32. */
8081 return reloc_type
== 4; /* R_68K_PC32. */
8083 return reloc_type
== 10; /* R_ALPHA_SREL32. */
8085 return reloc_type
== 3; /* R_ARM_REL32 */
8087 return reloc_type
== 0; /* R_PARISC_NONE. *//* FIXME: This reloc is generated, but it may be a bug. */
8089 return reloc_type
== 26; /* R_PPC_REL32. */
8091 return reloc_type
== 26; /* R_PPC64_REL32. */
8094 return reloc_type
== 5; /* R_390_PC32. */
8096 return reloc_type
== 2; /* R_SH_REL32. */
8097 case EM_SPARC32PLUS
:
8100 return reloc_type
== 6; /* R_SPARC_DISP32. */
8102 return reloc_type
== 13; /* R_SPU_REL32. */
8104 return reloc_type
== 2; /* R_X86_64_PC32. */
8107 return reloc_type
== 14; /* R_XTENSA_32_PCREL. */
8109 /* Do not abort or issue an error message here. Not all targets use
8110 pc-relative 32-bit relocs in their DWARF debug information and we
8111 have already tested for target coverage in is_32bit_abs_reloc. A
8112 more helpful warning message will be generated by
8113 debug_apply_relocations anyway, so just return. */
8118 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
8119 a 64-bit absolute RELA relocation used in DWARF debug sections. */
8122 is_64bit_abs_reloc (unsigned int reloc_type
)
8124 switch (elf_header
.e_machine
)
8127 return reloc_type
== 2; /* R_ALPHA_REFQUAD. */
8129 return reloc_type
== 0x27; /* R_IA64_DIR64LSB. */
8131 return reloc_type
== 80; /* R_PARISC_DIR64. */
8133 return reloc_type
== 38; /* R_PPC64_ADDR64. */
8134 case EM_SPARC32PLUS
:
8137 return reloc_type
== 54; /* R_SPARC_UA64. */
8139 return reloc_type
== 1; /* R_X86_64_64. */
8145 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
8146 a 16-bit absolute RELA relocation used in DWARF debug sections. */
8149 is_16bit_abs_reloc (unsigned int reloc_type
)
8151 switch (elf_header
.e_machine
)
8155 return reloc_type
== 4; /* R_AVR_16. */
8156 case EM_CYGNUS_D10V
:
8158 return reloc_type
== 3; /* R_D10V_16. */
8162 return reloc_type
== R_H8_DIR16
;
8165 return reloc_type
== 1; /* R_IP2K_16. */
8168 return reloc_type
== 5; /* R_MSP430_16_BYTE. */
8169 case EM_ALTERA_NIOS2
:
8171 return reloc_type
== 9; /* R_NIOS_16. */
8177 /* Apply relocations to a debug section. */
8180 debug_apply_relocations (void *file
,
8181 Elf_Internal_Shdr
*section
,
8182 unsigned char *start
)
8184 Elf_Internal_Shdr
*relsec
;
8185 unsigned char *end
= start
+ section
->sh_size
;
8187 if (elf_header
.e_type
!= ET_REL
)
8190 /* Find the reloc section associated with the debug section. */
8191 for (relsec
= section_headers
;
8192 relsec
< section_headers
+ elf_header
.e_shnum
;
8195 bfd_boolean is_rela
;
8196 unsigned long num_relocs
;
8197 Elf_Internal_Rela
*relocs
, *rp
;
8198 Elf_Internal_Shdr
*symsec
;
8199 Elf_Internal_Sym
*symtab
;
8200 Elf_Internal_Sym
*sym
;
8202 if ((relsec
->sh_type
!= SHT_RELA
&& relsec
->sh_type
!= SHT_REL
)
8203 || SECTION_HEADER_INDEX (relsec
->sh_info
) >= elf_header
.e_shnum
8204 || SECTION_HEADER (relsec
->sh_info
) != section
8205 || relsec
->sh_size
== 0
8206 || SECTION_HEADER_INDEX (relsec
->sh_link
) >= elf_header
.e_shnum
)
8209 is_rela
= relsec
->sh_type
== SHT_RELA
;
8213 if (!slurp_rela_relocs (file
, relsec
->sh_offset
, relsec
->sh_size
,
8214 & relocs
, & num_relocs
))
8219 if (!slurp_rel_relocs (file
, relsec
->sh_offset
, relsec
->sh_size
,
8220 & relocs
, & num_relocs
))
8224 /* SH uses RELA but uses in place value instead of the addend field. */
8225 if (elf_header
.e_machine
== EM_SH
)
8228 symsec
= SECTION_HEADER (relsec
->sh_link
);
8229 symtab
= GET_ELF_SYMBOLS (file
, symsec
);
8231 for (rp
= relocs
; rp
< relocs
+ num_relocs
; ++rp
)
8234 unsigned int reloc_type
;
8235 unsigned int reloc_size
;
8236 unsigned char * loc
;
8238 /* In MIPS little-endian objects, r_info isn't really a
8239 64-bit little-endian value: it has a 32-bit little-endian
8240 symbol index followed by four individual byte fields.
8241 Reorder INFO accordingly. */
8243 && elf_header
.e_machine
== EM_MIPS
8244 && elf_header
.e_ident
[EI_DATA
] != ELFDATA2MSB
)
8245 rp
->r_info
= (((rp
->r_info
& 0xffffffff) << 32)
8246 | ((rp
->r_info
>> 56) & 0xff)
8247 | ((rp
->r_info
>> 40) & 0xff00)
8248 | ((rp
->r_info
>> 24) & 0xff0000)
8249 | ((rp
->r_info
>> 8) & 0xff000000));
8251 reloc_type
= get_reloc_type (rp
->r_info
);
8253 if (is_32bit_abs_reloc (reloc_type
)
8254 || is_32bit_pcrel_reloc (reloc_type
))
8256 else if (is_64bit_abs_reloc (reloc_type
))
8258 else if (is_16bit_abs_reloc (reloc_type
))
8262 warn (_("unable to apply unsupported reloc type %d to section %s\n"),
8263 reloc_type
, SECTION_NAME (section
));
8267 loc
= start
+ rp
->r_offset
;
8268 if ((loc
+ reloc_size
) > end
)
8270 warn (_("skipping invalid relocation offset 0x%lx in section %s\n"),
8271 (unsigned long) rp
->r_offset
,
8272 SECTION_NAME (section
));
8276 sym
= symtab
+ get_reloc_symindex (rp
->r_info
);
8278 /* If the reloc has a symbol associated with it,
8279 make sure that it is of an appropriate type. */
8281 && ELF_ST_TYPE (sym
->st_info
) != STT_SECTION
8282 /* Relocations against symbols without type can happen.
8283 Gcc -feliminate-dwarf2-dups may generate symbols
8284 without type for debug info. */
8285 && ELF_ST_TYPE (sym
->st_info
) != STT_NOTYPE
8286 /* Relocations against object symbols can happen,
8287 eg when referencing a global array. For an
8288 example of this see the _clz.o binary in libgcc.a. */
8289 && ELF_ST_TYPE (sym
->st_info
) != STT_OBJECT
)
8291 warn (_("skipping unexpected symbol type %s in %ld'th relocation in section %s\n"),
8292 get_symbol_type (ELF_ST_TYPE (sym
->st_info
)),
8293 (long int)(rp
- relocs
),
8294 SECTION_NAME (relsec
));
8298 addend
= is_rela
? rp
->r_addend
: byte_get (loc
, reloc_size
);
8300 if (is_32bit_pcrel_reloc (reloc_type
))
8301 byte_put (loc
, (addend
+ sym
->st_value
) - rp
->r_offset
,
8304 byte_put (loc
, addend
+ sym
->st_value
, reloc_size
);
8314 load_debug_section (enum dwarf_section_display_enum debug
, void *file
)
8316 struct dwarf_section
*section
= &debug_displays
[debug
].section
;
8317 Elf_Internal_Shdr
*sec
;
8320 /* If it is already loaded, do nothing. */
8321 if (section
->start
!= NULL
)
8324 /* Locate the debug section. */
8325 sec
= find_section (section
->name
);
8329 snprintf (buf
, sizeof (buf
), _("%s section data"), section
->name
);
8330 section
->address
= sec
->sh_addr
;
8331 section
->size
= sec
->sh_size
;
8332 section
->start
= get_data (NULL
, file
, sec
->sh_offset
, 1,
8335 if (debug_displays
[debug
].relocate
)
8336 debug_apply_relocations (file
, sec
, section
->start
);
8338 return section
->start
!= NULL
;
8342 free_debug_section (enum dwarf_section_display_enum debug
)
8344 struct dwarf_section
*section
= &debug_displays
[debug
].section
;
8346 if (section
->start
== NULL
)
8349 free ((char *) section
->start
);
8350 section
->start
= NULL
;
8351 section
->address
= 0;
8356 display_debug_section (Elf_Internal_Shdr
*section
, FILE *file
)
8358 char *name
= SECTION_NAME (section
);
8359 bfd_size_type length
;
8361 enum dwarf_section_display_enum i
;
8363 length
= section
->sh_size
;
8366 printf (_("\nSection '%s' has no debugging data.\n"), name
);
8370 if (const_strneq (name
, ".gnu.linkonce.wi."))
8371 name
= ".debug_info";
8373 /* See if we know how to display the contents of this section. */
8374 for (i
= 0; i
< max
; i
++)
8375 if (streq (debug_displays
[i
].section
.name
, name
))
8377 struct dwarf_section
*sec
= &debug_displays
[i
].section
;
8379 if (load_debug_section (i
, file
))
8381 result
&= debug_displays
[i
].display (sec
, file
);
8383 if (i
!= info
&& i
!= abbrev
)
8384 free_debug_section (i
);
8392 printf (_("Unrecognized debug section: %s\n"), name
);
8399 /* Set DUMP_SECTS for all sections where dumps were requested
8400 based on section name. */
8403 initialise_dumps_byname (void)
8405 struct dump_list_entry
*cur
;
8407 for (cur
= dump_sects_byname
; cur
; cur
= cur
->next
)
8412 for (i
= 0, any
= 0; i
< elf_header
.e_shnum
; i
++)
8413 if (streq (SECTION_NAME (section_headers
+ i
), cur
->name
))
8415 request_dump_bynumber (i
, cur
->type
);
8420 warn (_("Section '%s' was not dumped because it does not exist!\n"),
8426 process_section_contents (FILE *file
)
8428 Elf_Internal_Shdr
*section
;
8434 initialise_dumps_byname ();
8436 for (i
= 0, section
= section_headers
;
8437 i
< elf_header
.e_shnum
&& i
< num_dump_sects
;
8440 #ifdef SUPPORT_DISASSEMBLY
8441 if (dump_sects
[i
] & DISASS_DUMP
)
8442 disassemble_section (section
, file
);
8444 if (dump_sects
[i
] & HEX_DUMP
)
8445 dump_section_as_bytes (section
, file
);
8447 if (dump_sects
[i
] & DEBUG_DUMP
)
8448 display_debug_section (section
, file
);
8450 if (dump_sects
[i
] & STRING_DUMP
)
8451 dump_section_as_strings (section
, file
);
8454 /* Check to see if the user requested a
8455 dump of a section that does not exist. */
8456 while (i
++ < num_dump_sects
)
8458 warn (_("Section %d was not dumped because it does not exist!\n"), i
);
8462 process_mips_fpe_exception (int mask
)
8467 if (mask
& OEX_FPU_INEX
)
8468 fputs ("INEX", stdout
), first
= 0;
8469 if (mask
& OEX_FPU_UFLO
)
8470 printf ("%sUFLO", first
? "" : "|"), first
= 0;
8471 if (mask
& OEX_FPU_OFLO
)
8472 printf ("%sOFLO", first
? "" : "|"), first
= 0;
8473 if (mask
& OEX_FPU_DIV0
)
8474 printf ("%sDIV0", first
? "" : "|"), first
= 0;
8475 if (mask
& OEX_FPU_INVAL
)
8476 printf ("%sINVAL", first
? "" : "|");
8479 fputs ("0", stdout
);
8482 /* ARM EABI attributes section. */
8487 /* 0 = special, 1 = string, 2 = uleb123, > 0x80 == table lookup. */
8490 } arm_attr_public_tag
;
8492 static const char *arm_attr_tag_CPU_arch
[] =
8493 {"Pre-v4", "v4", "v4T", "v5T", "v5TE", "v5TEJ", "v6", "v6KZ", "v6T2",
8495 static const char *arm_attr_tag_ARM_ISA_use
[] = {"No", "Yes"};
8496 static const char *arm_attr_tag_THUMB_ISA_use
[] =
8497 {"No", "Thumb-1", "Thumb-2"};
8498 /* FIXME: VFPv3 encoding was extrapolated! */
8499 static const char *arm_attr_tag_VFP_arch
[] = {"No", "VFPv1", "VFPv2", "VFPv3"};
8500 static const char *arm_attr_tag_WMMX_arch
[] = {"No", "WMMXv1"};
8501 static const char *arm_attr_tag_NEON_arch
[] = {"No", "NEONv1"};
8502 static const char *arm_attr_tag_ABI_PCS_config
[] =
8503 {"None", "Bare platform", "Linux application", "Linux DSO", "PalmOS 2004",
8504 "PalmOS (reserved)", "SymbianOS 2004", "SymbianOS (reserved)"};
8505 static const char *arm_attr_tag_ABI_PCS_R9_use
[] =
8506 {"V6", "SB", "TLS", "Unused"};
8507 static const char *arm_attr_tag_ABI_PCS_RW_data
[] =
8508 {"Absolute", "PC-relative", "SB-relative", "None"};
8509 static const char *arm_attr_tag_ABI_PCS_RO_DATA
[] =
8510 {"Absolute", "PC-relative", "None"};
8511 static const char *arm_attr_tag_ABI_PCS_GOT_use
[] =
8512 {"None", "direct", "GOT-indirect"};
8513 static const char *arm_attr_tag_ABI_PCS_wchar_t
[] =
8514 {"None", "??? 1", "2", "??? 3", "4"};
8515 static const char *arm_attr_tag_ABI_FP_rounding
[] = {"Unused", "Needed"};
8516 static const char *arm_attr_tag_ABI_FP_denormal
[] = {"Unused", "Needed"};
8517 static const char *arm_attr_tag_ABI_FP_exceptions
[] = {"Unused", "Needed"};
8518 static const char *arm_attr_tag_ABI_FP_user_exceptions
[] = {"Unused", "Needed"};
8519 static const char *arm_attr_tag_ABI_FP_number_model
[] =
8520 {"Unused", "Finite", "RTABI", "IEEE 754"};
8521 static const char *arm_attr_tag_ABI_align8_needed
[] = {"No", "Yes", "4-byte"};
8522 static const char *arm_attr_tag_ABI_align8_preserved
[] =
8523 {"No", "Yes, except leaf SP", "Yes"};
8524 static const char *arm_attr_tag_ABI_enum_size
[] =
8525 {"Unused", "small", "int", "forced to int"};
8526 static const char *arm_attr_tag_ABI_HardFP_use
[] =
8527 {"As Tag_VFP_arch", "SP only", "DP only", "SP and DP"};
8528 static const char *arm_attr_tag_ABI_VFP_args
[] =
8529 {"AAPCS", "VFP registers", "custom"};
8530 static const char *arm_attr_tag_ABI_WMMX_args
[] =
8531 {"AAPCS", "WMMX registers", "custom"};
8532 static const char *arm_attr_tag_ABI_optimization_goals
[] =
8533 {"None", "Prefer Speed", "Aggressive Speed", "Prefer Size",
8534 "Aggressive Size", "Prefer Debug", "Aggressive Debug"};
8535 static const char *arm_attr_tag_ABI_FP_optimization_goals
[] =
8536 {"None", "Prefer Speed", "Aggressive Speed", "Prefer Size",
8537 "Aggressive Size", "Prefer Accuracy", "Aggressive Accuracy"};
8539 #define LOOKUP(id, name) \
8540 {id, #name, 0x80 | ARRAY_SIZE(arm_attr_tag_##name), arm_attr_tag_##name}
8541 static arm_attr_public_tag arm_attr_public_tags
[] =
8543 {4, "CPU_raw_name", 1, NULL
},
8544 {5, "CPU_name", 1, NULL
},
8545 LOOKUP(6, CPU_arch
),
8546 {7, "CPU_arch_profile", 0, NULL
},
8547 LOOKUP(8, ARM_ISA_use
),
8548 LOOKUP(9, THUMB_ISA_use
),
8549 LOOKUP(10, VFP_arch
),
8550 LOOKUP(11, WMMX_arch
),
8551 LOOKUP(12, NEON_arch
),
8552 LOOKUP(13, ABI_PCS_config
),
8553 LOOKUP(14, ABI_PCS_R9_use
),
8554 LOOKUP(15, ABI_PCS_RW_data
),
8555 LOOKUP(16, ABI_PCS_RO_DATA
),
8556 LOOKUP(17, ABI_PCS_GOT_use
),
8557 LOOKUP(18, ABI_PCS_wchar_t
),
8558 LOOKUP(19, ABI_FP_rounding
),
8559 LOOKUP(20, ABI_FP_denormal
),
8560 LOOKUP(21, ABI_FP_exceptions
),
8561 LOOKUP(22, ABI_FP_user_exceptions
),
8562 LOOKUP(23, ABI_FP_number_model
),
8563 LOOKUP(24, ABI_align8_needed
),
8564 LOOKUP(25, ABI_align8_preserved
),
8565 LOOKUP(26, ABI_enum_size
),
8566 LOOKUP(27, ABI_HardFP_use
),
8567 LOOKUP(28, ABI_VFP_args
),
8568 LOOKUP(29, ABI_WMMX_args
),
8569 LOOKUP(30, ABI_optimization_goals
),
8570 LOOKUP(31, ABI_FP_optimization_goals
),
8571 {32, "compatibility", 0, NULL
}
8575 /* Read an unsigned LEB128 encoded value from p. Set *PLEN to the number of
8578 read_uleb128 (unsigned char *p
, unsigned int *plen
)
8592 val
|= ((unsigned int)c
& 0x7f) << shift
;
8601 static unsigned char *
8602 display_arm_attribute (unsigned char *p
)
8607 arm_attr_public_tag
*attr
;
8611 tag
= read_uleb128 (p
, &len
);
8614 for (i
= 0; i
< ARRAY_SIZE(arm_attr_public_tags
); i
++)
8616 if (arm_attr_public_tags
[i
].tag
== tag
)
8618 attr
= &arm_attr_public_tags
[i
];
8625 printf (" Tag_%s: ", attr
->name
);
8631 case 7: /* Tag_CPU_arch_profile. */
8632 val
= read_uleb128 (p
, &len
);
8636 case 0: printf ("None\n"); break;
8637 case 'A': printf ("Application\n"); break;
8638 case 'R': printf ("Realtime\n"); break;
8639 case 'M': printf ("Microcontroller\n"); break;
8640 default: printf ("??? (%d)\n", val
); break;
8644 case 32: /* Tag_compatibility. */
8645 val
= read_uleb128 (p
, &len
);
8647 printf ("flag = %d, vendor = %s\n", val
, p
);
8648 p
+= strlen((char *)p
) + 1;
8662 assert (attr
->type
& 0x80);
8663 val
= read_uleb128 (p
, &len
);
8665 type
= attr
->type
& 0x7f;
8667 printf ("??? (%d)\n", val
);
8669 printf ("%s\n", attr
->table
[val
]);
8676 type
= 1; /* String. */
8678 type
= 2; /* uleb128. */
8679 printf (" Tag_unknown_%d: ", tag
);
8684 printf ("\"%s\"\n", p
);
8685 p
+= strlen((char *)p
) + 1;
8689 val
= read_uleb128 (p
, &len
);
8691 printf ("%d (0x%x)\n", val
, val
);
8697 static unsigned char *
8698 display_gnu_attribute (unsigned char * p
,
8699 unsigned char * (* display_proc_gnu_attribute
) (unsigned char *, int))
8706 tag
= read_uleb128 (p
, &len
);
8709 /* Tag_compatibility is the only generic GNU attribute defined at
8713 val
= read_uleb128 (p
, &len
);
8715 printf ("flag = %d, vendor = %s\n", val
, p
);
8716 p
+= strlen ((char *) p
) + 1;
8720 if ((tag
& 2) == 0 && display_proc_gnu_attribute
)
8721 return display_proc_gnu_attribute (p
, tag
);
8724 type
= 1; /* String. */
8726 type
= 2; /* uleb128. */
8727 printf (" Tag_unknown_%d: ", tag
);
8731 printf ("\"%s\"\n", p
);
8732 p
+= strlen ((char *) p
) + 1;
8736 val
= read_uleb128 (p
, &len
);
8738 printf ("%d (0x%x)\n", val
, val
);
8744 static unsigned char *
8745 display_power_gnu_attribute (unsigned char *p
, int tag
)
8751 if (tag
== Tag_GNU_Power_ABI_FP
)
8753 val
= read_uleb128 (p
, &len
);
8755 printf (" Tag_GNU_Power_ABI_FP: ");
8760 printf ("Hard or soft float\n");
8763 printf ("Hard float\n");
8766 printf ("Soft float\n");
8769 printf ("??? (%d)\n", val
);
8775 if (tag
== Tag_GNU_Power_ABI_Vector
)
8777 val
= read_uleb128 (p
, &len
);
8779 printf (" Tag_GNU_Power_ABI_Vector: ");
8786 printf ("Generic\n");
8789 printf ("AltiVec\n");
8795 printf ("??? (%d)\n", val
);
8802 type
= 1; /* String. */
8804 type
= 2; /* uleb128. */
8805 printf (" Tag_unknown_%d: ", tag
);
8809 printf ("\"%s\"\n", p
);
8810 p
+= strlen ((char *) p
) + 1;
8814 val
= read_uleb128 (p
, &len
);
8816 printf ("%d (0x%x)\n", val
, val
);
8822 static unsigned char *
8823 display_mips_gnu_attribute (unsigned char *p
, int tag
)
8829 if (tag
== Tag_GNU_MIPS_ABI_FP
)
8831 val
= read_uleb128 (p
, &len
);
8833 printf (" Tag_GNU_MIPS_ABI_FP: ");
8838 printf ("Hard or soft float\n");
8841 printf ("Hard float (-mdouble-float)\n");
8844 printf ("Hard float (-msingle-float)\n");
8847 printf ("Soft float\n");
8850 printf ("64-bit float (-mips32r2 -mfp64)\n");
8853 printf ("??? (%d)\n", val
);
8860 type
= 1; /* String. */
8862 type
= 2; /* uleb128. */
8863 printf (" Tag_unknown_%d: ", tag
);
8867 printf ("\"%s\"\n", p
);
8868 p
+= strlen ((char *) p
) + 1;
8872 val
= read_uleb128 (p
, &len
);
8874 printf ("%d (0x%x)\n", val
, val
);
8881 process_attributes (FILE * file
,
8882 const char * public_name
,
8883 unsigned int proc_type
,
8884 unsigned char * (* display_pub_attribute
) (unsigned char *),
8885 unsigned char * (* display_proc_gnu_attribute
) (unsigned char *, int))
8887 Elf_Internal_Shdr
*sect
;
8888 unsigned char *contents
;
8891 bfd_vma section_len
;
8895 /* Find the section header so that we get the size. */
8896 for (i
= 0, sect
= section_headers
;
8897 i
< elf_header
.e_shnum
;
8900 if (sect
->sh_type
!= proc_type
&& sect
->sh_type
!= SHT_GNU_ATTRIBUTES
)
8903 contents
= get_data (NULL
, file
, sect
->sh_offset
, 1, sect
->sh_size
,
8905 if (contents
== NULL
)
8911 len
= sect
->sh_size
- 1;
8917 bfd_boolean public_section
;
8918 bfd_boolean gnu_section
;
8920 section_len
= byte_get (p
, 4);
8923 if (section_len
> len
)
8925 printf (_("ERROR: Bad section length (%d > %d)\n"),
8926 (int) section_len
, (int) len
);
8931 printf ("Attribute Section: %s\n", p
);
8933 if (public_name
&& streq ((char *) p
, public_name
))
8934 public_section
= TRUE
;
8936 public_section
= FALSE
;
8938 if (streq ((char *) p
, "gnu"))
8941 gnu_section
= FALSE
;
8943 namelen
= strlen ((char *) p
) + 1;
8945 section_len
-= namelen
+ 4;
8947 while (section_len
> 0)
8953 size
= byte_get (p
, 4);
8954 if (size
> section_len
)
8956 printf (_("ERROR: Bad subsection length (%d > %d)\n"),
8957 (int) size
, (int) section_len
);
8961 section_len
-= size
;
8968 printf ("File Attributes\n");
8971 printf ("Section Attributes:");
8974 printf ("Symbol Attributes:");
8980 val
= read_uleb128 (p
, &i
);
8984 printf (" %d", val
);
8989 printf ("Unknown tag: %d\n", tag
);
8990 public_section
= FALSE
;
8997 p
= display_pub_attribute (p
);
8999 else if (gnu_section
)
9002 p
= display_gnu_attribute (p
,
9003 display_proc_gnu_attribute
);
9007 /* ??? Do something sensible, like dump hex. */
9008 printf (" Unknown section contexts\n");
9015 printf (_("Unknown format '%c'\n"), *p
);
9023 process_arm_specific (FILE *file
)
9025 return process_attributes (file
, "aeabi", SHT_ARM_ATTRIBUTES
,
9026 display_arm_attribute
, NULL
);
9030 process_power_specific (FILE *file
)
9032 return process_attributes (file
, NULL
, SHT_GNU_ATTRIBUTES
, NULL
,
9033 display_power_gnu_attribute
);
9037 process_mips_specific (FILE *file
)
9039 Elf_Internal_Dyn
*entry
;
9040 size_t liblist_offset
= 0;
9041 size_t liblistno
= 0;
9042 size_t conflictsno
= 0;
9043 size_t options_offset
= 0;
9044 size_t conflicts_offset
= 0;
9046 process_attributes (file
, NULL
, SHT_GNU_ATTRIBUTES
, NULL
,
9047 display_mips_gnu_attribute
);
9049 /* We have a lot of special sections. Thanks SGI! */
9050 if (dynamic_section
== NULL
)
9051 /* No information available. */
9054 for (entry
= dynamic_section
; entry
->d_tag
!= DT_NULL
; ++entry
)
9055 switch (entry
->d_tag
)
9057 case DT_MIPS_LIBLIST
:
9059 = offset_from_vma (file
, entry
->d_un
.d_val
,
9060 liblistno
* sizeof (Elf32_External_Lib
));
9062 case DT_MIPS_LIBLISTNO
:
9063 liblistno
= entry
->d_un
.d_val
;
9065 case DT_MIPS_OPTIONS
:
9066 options_offset
= offset_from_vma (file
, entry
->d_un
.d_val
, 0);
9068 case DT_MIPS_CONFLICT
:
9070 = offset_from_vma (file
, entry
->d_un
.d_val
,
9071 conflictsno
* sizeof (Elf32_External_Conflict
));
9073 case DT_MIPS_CONFLICTNO
:
9074 conflictsno
= entry
->d_un
.d_val
;
9080 if (liblist_offset
!= 0 && liblistno
!= 0 && do_dynamic
)
9082 Elf32_External_Lib
*elib
;
9085 elib
= get_data (NULL
, file
, liblist_offset
,
9086 liblistno
, sizeof (Elf32_External_Lib
),
9090 printf ("\nSection '.liblist' contains %lu entries:\n",
9091 (unsigned long) liblistno
);
9092 fputs (" Library Time Stamp Checksum Version Flags\n",
9095 for (cnt
= 0; cnt
< liblistno
; ++cnt
)
9102 liblist
.l_name
= BYTE_GET (elib
[cnt
].l_name
);
9103 time
= BYTE_GET (elib
[cnt
].l_time_stamp
);
9104 liblist
.l_checksum
= BYTE_GET (elib
[cnt
].l_checksum
);
9105 liblist
.l_version
= BYTE_GET (elib
[cnt
].l_version
);
9106 liblist
.l_flags
= BYTE_GET (elib
[cnt
].l_flags
);
9108 tmp
= gmtime (&time
);
9109 snprintf (timebuf
, sizeof (timebuf
),
9110 "%04u-%02u-%02uT%02u:%02u:%02u",
9111 tmp
->tm_year
+ 1900, tmp
->tm_mon
+ 1, tmp
->tm_mday
,
9112 tmp
->tm_hour
, tmp
->tm_min
, tmp
->tm_sec
);
9114 printf ("%3lu: ", (unsigned long) cnt
);
9115 if (VALID_DYNAMIC_NAME (liblist
.l_name
))
9116 print_symbol (20, GET_DYNAMIC_NAME (liblist
.l_name
));
9118 printf ("<corrupt: %9ld>", liblist
.l_name
);
9119 printf (" %s %#10lx %-7ld", timebuf
, liblist
.l_checksum
,
9122 if (liblist
.l_flags
== 0)
9133 { " EXACT_MATCH", LL_EXACT_MATCH
},
9134 { " IGNORE_INT_VER", LL_IGNORE_INT_VER
},
9135 { " REQUIRE_MINOR", LL_REQUIRE_MINOR
},
9136 { " EXPORTS", LL_EXPORTS
},
9137 { " DELAY_LOAD", LL_DELAY_LOAD
},
9138 { " DELTA", LL_DELTA
}
9140 int flags
= liblist
.l_flags
;
9143 for (fcnt
= 0; fcnt
< ARRAY_SIZE (l_flags_vals
); ++fcnt
)
9144 if ((flags
& l_flags_vals
[fcnt
].bit
) != 0)
9146 fputs (l_flags_vals
[fcnt
].name
, stdout
);
9147 flags
^= l_flags_vals
[fcnt
].bit
;
9150 printf (" %#x", (unsigned int) flags
);
9160 if (options_offset
!= 0)
9162 Elf_External_Options
*eopt
;
9163 Elf_Internal_Shdr
*sect
= section_headers
;
9164 Elf_Internal_Options
*iopt
;
9165 Elf_Internal_Options
*option
;
9169 /* Find the section header so that we get the size. */
9170 while (sect
->sh_type
!= SHT_MIPS_OPTIONS
)
9173 eopt
= get_data (NULL
, file
, options_offset
, 1, sect
->sh_size
,
9177 iopt
= cmalloc ((sect
->sh_size
/ sizeof (eopt
)), sizeof (*iopt
));
9180 error (_("Out of memory\n"));
9187 while (offset
< sect
->sh_size
)
9189 Elf_External_Options
*eoption
;
9191 eoption
= (Elf_External_Options
*) ((char *) eopt
+ offset
);
9193 option
->kind
= BYTE_GET (eoption
->kind
);
9194 option
->size
= BYTE_GET (eoption
->size
);
9195 option
->section
= BYTE_GET (eoption
->section
);
9196 option
->info
= BYTE_GET (eoption
->info
);
9198 offset
+= option
->size
;
9204 printf (_("\nSection '%s' contains %d entries:\n"),
9205 SECTION_NAME (sect
), cnt
);
9213 switch (option
->kind
)
9216 /* This shouldn't happen. */
9217 printf (" NULL %d %lx", option
->section
, option
->info
);
9220 printf (" REGINFO ");
9221 if (elf_header
.e_machine
== EM_MIPS
)
9224 Elf32_External_RegInfo
*ereg
;
9225 Elf32_RegInfo reginfo
;
9227 ereg
= (Elf32_External_RegInfo
*) (option
+ 1);
9228 reginfo
.ri_gprmask
= BYTE_GET (ereg
->ri_gprmask
);
9229 reginfo
.ri_cprmask
[0] = BYTE_GET (ereg
->ri_cprmask
[0]);
9230 reginfo
.ri_cprmask
[1] = BYTE_GET (ereg
->ri_cprmask
[1]);
9231 reginfo
.ri_cprmask
[2] = BYTE_GET (ereg
->ri_cprmask
[2]);
9232 reginfo
.ri_cprmask
[3] = BYTE_GET (ereg
->ri_cprmask
[3]);
9233 reginfo
.ri_gp_value
= BYTE_GET (ereg
->ri_gp_value
);
9235 printf ("GPR %08lx GP 0x%lx\n",
9237 (unsigned long) reginfo
.ri_gp_value
);
9238 printf (" CPR0 %08lx CPR1 %08lx CPR2 %08lx CPR3 %08lx\n",
9239 reginfo
.ri_cprmask
[0], reginfo
.ri_cprmask
[1],
9240 reginfo
.ri_cprmask
[2], reginfo
.ri_cprmask
[3]);
9245 Elf64_External_RegInfo
*ereg
;
9246 Elf64_Internal_RegInfo reginfo
;
9248 ereg
= (Elf64_External_RegInfo
*) (option
+ 1);
9249 reginfo
.ri_gprmask
= BYTE_GET (ereg
->ri_gprmask
);
9250 reginfo
.ri_cprmask
[0] = BYTE_GET (ereg
->ri_cprmask
[0]);
9251 reginfo
.ri_cprmask
[1] = BYTE_GET (ereg
->ri_cprmask
[1]);
9252 reginfo
.ri_cprmask
[2] = BYTE_GET (ereg
->ri_cprmask
[2]);
9253 reginfo
.ri_cprmask
[3] = BYTE_GET (ereg
->ri_cprmask
[3]);
9254 reginfo
.ri_gp_value
= BYTE_GET (ereg
->ri_gp_value
);
9256 printf ("GPR %08lx GP 0x",
9257 reginfo
.ri_gprmask
);
9258 printf_vma (reginfo
.ri_gp_value
);
9261 printf (" CPR0 %08lx CPR1 %08lx CPR2 %08lx CPR3 %08lx\n",
9262 reginfo
.ri_cprmask
[0], reginfo
.ri_cprmask
[1],
9263 reginfo
.ri_cprmask
[2], reginfo
.ri_cprmask
[3]);
9267 case ODK_EXCEPTIONS
:
9268 fputs (" EXCEPTIONS fpe_min(", stdout
);
9269 process_mips_fpe_exception (option
->info
& OEX_FPU_MIN
);
9270 fputs (") fpe_max(", stdout
);
9271 process_mips_fpe_exception ((option
->info
& OEX_FPU_MAX
) >> 8);
9272 fputs (")", stdout
);
9274 if (option
->info
& OEX_PAGE0
)
9275 fputs (" PAGE0", stdout
);
9276 if (option
->info
& OEX_SMM
)
9277 fputs (" SMM", stdout
);
9278 if (option
->info
& OEX_FPDBUG
)
9279 fputs (" FPDBUG", stdout
);
9280 if (option
->info
& OEX_DISMISS
)
9281 fputs (" DISMISS", stdout
);
9284 fputs (" PAD ", stdout
);
9285 if (option
->info
& OPAD_PREFIX
)
9286 fputs (" PREFIX", stdout
);
9287 if (option
->info
& OPAD_POSTFIX
)
9288 fputs (" POSTFIX", stdout
);
9289 if (option
->info
& OPAD_SYMBOL
)
9290 fputs (" SYMBOL", stdout
);
9293 fputs (" HWPATCH ", stdout
);
9294 if (option
->info
& OHW_R4KEOP
)
9295 fputs (" R4KEOP", stdout
);
9296 if (option
->info
& OHW_R8KPFETCH
)
9297 fputs (" R8KPFETCH", stdout
);
9298 if (option
->info
& OHW_R5KEOP
)
9299 fputs (" R5KEOP", stdout
);
9300 if (option
->info
& OHW_R5KCVTL
)
9301 fputs (" R5KCVTL", stdout
);
9304 fputs (" FILL ", stdout
);
9305 /* XXX Print content of info word? */
9308 fputs (" TAGS ", stdout
);
9309 /* XXX Print content of info word? */
9312 fputs (" HWAND ", stdout
);
9313 if (option
->info
& OHWA0_R4KEOP_CHECKED
)
9314 fputs (" R4KEOP_CHECKED", stdout
);
9315 if (option
->info
& OHWA0_R4KEOP_CLEAN
)
9316 fputs (" R4KEOP_CLEAN", stdout
);
9319 fputs (" HWOR ", stdout
);
9320 if (option
->info
& OHWA0_R4KEOP_CHECKED
)
9321 fputs (" R4KEOP_CHECKED", stdout
);
9322 if (option
->info
& OHWA0_R4KEOP_CLEAN
)
9323 fputs (" R4KEOP_CLEAN", stdout
);
9326 printf (" GP_GROUP %#06lx self-contained %#06lx",
9327 option
->info
& OGP_GROUP
,
9328 (option
->info
& OGP_SELF
) >> 16);
9331 printf (" IDENT %#06lx self-contained %#06lx",
9332 option
->info
& OGP_GROUP
,
9333 (option
->info
& OGP_SELF
) >> 16);
9336 /* This shouldn't happen. */
9337 printf (" %3d ??? %d %lx",
9338 option
->kind
, option
->section
, option
->info
);
9342 len
= sizeof (*eopt
);
9343 while (len
< option
->size
)
9344 if (((char *) option
)[len
] >= ' '
9345 && ((char *) option
)[len
] < 0x7f)
9346 printf ("%c", ((char *) option
)[len
++]);
9348 printf ("\\%03o", ((char *) option
)[len
++]);
9350 fputs ("\n", stdout
);
9358 if (conflicts_offset
!= 0 && conflictsno
!= 0)
9360 Elf32_Conflict
*iconf
;
9363 if (dynamic_symbols
== NULL
)
9365 error (_("conflict list found without a dynamic symbol table\n"));
9369 iconf
= cmalloc (conflictsno
, sizeof (*iconf
));
9372 error (_("Out of memory\n"));
9378 Elf32_External_Conflict
*econf32
;
9380 econf32
= get_data (NULL
, file
, conflicts_offset
,
9381 conflictsno
, sizeof (*econf32
), _("conflict"));
9385 for (cnt
= 0; cnt
< conflictsno
; ++cnt
)
9386 iconf
[cnt
] = BYTE_GET (econf32
[cnt
]);
9392 Elf64_External_Conflict
*econf64
;
9394 econf64
= get_data (NULL
, file
, conflicts_offset
,
9395 conflictsno
, sizeof (*econf64
), _("conflict"));
9399 for (cnt
= 0; cnt
< conflictsno
; ++cnt
)
9400 iconf
[cnt
] = BYTE_GET (econf64
[cnt
]);
9405 printf (_("\nSection '.conflict' contains %lu entries:\n"),
9406 (unsigned long) conflictsno
);
9407 puts (_(" Num: Index Value Name"));
9409 for (cnt
= 0; cnt
< conflictsno
; ++cnt
)
9411 Elf_Internal_Sym
*psym
= & dynamic_symbols
[iconf
[cnt
]];
9413 printf ("%5lu: %8lu ", (unsigned long) cnt
, iconf
[cnt
]);
9414 print_vma (psym
->st_value
, FULL_HEX
);
9416 if (VALID_DYNAMIC_NAME (psym
->st_name
))
9417 print_symbol (25, GET_DYNAMIC_NAME (psym
->st_name
));
9419 printf ("<corrupt: %14ld>", psym
->st_name
);
9430 process_gnu_liblist (FILE *file
)
9432 Elf_Internal_Shdr
*section
, *string_sec
;
9433 Elf32_External_Lib
*elib
;
9442 for (i
= 0, section
= section_headers
;
9443 i
< elf_header
.e_shnum
;
9446 switch (section
->sh_type
)
9448 case SHT_GNU_LIBLIST
:
9449 if (SECTION_HEADER_INDEX (section
->sh_link
) >= elf_header
.e_shnum
)
9452 elib
= get_data (NULL
, file
, section
->sh_offset
, 1, section
->sh_size
,
9457 string_sec
= SECTION_HEADER (section
->sh_link
);
9459 strtab
= get_data (NULL
, file
, string_sec
->sh_offset
, 1,
9460 string_sec
->sh_size
, _("liblist string table"));
9461 strtab_size
= string_sec
->sh_size
;
9464 || section
->sh_entsize
!= sizeof (Elf32_External_Lib
))
9470 printf (_("\nLibrary list section '%s' contains %lu entries:\n"),
9471 SECTION_NAME (section
),
9472 (long) (section
->sh_size
/ sizeof (Elf32_External_Lib
)));
9474 puts (" Library Time Stamp Checksum Version Flags");
9476 for (cnt
= 0; cnt
< section
->sh_size
/ sizeof (Elf32_External_Lib
);
9484 liblist
.l_name
= BYTE_GET (elib
[cnt
].l_name
);
9485 time
= BYTE_GET (elib
[cnt
].l_time_stamp
);
9486 liblist
.l_checksum
= BYTE_GET (elib
[cnt
].l_checksum
);
9487 liblist
.l_version
= BYTE_GET (elib
[cnt
].l_version
);
9488 liblist
.l_flags
= BYTE_GET (elib
[cnt
].l_flags
);
9490 tmp
= gmtime (&time
);
9491 snprintf (timebuf
, sizeof (timebuf
),
9492 "%04u-%02u-%02uT%02u:%02u:%02u",
9493 tmp
->tm_year
+ 1900, tmp
->tm_mon
+ 1, tmp
->tm_mday
,
9494 tmp
->tm_hour
, tmp
->tm_min
, tmp
->tm_sec
);
9496 printf ("%3lu: ", (unsigned long) cnt
);
9498 printf ("%-20s", liblist
.l_name
< strtab_size
9499 ? strtab
+ liblist
.l_name
: "<corrupt>");
9501 printf ("%-20.20s", liblist
.l_name
< strtab_size
9502 ? strtab
+ liblist
.l_name
: "<corrupt>");
9503 printf (" %s %#010lx %-7ld %-7ld\n", timebuf
, liblist
.l_checksum
,
9504 liblist
.l_version
, liblist
.l_flags
);
9515 get_note_type (unsigned e_type
)
9517 static char buff
[64];
9519 if (elf_header
.e_type
== ET_CORE
)
9523 return _("NT_AUXV (auxiliary vector)");
9525 return _("NT_PRSTATUS (prstatus structure)");
9527 return _("NT_FPREGSET (floating point registers)");
9529 return _("NT_PRPSINFO (prpsinfo structure)");
9531 return _("NT_TASKSTRUCT (task structure)");
9533 return _("NT_PRXFPREG (user_xfpregs structure)");
9535 return _("NT_PPC_VMX (ppc Altivec registers)");
9537 return _("NT_PSTATUS (pstatus structure)");
9539 return _("NT_FPREGS (floating point registers)");
9541 return _("NT_PSINFO (psinfo structure)");
9543 return _("NT_LWPSTATUS (lwpstatus_t structure)");
9545 return _("NT_LWPSINFO (lwpsinfo_t structure)");
9546 case NT_WIN32PSTATUS
:
9547 return _("NT_WIN32PSTATUS (win32_pstatus structure)");
9555 return _("NT_VERSION (version)");
9557 return _("NT_ARCH (architecture)");
9562 snprintf (buff
, sizeof (buff
), _("Unknown note type: (0x%08x)"), e_type
);
9567 get_gnu_elf_note_type (unsigned e_type
)
9569 static char buff
[64];
9573 case NT_GNU_ABI_TAG
:
9574 return _("NT_GNU_ABI_TAG (ABI version tag)");
9576 return _("NT_GNU_HWCAP (DSO-supplied software HWCAP info)");
9577 case NT_GNU_BUILD_ID
:
9578 return _("NT_GNU_BUILD_ID (unique build ID bitstring)");
9583 snprintf (buff
, sizeof (buff
), _("Unknown note type: (0x%08x)"), e_type
);
9588 get_netbsd_elfcore_note_type (unsigned e_type
)
9590 static char buff
[64];
9592 if (e_type
== NT_NETBSDCORE_PROCINFO
)
9594 /* NetBSD core "procinfo" structure. */
9595 return _("NetBSD procinfo structure");
9598 /* As of Jan 2002 there are no other machine-independent notes
9599 defined for NetBSD core files. If the note type is less
9600 than the start of the machine-dependent note types, we don't
9603 if (e_type
< NT_NETBSDCORE_FIRSTMACH
)
9605 snprintf (buff
, sizeof (buff
), _("Unknown note type: (0x%08x)"), e_type
);
9609 switch (elf_header
.e_machine
)
9611 /* On the Alpha, SPARC (32-bit and 64-bit), PT_GETREGS == mach+0
9612 and PT_GETFPREGS == mach+2. */
9617 case EM_SPARC32PLUS
:
9621 case NT_NETBSDCORE_FIRSTMACH
+0:
9622 return _("PT_GETREGS (reg structure)");
9623 case NT_NETBSDCORE_FIRSTMACH
+2:
9624 return _("PT_GETFPREGS (fpreg structure)");
9630 /* On all other arch's, PT_GETREGS == mach+1 and
9631 PT_GETFPREGS == mach+3. */
9635 case NT_NETBSDCORE_FIRSTMACH
+1:
9636 return _("PT_GETREGS (reg structure)");
9637 case NT_NETBSDCORE_FIRSTMACH
+3:
9638 return _("PT_GETFPREGS (fpreg structure)");
9644 snprintf (buff
, sizeof (buff
), _("PT_FIRSTMACH+%d"),
9645 e_type
- NT_NETBSDCORE_FIRSTMACH
);
9649 /* Note that by the ELF standard, the name field is already null byte
9650 terminated, and namesz includes the terminating null byte.
9651 I.E. the value of namesz for the name "FSF" is 4.
9653 If the value of namesz is zero, there is no name present. */
9655 process_note (Elf_Internal_Note
*pnote
)
9657 const char *name
= pnote
->namesz
? pnote
->namedata
: "(NONE)";
9660 if (pnote
->namesz
== 0)
9661 /* If there is no note name, then use the default set of
9662 note type strings. */
9663 nt
= get_note_type (pnote
->type
);
9665 else if (const_strneq (pnote
->namedata
, "GNU"))
9666 /* GNU-specific object file notes. */
9667 nt
= get_gnu_elf_note_type (pnote
->type
);
9669 else if (const_strneq (pnote
->namedata
, "NetBSD-CORE"))
9670 /* NetBSD-specific core file notes. */
9671 nt
= get_netbsd_elfcore_note_type (pnote
->type
);
9673 else if (strneq (pnote
->namedata
, "SPU/", 4))
9675 /* SPU-specific core file notes. */
9676 nt
= pnote
->namedata
+ 4;
9681 /* Don't recognize this note name; just use the default set of
9682 note type strings. */
9683 nt
= get_note_type (pnote
->type
);
9685 printf (" %s\t\t0x%08lx\t%s\n", name
, pnote
->descsz
, nt
);
9691 process_corefile_note_segment (FILE *file
, bfd_vma offset
, bfd_vma length
)
9693 Elf_External_Note
*pnotes
;
9694 Elf_External_Note
*external
;
9700 pnotes
= get_data (NULL
, file
, offset
, 1, length
, _("notes"));
9706 printf (_("\nNotes at offset 0x%08lx with length 0x%08lx:\n"),
9707 (unsigned long) offset
, (unsigned long) length
);
9708 printf (_(" Owner\t\tData size\tDescription\n"));
9710 while (external
< (Elf_External_Note
*)((char *) pnotes
+ length
))
9712 Elf_External_Note
*next
;
9713 Elf_Internal_Note inote
;
9716 inote
.type
= BYTE_GET (external
->type
);
9717 inote
.namesz
= BYTE_GET (external
->namesz
);
9718 inote
.namedata
= external
->name
;
9719 inote
.descsz
= BYTE_GET (external
->descsz
);
9720 inote
.descdata
= inote
.namedata
+ align_power (inote
.namesz
, 2);
9721 inote
.descpos
= offset
+ (inote
.descdata
- (char *) pnotes
);
9723 next
= (Elf_External_Note
*)(inote
.descdata
+ align_power (inote
.descsz
, 2));
9725 if (((char *) next
) > (((char *) pnotes
) + length
))
9727 warn (_("corrupt note found at offset %lx into core notes\n"),
9728 (long)((char *)external
- (char *)pnotes
));
9729 warn (_(" type: %lx, namesize: %08lx, descsize: %08lx\n"),
9730 inote
.type
, inote
.namesz
, inote
.descsz
);
9736 /* Verify that name is null terminated. It appears that at least
9737 one version of Linux (RedHat 6.0) generates corefiles that don't
9738 comply with the ELF spec by failing to include the null byte in
9740 if (inote
.namedata
[inote
.namesz
] != '\0')
9742 temp
= malloc (inote
.namesz
+ 1);
9746 error (_("Out of memory\n"));
9751 strncpy (temp
, inote
.namedata
, inote
.namesz
);
9752 temp
[inote
.namesz
] = 0;
9754 /* warn (_("'%s' NOTE name not properly null terminated\n"), temp); */
9755 inote
.namedata
= temp
;
9758 res
&= process_note (& inote
);
9773 process_corefile_note_segments (FILE *file
)
9775 Elf_Internal_Phdr
*segment
;
9779 if (! get_program_headers (file
))
9782 for (i
= 0, segment
= program_headers
;
9783 i
< elf_header
.e_phnum
;
9786 if (segment
->p_type
== PT_NOTE
)
9787 res
&= process_corefile_note_segment (file
,
9788 (bfd_vma
) segment
->p_offset
,
9789 (bfd_vma
) segment
->p_filesz
);
9796 process_note_sections (FILE *file
)
9798 Elf_Internal_Shdr
*section
;
9802 for (i
= 0, section
= section_headers
;
9803 i
< elf_header
.e_shnum
;
9805 if (section
->sh_type
== SHT_NOTE
)
9806 res
&= process_corefile_note_segment (file
,
9807 (bfd_vma
) section
->sh_offset
,
9808 (bfd_vma
) section
->sh_size
);
9814 process_notes (FILE *file
)
9816 /* If we have not been asked to display the notes then do nothing. */
9820 if (elf_header
.e_type
!= ET_CORE
)
9821 return process_note_sections (file
);
9823 /* No program headers means no NOTE segment. */
9824 if (elf_header
.e_phnum
> 0)
9825 return process_corefile_note_segments (file
);
9827 printf (_("No note segments present in the core file.\n"));
9832 process_arch_specific (FILE *file
)
9837 switch (elf_header
.e_machine
)
9840 return process_arm_specific (file
);
9842 case EM_MIPS_RS3_LE
:
9843 return process_mips_specific (file
);
9846 return process_power_specific (file
);
9855 get_file_header (FILE *file
)
9857 /* Read in the identity array. */
9858 if (fread (elf_header
.e_ident
, EI_NIDENT
, 1, file
) != 1)
9861 /* Determine how to read the rest of the header. */
9862 switch (elf_header
.e_ident
[EI_DATA
])
9864 default: /* fall through */
9865 case ELFDATANONE
: /* fall through */
9867 byte_get
= byte_get_little_endian
;
9868 byte_put
= byte_put_little_endian
;
9871 byte_get
= byte_get_big_endian
;
9872 byte_put
= byte_put_big_endian
;
9876 /* For now we only support 32 bit and 64 bit ELF files. */
9877 is_32bit_elf
= (elf_header
.e_ident
[EI_CLASS
] != ELFCLASS64
);
9879 /* Read in the rest of the header. */
9882 Elf32_External_Ehdr ehdr32
;
9884 if (fread (ehdr32
.e_type
, sizeof (ehdr32
) - EI_NIDENT
, 1, file
) != 1)
9887 elf_header
.e_type
= BYTE_GET (ehdr32
.e_type
);
9888 elf_header
.e_machine
= BYTE_GET (ehdr32
.e_machine
);
9889 elf_header
.e_version
= BYTE_GET (ehdr32
.e_version
);
9890 elf_header
.e_entry
= BYTE_GET (ehdr32
.e_entry
);
9891 elf_header
.e_phoff
= BYTE_GET (ehdr32
.e_phoff
);
9892 elf_header
.e_shoff
= BYTE_GET (ehdr32
.e_shoff
);
9893 elf_header
.e_flags
= BYTE_GET (ehdr32
.e_flags
);
9894 elf_header
.e_ehsize
= BYTE_GET (ehdr32
.e_ehsize
);
9895 elf_header
.e_phentsize
= BYTE_GET (ehdr32
.e_phentsize
);
9896 elf_header
.e_phnum
= BYTE_GET (ehdr32
.e_phnum
);
9897 elf_header
.e_shentsize
= BYTE_GET (ehdr32
.e_shentsize
);
9898 elf_header
.e_shnum
= BYTE_GET (ehdr32
.e_shnum
);
9899 elf_header
.e_shstrndx
= BYTE_GET (ehdr32
.e_shstrndx
);
9903 Elf64_External_Ehdr ehdr64
;
9905 /* If we have been compiled with sizeof (bfd_vma) == 4, then
9906 we will not be able to cope with the 64bit data found in
9907 64 ELF files. Detect this now and abort before we start
9908 overwriting things. */
9909 if (sizeof (bfd_vma
) < 8)
9911 error (_("This instance of readelf has been built without support for a\n\
9912 64 bit data type and so it cannot read 64 bit ELF files.\n"));
9916 if (fread (ehdr64
.e_type
, sizeof (ehdr64
) - EI_NIDENT
, 1, file
) != 1)
9919 elf_header
.e_type
= BYTE_GET (ehdr64
.e_type
);
9920 elf_header
.e_machine
= BYTE_GET (ehdr64
.e_machine
);
9921 elf_header
.e_version
= BYTE_GET (ehdr64
.e_version
);
9922 elf_header
.e_entry
= BYTE_GET (ehdr64
.e_entry
);
9923 elf_header
.e_phoff
= BYTE_GET (ehdr64
.e_phoff
);
9924 elf_header
.e_shoff
= BYTE_GET (ehdr64
.e_shoff
);
9925 elf_header
.e_flags
= BYTE_GET (ehdr64
.e_flags
);
9926 elf_header
.e_ehsize
= BYTE_GET (ehdr64
.e_ehsize
);
9927 elf_header
.e_phentsize
= BYTE_GET (ehdr64
.e_phentsize
);
9928 elf_header
.e_phnum
= BYTE_GET (ehdr64
.e_phnum
);
9929 elf_header
.e_shentsize
= BYTE_GET (ehdr64
.e_shentsize
);
9930 elf_header
.e_shnum
= BYTE_GET (ehdr64
.e_shnum
);
9931 elf_header
.e_shstrndx
= BYTE_GET (ehdr64
.e_shstrndx
);
9934 if (elf_header
.e_shoff
)
9936 /* There may be some extensions in the first section header. Don't
9937 bomb if we can't read it. */
9939 get_32bit_section_headers (file
, 1);
9941 get_64bit_section_headers (file
, 1);
9947 /* Process one ELF object file according to the command line options.
9948 This file may actually be stored in an archive. The file is
9949 positioned at the start of the ELF object. */
9952 process_object (char *file_name
, FILE *file
)
9956 if (! get_file_header (file
))
9958 error (_("%s: Failed to read file header\n"), file_name
);
9962 /* Initialise per file variables. */
9963 for (i
= ARRAY_SIZE (version_info
); i
--;)
9964 version_info
[i
] = 0;
9966 for (i
= ARRAY_SIZE (dynamic_info
); i
--;)
9967 dynamic_info
[i
] = 0;
9969 /* Process the file. */
9971 printf (_("\nFile: %s\n"), file_name
);
9973 /* Initialise the dump_sects array from the cmdline_dump_sects array.
9974 Note we do this even if cmdline_dump_sects is empty because we
9975 must make sure that the dump_sets array is zeroed out before each
9976 object file is processed. */
9977 if (num_dump_sects
> num_cmdline_dump_sects
)
9978 memset (dump_sects
, 0, num_dump_sects
* sizeof (* dump_sects
));
9980 if (num_cmdline_dump_sects
> 0)
9982 if (num_dump_sects
== 0)
9983 /* A sneaky way of allocating the dump_sects array. */
9984 request_dump_bynumber (num_cmdline_dump_sects
, 0);
9986 assert (num_dump_sects
>= num_cmdline_dump_sects
);
9987 memcpy (dump_sects
, cmdline_dump_sects
,
9988 num_cmdline_dump_sects
* sizeof (* dump_sects
));
9991 if (! process_file_header ())
9994 if (! process_section_headers (file
))
9996 /* Without loaded section headers we cannot process lots of
9998 do_unwind
= do_version
= do_dump
= do_arch
= 0;
10000 if (! do_using_dynamic
)
10001 do_syms
= do_reloc
= 0;
10004 if (! process_section_groups (file
))
10006 /* Without loaded section groups we cannot process unwind. */
10010 if (process_program_headers (file
))
10011 process_dynamic_section (file
);
10013 process_relocs (file
);
10015 process_unwind (file
);
10017 process_symbol_table (file
);
10019 process_syminfo (file
);
10021 process_version_sections (file
);
10023 process_section_contents (file
);
10025 process_notes (file
);
10027 process_gnu_liblist (file
);
10029 process_arch_specific (file
);
10031 if (program_headers
)
10033 free (program_headers
);
10034 program_headers
= NULL
;
10037 if (section_headers
)
10039 free (section_headers
);
10040 section_headers
= NULL
;
10045 free (string_table
);
10046 string_table
= NULL
;
10047 string_table_length
= 0;
10050 if (dynamic_strings
)
10052 free (dynamic_strings
);
10053 dynamic_strings
= NULL
;
10054 dynamic_strings_length
= 0;
10057 if (dynamic_symbols
)
10059 free (dynamic_symbols
);
10060 dynamic_symbols
= NULL
;
10061 num_dynamic_syms
= 0;
10064 if (dynamic_syminfo
)
10066 free (dynamic_syminfo
);
10067 dynamic_syminfo
= NULL
;
10070 if (section_headers_groups
)
10072 free (section_headers_groups
);
10073 section_headers_groups
= NULL
;
10076 if (section_groups
)
10078 struct group_list
*g
, *next
;
10080 for (i
= 0; i
< group_count
; i
++)
10082 for (g
= section_groups
[i
].root
; g
!= NULL
; g
= next
)
10089 free (section_groups
);
10090 section_groups
= NULL
;
10093 free_debug_memory ();
10098 /* Process an ELF archive.
10099 On entry the file is positioned just after the ARMAG string. */
10102 process_archive (char *file_name
, FILE *file
)
10104 struct ar_hdr arhdr
;
10106 unsigned long size
;
10107 unsigned long index_num
= 0;
10108 unsigned long *index_array
= NULL
;
10109 char *sym_table
= NULL
;
10110 unsigned long sym_size
= 0;
10111 char *longnames
= NULL
;
10112 unsigned long longnames_size
= 0;
10113 size_t file_name_size
;
10118 got
= fread (&arhdr
, 1, sizeof arhdr
, file
);
10119 if (got
!= sizeof arhdr
)
10124 error (_("%s: failed to read archive header\n"), file_name
);
10128 /* See if this is the archive symbol table. */
10129 if (const_strneq (arhdr
.ar_name
, "/ ")
10130 || const_strneq (arhdr
.ar_name
, "/SYM64/ "))
10132 size
= strtoul (arhdr
.ar_size
, NULL
, 10);
10133 size
= size
+ (size
& 1);
10135 if (do_archive_index
)
10138 /* A buffer used to hold numbers read in from an archive index.
10139 These are always 4 bytes long and stored in big-endian format. */
10140 #define SIZEOF_AR_INDEX_NUMBERS 4
10141 unsigned char integer_buffer
[SIZEOF_AR_INDEX_NUMBERS
];
10142 unsigned char * index_buffer
;
10144 /* Check the size of the archive index. */
10145 if (size
< SIZEOF_AR_INDEX_NUMBERS
)
10147 error (_("%s: the archive index is empty\n"), file_name
);
10151 /* Read the numer of entries in the archive index. */
10152 got
= fread (integer_buffer
, 1, sizeof integer_buffer
, file
);
10153 if (got
!= sizeof (integer_buffer
))
10155 error (_("%s: failed to read archive index\n"), file_name
);
10158 index_num
= byte_get_big_endian (integer_buffer
, sizeof integer_buffer
);
10159 size
-= SIZEOF_AR_INDEX_NUMBERS
;
10161 /* Read in the archive index. */
10162 if (size
< index_num
* SIZEOF_AR_INDEX_NUMBERS
)
10164 error (_("%s: the archive index is supposed to have %ld entries, but the size in the header is too small\n"),
10165 file_name
, index_num
);
10168 index_buffer
= malloc (index_num
* SIZEOF_AR_INDEX_NUMBERS
);
10169 if (index_buffer
== NULL
)
10171 error (_("Out of memory whilst trying to read archive symbol index\n"));
10174 got
= fread (index_buffer
, SIZEOF_AR_INDEX_NUMBERS
, index_num
, file
);
10175 if (got
!= index_num
)
10177 free (index_buffer
);
10178 error (_("%s: failed to read archive index\n"), file_name
);
10182 size
-= index_num
* SIZEOF_AR_INDEX_NUMBERS
;
10184 /* Convert the index numbers into the host's numeric format. */
10185 index_array
= malloc (index_num
* sizeof (* index_array
));
10186 if (index_array
== NULL
)
10188 free (index_buffer
);
10189 error (_("Out of memory whilst trying to convert the archive symbol index\n"));
10193 for (i
= 0; i
< index_num
; i
++)
10194 index_array
[i
] = byte_get_big_endian ((unsigned char *)(index_buffer
+ (i
* SIZEOF_AR_INDEX_NUMBERS
)),
10195 SIZEOF_AR_INDEX_NUMBERS
);
10196 free (index_buffer
);
10198 /* The remaining space in the header is taken up by the symbol table. */
10201 error (_("%s: the archive has an index but no symbols\n"), file_name
);
10205 sym_table
= malloc (size
);
10207 if (sym_table
== NULL
)
10209 error (_("Out of memory whilst trying to read archive index symbol table\n"));
10213 got
= fread (sym_table
, 1, size
, file
);
10216 error (_("%s: failed to read archive index symbol table\n"), file_name
);
10223 if (fseek (file
, size
, SEEK_CUR
) != 0)
10225 error (_("%s: failed to skip archive symbol table\n"), file_name
);
10230 got
= fread (& arhdr
, 1, sizeof arhdr
, file
);
10231 if (got
!= sizeof arhdr
)
10239 error (_("%s: failed to read archive header following archive index\n"), file_name
);
10244 else if (do_archive_index
)
10245 printf (_("%s has no archive index\n"), file_name
);
10247 if (const_strneq (arhdr
.ar_name
, "// "))
10249 /* This is the archive string table holding long member
10252 longnames_size
= strtoul (arhdr
.ar_size
, NULL
, 10);
10253 longnames
= malloc (longnames_size
);
10254 if (longnames
== NULL
)
10256 error (_("Out of memory reading long symbol names in archive\n"));
10261 if (fread (longnames
, longnames_size
, 1, file
) != 1)
10264 error (_("%s: failed to read long symbol name string table\n"), file_name
);
10269 if ((longnames_size
& 1) != 0)
10272 got
= fread (& arhdr
, 1, sizeof arhdr
, file
);
10273 if (got
!= sizeof arhdr
)
10279 error (_("%s: failed to read archive header following long symbol names\n"), file_name
);
10286 if (do_archive_index
)
10288 if (sym_table
== NULL
)
10289 error (_("%s: unable to dump the index as none was found\n"), file_name
);
10292 unsigned int i
, j
, k
, l
;
10294 unsigned long current_pos
;
10296 printf (_("Index of archive %s: (%ld entries, 0x%lx bytes in the symbol table)\n"),
10297 file_name
, index_num
, sym_size
);
10298 current_pos
= ftell (file
);
10300 for (i
= l
= 0; i
< index_num
; i
++)
10302 if ((i
== 0) || ((i
> 0) && (index_array
[i
] != index_array
[i
- 1])))
10304 if (fseek (file
, index_array
[i
], SEEK_SET
) != 0)
10306 error (_("%s: failed to seek to next file name\n"), file_name
);
10310 got
= fread (elf_name
, 1, 16, file
);
10313 error (_("%s: failed to read file name\n"), file_name
);
10318 if (elf_name
[0] == '/')
10320 /* We have a long name. */
10321 k
= j
= strtoul (elf_name
+ 1, NULL
, 10);
10322 while ((j
< longnames_size
) && (longnames
[j
] != '/'))
10324 longnames
[j
] = '\0';
10325 printf (_("Binary %s contains:\n"), longnames
+ k
);
10326 longnames
[j
] = '/';
10331 while ((elf_name
[j
] != '/') && (j
< 16))
10333 elf_name
[j
] = '\0';
10334 printf(_("Binary %s contains:\n"), elf_name
);
10339 error (_("%s: end of the symbol table reached before the end of the index\n"),
10343 printf ("\t%s\n", sym_table
+ l
);
10344 l
+= strlen (sym_table
+ l
) + 1;
10348 error (_("%s: symbols remain in the index symbol table, but without corresponding entries in the index table\n"),
10351 free (index_array
);
10352 index_array
= NULL
;
10355 if (fseek (file
, current_pos
, SEEK_SET
) != 0)
10357 error (_("%s: failed to seek back to start of object files in the archive\n"), file_name
);
10362 if (!do_dynamic
&& !do_syms
&& !do_reloc
&& !do_unwind
&& !do_sections
10363 && !do_segments
&& !do_header
&& !do_dump
&& !do_version
10364 && !do_histogram
&& !do_debugging
&& !do_arch
&& !do_notes
10365 && !do_section_groups
)
10366 return 0; /* Archive index only. */
10369 file_name_size
= strlen (file_name
);
10378 if (arhdr
.ar_name
[0] == '/')
10382 off
= strtoul (arhdr
.ar_name
+ 1, NULL
, 10);
10383 if (off
>= longnames_size
)
10385 error (_("%s: invalid archive string table offset %lu\n"), file_name
, off
);
10390 name
= longnames
+ off
;
10391 nameend
= memchr (name
, '/', longnames_size
- off
);
10395 name
= arhdr
.ar_name
;
10396 nameend
= memchr (name
, '/', 16);
10399 if (nameend
== NULL
)
10401 error (_("%s: bad archive file name\n"), file_name
);
10406 namealc
= malloc (file_name_size
+ (nameend
- name
) + 3);
10407 if (namealc
== NULL
)
10409 error (_("Out of memory\n"));
10414 memcpy (namealc
, file_name
, file_name_size
);
10415 namealc
[file_name_size
] = '(';
10416 memcpy (namealc
+ file_name_size
+ 1, name
, nameend
- name
);
10417 namealc
[file_name_size
+ 1 + (nameend
- name
)] = ')';
10418 namealc
[file_name_size
+ 2 + (nameend
- name
)] = '\0';
10420 archive_file_offset
= ftell (file
);
10421 archive_file_size
= strtoul (arhdr
.ar_size
, NULL
, 10);
10423 ret
|= process_object (namealc
, file
);
10428 (archive_file_offset
10429 + archive_file_size
10430 + (archive_file_size
& 1)),
10433 error (_("%s: failed to seek to next archive header\n"), file_name
);
10438 got
= fread (&arhdr
, 1, sizeof arhdr
, file
);
10439 if (got
!= sizeof arhdr
)
10444 error (_("%s: failed to read archive header\n"), file_name
);
10451 if (index_array
!= NULL
)
10452 free (index_array
);
10453 if (sym_table
!= NULL
)
10455 if (longnames
!= NULL
)
10462 process_file (char *file_name
)
10465 struct stat statbuf
;
10466 char armag
[SARMAG
];
10469 if (stat (file_name
, &statbuf
) < 0)
10471 if (errno
== ENOENT
)
10472 error (_("'%s': No such file\n"), file_name
);
10474 error (_("Could not locate '%s'. System error message: %s\n"),
10475 file_name
, strerror (errno
));
10479 if (! S_ISREG (statbuf
.st_mode
))
10481 error (_("'%s' is not an ordinary file\n"), file_name
);
10485 file
= fopen (file_name
, "rb");
10488 error (_("Input file '%s' is not readable.\n"), file_name
);
10492 if (fread (armag
, SARMAG
, 1, file
) != 1)
10494 error (_("%s: Failed to read file's magic number\n"), file_name
);
10499 if (memcmp (armag
, ARMAG
, SARMAG
) == 0)
10500 ret
= process_archive (file_name
, file
);
10503 if (do_archive_index
)
10504 error (_("File %s is not an archive so its index cannot be displayed.\n"),
10508 archive_file_size
= archive_file_offset
= 0;
10509 ret
= process_object (file_name
, file
);
10517 #ifdef SUPPORT_DISASSEMBLY
10518 /* Needed by the i386 disassembler. For extra credit, someone could
10519 fix this so that we insert symbolic addresses here, esp for GOT/PLT
10523 print_address (unsigned int addr
, FILE *outfile
)
10525 fprintf (outfile
,"0x%8.8x", addr
);
10528 /* Needed by the i386 disassembler. */
10530 db_task_printsym (unsigned int addr
)
10532 print_address (addr
, stderr
);
10537 main (int argc
, char **argv
)
10541 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
10542 setlocale (LC_MESSAGES
, "");
10544 #if defined (HAVE_SETLOCALE)
10545 setlocale (LC_CTYPE
, "");
10547 bindtextdomain (PACKAGE
, LOCALEDIR
);
10548 textdomain (PACKAGE
);
10550 expandargv (&argc
, &argv
);
10552 parse_args (argc
, argv
);
10554 if (num_dump_sects
> 0)
10556 /* Make a copy of the dump_sects array. */
10557 cmdline_dump_sects
= malloc (num_dump_sects
* sizeof (* dump_sects
));
10558 if (cmdline_dump_sects
== NULL
)
10559 error (_("Out of memory allocating dump request table.\n"));
10562 memcpy (cmdline_dump_sects
, dump_sects
,
10563 num_dump_sects
* sizeof (* dump_sects
));
10564 num_cmdline_dump_sects
= num_dump_sects
;
10568 if (optind
< (argc
- 1))
10572 while (optind
< argc
)
10573 err
|= process_file (argv
[optind
++]);
10575 if (dump_sects
!= NULL
)
10577 if (cmdline_dump_sects
!= NULL
)
10578 free (cmdline_dump_sects
);