1 /* readelf.c -- display contents of an ELF format file
2 Copyright (C) 1998-2016 Free Software Foundation, Inc.
4 Originally developed by Eric Youngdale <eric@andante.jic.com>
5 Modifications by Nick Clifton <nickc@redhat.com>
7 This file is part of GNU Binutils.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
24 /* The difference between readelf and objdump:
26 Both programs are capable of displaying the contents of ELF format files,
27 so why does the binutils project have two file dumpers ?
29 The reason is that objdump sees an ELF file through a BFD filter of the
30 world; if BFD has a bug where, say, it disagrees about a machine constant
31 in e_flags, then the odds are good that it will remain internally
32 consistent. The linker sees it the BFD way, objdump sees it the BFD way,
33 GAS sees it the BFD way. There was need for a tool to go find out what
34 the file actually says.
36 This is why the readelf program does not link against the BFD library - it
37 exists as an independent program to help verify the correct working of BFD.
39 There is also the case that readelf can provide more information about an
40 ELF file than is provided by objdump. In particular it can display DWARF
41 debugging information which (at the moment) objdump cannot. */
52 /* Define BFD64 here, even if our default architecture is 32 bit ELF
53 as this will allow us to read in and parse 64bit and 32bit ELF files.
54 Only do this if we believe that the compiler can support a 64 bit
55 data type. For now we only rely on GCC being able to do this. */
64 #include "elf/common.h"
65 #include "elf/external.h"
66 #include "elf/internal.h"
69 /* Included here, before RELOC_MACROS_GEN_FUNC is defined, so that
70 we can obtain the H8 reloc numbers. We need these for the
71 get_reloc_size() function. We include h8.h again after defining
72 RELOC_MACROS_GEN_FUNC so that we get the naming function as well. */
77 /* Undo the effects of #including reloc-macros.h. */
79 #undef START_RELOC_NUMBERS
83 #undef END_RELOC_NUMBERS
84 #undef _RELOC_MACROS_H
86 /* The following headers use the elf/reloc-macros.h file to
87 automatically generate relocation recognition functions
88 such as elf_mips_reloc_type() */
90 #define RELOC_MACROS_GEN_FUNC
92 #include "elf/aarch64.h"
93 #include "elf/alpha.h"
101 #include "elf/d10v.h"
102 #include "elf/d30v.h"
104 #include "elf/epiphany.h"
105 #include "elf/fr30.h"
107 #include "elf/ft32.h"
109 #include "elf/hppa.h"
110 #include "elf/i386.h"
111 #include "elf/i370.h"
112 #include "elf/i860.h"
113 #include "elf/i960.h"
114 #include "elf/ia64.h"
115 #include "elf/ip2k.h"
116 #include "elf/lm32.h"
117 #include "elf/iq2000.h"
118 #include "elf/m32c.h"
119 #include "elf/m32r.h"
120 #include "elf/m68k.h"
121 #include "elf/m68hc11.h"
122 #include "elf/mcore.h"
124 #include "elf/metag.h"
125 #include "elf/microblaze.h"
126 #include "elf/mips.h"
127 #include "elf/mmix.h"
128 #include "elf/mn10200.h"
129 #include "elf/mn10300.h"
130 #include "elf/moxie.h"
132 #include "elf/msp430.h"
133 #include "elf/nds32.h"
134 #include "elf/nios2.h"
135 #include "elf/or1k.h"
138 #include "elf/ppc64.h"
139 #include "elf/rl78.h"
141 #include "elf/s390.h"
142 #include "elf/score.h"
144 #include "elf/sparc.h"
146 #include "elf/tic6x.h"
147 #include "elf/tilegx.h"
148 #include "elf/tilepro.h"
149 #include "elf/v850.h"
151 #include "elf/visium.h"
152 #include "elf/x86-64.h"
153 #include "elf/xc16x.h"
154 #include "elf/xgate.h"
155 #include "elf/xstormy16.h"
156 #include "elf/xtensa.h"
159 #include "libiberty.h"
160 #include "safe-ctype.h"
161 #include "filenames.h"
164 #define offsetof(TYPE, MEMBER) ((size_t) &(((TYPE *) 0)->MEMBER))
167 typedef struct elf_section_list
169 Elf_Internal_Shdr
* hdr
;
170 struct elf_section_list
* next
;
173 char * program_name
= "readelf";
174 static unsigned long archive_file_offset
;
175 static unsigned long archive_file_size
;
176 static bfd_size_type current_file_size
;
177 static unsigned long dynamic_addr
;
178 static bfd_size_type dynamic_size
;
179 static size_t dynamic_nent
;
180 static char * dynamic_strings
;
181 static unsigned long dynamic_strings_length
;
182 static char * string_table
;
183 static unsigned long string_table_length
;
184 static unsigned long num_dynamic_syms
;
185 static Elf_Internal_Sym
* dynamic_symbols
;
186 static Elf_Internal_Syminfo
* dynamic_syminfo
;
187 static unsigned long dynamic_syminfo_offset
;
188 static unsigned int dynamic_syminfo_nent
;
189 static char program_interpreter
[PATH_MAX
];
190 static bfd_vma dynamic_info
[DT_ENCODING
];
191 static bfd_vma dynamic_info_DT_GNU_HASH
;
192 static bfd_vma version_info
[16];
193 static Elf_Internal_Ehdr elf_header
;
194 static Elf_Internal_Shdr
* section_headers
;
195 static Elf_Internal_Phdr
* program_headers
;
196 static Elf_Internal_Dyn
* dynamic_section
;
197 static elf_section_list
* symtab_shndx_list
;
198 static int show_name
;
199 static int do_dynamic
;
201 static int do_dyn_syms
;
203 static int do_sections
;
204 static int do_section_groups
;
205 static int do_section_details
;
206 static int do_segments
;
207 static int do_unwind
;
208 static int do_using_dynamic
;
209 static int do_header
;
211 static int do_version
;
212 static int do_histogram
;
213 static int do_debugging
;
216 static int do_archive_index
;
217 static int is_32bit_elf
;
218 static int decompress_dumps
;
222 struct group_list
* next
;
223 unsigned int section_index
;
228 struct group_list
* root
;
229 unsigned int group_index
;
232 static size_t group_count
;
233 static struct group
* section_groups
;
234 static struct group
** section_headers_groups
;
237 /* Flag bits indicating particular types of dump. */
238 #define HEX_DUMP (1 << 0) /* The -x command line switch. */
239 #define DISASS_DUMP (1 << 1) /* The -i command line switch. */
240 #define DEBUG_DUMP (1 << 2) /* The -w command line switch. */
241 #define STRING_DUMP (1 << 3) /* The -p command line switch. */
242 #define RELOC_DUMP (1 << 4) /* The -R command line switch. */
244 typedef unsigned char dump_type
;
246 /* A linked list of the section names for which dumps were requested. */
247 struct dump_list_entry
251 struct dump_list_entry
* next
;
253 static struct dump_list_entry
* dump_sects_byname
;
255 /* A dynamic array of flags indicating for which sections a dump
256 has been requested via command line switches. */
257 static dump_type
* cmdline_dump_sects
= NULL
;
258 static unsigned int num_cmdline_dump_sects
= 0;
260 /* A dynamic array of flags indicating for which sections a dump of
261 some kind has been requested. It is reset on a per-object file
262 basis and then initialised from the cmdline_dump_sects array,
263 the results of interpreting the -w switch, and the
264 dump_sects_byname list. */
265 static dump_type
* dump_sects
= NULL
;
266 static unsigned int num_dump_sects
= 0;
269 /* How to print a vma value. */
270 typedef enum print_mode
282 /* Versioned symbol info. */
283 enum versioned_symbol_info
290 static const char *get_symbol_version_string
291 (FILE *file
, int is_dynsym
, const char *strtab
,
292 unsigned long int strtab_size
, unsigned int si
,
293 Elf_Internal_Sym
*psym
, enum versioned_symbol_info
*sym_info
,
294 unsigned short *vna_other
);
298 #define SECTION_NAME(X) \
299 ((X) == NULL ? _("<none>") \
300 : string_table == NULL ? _("<no-name>") \
301 : ((X)->sh_name >= string_table_length ? _("<corrupt>") \
302 : string_table + (X)->sh_name))
304 #define DT_VERSIONTAGIDX(tag) (DT_VERNEEDNUM - (tag)) /* Reverse order! */
306 #define GET_ELF_SYMBOLS(file, section, sym_count) \
307 (is_32bit_elf ? get_32bit_elf_symbols (file, section, sym_count) \
308 : get_64bit_elf_symbols (file, section, sym_count))
310 #define VALID_DYNAMIC_NAME(offset) ((dynamic_strings != NULL) && (offset < dynamic_strings_length))
311 /* GET_DYNAMIC_NAME asssumes that VALID_DYNAMIC_NAME has
312 already been called and verified that the string exists. */
313 #define GET_DYNAMIC_NAME(offset) (dynamic_strings + offset)
315 #define REMOVE_ARCH_BITS(ADDR) \
318 if (elf_header.e_machine == EM_ARM) \
323 /* Retrieve NMEMB structures, each SIZE bytes long from FILE starting at OFFSET +
324 the offset of the current archive member, if we are examining an archive.
325 Put the retrieved data into VAR, if it is not NULL. Otherwise allocate a buffer
326 using malloc and fill that. In either case return the pointer to the start of
327 the retrieved data or NULL if something went wrong. If something does go wrong
328 and REASON is not NULL then emit an error message using REASON as part of the
332 get_data (void * var
, FILE * file
, unsigned long offset
, bfd_size_type size
,
333 bfd_size_type nmemb
, const char * reason
)
336 bfd_size_type amt
= size
* nmemb
;
338 if (size
== 0 || nmemb
== 0)
341 /* If the size_t type is smaller than the bfd_size_type, eg because
342 you are building a 32-bit tool on a 64-bit host, then make sure
343 that when the sizes are cast to (size_t) no information is lost. */
344 if (sizeof (size_t) < sizeof (bfd_size_type
)
345 && ( (bfd_size_type
) ((size_t) size
) != size
346 || (bfd_size_type
) ((size_t) nmemb
) != nmemb
))
349 error (_("Size truncation prevents reading 0x%llx elements of size 0x%llx for %s\n"),
350 (unsigned long long) nmemb
, (unsigned long long) size
, reason
);
354 /* Check for size overflow. */
358 error (_("Size overflow prevents reading 0x%llx elements of size 0x%llx for %s\n"),
359 (unsigned long long) nmemb
, (unsigned long long) size
, reason
);
363 /* Be kind to memory chekers (eg valgrind, address sanitizer) by not
364 attempting to allocate memory when the read is bound to fail. */
365 if (amt
> current_file_size
366 || offset
+ archive_file_offset
+ amt
> current_file_size
)
369 error (_("Reading 0x%llx bytes extends past end of file for %s\n"),
370 (unsigned long long) amt
, reason
);
374 if (fseek (file
, archive_file_offset
+ offset
, SEEK_SET
))
377 error (_("Unable to seek to 0x%lx for %s\n"),
378 (unsigned long) archive_file_offset
+ offset
, reason
);
385 /* Check for overflow. */
386 if (nmemb
< (~(bfd_size_type
) 0 - 1) / size
)
387 /* + 1 so that we can '\0' terminate invalid string table sections. */
388 mvar
= malloc ((size_t) amt
+ 1);
393 error (_("Out of memory allocating 0x%llx bytes for %s\n"),
394 (unsigned long long) amt
, reason
);
398 ((char *) mvar
)[amt
] = '\0';
401 if (fread (mvar
, (size_t) size
, (size_t) nmemb
, file
) != nmemb
)
404 error (_("Unable to read in 0x%llx bytes of %s\n"),
405 (unsigned long long) amt
, reason
);
414 /* Print a VMA value. */
417 print_vma (bfd_vma vma
, print_mode mode
)
430 return nc
+ printf ("%8.8" BFD_VMA_FMT
"x", vma
);
437 return printf ("%5" BFD_VMA_FMT
"d", vma
);
445 return nc
+ printf ("%" BFD_VMA_FMT
"x", vma
);
448 return printf ("%" BFD_VMA_FMT
"d", vma
);
451 return printf ("%" BFD_VMA_FMT
"u", vma
);
456 /* Display a symbol on stdout. Handles the display of control characters and
457 multibye characters (assuming the host environment supports them).
459 Display at most abs(WIDTH) characters, truncating as necessary, unless do_wide is true.
461 If WIDTH is negative then ensure that the output is at least (- WIDTH) characters,
462 padding as necessary.
464 Returns the number of emitted characters. */
467 print_symbol (int width
, const char *symbol
)
469 bfd_boolean extra_padding
= FALSE
;
471 #ifdef HAVE_MBSTATE_T
478 /* Keep the width positive. This also helps. */
480 extra_padding
= TRUE
;
485 /* Set the remaining width to a very large value.
486 This simplifies the code below. */
487 width_remaining
= INT_MAX
;
489 width_remaining
= width
;
491 #ifdef HAVE_MBSTATE_T
492 /* Initialise the multibyte conversion state. */
493 memset (& state
, 0, sizeof (state
));
496 while (width_remaining
)
499 const char c
= *symbol
++;
504 /* Do not print control characters directly as they can affect terminal
505 settings. Such characters usually appear in the names generated
506 by the assembler for local labels. */
509 if (width_remaining
< 2)
512 printf ("^%c", c
+ 0x40);
513 width_remaining
-= 2;
516 else if (ISPRINT (c
))
524 #ifdef HAVE_MBSTATE_T
527 /* Let printf do the hard work of displaying multibyte characters. */
528 printf ("%.1s", symbol
- 1);
532 #ifdef HAVE_MBSTATE_T
533 /* Try to find out how many bytes made up the character that was
534 just printed. Advance the symbol pointer past the bytes that
536 n
= mbrtowc (& w
, symbol
- 1, MB_CUR_MAX
, & state
);
540 if (n
!= (size_t) -1 && n
!= (size_t) -2 && n
> 0)
545 if (extra_padding
&& num_printed
< width
)
547 /* Fill in the remaining spaces. */
548 printf ("%-*s", width
- num_printed
, " ");
555 /* Returns a pointer to a static buffer containing a printable version of
556 the given section's name. Like print_symbol, except that it does not try
557 to print multibyte characters, it just interprets them as hex values. */
560 printable_section_name (const Elf_Internal_Shdr
* sec
)
562 #define MAX_PRINT_SEC_NAME_LEN 128
563 static char sec_name_buf
[MAX_PRINT_SEC_NAME_LEN
+ 1];
564 const char * name
= SECTION_NAME (sec
);
565 char * buf
= sec_name_buf
;
567 unsigned int remaining
= MAX_PRINT_SEC_NAME_LEN
;
569 while ((c
= * name
++) != 0)
580 else if (ISPRINT (c
))
587 static char hex
[17] = "0123456789ABCDEF";
592 * buf
++ = hex
[(c
& 0xf0) >> 4];
593 * buf
++ = hex
[c
& 0x0f];
607 printable_section_name_from_index (unsigned long ndx
)
609 if (ndx
>= elf_header
.e_shnum
)
610 return _("<corrupt>");
612 return printable_section_name (section_headers
+ ndx
);
615 /* Return a pointer to section NAME, or NULL if no such section exists. */
617 static Elf_Internal_Shdr
*
618 find_section (const char * name
)
622 for (i
= 0; i
< elf_header
.e_shnum
; i
++)
623 if (streq (SECTION_NAME (section_headers
+ i
), name
))
624 return section_headers
+ i
;
629 /* Return a pointer to a section containing ADDR, or NULL if no such
632 static Elf_Internal_Shdr
*
633 find_section_by_address (bfd_vma addr
)
637 for (i
= 0; i
< elf_header
.e_shnum
; i
++)
639 Elf_Internal_Shdr
*sec
= section_headers
+ i
;
640 if (addr
>= sec
->sh_addr
&& addr
< sec
->sh_addr
+ sec
->sh_size
)
647 static Elf_Internal_Shdr
*
648 find_section_by_type (unsigned int type
)
652 for (i
= 0; i
< elf_header
.e_shnum
; i
++)
654 Elf_Internal_Shdr
*sec
= section_headers
+ i
;
655 if (sec
->sh_type
== type
)
662 /* Return a pointer to section NAME, or NULL if no such section exists,
663 restricted to the list of sections given in SET. */
665 static Elf_Internal_Shdr
*
666 find_section_in_set (const char * name
, unsigned int * set
)
672 while ((i
= *set
++) > 0)
673 if (streq (SECTION_NAME (section_headers
+ i
), name
))
674 return section_headers
+ i
;
677 return find_section (name
);
680 /* Read an unsigned LEB128 encoded value from p. Set *PLEN to the number of
683 static inline unsigned long
684 read_uleb128 (unsigned char *data
,
685 unsigned int *length_return
,
686 const unsigned char * const end
)
688 return read_leb128 (data
, length_return
, FALSE
, end
);
691 /* Return true if the current file is for IA-64 machine and OpenVMS ABI.
692 This OS has so many departures from the ELF standard that we test it at
698 return elf_header
.e_machine
== EM_IA_64
699 && elf_header
.e_ident
[EI_OSABI
] == ELFOSABI_OPENVMS
;
702 /* Guess the relocation size commonly used by the specific machines. */
705 guess_is_rela (unsigned int e_machine
)
709 /* Targets that use REL relocations. */
724 /* Targets that use RELA relocations. */
728 case EM_ADAPTEVA_EPIPHANY
:
730 case EM_ALTERA_NIOS2
:
733 case EM_ARC_COMPACT2
:
753 case EM_LATTICEMICO32
:
762 case EM_CYGNUS_MN10200
:
764 case EM_CYGNUS_MN10300
:
798 case EM_MICROBLAZE_OLD
:
819 warn (_("Don't know about relocations on this machine architecture\n"));
825 slurp_rela_relocs (FILE * file
,
826 unsigned long rel_offset
,
827 unsigned long rel_size
,
828 Elf_Internal_Rela
** relasp
,
829 unsigned long * nrelasp
)
831 Elf_Internal_Rela
* relas
;
837 Elf32_External_Rela
* erelas
;
839 erelas
= (Elf32_External_Rela
*) get_data (NULL
, file
, rel_offset
, 1,
840 rel_size
, _("32-bit relocation data"));
844 nrelas
= rel_size
/ sizeof (Elf32_External_Rela
);
846 relas
= (Elf_Internal_Rela
*) cmalloc (nrelas
,
847 sizeof (Elf_Internal_Rela
));
852 error (_("out of memory parsing relocs\n"));
856 for (i
= 0; i
< nrelas
; i
++)
858 relas
[i
].r_offset
= BYTE_GET (erelas
[i
].r_offset
);
859 relas
[i
].r_info
= BYTE_GET (erelas
[i
].r_info
);
860 relas
[i
].r_addend
= BYTE_GET_SIGNED (erelas
[i
].r_addend
);
867 Elf64_External_Rela
* erelas
;
869 erelas
= (Elf64_External_Rela
*) get_data (NULL
, file
, rel_offset
, 1,
870 rel_size
, _("64-bit relocation data"));
874 nrelas
= rel_size
/ sizeof (Elf64_External_Rela
);
876 relas
= (Elf_Internal_Rela
*) cmalloc (nrelas
,
877 sizeof (Elf_Internal_Rela
));
882 error (_("out of memory parsing relocs\n"));
886 for (i
= 0; i
< nrelas
; i
++)
888 relas
[i
].r_offset
= BYTE_GET (erelas
[i
].r_offset
);
889 relas
[i
].r_info
= BYTE_GET (erelas
[i
].r_info
);
890 relas
[i
].r_addend
= BYTE_GET_SIGNED (erelas
[i
].r_addend
);
892 /* The #ifdef BFD64 below is to prevent a compile time
893 warning. We know that if we do not have a 64 bit data
894 type that we will never execute this code anyway. */
896 if (elf_header
.e_machine
== EM_MIPS
897 && elf_header
.e_ident
[EI_DATA
] != ELFDATA2MSB
)
899 /* In little-endian objects, r_info isn't really a
900 64-bit little-endian value: it has a 32-bit
901 little-endian symbol index followed by four
902 individual byte fields. Reorder INFO
904 bfd_vma inf
= relas
[i
].r_info
;
905 inf
= (((inf
& 0xffffffff) << 32)
906 | ((inf
>> 56) & 0xff)
907 | ((inf
>> 40) & 0xff00)
908 | ((inf
>> 24) & 0xff0000)
909 | ((inf
>> 8) & 0xff000000));
910 relas
[i
].r_info
= inf
;
923 slurp_rel_relocs (FILE * file
,
924 unsigned long rel_offset
,
925 unsigned long rel_size
,
926 Elf_Internal_Rela
** relsp
,
927 unsigned long * nrelsp
)
929 Elf_Internal_Rela
* rels
;
935 Elf32_External_Rel
* erels
;
937 erels
= (Elf32_External_Rel
*) get_data (NULL
, file
, rel_offset
, 1,
938 rel_size
, _("32-bit relocation data"));
942 nrels
= rel_size
/ sizeof (Elf32_External_Rel
);
944 rels
= (Elf_Internal_Rela
*) cmalloc (nrels
, sizeof (Elf_Internal_Rela
));
949 error (_("out of memory parsing relocs\n"));
953 for (i
= 0; i
< nrels
; i
++)
955 rels
[i
].r_offset
= BYTE_GET (erels
[i
].r_offset
);
956 rels
[i
].r_info
= BYTE_GET (erels
[i
].r_info
);
957 rels
[i
].r_addend
= 0;
964 Elf64_External_Rel
* erels
;
966 erels
= (Elf64_External_Rel
*) get_data (NULL
, file
, rel_offset
, 1,
967 rel_size
, _("64-bit relocation data"));
971 nrels
= rel_size
/ sizeof (Elf64_External_Rel
);
973 rels
= (Elf_Internal_Rela
*) cmalloc (nrels
, sizeof (Elf_Internal_Rela
));
978 error (_("out of memory parsing relocs\n"));
982 for (i
= 0; i
< nrels
; i
++)
984 rels
[i
].r_offset
= BYTE_GET (erels
[i
].r_offset
);
985 rels
[i
].r_info
= BYTE_GET (erels
[i
].r_info
);
986 rels
[i
].r_addend
= 0;
988 /* The #ifdef BFD64 below is to prevent a compile time
989 warning. We know that if we do not have a 64 bit data
990 type that we will never execute this code anyway. */
992 if (elf_header
.e_machine
== EM_MIPS
993 && elf_header
.e_ident
[EI_DATA
] != ELFDATA2MSB
)
995 /* In little-endian objects, r_info isn't really a
996 64-bit little-endian value: it has a 32-bit
997 little-endian symbol index followed by four
998 individual byte fields. Reorder INFO
1000 bfd_vma inf
= rels
[i
].r_info
;
1001 inf
= (((inf
& 0xffffffff) << 32)
1002 | ((inf
>> 56) & 0xff)
1003 | ((inf
>> 40) & 0xff00)
1004 | ((inf
>> 24) & 0xff0000)
1005 | ((inf
>> 8) & 0xff000000));
1006 rels
[i
].r_info
= inf
;
1018 /* Returns the reloc type extracted from the reloc info field. */
1021 get_reloc_type (bfd_vma reloc_info
)
1024 return ELF32_R_TYPE (reloc_info
);
1026 switch (elf_header
.e_machine
)
1029 /* Note: We assume that reloc_info has already been adjusted for us. */
1030 return ELF64_MIPS_R_TYPE (reloc_info
);
1033 return ELF64_R_TYPE_ID (reloc_info
);
1036 return ELF64_R_TYPE (reloc_info
);
1040 /* Return the symbol index extracted from the reloc info field. */
1043 get_reloc_symindex (bfd_vma reloc_info
)
1045 return is_32bit_elf
? ELF32_R_SYM (reloc_info
) : ELF64_R_SYM (reloc_info
);
1048 static inline bfd_boolean
1049 uses_msp430x_relocs (void)
1052 elf_header
.e_machine
== EM_MSP430
/* Paranoia. */
1053 /* GCC uses osabi == ELFOSBI_STANDALONE. */
1054 && (((elf_header
.e_flags
& EF_MSP430_MACH
) == E_MSP430_MACH_MSP430X
)
1055 /* TI compiler uses ELFOSABI_NONE. */
1056 || (elf_header
.e_ident
[EI_OSABI
] == ELFOSABI_NONE
));
1059 /* Display the contents of the relocation data found at the specified
1063 dump_relocations (FILE * file
,
1064 unsigned long rel_offset
,
1065 unsigned long rel_size
,
1066 Elf_Internal_Sym
* symtab
,
1067 unsigned long nsyms
,
1069 unsigned long strtablen
,
1074 Elf_Internal_Rela
* rels
;
1076 if (is_rela
== UNKNOWN
)
1077 is_rela
= guess_is_rela (elf_header
.e_machine
);
1081 if (!slurp_rela_relocs (file
, rel_offset
, rel_size
, &rels
, &rel_size
))
1086 if (!slurp_rel_relocs (file
, rel_offset
, rel_size
, &rels
, &rel_size
))
1095 printf (_(" Offset Info Type Sym. Value Symbol's Name + Addend\n"));
1097 printf (_(" Offset Info Type Sym.Value Sym. Name + Addend\n"));
1102 printf (_(" Offset Info Type Sym. Value Symbol's Name\n"));
1104 printf (_(" Offset Info Type Sym.Value Sym. Name\n"));
1112 printf (_(" Offset Info Type Symbol's Value Symbol's Name + Addend\n"));
1114 printf (_(" Offset Info Type Sym. Value Sym. Name + Addend\n"));
1119 printf (_(" Offset Info Type Symbol's Value Symbol's Name\n"));
1121 printf (_(" Offset Info Type Sym. Value Sym. Name\n"));
1125 for (i
= 0; i
< rel_size
; i
++)
1130 bfd_vma symtab_index
;
1133 offset
= rels
[i
].r_offset
;
1134 inf
= rels
[i
].r_info
;
1136 type
= get_reloc_type (inf
);
1137 symtab_index
= get_reloc_symindex (inf
);
1141 printf ("%8.8lx %8.8lx ",
1142 (unsigned long) offset
& 0xffffffff,
1143 (unsigned long) inf
& 0xffffffff);
1147 #if BFD_HOST_64BIT_LONG
1149 ? "%16.16lx %16.16lx "
1150 : "%12.12lx %12.12lx ",
1152 #elif BFD_HOST_64BIT_LONG_LONG
1155 ? "%16.16llx %16.16llx "
1156 : "%12.12llx %12.12llx ",
1160 ? "%16.16I64x %16.16I64x "
1161 : "%12.12I64x %12.12I64x ",
1166 ? "%8.8lx%8.8lx %8.8lx%8.8lx "
1167 : "%4.4lx%8.8lx %4.4lx%8.8lx ",
1168 _bfd_int64_high (offset
),
1169 _bfd_int64_low (offset
),
1170 _bfd_int64_high (inf
),
1171 _bfd_int64_low (inf
));
1175 switch (elf_header
.e_machine
)
1182 rtype
= elf_aarch64_reloc_type (type
);
1186 case EM_CYGNUS_M32R
:
1187 rtype
= elf_m32r_reloc_type (type
);
1192 rtype
= elf_i386_reloc_type (type
);
1197 rtype
= elf_m68hc11_reloc_type (type
);
1201 rtype
= elf_m68k_reloc_type (type
);
1205 rtype
= elf_i960_reloc_type (type
);
1210 rtype
= elf_avr_reloc_type (type
);
1213 case EM_OLD_SPARCV9
:
1214 case EM_SPARC32PLUS
:
1217 rtype
= elf_sparc_reloc_type (type
);
1221 rtype
= elf_spu_reloc_type (type
);
1225 rtype
= v800_reloc_type (type
);
1228 case EM_CYGNUS_V850
:
1229 rtype
= v850_reloc_type (type
);
1233 case EM_CYGNUS_D10V
:
1234 rtype
= elf_d10v_reloc_type (type
);
1238 case EM_CYGNUS_D30V
:
1239 rtype
= elf_d30v_reloc_type (type
);
1243 rtype
= elf_dlx_reloc_type (type
);
1247 rtype
= elf_sh_reloc_type (type
);
1251 case EM_CYGNUS_MN10300
:
1252 rtype
= elf_mn10300_reloc_type (type
);
1256 case EM_CYGNUS_MN10200
:
1257 rtype
= elf_mn10200_reloc_type (type
);
1261 case EM_CYGNUS_FR30
:
1262 rtype
= elf_fr30_reloc_type (type
);
1266 rtype
= elf_frv_reloc_type (type
);
1270 rtype
= elf_ft32_reloc_type (type
);
1274 rtype
= elf_mcore_reloc_type (type
);
1278 rtype
= elf_mmix_reloc_type (type
);
1282 rtype
= elf_moxie_reloc_type (type
);
1286 if (uses_msp430x_relocs ())
1288 rtype
= elf_msp430x_reloc_type (type
);
1292 rtype
= elf_msp430_reloc_type (type
);
1296 rtype
= elf_nds32_reloc_type (type
);
1300 rtype
= elf_ppc_reloc_type (type
);
1304 rtype
= elf_ppc64_reloc_type (type
);
1308 case EM_MIPS_RS3_LE
:
1309 rtype
= elf_mips_reloc_type (type
);
1313 rtype
= elf_alpha_reloc_type (type
);
1317 rtype
= elf_arm_reloc_type (type
);
1321 case EM_ARC_COMPACT
:
1322 case EM_ARC_COMPACT2
:
1323 rtype
= elf_arc_reloc_type (type
);
1327 rtype
= elf_hppa_reloc_type (type
);
1333 rtype
= elf_h8_reloc_type (type
);
1337 rtype
= elf_or1k_reloc_type (type
);
1342 rtype
= elf_pj_reloc_type (type
);
1345 rtype
= elf_ia64_reloc_type (type
);
1349 rtype
= elf_cris_reloc_type (type
);
1353 rtype
= elf_i860_reloc_type (type
);
1359 rtype
= elf_x86_64_reloc_type (type
);
1363 rtype
= i370_reloc_type (type
);
1368 rtype
= elf_s390_reloc_type (type
);
1372 rtype
= elf_score_reloc_type (type
);
1376 rtype
= elf_xstormy16_reloc_type (type
);
1380 rtype
= elf_crx_reloc_type (type
);
1384 rtype
= elf_vax_reloc_type (type
);
1388 rtype
= elf_visium_reloc_type (type
);
1391 case EM_ADAPTEVA_EPIPHANY
:
1392 rtype
= elf_epiphany_reloc_type (type
);
1397 rtype
= elf_ip2k_reloc_type (type
);
1401 rtype
= elf_iq2000_reloc_type (type
);
1406 rtype
= elf_xtensa_reloc_type (type
);
1409 case EM_LATTICEMICO32
:
1410 rtype
= elf_lm32_reloc_type (type
);
1415 rtype
= elf_m32c_reloc_type (type
);
1419 rtype
= elf_mt_reloc_type (type
);
1423 rtype
= elf_bfin_reloc_type (type
);
1427 rtype
= elf_mep_reloc_type (type
);
1431 rtype
= elf_cr16_reloc_type (type
);
1435 case EM_MICROBLAZE_OLD
:
1436 rtype
= elf_microblaze_reloc_type (type
);
1440 rtype
= elf_rl78_reloc_type (type
);
1444 rtype
= elf_rx_reloc_type (type
);
1448 rtype
= elf_metag_reloc_type (type
);
1453 rtype
= elf_xc16x_reloc_type (type
);
1457 rtype
= elf_tic6x_reloc_type (type
);
1461 rtype
= elf_tilegx_reloc_type (type
);
1465 rtype
= elf_tilepro_reloc_type (type
);
1469 rtype
= elf_xgate_reloc_type (type
);
1472 case EM_ALTERA_NIOS2
:
1473 rtype
= elf_nios2_reloc_type (type
);
1478 printf (_("unrecognized: %-7lx"), (unsigned long) type
& 0xffffffff);
1480 printf (do_wide
? "%-22.22s" : "%-17.17s", rtype
);
1482 if (elf_header
.e_machine
== EM_ALPHA
1484 && streq (rtype
, "R_ALPHA_LITUSE")
1487 switch (rels
[i
].r_addend
)
1489 case LITUSE_ALPHA_ADDR
: rtype
= "ADDR"; break;
1490 case LITUSE_ALPHA_BASE
: rtype
= "BASE"; break;
1491 case LITUSE_ALPHA_BYTOFF
: rtype
= "BYTOFF"; break;
1492 case LITUSE_ALPHA_JSR
: rtype
= "JSR"; break;
1493 case LITUSE_ALPHA_TLSGD
: rtype
= "TLSGD"; break;
1494 case LITUSE_ALPHA_TLSLDM
: rtype
= "TLSLDM"; break;
1495 case LITUSE_ALPHA_JSRDIRECT
: rtype
= "JSRDIRECT"; break;
1496 default: rtype
= NULL
;
1499 printf (" (%s)", rtype
);
1503 printf (_("<unknown addend: %lx>"),
1504 (unsigned long) rels
[i
].r_addend
);
1507 else if (symtab_index
)
1509 if (symtab
== NULL
|| symtab_index
>= nsyms
)
1510 printf (_(" bad symbol index: %08lx"), (unsigned long) symtab_index
);
1513 Elf_Internal_Sym
* psym
;
1514 const char * version_string
;
1515 enum versioned_symbol_info sym_info
;
1516 unsigned short vna_other
;
1518 psym
= symtab
+ symtab_index
;
1521 = get_symbol_version_string (file
, is_dynsym
,
1530 if (ELF_ST_TYPE (psym
->st_info
) == STT_GNU_IFUNC
)
1534 unsigned int width
= is_32bit_elf
? 8 : 14;
1536 /* Relocations against GNU_IFUNC symbols do not use the value
1537 of the symbol as the address to relocate against. Instead
1538 they invoke the function named by the symbol and use its
1539 result as the address for relocation.
1541 To indicate this to the user, do not display the value of
1542 the symbol in the "Symbols's Value" field. Instead show
1543 its name followed by () as a hint that the symbol is
1547 || psym
->st_name
== 0
1548 || psym
->st_name
>= strtablen
)
1551 name
= strtab
+ psym
->st_name
;
1553 len
= print_symbol (width
, name
);
1555 printf (sym_info
== symbol_public
? "@@%s" : "@%s",
1557 printf ("()%-*s", len
<= width
? (width
+ 1) - len
: 1, " ");
1561 print_vma (psym
->st_value
, LONG_HEX
);
1563 printf (is_32bit_elf
? " " : " ");
1566 if (psym
->st_name
== 0)
1568 const char * sec_name
= "<null>";
1571 if (ELF_ST_TYPE (psym
->st_info
) == STT_SECTION
)
1573 if (psym
->st_shndx
< elf_header
.e_shnum
)
1574 sec_name
= SECTION_NAME (section_headers
+ psym
->st_shndx
);
1575 else if (psym
->st_shndx
== SHN_ABS
)
1577 else if (psym
->st_shndx
== SHN_COMMON
)
1578 sec_name
= "COMMON";
1579 else if ((elf_header
.e_machine
== EM_MIPS
1580 && psym
->st_shndx
== SHN_MIPS_SCOMMON
)
1581 || (elf_header
.e_machine
== EM_TI_C6000
1582 && psym
->st_shndx
== SHN_TIC6X_SCOMMON
))
1583 sec_name
= "SCOMMON";
1584 else if (elf_header
.e_machine
== EM_MIPS
1585 && psym
->st_shndx
== SHN_MIPS_SUNDEFINED
)
1586 sec_name
= "SUNDEF";
1587 else if ((elf_header
.e_machine
== EM_X86_64
1588 || elf_header
.e_machine
== EM_L1OM
1589 || elf_header
.e_machine
== EM_K1OM
)
1590 && psym
->st_shndx
== SHN_X86_64_LCOMMON
)
1591 sec_name
= "LARGE_COMMON";
1592 else if (elf_header
.e_machine
== EM_IA_64
1593 && elf_header
.e_ident
[EI_OSABI
] == ELFOSABI_HPUX
1594 && psym
->st_shndx
== SHN_IA_64_ANSI_COMMON
)
1595 sec_name
= "ANSI_COM";
1596 else if (is_ia64_vms ()
1597 && psym
->st_shndx
== SHN_IA_64_VMS_SYMVEC
)
1598 sec_name
= "VMS_SYMVEC";
1601 sprintf (name_buf
, "<section 0x%x>",
1602 (unsigned int) psym
->st_shndx
);
1603 sec_name
= name_buf
;
1606 print_symbol (22, sec_name
);
1608 else if (strtab
== NULL
)
1609 printf (_("<string table index: %3ld>"), psym
->st_name
);
1610 else if (psym
->st_name
>= strtablen
)
1611 printf (_("<corrupt string table index: %3ld>"), psym
->st_name
);
1614 print_symbol (22, strtab
+ psym
->st_name
);
1616 printf (sym_info
== symbol_public
? "@@%s" : "@%s",
1622 bfd_vma off
= rels
[i
].r_addend
;
1624 if ((bfd_signed_vma
) off
< 0)
1625 printf (" - %" BFD_VMA_FMT
"x", - off
);
1627 printf (" + %" BFD_VMA_FMT
"x", off
);
1633 bfd_vma off
= rels
[i
].r_addend
;
1635 printf ("%*c", is_32bit_elf
? 12 : 20, ' ');
1636 if ((bfd_signed_vma
) off
< 0)
1637 printf ("-%" BFD_VMA_FMT
"x", - off
);
1639 printf ("%" BFD_VMA_FMT
"x", off
);
1642 if (elf_header
.e_machine
== EM_SPARCV9
1644 && streq (rtype
, "R_SPARC_OLO10"))
1645 printf (" + %lx", (unsigned long) ELF64_R_TYPE_DATA (inf
));
1650 if (! is_32bit_elf
&& elf_header
.e_machine
== EM_MIPS
)
1652 bfd_vma type2
= ELF64_MIPS_R_TYPE2 (inf
);
1653 bfd_vma type3
= ELF64_MIPS_R_TYPE3 (inf
);
1654 const char * rtype2
= elf_mips_reloc_type (type2
);
1655 const char * rtype3
= elf_mips_reloc_type (type3
);
1657 printf (" Type2: ");
1660 printf (_("unrecognized: %-7lx"),
1661 (unsigned long) type2
& 0xffffffff);
1663 printf ("%-17.17s", rtype2
);
1665 printf ("\n Type3: ");
1668 printf (_("unrecognized: %-7lx"),
1669 (unsigned long) type3
& 0xffffffff);
1671 printf ("%-17.17s", rtype3
);
1682 get_mips_dynamic_type (unsigned long type
)
1686 case DT_MIPS_RLD_VERSION
: return "MIPS_RLD_VERSION";
1687 case DT_MIPS_TIME_STAMP
: return "MIPS_TIME_STAMP";
1688 case DT_MIPS_ICHECKSUM
: return "MIPS_ICHECKSUM";
1689 case DT_MIPS_IVERSION
: return "MIPS_IVERSION";
1690 case DT_MIPS_FLAGS
: return "MIPS_FLAGS";
1691 case DT_MIPS_BASE_ADDRESS
: return "MIPS_BASE_ADDRESS";
1692 case DT_MIPS_MSYM
: return "MIPS_MSYM";
1693 case DT_MIPS_CONFLICT
: return "MIPS_CONFLICT";
1694 case DT_MIPS_LIBLIST
: return "MIPS_LIBLIST";
1695 case DT_MIPS_LOCAL_GOTNO
: return "MIPS_LOCAL_GOTNO";
1696 case DT_MIPS_CONFLICTNO
: return "MIPS_CONFLICTNO";
1697 case DT_MIPS_LIBLISTNO
: return "MIPS_LIBLISTNO";
1698 case DT_MIPS_SYMTABNO
: return "MIPS_SYMTABNO";
1699 case DT_MIPS_UNREFEXTNO
: return "MIPS_UNREFEXTNO";
1700 case DT_MIPS_GOTSYM
: return "MIPS_GOTSYM";
1701 case DT_MIPS_HIPAGENO
: return "MIPS_HIPAGENO";
1702 case DT_MIPS_RLD_MAP
: return "MIPS_RLD_MAP";
1703 case DT_MIPS_RLD_MAP_REL
: return "MIPS_RLD_MAP_REL";
1704 case DT_MIPS_DELTA_CLASS
: return "MIPS_DELTA_CLASS";
1705 case DT_MIPS_DELTA_CLASS_NO
: return "MIPS_DELTA_CLASS_NO";
1706 case DT_MIPS_DELTA_INSTANCE
: return "MIPS_DELTA_INSTANCE";
1707 case DT_MIPS_DELTA_INSTANCE_NO
: return "MIPS_DELTA_INSTANCE_NO";
1708 case DT_MIPS_DELTA_RELOC
: return "MIPS_DELTA_RELOC";
1709 case DT_MIPS_DELTA_RELOC_NO
: return "MIPS_DELTA_RELOC_NO";
1710 case DT_MIPS_DELTA_SYM
: return "MIPS_DELTA_SYM";
1711 case DT_MIPS_DELTA_SYM_NO
: return "MIPS_DELTA_SYM_NO";
1712 case DT_MIPS_DELTA_CLASSSYM
: return "MIPS_DELTA_CLASSSYM";
1713 case DT_MIPS_DELTA_CLASSSYM_NO
: return "MIPS_DELTA_CLASSSYM_NO";
1714 case DT_MIPS_CXX_FLAGS
: return "MIPS_CXX_FLAGS";
1715 case DT_MIPS_PIXIE_INIT
: return "MIPS_PIXIE_INIT";
1716 case DT_MIPS_SYMBOL_LIB
: return "MIPS_SYMBOL_LIB";
1717 case DT_MIPS_LOCALPAGE_GOTIDX
: return "MIPS_LOCALPAGE_GOTIDX";
1718 case DT_MIPS_LOCAL_GOTIDX
: return "MIPS_LOCAL_GOTIDX";
1719 case DT_MIPS_HIDDEN_GOTIDX
: return "MIPS_HIDDEN_GOTIDX";
1720 case DT_MIPS_PROTECTED_GOTIDX
: return "MIPS_PROTECTED_GOTIDX";
1721 case DT_MIPS_OPTIONS
: return "MIPS_OPTIONS";
1722 case DT_MIPS_INTERFACE
: return "MIPS_INTERFACE";
1723 case DT_MIPS_DYNSTR_ALIGN
: return "MIPS_DYNSTR_ALIGN";
1724 case DT_MIPS_INTERFACE_SIZE
: return "MIPS_INTERFACE_SIZE";
1725 case DT_MIPS_RLD_TEXT_RESOLVE_ADDR
: return "MIPS_RLD_TEXT_RESOLVE_ADDR";
1726 case DT_MIPS_PERF_SUFFIX
: return "MIPS_PERF_SUFFIX";
1727 case DT_MIPS_COMPACT_SIZE
: return "MIPS_COMPACT_SIZE";
1728 case DT_MIPS_GP_VALUE
: return "MIPS_GP_VALUE";
1729 case DT_MIPS_AUX_DYNAMIC
: return "MIPS_AUX_DYNAMIC";
1730 case DT_MIPS_PLTGOT
: return "MIPS_PLTGOT";
1731 case DT_MIPS_RWPLT
: return "MIPS_RWPLT";
1738 get_sparc64_dynamic_type (unsigned long type
)
1742 case DT_SPARC_REGISTER
: return "SPARC_REGISTER";
1749 get_ppc_dynamic_type (unsigned long type
)
1753 case DT_PPC_GOT
: return "PPC_GOT";
1754 case DT_PPC_OPT
: return "PPC_OPT";
1761 get_ppc64_dynamic_type (unsigned long type
)
1765 case DT_PPC64_GLINK
: return "PPC64_GLINK";
1766 case DT_PPC64_OPD
: return "PPC64_OPD";
1767 case DT_PPC64_OPDSZ
: return "PPC64_OPDSZ";
1768 case DT_PPC64_OPT
: return "PPC64_OPT";
1775 get_parisc_dynamic_type (unsigned long type
)
1779 case DT_HP_LOAD_MAP
: return "HP_LOAD_MAP";
1780 case DT_HP_DLD_FLAGS
: return "HP_DLD_FLAGS";
1781 case DT_HP_DLD_HOOK
: return "HP_DLD_HOOK";
1782 case DT_HP_UX10_INIT
: return "HP_UX10_INIT";
1783 case DT_HP_UX10_INITSZ
: return "HP_UX10_INITSZ";
1784 case DT_HP_PREINIT
: return "HP_PREINIT";
1785 case DT_HP_PREINITSZ
: return "HP_PREINITSZ";
1786 case DT_HP_NEEDED
: return "HP_NEEDED";
1787 case DT_HP_TIME_STAMP
: return "HP_TIME_STAMP";
1788 case DT_HP_CHECKSUM
: return "HP_CHECKSUM";
1789 case DT_HP_GST_SIZE
: return "HP_GST_SIZE";
1790 case DT_HP_GST_VERSION
: return "HP_GST_VERSION";
1791 case DT_HP_GST_HASHVAL
: return "HP_GST_HASHVAL";
1792 case DT_HP_EPLTREL
: return "HP_GST_EPLTREL";
1793 case DT_HP_EPLTRELSZ
: return "HP_GST_EPLTRELSZ";
1794 case DT_HP_FILTERED
: return "HP_FILTERED";
1795 case DT_HP_FILTER_TLS
: return "HP_FILTER_TLS";
1796 case DT_HP_COMPAT_FILTERED
: return "HP_COMPAT_FILTERED";
1797 case DT_HP_LAZYLOAD
: return "HP_LAZYLOAD";
1798 case DT_HP_BIND_NOW_COUNT
: return "HP_BIND_NOW_COUNT";
1799 case DT_PLT
: return "PLT";
1800 case DT_PLT_SIZE
: return "PLT_SIZE";
1801 case DT_DLT
: return "DLT";
1802 case DT_DLT_SIZE
: return "DLT_SIZE";
1809 get_ia64_dynamic_type (unsigned long type
)
1813 case DT_IA_64_PLT_RESERVE
: return "IA_64_PLT_RESERVE";
1814 case DT_IA_64_VMS_SUBTYPE
: return "VMS_SUBTYPE";
1815 case DT_IA_64_VMS_IMGIOCNT
: return "VMS_IMGIOCNT";
1816 case DT_IA_64_VMS_LNKFLAGS
: return "VMS_LNKFLAGS";
1817 case DT_IA_64_VMS_VIR_MEM_BLK_SIZ
: return "VMS_VIR_MEM_BLK_SIZ";
1818 case DT_IA_64_VMS_IDENT
: return "VMS_IDENT";
1819 case DT_IA_64_VMS_NEEDED_IDENT
: return "VMS_NEEDED_IDENT";
1820 case DT_IA_64_VMS_IMG_RELA_CNT
: return "VMS_IMG_RELA_CNT";
1821 case DT_IA_64_VMS_SEG_RELA_CNT
: return "VMS_SEG_RELA_CNT";
1822 case DT_IA_64_VMS_FIXUP_RELA_CNT
: return "VMS_FIXUP_RELA_CNT";
1823 case DT_IA_64_VMS_FIXUP_NEEDED
: return "VMS_FIXUP_NEEDED";
1824 case DT_IA_64_VMS_SYMVEC_CNT
: return "VMS_SYMVEC_CNT";
1825 case DT_IA_64_VMS_XLATED
: return "VMS_XLATED";
1826 case DT_IA_64_VMS_STACKSIZE
: return "VMS_STACKSIZE";
1827 case DT_IA_64_VMS_UNWINDSZ
: return "VMS_UNWINDSZ";
1828 case DT_IA_64_VMS_UNWIND_CODSEG
: return "VMS_UNWIND_CODSEG";
1829 case DT_IA_64_VMS_UNWIND_INFOSEG
: return "VMS_UNWIND_INFOSEG";
1830 case DT_IA_64_VMS_LINKTIME
: return "VMS_LINKTIME";
1831 case DT_IA_64_VMS_SEG_NO
: return "VMS_SEG_NO";
1832 case DT_IA_64_VMS_SYMVEC_OFFSET
: return "VMS_SYMVEC_OFFSET";
1833 case DT_IA_64_VMS_SYMVEC_SEG
: return "VMS_SYMVEC_SEG";
1834 case DT_IA_64_VMS_UNWIND_OFFSET
: return "VMS_UNWIND_OFFSET";
1835 case DT_IA_64_VMS_UNWIND_SEG
: return "VMS_UNWIND_SEG";
1836 case DT_IA_64_VMS_STRTAB_OFFSET
: return "VMS_STRTAB_OFFSET";
1837 case DT_IA_64_VMS_SYSVER_OFFSET
: return "VMS_SYSVER_OFFSET";
1838 case DT_IA_64_VMS_IMG_RELA_OFF
: return "VMS_IMG_RELA_OFF";
1839 case DT_IA_64_VMS_SEG_RELA_OFF
: return "VMS_SEG_RELA_OFF";
1840 case DT_IA_64_VMS_FIXUP_RELA_OFF
: return "VMS_FIXUP_RELA_OFF";
1841 case DT_IA_64_VMS_PLTGOT_OFFSET
: return "VMS_PLTGOT_OFFSET";
1842 case DT_IA_64_VMS_PLTGOT_SEG
: return "VMS_PLTGOT_SEG";
1843 case DT_IA_64_VMS_FPMODE
: return "VMS_FPMODE";
1850 get_alpha_dynamic_type (unsigned long type
)
1854 case DT_ALPHA_PLTRO
: return "ALPHA_PLTRO";
1861 get_score_dynamic_type (unsigned long type
)
1865 case DT_SCORE_BASE_ADDRESS
: return "SCORE_BASE_ADDRESS";
1866 case DT_SCORE_LOCAL_GOTNO
: return "SCORE_LOCAL_GOTNO";
1867 case DT_SCORE_SYMTABNO
: return "SCORE_SYMTABNO";
1868 case DT_SCORE_GOTSYM
: return "SCORE_GOTSYM";
1869 case DT_SCORE_UNREFEXTNO
: return "SCORE_UNREFEXTNO";
1870 case DT_SCORE_HIPAGENO
: return "SCORE_HIPAGENO";
1877 get_tic6x_dynamic_type (unsigned long type
)
1881 case DT_C6000_GSYM_OFFSET
: return "C6000_GSYM_OFFSET";
1882 case DT_C6000_GSTR_OFFSET
: return "C6000_GSTR_OFFSET";
1883 case DT_C6000_DSBT_BASE
: return "C6000_DSBT_BASE";
1884 case DT_C6000_DSBT_SIZE
: return "C6000_DSBT_SIZE";
1885 case DT_C6000_PREEMPTMAP
: return "C6000_PREEMPTMAP";
1886 case DT_C6000_DSBT_INDEX
: return "C6000_DSBT_INDEX";
1893 get_nios2_dynamic_type (unsigned long type
)
1897 case DT_NIOS2_GP
: return "NIOS2_GP";
1904 get_dynamic_type (unsigned long type
)
1906 static char buff
[64];
1910 case DT_NULL
: return "NULL";
1911 case DT_NEEDED
: return "NEEDED";
1912 case DT_PLTRELSZ
: return "PLTRELSZ";
1913 case DT_PLTGOT
: return "PLTGOT";
1914 case DT_HASH
: return "HASH";
1915 case DT_STRTAB
: return "STRTAB";
1916 case DT_SYMTAB
: return "SYMTAB";
1917 case DT_RELA
: return "RELA";
1918 case DT_RELASZ
: return "RELASZ";
1919 case DT_RELAENT
: return "RELAENT";
1920 case DT_STRSZ
: return "STRSZ";
1921 case DT_SYMENT
: return "SYMENT";
1922 case DT_INIT
: return "INIT";
1923 case DT_FINI
: return "FINI";
1924 case DT_SONAME
: return "SONAME";
1925 case DT_RPATH
: return "RPATH";
1926 case DT_SYMBOLIC
: return "SYMBOLIC";
1927 case DT_REL
: return "REL";
1928 case DT_RELSZ
: return "RELSZ";
1929 case DT_RELENT
: return "RELENT";
1930 case DT_PLTREL
: return "PLTREL";
1931 case DT_DEBUG
: return "DEBUG";
1932 case DT_TEXTREL
: return "TEXTREL";
1933 case DT_JMPREL
: return "JMPREL";
1934 case DT_BIND_NOW
: return "BIND_NOW";
1935 case DT_INIT_ARRAY
: return "INIT_ARRAY";
1936 case DT_FINI_ARRAY
: return "FINI_ARRAY";
1937 case DT_INIT_ARRAYSZ
: return "INIT_ARRAYSZ";
1938 case DT_FINI_ARRAYSZ
: return "FINI_ARRAYSZ";
1939 case DT_RUNPATH
: return "RUNPATH";
1940 case DT_FLAGS
: return "FLAGS";
1942 case DT_PREINIT_ARRAY
: return "PREINIT_ARRAY";
1943 case DT_PREINIT_ARRAYSZ
: return "PREINIT_ARRAYSZ";
1945 case DT_CHECKSUM
: return "CHECKSUM";
1946 case DT_PLTPADSZ
: return "PLTPADSZ";
1947 case DT_MOVEENT
: return "MOVEENT";
1948 case DT_MOVESZ
: return "MOVESZ";
1949 case DT_FEATURE
: return "FEATURE";
1950 case DT_POSFLAG_1
: return "POSFLAG_1";
1951 case DT_SYMINSZ
: return "SYMINSZ";
1952 case DT_SYMINENT
: return "SYMINENT"; /* aka VALRNGHI */
1954 case DT_ADDRRNGLO
: return "ADDRRNGLO";
1955 case DT_CONFIG
: return "CONFIG";
1956 case DT_DEPAUDIT
: return "DEPAUDIT";
1957 case DT_AUDIT
: return "AUDIT";
1958 case DT_PLTPAD
: return "PLTPAD";
1959 case DT_MOVETAB
: return "MOVETAB";
1960 case DT_SYMINFO
: return "SYMINFO"; /* aka ADDRRNGHI */
1962 case DT_VERSYM
: return "VERSYM";
1964 case DT_TLSDESC_GOT
: return "TLSDESC_GOT";
1965 case DT_TLSDESC_PLT
: return "TLSDESC_PLT";
1966 case DT_RELACOUNT
: return "RELACOUNT";
1967 case DT_RELCOUNT
: return "RELCOUNT";
1968 case DT_FLAGS_1
: return "FLAGS_1";
1969 case DT_VERDEF
: return "VERDEF";
1970 case DT_VERDEFNUM
: return "VERDEFNUM";
1971 case DT_VERNEED
: return "VERNEED";
1972 case DT_VERNEEDNUM
: return "VERNEEDNUM";
1974 case DT_AUXILIARY
: return "AUXILIARY";
1975 case DT_USED
: return "USED";
1976 case DT_FILTER
: return "FILTER";
1978 case DT_GNU_PRELINKED
: return "GNU_PRELINKED";
1979 case DT_GNU_CONFLICT
: return "GNU_CONFLICT";
1980 case DT_GNU_CONFLICTSZ
: return "GNU_CONFLICTSZ";
1981 case DT_GNU_LIBLIST
: return "GNU_LIBLIST";
1982 case DT_GNU_LIBLISTSZ
: return "GNU_LIBLISTSZ";
1983 case DT_GNU_HASH
: return "GNU_HASH";
1986 if ((type
>= DT_LOPROC
) && (type
<= DT_HIPROC
))
1988 const char * result
;
1990 switch (elf_header
.e_machine
)
1993 case EM_MIPS_RS3_LE
:
1994 result
= get_mips_dynamic_type (type
);
1997 result
= get_sparc64_dynamic_type (type
);
2000 result
= get_ppc_dynamic_type (type
);
2003 result
= get_ppc64_dynamic_type (type
);
2006 result
= get_ia64_dynamic_type (type
);
2009 result
= get_alpha_dynamic_type (type
);
2012 result
= get_score_dynamic_type (type
);
2015 result
= get_tic6x_dynamic_type (type
);
2017 case EM_ALTERA_NIOS2
:
2018 result
= get_nios2_dynamic_type (type
);
2028 snprintf (buff
, sizeof (buff
), _("Processor Specific: %lx"), type
);
2030 else if (((type
>= DT_LOOS
) && (type
<= DT_HIOS
))
2031 || (elf_header
.e_machine
== EM_PARISC
2032 && (type
>= OLD_DT_LOOS
) && (type
<= OLD_DT_HIOS
)))
2034 const char * result
;
2036 switch (elf_header
.e_machine
)
2039 result
= get_parisc_dynamic_type (type
);
2042 result
= get_ia64_dynamic_type (type
);
2052 snprintf (buff
, sizeof (buff
), _("Operating System specific: %lx"),
2056 snprintf (buff
, sizeof (buff
), _("<unknown>: %lx"), type
);
2063 get_file_type (unsigned e_type
)
2065 static char buff
[32];
2069 case ET_NONE
: return _("NONE (None)");
2070 case ET_REL
: return _("REL (Relocatable file)");
2071 case ET_EXEC
: return _("EXEC (Executable file)");
2072 case ET_DYN
: return _("DYN (Shared object file)");
2073 case ET_CORE
: return _("CORE (Core file)");
2076 if ((e_type
>= ET_LOPROC
) && (e_type
<= ET_HIPROC
))
2077 snprintf (buff
, sizeof (buff
), _("Processor Specific: (%x)"), e_type
);
2078 else if ((e_type
>= ET_LOOS
) && (e_type
<= ET_HIOS
))
2079 snprintf (buff
, sizeof (buff
), _("OS Specific: (%x)"), e_type
);
2081 snprintf (buff
, sizeof (buff
), _("<unknown>: %x"), e_type
);
2087 get_machine_name (unsigned e_machine
)
2089 static char buff
[64]; /* XXX */
2093 case EM_NONE
: return _("None");
2094 case EM_AARCH64
: return "AArch64";
2095 case EM_M32
: return "WE32100";
2096 case EM_SPARC
: return "Sparc";
2097 case EM_SPU
: return "SPU";
2098 case EM_386
: return "Intel 80386";
2099 case EM_68K
: return "MC68000";
2100 case EM_88K
: return "MC88000";
2101 case EM_IAMCU
: return "Intel MCU";
2102 case EM_860
: return "Intel 80860";
2103 case EM_MIPS
: return "MIPS R3000";
2104 case EM_S370
: return "IBM System/370";
2105 case EM_MIPS_RS3_LE
: return "MIPS R4000 big-endian";
2106 case EM_OLD_SPARCV9
: return "Sparc v9 (old)";
2107 case EM_PARISC
: return "HPPA";
2108 case EM_PPC_OLD
: return "Power PC (old)";
2109 case EM_SPARC32PLUS
: return "Sparc v8+" ;
2110 case EM_960
: return "Intel 90860";
2111 case EM_PPC
: return "PowerPC";
2112 case EM_PPC64
: return "PowerPC64";
2113 case EM_FR20
: return "Fujitsu FR20";
2114 case EM_FT32
: return "FTDI FT32";
2115 case EM_RH32
: return "TRW RH32";
2116 case EM_MCORE
: return "MCORE";
2117 case EM_ARM
: return "ARM";
2118 case EM_OLD_ALPHA
: return "Digital Alpha (old)";
2119 case EM_SH
: return "Renesas / SuperH SH";
2120 case EM_SPARCV9
: return "Sparc v9";
2121 case EM_TRICORE
: return "Siemens Tricore";
2122 case EM_ARC
: return "ARC";
2123 case EM_ARC_COMPACT
: return "ARCompact";
2124 case EM_ARC_COMPACT2
: return "ARCv2";
2125 case EM_H8_300
: return "Renesas H8/300";
2126 case EM_H8_300H
: return "Renesas H8/300H";
2127 case EM_H8S
: return "Renesas H8S";
2128 case EM_H8_500
: return "Renesas H8/500";
2129 case EM_IA_64
: return "Intel IA-64";
2130 case EM_MIPS_X
: return "Stanford MIPS-X";
2131 case EM_COLDFIRE
: return "Motorola Coldfire";
2132 case EM_ALPHA
: return "Alpha";
2133 case EM_CYGNUS_D10V
:
2134 case EM_D10V
: return "d10v";
2135 case EM_CYGNUS_D30V
:
2136 case EM_D30V
: return "d30v";
2137 case EM_CYGNUS_M32R
:
2138 case EM_M32R
: return "Renesas M32R (formerly Mitsubishi M32r)";
2139 case EM_CYGNUS_V850
:
2140 case EM_V800
: return "Renesas V850 (using RH850 ABI)";
2141 case EM_V850
: return "Renesas V850";
2142 case EM_CYGNUS_MN10300
:
2143 case EM_MN10300
: return "mn10300";
2144 case EM_CYGNUS_MN10200
:
2145 case EM_MN10200
: return "mn10200";
2146 case EM_MOXIE
: return "Moxie";
2147 case EM_CYGNUS_FR30
:
2148 case EM_FR30
: return "Fujitsu FR30";
2149 case EM_CYGNUS_FRV
: return "Fujitsu FR-V";
2151 case EM_PJ
: return "picoJava";
2152 case EM_MMA
: return "Fujitsu Multimedia Accelerator";
2153 case EM_PCP
: return "Siemens PCP";
2154 case EM_NCPU
: return "Sony nCPU embedded RISC processor";
2155 case EM_NDR1
: return "Denso NDR1 microprocesspr";
2156 case EM_STARCORE
: return "Motorola Star*Core processor";
2157 case EM_ME16
: return "Toyota ME16 processor";
2158 case EM_ST100
: return "STMicroelectronics ST100 processor";
2159 case EM_TINYJ
: return "Advanced Logic Corp. TinyJ embedded processor";
2160 case EM_PDSP
: return "Sony DSP processor";
2161 case EM_PDP10
: return "Digital Equipment Corp. PDP-10";
2162 case EM_PDP11
: return "Digital Equipment Corp. PDP-11";
2163 case EM_FX66
: return "Siemens FX66 microcontroller";
2164 case EM_ST9PLUS
: return "STMicroelectronics ST9+ 8/16 bit microcontroller";
2165 case EM_ST7
: return "STMicroelectronics ST7 8-bit microcontroller";
2166 case EM_68HC16
: return "Motorola MC68HC16 Microcontroller";
2167 case EM_68HC12
: return "Motorola MC68HC12 Microcontroller";
2168 case EM_68HC11
: return "Motorola MC68HC11 Microcontroller";
2169 case EM_68HC08
: return "Motorola MC68HC08 Microcontroller";
2170 case EM_68HC05
: return "Motorola MC68HC05 Microcontroller";
2171 case EM_SVX
: return "Silicon Graphics SVx";
2172 case EM_ST19
: return "STMicroelectronics ST19 8-bit microcontroller";
2173 case EM_VAX
: return "Digital VAX";
2174 case EM_VISIUM
: return "CDS VISIUMcore processor";
2176 case EM_AVR
: return "Atmel AVR 8-bit microcontroller";
2177 case EM_CRIS
: return "Axis Communications 32-bit embedded processor";
2178 case EM_JAVELIN
: return "Infineon Technologies 32-bit embedded cpu";
2179 case EM_FIREPATH
: return "Element 14 64-bit DSP processor";
2180 case EM_ZSP
: return "LSI Logic's 16-bit DSP processor";
2181 case EM_MMIX
: return "Donald Knuth's educational 64-bit processor";
2182 case EM_HUANY
: return "Harvard Universitys's machine-independent object format";
2183 case EM_PRISM
: return "Vitesse Prism";
2184 case EM_X86_64
: return "Advanced Micro Devices X86-64";
2185 case EM_L1OM
: return "Intel L1OM";
2186 case EM_K1OM
: return "Intel K1OM";
2188 case EM_S390
: return "IBM S/390";
2189 case EM_SCORE
: return "SUNPLUS S+Core";
2190 case EM_XSTORMY16
: return "Sanyo XStormy16 CPU core";
2191 case EM_OR1K
: return "OpenRISC 1000";
2192 case EM_CRX
: return "National Semiconductor CRX microprocessor";
2193 case EM_ADAPTEVA_EPIPHANY
: return "Adapteva EPIPHANY";
2194 case EM_DLX
: return "OpenDLX";
2196 case EM_IP2K
: return "Ubicom IP2xxx 8-bit microcontrollers";
2197 case EM_IQ2000
: return "Vitesse IQ2000";
2199 case EM_XTENSA
: return "Tensilica Xtensa Processor";
2200 case EM_VIDEOCORE
: return "Alphamosaic VideoCore processor";
2201 case EM_TMM_GPP
: return "Thompson Multimedia General Purpose Processor";
2202 case EM_NS32K
: return "National Semiconductor 32000 series";
2203 case EM_TPC
: return "Tenor Network TPC processor";
2204 case EM_ST200
: return "STMicroelectronics ST200 microcontroller";
2205 case EM_MAX
: return "MAX Processor";
2206 case EM_CR
: return "National Semiconductor CompactRISC";
2207 case EM_F2MC16
: return "Fujitsu F2MC16";
2208 case EM_MSP430
: return "Texas Instruments msp430 microcontroller";
2209 case EM_LATTICEMICO32
: return "Lattice Mico32";
2211 case EM_M32C
: return "Renesas M32c";
2212 case EM_MT
: return "Morpho Techologies MT processor";
2213 case EM_BLACKFIN
: return "Analog Devices Blackfin";
2214 case EM_SE_C33
: return "S1C33 Family of Seiko Epson processors";
2215 case EM_SEP
: return "Sharp embedded microprocessor";
2216 case EM_ARCA
: return "Arca RISC microprocessor";
2217 case EM_UNICORE
: return "Unicore";
2218 case EM_EXCESS
: return "eXcess 16/32/64-bit configurable embedded CPU";
2219 case EM_DXP
: return "Icera Semiconductor Inc. Deep Execution Processor";
2220 case EM_NIOS32
: return "Altera Nios";
2221 case EM_ALTERA_NIOS2
: return "Altera Nios II";
2223 case EM_XC16X
: return "Infineon Technologies xc16x";
2224 case EM_M16C
: return "Renesas M16C series microprocessors";
2225 case EM_DSPIC30F
: return "Microchip Technology dsPIC30F Digital Signal Controller";
2226 case EM_CE
: return "Freescale Communication Engine RISC core";
2227 case EM_TSK3000
: return "Altium TSK3000 core";
2228 case EM_RS08
: return "Freescale RS08 embedded processor";
2229 case EM_ECOG2
: return "Cyan Technology eCOG2 microprocessor";
2230 case EM_DSP24
: return "New Japan Radio (NJR) 24-bit DSP Processor";
2231 case EM_VIDEOCORE3
: return "Broadcom VideoCore III processor";
2232 case EM_SE_C17
: return "Seiko Epson C17 family";
2233 case EM_TI_C6000
: return "Texas Instruments TMS320C6000 DSP family";
2234 case EM_TI_C2000
: return "Texas Instruments TMS320C2000 DSP family";
2235 case EM_TI_C5500
: return "Texas Instruments TMS320C55x DSP family";
2236 case EM_MMDSP_PLUS
: return "STMicroelectronics 64bit VLIW Data Signal Processor";
2237 case EM_CYPRESS_M8C
: return "Cypress M8C microprocessor";
2238 case EM_R32C
: return "Renesas R32C series microprocessors";
2239 case EM_TRIMEDIA
: return "NXP Semiconductors TriMedia architecture family";
2240 case EM_QDSP6
: return "QUALCOMM DSP6 Processor";
2241 case EM_8051
: return "Intel 8051 and variants";
2242 case EM_STXP7X
: return "STMicroelectronics STxP7x family";
2243 case EM_NDS32
: return "Andes Technology compact code size embedded RISC processor family";
2244 case EM_ECOG1X
: return "Cyan Technology eCOG1X family";
2245 case EM_MAXQ30
: return "Dallas Semiconductor MAXQ30 Core microcontrollers";
2246 case EM_XIMO16
: return "New Japan Radio (NJR) 16-bit DSP Processor";
2247 case EM_MANIK
: return "M2000 Reconfigurable RISC Microprocessor";
2248 case EM_CRAYNV2
: return "Cray Inc. NV2 vector architecture";
2249 case EM_CYGNUS_MEP
: return "Toshiba MeP Media Engine";
2252 case EM_MICROBLAZE_OLD
: return "Xilinx MicroBlaze";
2253 case EM_RL78
: return "Renesas RL78";
2254 case EM_RX
: return "Renesas RX";
2255 case EM_METAG
: return "Imagination Technologies Meta processor architecture";
2256 case EM_MCST_ELBRUS
: return "MCST Elbrus general purpose hardware architecture";
2257 case EM_ECOG16
: return "Cyan Technology eCOG16 family";
2258 case EM_ETPU
: return "Freescale Extended Time Processing Unit";
2259 case EM_SLE9X
: return "Infineon Technologies SLE9X core";
2260 case EM_AVR32
: return "Atmel Corporation 32-bit microprocessor family";
2261 case EM_STM8
: return "STMicroeletronics STM8 8-bit microcontroller";
2262 case EM_TILE64
: return "Tilera TILE64 multicore architecture family";
2263 case EM_TILEPRO
: return "Tilera TILEPro multicore architecture family";
2264 case EM_TILEGX
: return "Tilera TILE-Gx multicore architecture family";
2265 case EM_CUDA
: return "NVIDIA CUDA architecture";
2266 case EM_XGATE
: return "Motorola XGATE embedded processor";
2268 snprintf (buff
, sizeof (buff
), _("<unknown>: 0x%x"), e_machine
);
2274 decode_ARM_machine_flags (unsigned e_flags
, char buf
[])
2279 eabi
= EF_ARM_EABI_VERSION (e_flags
);
2280 e_flags
&= ~ EF_ARM_EABIMASK
;
2282 /* Handle "generic" ARM flags. */
2283 if (e_flags
& EF_ARM_RELEXEC
)
2285 strcat (buf
, ", relocatable executable");
2286 e_flags
&= ~ EF_ARM_RELEXEC
;
2289 /* Now handle EABI specific flags. */
2293 strcat (buf
, ", <unrecognized EABI>");
2298 case EF_ARM_EABI_VER1
:
2299 strcat (buf
, ", Version1 EABI");
2304 /* Process flags one bit at a time. */
2305 flag
= e_flags
& - e_flags
;
2310 case EF_ARM_SYMSARESORTED
: /* Conflicts with EF_ARM_INTERWORK. */
2311 strcat (buf
, ", sorted symbol tables");
2321 case EF_ARM_EABI_VER2
:
2322 strcat (buf
, ", Version2 EABI");
2327 /* Process flags one bit at a time. */
2328 flag
= e_flags
& - e_flags
;
2333 case EF_ARM_SYMSARESORTED
: /* Conflicts with EF_ARM_INTERWORK. */
2334 strcat (buf
, ", sorted symbol tables");
2337 case EF_ARM_DYNSYMSUSESEGIDX
:
2338 strcat (buf
, ", dynamic symbols use segment index");
2341 case EF_ARM_MAPSYMSFIRST
:
2342 strcat (buf
, ", mapping symbols precede others");
2352 case EF_ARM_EABI_VER3
:
2353 strcat (buf
, ", Version3 EABI");
2356 case EF_ARM_EABI_VER4
:
2357 strcat (buf
, ", Version4 EABI");
2362 /* Process flags one bit at a time. */
2363 flag
= e_flags
& - e_flags
;
2369 strcat (buf
, ", BE8");
2373 strcat (buf
, ", LE8");
2384 case EF_ARM_EABI_VER5
:
2385 strcat (buf
, ", Version5 EABI");
2390 /* Process flags one bit at a time. */
2391 flag
= e_flags
& - e_flags
;
2397 strcat (buf
, ", BE8");
2401 strcat (buf
, ", LE8");
2404 case EF_ARM_ABI_FLOAT_SOFT
: /* Conflicts with EF_ARM_SOFT_FLOAT. */
2405 strcat (buf
, ", soft-float ABI");
2408 case EF_ARM_ABI_FLOAT_HARD
: /* Conflicts with EF_ARM_VFP_FLOAT. */
2409 strcat (buf
, ", hard-float ABI");
2419 case EF_ARM_EABI_UNKNOWN
:
2420 strcat (buf
, ", GNU EABI");
2425 /* Process flags one bit at a time. */
2426 flag
= e_flags
& - e_flags
;
2431 case EF_ARM_INTERWORK
:
2432 strcat (buf
, ", interworking enabled");
2435 case EF_ARM_APCS_26
:
2436 strcat (buf
, ", uses APCS/26");
2439 case EF_ARM_APCS_FLOAT
:
2440 strcat (buf
, ", uses APCS/float");
2444 strcat (buf
, ", position independent");
2448 strcat (buf
, ", 8 bit structure alignment");
2451 case EF_ARM_NEW_ABI
:
2452 strcat (buf
, ", uses new ABI");
2455 case EF_ARM_OLD_ABI
:
2456 strcat (buf
, ", uses old ABI");
2459 case EF_ARM_SOFT_FLOAT
:
2460 strcat (buf
, ", software FP");
2463 case EF_ARM_VFP_FLOAT
:
2464 strcat (buf
, ", VFP");
2467 case EF_ARM_MAVERICK_FLOAT
:
2468 strcat (buf
, ", Maverick FP");
2479 strcat (buf
,_(", <unknown>"));
2483 decode_AVR_machine_flags (unsigned e_flags
, char buf
[], size_t size
)
2485 --size
; /* Leave space for null terminator. */
2487 switch (e_flags
& EF_AVR_MACH
)
2489 case E_AVR_MACH_AVR1
:
2490 strncat (buf
, ", avr:1", size
);
2492 case E_AVR_MACH_AVR2
:
2493 strncat (buf
, ", avr:2", size
);
2495 case E_AVR_MACH_AVR25
:
2496 strncat (buf
, ", avr:25", size
);
2498 case E_AVR_MACH_AVR3
:
2499 strncat (buf
, ", avr:3", size
);
2501 case E_AVR_MACH_AVR31
:
2502 strncat (buf
, ", avr:31", size
);
2504 case E_AVR_MACH_AVR35
:
2505 strncat (buf
, ", avr:35", size
);
2507 case E_AVR_MACH_AVR4
:
2508 strncat (buf
, ", avr:4", size
);
2510 case E_AVR_MACH_AVR5
:
2511 strncat (buf
, ", avr:5", size
);
2513 case E_AVR_MACH_AVR51
:
2514 strncat (buf
, ", avr:51", size
);
2516 case E_AVR_MACH_AVR6
:
2517 strncat (buf
, ", avr:6", size
);
2519 case E_AVR_MACH_AVRTINY
:
2520 strncat (buf
, ", avr:100", size
);
2522 case E_AVR_MACH_XMEGA1
:
2523 strncat (buf
, ", avr:101", size
);
2525 case E_AVR_MACH_XMEGA2
:
2526 strncat (buf
, ", avr:102", size
);
2528 case E_AVR_MACH_XMEGA3
:
2529 strncat (buf
, ", avr:103", size
);
2531 case E_AVR_MACH_XMEGA4
:
2532 strncat (buf
, ", avr:104", size
);
2534 case E_AVR_MACH_XMEGA5
:
2535 strncat (buf
, ", avr:105", size
);
2537 case E_AVR_MACH_XMEGA6
:
2538 strncat (buf
, ", avr:106", size
);
2540 case E_AVR_MACH_XMEGA7
:
2541 strncat (buf
, ", avr:107", size
);
2544 strncat (buf
, ", avr:<unknown>", size
);
2548 size
-= strlen (buf
);
2549 if (e_flags
& EF_AVR_LINKRELAX_PREPARED
)
2550 strncat (buf
, ", link-relax", size
);
2554 decode_NDS32_machine_flags (unsigned e_flags
, char buf
[], size_t size
)
2563 static const char *ABI_STRINGS
[] =
2565 "ABI v0", /* use r5 as return register; only used in N1213HC */
2566 "ABI v1", /* use r0 as return register */
2567 "ABI v2", /* use r0 as return register and don't reserve 24 bytes for arguments */
2568 "ABI v2fp", /* for FPU */
2572 static const char *VER_STRINGS
[] =
2574 "Andes ELF V1.3 or older",
2578 static const char *ARCH_STRINGS
[] =
2587 abi
= EF_NDS_ABI
& e_flags
;
2588 arch
= EF_NDS_ARCH
& e_flags
;
2589 config
= EF_NDS_INST
& e_flags
;
2590 version
= EF_NDS32_ELF_VERSION
& e_flags
;
2592 memset (buf
, 0, size
);
2599 case E_NDS_ABI_V2FP
:
2600 case E_NDS_ABI_AABI
:
2601 case E_NDS_ABI_V2FP_PLUS
:
2602 /* In case there are holes in the array. */
2603 r
+= snprintf (buf
+ r
, size
- r
, ", %s", ABI_STRINGS
[abi
>> EF_NDS_ABI_SHIFT
]);
2607 r
+= snprintf (buf
+ r
, size
- r
, ", <unrecognized ABI>");
2613 case E_NDS32_ELF_VER_1_2
:
2614 case E_NDS32_ELF_VER_1_3
:
2615 case E_NDS32_ELF_VER_1_4
:
2616 r
+= snprintf (buf
+ r
, size
- r
, ", %s", VER_STRINGS
[version
>> EF_NDS32_ELF_VERSION_SHIFT
]);
2620 r
+= snprintf (buf
+ r
, size
- r
, ", <unrecognized ELF version number>");
2624 if (E_NDS_ABI_V0
== abi
)
2626 /* OLD ABI; only used in N1213HC, has performance extension 1. */
2627 r
+= snprintf (buf
+ r
, size
- r
, ", Andes Star v1.0, N1213HC, MAC, PERF1");
2628 if (arch
== E_NDS_ARCH_STAR_V1_0
)
2629 r
+= snprintf (buf
+ r
, size
-r
, ", 16b"); /* has 16-bit instructions */
2635 case E_NDS_ARCH_STAR_V1_0
:
2636 case E_NDS_ARCH_STAR_V2_0
:
2637 case E_NDS_ARCH_STAR_V3_0
:
2638 case E_NDS_ARCH_STAR_V3_M
:
2639 r
+= snprintf (buf
+ r
, size
- r
, ", %s", ARCH_STRINGS
[arch
>> EF_NDS_ARCH_SHIFT
]);
2643 r
+= snprintf (buf
+ r
, size
- r
, ", <unrecognized architecture>");
2644 /* ARCH version determines how the e_flags are interpreted.
2645 If it is unknown, we cannot proceed. */
2649 /* Newer ABI; Now handle architecture specific flags. */
2650 if (arch
== E_NDS_ARCH_STAR_V1_0
)
2652 if (config
& E_NDS32_HAS_MFUSR_PC_INST
)
2653 r
+= snprintf (buf
+ r
, size
-r
, ", MFUSR_PC");
2655 if (!(config
& E_NDS32_HAS_NO_MAC_INST
))
2656 r
+= snprintf (buf
+ r
, size
-r
, ", MAC");
2658 if (config
& E_NDS32_HAS_DIV_INST
)
2659 r
+= snprintf (buf
+ r
, size
-r
, ", DIV");
2661 if (config
& E_NDS32_HAS_16BIT_INST
)
2662 r
+= snprintf (buf
+ r
, size
-r
, ", 16b");
2666 if (config
& E_NDS32_HAS_MFUSR_PC_INST
)
2668 if (version
<= E_NDS32_ELF_VER_1_3
)
2669 r
+= snprintf (buf
+ r
, size
-r
, ", [B8]");
2671 r
+= snprintf (buf
+ r
, size
-r
, ", EX9");
2674 if (config
& E_NDS32_HAS_MAC_DX_INST
)
2675 r
+= snprintf (buf
+ r
, size
-r
, ", MAC_DX");
2677 if (config
& E_NDS32_HAS_DIV_DX_INST
)
2678 r
+= snprintf (buf
+ r
, size
-r
, ", DIV_DX");
2680 if (config
& E_NDS32_HAS_16BIT_INST
)
2682 if (version
<= E_NDS32_ELF_VER_1_3
)
2683 r
+= snprintf (buf
+ r
, size
-r
, ", 16b");
2685 r
+= snprintf (buf
+ r
, size
-r
, ", IFC");
2689 if (config
& E_NDS32_HAS_EXT_INST
)
2690 r
+= snprintf (buf
+ r
, size
-r
, ", PERF1");
2692 if (config
& E_NDS32_HAS_EXT2_INST
)
2693 r
+= snprintf (buf
+ r
, size
-r
, ", PERF2");
2695 if (config
& E_NDS32_HAS_FPU_INST
)
2698 r
+= snprintf (buf
+ r
, size
-r
, ", FPU_SP");
2701 if (config
& E_NDS32_HAS_FPU_DP_INST
)
2704 r
+= snprintf (buf
+ r
, size
-r
, ", FPU_DP");
2707 if (config
& E_NDS32_HAS_FPU_MAC_INST
)
2710 r
+= snprintf (buf
+ r
, size
-r
, ", FPU_MAC");
2715 switch ((config
& E_NDS32_FPU_REG_CONF
) >> E_NDS32_FPU_REG_CONF_SHIFT
)
2717 case E_NDS32_FPU_REG_8SP_4DP
:
2718 r
+= snprintf (buf
+ r
, size
-r
, ", FPU_REG:8/4");
2720 case E_NDS32_FPU_REG_16SP_8DP
:
2721 r
+= snprintf (buf
+ r
, size
-r
, ", FPU_REG:16/8");
2723 case E_NDS32_FPU_REG_32SP_16DP
:
2724 r
+= snprintf (buf
+ r
, size
-r
, ", FPU_REG:32/16");
2726 case E_NDS32_FPU_REG_32SP_32DP
:
2727 r
+= snprintf (buf
+ r
, size
-r
, ", FPU_REG:32/32");
2732 if (config
& E_NDS32_HAS_AUDIO_INST
)
2733 r
+= snprintf (buf
+ r
, size
-r
, ", AUDIO");
2735 if (config
& E_NDS32_HAS_STRING_INST
)
2736 r
+= snprintf (buf
+ r
, size
-r
, ", STR");
2738 if (config
& E_NDS32_HAS_REDUCED_REGS
)
2739 r
+= snprintf (buf
+ r
, size
-r
, ", 16REG");
2741 if (config
& E_NDS32_HAS_VIDEO_INST
)
2743 if (version
<= E_NDS32_ELF_VER_1_3
)
2744 r
+= snprintf (buf
+ r
, size
-r
, ", VIDEO");
2746 r
+= snprintf (buf
+ r
, size
-r
, ", SATURATION");
2749 if (config
& E_NDS32_HAS_ENCRIPT_INST
)
2750 r
+= snprintf (buf
+ r
, size
-r
, ", ENCRP");
2752 if (config
& E_NDS32_HAS_L2C_INST
)
2753 r
+= snprintf (buf
+ r
, size
-r
, ", L2C");
2757 get_machine_flags (unsigned e_flags
, unsigned e_machine
)
2759 static char buf
[1024];
2770 case EM_ARC_COMPACT2
:
2771 switch (e_flags
& EF_ARC_MACH_MSK
)
2773 case EF_ARC_CPU_ARCV2EM
:
2774 strcat (buf
, ", ARC EM");
2776 case EF_ARC_CPU_ARCV2HS
:
2777 strcat (buf
, ", ARC HS");
2779 case EF_ARC_CPU_GENERIC
:
2780 strcat (buf
, ", ARC generic");
2782 case E_ARC_MACH_ARC600
:
2783 strcat (buf
, ", ARC600");
2785 case E_ARC_MACH_ARC601
:
2786 strcat (buf
, ", ARC601");
2788 case E_ARC_MACH_ARC700
:
2789 strcat (buf
, ", ARC700");
2792 strcat (buf
, ", unrecognized cpu flag for ARCv2");
2795 switch (e_flags
& EF_ARC_OSABI_MSK
)
2797 case E_ARC_OSABI_ORIG
:
2798 strcat (buf
, ", (ABI:legacy)");
2800 case E_ARC_OSABI_V2
:
2801 strcat (buf
, ", (ABI:v2)");
2803 /* Only upstream 3.9+ kernels will support ARCv2 ISA. */
2804 case E_ARC_OSABI_V3
:
2805 strcat (buf
, ", v3 no-legacy-syscalls ABI");
2808 strcat (buf
, ", unrecognised ARC OSABI flag");
2813 case EM_ARC_COMPACT
:
2814 switch (e_flags
& EF_ARC_MACH_MSK
)
2816 case E_ARC_MACH_ARC600
:
2817 strcat (buf
, ", ARC 600");
2819 case E_ARC_MACH_ARC601
:
2820 strcat (buf
, ", ARC 601");
2822 case E_ARC_MACH_ARC700
:
2823 strcat (buf
, ", ARC 700");
2826 strcat (buf
, ", Generic ARCompact");
2829 switch (e_flags
& EF_ARC_OSABI_MSK
)
2831 case E_ARC_OSABI_ORIG
:
2832 strcat (buf
, ", legacy syscall ABI");
2834 case E_ARC_OSABI_V2
:
2835 /* For 3.2+ Linux kernels which use asm-generic
2837 strcat (buf
, ", v2 syscall ABI");
2839 case E_ARC_OSABI_V3
:
2840 /* Upstream 3.9+ kernels which don't use any legacy
2842 strcat (buf
, ", v3 no-legacy-syscalls ABI");
2848 decode_ARM_machine_flags (e_flags
, buf
);
2852 decode_AVR_machine_flags (e_flags
, buf
, sizeof buf
);
2856 if (e_flags
& EF_BFIN_PIC
)
2857 strcat (buf
, ", PIC");
2859 if (e_flags
& EF_BFIN_FDPIC
)
2860 strcat (buf
, ", FDPIC");
2862 if (e_flags
& EF_BFIN_CODE_IN_L1
)
2863 strcat (buf
, ", code in L1");
2865 if (e_flags
& EF_BFIN_DATA_IN_L1
)
2866 strcat (buf
, ", data in L1");
2871 switch (e_flags
& EF_FRV_CPU_MASK
)
2873 case EF_FRV_CPU_GENERIC
:
2877 strcat (buf
, ", fr???");
2880 case EF_FRV_CPU_FR300
:
2881 strcat (buf
, ", fr300");
2884 case EF_FRV_CPU_FR400
:
2885 strcat (buf
, ", fr400");
2887 case EF_FRV_CPU_FR405
:
2888 strcat (buf
, ", fr405");
2891 case EF_FRV_CPU_FR450
:
2892 strcat (buf
, ", fr450");
2895 case EF_FRV_CPU_FR500
:
2896 strcat (buf
, ", fr500");
2898 case EF_FRV_CPU_FR550
:
2899 strcat (buf
, ", fr550");
2902 case EF_FRV_CPU_SIMPLE
:
2903 strcat (buf
, ", simple");
2905 case EF_FRV_CPU_TOMCAT
:
2906 strcat (buf
, ", tomcat");
2912 if ((e_flags
& EF_M68K_ARCH_MASK
) == EF_M68K_M68000
)
2913 strcat (buf
, ", m68000");
2914 else if ((e_flags
& EF_M68K_ARCH_MASK
) == EF_M68K_CPU32
)
2915 strcat (buf
, ", cpu32");
2916 else if ((e_flags
& EF_M68K_ARCH_MASK
) == EF_M68K_FIDO
)
2917 strcat (buf
, ", fido_a");
2920 char const * isa
= _("unknown");
2921 char const * mac
= _("unknown mac");
2922 char const * additional
= NULL
;
2924 switch (e_flags
& EF_M68K_CF_ISA_MASK
)
2926 case EF_M68K_CF_ISA_A_NODIV
:
2928 additional
= ", nodiv";
2930 case EF_M68K_CF_ISA_A
:
2933 case EF_M68K_CF_ISA_A_PLUS
:
2936 case EF_M68K_CF_ISA_B_NOUSP
:
2938 additional
= ", nousp";
2940 case EF_M68K_CF_ISA_B
:
2943 case EF_M68K_CF_ISA_C
:
2946 case EF_M68K_CF_ISA_C_NODIV
:
2948 additional
= ", nodiv";
2951 strcat (buf
, ", cf, isa ");
2954 strcat (buf
, additional
);
2955 if (e_flags
& EF_M68K_CF_FLOAT
)
2956 strcat (buf
, ", float");
2957 switch (e_flags
& EF_M68K_CF_MAC_MASK
)
2962 case EF_M68K_CF_MAC
:
2965 case EF_M68K_CF_EMAC
:
2968 case EF_M68K_CF_EMAC_B
:
2981 switch (e_flags
& EF_MEP_CPU_MASK
)
2983 case EF_MEP_CPU_MEP
: strcat (buf
, ", generic MeP"); break;
2984 case EF_MEP_CPU_C2
: strcat (buf
, ", MeP C2"); break;
2985 case EF_MEP_CPU_C3
: strcat (buf
, ", MeP C3"); break;
2986 case EF_MEP_CPU_C4
: strcat (buf
, ", MeP C4"); break;
2987 case EF_MEP_CPU_C5
: strcat (buf
, ", MeP C5"); break;
2988 case EF_MEP_CPU_H1
: strcat (buf
, ", MeP H1"); break;
2989 default: strcat (buf
, _(", <unknown MeP cpu type>")); break;
2992 switch (e_flags
& EF_MEP_COP_MASK
)
2994 case EF_MEP_COP_NONE
: break;
2995 case EF_MEP_COP_AVC
: strcat (buf
, ", AVC coprocessor"); break;
2996 case EF_MEP_COP_AVC2
: strcat (buf
, ", AVC2 coprocessor"); break;
2997 case EF_MEP_COP_FMAX
: strcat (buf
, ", FMAX coprocessor"); break;
2998 case EF_MEP_COP_IVC2
: strcat (buf
, ", IVC2 coprocessor"); break;
2999 default: strcat (buf
, _("<unknown MeP copro type>")); break;
3002 if (e_flags
& EF_MEP_LIBRARY
)
3003 strcat (buf
, ", Built for Library");
3005 if (e_flags
& EF_MEP_INDEX_MASK
)
3006 sprintf (buf
+ strlen (buf
), ", Configuration Index: %#x",
3007 e_flags
& EF_MEP_INDEX_MASK
);
3009 if (e_flags
& ~ EF_MEP_ALL_FLAGS
)
3010 sprintf (buf
+ strlen (buf
), _(", unknown flags bits: %#x"),
3011 e_flags
& ~ EF_MEP_ALL_FLAGS
);
3015 if (e_flags
& EF_PPC_EMB
)
3016 strcat (buf
, ", emb");
3018 if (e_flags
& EF_PPC_RELOCATABLE
)
3019 strcat (buf
, _(", relocatable"));
3021 if (e_flags
& EF_PPC_RELOCATABLE_LIB
)
3022 strcat (buf
, _(", relocatable-lib"));
3026 if (e_flags
& EF_PPC64_ABI
)
3028 char abi
[] = ", abiv0";
3030 abi
[6] += e_flags
& EF_PPC64_ABI
;
3036 if ((e_flags
& EF_RH850_ABI
) == EF_RH850_ABI
)
3037 strcat (buf
, ", RH850 ABI");
3039 if (e_flags
& EF_V800_850E3
)
3040 strcat (buf
, ", V3 architecture");
3042 if ((e_flags
& (EF_RH850_FPU_DOUBLE
| EF_RH850_FPU_SINGLE
)) == 0)
3043 strcat (buf
, ", FPU not used");
3045 if ((e_flags
& (EF_RH850_REGMODE22
| EF_RH850_REGMODE32
)) == 0)
3046 strcat (buf
, ", regmode: COMMON");
3048 if ((e_flags
& (EF_RH850_GP_FIX
| EF_RH850_GP_NOFIX
)) == 0)
3049 strcat (buf
, ", r4 not used");
3051 if ((e_flags
& (EF_RH850_EP_FIX
| EF_RH850_EP_NOFIX
)) == 0)
3052 strcat (buf
, ", r30 not used");
3054 if ((e_flags
& (EF_RH850_TP_FIX
| EF_RH850_TP_NOFIX
)) == 0)
3055 strcat (buf
, ", r5 not used");
3057 if ((e_flags
& (EF_RH850_REG2_RESERVE
| EF_RH850_REG2_NORESERVE
)) == 0)
3058 strcat (buf
, ", r2 not used");
3060 for (e_flags
&= 0xFFFF; e_flags
; e_flags
&= ~ (e_flags
& - e_flags
))
3062 switch (e_flags
& - e_flags
)
3064 case EF_RH850_FPU_DOUBLE
: strcat (buf
, ", double precision FPU"); break;
3065 case EF_RH850_FPU_SINGLE
: strcat (buf
, ", single precision FPU"); break;
3066 case EF_RH850_REGMODE22
: strcat (buf
, ", regmode:22"); break;
3067 case EF_RH850_REGMODE32
: strcat (buf
, ", regmode:23"); break;
3068 case EF_RH850_GP_FIX
: strcat (buf
, ", r4 fixed"); break;
3069 case EF_RH850_GP_NOFIX
: strcat (buf
, ", r4 free"); break;
3070 case EF_RH850_EP_FIX
: strcat (buf
, ", r30 fixed"); break;
3071 case EF_RH850_EP_NOFIX
: strcat (buf
, ", r30 free"); break;
3072 case EF_RH850_TP_FIX
: strcat (buf
, ", r5 fixed"); break;
3073 case EF_RH850_TP_NOFIX
: strcat (buf
, ", r5 free"); break;
3074 case EF_RH850_REG2_RESERVE
: strcat (buf
, ", r2 fixed"); break;
3075 case EF_RH850_REG2_NORESERVE
: strcat (buf
, ", r2 free"); break;
3082 case EM_CYGNUS_V850
:
3083 switch (e_flags
& EF_V850_ARCH
)
3085 case E_V850E3V5_ARCH
:
3086 strcat (buf
, ", v850e3v5");
3088 case E_V850E2V3_ARCH
:
3089 strcat (buf
, ", v850e2v3");
3092 strcat (buf
, ", v850e2");
3095 strcat (buf
, ", v850e1");
3098 strcat (buf
, ", v850e");
3101 strcat (buf
, ", v850");
3104 strcat (buf
, _(", unknown v850 architecture variant"));
3110 case EM_CYGNUS_M32R
:
3111 if ((e_flags
& EF_M32R_ARCH
) == E_M32R_ARCH
)
3112 strcat (buf
, ", m32r");
3116 case EM_MIPS_RS3_LE
:
3117 if (e_flags
& EF_MIPS_NOREORDER
)
3118 strcat (buf
, ", noreorder");
3120 if (e_flags
& EF_MIPS_PIC
)
3121 strcat (buf
, ", pic");
3123 if (e_flags
& EF_MIPS_CPIC
)
3124 strcat (buf
, ", cpic");
3126 if (e_flags
& EF_MIPS_UCODE
)
3127 strcat (buf
, ", ugen_reserved");
3129 if (e_flags
& EF_MIPS_ABI2
)
3130 strcat (buf
, ", abi2");
3132 if (e_flags
& EF_MIPS_OPTIONS_FIRST
)
3133 strcat (buf
, ", odk first");
3135 if (e_flags
& EF_MIPS_32BITMODE
)
3136 strcat (buf
, ", 32bitmode");
3138 if (e_flags
& EF_MIPS_NAN2008
)
3139 strcat (buf
, ", nan2008");
3141 if (e_flags
& EF_MIPS_FP64
)
3142 strcat (buf
, ", fp64");
3144 switch ((e_flags
& EF_MIPS_MACH
))
3146 case E_MIPS_MACH_3900
: strcat (buf
, ", 3900"); break;
3147 case E_MIPS_MACH_4010
: strcat (buf
, ", 4010"); break;
3148 case E_MIPS_MACH_4100
: strcat (buf
, ", 4100"); break;
3149 case E_MIPS_MACH_4111
: strcat (buf
, ", 4111"); break;
3150 case E_MIPS_MACH_4120
: strcat (buf
, ", 4120"); break;
3151 case E_MIPS_MACH_4650
: strcat (buf
, ", 4650"); break;
3152 case E_MIPS_MACH_5400
: strcat (buf
, ", 5400"); break;
3153 case E_MIPS_MACH_5500
: strcat (buf
, ", 5500"); break;
3154 case E_MIPS_MACH_SB1
: strcat (buf
, ", sb1"); break;
3155 case E_MIPS_MACH_9000
: strcat (buf
, ", 9000"); break;
3156 case E_MIPS_MACH_LS2E
: strcat (buf
, ", loongson-2e"); break;
3157 case E_MIPS_MACH_LS2F
: strcat (buf
, ", loongson-2f"); break;
3158 case E_MIPS_MACH_LS3A
: strcat (buf
, ", loongson-3a"); break;
3159 case E_MIPS_MACH_OCTEON
: strcat (buf
, ", octeon"); break;
3160 case E_MIPS_MACH_OCTEON2
: strcat (buf
, ", octeon2"); break;
3161 case E_MIPS_MACH_OCTEON3
: strcat (buf
, ", octeon3"); break;
3162 case E_MIPS_MACH_XLR
: strcat (buf
, ", xlr"); break;
3164 /* We simply ignore the field in this case to avoid confusion:
3165 MIPS ELF does not specify EF_MIPS_MACH, it is a GNU
3168 default: strcat (buf
, _(", unknown CPU")); break;
3171 switch ((e_flags
& EF_MIPS_ABI
))
3173 case E_MIPS_ABI_O32
: strcat (buf
, ", o32"); break;
3174 case E_MIPS_ABI_O64
: strcat (buf
, ", o64"); break;
3175 case E_MIPS_ABI_EABI32
: strcat (buf
, ", eabi32"); break;
3176 case E_MIPS_ABI_EABI64
: strcat (buf
, ", eabi64"); break;
3178 /* We simply ignore the field in this case to avoid confusion:
3179 MIPS ELF does not specify EF_MIPS_ABI, it is a GNU extension.
3180 This means it is likely to be an o32 file, but not for
3183 default: strcat (buf
, _(", unknown ABI")); break;
3186 if (e_flags
& EF_MIPS_ARCH_ASE_MDMX
)
3187 strcat (buf
, ", mdmx");
3189 if (e_flags
& EF_MIPS_ARCH_ASE_M16
)
3190 strcat (buf
, ", mips16");
3192 if (e_flags
& EF_MIPS_ARCH_ASE_MICROMIPS
)
3193 strcat (buf
, ", micromips");
3195 switch ((e_flags
& EF_MIPS_ARCH
))
3197 case E_MIPS_ARCH_1
: strcat (buf
, ", mips1"); break;
3198 case E_MIPS_ARCH_2
: strcat (buf
, ", mips2"); break;
3199 case E_MIPS_ARCH_3
: strcat (buf
, ", mips3"); break;
3200 case E_MIPS_ARCH_4
: strcat (buf
, ", mips4"); break;
3201 case E_MIPS_ARCH_5
: strcat (buf
, ", mips5"); break;
3202 case E_MIPS_ARCH_32
: strcat (buf
, ", mips32"); break;
3203 case E_MIPS_ARCH_32R2
: strcat (buf
, ", mips32r2"); break;
3204 case E_MIPS_ARCH_32R6
: strcat (buf
, ", mips32r6"); break;
3205 case E_MIPS_ARCH_64
: strcat (buf
, ", mips64"); break;
3206 case E_MIPS_ARCH_64R2
: strcat (buf
, ", mips64r2"); break;
3207 case E_MIPS_ARCH_64R6
: strcat (buf
, ", mips64r6"); break;
3208 default: strcat (buf
, _(", unknown ISA")); break;
3213 decode_NDS32_machine_flags (e_flags
, buf
, sizeof buf
);
3217 switch ((e_flags
& EF_SH_MACH_MASK
))
3219 case EF_SH1
: strcat (buf
, ", sh1"); break;
3220 case EF_SH2
: strcat (buf
, ", sh2"); break;
3221 case EF_SH3
: strcat (buf
, ", sh3"); break;
3222 case EF_SH_DSP
: strcat (buf
, ", sh-dsp"); break;
3223 case EF_SH3_DSP
: strcat (buf
, ", sh3-dsp"); break;
3224 case EF_SH4AL_DSP
: strcat (buf
, ", sh4al-dsp"); break;
3225 case EF_SH3E
: strcat (buf
, ", sh3e"); break;
3226 case EF_SH4
: strcat (buf
, ", sh4"); break;
3227 case EF_SH5
: strcat (buf
, ", sh5"); break;
3228 case EF_SH2E
: strcat (buf
, ", sh2e"); break;
3229 case EF_SH4A
: strcat (buf
, ", sh4a"); break;
3230 case EF_SH2A
: strcat (buf
, ", sh2a"); break;
3231 case EF_SH4_NOFPU
: strcat (buf
, ", sh4-nofpu"); break;
3232 case EF_SH4A_NOFPU
: strcat (buf
, ", sh4a-nofpu"); break;
3233 case EF_SH2A_NOFPU
: strcat (buf
, ", sh2a-nofpu"); break;
3234 case EF_SH3_NOMMU
: strcat (buf
, ", sh3-nommu"); break;
3235 case EF_SH4_NOMMU_NOFPU
: strcat (buf
, ", sh4-nommu-nofpu"); break;
3236 case EF_SH2A_SH4_NOFPU
: strcat (buf
, ", sh2a-nofpu-or-sh4-nommu-nofpu"); break;
3237 case EF_SH2A_SH3_NOFPU
: strcat (buf
, ", sh2a-nofpu-or-sh3-nommu"); break;
3238 case EF_SH2A_SH4
: strcat (buf
, ", sh2a-or-sh4"); break;
3239 case EF_SH2A_SH3E
: strcat (buf
, ", sh2a-or-sh3e"); break;
3240 default: strcat (buf
, _(", unknown ISA")); break;
3243 if (e_flags
& EF_SH_PIC
)
3244 strcat (buf
, ", pic");
3246 if (e_flags
& EF_SH_FDPIC
)
3247 strcat (buf
, ", fdpic");
3251 if (e_flags
& EF_OR1K_NODELAY
)
3252 strcat (buf
, ", no delay");
3256 if (e_flags
& EF_SPARC_32PLUS
)
3257 strcat (buf
, ", v8+");
3259 if (e_flags
& EF_SPARC_SUN_US1
)
3260 strcat (buf
, ", ultrasparcI");
3262 if (e_flags
& EF_SPARC_SUN_US3
)
3263 strcat (buf
, ", ultrasparcIII");
3265 if (e_flags
& EF_SPARC_HAL_R1
)
3266 strcat (buf
, ", halr1");
3268 if (e_flags
& EF_SPARC_LEDATA
)
3269 strcat (buf
, ", ledata");
3271 if ((e_flags
& EF_SPARCV9_MM
) == EF_SPARCV9_TSO
)
3272 strcat (buf
, ", tso");
3274 if ((e_flags
& EF_SPARCV9_MM
) == EF_SPARCV9_PSO
)
3275 strcat (buf
, ", pso");
3277 if ((e_flags
& EF_SPARCV9_MM
) == EF_SPARCV9_RMO
)
3278 strcat (buf
, ", rmo");
3282 switch (e_flags
& EF_PARISC_ARCH
)
3284 case EFA_PARISC_1_0
:
3285 strcpy (buf
, ", PA-RISC 1.0");
3287 case EFA_PARISC_1_1
:
3288 strcpy (buf
, ", PA-RISC 1.1");
3290 case EFA_PARISC_2_0
:
3291 strcpy (buf
, ", PA-RISC 2.0");
3296 if (e_flags
& EF_PARISC_TRAPNIL
)
3297 strcat (buf
, ", trapnil");
3298 if (e_flags
& EF_PARISC_EXT
)
3299 strcat (buf
, ", ext");
3300 if (e_flags
& EF_PARISC_LSB
)
3301 strcat (buf
, ", lsb");
3302 if (e_flags
& EF_PARISC_WIDE
)
3303 strcat (buf
, ", wide");
3304 if (e_flags
& EF_PARISC_NO_KABP
)
3305 strcat (buf
, ", no kabp");
3306 if (e_flags
& EF_PARISC_LAZYSWAP
)
3307 strcat (buf
, ", lazyswap");
3312 if ((e_flags
& EF_PICOJAVA_NEWCALLS
) == EF_PICOJAVA_NEWCALLS
)
3313 strcat (buf
, ", new calling convention");
3315 if ((e_flags
& EF_PICOJAVA_GNUCALLS
) == EF_PICOJAVA_GNUCALLS
)
3316 strcat (buf
, ", gnu calling convention");
3320 if ((e_flags
& EF_IA_64_ABI64
))
3321 strcat (buf
, ", 64-bit");
3323 strcat (buf
, ", 32-bit");
3324 if ((e_flags
& EF_IA_64_REDUCEDFP
))
3325 strcat (buf
, ", reduced fp model");
3326 if ((e_flags
& EF_IA_64_NOFUNCDESC_CONS_GP
))
3327 strcat (buf
, ", no function descriptors, constant gp");
3328 else if ((e_flags
& EF_IA_64_CONS_GP
))
3329 strcat (buf
, ", constant gp");
3330 if ((e_flags
& EF_IA_64_ABSOLUTE
))
3331 strcat (buf
, ", absolute");
3332 if (elf_header
.e_ident
[EI_OSABI
] == ELFOSABI_OPENVMS
)
3334 if ((e_flags
& EF_IA_64_VMS_LINKAGES
))
3335 strcat (buf
, ", vms_linkages");
3336 switch ((e_flags
& EF_IA_64_VMS_COMCOD
))
3338 case EF_IA_64_VMS_COMCOD_SUCCESS
:
3340 case EF_IA_64_VMS_COMCOD_WARNING
:
3341 strcat (buf
, ", warning");
3343 case EF_IA_64_VMS_COMCOD_ERROR
:
3344 strcat (buf
, ", error");
3346 case EF_IA_64_VMS_COMCOD_ABORT
:
3347 strcat (buf
, ", abort");
3350 warn (_("Unrecognised IA64 VMS Command Code: %x\n"),
3351 e_flags
& EF_IA_64_VMS_COMCOD
);
3352 strcat (buf
, ", <unknown>");
3358 if ((e_flags
& EF_VAX_NONPIC
))
3359 strcat (buf
, ", non-PIC");
3360 if ((e_flags
& EF_VAX_DFLOAT
))
3361 strcat (buf
, ", D-Float");
3362 if ((e_flags
& EF_VAX_GFLOAT
))
3363 strcat (buf
, ", G-Float");
3367 if (e_flags
& EF_VISIUM_ARCH_MCM
)
3368 strcat (buf
, ", mcm");
3369 else if (e_flags
& EF_VISIUM_ARCH_MCM24
)
3370 strcat (buf
, ", mcm24");
3371 if (e_flags
& EF_VISIUM_ARCH_GR6
)
3372 strcat (buf
, ", gr6");
3376 switch (e_flags
& E_FLAG_RL78_CPU_MASK
)
3378 case E_FLAG_RL78_ANY_CPU
: break;
3379 case E_FLAG_RL78_G10
: strcat (buf
, ", G10"); break;
3380 case E_FLAG_RL78_G13
: strcat (buf
, ", G13"); break;
3381 case E_FLAG_RL78_G14
: strcat (buf
, ", G14"); break;
3383 if (e_flags
& E_FLAG_RL78_64BIT_DOUBLES
)
3384 strcat (buf
, ", 64-bit doubles");
3388 if (e_flags
& E_FLAG_RX_64BIT_DOUBLES
)
3389 strcat (buf
, ", 64-bit doubles");
3390 if (e_flags
& E_FLAG_RX_DSP
)
3391 strcat (buf
, ", dsp");
3392 if (e_flags
& E_FLAG_RX_PID
)
3393 strcat (buf
, ", pid");
3394 if (e_flags
& E_FLAG_RX_ABI
)
3395 strcat (buf
, ", RX ABI");
3396 if (e_flags
& E_FLAG_RX_SINSNS_SET
)
3397 strcat (buf
, e_flags
& E_FLAG_RX_SINSNS_YES
3398 ? ", uses String instructions" : ", bans String instructions");
3399 if (e_flags
& E_FLAG_RX_V2
)
3400 strcat (buf
, ", V2");
3404 if (e_flags
& EF_S390_HIGH_GPRS
)
3405 strcat (buf
, ", highgprs");
3409 if ((e_flags
& EF_C6000_REL
))
3410 strcat (buf
, ", relocatable module");
3414 strcat (buf
, _(": architecture variant: "));
3415 switch (e_flags
& EF_MSP430_MACH
)
3417 case E_MSP430_MACH_MSP430x11
: strcat (buf
, "MSP430x11"); break;
3418 case E_MSP430_MACH_MSP430x11x1
: strcat (buf
, "MSP430x11x1 "); break;
3419 case E_MSP430_MACH_MSP430x12
: strcat (buf
, "MSP430x12"); break;
3420 case E_MSP430_MACH_MSP430x13
: strcat (buf
, "MSP430x13"); break;
3421 case E_MSP430_MACH_MSP430x14
: strcat (buf
, "MSP430x14"); break;
3422 case E_MSP430_MACH_MSP430x15
: strcat (buf
, "MSP430x15"); break;
3423 case E_MSP430_MACH_MSP430x16
: strcat (buf
, "MSP430x16"); break;
3424 case E_MSP430_MACH_MSP430x31
: strcat (buf
, "MSP430x31"); break;
3425 case E_MSP430_MACH_MSP430x32
: strcat (buf
, "MSP430x32"); break;
3426 case E_MSP430_MACH_MSP430x33
: strcat (buf
, "MSP430x33"); break;
3427 case E_MSP430_MACH_MSP430x41
: strcat (buf
, "MSP430x41"); break;
3428 case E_MSP430_MACH_MSP430x42
: strcat (buf
, "MSP430x42"); break;
3429 case E_MSP430_MACH_MSP430x43
: strcat (buf
, "MSP430x43"); break;
3430 case E_MSP430_MACH_MSP430x44
: strcat (buf
, "MSP430x44"); break;
3431 case E_MSP430_MACH_MSP430X
: strcat (buf
, "MSP430X"); break;
3433 strcat (buf
, _(": unknown")); break;
3436 if (e_flags
& ~ EF_MSP430_MACH
)
3437 strcat (buf
, _(": unknown extra flag bits also present"));
3445 get_osabi_name (unsigned int osabi
)
3447 static char buff
[32];
3451 case ELFOSABI_NONE
: return "UNIX - System V";
3452 case ELFOSABI_HPUX
: return "UNIX - HP-UX";
3453 case ELFOSABI_NETBSD
: return "UNIX - NetBSD";
3454 case ELFOSABI_GNU
: return "UNIX - GNU";
3455 case ELFOSABI_SOLARIS
: return "UNIX - Solaris";
3456 case ELFOSABI_AIX
: return "UNIX - AIX";
3457 case ELFOSABI_IRIX
: return "UNIX - IRIX";
3458 case ELFOSABI_FREEBSD
: return "UNIX - FreeBSD";
3459 case ELFOSABI_TRU64
: return "UNIX - TRU64";
3460 case ELFOSABI_MODESTO
: return "Novell - Modesto";
3461 case ELFOSABI_OPENBSD
: return "UNIX - OpenBSD";
3462 case ELFOSABI_OPENVMS
: return "VMS - OpenVMS";
3463 case ELFOSABI_NSK
: return "HP - Non-Stop Kernel";
3464 case ELFOSABI_AROS
: return "AROS";
3465 case ELFOSABI_FENIXOS
: return "FenixOS";
3468 switch (elf_header
.e_machine
)
3473 case ELFOSABI_ARM
: return "ARM";
3484 case ELFOSABI_STANDALONE
: return _("Standalone App");
3493 case ELFOSABI_C6000_ELFABI
: return _("Bare-metal C6000");
3494 case ELFOSABI_C6000_LINUX
: return "Linux C6000";
3503 snprintf (buff
, sizeof (buff
), _("<unknown: %x>"), osabi
);
3509 get_aarch64_segment_type (unsigned long type
)
3513 case PT_AARCH64_ARCHEXT
:
3514 return "AARCH64_ARCHEXT";
3523 get_arm_segment_type (unsigned long type
)
3537 get_mips_segment_type (unsigned long type
)
3541 case PT_MIPS_REGINFO
:
3543 case PT_MIPS_RTPROC
:
3545 case PT_MIPS_OPTIONS
:
3547 case PT_MIPS_ABIFLAGS
:
3557 get_parisc_segment_type (unsigned long type
)
3561 case PT_HP_TLS
: return "HP_TLS";
3562 case PT_HP_CORE_NONE
: return "HP_CORE_NONE";
3563 case PT_HP_CORE_VERSION
: return "HP_CORE_VERSION";
3564 case PT_HP_CORE_KERNEL
: return "HP_CORE_KERNEL";
3565 case PT_HP_CORE_COMM
: return "HP_CORE_COMM";
3566 case PT_HP_CORE_PROC
: return "HP_CORE_PROC";
3567 case PT_HP_CORE_LOADABLE
: return "HP_CORE_LOADABLE";
3568 case PT_HP_CORE_STACK
: return "HP_CORE_STACK";
3569 case PT_HP_CORE_SHM
: return "HP_CORE_SHM";
3570 case PT_HP_CORE_MMF
: return "HP_CORE_MMF";
3571 case PT_HP_PARALLEL
: return "HP_PARALLEL";
3572 case PT_HP_FASTBIND
: return "HP_FASTBIND";
3573 case PT_HP_OPT_ANNOT
: return "HP_OPT_ANNOT";
3574 case PT_HP_HSL_ANNOT
: return "HP_HSL_ANNOT";
3575 case PT_HP_STACK
: return "HP_STACK";
3576 case PT_HP_CORE_UTSNAME
: return "HP_CORE_UTSNAME";
3577 case PT_PARISC_ARCHEXT
: return "PARISC_ARCHEXT";
3578 case PT_PARISC_UNWIND
: return "PARISC_UNWIND";
3579 case PT_PARISC_WEAKORDER
: return "PARISC_WEAKORDER";
3588 get_ia64_segment_type (unsigned long type
)
3592 case PT_IA_64_ARCHEXT
: return "IA_64_ARCHEXT";
3593 case PT_IA_64_UNWIND
: return "IA_64_UNWIND";
3594 case PT_HP_TLS
: return "HP_TLS";
3595 case PT_IA_64_HP_OPT_ANOT
: return "HP_OPT_ANNOT";
3596 case PT_IA_64_HP_HSL_ANOT
: return "HP_HSL_ANNOT";
3597 case PT_IA_64_HP_STACK
: return "HP_STACK";
3606 get_tic6x_segment_type (unsigned long type
)
3610 case PT_C6000_PHATTR
: return "C6000_PHATTR";
3619 get_segment_type (unsigned long p_type
)
3621 static char buff
[32];
3625 case PT_NULL
: return "NULL";
3626 case PT_LOAD
: return "LOAD";
3627 case PT_DYNAMIC
: return "DYNAMIC";
3628 case PT_INTERP
: return "INTERP";
3629 case PT_NOTE
: return "NOTE";
3630 case PT_SHLIB
: return "SHLIB";
3631 case PT_PHDR
: return "PHDR";
3632 case PT_TLS
: return "TLS";
3634 case PT_GNU_EH_FRAME
:
3635 return "GNU_EH_FRAME";
3636 case PT_GNU_STACK
: return "GNU_STACK";
3637 case PT_GNU_RELRO
: return "GNU_RELRO";
3640 if ((p_type
>= PT_LOPROC
) && (p_type
<= PT_HIPROC
))
3642 const char * result
;
3644 switch (elf_header
.e_machine
)
3647 result
= get_aarch64_segment_type (p_type
);
3650 result
= get_arm_segment_type (p_type
);
3653 case EM_MIPS_RS3_LE
:
3654 result
= get_mips_segment_type (p_type
);
3657 result
= get_parisc_segment_type (p_type
);
3660 result
= get_ia64_segment_type (p_type
);
3663 result
= get_tic6x_segment_type (p_type
);
3673 sprintf (buff
, "LOPROC+%lx", p_type
- PT_LOPROC
);
3675 else if ((p_type
>= PT_LOOS
) && (p_type
<= PT_HIOS
))
3677 const char * result
;
3679 switch (elf_header
.e_machine
)
3682 result
= get_parisc_segment_type (p_type
);
3685 result
= get_ia64_segment_type (p_type
);
3695 sprintf (buff
, "LOOS+%lx", p_type
- PT_LOOS
);
3698 snprintf (buff
, sizeof (buff
), _("<unknown>: %lx"), p_type
);
3705 get_mips_section_type_name (unsigned int sh_type
)
3709 case SHT_MIPS_LIBLIST
: return "MIPS_LIBLIST";
3710 case SHT_MIPS_MSYM
: return "MIPS_MSYM";
3711 case SHT_MIPS_CONFLICT
: return "MIPS_CONFLICT";
3712 case SHT_MIPS_GPTAB
: return "MIPS_GPTAB";
3713 case SHT_MIPS_UCODE
: return "MIPS_UCODE";
3714 case SHT_MIPS_DEBUG
: return "MIPS_DEBUG";
3715 case SHT_MIPS_REGINFO
: return "MIPS_REGINFO";
3716 case SHT_MIPS_PACKAGE
: return "MIPS_PACKAGE";
3717 case SHT_MIPS_PACKSYM
: return "MIPS_PACKSYM";
3718 case SHT_MIPS_RELD
: return "MIPS_RELD";
3719 case SHT_MIPS_IFACE
: return "MIPS_IFACE";
3720 case SHT_MIPS_CONTENT
: return "MIPS_CONTENT";
3721 case SHT_MIPS_OPTIONS
: return "MIPS_OPTIONS";
3722 case SHT_MIPS_SHDR
: return "MIPS_SHDR";
3723 case SHT_MIPS_FDESC
: return "MIPS_FDESC";
3724 case SHT_MIPS_EXTSYM
: return "MIPS_EXTSYM";
3725 case SHT_MIPS_DENSE
: return "MIPS_DENSE";
3726 case SHT_MIPS_PDESC
: return "MIPS_PDESC";
3727 case SHT_MIPS_LOCSYM
: return "MIPS_LOCSYM";
3728 case SHT_MIPS_AUXSYM
: return "MIPS_AUXSYM";
3729 case SHT_MIPS_OPTSYM
: return "MIPS_OPTSYM";
3730 case SHT_MIPS_LOCSTR
: return "MIPS_LOCSTR";
3731 case SHT_MIPS_LINE
: return "MIPS_LINE";
3732 case SHT_MIPS_RFDESC
: return "MIPS_RFDESC";
3733 case SHT_MIPS_DELTASYM
: return "MIPS_DELTASYM";
3734 case SHT_MIPS_DELTAINST
: return "MIPS_DELTAINST";
3735 case SHT_MIPS_DELTACLASS
: return "MIPS_DELTACLASS";
3736 case SHT_MIPS_DWARF
: return "MIPS_DWARF";
3737 case SHT_MIPS_DELTADECL
: return "MIPS_DELTADECL";
3738 case SHT_MIPS_SYMBOL_LIB
: return "MIPS_SYMBOL_LIB";
3739 case SHT_MIPS_EVENTS
: return "MIPS_EVENTS";
3740 case SHT_MIPS_TRANSLATE
: return "MIPS_TRANSLATE";
3741 case SHT_MIPS_PIXIE
: return "MIPS_PIXIE";
3742 case SHT_MIPS_XLATE
: return "MIPS_XLATE";
3743 case SHT_MIPS_XLATE_DEBUG
: return "MIPS_XLATE_DEBUG";
3744 case SHT_MIPS_WHIRL
: return "MIPS_WHIRL";
3745 case SHT_MIPS_EH_REGION
: return "MIPS_EH_REGION";
3746 case SHT_MIPS_XLATE_OLD
: return "MIPS_XLATE_OLD";
3747 case SHT_MIPS_PDR_EXCEPTION
: return "MIPS_PDR_EXCEPTION";
3748 case SHT_MIPS_ABIFLAGS
: return "MIPS_ABIFLAGS";
3756 get_parisc_section_type_name (unsigned int sh_type
)
3760 case SHT_PARISC_EXT
: return "PARISC_EXT";
3761 case SHT_PARISC_UNWIND
: return "PARISC_UNWIND";
3762 case SHT_PARISC_DOC
: return "PARISC_DOC";
3763 case SHT_PARISC_ANNOT
: return "PARISC_ANNOT";
3764 case SHT_PARISC_SYMEXTN
: return "PARISC_SYMEXTN";
3765 case SHT_PARISC_STUBS
: return "PARISC_STUBS";
3766 case SHT_PARISC_DLKM
: return "PARISC_DLKM";
3774 get_ia64_section_type_name (unsigned int sh_type
)
3776 /* If the top 8 bits are 0x78 the next 8 are the os/abi ID. */
3777 if ((sh_type
& 0xFF000000) == SHT_IA_64_LOPSREG
)
3778 return get_osabi_name ((sh_type
& 0x00FF0000) >> 16);
3782 case SHT_IA_64_EXT
: return "IA_64_EXT";
3783 case SHT_IA_64_UNWIND
: return "IA_64_UNWIND";
3784 case SHT_IA_64_PRIORITY_INIT
: return "IA_64_PRIORITY_INIT";
3785 case SHT_IA_64_VMS_TRACE
: return "VMS_TRACE";
3786 case SHT_IA_64_VMS_TIE_SIGNATURES
: return "VMS_TIE_SIGNATURES";
3787 case SHT_IA_64_VMS_DEBUG
: return "VMS_DEBUG";
3788 case SHT_IA_64_VMS_DEBUG_STR
: return "VMS_DEBUG_STR";
3789 case SHT_IA_64_VMS_LINKAGES
: return "VMS_LINKAGES";
3790 case SHT_IA_64_VMS_SYMBOL_VECTOR
: return "VMS_SYMBOL_VECTOR";
3791 case SHT_IA_64_VMS_FIXUP
: return "VMS_FIXUP";
3799 get_x86_64_section_type_name (unsigned int sh_type
)
3803 case SHT_X86_64_UNWIND
: return "X86_64_UNWIND";
3811 get_aarch64_section_type_name (unsigned int sh_type
)
3815 case SHT_AARCH64_ATTRIBUTES
:
3816 return "AARCH64_ATTRIBUTES";
3824 get_arm_section_type_name (unsigned int sh_type
)
3828 case SHT_ARM_EXIDX
: return "ARM_EXIDX";
3829 case SHT_ARM_PREEMPTMAP
: return "ARM_PREEMPTMAP";
3830 case SHT_ARM_ATTRIBUTES
: return "ARM_ATTRIBUTES";
3831 case SHT_ARM_DEBUGOVERLAY
: return "ARM_DEBUGOVERLAY";
3832 case SHT_ARM_OVERLAYSECTION
: return "ARM_OVERLAYSECTION";
3840 get_tic6x_section_type_name (unsigned int sh_type
)
3844 case SHT_C6000_UNWIND
:
3845 return "C6000_UNWIND";
3846 case SHT_C6000_PREEMPTMAP
:
3847 return "C6000_PREEMPTMAP";
3848 case SHT_C6000_ATTRIBUTES
:
3849 return "C6000_ATTRIBUTES";
3854 case SHT_TI_HANDLER
:
3855 return "TI_HANDLER";
3856 case SHT_TI_INITINFO
:
3857 return "TI_INITINFO";
3858 case SHT_TI_PHATTRS
:
3859 return "TI_PHATTRS";
3867 get_msp430x_section_type_name (unsigned int sh_type
)
3871 case SHT_MSP430_SEC_FLAGS
: return "MSP430_SEC_FLAGS";
3872 case SHT_MSP430_SYM_ALIASES
: return "MSP430_SYM_ALIASES";
3873 case SHT_MSP430_ATTRIBUTES
: return "MSP430_ATTRIBUTES";
3874 default: return NULL
;
3879 get_v850_section_type_name (unsigned int sh_type
)
3883 case SHT_V850_SCOMMON
: return "V850 Small Common";
3884 case SHT_V850_TCOMMON
: return "V850 Tiny Common";
3885 case SHT_V850_ZCOMMON
: return "V850 Zero Common";
3886 case SHT_RENESAS_IOP
: return "RENESAS IOP";
3887 case SHT_RENESAS_INFO
: return "RENESAS INFO";
3888 default: return NULL
;
3893 get_section_type_name (unsigned int sh_type
)
3895 static char buff
[32];
3896 const char * result
;
3900 case SHT_NULL
: return "NULL";
3901 case SHT_PROGBITS
: return "PROGBITS";
3902 case SHT_SYMTAB
: return "SYMTAB";
3903 case SHT_STRTAB
: return "STRTAB";
3904 case SHT_RELA
: return "RELA";
3905 case SHT_HASH
: return "HASH";
3906 case SHT_DYNAMIC
: return "DYNAMIC";
3907 case SHT_NOTE
: return "NOTE";
3908 case SHT_NOBITS
: return "NOBITS";
3909 case SHT_REL
: return "REL";
3910 case SHT_SHLIB
: return "SHLIB";
3911 case SHT_DYNSYM
: return "DYNSYM";
3912 case SHT_INIT_ARRAY
: return "INIT_ARRAY";
3913 case SHT_FINI_ARRAY
: return "FINI_ARRAY";
3914 case SHT_PREINIT_ARRAY
: return "PREINIT_ARRAY";
3915 case SHT_GNU_HASH
: return "GNU_HASH";
3916 case SHT_GROUP
: return "GROUP";
3917 case SHT_SYMTAB_SHNDX
: return "SYMTAB SECTION INDICIES";
3918 case SHT_GNU_verdef
: return "VERDEF";
3919 case SHT_GNU_verneed
: return "VERNEED";
3920 case SHT_GNU_versym
: return "VERSYM";
3921 case 0x6ffffff0: return "VERSYM";
3922 case 0x6ffffffc: return "VERDEF";
3923 case 0x7ffffffd: return "AUXILIARY";
3924 case 0x7fffffff: return "FILTER";
3925 case SHT_GNU_LIBLIST
: return "GNU_LIBLIST";
3928 if ((sh_type
>= SHT_LOPROC
) && (sh_type
<= SHT_HIPROC
))
3930 switch (elf_header
.e_machine
)
3933 case EM_MIPS_RS3_LE
:
3934 result
= get_mips_section_type_name (sh_type
);
3937 result
= get_parisc_section_type_name (sh_type
);
3940 result
= get_ia64_section_type_name (sh_type
);
3945 result
= get_x86_64_section_type_name (sh_type
);
3948 result
= get_aarch64_section_type_name (sh_type
);
3951 result
= get_arm_section_type_name (sh_type
);
3954 result
= get_tic6x_section_type_name (sh_type
);
3957 result
= get_msp430x_section_type_name (sh_type
);
3961 case EM_CYGNUS_V850
:
3962 result
= get_v850_section_type_name (sh_type
);
3972 sprintf (buff
, "LOPROC+%#x", sh_type
- SHT_LOPROC
);
3974 else if ((sh_type
>= SHT_LOOS
) && (sh_type
<= SHT_HIOS
))
3976 switch (elf_header
.e_machine
)
3979 result
= get_ia64_section_type_name (sh_type
);
3989 sprintf (buff
, "LOOS+%#x", sh_type
- SHT_LOOS
);
3991 else if ((sh_type
>= SHT_LOUSER
) && (sh_type
<= SHT_HIUSER
))
3993 switch (elf_header
.e_machine
)
3997 case EM_CYGNUS_V850
:
3998 result
= get_v850_section_type_name (sh_type
);
4007 sprintf (buff
, "LOUSER+%#x", sh_type
- SHT_LOUSER
);
4010 /* This message is probably going to be displayed in a 15
4011 character wide field, so put the hex value first. */
4012 snprintf (buff
, sizeof (buff
), _("%08x: <unknown>"), sh_type
);
4018 #define OPTION_DEBUG_DUMP 512
4019 #define OPTION_DYN_SYMS 513
4020 #define OPTION_DWARF_DEPTH 514
4021 #define OPTION_DWARF_START 515
4022 #define OPTION_DWARF_CHECK 516
4024 static struct option options
[] =
4026 {"all", no_argument
, 0, 'a'},
4027 {"file-header", no_argument
, 0, 'h'},
4028 {"program-headers", no_argument
, 0, 'l'},
4029 {"headers", no_argument
, 0, 'e'},
4030 {"histogram", no_argument
, 0, 'I'},
4031 {"segments", no_argument
, 0, 'l'},
4032 {"sections", no_argument
, 0, 'S'},
4033 {"section-headers", no_argument
, 0, 'S'},
4034 {"section-groups", no_argument
, 0, 'g'},
4035 {"section-details", no_argument
, 0, 't'},
4036 {"full-section-name",no_argument
, 0, 'N'},
4037 {"symbols", no_argument
, 0, 's'},
4038 {"syms", no_argument
, 0, 's'},
4039 {"dyn-syms", no_argument
, 0, OPTION_DYN_SYMS
},
4040 {"relocs", no_argument
, 0, 'r'},
4041 {"notes", no_argument
, 0, 'n'},
4042 {"dynamic", no_argument
, 0, 'd'},
4043 {"arch-specific", no_argument
, 0, 'A'},
4044 {"version-info", no_argument
, 0, 'V'},
4045 {"use-dynamic", no_argument
, 0, 'D'},
4046 {"unwind", no_argument
, 0, 'u'},
4047 {"archive-index", no_argument
, 0, 'c'},
4048 {"hex-dump", required_argument
, 0, 'x'},
4049 {"relocated-dump", required_argument
, 0, 'R'},
4050 {"string-dump", required_argument
, 0, 'p'},
4051 {"decompress", no_argument
, 0, 'z'},
4052 #ifdef SUPPORT_DISASSEMBLY
4053 {"instruction-dump", required_argument
, 0, 'i'},
4055 {"debug-dump", optional_argument
, 0, OPTION_DEBUG_DUMP
},
4057 {"dwarf-depth", required_argument
, 0, OPTION_DWARF_DEPTH
},
4058 {"dwarf-start", required_argument
, 0, OPTION_DWARF_START
},
4059 {"dwarf-check", no_argument
, 0, OPTION_DWARF_CHECK
},
4061 {"version", no_argument
, 0, 'v'},
4062 {"wide", no_argument
, 0, 'W'},
4063 {"help", no_argument
, 0, 'H'},
4064 {0, no_argument
, 0, 0}
4068 usage (FILE * stream
)
4070 fprintf (stream
, _("Usage: readelf <option(s)> elf-file(s)\n"));
4071 fprintf (stream
, _(" Display information about the contents of ELF format files\n"));
4072 fprintf (stream
, _(" Options are:\n\
4073 -a --all Equivalent to: -h -l -S -s -r -d -V -A -I\n\
4074 -h --file-header Display the ELF file header\n\
4075 -l --program-headers Display the program headers\n\
4076 --segments An alias for --program-headers\n\
4077 -S --section-headers Display the sections' header\n\
4078 --sections An alias for --section-headers\n\
4079 -g --section-groups Display the section groups\n\
4080 -t --section-details Display the section details\n\
4081 -e --headers Equivalent to: -h -l -S\n\
4082 -s --syms Display the symbol table\n\
4083 --symbols An alias for --syms\n\
4084 --dyn-syms Display the dynamic symbol table\n\
4085 -n --notes Display the core notes (if present)\n\
4086 -r --relocs Display the relocations (if present)\n\
4087 -u --unwind Display the unwind info (if present)\n\
4088 -d --dynamic Display the dynamic section (if present)\n\
4089 -V --version-info Display the version sections (if present)\n\
4090 -A --arch-specific Display architecture specific information (if any)\n\
4091 -c --archive-index Display the symbol/file index in an archive\n\
4092 -D --use-dynamic Use the dynamic section info when displaying symbols\n\
4093 -x --hex-dump=<number|name>\n\
4094 Dump the contents of section <number|name> as bytes\n\
4095 -p --string-dump=<number|name>\n\
4096 Dump the contents of section <number|name> as strings\n\
4097 -R --relocated-dump=<number|name>\n\
4098 Dump the contents of section <number|name> as relocated bytes\n\
4099 -z --decompress Decompress section before dumping it\n\
4100 -w[lLiaprmfFsoRt] or\n\
4101 --debug-dump[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,\n\
4102 =frames-interp,=str,=loc,=Ranges,=pubtypes,\n\
4103 =gdb_index,=trace_info,=trace_abbrev,=trace_aranges,\n\
4105 Display the contents of DWARF2 debug sections\n"));
4106 fprintf (stream
, _("\
4107 --dwarf-depth=N Do not display DIEs at depth N or greater\n\
4108 --dwarf-start=N Display DIEs starting with N, at the same depth\n\
4110 #ifdef SUPPORT_DISASSEMBLY
4111 fprintf (stream
, _("\
4112 -i --instruction-dump=<number|name>\n\
4113 Disassemble the contents of section <number|name>\n"));
4115 fprintf (stream
, _("\
4116 -I --histogram Display histogram of bucket list lengths\n\
4117 -W --wide Allow output width to exceed 80 characters\n\
4118 @<file> Read options from <file>\n\
4119 -H --help Display this information\n\
4120 -v --version Display the version number of readelf\n"));
4122 if (REPORT_BUGS_TO
[0] && stream
== stdout
)
4123 fprintf (stdout
, _("Report bugs to %s\n"), REPORT_BUGS_TO
);
4125 exit (stream
== stdout
? 0 : 1);
4128 /* Record the fact that the user wants the contents of section number
4129 SECTION to be displayed using the method(s) encoded as flags bits
4130 in TYPE. Note, TYPE can be zero if we are creating the array for
4134 request_dump_bynumber (unsigned int section
, dump_type type
)
4136 if (section
>= num_dump_sects
)
4138 dump_type
* new_dump_sects
;
4140 new_dump_sects
= (dump_type
*) calloc (section
+ 1,
4141 sizeof (* dump_sects
));
4143 if (new_dump_sects
== NULL
)
4144 error (_("Out of memory allocating dump request table.\n"));
4147 /* Copy current flag settings. */
4148 memcpy (new_dump_sects
, dump_sects
, num_dump_sects
* sizeof (* dump_sects
));
4152 dump_sects
= new_dump_sects
;
4153 num_dump_sects
= section
+ 1;
4158 dump_sects
[section
] |= type
;
4163 /* Request a dump by section name. */
4166 request_dump_byname (const char * section
, dump_type type
)
4168 struct dump_list_entry
* new_request
;
4170 new_request
= (struct dump_list_entry
*)
4171 malloc (sizeof (struct dump_list_entry
));
4173 error (_("Out of memory allocating dump request table.\n"));
4175 new_request
->name
= strdup (section
);
4176 if (!new_request
->name
)
4177 error (_("Out of memory allocating dump request table.\n"));
4179 new_request
->type
= type
;
4181 new_request
->next
= dump_sects_byname
;
4182 dump_sects_byname
= new_request
;
4186 request_dump (dump_type type
)
4192 section
= strtoul (optarg
, & cp
, 0);
4194 if (! *cp
&& section
>= 0)
4195 request_dump_bynumber (section
, type
);
4197 request_dump_byname (optarg
, type
);
4202 parse_args (int argc
, char ** argv
)
4209 while ((c
= getopt_long
4210 (argc
, argv
, "ADHINR:SVWacdeghi:lnp:rstuvw::x:z", options
, NULL
)) != EOF
)
4228 do_section_groups
++;
4236 do_section_groups
++;
4241 do_section_details
++;
4285 request_dump (HEX_DUMP
);
4288 request_dump (STRING_DUMP
);
4291 request_dump (RELOC_DUMP
);
4301 dwarf_select_sections_all ();
4306 dwarf_select_sections_by_letters (optarg
);
4309 case OPTION_DEBUG_DUMP
:
4316 dwarf_select_sections_by_names (optarg
);
4319 case OPTION_DWARF_DEPTH
:
4323 dwarf_cutoff_level
= strtoul (optarg
, & cp
, 0);
4326 case OPTION_DWARF_START
:
4330 dwarf_start_die
= strtoul (optarg
, & cp
, 0);
4333 case OPTION_DWARF_CHECK
:
4336 case OPTION_DYN_SYMS
:
4339 #ifdef SUPPORT_DISASSEMBLY
4341 request_dump (DISASS_DUMP
);
4345 print_version (program_name
);
4354 /* xgettext:c-format */
4355 error (_("Invalid option '-%c'\n"), c
);
4362 if (!do_dynamic
&& !do_syms
&& !do_reloc
&& !do_unwind
&& !do_sections
4363 && !do_segments
&& !do_header
&& !do_dump
&& !do_version
4364 && !do_histogram
&& !do_debugging
&& !do_arch
&& !do_notes
4365 && !do_section_groups
&& !do_archive_index
4371 get_elf_class (unsigned int elf_class
)
4373 static char buff
[32];
4377 case ELFCLASSNONE
: return _("none");
4378 case ELFCLASS32
: return "ELF32";
4379 case ELFCLASS64
: return "ELF64";
4381 snprintf (buff
, sizeof (buff
), _("<unknown: %x>"), elf_class
);
4387 get_data_encoding (unsigned int encoding
)
4389 static char buff
[32];
4393 case ELFDATANONE
: return _("none");
4394 case ELFDATA2LSB
: return _("2's complement, little endian");
4395 case ELFDATA2MSB
: return _("2's complement, big endian");
4397 snprintf (buff
, sizeof (buff
), _("<unknown: %x>"), encoding
);
4402 /* Decode the data held in 'elf_header'. */
4405 process_file_header (void)
4407 if ( elf_header
.e_ident
[EI_MAG0
] != ELFMAG0
4408 || elf_header
.e_ident
[EI_MAG1
] != ELFMAG1
4409 || elf_header
.e_ident
[EI_MAG2
] != ELFMAG2
4410 || elf_header
.e_ident
[EI_MAG3
] != ELFMAG3
)
4413 (_("Not an ELF file - it has the wrong magic bytes at the start\n"));
4417 init_dwarf_regnames (elf_header
.e_machine
);
4423 printf (_("ELF Header:\n"));
4424 printf (_(" Magic: "));
4425 for (i
= 0; i
< EI_NIDENT
; i
++)
4426 printf ("%2.2x ", elf_header
.e_ident
[i
]);
4428 printf (_(" Class: %s\n"),
4429 get_elf_class (elf_header
.e_ident
[EI_CLASS
]));
4430 printf (_(" Data: %s\n"),
4431 get_data_encoding (elf_header
.e_ident
[EI_DATA
]));
4432 printf (_(" Version: %d %s\n"),
4433 elf_header
.e_ident
[EI_VERSION
],
4434 (elf_header
.e_ident
[EI_VERSION
] == EV_CURRENT
4436 : (elf_header
.e_ident
[EI_VERSION
] != EV_NONE
4437 ? _("<unknown: %lx>")
4439 printf (_(" OS/ABI: %s\n"),
4440 get_osabi_name (elf_header
.e_ident
[EI_OSABI
]));
4441 printf (_(" ABI Version: %d\n"),
4442 elf_header
.e_ident
[EI_ABIVERSION
]);
4443 printf (_(" Type: %s\n"),
4444 get_file_type (elf_header
.e_type
));
4445 printf (_(" Machine: %s\n"),
4446 get_machine_name (elf_header
.e_machine
));
4447 printf (_(" Version: 0x%lx\n"),
4448 (unsigned long) elf_header
.e_version
);
4450 printf (_(" Entry point address: "));
4451 print_vma ((bfd_vma
) elf_header
.e_entry
, PREFIX_HEX
);
4452 printf (_("\n Start of program headers: "));
4453 print_vma ((bfd_vma
) elf_header
.e_phoff
, DEC
);
4454 printf (_(" (bytes into file)\n Start of section headers: "));
4455 print_vma ((bfd_vma
) elf_header
.e_shoff
, DEC
);
4456 printf (_(" (bytes into file)\n"));
4458 printf (_(" Flags: 0x%lx%s\n"),
4459 (unsigned long) elf_header
.e_flags
,
4460 get_machine_flags (elf_header
.e_flags
, elf_header
.e_machine
));
4461 printf (_(" Size of this header: %ld (bytes)\n"),
4462 (long) elf_header
.e_ehsize
);
4463 printf (_(" Size of program headers: %ld (bytes)\n"),
4464 (long) elf_header
.e_phentsize
);
4465 printf (_(" Number of program headers: %ld"),
4466 (long) elf_header
.e_phnum
);
4467 if (section_headers
!= NULL
4468 && elf_header
.e_phnum
== PN_XNUM
4469 && section_headers
[0].sh_info
!= 0)
4470 printf (" (%ld)", (long) section_headers
[0].sh_info
);
4471 putc ('\n', stdout
);
4472 printf (_(" Size of section headers: %ld (bytes)\n"),
4473 (long) elf_header
.e_shentsize
);
4474 printf (_(" Number of section headers: %ld"),
4475 (long) elf_header
.e_shnum
);
4476 if (section_headers
!= NULL
&& elf_header
.e_shnum
== SHN_UNDEF
)
4477 printf (" (%ld)", (long) section_headers
[0].sh_size
);
4478 putc ('\n', stdout
);
4479 printf (_(" Section header string table index: %ld"),
4480 (long) elf_header
.e_shstrndx
);
4481 if (section_headers
!= NULL
4482 && elf_header
.e_shstrndx
== (SHN_XINDEX
& 0xffff))
4483 printf (" (%u)", section_headers
[0].sh_link
);
4484 else if (elf_header
.e_shstrndx
!= SHN_UNDEF
4485 && elf_header
.e_shstrndx
>= elf_header
.e_shnum
)
4486 printf (_(" <corrupt: out of range>"));
4487 putc ('\n', stdout
);
4490 if (section_headers
!= NULL
)
4492 if (elf_header
.e_phnum
== PN_XNUM
4493 && section_headers
[0].sh_info
!= 0)
4494 elf_header
.e_phnum
= section_headers
[0].sh_info
;
4495 if (elf_header
.e_shnum
== SHN_UNDEF
)
4496 elf_header
.e_shnum
= section_headers
[0].sh_size
;
4497 if (elf_header
.e_shstrndx
== (SHN_XINDEX
& 0xffff))
4498 elf_header
.e_shstrndx
= section_headers
[0].sh_link
;
4499 else if (elf_header
.e_shstrndx
>= elf_header
.e_shnum
)
4500 elf_header
.e_shstrndx
= SHN_UNDEF
;
4501 free (section_headers
);
4502 section_headers
= NULL
;
4509 get_32bit_program_headers (FILE * file
, Elf_Internal_Phdr
* pheaders
)
4511 Elf32_External_Phdr
* phdrs
;
4512 Elf32_External_Phdr
* external
;
4513 Elf_Internal_Phdr
* internal
;
4515 unsigned int size
= elf_header
.e_phentsize
;
4516 unsigned int num
= elf_header
.e_phnum
;
4518 /* PR binutils/17531: Cope with unexpected section header sizes. */
4519 if (size
== 0 || num
== 0)
4521 if (size
< sizeof * phdrs
)
4523 error (_("The e_phentsize field in the ELF header is less than the size of an ELF program header\n"));
4526 if (size
> sizeof * phdrs
)
4527 warn (_("The e_phentsize field in the ELF header is larger than the size of an ELF program header\n"));
4529 phdrs
= (Elf32_External_Phdr
*) get_data (NULL
, file
, elf_header
.e_phoff
,
4530 size
, num
, _("program headers"));
4534 for (i
= 0, internal
= pheaders
, external
= phdrs
;
4535 i
< elf_header
.e_phnum
;
4536 i
++, internal
++, external
++)
4538 internal
->p_type
= BYTE_GET (external
->p_type
);
4539 internal
->p_offset
= BYTE_GET (external
->p_offset
);
4540 internal
->p_vaddr
= BYTE_GET (external
->p_vaddr
);
4541 internal
->p_paddr
= BYTE_GET (external
->p_paddr
);
4542 internal
->p_filesz
= BYTE_GET (external
->p_filesz
);
4543 internal
->p_memsz
= BYTE_GET (external
->p_memsz
);
4544 internal
->p_flags
= BYTE_GET (external
->p_flags
);
4545 internal
->p_align
= BYTE_GET (external
->p_align
);
4553 get_64bit_program_headers (FILE * file
, Elf_Internal_Phdr
* pheaders
)
4555 Elf64_External_Phdr
* phdrs
;
4556 Elf64_External_Phdr
* external
;
4557 Elf_Internal_Phdr
* internal
;
4559 unsigned int size
= elf_header
.e_phentsize
;
4560 unsigned int num
= elf_header
.e_phnum
;
4562 /* PR binutils/17531: Cope with unexpected section header sizes. */
4563 if (size
== 0 || num
== 0)
4565 if (size
< sizeof * phdrs
)
4567 error (_("The e_phentsize field in the ELF header is less than the size of an ELF program header\n"));
4570 if (size
> sizeof * phdrs
)
4571 warn (_("The e_phentsize field in the ELF header is larger than the size of an ELF program header\n"));
4573 phdrs
= (Elf64_External_Phdr
*) get_data (NULL
, file
, elf_header
.e_phoff
,
4574 size
, num
, _("program headers"));
4578 for (i
= 0, internal
= pheaders
, external
= phdrs
;
4579 i
< elf_header
.e_phnum
;
4580 i
++, internal
++, external
++)
4582 internal
->p_type
= BYTE_GET (external
->p_type
);
4583 internal
->p_flags
= BYTE_GET (external
->p_flags
);
4584 internal
->p_offset
= BYTE_GET (external
->p_offset
);
4585 internal
->p_vaddr
= BYTE_GET (external
->p_vaddr
);
4586 internal
->p_paddr
= BYTE_GET (external
->p_paddr
);
4587 internal
->p_filesz
= BYTE_GET (external
->p_filesz
);
4588 internal
->p_memsz
= BYTE_GET (external
->p_memsz
);
4589 internal
->p_align
= BYTE_GET (external
->p_align
);
4596 /* Returns 1 if the program headers were read into `program_headers'. */
4599 get_program_headers (FILE * file
)
4601 Elf_Internal_Phdr
* phdrs
;
4603 /* Check cache of prior read. */
4604 if (program_headers
!= NULL
)
4607 phdrs
= (Elf_Internal_Phdr
*) cmalloc (elf_header
.e_phnum
,
4608 sizeof (Elf_Internal_Phdr
));
4612 error (_("Out of memory reading %u program headers\n"),
4613 elf_header
.e_phnum
);
4618 ? get_32bit_program_headers (file
, phdrs
)
4619 : get_64bit_program_headers (file
, phdrs
))
4621 program_headers
= phdrs
;
4629 /* Returns 1 if the program headers were loaded. */
4632 process_program_headers (FILE * file
)
4634 Elf_Internal_Phdr
* segment
;
4637 if (elf_header
.e_phnum
== 0)
4639 /* PR binutils/12467. */
4640 if (elf_header
.e_phoff
!= 0)
4641 warn (_("possibly corrupt ELF header - it has a non-zero program"
4642 " header offset, but no program headers\n"));
4643 else if (do_segments
)
4644 printf (_("\nThere are no program headers in this file.\n"));
4648 if (do_segments
&& !do_header
)
4650 printf (_("\nElf file type is %s\n"), get_file_type (elf_header
.e_type
));
4651 printf (_("Entry point "));
4652 print_vma ((bfd_vma
) elf_header
.e_entry
, PREFIX_HEX
);
4653 printf (_("\nThere are %d program headers, starting at offset "),
4654 elf_header
.e_phnum
);
4655 print_vma ((bfd_vma
) elf_header
.e_phoff
, DEC
);
4659 if (! get_program_headers (file
))
4664 if (elf_header
.e_phnum
> 1)
4665 printf (_("\nProgram Headers:\n"));
4667 printf (_("\nProgram Headers:\n"));
4671 (_(" Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align\n"));
4674 (_(" Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align\n"));
4678 (_(" Type Offset VirtAddr PhysAddr\n"));
4680 (_(" FileSiz MemSiz Flags Align\n"));
4687 for (i
= 0, segment
= program_headers
;
4688 i
< elf_header
.e_phnum
;
4693 printf (" %-14.14s ", get_segment_type (segment
->p_type
));
4697 printf ("0x%6.6lx ", (unsigned long) segment
->p_offset
);
4698 printf ("0x%8.8lx ", (unsigned long) segment
->p_vaddr
);
4699 printf ("0x%8.8lx ", (unsigned long) segment
->p_paddr
);
4700 printf ("0x%5.5lx ", (unsigned long) segment
->p_filesz
);
4701 printf ("0x%5.5lx ", (unsigned long) segment
->p_memsz
);
4703 (segment
->p_flags
& PF_R
? 'R' : ' '),
4704 (segment
->p_flags
& PF_W
? 'W' : ' '),
4705 (segment
->p_flags
& PF_X
? 'E' : ' '));
4706 printf ("%#lx", (unsigned long) segment
->p_align
);
4710 if ((unsigned long) segment
->p_offset
== segment
->p_offset
)
4711 printf ("0x%6.6lx ", (unsigned long) segment
->p_offset
);
4714 print_vma (segment
->p_offset
, FULL_HEX
);
4718 print_vma (segment
->p_vaddr
, FULL_HEX
);
4720 print_vma (segment
->p_paddr
, FULL_HEX
);
4723 if ((unsigned long) segment
->p_filesz
== segment
->p_filesz
)
4724 printf ("0x%6.6lx ", (unsigned long) segment
->p_filesz
);
4727 print_vma (segment
->p_filesz
, FULL_HEX
);
4731 if ((unsigned long) segment
->p_memsz
== segment
->p_memsz
)
4732 printf ("0x%6.6lx", (unsigned long) segment
->p_memsz
);
4735 print_vma (segment
->p_memsz
, FULL_HEX
);
4739 (segment
->p_flags
& PF_R
? 'R' : ' '),
4740 (segment
->p_flags
& PF_W
? 'W' : ' '),
4741 (segment
->p_flags
& PF_X
? 'E' : ' '));
4743 if ((unsigned long) segment
->p_align
== segment
->p_align
)
4744 printf ("%#lx", (unsigned long) segment
->p_align
);
4747 print_vma (segment
->p_align
, PREFIX_HEX
);
4752 print_vma (segment
->p_offset
, FULL_HEX
);
4754 print_vma (segment
->p_vaddr
, FULL_HEX
);
4756 print_vma (segment
->p_paddr
, FULL_HEX
);
4758 print_vma (segment
->p_filesz
, FULL_HEX
);
4760 print_vma (segment
->p_memsz
, FULL_HEX
);
4762 (segment
->p_flags
& PF_R
? 'R' : ' '),
4763 (segment
->p_flags
& PF_W
? 'W' : ' '),
4764 (segment
->p_flags
& PF_X
? 'E' : ' '));
4765 print_vma (segment
->p_align
, HEX
);
4770 putc ('\n', stdout
);
4772 switch (segment
->p_type
)
4776 error (_("more than one dynamic segment\n"));
4778 /* By default, assume that the .dynamic section is the first
4779 section in the DYNAMIC segment. */
4780 dynamic_addr
= segment
->p_offset
;
4781 dynamic_size
= segment
->p_filesz
;
4782 /* PR binutils/17512: Avoid corrupt dynamic section info in the segment. */
4783 if (dynamic_addr
+ dynamic_size
>= current_file_size
)
4785 error (_("the dynamic segment offset + size exceeds the size of the file\n"));
4786 dynamic_addr
= dynamic_size
= 0;
4789 /* Try to locate the .dynamic section. If there is
4790 a section header table, we can easily locate it. */
4791 if (section_headers
!= NULL
)
4793 Elf_Internal_Shdr
* sec
;
4795 sec
= find_section (".dynamic");
4796 if (sec
== NULL
|| sec
->sh_size
== 0)
4798 /* A corresponding .dynamic section is expected, but on
4799 IA-64/OpenVMS it is OK for it to be missing. */
4800 if (!is_ia64_vms ())
4801 error (_("no .dynamic section in the dynamic segment\n"));
4805 if (sec
->sh_type
== SHT_NOBITS
)
4811 dynamic_addr
= sec
->sh_offset
;
4812 dynamic_size
= sec
->sh_size
;
4814 if (dynamic_addr
< segment
->p_offset
4815 || dynamic_addr
> segment
->p_offset
+ segment
->p_filesz
)
4816 warn (_("the .dynamic section is not contained"
4817 " within the dynamic segment\n"));
4818 else if (dynamic_addr
> segment
->p_offset
)
4819 warn (_("the .dynamic section is not the first section"
4820 " in the dynamic segment.\n"));
4825 if (fseek (file
, archive_file_offset
+ (long) segment
->p_offset
,
4827 error (_("Unable to find program interpreter name\n"));
4831 int ret
= snprintf (fmt
, sizeof (fmt
), "%%%ds", PATH_MAX
- 1);
4833 if (ret
>= (int) sizeof (fmt
) || ret
< 0)
4834 error (_("Internal error: failed to create format string to display program interpreter\n"));
4836 program_interpreter
[0] = 0;
4837 if (fscanf (file
, fmt
, program_interpreter
) <= 0)
4838 error (_("Unable to read program interpreter name\n"));
4841 printf (_(" [Requesting program interpreter: %s]\n"),
4842 program_interpreter
);
4848 if (do_segments
&& section_headers
!= NULL
&& string_table
!= NULL
)
4850 printf (_("\n Section to Segment mapping:\n"));
4851 printf (_(" Segment Sections...\n"));
4853 for (i
= 0; i
< elf_header
.e_phnum
; i
++)
4856 Elf_Internal_Shdr
* section
;
4858 segment
= program_headers
+ i
;
4859 section
= section_headers
+ 1;
4861 printf (" %2.2d ", i
);
4863 for (j
= 1; j
< elf_header
.e_shnum
; j
++, section
++)
4865 if (!ELF_TBSS_SPECIAL (section
, segment
)
4866 && ELF_SECTION_IN_SEGMENT_STRICT (section
, segment
))
4867 printf ("%s ", printable_section_name (section
));
4878 /* Find the file offset corresponding to VMA by using the program headers. */
4881 offset_from_vma (FILE * file
, bfd_vma vma
, bfd_size_type size
)
4883 Elf_Internal_Phdr
* seg
;
4885 if (! get_program_headers (file
))
4887 warn (_("Cannot interpret virtual addresses without program headers.\n"));
4891 for (seg
= program_headers
;
4892 seg
< program_headers
+ elf_header
.e_phnum
;
4895 if (seg
->p_type
!= PT_LOAD
)
4898 if (vma
>= (seg
->p_vaddr
& -seg
->p_align
)
4899 && vma
+ size
<= seg
->p_vaddr
+ seg
->p_filesz
)
4900 return vma
- seg
->p_vaddr
+ seg
->p_offset
;
4903 warn (_("Virtual address 0x%lx not located in any PT_LOAD segment.\n"),
4904 (unsigned long) vma
);
4909 /* Allocate memory and load the sections headers into the global pointer
4910 SECTION_HEADERS. If PROBE is true, this is just a probe and we do not
4911 generate any error messages if the load fails. */
4914 get_32bit_section_headers (FILE * file
, bfd_boolean probe
)
4916 Elf32_External_Shdr
* shdrs
;
4917 Elf_Internal_Shdr
* internal
;
4919 unsigned int size
= elf_header
.e_shentsize
;
4920 unsigned int num
= probe
? 1 : elf_header
.e_shnum
;
4922 /* PR binutils/17531: Cope with unexpected section header sizes. */
4923 if (size
== 0 || num
== 0)
4925 if (size
< sizeof * shdrs
)
4928 error (_("The e_shentsize field in the ELF header is less than the size of an ELF section header\n"));
4931 if (!probe
&& size
> sizeof * shdrs
)
4932 warn (_("The e_shentsize field in the ELF header is larger than the size of an ELF section header\n"));
4934 shdrs
= (Elf32_External_Shdr
*) get_data (NULL
, file
, elf_header
.e_shoff
,
4936 probe
? NULL
: _("section headers"));
4940 if (section_headers
!= NULL
)
4941 free (section_headers
);
4942 section_headers
= (Elf_Internal_Shdr
*) cmalloc (num
,
4943 sizeof (Elf_Internal_Shdr
));
4944 if (section_headers
== NULL
)
4947 error (_("Out of memory reading %u section headers\n"), num
);
4951 for (i
= 0, internal
= section_headers
;
4955 internal
->sh_name
= BYTE_GET (shdrs
[i
].sh_name
);
4956 internal
->sh_type
= BYTE_GET (shdrs
[i
].sh_type
);
4957 internal
->sh_flags
= BYTE_GET (shdrs
[i
].sh_flags
);
4958 internal
->sh_addr
= BYTE_GET (shdrs
[i
].sh_addr
);
4959 internal
->sh_offset
= BYTE_GET (shdrs
[i
].sh_offset
);
4960 internal
->sh_size
= BYTE_GET (shdrs
[i
].sh_size
);
4961 internal
->sh_link
= BYTE_GET (shdrs
[i
].sh_link
);
4962 internal
->sh_info
= BYTE_GET (shdrs
[i
].sh_info
);
4963 internal
->sh_addralign
= BYTE_GET (shdrs
[i
].sh_addralign
);
4964 internal
->sh_entsize
= BYTE_GET (shdrs
[i
].sh_entsize
);
4972 get_64bit_section_headers (FILE * file
, bfd_boolean probe
)
4974 Elf64_External_Shdr
* shdrs
;
4975 Elf_Internal_Shdr
* internal
;
4977 unsigned int size
= elf_header
.e_shentsize
;
4978 unsigned int num
= probe
? 1 : elf_header
.e_shnum
;
4980 /* PR binutils/17531: Cope with unexpected section header sizes. */
4981 if (size
== 0 || num
== 0)
4983 if (size
< sizeof * shdrs
)
4986 error (_("The e_shentsize field in the ELF header is less than the size of an ELF section header\n"));
4989 if (! probe
&& size
> sizeof * shdrs
)
4990 warn (_("The e_shentsize field in the ELF header is larger than the size of an ELF section header\n"));
4992 shdrs
= (Elf64_External_Shdr
*) get_data (NULL
, file
, elf_header
.e_shoff
,
4994 probe
? NULL
: _("section headers"));
4998 if (section_headers
!= NULL
)
4999 free (section_headers
);
5000 section_headers
= (Elf_Internal_Shdr
*) cmalloc (num
,
5001 sizeof (Elf_Internal_Shdr
));
5002 if (section_headers
== NULL
)
5005 error (_("Out of memory reading %u section headers\n"), num
);
5009 for (i
= 0, internal
= section_headers
;
5013 internal
->sh_name
= BYTE_GET (shdrs
[i
].sh_name
);
5014 internal
->sh_type
= BYTE_GET (shdrs
[i
].sh_type
);
5015 internal
->sh_flags
= BYTE_GET (shdrs
[i
].sh_flags
);
5016 internal
->sh_addr
= BYTE_GET (shdrs
[i
].sh_addr
);
5017 internal
->sh_size
= BYTE_GET (shdrs
[i
].sh_size
);
5018 internal
->sh_entsize
= BYTE_GET (shdrs
[i
].sh_entsize
);
5019 internal
->sh_link
= BYTE_GET (shdrs
[i
].sh_link
);
5020 internal
->sh_info
= BYTE_GET (shdrs
[i
].sh_info
);
5021 internal
->sh_offset
= BYTE_GET (shdrs
[i
].sh_offset
);
5022 internal
->sh_addralign
= BYTE_GET (shdrs
[i
].sh_addralign
);
5029 static Elf_Internal_Sym
*
5030 get_32bit_elf_symbols (FILE * file
,
5031 Elf_Internal_Shdr
* section
,
5032 unsigned long * num_syms_return
)
5034 unsigned long number
= 0;
5035 Elf32_External_Sym
* esyms
= NULL
;
5036 Elf_External_Sym_Shndx
* shndx
= NULL
;
5037 Elf_Internal_Sym
* isyms
= NULL
;
5038 Elf_Internal_Sym
* psym
;
5041 if (section
->sh_size
== 0)
5043 if (num_syms_return
!= NULL
)
5044 * num_syms_return
= 0;
5048 /* Run some sanity checks first. */
5049 if (section
->sh_entsize
== 0 || section
->sh_entsize
> section
->sh_size
)
5051 error (_("Section %s has an invalid sh_entsize of 0x%lx\n"),
5052 printable_section_name (section
), (unsigned long) section
->sh_entsize
);
5056 if (section
->sh_size
> current_file_size
)
5058 error (_("Section %s has an invalid sh_size of 0x%lx\n"),
5059 printable_section_name (section
), (unsigned long) section
->sh_size
);
5063 number
= section
->sh_size
/ section
->sh_entsize
;
5065 if (number
* sizeof (Elf32_External_Sym
) > section
->sh_size
+ 1)
5067 error (_("Size (0x%lx) of section %s is not a multiple of its sh_entsize (0x%lx)\n"),
5068 (unsigned long) section
->sh_size
,
5069 printable_section_name (section
),
5070 (unsigned long) section
->sh_entsize
);
5074 esyms
= (Elf32_External_Sym
*) get_data (NULL
, file
, section
->sh_offset
, 1,
5075 section
->sh_size
, _("symbols"));
5080 elf_section_list
* entry
;
5083 for (entry
= symtab_shndx_list
; entry
!= NULL
; entry
= entry
->next
)
5084 if (entry
->hdr
->sh_link
== (unsigned long) (section
- section_headers
))
5086 shndx
= (Elf_External_Sym_Shndx
*) get_data (NULL
, file
,
5087 entry
->hdr
->sh_offset
,
5088 1, entry
->hdr
->sh_size
,
5089 _("symbol table section indicies"));
5092 /* PR17531: file: heap-buffer-overflow */
5093 else if (entry
->hdr
->sh_size
/ sizeof (Elf_External_Sym_Shndx
) < number
)
5095 error (_("Index section %s has an sh_size of 0x%lx - expected 0x%lx\n"),
5096 printable_section_name (entry
->hdr
),
5097 (unsigned long) entry
->hdr
->sh_size
,
5098 (unsigned long) section
->sh_size
);
5104 isyms
= (Elf_Internal_Sym
*) cmalloc (number
, sizeof (Elf_Internal_Sym
));
5108 error (_("Out of memory reading %lu symbols\n"),
5109 (unsigned long) number
);
5113 for (j
= 0, psym
= isyms
; j
< number
; j
++, psym
++)
5115 psym
->st_name
= BYTE_GET (esyms
[j
].st_name
);
5116 psym
->st_value
= BYTE_GET (esyms
[j
].st_value
);
5117 psym
->st_size
= BYTE_GET (esyms
[j
].st_size
);
5118 psym
->st_shndx
= BYTE_GET (esyms
[j
].st_shndx
);
5119 if (psym
->st_shndx
== (SHN_XINDEX
& 0xffff) && shndx
!= NULL
)
5121 = byte_get ((unsigned char *) &shndx
[j
], sizeof (shndx
[j
]));
5122 else if (psym
->st_shndx
>= (SHN_LORESERVE
& 0xffff))
5123 psym
->st_shndx
+= SHN_LORESERVE
- (SHN_LORESERVE
& 0xffff);
5124 psym
->st_info
= BYTE_GET (esyms
[j
].st_info
);
5125 psym
->st_other
= BYTE_GET (esyms
[j
].st_other
);
5134 if (num_syms_return
!= NULL
)
5135 * num_syms_return
= isyms
== NULL
? 0 : number
;
5140 static Elf_Internal_Sym
*
5141 get_64bit_elf_symbols (FILE * file
,
5142 Elf_Internal_Shdr
* section
,
5143 unsigned long * num_syms_return
)
5145 unsigned long number
= 0;
5146 Elf64_External_Sym
* esyms
= NULL
;
5147 Elf_External_Sym_Shndx
* shndx
= NULL
;
5148 Elf_Internal_Sym
* isyms
= NULL
;
5149 Elf_Internal_Sym
* psym
;
5152 if (section
->sh_size
== 0)
5154 if (num_syms_return
!= NULL
)
5155 * num_syms_return
= 0;
5159 /* Run some sanity checks first. */
5160 if (section
->sh_entsize
== 0 || section
->sh_entsize
> section
->sh_size
)
5162 error (_("Section %s has an invalid sh_entsize of 0x%lx\n"),
5163 printable_section_name (section
),
5164 (unsigned long) section
->sh_entsize
);
5168 if (section
->sh_size
> current_file_size
)
5170 error (_("Section %s has an invalid sh_size of 0x%lx\n"),
5171 printable_section_name (section
),
5172 (unsigned long) section
->sh_size
);
5176 number
= section
->sh_size
/ section
->sh_entsize
;
5178 if (number
* sizeof (Elf64_External_Sym
) > section
->sh_size
+ 1)
5180 error (_("Size (0x%lx) of section %s is not a multiple of its sh_entsize (0x%lx)\n"),
5181 (unsigned long) section
->sh_size
,
5182 printable_section_name (section
),
5183 (unsigned long) section
->sh_entsize
);
5187 esyms
= (Elf64_External_Sym
*) get_data (NULL
, file
, section
->sh_offset
, 1,
5188 section
->sh_size
, _("symbols"));
5193 elf_section_list
* entry
;
5196 for (entry
= symtab_shndx_list
; entry
!= NULL
; entry
= entry
->next
)
5197 if (entry
->hdr
->sh_link
== (unsigned long) (section
- section_headers
))
5199 shndx
= (Elf_External_Sym_Shndx
*) get_data (NULL
, file
,
5200 entry
->hdr
->sh_offset
,
5201 1, entry
->hdr
->sh_size
,
5202 _("symbol table section indicies"));
5205 /* PR17531: file: heap-buffer-overflow */
5206 else if (entry
->hdr
->sh_size
/ sizeof (Elf_External_Sym_Shndx
) < number
)
5208 error (_("Index section %s has an sh_size of 0x%lx - expected 0x%lx\n"),
5209 printable_section_name (entry
->hdr
),
5210 (unsigned long) entry
->hdr
->sh_size
,
5211 (unsigned long) section
->sh_size
);
5217 isyms
= (Elf_Internal_Sym
*) cmalloc (number
, sizeof (Elf_Internal_Sym
));
5221 error (_("Out of memory reading %lu symbols\n"),
5222 (unsigned long) number
);
5226 for (j
= 0, psym
= isyms
; j
< number
; j
++, psym
++)
5228 psym
->st_name
= BYTE_GET (esyms
[j
].st_name
);
5229 psym
->st_info
= BYTE_GET (esyms
[j
].st_info
);
5230 psym
->st_other
= BYTE_GET (esyms
[j
].st_other
);
5231 psym
->st_shndx
= BYTE_GET (esyms
[j
].st_shndx
);
5233 if (psym
->st_shndx
== (SHN_XINDEX
& 0xffff) && shndx
!= NULL
)
5235 = byte_get ((unsigned char *) &shndx
[j
], sizeof (shndx
[j
]));
5236 else if (psym
->st_shndx
>= (SHN_LORESERVE
& 0xffff))
5237 psym
->st_shndx
+= SHN_LORESERVE
- (SHN_LORESERVE
& 0xffff);
5239 psym
->st_value
= BYTE_GET (esyms
[j
].st_value
);
5240 psym
->st_size
= BYTE_GET (esyms
[j
].st_size
);
5249 if (num_syms_return
!= NULL
)
5250 * num_syms_return
= isyms
== NULL
? 0 : number
;
5256 get_elf_section_flags (bfd_vma sh_flags
)
5258 static char buff
[1024];
5260 int field_size
= is_32bit_elf
? 8 : 16;
5262 int size
= sizeof (buff
) - (field_size
+ 4 + 1);
5263 bfd_vma os_flags
= 0;
5264 bfd_vma proc_flags
= 0;
5265 bfd_vma unknown_flags
= 0;
5273 /* 0 */ { STRING_COMMA_LEN ("WRITE") },
5274 /* 1 */ { STRING_COMMA_LEN ("ALLOC") },
5275 /* 2 */ { STRING_COMMA_LEN ("EXEC") },
5276 /* 3 */ { STRING_COMMA_LEN ("MERGE") },
5277 /* 4 */ { STRING_COMMA_LEN ("STRINGS") },
5278 /* 5 */ { STRING_COMMA_LEN ("INFO LINK") },
5279 /* 6 */ { STRING_COMMA_LEN ("LINK ORDER") },
5280 /* 7 */ { STRING_COMMA_LEN ("OS NONCONF") },
5281 /* 8 */ { STRING_COMMA_LEN ("GROUP") },
5282 /* 9 */ { STRING_COMMA_LEN ("TLS") },
5283 /* IA-64 specific. */
5284 /* 10 */ { STRING_COMMA_LEN ("SHORT") },
5285 /* 11 */ { STRING_COMMA_LEN ("NORECOV") },
5286 /* IA-64 OpenVMS specific. */
5287 /* 12 */ { STRING_COMMA_LEN ("VMS_GLOBAL") },
5288 /* 13 */ { STRING_COMMA_LEN ("VMS_OVERLAID") },
5289 /* 14 */ { STRING_COMMA_LEN ("VMS_SHARED") },
5290 /* 15 */ { STRING_COMMA_LEN ("VMS_VECTOR") },
5291 /* 16 */ { STRING_COMMA_LEN ("VMS_ALLOC_64BIT") },
5292 /* 17 */ { STRING_COMMA_LEN ("VMS_PROTECTED") },
5294 /* 18 */ { STRING_COMMA_LEN ("EXCLUDE") },
5295 /* SPARC specific. */
5296 /* 19 */ { STRING_COMMA_LEN ("ORDERED") },
5297 /* 20 */ { STRING_COMMA_LEN ("COMPRESSED") },
5299 /* 21 */ { STRING_COMMA_LEN ("ENTRYSECT") },
5300 /* 22 */ { STRING_COMMA_LEN ("ARM_NOREAD") },
5301 /* 23 */ { STRING_COMMA_LEN ("COMDEF") }
5304 if (do_section_details
)
5306 sprintf (buff
, "[%*.*lx]: ",
5307 field_size
, field_size
, (unsigned long) sh_flags
);
5308 p
+= field_size
+ 4;
5315 flag
= sh_flags
& - sh_flags
;
5318 if (do_section_details
)
5322 case SHF_WRITE
: sindex
= 0; break;
5323 case SHF_ALLOC
: sindex
= 1; break;
5324 case SHF_EXECINSTR
: sindex
= 2; break;
5325 case SHF_MERGE
: sindex
= 3; break;
5326 case SHF_STRINGS
: sindex
= 4; break;
5327 case SHF_INFO_LINK
: sindex
= 5; break;
5328 case SHF_LINK_ORDER
: sindex
= 6; break;
5329 case SHF_OS_NONCONFORMING
: sindex
= 7; break;
5330 case SHF_GROUP
: sindex
= 8; break;
5331 case SHF_TLS
: sindex
= 9; break;
5332 case SHF_EXCLUDE
: sindex
= 18; break;
5333 case SHF_COMPRESSED
: sindex
= 20; break;
5337 switch (elf_header
.e_machine
)
5340 if (flag
== SHF_IA_64_SHORT
)
5342 else if (flag
== SHF_IA_64_NORECOV
)
5345 else if (elf_header
.e_ident
[EI_OSABI
] == ELFOSABI_OPENVMS
)
5348 case SHF_IA_64_VMS_GLOBAL
: sindex
= 12; break;
5349 case SHF_IA_64_VMS_OVERLAID
: sindex
= 13; break;
5350 case SHF_IA_64_VMS_SHARED
: sindex
= 14; break;
5351 case SHF_IA_64_VMS_VECTOR
: sindex
= 15; break;
5352 case SHF_IA_64_VMS_ALLOC_64BIT
: sindex
= 16; break;
5353 case SHF_IA_64_VMS_PROTECTED
: sindex
= 17; break;
5364 case EM_OLD_SPARCV9
:
5365 case EM_SPARC32PLUS
:
5368 if (flag
== SHF_ORDERED
)
5375 case SHF_ENTRYSECT
: sindex
= 21; break;
5376 case SHF_ARM_NOREAD
: sindex
= 22; break;
5377 case SHF_COMDEF
: sindex
= 23; break;
5389 if (p
!= buff
+ field_size
+ 4)
5391 if (size
< (10 + 2))
5393 warn (_("Internal error: not enough buffer room for section flag info"));
5394 return _("<unknown>");
5401 size
-= flags
[sindex
].len
;
5402 p
= stpcpy (p
, flags
[sindex
].str
);
5404 else if (flag
& SHF_MASKOS
)
5406 else if (flag
& SHF_MASKPROC
)
5409 unknown_flags
|= flag
;
5415 case SHF_WRITE
: *p
= 'W'; break;
5416 case SHF_ALLOC
: *p
= 'A'; break;
5417 case SHF_EXECINSTR
: *p
= 'X'; break;
5418 case SHF_MERGE
: *p
= 'M'; break;
5419 case SHF_STRINGS
: *p
= 'S'; break;
5420 case SHF_INFO_LINK
: *p
= 'I'; break;
5421 case SHF_LINK_ORDER
: *p
= 'L'; break;
5422 case SHF_OS_NONCONFORMING
: *p
= 'O'; break;
5423 case SHF_GROUP
: *p
= 'G'; break;
5424 case SHF_TLS
: *p
= 'T'; break;
5425 case SHF_EXCLUDE
: *p
= 'E'; break;
5426 case SHF_COMPRESSED
: *p
= 'C'; break;
5429 if ((elf_header
.e_machine
== EM_X86_64
5430 || elf_header
.e_machine
== EM_L1OM
5431 || elf_header
.e_machine
== EM_K1OM
)
5432 && flag
== SHF_X86_64_LARGE
)
5434 else if (elf_header
.e_machine
== EM_ARM
5435 && flag
== SHF_ARM_NOREAD
)
5437 else if (flag
& SHF_MASKOS
)
5440 sh_flags
&= ~ SHF_MASKOS
;
5442 else if (flag
& SHF_MASKPROC
)
5445 sh_flags
&= ~ SHF_MASKPROC
;
5455 if (do_section_details
)
5459 size
-= 5 + field_size
;
5460 if (p
!= buff
+ field_size
+ 4)
5464 warn (_("Internal error: not enough buffer room for section flag info"));
5465 return _("<unknown>");
5471 sprintf (p
, "OS (%*.*lx)", field_size
, field_size
,
5472 (unsigned long) os_flags
);
5473 p
+= 5 + field_size
;
5477 size
-= 7 + field_size
;
5478 if (p
!= buff
+ field_size
+ 4)
5482 warn (_("Internal error: not enough buffer room for section flag info"));
5483 return _("<unknown>");
5489 sprintf (p
, "PROC (%*.*lx)", field_size
, field_size
,
5490 (unsigned long) proc_flags
);
5491 p
+= 7 + field_size
;
5495 size
-= 10 + field_size
;
5496 if (p
!= buff
+ field_size
+ 4)
5500 warn (_("Internal error: not enough buffer room for section flag info"));
5501 return _("<unknown>");
5507 sprintf (p
, _("UNKNOWN (%*.*lx)"), field_size
, field_size
,
5508 (unsigned long) unknown_flags
);
5509 p
+= 10 + field_size
;
5518 get_compression_header (Elf_Internal_Chdr
*chdr
, unsigned char *buf
)
5522 Elf32_External_Chdr
*echdr
= (Elf32_External_Chdr
*) buf
;
5523 chdr
->ch_type
= BYTE_GET (echdr
->ch_type
);
5524 chdr
->ch_size
= BYTE_GET (echdr
->ch_size
);
5525 chdr
->ch_addralign
= BYTE_GET (echdr
->ch_addralign
);
5526 return sizeof (*echdr
);
5530 Elf64_External_Chdr
*echdr
= (Elf64_External_Chdr
*) buf
;
5531 chdr
->ch_type
= BYTE_GET (echdr
->ch_type
);
5532 chdr
->ch_size
= BYTE_GET (echdr
->ch_size
);
5533 chdr
->ch_addralign
= BYTE_GET (echdr
->ch_addralign
);
5534 return sizeof (*echdr
);
5539 process_section_headers (FILE * file
)
5541 Elf_Internal_Shdr
* section
;
5544 section_headers
= NULL
;
5546 if (elf_header
.e_shnum
== 0)
5548 /* PR binutils/12467. */
5549 if (elf_header
.e_shoff
!= 0)
5550 warn (_("possibly corrupt ELF file header - it has a non-zero"
5551 " section header offset, but no section headers\n"));
5552 else if (do_sections
)
5553 printf (_("\nThere are no sections in this file.\n"));
5558 if (do_sections
&& !do_header
)
5559 printf (_("There are %d section headers, starting at offset 0x%lx:\n"),
5560 elf_header
.e_shnum
, (unsigned long) elf_header
.e_shoff
);
5564 if (! get_32bit_section_headers (file
, FALSE
))
5567 else if (! get_64bit_section_headers (file
, FALSE
))
5570 /* Read in the string table, so that we have names to display. */
5571 if (elf_header
.e_shstrndx
!= SHN_UNDEF
5572 && elf_header
.e_shstrndx
< elf_header
.e_shnum
)
5574 section
= section_headers
+ elf_header
.e_shstrndx
;
5576 if (section
->sh_size
!= 0)
5578 string_table
= (char *) get_data (NULL
, file
, section
->sh_offset
,
5579 1, section
->sh_size
,
5582 string_table_length
= string_table
!= NULL
? section
->sh_size
: 0;
5586 /* Scan the sections for the dynamic symbol table
5587 and dynamic string table and debug sections. */
5588 dynamic_symbols
= NULL
;
5589 dynamic_strings
= NULL
;
5590 dynamic_syminfo
= NULL
;
5591 symtab_shndx_list
= NULL
;
5593 eh_addr_size
= is_32bit_elf
? 4 : 8;
5594 switch (elf_header
.e_machine
)
5597 case EM_MIPS_RS3_LE
:
5598 /* The 64-bit MIPS EABI uses a combination of 32-bit ELF and 64-bit
5599 FDE addresses. However, the ABI also has a semi-official ILP32
5600 variant for which the normal FDE address size rules apply.
5602 GCC 4.0 marks EABI64 objects with a dummy .gcc_compiled_longXX
5603 section, where XX is the size of longs in bits. Unfortunately,
5604 earlier compilers provided no way of distinguishing ILP32 objects
5605 from LP64 objects, so if there's any doubt, we should assume that
5606 the official LP64 form is being used. */
5607 if ((elf_header
.e_flags
& EF_MIPS_ABI
) == E_MIPS_ABI_EABI64
5608 && find_section (".gcc_compiled_long32") == NULL
)
5614 switch (elf_header
.e_flags
& EF_H8_MACH
)
5616 case E_H8_MACH_H8300
:
5617 case E_H8_MACH_H8300HN
:
5618 case E_H8_MACH_H8300SN
:
5619 case E_H8_MACH_H8300SXN
:
5622 case E_H8_MACH_H8300H
:
5623 case E_H8_MACH_H8300S
:
5624 case E_H8_MACH_H8300SX
:
5632 switch (elf_header
.e_flags
& EF_M32C_CPU_MASK
)
5634 case EF_M32C_CPU_M16C
:
5641 #define CHECK_ENTSIZE_VALUES(section, i, size32, size64) \
5644 bfd_size_type expected_entsize = is_32bit_elf ? size32 : size64; \
5645 if (section->sh_entsize != expected_entsize) \
5648 sprintf_vma (buf, section->sh_entsize); \
5649 /* Note: coded this way so that there is a single string for \
5651 error (_("Section %d has invalid sh_entsize of %s\n"), i, buf); \
5652 error (_("(Using the expected size of %u for the rest of this dump)\n"), \
5653 (unsigned) expected_entsize); \
5654 section->sh_entsize = expected_entsize; \
5659 #define CHECK_ENTSIZE(section, i, type) \
5660 CHECK_ENTSIZE_VALUES (section, i, sizeof (Elf32_External_##type), \
5661 sizeof (Elf64_External_##type))
5663 for (i
= 0, section
= section_headers
;
5664 i
< elf_header
.e_shnum
;
5667 char * name
= SECTION_NAME (section
);
5669 if (section
->sh_type
== SHT_DYNSYM
)
5671 if (dynamic_symbols
!= NULL
)
5673 error (_("File contains multiple dynamic symbol tables\n"));
5677 CHECK_ENTSIZE (section
, i
, Sym
);
5678 dynamic_symbols
= GET_ELF_SYMBOLS (file
, section
, & num_dynamic_syms
);
5680 else if (section
->sh_type
== SHT_STRTAB
5681 && streq (name
, ".dynstr"))
5683 if (dynamic_strings
!= NULL
)
5685 error (_("File contains multiple dynamic string tables\n"));
5689 dynamic_strings
= (char *) get_data (NULL
, file
, section
->sh_offset
,
5690 1, section
->sh_size
,
5691 _("dynamic strings"));
5692 dynamic_strings_length
= dynamic_strings
== NULL
? 0 : section
->sh_size
;
5694 else if (section
->sh_type
== SHT_SYMTAB_SHNDX
)
5696 elf_section_list
* entry
= xmalloc (sizeof * entry
);
5697 entry
->hdr
= section
;
5698 entry
->next
= symtab_shndx_list
;
5699 symtab_shndx_list
= entry
;
5701 else if (section
->sh_type
== SHT_SYMTAB
)
5702 CHECK_ENTSIZE (section
, i
, Sym
);
5703 else if (section
->sh_type
== SHT_GROUP
)
5704 CHECK_ENTSIZE_VALUES (section
, i
, GRP_ENTRY_SIZE
, GRP_ENTRY_SIZE
);
5705 else if (section
->sh_type
== SHT_REL
)
5706 CHECK_ENTSIZE (section
, i
, Rel
);
5707 else if (section
->sh_type
== SHT_RELA
)
5708 CHECK_ENTSIZE (section
, i
, Rela
);
5709 else if ((do_debugging
|| do_debug_info
|| do_debug_abbrevs
5710 || do_debug_lines
|| do_debug_pubnames
|| do_debug_pubtypes
5711 || do_debug_aranges
|| do_debug_frames
|| do_debug_macinfo
5712 || do_debug_str
|| do_debug_loc
|| do_debug_ranges
5713 || do_debug_addr
|| do_debug_cu_index
)
5714 && (const_strneq (name
, ".debug_")
5715 || const_strneq (name
, ".zdebug_")))
5718 name
+= sizeof (".zdebug_") - 1;
5720 name
+= sizeof (".debug_") - 1;
5723 || (do_debug_info
&& const_strneq (name
, "info"))
5724 || (do_debug_info
&& const_strneq (name
, "types"))
5725 || (do_debug_abbrevs
&& const_strneq (name
, "abbrev"))
5726 || (do_debug_lines
&& strcmp (name
, "line") == 0)
5727 || (do_debug_lines
&& const_strneq (name
, "line."))
5728 || (do_debug_pubnames
&& const_strneq (name
, "pubnames"))
5729 || (do_debug_pubtypes
&& const_strneq (name
, "pubtypes"))
5730 || (do_debug_pubnames
&& const_strneq (name
, "gnu_pubnames"))
5731 || (do_debug_pubtypes
&& const_strneq (name
, "gnu_pubtypes"))
5732 || (do_debug_aranges
&& const_strneq (name
, "aranges"))
5733 || (do_debug_ranges
&& const_strneq (name
, "ranges"))
5734 || (do_debug_frames
&& const_strneq (name
, "frame"))
5735 || (do_debug_macinfo
&& const_strneq (name
, "macinfo"))
5736 || (do_debug_macinfo
&& const_strneq (name
, "macro"))
5737 || (do_debug_str
&& const_strneq (name
, "str"))
5738 || (do_debug_loc
&& const_strneq (name
, "loc"))
5739 || (do_debug_addr
&& const_strneq (name
, "addr"))
5740 || (do_debug_cu_index
&& const_strneq (name
, "cu_index"))
5741 || (do_debug_cu_index
&& const_strneq (name
, "tu_index"))
5743 request_dump_bynumber (i
, DEBUG_DUMP
);
5745 /* Linkonce section to be combined with .debug_info at link time. */
5746 else if ((do_debugging
|| do_debug_info
)
5747 && const_strneq (name
, ".gnu.linkonce.wi."))
5748 request_dump_bynumber (i
, DEBUG_DUMP
);
5749 else if (do_debug_frames
&& streq (name
, ".eh_frame"))
5750 request_dump_bynumber (i
, DEBUG_DUMP
);
5751 else if (do_gdb_index
&& streq (name
, ".gdb_index"))
5752 request_dump_bynumber (i
, DEBUG_DUMP
);
5753 /* Trace sections for Itanium VMS. */
5754 else if ((do_debugging
|| do_trace_info
|| do_trace_abbrevs
5755 || do_trace_aranges
)
5756 && const_strneq (name
, ".trace_"))
5758 name
+= sizeof (".trace_") - 1;
5761 || (do_trace_info
&& streq (name
, "info"))
5762 || (do_trace_abbrevs
&& streq (name
, "abbrev"))
5763 || (do_trace_aranges
&& streq (name
, "aranges"))
5765 request_dump_bynumber (i
, DEBUG_DUMP
);
5772 if (elf_header
.e_shnum
> 1)
5773 printf (_("\nSection Headers:\n"));
5775 printf (_("\nSection Header:\n"));
5779 if (do_section_details
)
5781 printf (_(" [Nr] Name\n"));
5782 printf (_(" Type Addr Off Size ES Lk Inf Al\n"));
5786 (_(" [Nr] Name Type Addr Off Size ES Flg Lk Inf Al\n"));
5790 if (do_section_details
)
5792 printf (_(" [Nr] Name\n"));
5793 printf (_(" Type Address Off Size ES Lk Inf Al\n"));
5797 (_(" [Nr] Name Type Address Off Size ES Flg Lk Inf Al\n"));
5801 if (do_section_details
)
5803 printf (_(" [Nr] Name\n"));
5804 printf (_(" Type Address Offset Link\n"));
5805 printf (_(" Size EntSize Info Align\n"));
5809 printf (_(" [Nr] Name Type Address Offset\n"));
5810 printf (_(" Size EntSize Flags Link Info Align\n"));
5814 if (do_section_details
)
5815 printf (_(" Flags\n"));
5817 for (i
= 0, section
= section_headers
;
5818 i
< elf_header
.e_shnum
;
5821 printf (" [%2u] ", i
);
5822 if (do_section_details
)
5823 printf ("%s\n ", printable_section_name (section
));
5825 print_symbol (-17, SECTION_NAME (section
));
5827 printf (do_wide
? " %-15s " : " %-15.15s ",
5828 get_section_type_name (section
->sh_type
));
5832 const char * link_too_big
= NULL
;
5834 print_vma (section
->sh_addr
, LONG_HEX
);
5836 printf ( " %6.6lx %6.6lx %2.2lx",
5837 (unsigned long) section
->sh_offset
,
5838 (unsigned long) section
->sh_size
,
5839 (unsigned long) section
->sh_entsize
);
5841 if (do_section_details
)
5842 fputs (" ", stdout
);
5844 printf (" %3s ", get_elf_section_flags (section
->sh_flags
));
5846 if (section
->sh_link
>= elf_header
.e_shnum
)
5849 /* The sh_link value is out of range. Normally this indicates
5850 an error but it can have special values in Solaris binaries. */
5851 switch (elf_header
.e_machine
)
5858 case EM_OLD_SPARCV9
:
5859 case EM_SPARC32PLUS
:
5862 if (section
->sh_link
== (SHN_BEFORE
& 0xffff))
5863 link_too_big
= "BEFORE";
5864 else if (section
->sh_link
== (SHN_AFTER
& 0xffff))
5865 link_too_big
= "AFTER";
5872 if (do_section_details
)
5874 if (link_too_big
!= NULL
&& * link_too_big
)
5875 printf ("<%s> ", link_too_big
);
5877 printf ("%2u ", section
->sh_link
);
5878 printf ("%3u %2lu\n", section
->sh_info
,
5879 (unsigned long) section
->sh_addralign
);
5882 printf ("%2u %3u %2lu\n",
5885 (unsigned long) section
->sh_addralign
);
5887 if (link_too_big
&& ! * link_too_big
)
5888 warn (_("section %u: sh_link value of %u is larger than the number of sections\n"),
5889 i
, section
->sh_link
);
5893 print_vma (section
->sh_addr
, LONG_HEX
);
5895 if ((long) section
->sh_offset
== section
->sh_offset
)
5896 printf (" %6.6lx", (unsigned long) section
->sh_offset
);
5900 print_vma (section
->sh_offset
, LONG_HEX
);
5903 if ((unsigned long) section
->sh_size
== section
->sh_size
)
5904 printf (" %6.6lx", (unsigned long) section
->sh_size
);
5908 print_vma (section
->sh_size
, LONG_HEX
);
5911 if ((unsigned long) section
->sh_entsize
== section
->sh_entsize
)
5912 printf (" %2.2lx", (unsigned long) section
->sh_entsize
);
5916 print_vma (section
->sh_entsize
, LONG_HEX
);
5919 if (do_section_details
)
5920 fputs (" ", stdout
);
5922 printf (" %3s ", get_elf_section_flags (section
->sh_flags
));
5924 printf ("%2u %3u ", section
->sh_link
, section
->sh_info
);
5926 if ((unsigned long) section
->sh_addralign
== section
->sh_addralign
)
5927 printf ("%2lu\n", (unsigned long) section
->sh_addralign
);
5930 print_vma (section
->sh_addralign
, DEC
);
5934 else if (do_section_details
)
5936 printf (" %-15.15s ",
5937 get_section_type_name (section
->sh_type
));
5938 print_vma (section
->sh_addr
, LONG_HEX
);
5939 if ((long) section
->sh_offset
== section
->sh_offset
)
5940 printf (" %16.16lx", (unsigned long) section
->sh_offset
);
5944 print_vma (section
->sh_offset
, LONG_HEX
);
5946 printf (" %u\n ", section
->sh_link
);
5947 print_vma (section
->sh_size
, LONG_HEX
);
5949 print_vma (section
->sh_entsize
, LONG_HEX
);
5951 printf (" %-16u %lu\n",
5953 (unsigned long) section
->sh_addralign
);
5958 print_vma (section
->sh_addr
, LONG_HEX
);
5959 if ((long) section
->sh_offset
== section
->sh_offset
)
5960 printf (" %8.8lx", (unsigned long) section
->sh_offset
);
5964 print_vma (section
->sh_offset
, LONG_HEX
);
5967 print_vma (section
->sh_size
, LONG_HEX
);
5969 print_vma (section
->sh_entsize
, LONG_HEX
);
5971 printf (" %3s ", get_elf_section_flags (section
->sh_flags
));
5973 printf (" %2u %3u %lu\n",
5976 (unsigned long) section
->sh_addralign
);
5979 if (do_section_details
)
5981 printf (" %s\n", get_elf_section_flags (section
->sh_flags
));
5982 if ((section
->sh_flags
& SHF_COMPRESSED
) != 0)
5984 /* Minimum section size is 12 bytes for 32-bit compression
5985 header + 12 bytes for compressed data header. */
5986 unsigned char buf
[24];
5987 assert (sizeof (buf
) >= sizeof (Elf64_External_Chdr
));
5988 if (get_data (&buf
, (FILE *) file
, section
->sh_offset
, 1,
5989 sizeof (buf
), _("compression header")))
5991 Elf_Internal_Chdr chdr
;
5992 get_compression_header (&chdr
, buf
);
5993 if (chdr
.ch_type
== ELFCOMPRESS_ZLIB
)
5996 printf (_(" [<unknown>: 0x%x], "),
5998 print_vma (chdr
.ch_size
, LONG_HEX
);
5999 printf (", %lu\n", (unsigned long) chdr
.ch_addralign
);
6005 if (!do_section_details
)
6007 /* The ordering of the letters shown here matches the ordering of the
6008 corresponding SHF_xxx values, and hence the order in which these
6009 letters will be displayed to the user. */
6010 printf (_("Key to Flags:\n\
6011 W (write), A (alloc), X (execute), M (merge), S (strings), I (info),\n\
6012 L (link order), O (extra OS processing required), G (group), T (TLS),\n\
6013 C (compressed), x (unknown), o (OS specific), E (exclude),\n"));
6014 if (elf_header
.e_machine
== EM_X86_64
6015 || elf_header
.e_machine
== EM_L1OM
6016 || elf_header
.e_machine
== EM_K1OM
)
6017 printf (_("l (large), "));
6018 else if (elf_header
.e_machine
== EM_ARM
)
6019 printf (_("y (noread), "));
6020 printf ("p (processor specific)\n");
6027 get_group_flags (unsigned int flags
)
6029 static char buff
[32];
6039 snprintf (buff
, sizeof (buff
), _("[<unknown>: 0x%x] "), flags
);
6046 process_section_groups (FILE * file
)
6048 Elf_Internal_Shdr
* section
;
6050 struct group
* group
;
6051 Elf_Internal_Shdr
* symtab_sec
;
6052 Elf_Internal_Shdr
* strtab_sec
;
6053 Elf_Internal_Sym
* symtab
;
6054 unsigned long num_syms
;
6058 /* Don't process section groups unless needed. */
6059 if (!do_unwind
&& !do_section_groups
)
6062 if (elf_header
.e_shnum
== 0)
6064 if (do_section_groups
)
6065 printf (_("\nThere are no sections to group in this file.\n"));
6070 if (section_headers
== NULL
)
6072 error (_("Section headers are not available!\n"));
6073 /* PR 13622: This can happen with a corrupt ELF header. */
6077 section_headers_groups
= (struct group
**) calloc (elf_header
.e_shnum
,
6078 sizeof (struct group
*));
6080 if (section_headers_groups
== NULL
)
6082 error (_("Out of memory reading %u section group headers\n"),
6083 elf_header
.e_shnum
);
6087 /* Scan the sections for the group section. */
6089 for (i
= 0, section
= section_headers
;
6090 i
< elf_header
.e_shnum
;
6092 if (section
->sh_type
== SHT_GROUP
)
6095 if (group_count
== 0)
6097 if (do_section_groups
)
6098 printf (_("\nThere are no section groups in this file.\n"));
6103 section_groups
= (struct group
*) calloc (group_count
, sizeof (struct group
));
6105 if (section_groups
== NULL
)
6107 error (_("Out of memory reading %lu groups\n"),
6108 (unsigned long) group_count
);
6118 for (i
= 0, section
= section_headers
, group
= section_groups
;
6119 i
< elf_header
.e_shnum
;
6122 if (section
->sh_type
== SHT_GROUP
)
6124 const char * name
= printable_section_name (section
);
6125 const char * group_name
;
6126 unsigned char * start
;
6127 unsigned char * indices
;
6128 unsigned int entry
, j
, size
;
6129 Elf_Internal_Shdr
* sec
;
6130 Elf_Internal_Sym
* sym
;
6132 /* Get the symbol table. */
6133 if (section
->sh_link
>= elf_header
.e_shnum
6134 || ((sec
= section_headers
+ section
->sh_link
)->sh_type
6137 error (_("Bad sh_link in group section `%s'\n"), name
);
6141 if (symtab_sec
!= sec
)
6146 symtab
= GET_ELF_SYMBOLS (file
, symtab_sec
, & num_syms
);
6151 error (_("Corrupt header in group section `%s'\n"), name
);
6155 if (section
->sh_info
>= num_syms
)
6157 error (_("Bad sh_info in group section `%s'\n"), name
);
6161 sym
= symtab
+ section
->sh_info
;
6163 if (ELF_ST_TYPE (sym
->st_info
) == STT_SECTION
)
6165 if (sym
->st_shndx
== 0
6166 || sym
->st_shndx
>= elf_header
.e_shnum
)
6168 error (_("Bad sh_info in group section `%s'\n"), name
);
6172 group_name
= SECTION_NAME (section_headers
+ sym
->st_shndx
);
6181 /* Get the string table. */
6182 if (symtab_sec
->sh_link
>= elf_header
.e_shnum
)
6191 != (sec
= section_headers
+ symtab_sec
->sh_link
))
6197 strtab
= (char *) get_data (NULL
, file
, strtab_sec
->sh_offset
,
6198 1, strtab_sec
->sh_size
,
6200 strtab_size
= strtab
!= NULL
? strtab_sec
->sh_size
: 0;
6202 group_name
= sym
->st_name
< strtab_size
6203 ? strtab
+ sym
->st_name
: _("<corrupt>");
6206 /* PR 17531: file: loop. */
6207 if (section
->sh_entsize
> section
->sh_size
)
6209 error (_("Section %s has sh_entsize (0x%lx) which is larger than its size (0x%lx)\n"),
6210 printable_section_name (section
),
6211 (unsigned long) section
->sh_entsize
,
6212 (unsigned long) section
->sh_size
);
6216 start
= (unsigned char *) get_data (NULL
, file
, section
->sh_offset
,
6217 1, section
->sh_size
,
6223 size
= (section
->sh_size
/ section
->sh_entsize
) - 1;
6224 entry
= byte_get (indices
, 4);
6227 if (do_section_groups
)
6229 printf (_("\n%sgroup section [%5u] `%s' [%s] contains %u sections:\n"),
6230 get_group_flags (entry
), i
, name
, group_name
, size
);
6232 printf (_(" [Index] Name\n"));
6235 group
->group_index
= i
;
6237 for (j
= 0; j
< size
; j
++)
6239 struct group_list
* g
;
6241 entry
= byte_get (indices
, 4);
6244 if (entry
>= elf_header
.e_shnum
)
6246 static unsigned num_group_errors
= 0;
6248 if (num_group_errors
++ < 10)
6250 error (_("section [%5u] in group section [%5u] > maximum section [%5u]\n"),
6251 entry
, i
, elf_header
.e_shnum
- 1);
6252 if (num_group_errors
== 10)
6253 warn (_("Futher error messages about overlarge group section indicies suppressed\n"));
6258 if (section_headers_groups
[entry
] != NULL
)
6262 static unsigned num_errs
= 0;
6264 if (num_errs
++ < 10)
6266 error (_("section [%5u] in group section [%5u] already in group section [%5u]\n"),
6268 section_headers_groups
[entry
]->group_index
);
6270 warn (_("Further error messages about already contained group sections suppressed\n"));
6276 /* Intel C/C++ compiler may put section 0 in a
6277 section group. We just warn it the first time
6278 and ignore it afterwards. */
6279 static int warned
= 0;
6282 error (_("section 0 in group section [%5u]\n"),
6283 section_headers_groups
[entry
]->group_index
);
6289 section_headers_groups
[entry
] = group
;
6291 if (do_section_groups
)
6293 sec
= section_headers
+ entry
;
6294 printf (" [%5u] %s\n", entry
, printable_section_name (sec
));
6297 g
= (struct group_list
*) xmalloc (sizeof (struct group_list
));
6298 g
->section_index
= entry
;
6299 g
->next
= group
->root
;
6317 /* Data used to display dynamic fixups. */
6319 struct ia64_vms_dynfixup
6321 bfd_vma needed_ident
; /* Library ident number. */
6322 bfd_vma needed
; /* Index in the dstrtab of the library name. */
6323 bfd_vma fixup_needed
; /* Index of the library. */
6324 bfd_vma fixup_rela_cnt
; /* Number of fixups. */
6325 bfd_vma fixup_rela_off
; /* Fixups offset in the dynamic segment. */
6328 /* Data used to display dynamic relocations. */
6330 struct ia64_vms_dynimgrela
6332 bfd_vma img_rela_cnt
; /* Number of relocations. */
6333 bfd_vma img_rela_off
; /* Reloc offset in the dynamic segment. */
6336 /* Display IA-64 OpenVMS dynamic fixups (used to dynamically link a shared
6340 dump_ia64_vms_dynamic_fixups (FILE *file
, struct ia64_vms_dynfixup
*fixup
,
6341 const char *strtab
, unsigned int strtab_sz
)
6343 Elf64_External_VMS_IMAGE_FIXUP
*imfs
;
6345 const char *lib_name
;
6347 imfs
= get_data (NULL
, file
, dynamic_addr
+ fixup
->fixup_rela_off
,
6348 1, fixup
->fixup_rela_cnt
* sizeof (*imfs
),
6349 _("dynamic section image fixups"));
6353 if (fixup
->needed
< strtab_sz
)
6354 lib_name
= strtab
+ fixup
->needed
;
6357 warn ("corrupt library name index of 0x%lx found in dynamic entry",
6358 (unsigned long) fixup
->needed
);
6361 printf (_("\nImage fixups for needed library #%d: %s - ident: %lx\n"),
6362 (int) fixup
->fixup_needed
, lib_name
, (long) fixup
->needed_ident
);
6364 (_("Seg Offset Type SymVec DataType\n"));
6366 for (i
= 0; i
< (long) fixup
->fixup_rela_cnt
; i
++)
6371 printf ("%3u ", (unsigned) BYTE_GET (imfs
[i
].fixup_seg
));
6372 printf_vma ((bfd_vma
) BYTE_GET (imfs
[i
].fixup_offset
));
6373 type
= BYTE_GET (imfs
[i
].type
);
6374 rtype
= elf_ia64_reloc_type (type
);
6376 printf (" 0x%08x ", type
);
6378 printf (" %-32s ", rtype
);
6379 printf ("%6u ", (unsigned) BYTE_GET (imfs
[i
].symvec_index
));
6380 printf ("0x%08x\n", (unsigned) BYTE_GET (imfs
[i
].data_type
));
6386 /* Display IA-64 OpenVMS dynamic relocations (used to relocate an image). */
6389 dump_ia64_vms_dynamic_relocs (FILE *file
, struct ia64_vms_dynimgrela
*imgrela
)
6391 Elf64_External_VMS_IMAGE_RELA
*imrs
;
6394 imrs
= get_data (NULL
, file
, dynamic_addr
+ imgrela
->img_rela_off
,
6395 1, imgrela
->img_rela_cnt
* sizeof (*imrs
),
6396 _("dynamic section image relocations"));
6400 printf (_("\nImage relocs\n"));
6402 (_("Seg Offset Type Addend Seg Sym Off\n"));
6404 for (i
= 0; i
< (long) imgrela
->img_rela_cnt
; i
++)
6409 printf ("%3u ", (unsigned) BYTE_GET (imrs
[i
].rela_seg
));
6410 printf ("%08" BFD_VMA_FMT
"x ",
6411 (bfd_vma
) BYTE_GET (imrs
[i
].rela_offset
));
6412 type
= BYTE_GET (imrs
[i
].type
);
6413 rtype
= elf_ia64_reloc_type (type
);
6415 printf ("0x%08x ", type
);
6417 printf ("%-31s ", rtype
);
6418 print_vma (BYTE_GET (imrs
[i
].addend
), FULL_HEX
);
6419 printf ("%3u ", (unsigned) BYTE_GET (imrs
[i
].sym_seg
));
6420 printf ("%08" BFD_VMA_FMT
"x\n",
6421 (bfd_vma
) BYTE_GET (imrs
[i
].sym_offset
));
6427 /* Display IA-64 OpenVMS dynamic relocations and fixups. */
6430 process_ia64_vms_dynamic_relocs (FILE *file
)
6432 struct ia64_vms_dynfixup fixup
;
6433 struct ia64_vms_dynimgrela imgrela
;
6434 Elf_Internal_Dyn
*entry
;
6436 bfd_vma strtab_off
= 0;
6437 bfd_vma strtab_sz
= 0;
6438 char *strtab
= NULL
;
6440 memset (&fixup
, 0, sizeof (fixup
));
6441 memset (&imgrela
, 0, sizeof (imgrela
));
6443 /* Note: the order of the entries is specified by the OpenVMS specs. */
6444 for (entry
= dynamic_section
;
6445 entry
< dynamic_section
+ dynamic_nent
;
6448 switch (entry
->d_tag
)
6450 case DT_IA_64_VMS_STRTAB_OFFSET
:
6451 strtab_off
= entry
->d_un
.d_val
;
6454 strtab_sz
= entry
->d_un
.d_val
;
6456 strtab
= get_data (NULL
, file
, dynamic_addr
+ strtab_off
,
6457 1, strtab_sz
, _("dynamic string section"));
6460 case DT_IA_64_VMS_NEEDED_IDENT
:
6461 fixup
.needed_ident
= entry
->d_un
.d_val
;
6464 fixup
.needed
= entry
->d_un
.d_val
;
6466 case DT_IA_64_VMS_FIXUP_NEEDED
:
6467 fixup
.fixup_needed
= entry
->d_un
.d_val
;
6469 case DT_IA_64_VMS_FIXUP_RELA_CNT
:
6470 fixup
.fixup_rela_cnt
= entry
->d_un
.d_val
;
6472 case DT_IA_64_VMS_FIXUP_RELA_OFF
:
6473 fixup
.fixup_rela_off
= entry
->d_un
.d_val
;
6475 dump_ia64_vms_dynamic_fixups (file
, &fixup
, strtab
, strtab_sz
);
6478 case DT_IA_64_VMS_IMG_RELA_CNT
:
6479 imgrela
.img_rela_cnt
= entry
->d_un
.d_val
;
6481 case DT_IA_64_VMS_IMG_RELA_OFF
:
6482 imgrela
.img_rela_off
= entry
->d_un
.d_val
;
6484 dump_ia64_vms_dynamic_relocs (file
, &imgrela
);
6504 } dynamic_relocations
[] =
6506 { "REL", DT_REL
, DT_RELSZ
, FALSE
},
6507 { "RELA", DT_RELA
, DT_RELASZ
, TRUE
},
6508 { "PLT", DT_JMPREL
, DT_PLTRELSZ
, UNKNOWN
}
6511 /* Process the reloc section. */
6514 process_relocs (FILE * file
)
6516 unsigned long rel_size
;
6517 unsigned long rel_offset
;
6523 if (do_using_dynamic
)
6527 int has_dynamic_reloc
;
6530 has_dynamic_reloc
= 0;
6532 for (i
= 0; i
< ARRAY_SIZE (dynamic_relocations
); i
++)
6534 is_rela
= dynamic_relocations
[i
].rela
;
6535 name
= dynamic_relocations
[i
].name
;
6536 rel_size
= dynamic_info
[dynamic_relocations
[i
].size
];
6537 rel_offset
= dynamic_info
[dynamic_relocations
[i
].reloc
];
6539 has_dynamic_reloc
|= rel_size
;
6541 if (is_rela
== UNKNOWN
)
6543 if (dynamic_relocations
[i
].reloc
== DT_JMPREL
)
6544 switch (dynamic_info
[DT_PLTREL
])
6558 (_("\n'%s' relocation section at offset 0x%lx contains %ld bytes:\n"),
6559 name
, rel_offset
, rel_size
);
6561 dump_relocations (file
,
6562 offset_from_vma (file
, rel_offset
, rel_size
),
6564 dynamic_symbols
, num_dynamic_syms
,
6565 dynamic_strings
, dynamic_strings_length
,
6571 has_dynamic_reloc
|= process_ia64_vms_dynamic_relocs (file
);
6573 if (! has_dynamic_reloc
)
6574 printf (_("\nThere are no dynamic relocations in this file.\n"));
6578 Elf_Internal_Shdr
* section
;
6582 for (i
= 0, section
= section_headers
;
6583 i
< elf_header
.e_shnum
;
6586 if ( section
->sh_type
!= SHT_RELA
6587 && section
->sh_type
!= SHT_REL
)
6590 rel_offset
= section
->sh_offset
;
6591 rel_size
= section
->sh_size
;
6595 Elf_Internal_Shdr
* strsec
;
6598 printf (_("\nRelocation section "));
6600 if (string_table
== NULL
)
6601 printf ("%d", section
->sh_name
);
6603 printf ("'%s'", printable_section_name (section
));
6605 printf (_(" at offset 0x%lx contains %lu entries:\n"),
6606 rel_offset
, (unsigned long) (rel_size
/ section
->sh_entsize
));
6608 is_rela
= section
->sh_type
== SHT_RELA
;
6610 if (section
->sh_link
!= 0
6611 && section
->sh_link
< elf_header
.e_shnum
)
6613 Elf_Internal_Shdr
* symsec
;
6614 Elf_Internal_Sym
* symtab
;
6615 unsigned long nsyms
;
6616 unsigned long strtablen
= 0;
6617 char * strtab
= NULL
;
6619 symsec
= section_headers
+ section
->sh_link
;
6620 if (symsec
->sh_type
!= SHT_SYMTAB
6621 && symsec
->sh_type
!= SHT_DYNSYM
)
6624 symtab
= GET_ELF_SYMBOLS (file
, symsec
, & nsyms
);
6629 if (symsec
->sh_link
!= 0
6630 && symsec
->sh_link
< elf_header
.e_shnum
)
6632 strsec
= section_headers
+ symsec
->sh_link
;
6634 strtab
= (char *) get_data (NULL
, file
, strsec
->sh_offset
,
6637 strtablen
= strtab
== NULL
? 0 : strsec
->sh_size
;
6640 dump_relocations (file
, rel_offset
, rel_size
,
6641 symtab
, nsyms
, strtab
, strtablen
,
6643 symsec
->sh_type
== SHT_DYNSYM
);
6649 dump_relocations (file
, rel_offset
, rel_size
,
6650 NULL
, 0, NULL
, 0, is_rela
, 0);
6657 printf (_("\nThere are no relocations in this file.\n"));
6663 /* An absolute address consists of a section and an offset. If the
6664 section is NULL, the offset itself is the address, otherwise, the
6665 address equals to LOAD_ADDRESS(section) + offset. */
6669 unsigned short section
;
6673 #define ABSADDR(a) \
6675 ? section_headers [(a).section].sh_addr + (a).offset \
6678 /* Find the nearest symbol at or below ADDR. Returns the symbol
6679 name, if found, and the offset from the symbol to ADDR. */
6682 find_symbol_for_address (Elf_Internal_Sym
* symtab
,
6683 unsigned long nsyms
,
6684 const char * strtab
,
6685 unsigned long strtab_size
,
6686 struct absaddr addr
,
6687 const char ** symname
,
6690 bfd_vma dist
= 0x100000;
6691 Elf_Internal_Sym
* sym
;
6692 Elf_Internal_Sym
* beg
;
6693 Elf_Internal_Sym
* end
;
6694 Elf_Internal_Sym
* best
= NULL
;
6696 REMOVE_ARCH_BITS (addr
.offset
);
6698 end
= symtab
+ nsyms
;
6704 sym
= beg
+ (end
- beg
) / 2;
6706 value
= sym
->st_value
;
6707 REMOVE_ARCH_BITS (value
);
6709 if (sym
->st_name
!= 0
6710 && (addr
.section
== SHN_UNDEF
|| addr
.section
== sym
->st_shndx
)
6711 && addr
.offset
>= value
6712 && addr
.offset
- value
< dist
)
6715 dist
= addr
.offset
- value
;
6720 if (addr
.offset
< value
)
6728 *symname
= (best
->st_name
>= strtab_size
6729 ? _("<corrupt>") : strtab
+ best
->st_name
);
6735 *offset
= addr
.offset
;
6739 symcmp (const void *p
, const void *q
)
6741 Elf_Internal_Sym
*sp
= (Elf_Internal_Sym
*) p
;
6742 Elf_Internal_Sym
*sq
= (Elf_Internal_Sym
*) q
;
6744 return sp
->st_value
> sq
->st_value
? 1 : (sp
->st_value
< sq
->st_value
? -1 : 0);
6747 /* Process the unwind section. */
6749 #include "unwind-ia64.h"
6751 struct ia64_unw_table_entry
6753 struct absaddr start
;
6755 struct absaddr info
;
6758 struct ia64_unw_aux_info
6760 struct ia64_unw_table_entry
*table
; /* Unwind table. */
6761 unsigned long table_len
; /* Length of unwind table. */
6762 unsigned char * info
; /* Unwind info. */
6763 unsigned long info_size
; /* Size of unwind info. */
6764 bfd_vma info_addr
; /* Starting address of unwind info. */
6765 bfd_vma seg_base
; /* Starting address of segment. */
6766 Elf_Internal_Sym
* symtab
; /* The symbol table. */
6767 unsigned long nsyms
; /* Number of symbols. */
6768 Elf_Internal_Sym
* funtab
; /* Sorted table of STT_FUNC symbols. */
6769 unsigned long nfuns
; /* Number of entries in funtab. */
6770 char * strtab
; /* The string table. */
6771 unsigned long strtab_size
; /* Size of string table. */
6775 dump_ia64_unwind (struct ia64_unw_aux_info
* aux
)
6777 struct ia64_unw_table_entry
* tp
;
6778 unsigned long j
, nfuns
;
6781 aux
->funtab
= xmalloc (aux
->nsyms
* sizeof (Elf_Internal_Sym
));
6782 for (nfuns
= 0, j
= 0; j
< aux
->nsyms
; j
++)
6783 if (aux
->symtab
[j
].st_value
&& ELF_ST_TYPE (aux
->symtab
[j
].st_info
) == STT_FUNC
)
6784 aux
->funtab
[nfuns
++] = aux
->symtab
[j
];
6786 qsort (aux
->funtab
, aux
->nfuns
, sizeof (Elf_Internal_Sym
), symcmp
);
6788 for (tp
= aux
->table
; tp
< aux
->table
+ aux
->table_len
; ++tp
)
6792 const unsigned char * dp
;
6793 const unsigned char * head
;
6794 const unsigned char * end
;
6795 const char * procname
;
6797 find_symbol_for_address (aux
->funtab
, aux
->nfuns
, aux
->strtab
,
6798 aux
->strtab_size
, tp
->start
, &procname
, &offset
);
6800 fputs ("\n<", stdout
);
6804 fputs (procname
, stdout
);
6807 printf ("+%lx", (unsigned long) offset
);
6810 fputs (">: [", stdout
);
6811 print_vma (tp
->start
.offset
, PREFIX_HEX
);
6812 fputc ('-', stdout
);
6813 print_vma (tp
->end
.offset
, PREFIX_HEX
);
6814 printf ("], info at +0x%lx\n",
6815 (unsigned long) (tp
->info
.offset
- aux
->seg_base
));
6817 /* PR 17531: file: 86232b32. */
6818 if (aux
->info
== NULL
)
6821 /* PR 17531: file: 0997b4d1. */
6822 if ((ABSADDR (tp
->info
) - aux
->info_addr
) >= aux
->info_size
)
6824 warn (_("Invalid offset %lx in table entry %ld\n"),
6825 (long) tp
->info
.offset
, (long) (tp
- aux
->table
));
6829 head
= aux
->info
+ (ABSADDR (tp
->info
) - aux
->info_addr
);
6830 stamp
= byte_get ((unsigned char *) head
, sizeof (stamp
));
6832 printf (" v%u, flags=0x%lx (%s%s), len=%lu bytes\n",
6833 (unsigned) UNW_VER (stamp
),
6834 (unsigned long) ((stamp
& UNW_FLAG_MASK
) >> 32),
6835 UNW_FLAG_EHANDLER (stamp
) ? " ehandler" : "",
6836 UNW_FLAG_UHANDLER (stamp
) ? " uhandler" : "",
6837 (unsigned long) (eh_addr_size
* UNW_LENGTH (stamp
)));
6839 if (UNW_VER (stamp
) != 1)
6841 printf (_("\tUnknown version.\n"));
6846 end
= head
+ 8 + eh_addr_size
* UNW_LENGTH (stamp
);
6847 /* PR 17531: file: 16ceda89. */
6848 if (end
> aux
->info
+ aux
->info_size
)
6849 end
= aux
->info
+ aux
->info_size
;
6850 for (dp
= head
+ 8; dp
< end
;)
6851 dp
= unw_decode (dp
, in_body
, & in_body
, end
);
6858 slurp_ia64_unwind_table (FILE * file
,
6859 struct ia64_unw_aux_info
* aux
,
6860 Elf_Internal_Shdr
* sec
)
6862 unsigned long size
, nrelas
, i
;
6863 Elf_Internal_Phdr
* seg
;
6864 struct ia64_unw_table_entry
* tep
;
6865 Elf_Internal_Shdr
* relsec
;
6866 Elf_Internal_Rela
* rela
;
6867 Elf_Internal_Rela
* rp
;
6868 unsigned char * table
;
6870 Elf_Internal_Sym
* sym
;
6871 const char * relname
;
6875 /* First, find the starting address of the segment that includes
6878 if (elf_header
.e_phnum
)
6880 if (! get_program_headers (file
))
6883 for (seg
= program_headers
;
6884 seg
< program_headers
+ elf_header
.e_phnum
;
6887 if (seg
->p_type
!= PT_LOAD
)
6890 if (sec
->sh_addr
>= seg
->p_vaddr
6891 && (sec
->sh_addr
+ sec
->sh_size
<= seg
->p_vaddr
+ seg
->p_memsz
))
6893 aux
->seg_base
= seg
->p_vaddr
;
6899 /* Second, build the unwind table from the contents of the unwind section: */
6900 size
= sec
->sh_size
;
6901 table
= (unsigned char *) get_data (NULL
, file
, sec
->sh_offset
, 1, size
,
6906 aux
->table_len
= size
/ (3 * eh_addr_size
);
6907 aux
->table
= (struct ia64_unw_table_entry
*)
6908 xcmalloc (aux
->table_len
, sizeof (aux
->table
[0]));
6911 for (tp
= table
; tp
<= table
+ size
- (3 * eh_addr_size
); ++tep
)
6913 tep
->start
.section
= SHN_UNDEF
;
6914 tep
->end
.section
= SHN_UNDEF
;
6915 tep
->info
.section
= SHN_UNDEF
;
6916 tep
->start
.offset
= byte_get (tp
, eh_addr_size
); tp
+= eh_addr_size
;
6917 tep
->end
.offset
= byte_get (tp
, eh_addr_size
); tp
+= eh_addr_size
;
6918 tep
->info
.offset
= byte_get (tp
, eh_addr_size
); tp
+= eh_addr_size
;
6919 tep
->start
.offset
+= aux
->seg_base
;
6920 tep
->end
.offset
+= aux
->seg_base
;
6921 tep
->info
.offset
+= aux
->seg_base
;
6925 /* Third, apply any relocations to the unwind table: */
6926 for (relsec
= section_headers
;
6927 relsec
< section_headers
+ elf_header
.e_shnum
;
6930 if (relsec
->sh_type
!= SHT_RELA
6931 || relsec
->sh_info
>= elf_header
.e_shnum
6932 || section_headers
+ relsec
->sh_info
!= sec
)
6935 if (!slurp_rela_relocs (file
, relsec
->sh_offset
, relsec
->sh_size
,
6944 for (rp
= rela
; rp
< rela
+ nrelas
; ++rp
)
6946 relname
= elf_ia64_reloc_type (get_reloc_type (rp
->r_info
));
6947 sym
= aux
->symtab
+ get_reloc_symindex (rp
->r_info
);
6949 /* PR 17531: file: 9fa67536. */
6950 if (relname
== NULL
)
6952 warn (_("Skipping unknown relocation type: %u\n"), get_reloc_type (rp
->r_info
));
6956 if (! const_strneq (relname
, "R_IA64_SEGREL"))
6958 warn (_("Skipping unexpected relocation type: %s\n"), relname
);
6962 i
= rp
->r_offset
/ (3 * eh_addr_size
);
6964 /* PR 17531: file: 5bc8d9bf. */
6965 if (i
>= aux
->table_len
)
6967 warn (_("Skipping reloc with overlarge offset: %lx\n"), i
);
6971 switch (rp
->r_offset
/ eh_addr_size
% 3)
6974 aux
->table
[i
].start
.section
= sym
->st_shndx
;
6975 aux
->table
[i
].start
.offset
= rp
->r_addend
+ sym
->st_value
;
6978 aux
->table
[i
].end
.section
= sym
->st_shndx
;
6979 aux
->table
[i
].end
.offset
= rp
->r_addend
+ sym
->st_value
;
6982 aux
->table
[i
].info
.section
= sym
->st_shndx
;
6983 aux
->table
[i
].info
.offset
= rp
->r_addend
+ sym
->st_value
;
6997 ia64_process_unwind (FILE * file
)
6999 Elf_Internal_Shdr
* sec
;
7000 Elf_Internal_Shdr
* unwsec
= NULL
;
7001 Elf_Internal_Shdr
* strsec
;
7002 unsigned long i
, unwcount
= 0, unwstart
= 0;
7003 struct ia64_unw_aux_info aux
;
7005 memset (& aux
, 0, sizeof (aux
));
7007 for (i
= 0, sec
= section_headers
; i
< elf_header
.e_shnum
; ++i
, ++sec
)
7009 if (sec
->sh_type
== SHT_SYMTAB
7010 && sec
->sh_link
< elf_header
.e_shnum
)
7012 aux
.symtab
= GET_ELF_SYMBOLS (file
, sec
, & aux
.nsyms
);
7014 strsec
= section_headers
+ sec
->sh_link
;
7015 if (aux
.strtab
!= NULL
)
7017 error (_("Multiple auxillary string tables encountered\n"));
7020 aux
.strtab
= (char *) get_data (NULL
, file
, strsec
->sh_offset
,
7023 aux
.strtab_size
= aux
.strtab
!= NULL
? strsec
->sh_size
: 0;
7025 else if (sec
->sh_type
== SHT_IA_64_UNWIND
)
7030 printf (_("\nThere are no unwind sections in this file.\n"));
7032 while (unwcount
-- > 0)
7037 for (i
= unwstart
, sec
= section_headers
+ unwstart
, unwsec
= NULL
;
7038 i
< elf_header
.e_shnum
; ++i
, ++sec
)
7039 if (sec
->sh_type
== SHT_IA_64_UNWIND
)
7044 /* We have already counted the number of SHT_IA64_UNWIND
7045 sections so the loop above should never fail. */
7046 assert (unwsec
!= NULL
);
7049 len
= sizeof (ELF_STRING_ia64_unwind_once
) - 1;
7051 if ((unwsec
->sh_flags
& SHF_GROUP
) != 0)
7053 /* We need to find which section group it is in. */
7054 struct group_list
* g
;
7056 if (section_headers_groups
== NULL
7057 || section_headers_groups
[i
] == NULL
)
7058 i
= elf_header
.e_shnum
;
7061 g
= section_headers_groups
[i
]->root
;
7063 for (; g
!= NULL
; g
= g
->next
)
7065 sec
= section_headers
+ g
->section_index
;
7067 if (streq (SECTION_NAME (sec
), ELF_STRING_ia64_unwind_info
))
7072 i
= elf_header
.e_shnum
;
7075 else if (strneq (SECTION_NAME (unwsec
), ELF_STRING_ia64_unwind_once
, len
))
7077 /* .gnu.linkonce.ia64unw.FOO -> .gnu.linkonce.ia64unwi.FOO. */
7078 len2
= sizeof (ELF_STRING_ia64_unwind_info_once
) - 1;
7079 suffix
= SECTION_NAME (unwsec
) + len
;
7080 for (i
= 0, sec
= section_headers
; i
< elf_header
.e_shnum
;
7082 if (strneq (SECTION_NAME (sec
), ELF_STRING_ia64_unwind_info_once
, len2
)
7083 && streq (SECTION_NAME (sec
) + len2
, suffix
))
7088 /* .IA_64.unwindFOO -> .IA_64.unwind_infoFOO
7089 .IA_64.unwind or BAR -> .IA_64.unwind_info. */
7090 len
= sizeof (ELF_STRING_ia64_unwind
) - 1;
7091 len2
= sizeof (ELF_STRING_ia64_unwind_info
) - 1;
7093 if (strneq (SECTION_NAME (unwsec
), ELF_STRING_ia64_unwind
, len
))
7094 suffix
= SECTION_NAME (unwsec
) + len
;
7095 for (i
= 0, sec
= section_headers
; i
< elf_header
.e_shnum
;
7097 if (strneq (SECTION_NAME (sec
), ELF_STRING_ia64_unwind_info
, len2
)
7098 && streq (SECTION_NAME (sec
) + len2
, suffix
))
7102 if (i
== elf_header
.e_shnum
)
7104 printf (_("\nCould not find unwind info section for "));
7106 if (string_table
== NULL
)
7107 printf ("%d", unwsec
->sh_name
);
7109 printf ("'%s'", printable_section_name (unwsec
));
7113 aux
.info_addr
= sec
->sh_addr
;
7114 aux
.info
= (unsigned char *) get_data (NULL
, file
, sec
->sh_offset
, 1,
7117 aux
.info_size
= aux
.info
== NULL
? 0 : sec
->sh_size
;
7119 printf (_("\nUnwind section "));
7121 if (string_table
== NULL
)
7122 printf ("%d", unwsec
->sh_name
);
7124 printf ("'%s'", printable_section_name (unwsec
));
7126 printf (_(" at offset 0x%lx contains %lu entries:\n"),
7127 (unsigned long) unwsec
->sh_offset
,
7128 (unsigned long) (unwsec
->sh_size
/ (3 * eh_addr_size
)));
7130 if (slurp_ia64_unwind_table (file
, & aux
, unwsec
)
7131 && aux
.table_len
> 0)
7132 dump_ia64_unwind (& aux
);
7135 free ((char *) aux
.table
);
7137 free ((char *) aux
.info
);
7146 free ((char *) aux
.strtab
);
7149 struct hppa_unw_table_entry
7151 struct absaddr start
;
7153 unsigned int Cannot_unwind
:1; /* 0 */
7154 unsigned int Millicode
:1; /* 1 */
7155 unsigned int Millicode_save_sr0
:1; /* 2 */
7156 unsigned int Region_description
:2; /* 3..4 */
7157 unsigned int reserved1
:1; /* 5 */
7158 unsigned int Entry_SR
:1; /* 6 */
7159 unsigned int Entry_FR
:4; /* number saved */ /* 7..10 */
7160 unsigned int Entry_GR
:5; /* number saved */ /* 11..15 */
7161 unsigned int Args_stored
:1; /* 16 */
7162 unsigned int Variable_Frame
:1; /* 17 */
7163 unsigned int Separate_Package_Body
:1; /* 18 */
7164 unsigned int Frame_Extension_Millicode
:1; /* 19 */
7165 unsigned int Stack_Overflow_Check
:1; /* 20 */
7166 unsigned int Two_Instruction_SP_Increment
:1;/* 21 */
7167 unsigned int Ada_Region
:1; /* 22 */
7168 unsigned int cxx_info
:1; /* 23 */
7169 unsigned int cxx_try_catch
:1; /* 24 */
7170 unsigned int sched_entry_seq
:1; /* 25 */
7171 unsigned int reserved2
:1; /* 26 */
7172 unsigned int Save_SP
:1; /* 27 */
7173 unsigned int Save_RP
:1; /* 28 */
7174 unsigned int Save_MRP_in_frame
:1; /* 29 */
7175 unsigned int extn_ptr_defined
:1; /* 30 */
7176 unsigned int Cleanup_defined
:1; /* 31 */
7178 unsigned int MPE_XL_interrupt_marker
:1; /* 0 */
7179 unsigned int HP_UX_interrupt_marker
:1; /* 1 */
7180 unsigned int Large_frame
:1; /* 2 */
7181 unsigned int Pseudo_SP_Set
:1; /* 3 */
7182 unsigned int reserved4
:1; /* 4 */
7183 unsigned int Total_frame_size
:27; /* 5..31 */
7186 struct hppa_unw_aux_info
7188 struct hppa_unw_table_entry
* table
; /* Unwind table. */
7189 unsigned long table_len
; /* Length of unwind table. */
7190 bfd_vma seg_base
; /* Starting address of segment. */
7191 Elf_Internal_Sym
* symtab
; /* The symbol table. */
7192 unsigned long nsyms
; /* Number of symbols. */
7193 Elf_Internal_Sym
* funtab
; /* Sorted table of STT_FUNC symbols. */
7194 unsigned long nfuns
; /* Number of entries in funtab. */
7195 char * strtab
; /* The string table. */
7196 unsigned long strtab_size
; /* Size of string table. */
7200 dump_hppa_unwind (struct hppa_unw_aux_info
* aux
)
7202 struct hppa_unw_table_entry
* tp
;
7203 unsigned long j
, nfuns
;
7205 aux
->funtab
= xmalloc (aux
->nsyms
* sizeof (Elf_Internal_Sym
));
7206 for (nfuns
= 0, j
= 0; j
< aux
->nsyms
; j
++)
7207 if (aux
->symtab
[j
].st_value
&& ELF_ST_TYPE (aux
->symtab
[j
].st_info
) == STT_FUNC
)
7208 aux
->funtab
[nfuns
++] = aux
->symtab
[j
];
7210 qsort (aux
->funtab
, aux
->nfuns
, sizeof (Elf_Internal_Sym
), symcmp
);
7212 for (tp
= aux
->table
; tp
< aux
->table
+ aux
->table_len
; ++tp
)
7215 const char * procname
;
7217 find_symbol_for_address (aux
->funtab
, aux
->nfuns
, aux
->strtab
,
7218 aux
->strtab_size
, tp
->start
, &procname
,
7221 fputs ("\n<", stdout
);
7225 fputs (procname
, stdout
);
7228 printf ("+%lx", (unsigned long) offset
);
7231 fputs (">: [", stdout
);
7232 print_vma (tp
->start
.offset
, PREFIX_HEX
);
7233 fputc ('-', stdout
);
7234 print_vma (tp
->end
.offset
, PREFIX_HEX
);
7237 #define PF(_m) if (tp->_m) printf (#_m " ");
7238 #define PV(_m) if (tp->_m) printf (#_m "=%d ", tp->_m);
7241 PF(Millicode_save_sr0
);
7242 /* PV(Region_description); */
7248 PF(Separate_Package_Body
);
7249 PF(Frame_Extension_Millicode
);
7250 PF(Stack_Overflow_Check
);
7251 PF(Two_Instruction_SP_Increment
);
7255 PF(sched_entry_seq
);
7258 PF(Save_MRP_in_frame
);
7259 PF(extn_ptr_defined
);
7260 PF(Cleanup_defined
);
7261 PF(MPE_XL_interrupt_marker
);
7262 PF(HP_UX_interrupt_marker
);
7265 PV(Total_frame_size
);
7276 slurp_hppa_unwind_table (FILE * file
,
7277 struct hppa_unw_aux_info
* aux
,
7278 Elf_Internal_Shdr
* sec
)
7280 unsigned long size
, unw_ent_size
, nentries
, nrelas
, i
;
7281 Elf_Internal_Phdr
* seg
;
7282 struct hppa_unw_table_entry
* tep
;
7283 Elf_Internal_Shdr
* relsec
;
7284 Elf_Internal_Rela
* rela
;
7285 Elf_Internal_Rela
* rp
;
7286 unsigned char * table
;
7288 Elf_Internal_Sym
* sym
;
7289 const char * relname
;
7291 /* First, find the starting address of the segment that includes
7294 if (elf_header
.e_phnum
)
7296 if (! get_program_headers (file
))
7299 for (seg
= program_headers
;
7300 seg
< program_headers
+ elf_header
.e_phnum
;
7303 if (seg
->p_type
!= PT_LOAD
)
7306 if (sec
->sh_addr
>= seg
->p_vaddr
7307 && (sec
->sh_addr
+ sec
->sh_size
<= seg
->p_vaddr
+ seg
->p_memsz
))
7309 aux
->seg_base
= seg
->p_vaddr
;
7315 /* Second, build the unwind table from the contents of the unwind
7317 size
= sec
->sh_size
;
7318 table
= (unsigned char *) get_data (NULL
, file
, sec
->sh_offset
, 1, size
,
7324 nentries
= size
/ unw_ent_size
;
7325 size
= unw_ent_size
* nentries
;
7327 tep
= aux
->table
= (struct hppa_unw_table_entry
*)
7328 xcmalloc (nentries
, sizeof (aux
->table
[0]));
7330 for (tp
= table
; tp
< table
+ size
; tp
+= unw_ent_size
, ++tep
)
7332 unsigned int tmp1
, tmp2
;
7334 tep
->start
.section
= SHN_UNDEF
;
7335 tep
->end
.section
= SHN_UNDEF
;
7337 tep
->start
.offset
= byte_get ((unsigned char *) tp
+ 0, 4);
7338 tep
->end
.offset
= byte_get ((unsigned char *) tp
+ 4, 4);
7339 tmp1
= byte_get ((unsigned char *) tp
+ 8, 4);
7340 tmp2
= byte_get ((unsigned char *) tp
+ 12, 4);
7342 tep
->start
.offset
+= aux
->seg_base
;
7343 tep
->end
.offset
+= aux
->seg_base
;
7345 tep
->Cannot_unwind
= (tmp1
>> 31) & 0x1;
7346 tep
->Millicode
= (tmp1
>> 30) & 0x1;
7347 tep
->Millicode_save_sr0
= (tmp1
>> 29) & 0x1;
7348 tep
->Region_description
= (tmp1
>> 27) & 0x3;
7349 tep
->reserved1
= (tmp1
>> 26) & 0x1;
7350 tep
->Entry_SR
= (tmp1
>> 25) & 0x1;
7351 tep
->Entry_FR
= (tmp1
>> 21) & 0xf;
7352 tep
->Entry_GR
= (tmp1
>> 16) & 0x1f;
7353 tep
->Args_stored
= (tmp1
>> 15) & 0x1;
7354 tep
->Variable_Frame
= (tmp1
>> 14) & 0x1;
7355 tep
->Separate_Package_Body
= (tmp1
>> 13) & 0x1;
7356 tep
->Frame_Extension_Millicode
= (tmp1
>> 12) & 0x1;
7357 tep
->Stack_Overflow_Check
= (tmp1
>> 11) & 0x1;
7358 tep
->Two_Instruction_SP_Increment
= (tmp1
>> 10) & 0x1;
7359 tep
->Ada_Region
= (tmp1
>> 9) & 0x1;
7360 tep
->cxx_info
= (tmp1
>> 8) & 0x1;
7361 tep
->cxx_try_catch
= (tmp1
>> 7) & 0x1;
7362 tep
->sched_entry_seq
= (tmp1
>> 6) & 0x1;
7363 tep
->reserved2
= (tmp1
>> 5) & 0x1;
7364 tep
->Save_SP
= (tmp1
>> 4) & 0x1;
7365 tep
->Save_RP
= (tmp1
>> 3) & 0x1;
7366 tep
->Save_MRP_in_frame
= (tmp1
>> 2) & 0x1;
7367 tep
->extn_ptr_defined
= (tmp1
>> 1) & 0x1;
7368 tep
->Cleanup_defined
= tmp1
& 0x1;
7370 tep
->MPE_XL_interrupt_marker
= (tmp2
>> 31) & 0x1;
7371 tep
->HP_UX_interrupt_marker
= (tmp2
>> 30) & 0x1;
7372 tep
->Large_frame
= (tmp2
>> 29) & 0x1;
7373 tep
->Pseudo_SP_Set
= (tmp2
>> 28) & 0x1;
7374 tep
->reserved4
= (tmp2
>> 27) & 0x1;
7375 tep
->Total_frame_size
= tmp2
& 0x7ffffff;
7379 /* Third, apply any relocations to the unwind table. */
7380 for (relsec
= section_headers
;
7381 relsec
< section_headers
+ elf_header
.e_shnum
;
7384 if (relsec
->sh_type
!= SHT_RELA
7385 || relsec
->sh_info
>= elf_header
.e_shnum
7386 || section_headers
+ relsec
->sh_info
!= sec
)
7389 if (!slurp_rela_relocs (file
, relsec
->sh_offset
, relsec
->sh_size
,
7393 for (rp
= rela
; rp
< rela
+ nrelas
; ++rp
)
7395 relname
= elf_hppa_reloc_type (get_reloc_type (rp
->r_info
));
7396 sym
= aux
->symtab
+ get_reloc_symindex (rp
->r_info
);
7398 /* R_PARISC_SEGREL32 or R_PARISC_SEGREL64. */
7399 if (! const_strneq (relname
, "R_PARISC_SEGREL"))
7401 warn (_("Skipping unexpected relocation type %s\n"), relname
);
7405 i
= rp
->r_offset
/ unw_ent_size
;
7407 switch ((rp
->r_offset
% unw_ent_size
) / eh_addr_size
)
7410 aux
->table
[i
].start
.section
= sym
->st_shndx
;
7411 aux
->table
[i
].start
.offset
= sym
->st_value
+ rp
->r_addend
;
7414 aux
->table
[i
].end
.section
= sym
->st_shndx
;
7415 aux
->table
[i
].end
.offset
= sym
->st_value
+ rp
->r_addend
;
7425 aux
->table_len
= nentries
;
7431 hppa_process_unwind (FILE * file
)
7433 struct hppa_unw_aux_info aux
;
7434 Elf_Internal_Shdr
* unwsec
= NULL
;
7435 Elf_Internal_Shdr
* strsec
;
7436 Elf_Internal_Shdr
* sec
;
7439 if (string_table
== NULL
)
7442 memset (& aux
, 0, sizeof (aux
));
7444 for (i
= 0, sec
= section_headers
; i
< elf_header
.e_shnum
; ++i
, ++sec
)
7446 if (sec
->sh_type
== SHT_SYMTAB
7447 && sec
->sh_link
< elf_header
.e_shnum
)
7449 aux
.symtab
= GET_ELF_SYMBOLS (file
, sec
, & aux
.nsyms
);
7451 strsec
= section_headers
+ sec
->sh_link
;
7452 if (aux
.strtab
!= NULL
)
7454 error (_("Multiple auxillary string tables encountered\n"));
7457 aux
.strtab
= (char *) get_data (NULL
, file
, strsec
->sh_offset
,
7460 aux
.strtab_size
= aux
.strtab
!= NULL
? strsec
->sh_size
: 0;
7462 else if (streq (SECTION_NAME (sec
), ".PARISC.unwind"))
7467 printf (_("\nThere are no unwind sections in this file.\n"));
7469 for (i
= 0, sec
= section_headers
; i
< elf_header
.e_shnum
; ++i
, ++sec
)
7471 if (streq (SECTION_NAME (sec
), ".PARISC.unwind"))
7473 printf (_("\nUnwind section '%s' at offset 0x%lx contains %lu entries:\n"),
7474 printable_section_name (sec
),
7475 (unsigned long) sec
->sh_offset
,
7476 (unsigned long) (sec
->sh_size
/ (2 * eh_addr_size
+ 8)));
7478 slurp_hppa_unwind_table (file
, &aux
, sec
);
7479 if (aux
.table_len
> 0)
7480 dump_hppa_unwind (&aux
);
7483 free ((char *) aux
.table
);
7491 free ((char *) aux
.strtab
);
7496 unsigned char * data
; /* The unwind data. */
7497 Elf_Internal_Shdr
* sec
; /* The cached unwind section header. */
7498 Elf_Internal_Rela
* rela
; /* The cached relocations for this section. */
7499 unsigned long nrelas
; /* The number of relocations. */
7500 unsigned int rel_type
; /* REL or RELA ? */
7501 Elf_Internal_Rela
* next_rela
; /* Cyclic pointer to the next reloc to process. */
7504 struct arm_unw_aux_info
7506 FILE * file
; /* The file containing the unwind sections. */
7507 Elf_Internal_Sym
* symtab
; /* The file's symbol table. */
7508 unsigned long nsyms
; /* Number of symbols. */
7509 Elf_Internal_Sym
* funtab
; /* Sorted table of STT_FUNC symbols. */
7510 unsigned long nfuns
; /* Number of these symbols. */
7511 char * strtab
; /* The file's string table. */
7512 unsigned long strtab_size
; /* Size of string table. */
7516 arm_print_vma_and_name (struct arm_unw_aux_info
*aux
,
7517 bfd_vma fn
, struct absaddr addr
)
7519 const char *procname
;
7522 if (addr
.section
== SHN_UNDEF
)
7525 find_symbol_for_address (aux
->funtab
, aux
->nfuns
, aux
->strtab
,
7526 aux
->strtab_size
, addr
, &procname
,
7529 print_vma (fn
, PREFIX_HEX
);
7533 fputs (" <", stdout
);
7534 fputs (procname
, stdout
);
7537 printf ("+0x%lx", (unsigned long) sym_offset
);
7538 fputc ('>', stdout
);
7545 arm_free_section (struct arm_section
*arm_sec
)
7547 if (arm_sec
->data
!= NULL
)
7548 free (arm_sec
->data
);
7550 if (arm_sec
->rela
!= NULL
)
7551 free (arm_sec
->rela
);
7554 /* 1) If SEC does not match the one cached in ARM_SEC, then free the current
7555 cached section and install SEC instead.
7556 2) Locate the 32-bit word at WORD_OFFSET in unwind section SEC
7557 and return its valued in * WORDP, relocating if necessary.
7558 3) Update the NEXT_RELA field in ARM_SEC and store the section index and
7559 relocation's offset in ADDR.
7560 4) If SYM_NAME is non-NULL and a relocation was applied, record the offset
7561 into the string table of the symbol associated with the reloc. If no
7562 reloc was applied store -1 there.
7563 5) Return TRUE upon success, FALSE otherwise. */
7566 get_unwind_section_word (struct arm_unw_aux_info
* aux
,
7567 struct arm_section
* arm_sec
,
7568 Elf_Internal_Shdr
* sec
,
7569 bfd_vma word_offset
,
7570 unsigned int * wordp
,
7571 struct absaddr
* addr
,
7574 Elf_Internal_Rela
*rp
;
7575 Elf_Internal_Sym
*sym
;
7576 const char * relname
;
7578 bfd_boolean wrapped
;
7580 if (sec
== NULL
|| arm_sec
== NULL
)
7583 addr
->section
= SHN_UNDEF
;
7586 if (sym_name
!= NULL
)
7587 *sym_name
= (bfd_vma
) -1;
7589 /* If necessary, update the section cache. */
7590 if (sec
!= arm_sec
->sec
)
7592 Elf_Internal_Shdr
*relsec
;
7594 arm_free_section (arm_sec
);
7597 arm_sec
->data
= get_data (NULL
, aux
->file
, sec
->sh_offset
, 1,
7598 sec
->sh_size
, _("unwind data"));
7599 arm_sec
->rela
= NULL
;
7600 arm_sec
->nrelas
= 0;
7602 for (relsec
= section_headers
;
7603 relsec
< section_headers
+ elf_header
.e_shnum
;
7606 if (relsec
->sh_info
>= elf_header
.e_shnum
7607 || section_headers
+ relsec
->sh_info
!= sec
7608 /* PR 15745: Check the section type as well. */
7609 || (relsec
->sh_type
!= SHT_REL
7610 && relsec
->sh_type
!= SHT_RELA
))
7613 arm_sec
->rel_type
= relsec
->sh_type
;
7614 if (relsec
->sh_type
== SHT_REL
)
7616 if (!slurp_rel_relocs (aux
->file
, relsec
->sh_offset
,
7618 & arm_sec
->rela
, & arm_sec
->nrelas
))
7621 else /* relsec->sh_type == SHT_RELA */
7623 if (!slurp_rela_relocs (aux
->file
, relsec
->sh_offset
,
7625 & arm_sec
->rela
, & arm_sec
->nrelas
))
7631 arm_sec
->next_rela
= arm_sec
->rela
;
7634 /* If there is no unwind data we can do nothing. */
7635 if (arm_sec
->data
== NULL
)
7638 /* If the offset is invalid then fail. */
7639 if (word_offset
> (sec
->sh_size
- 4)
7641 || (sec
->sh_size
< 5 && word_offset
>= sec
->sh_size
)
7642 || ((bfd_signed_vma
) word_offset
) < 0)
7645 /* Get the word at the required offset. */
7646 word
= byte_get (arm_sec
->data
+ word_offset
, 4);
7648 /* PR 17531: file: id:000001,src:001266+003044,op:splice,rep:128. */
7649 if (arm_sec
->rela
== NULL
)
7655 /* Look through the relocs to find the one that applies to the provided offset. */
7657 for (rp
= arm_sec
->next_rela
; rp
!= arm_sec
->rela
+ arm_sec
->nrelas
; rp
++)
7659 bfd_vma prelval
, offset
;
7661 if (rp
->r_offset
> word_offset
&& !wrapped
)
7666 if (rp
->r_offset
> word_offset
)
7669 if (rp
->r_offset
& 3)
7671 warn (_("Skipping unexpected relocation at offset 0x%lx\n"),
7672 (unsigned long) rp
->r_offset
);
7676 if (rp
->r_offset
< word_offset
)
7679 /* PR 17531: file: 027-161405-0.004 */
7680 if (aux
->symtab
== NULL
)
7683 if (arm_sec
->rel_type
== SHT_REL
)
7685 offset
= word
& 0x7fffffff;
7686 if (offset
& 0x40000000)
7687 offset
|= ~ (bfd_vma
) 0x7fffffff;
7689 else if (arm_sec
->rel_type
== SHT_RELA
)
7690 offset
= rp
->r_addend
;
7693 error (_("Unknown section relocation type %d encountered\n"),
7698 /* PR 17531 file: 027-1241568-0.004. */
7699 if (ELF32_R_SYM (rp
->r_info
) >= aux
->nsyms
)
7701 error (_("Bad symbol index in unwind relocation (%lu > %lu)\n"),
7702 (unsigned long) ELF32_R_SYM (rp
->r_info
), aux
->nsyms
);
7706 sym
= aux
->symtab
+ ELF32_R_SYM (rp
->r_info
);
7707 offset
+= sym
->st_value
;
7708 prelval
= offset
- (arm_sec
->sec
->sh_addr
+ rp
->r_offset
);
7710 /* Check that we are processing the expected reloc type. */
7711 if (elf_header
.e_machine
== EM_ARM
)
7713 relname
= elf_arm_reloc_type (ELF32_R_TYPE (rp
->r_info
));
7714 if (relname
== NULL
)
7716 warn (_("Skipping unknown ARM relocation type: %d\n"),
7717 (int) ELF32_R_TYPE (rp
->r_info
));
7721 if (streq (relname
, "R_ARM_NONE"))
7724 if (! streq (relname
, "R_ARM_PREL31"))
7726 warn (_("Skipping unexpected ARM relocation type %s\n"), relname
);
7730 else if (elf_header
.e_machine
== EM_TI_C6000
)
7732 relname
= elf_tic6x_reloc_type (ELF32_R_TYPE (rp
->r_info
));
7733 if (relname
== NULL
)
7735 warn (_("Skipping unknown C6000 relocation type: %d\n"),
7736 (int) ELF32_R_TYPE (rp
->r_info
));
7740 if (streq (relname
, "R_C6000_NONE"))
7743 if (! streq (relname
, "R_C6000_PREL31"))
7745 warn (_("Skipping unexpected C6000 relocation type %s\n"), relname
);
7753 /* This function currently only supports ARM and TI unwinders. */
7754 warn (_("Only TI and ARM unwinders are currently supported\n"));
7758 word
= (word
& ~ (bfd_vma
) 0x7fffffff) | (prelval
& 0x7fffffff);
7759 addr
->section
= sym
->st_shndx
;
7760 addr
->offset
= offset
;
7763 * sym_name
= sym
->st_name
;
7768 arm_sec
->next_rela
= rp
;
7773 static const char *tic6x_unwind_regnames
[16] =
7775 "A15", "B15", "B14", "B13", "B12", "B11", "B10", "B3",
7776 "A14", "A13", "A12", "A11", "A10",
7777 "[invalid reg 13]", "[invalid reg 14]", "[invalid reg 15]"
7781 decode_tic6x_unwind_regmask (unsigned int mask
)
7785 for (i
= 12; mask
; mask
>>= 1, i
--)
7789 fputs (tic6x_unwind_regnames
[i
], stdout
);
7791 fputs (", ", stdout
);
7797 if (remaining == 0 && more_words) \
7800 if (! get_unwind_section_word (aux, data_arm_sec, data_sec, \
7801 data_offset, & word, & addr, NULL)) \
7807 #define GET_OP(OP) \
7812 (OP) = word >> 24; \
7817 printf (_("[Truncated opcode]\n")); \
7820 printf ("0x%02x ", OP)
7823 decode_arm_unwind_bytecode (struct arm_unw_aux_info
* aux
,
7825 unsigned int remaining
,
7826 unsigned int more_words
,
7827 bfd_vma data_offset
,
7828 Elf_Internal_Shdr
* data_sec
,
7829 struct arm_section
* data_arm_sec
)
7831 struct absaddr addr
;
7833 /* Decode the unwinding instructions. */
7836 unsigned int op
, op2
;
7845 printf (" 0x%02x ", op
);
7847 if ((op
& 0xc0) == 0x00)
7849 int offset
= ((op
& 0x3f) << 2) + 4;
7851 printf (" vsp = vsp + %d", offset
);
7853 else if ((op
& 0xc0) == 0x40)
7855 int offset
= ((op
& 0x3f) << 2) + 4;
7857 printf (" vsp = vsp - %d", offset
);
7859 else if ((op
& 0xf0) == 0x80)
7862 if (op
== 0x80 && op2
== 0)
7863 printf (_("Refuse to unwind"));
7866 unsigned int mask
= ((op
& 0x0f) << 8) | op2
;
7871 for (i
= 0; i
< 12; i
++)
7872 if (mask
& (1 << i
))
7878 printf ("r%d", 4 + i
);
7883 else if ((op
& 0xf0) == 0x90)
7885 if (op
== 0x9d || op
== 0x9f)
7886 printf (_(" [Reserved]"));
7888 printf (" vsp = r%d", op
& 0x0f);
7890 else if ((op
& 0xf0) == 0xa0)
7892 int end
= 4 + (op
& 0x07);
7897 for (i
= 4; i
<= end
; i
++)
7913 else if (op
== 0xb0)
7914 printf (_(" finish"));
7915 else if (op
== 0xb1)
7918 if (op2
== 0 || (op2
& 0xf0) != 0)
7919 printf (_("[Spare]"));
7922 unsigned int mask
= op2
& 0x0f;
7927 for (i
= 0; i
< 12; i
++)
7928 if (mask
& (1 << i
))
7939 else if (op
== 0xb2)
7941 unsigned char buf
[9];
7942 unsigned int i
, len
;
7943 unsigned long offset
;
7945 for (i
= 0; i
< sizeof (buf
); i
++)
7948 if ((buf
[i
] & 0x80) == 0)
7951 if (i
== sizeof (buf
))
7952 printf (_("corrupt change to vsp"));
7955 offset
= read_uleb128 (buf
, &len
, buf
+ i
+ 1);
7956 assert (len
== i
+ 1);
7957 offset
= offset
* 4 + 0x204;
7958 printf ("vsp = vsp + %ld", offset
);
7961 else if (op
== 0xb3 || op
== 0xc8 || op
== 0xc9)
7963 unsigned int first
, last
;
7970 printf ("pop {D%d", first
);
7972 printf ("-D%d", first
+ last
);
7975 else if ((op
& 0xf8) == 0xb8 || (op
& 0xf8) == 0xd0)
7977 unsigned int count
= op
& 0x07;
7981 printf ("-D%d", 8 + count
);
7984 else if (op
>= 0xc0 && op
<= 0xc5)
7986 unsigned int count
= op
& 0x07;
7988 printf (" pop {wR10");
7990 printf ("-wR%d", 10 + count
);
7993 else if (op
== 0xc6)
7995 unsigned int first
, last
;
8000 printf ("pop {wR%d", first
);
8002 printf ("-wR%d", first
+ last
);
8005 else if (op
== 0xc7)
8008 if (op2
== 0 || (op2
& 0xf0) != 0)
8009 printf (_("[Spare]"));
8012 unsigned int mask
= op2
& 0x0f;
8017 for (i
= 0; i
< 4; i
++)
8018 if (mask
& (1 << i
))
8024 printf ("wCGR%d", i
);
8030 printf (_(" [unsupported opcode]"));
8036 decode_tic6x_unwind_bytecode (struct arm_unw_aux_info
* aux
,
8038 unsigned int remaining
,
8039 unsigned int more_words
,
8040 bfd_vma data_offset
,
8041 Elf_Internal_Shdr
* data_sec
,
8042 struct arm_section
* data_arm_sec
)
8044 struct absaddr addr
;
8046 /* Decode the unwinding instructions. */
8049 unsigned int op
, op2
;
8058 printf (" 0x%02x ", op
);
8060 if ((op
& 0xc0) == 0x00)
8062 int offset
= ((op
& 0x3f) << 3) + 8;
8063 printf (" sp = sp + %d", offset
);
8065 else if ((op
& 0xc0) == 0x80)
8068 if (op
== 0x80 && op2
== 0)
8069 printf (_("Refuse to unwind"));
8072 unsigned int mask
= ((op
& 0x1f) << 8) | op2
;
8074 printf ("pop compact {");
8078 decode_tic6x_unwind_regmask (mask
);
8082 else if ((op
& 0xf0) == 0xc0)
8090 unsigned int offset
;
8094 /* Scan entire instruction first so that GET_OP output is not
8095 interleaved with disassembly. */
8097 for (i
= 0; nregs
< (op
& 0xf); i
++)
8103 regpos
[nregs
].offset
= i
* 2;
8104 regpos
[nregs
].reg
= reg
;
8111 regpos
[nregs
].offset
= i
* 2 + 1;
8112 regpos
[nregs
].reg
= reg
;
8117 printf (_("pop frame {"));
8119 for (i
= i
* 2; i
> 0; i
--)
8121 if (regpos
[reg
].offset
== i
- 1)
8123 name
= tic6x_unwind_regnames
[regpos
[reg
].reg
];
8130 fputs (name
, stdout
);
8137 else if (op
== 0xd0)
8138 printf (" MOV FP, SP");
8139 else if (op
== 0xd1)
8140 printf (" __c6xabi_pop_rts");
8141 else if (op
== 0xd2)
8143 unsigned char buf
[9];
8144 unsigned int i
, len
;
8145 unsigned long offset
;
8147 for (i
= 0; i
< sizeof (buf
); i
++)
8150 if ((buf
[i
] & 0x80) == 0)
8153 /* PR 17531: file: id:000001,src:001906+004739,op:splice,rep:2. */
8154 if (i
== sizeof (buf
))
8156 printf ("<corrupt sp adjust>\n");
8157 warn (_("Corrupt stack pointer adjustment detected\n"));
8161 offset
= read_uleb128 (buf
, &len
, buf
+ i
+ 1);
8162 assert (len
== i
+ 1);
8163 offset
= offset
* 8 + 0x408;
8164 printf (_("sp = sp + %ld"), offset
);
8166 else if ((op
& 0xf0) == 0xe0)
8168 if ((op
& 0x0f) == 7)
8171 printf (" MV %s, B3", tic6x_unwind_regnames
[op
& 0x0f]);
8175 printf (_(" [unsupported opcode]"));
8182 arm_expand_prel31 (bfd_vma word
, bfd_vma where
)
8186 offset
= word
& 0x7fffffff;
8187 if (offset
& 0x40000000)
8188 offset
|= ~ (bfd_vma
) 0x7fffffff;
8190 if (elf_header
.e_machine
== EM_TI_C6000
)
8193 return offset
+ where
;
8197 decode_arm_unwind (struct arm_unw_aux_info
* aux
,
8199 unsigned int remaining
,
8200 bfd_vma data_offset
,
8201 Elf_Internal_Shdr
* data_sec
,
8202 struct arm_section
* data_arm_sec
)
8205 unsigned int more_words
= 0;
8206 struct absaddr addr
;
8207 bfd_vma sym_name
= (bfd_vma
) -1;
8211 /* Fetch the first word.
8212 Note - when decoding an object file the address extracted
8213 here will always be 0. So we also pass in the sym_name
8214 parameter so that we can find the symbol associated with
8215 the personality routine. */
8216 if (! get_unwind_section_word (aux
, data_arm_sec
, data_sec
, data_offset
,
8217 & word
, & addr
, & sym_name
))
8223 if ((word
& 0x80000000) == 0)
8225 /* Expand prel31 for personality routine. */
8227 const char *procname
;
8229 fn
= arm_expand_prel31 (word
, data_sec
->sh_addr
+ data_offset
);
8230 printf (_(" Personality routine: "));
8232 && addr
.section
== SHN_UNDEF
&& addr
.offset
== 0
8233 && sym_name
!= (bfd_vma
) -1 && sym_name
< aux
->strtab_size
)
8235 procname
= aux
->strtab
+ sym_name
;
8236 print_vma (fn
, PREFIX_HEX
);
8239 fputs (" <", stdout
);
8240 fputs (procname
, stdout
);
8241 fputc ('>', stdout
);
8245 procname
= arm_print_vma_and_name (aux
, fn
, addr
);
8246 fputc ('\n', stdout
);
8248 /* The GCC personality routines use the standard compact
8249 encoding, starting with one byte giving the number of
8251 if (procname
!= NULL
8252 && (const_strneq (procname
, "__gcc_personality_v0")
8253 || const_strneq (procname
, "__gxx_personality_v0")
8254 || const_strneq (procname
, "__gcj_personality_v0")
8255 || const_strneq (procname
, "__gnu_objc_personality_v0")))
8262 printf (_(" [Truncated data]\n"));
8265 more_words
= word
>> 24;
8275 /* ARM EHABI Section 6.3:
8277 An exception-handling table entry for the compact model looks like:
8281 1 0 index Data for personalityRoutine[index] */
8283 if (elf_header
.e_machine
== EM_ARM
8284 && (word
& 0x70000000))
8285 warn (_("Corrupt ARM compact model table entry: %x \n"), word
);
8287 per_index
= (word
>> 24) & 0x7f;
8288 printf (_(" Compact model index: %d\n"), per_index
);
8295 else if (per_index
< 3)
8297 more_words
= (word
>> 16) & 0xff;
8303 switch (elf_header
.e_machine
)
8308 decode_arm_unwind_bytecode (aux
, word
, remaining
, more_words
,
8309 data_offset
, data_sec
, data_arm_sec
);
8313 warn (_("Unknown ARM compact model index encountered\n"));
8314 printf (_(" [reserved]\n"));
8321 decode_tic6x_unwind_bytecode (aux
, word
, remaining
, more_words
,
8322 data_offset
, data_sec
, data_arm_sec
);
8324 else if (per_index
< 5)
8326 if (((word
>> 17) & 0x7f) == 0x7f)
8327 printf (_(" Restore stack from frame pointer\n"));
8329 printf (_(" Stack increment %d\n"), (word
>> 14) & 0x1fc);
8330 printf (_(" Registers restored: "));
8332 printf (" (compact) ");
8333 decode_tic6x_unwind_regmask ((word
>> 4) & 0x1fff);
8335 printf (_(" Return register: %s\n"),
8336 tic6x_unwind_regnames
[word
& 0xf]);
8339 printf (_(" [reserved (%d)]\n"), per_index
);
8343 error (_("Unsupported architecture type %d encountered when decoding unwind table\n"),
8344 elf_header
.e_machine
);
8347 /* Decode the descriptors. Not implemented. */
8351 dump_arm_unwind (struct arm_unw_aux_info
*aux
, Elf_Internal_Shdr
*exidx_sec
)
8353 struct arm_section exidx_arm_sec
, extab_arm_sec
;
8354 unsigned int i
, exidx_len
;
8355 unsigned long j
, nfuns
;
8357 memset (&exidx_arm_sec
, 0, sizeof (exidx_arm_sec
));
8358 memset (&extab_arm_sec
, 0, sizeof (extab_arm_sec
));
8359 exidx_len
= exidx_sec
->sh_size
/ 8;
8361 aux
->funtab
= xmalloc (aux
->nsyms
* sizeof (Elf_Internal_Sym
));
8362 for (nfuns
= 0, j
= 0; j
< aux
->nsyms
; j
++)
8363 if (aux
->symtab
[j
].st_value
&& ELF_ST_TYPE (aux
->symtab
[j
].st_info
) == STT_FUNC
)
8364 aux
->funtab
[nfuns
++] = aux
->symtab
[j
];
8366 qsort (aux
->funtab
, aux
->nfuns
, sizeof (Elf_Internal_Sym
), symcmp
);
8368 for (i
= 0; i
< exidx_len
; i
++)
8370 unsigned int exidx_fn
, exidx_entry
;
8371 struct absaddr fn_addr
, entry_addr
;
8374 fputc ('\n', stdout
);
8376 if (! get_unwind_section_word (aux
, & exidx_arm_sec
, exidx_sec
,
8377 8 * i
, & exidx_fn
, & fn_addr
, NULL
)
8378 || ! get_unwind_section_word (aux
, & exidx_arm_sec
, exidx_sec
,
8379 8 * i
+ 4, & exidx_entry
, & entry_addr
, NULL
))
8382 arm_free_section (& exidx_arm_sec
);
8383 arm_free_section (& extab_arm_sec
);
8387 /* ARM EHABI, Section 5:
8388 An index table entry consists of 2 words.
8389 The first word contains a prel31 offset to the start of a function, with bit 31 clear. */
8390 if (exidx_fn
& 0x80000000)
8391 warn (_("corrupt index table entry: %x\n"), exidx_fn
);
8393 fn
= arm_expand_prel31 (exidx_fn
, exidx_sec
->sh_addr
+ 8 * i
);
8395 arm_print_vma_and_name (aux
, fn
, fn_addr
);
8396 fputs (": ", stdout
);
8398 if (exidx_entry
== 1)
8400 print_vma (exidx_entry
, PREFIX_HEX
);
8401 fputs (" [cantunwind]\n", stdout
);
8403 else if (exidx_entry
& 0x80000000)
8405 print_vma (exidx_entry
, PREFIX_HEX
);
8406 fputc ('\n', stdout
);
8407 decode_arm_unwind (aux
, exidx_entry
, 4, 0, NULL
, NULL
);
8411 bfd_vma table
, table_offset
= 0;
8412 Elf_Internal_Shdr
*table_sec
;
8414 fputs ("@", stdout
);
8415 table
= arm_expand_prel31 (exidx_entry
, exidx_sec
->sh_addr
+ 8 * i
+ 4);
8416 print_vma (table
, PREFIX_HEX
);
8419 /* Locate the matching .ARM.extab. */
8420 if (entry_addr
.section
!= SHN_UNDEF
8421 && entry_addr
.section
< elf_header
.e_shnum
)
8423 table_sec
= section_headers
+ entry_addr
.section
;
8424 table_offset
= entry_addr
.offset
;
8426 if (table_offset
> table_sec
->sh_size
8427 || ((bfd_signed_vma
) table_offset
) < 0)
8429 warn (_("Unwind entry contains corrupt offset (0x%lx) into section %s\n"),
8430 (unsigned long) table_offset
,
8431 printable_section_name (table_sec
));
8437 table_sec
= find_section_by_address (table
);
8438 if (table_sec
!= NULL
)
8439 table_offset
= table
- table_sec
->sh_addr
;
8441 if (table_sec
== NULL
)
8443 warn (_("Could not locate .ARM.extab section containing 0x%lx.\n"),
8444 (unsigned long) table
);
8447 decode_arm_unwind (aux
, 0, 0, table_offset
, table_sec
,
8455 arm_free_section (&exidx_arm_sec
);
8456 arm_free_section (&extab_arm_sec
);
8459 /* Used for both ARM and C6X unwinding tables. */
8462 arm_process_unwind (FILE *file
)
8464 struct arm_unw_aux_info aux
;
8465 Elf_Internal_Shdr
*unwsec
= NULL
;
8466 Elf_Internal_Shdr
*strsec
;
8467 Elf_Internal_Shdr
*sec
;
8469 unsigned int sec_type
;
8471 switch (elf_header
.e_machine
)
8474 sec_type
= SHT_ARM_EXIDX
;
8478 sec_type
= SHT_C6000_UNWIND
;
8482 error (_("Unsupported architecture type %d encountered when processing unwind table\n"),
8483 elf_header
.e_machine
);
8487 if (string_table
== NULL
)
8490 memset (& aux
, 0, sizeof (aux
));
8493 for (i
= 0, sec
= section_headers
; i
< elf_header
.e_shnum
; ++i
, ++sec
)
8495 if (sec
->sh_type
== SHT_SYMTAB
&& sec
->sh_link
< elf_header
.e_shnum
)
8497 aux
.symtab
= GET_ELF_SYMBOLS (file
, sec
, & aux
.nsyms
);
8499 strsec
= section_headers
+ sec
->sh_link
;
8501 /* PR binutils/17531 file: 011-12666-0.004. */
8502 if (aux
.strtab
!= NULL
)
8504 error (_("Multiple string tables found in file.\n"));
8507 aux
.strtab
= get_data (NULL
, file
, strsec
->sh_offset
,
8508 1, strsec
->sh_size
, _("string table"));
8509 aux
.strtab_size
= aux
.strtab
!= NULL
? strsec
->sh_size
: 0;
8511 else if (sec
->sh_type
== sec_type
)
8516 printf (_("\nThere are no unwind sections in this file.\n"));
8518 for (i
= 0, sec
= section_headers
; i
< elf_header
.e_shnum
; ++i
, ++sec
)
8520 if (sec
->sh_type
== sec_type
)
8522 printf (_("\nUnwind table index '%s' at offset 0x%lx contains %lu entries:\n"),
8523 printable_section_name (sec
),
8524 (unsigned long) sec
->sh_offset
,
8525 (unsigned long) (sec
->sh_size
/ (2 * eh_addr_size
)));
8527 dump_arm_unwind (&aux
, sec
);
8534 free ((char *) aux
.strtab
);
8538 process_unwind (FILE * file
)
8540 struct unwind_handler
8543 void (* handler
)(FILE *);
8546 { EM_ARM
, arm_process_unwind
},
8547 { EM_IA_64
, ia64_process_unwind
},
8548 { EM_PARISC
, hppa_process_unwind
},
8549 { EM_TI_C6000
, arm_process_unwind
},
8557 for (i
= 0; handlers
[i
].handler
!= NULL
; i
++)
8558 if (elf_header
.e_machine
== handlers
[i
].machtype
)
8560 handlers
[i
].handler (file
);
8564 printf (_("\nThe decoding of unwind sections for machine type %s is not currently supported.\n"),
8565 get_machine_name (elf_header
.e_machine
));
8569 dynamic_section_mips_val (Elf_Internal_Dyn
* entry
)
8571 switch (entry
->d_tag
)
8574 if (entry
->d_un
.d_val
== 0)
8578 static const char * opts
[] =
8580 "QUICKSTART", "NOTPOT", "NO_LIBRARY_REPLACEMENT",
8581 "NO_MOVE", "SGI_ONLY", "GUARANTEE_INIT", "DELTA_C_PLUS_PLUS",
8582 "GUARANTEE_START_INIT", "PIXIE", "DEFAULT_DELAY_LOAD",
8583 "REQUICKSTART", "REQUICKSTARTED", "CORD", "NO_UNRES_UNDEF",
8589 for (cnt
= 0; cnt
< ARRAY_SIZE (opts
); ++cnt
)
8590 if (entry
->d_un
.d_val
& (1 << cnt
))
8592 printf ("%s%s", first
? "" : " ", opts
[cnt
]);
8598 case DT_MIPS_IVERSION
:
8599 if (VALID_DYNAMIC_NAME (entry
->d_un
.d_val
))
8600 printf (_("Interface Version: %s"), GET_DYNAMIC_NAME (entry
->d_un
.d_val
));
8604 sprintf_vma (buf
, entry
->d_un
.d_ptr
);
8605 /* Note: coded this way so that there is a single string for translation. */
8606 printf (_("<corrupt: %s>"), buf
);
8610 case DT_MIPS_TIME_STAMP
:
8614 time_t atime
= entry
->d_un
.d_val
;
8616 tmp
= gmtime (&atime
);
8617 /* PR 17531: file: 6accc532. */
8619 snprintf (timebuf
, sizeof (timebuf
), _("<corrupt>"));
8621 snprintf (timebuf
, sizeof (timebuf
), "%04u-%02u-%02uT%02u:%02u:%02u",
8622 tmp
->tm_year
+ 1900, tmp
->tm_mon
+ 1, tmp
->tm_mday
,
8623 tmp
->tm_hour
, tmp
->tm_min
, tmp
->tm_sec
);
8624 printf (_("Time Stamp: %s"), timebuf
);
8628 case DT_MIPS_RLD_VERSION
:
8629 case DT_MIPS_LOCAL_GOTNO
:
8630 case DT_MIPS_CONFLICTNO
:
8631 case DT_MIPS_LIBLISTNO
:
8632 case DT_MIPS_SYMTABNO
:
8633 case DT_MIPS_UNREFEXTNO
:
8634 case DT_MIPS_HIPAGENO
:
8635 case DT_MIPS_DELTA_CLASS_NO
:
8636 case DT_MIPS_DELTA_INSTANCE_NO
:
8637 case DT_MIPS_DELTA_RELOC_NO
:
8638 case DT_MIPS_DELTA_SYM_NO
:
8639 case DT_MIPS_DELTA_CLASSSYM_NO
:
8640 case DT_MIPS_COMPACT_SIZE
:
8641 print_vma (entry
->d_un
.d_ptr
, DEC
);
8645 print_vma (entry
->d_un
.d_ptr
, PREFIX_HEX
);
8651 dynamic_section_parisc_val (Elf_Internal_Dyn
* entry
)
8653 switch (entry
->d_tag
)
8655 case DT_HP_DLD_FLAGS
:
8664 { DT_HP_DEBUG_PRIVATE
, "HP_DEBUG_PRIVATE" },
8665 { DT_HP_DEBUG_CALLBACK
, "HP_DEBUG_CALLBACK" },
8666 { DT_HP_DEBUG_CALLBACK_BOR
, "HP_DEBUG_CALLBACK_BOR" },
8667 { DT_HP_NO_ENVVAR
, "HP_NO_ENVVAR" },
8668 { DT_HP_BIND_NOW
, "HP_BIND_NOW" },
8669 { DT_HP_BIND_NONFATAL
, "HP_BIND_NONFATAL" },
8670 { DT_HP_BIND_VERBOSE
, "HP_BIND_VERBOSE" },
8671 { DT_HP_BIND_RESTRICTED
, "HP_BIND_RESTRICTED" },
8672 { DT_HP_BIND_SYMBOLIC
, "HP_BIND_SYMBOLIC" },
8673 { DT_HP_RPATH_FIRST
, "HP_RPATH_FIRST" },
8674 { DT_HP_BIND_DEPTH_FIRST
, "HP_BIND_DEPTH_FIRST" },
8675 { DT_HP_GST
, "HP_GST" },
8676 { DT_HP_SHLIB_FIXED
, "HP_SHLIB_FIXED" },
8677 { DT_HP_MERGE_SHLIB_SEG
, "HP_MERGE_SHLIB_SEG" },
8678 { DT_HP_NODELETE
, "HP_NODELETE" },
8679 { DT_HP_GROUP
, "HP_GROUP" },
8680 { DT_HP_PROTECT_LINKAGE_TABLE
, "HP_PROTECT_LINKAGE_TABLE" }
8684 bfd_vma val
= entry
->d_un
.d_val
;
8686 for (cnt
= 0; cnt
< ARRAY_SIZE (flags
); ++cnt
)
8687 if (val
& flags
[cnt
].bit
)
8691 fputs (flags
[cnt
].str
, stdout
);
8693 val
^= flags
[cnt
].bit
;
8696 if (val
!= 0 || first
)
8700 print_vma (val
, HEX
);
8706 print_vma (entry
->d_un
.d_ptr
, PREFIX_HEX
);
8714 /* VMS vs Unix time offset and factor. */
8716 #define VMS_EPOCH_OFFSET 35067168000000000LL
8717 #define VMS_GRANULARITY_FACTOR 10000000
8719 /* Display a VMS time in a human readable format. */
8722 print_vms_time (bfd_int64_t vmstime
)
8727 unxtime
= (vmstime
- VMS_EPOCH_OFFSET
) / VMS_GRANULARITY_FACTOR
;
8728 tm
= gmtime (&unxtime
);
8729 printf ("%04u-%02u-%02uT%02u:%02u:%02u",
8730 tm
->tm_year
+ 1900, tm
->tm_mon
+ 1, tm
->tm_mday
,
8731 tm
->tm_hour
, tm
->tm_min
, tm
->tm_sec
);
8736 dynamic_section_ia64_val (Elf_Internal_Dyn
* entry
)
8738 switch (entry
->d_tag
)
8740 case DT_IA_64_PLT_RESERVE
:
8741 /* First 3 slots reserved. */
8742 print_vma (entry
->d_un
.d_ptr
, PREFIX_HEX
);
8744 print_vma (entry
->d_un
.d_ptr
+ (3 * 8), PREFIX_HEX
);
8747 case DT_IA_64_VMS_LINKTIME
:
8749 print_vms_time (entry
->d_un
.d_val
);
8753 case DT_IA_64_VMS_LNKFLAGS
:
8754 print_vma (entry
->d_un
.d_ptr
, PREFIX_HEX
);
8755 if (entry
->d_un
.d_val
& VMS_LF_CALL_DEBUG
)
8756 printf (" CALL_DEBUG");
8757 if (entry
->d_un
.d_val
& VMS_LF_NOP0BUFS
)
8758 printf (" NOP0BUFS");
8759 if (entry
->d_un
.d_val
& VMS_LF_P0IMAGE
)
8760 printf (" P0IMAGE");
8761 if (entry
->d_un
.d_val
& VMS_LF_MKTHREADS
)
8762 printf (" MKTHREADS");
8763 if (entry
->d_un
.d_val
& VMS_LF_UPCALLS
)
8764 printf (" UPCALLS");
8765 if (entry
->d_un
.d_val
& VMS_LF_IMGSTA
)
8767 if (entry
->d_un
.d_val
& VMS_LF_INITIALIZE
)
8768 printf (" INITIALIZE");
8769 if (entry
->d_un
.d_val
& VMS_LF_MAIN
)
8771 if (entry
->d_un
.d_val
& VMS_LF_EXE_INIT
)
8772 printf (" EXE_INIT");
8773 if (entry
->d_un
.d_val
& VMS_LF_TBK_IN_IMG
)
8774 printf (" TBK_IN_IMG");
8775 if (entry
->d_un
.d_val
& VMS_LF_DBG_IN_IMG
)
8776 printf (" DBG_IN_IMG");
8777 if (entry
->d_un
.d_val
& VMS_LF_TBK_IN_DSF
)
8778 printf (" TBK_IN_DSF");
8779 if (entry
->d_un
.d_val
& VMS_LF_DBG_IN_DSF
)
8780 printf (" DBG_IN_DSF");
8781 if (entry
->d_un
.d_val
& VMS_LF_SIGNATURES
)
8782 printf (" SIGNATURES");
8783 if (entry
->d_un
.d_val
& VMS_LF_REL_SEG_OFF
)
8784 printf (" REL_SEG_OFF");
8788 print_vma (entry
->d_un
.d_ptr
, PREFIX_HEX
);
8795 get_32bit_dynamic_section (FILE * file
)
8797 Elf32_External_Dyn
* edyn
;
8798 Elf32_External_Dyn
* ext
;
8799 Elf_Internal_Dyn
* entry
;
8801 edyn
= (Elf32_External_Dyn
*) get_data (NULL
, file
, dynamic_addr
, 1,
8802 dynamic_size
, _("dynamic section"));
8806 /* SGI's ELF has more than one section in the DYNAMIC segment, and we
8807 might not have the luxury of section headers. Look for the DT_NULL
8808 terminator to determine the number of entries. */
8809 for (ext
= edyn
, dynamic_nent
= 0;
8810 (char *) (ext
+ 1) <= (char *) edyn
+ dynamic_size
;
8814 if (BYTE_GET (ext
->d_tag
) == DT_NULL
)
8818 dynamic_section
= (Elf_Internal_Dyn
*) cmalloc (dynamic_nent
,
8820 if (dynamic_section
== NULL
)
8822 error (_("Out of memory allocating space for %lu dynamic entries\n"),
8823 (unsigned long) dynamic_nent
);
8828 for (ext
= edyn
, entry
= dynamic_section
;
8829 entry
< dynamic_section
+ dynamic_nent
;
8832 entry
->d_tag
= BYTE_GET (ext
->d_tag
);
8833 entry
->d_un
.d_val
= BYTE_GET (ext
->d_un
.d_val
);
8842 get_64bit_dynamic_section (FILE * file
)
8844 Elf64_External_Dyn
* edyn
;
8845 Elf64_External_Dyn
* ext
;
8846 Elf_Internal_Dyn
* entry
;
8848 /* Read in the data. */
8849 edyn
= (Elf64_External_Dyn
*) get_data (NULL
, file
, dynamic_addr
, 1,
8850 dynamic_size
, _("dynamic section"));
8854 /* SGI's ELF has more than one section in the DYNAMIC segment, and we
8855 might not have the luxury of section headers. Look for the DT_NULL
8856 terminator to determine the number of entries. */
8857 for (ext
= edyn
, dynamic_nent
= 0;
8858 /* PR 17533 file: 033-67080-0.004 - do not read past end of buffer. */
8859 (char *) (ext
+ 1) <= (char *) edyn
+ dynamic_size
;
8863 if (BYTE_GET (ext
->d_tag
) == DT_NULL
)
8867 dynamic_section
= (Elf_Internal_Dyn
*) cmalloc (dynamic_nent
,
8869 if (dynamic_section
== NULL
)
8871 error (_("Out of memory allocating space for %lu dynamic entries\n"),
8872 (unsigned long) dynamic_nent
);
8877 /* Convert from external to internal formats. */
8878 for (ext
= edyn
, entry
= dynamic_section
;
8879 entry
< dynamic_section
+ dynamic_nent
;
8882 entry
->d_tag
= BYTE_GET (ext
->d_tag
);
8883 entry
->d_un
.d_val
= BYTE_GET (ext
->d_un
.d_val
);
8892 print_dynamic_flags (bfd_vma flags
)
8900 flag
= flags
& - flags
;
8910 case DF_ORIGIN
: fputs ("ORIGIN", stdout
); break;
8911 case DF_SYMBOLIC
: fputs ("SYMBOLIC", stdout
); break;
8912 case DF_TEXTREL
: fputs ("TEXTREL", stdout
); break;
8913 case DF_BIND_NOW
: fputs ("BIND_NOW", stdout
); break;
8914 case DF_STATIC_TLS
: fputs ("STATIC_TLS", stdout
); break;
8915 default: fputs (_("unknown"), stdout
); break;
8921 /* Parse and display the contents of the dynamic section. */
8924 process_dynamic_section (FILE * file
)
8926 Elf_Internal_Dyn
* entry
;
8928 if (dynamic_size
== 0)
8931 printf (_("\nThere is no dynamic section in this file.\n"));
8938 if (! get_32bit_dynamic_section (file
))
8941 else if (! get_64bit_dynamic_section (file
))
8944 /* Find the appropriate symbol table. */
8945 if (dynamic_symbols
== NULL
)
8947 for (entry
= dynamic_section
;
8948 entry
< dynamic_section
+ dynamic_nent
;
8951 Elf_Internal_Shdr section
;
8953 if (entry
->d_tag
!= DT_SYMTAB
)
8956 dynamic_info
[DT_SYMTAB
] = entry
->d_un
.d_val
;
8958 /* Since we do not know how big the symbol table is,
8959 we default to reading in the entire file (!) and
8960 processing that. This is overkill, I know, but it
8962 section
.sh_offset
= offset_from_vma (file
, entry
->d_un
.d_val
, 0);
8964 if (archive_file_offset
!= 0)
8965 section
.sh_size
= archive_file_size
- section
.sh_offset
;
8968 if (fseek (file
, 0, SEEK_END
))
8969 error (_("Unable to seek to end of file!\n"));
8971 section
.sh_size
= ftell (file
) - section
.sh_offset
;
8975 section
.sh_entsize
= sizeof (Elf32_External_Sym
);
8977 section
.sh_entsize
= sizeof (Elf64_External_Sym
);
8978 section
.sh_name
= string_table_length
;
8980 dynamic_symbols
= GET_ELF_SYMBOLS (file
, §ion
, & num_dynamic_syms
);
8981 if (num_dynamic_syms
< 1)
8983 error (_("Unable to determine the number of symbols to load\n"));
8989 /* Similarly find a string table. */
8990 if (dynamic_strings
== NULL
)
8992 for (entry
= dynamic_section
;
8993 entry
< dynamic_section
+ dynamic_nent
;
8996 unsigned long offset
;
8999 if (entry
->d_tag
!= DT_STRTAB
)
9002 dynamic_info
[DT_STRTAB
] = entry
->d_un
.d_val
;
9004 /* Since we do not know how big the string table is,
9005 we default to reading in the entire file (!) and
9006 processing that. This is overkill, I know, but it
9009 offset
= offset_from_vma (file
, entry
->d_un
.d_val
, 0);
9011 if (archive_file_offset
!= 0)
9012 str_tab_len
= archive_file_size
- offset
;
9015 if (fseek (file
, 0, SEEK_END
))
9016 error (_("Unable to seek to end of file\n"));
9017 str_tab_len
= ftell (file
) - offset
;
9020 if (str_tab_len
< 1)
9023 (_("Unable to determine the length of the dynamic string table\n"));
9027 dynamic_strings
= (char *) get_data (NULL
, file
, offset
, 1,
9029 _("dynamic string table"));
9030 dynamic_strings_length
= dynamic_strings
== NULL
? 0 : str_tab_len
;
9035 /* And find the syminfo section if available. */
9036 if (dynamic_syminfo
== NULL
)
9038 unsigned long syminsz
= 0;
9040 for (entry
= dynamic_section
;
9041 entry
< dynamic_section
+ dynamic_nent
;
9044 if (entry
->d_tag
== DT_SYMINENT
)
9046 /* Note: these braces are necessary to avoid a syntax
9047 error from the SunOS4 C compiler. */
9048 /* PR binutils/17531: A corrupt file can trigger this test.
9049 So do not use an assert, instead generate an error message. */
9050 if (sizeof (Elf_External_Syminfo
) != entry
->d_un
.d_val
)
9051 error (_("Bad value (%d) for SYMINENT entry\n"),
9052 (int) entry
->d_un
.d_val
);
9054 else if (entry
->d_tag
== DT_SYMINSZ
)
9055 syminsz
= entry
->d_un
.d_val
;
9056 else if (entry
->d_tag
== DT_SYMINFO
)
9057 dynamic_syminfo_offset
= offset_from_vma (file
, entry
->d_un
.d_val
,
9061 if (dynamic_syminfo_offset
!= 0 && syminsz
!= 0)
9063 Elf_External_Syminfo
* extsyminfo
;
9064 Elf_External_Syminfo
* extsym
;
9065 Elf_Internal_Syminfo
* syminfo
;
9067 /* There is a syminfo section. Read the data. */
9068 extsyminfo
= (Elf_External_Syminfo
*)
9069 get_data (NULL
, file
, dynamic_syminfo_offset
, 1, syminsz
,
9070 _("symbol information"));
9074 dynamic_syminfo
= (Elf_Internal_Syminfo
*) malloc (syminsz
);
9075 if (dynamic_syminfo
== NULL
)
9077 error (_("Out of memory allocating %lu byte for dynamic symbol info\n"),
9078 (unsigned long) syminsz
);
9082 dynamic_syminfo_nent
= syminsz
/ sizeof (Elf_External_Syminfo
);
9083 for (syminfo
= dynamic_syminfo
, extsym
= extsyminfo
;
9084 syminfo
< dynamic_syminfo
+ dynamic_syminfo_nent
;
9085 ++syminfo
, ++extsym
)
9087 syminfo
->si_boundto
= BYTE_GET (extsym
->si_boundto
);
9088 syminfo
->si_flags
= BYTE_GET (extsym
->si_flags
);
9095 if (do_dynamic
&& dynamic_addr
)
9096 printf (_("\nDynamic section at offset 0x%lx contains %lu entries:\n"),
9097 dynamic_addr
, (unsigned long) dynamic_nent
);
9099 printf (_(" Tag Type Name/Value\n"));
9101 for (entry
= dynamic_section
;
9102 entry
< dynamic_section
+ dynamic_nent
;
9110 print_vma (entry
->d_tag
, FULL_HEX
);
9111 dtype
= get_dynamic_type (entry
->d_tag
);
9112 printf (" (%s)%*s", dtype
,
9113 ((is_32bit_elf
? 27 : 19)
9114 - (int) strlen (dtype
)),
9118 switch (entry
->d_tag
)
9122 print_dynamic_flags (entry
->d_un
.d_val
);
9132 switch (entry
->d_tag
)
9135 printf (_("Auxiliary library"));
9139 printf (_("Filter library"));
9143 printf (_("Configuration file"));
9147 printf (_("Dependency audit library"));
9151 printf (_("Audit library"));
9155 if (VALID_DYNAMIC_NAME (entry
->d_un
.d_val
))
9156 printf (": [%s]\n", GET_DYNAMIC_NAME (entry
->d_un
.d_val
));
9160 print_vma (entry
->d_un
.d_val
, PREFIX_HEX
);
9169 printf (_("Flags:"));
9171 if (entry
->d_un
.d_val
== 0)
9172 printf (_(" None\n"));
9175 unsigned long int val
= entry
->d_un
.d_val
;
9177 if (val
& DTF_1_PARINIT
)
9179 printf (" PARINIT");
9180 val
^= DTF_1_PARINIT
;
9182 if (val
& DTF_1_CONFEXP
)
9184 printf (" CONFEXP");
9185 val
^= DTF_1_CONFEXP
;
9188 printf (" %lx", val
);
9197 printf (_("Flags:"));
9199 if (entry
->d_un
.d_val
== 0)
9200 printf (_(" None\n"));
9203 unsigned long int val
= entry
->d_un
.d_val
;
9205 if (val
& DF_P1_LAZYLOAD
)
9207 printf (" LAZYLOAD");
9208 val
^= DF_P1_LAZYLOAD
;
9210 if (val
& DF_P1_GROUPPERM
)
9212 printf (" GROUPPERM");
9213 val
^= DF_P1_GROUPPERM
;
9216 printf (" %lx", val
);
9225 printf (_("Flags:"));
9226 if (entry
->d_un
.d_val
== 0)
9227 printf (_(" None\n"));
9230 unsigned long int val
= entry
->d_un
.d_val
;
9237 if (val
& DF_1_GLOBAL
)
9242 if (val
& DF_1_GROUP
)
9247 if (val
& DF_1_NODELETE
)
9249 printf (" NODELETE");
9250 val
^= DF_1_NODELETE
;
9252 if (val
& DF_1_LOADFLTR
)
9254 printf (" LOADFLTR");
9255 val
^= DF_1_LOADFLTR
;
9257 if (val
& DF_1_INITFIRST
)
9259 printf (" INITFIRST");
9260 val
^= DF_1_INITFIRST
;
9262 if (val
& DF_1_NOOPEN
)
9267 if (val
& DF_1_ORIGIN
)
9272 if (val
& DF_1_DIRECT
)
9277 if (val
& DF_1_TRANS
)
9282 if (val
& DF_1_INTERPOSE
)
9284 printf (" INTERPOSE");
9285 val
^= DF_1_INTERPOSE
;
9287 if (val
& DF_1_NODEFLIB
)
9289 printf (" NODEFLIB");
9290 val
^= DF_1_NODEFLIB
;
9292 if (val
& DF_1_NODUMP
)
9297 if (val
& DF_1_CONFALT
)
9299 printf (" CONFALT");
9300 val
^= DF_1_CONFALT
;
9302 if (val
& DF_1_ENDFILTEE
)
9304 printf (" ENDFILTEE");
9305 val
^= DF_1_ENDFILTEE
;
9307 if (val
& DF_1_DISPRELDNE
)
9309 printf (" DISPRELDNE");
9310 val
^= DF_1_DISPRELDNE
;
9312 if (val
& DF_1_DISPRELPND
)
9314 printf (" DISPRELPND");
9315 val
^= DF_1_DISPRELPND
;
9317 if (val
& DF_1_NODIRECT
)
9319 printf (" NODIRECT");
9320 val
^= DF_1_NODIRECT
;
9322 if (val
& DF_1_IGNMULDEF
)
9324 printf (" IGNMULDEF");
9325 val
^= DF_1_IGNMULDEF
;
9327 if (val
& DF_1_NOKSYMS
)
9329 printf (" NOKSYMS");
9330 val
^= DF_1_NOKSYMS
;
9332 if (val
& DF_1_NOHDR
)
9337 if (val
& DF_1_EDITED
)
9342 if (val
& DF_1_NORELOC
)
9344 printf (" NORELOC");
9345 val
^= DF_1_NORELOC
;
9347 if (val
& DF_1_SYMINTPOSE
)
9349 printf (" SYMINTPOSE");
9350 val
^= DF_1_SYMINTPOSE
;
9352 if (val
& DF_1_GLOBAUDIT
)
9354 printf (" GLOBAUDIT");
9355 val
^= DF_1_GLOBAUDIT
;
9357 if (val
& DF_1_SINGLETON
)
9359 printf (" SINGLETON");
9360 val
^= DF_1_SINGLETON
;
9362 if (val
& DF_1_STUB
)
9373 printf (" %lx", val
);
9380 dynamic_info
[entry
->d_tag
] = entry
->d_un
.d_val
;
9382 puts (get_dynamic_type (entry
->d_un
.d_val
));
9402 dynamic_info
[entry
->d_tag
] = entry
->d_un
.d_val
;
9408 if (VALID_DYNAMIC_NAME (entry
->d_un
.d_val
))
9409 name
= GET_DYNAMIC_NAME (entry
->d_un
.d_val
);
9415 switch (entry
->d_tag
)
9418 printf (_("Shared library: [%s]"), name
);
9420 if (streq (name
, program_interpreter
))
9421 printf (_(" program interpreter"));
9425 printf (_("Library soname: [%s]"), name
);
9429 printf (_("Library rpath: [%s]"), name
);
9433 printf (_("Library runpath: [%s]"), name
);
9437 print_vma (entry
->d_un
.d_val
, PREFIX_HEX
);
9442 print_vma (entry
->d_un
.d_val
, PREFIX_HEX
);
9455 dynamic_info
[entry
->d_tag
] = entry
->d_un
.d_val
;
9459 case DT_INIT_ARRAYSZ
:
9460 case DT_FINI_ARRAYSZ
:
9461 case DT_GNU_CONFLICTSZ
:
9462 case DT_GNU_LIBLISTSZ
:
9465 print_vma (entry
->d_un
.d_val
, UNSIGNED
);
9466 printf (_(" (bytes)\n"));
9476 print_vma (entry
->d_un
.d_val
, UNSIGNED
);
9489 if (entry
->d_tag
== DT_USED
9490 && VALID_DYNAMIC_NAME (entry
->d_un
.d_val
))
9492 char * name
= GET_DYNAMIC_NAME (entry
->d_un
.d_val
);
9496 printf (_("Not needed object: [%s]\n"), name
);
9501 print_vma (entry
->d_un
.d_val
, PREFIX_HEX
);
9507 /* The value of this entry is ignored. */
9512 case DT_GNU_PRELINKED
:
9516 time_t atime
= entry
->d_un
.d_val
;
9518 tmp
= gmtime (&atime
);
9519 /* PR 17533 file: 041-1244816-0.004. */
9521 printf (_("<corrupt time val: %lx"),
9522 (unsigned long) atime
);
9524 printf ("%04u-%02u-%02uT%02u:%02u:%02u\n",
9525 tmp
->tm_year
+ 1900, tmp
->tm_mon
+ 1, tmp
->tm_mday
,
9526 tmp
->tm_hour
, tmp
->tm_min
, tmp
->tm_sec
);
9532 dynamic_info_DT_GNU_HASH
= entry
->d_un
.d_val
;
9535 print_vma (entry
->d_un
.d_val
, PREFIX_HEX
);
9541 if ((entry
->d_tag
>= DT_VERSYM
) && (entry
->d_tag
<= DT_VERNEEDNUM
))
9542 version_info
[DT_VERSIONTAGIDX (entry
->d_tag
)] =
9547 switch (elf_header
.e_machine
)
9550 case EM_MIPS_RS3_LE
:
9551 dynamic_section_mips_val (entry
);
9554 dynamic_section_parisc_val (entry
);
9557 dynamic_section_ia64_val (entry
);
9560 print_vma (entry
->d_un
.d_val
, PREFIX_HEX
);
9572 get_ver_flags (unsigned int flags
)
9574 static char buff
[32];
9581 if (flags
& VER_FLG_BASE
)
9582 strcat (buff
, "BASE ");
9584 if (flags
& VER_FLG_WEAK
)
9586 if (flags
& VER_FLG_BASE
)
9587 strcat (buff
, "| ");
9589 strcat (buff
, "WEAK ");
9592 if (flags
& VER_FLG_INFO
)
9594 if (flags
& (VER_FLG_BASE
|VER_FLG_WEAK
))
9595 strcat (buff
, "| ");
9597 strcat (buff
, "INFO ");
9600 if (flags
& ~(VER_FLG_BASE
| VER_FLG_WEAK
| VER_FLG_INFO
))
9601 strcat (buff
, _("| <unknown>"));
9606 /* Display the contents of the version sections. */
9609 process_version_sections (FILE * file
)
9611 Elf_Internal_Shdr
* section
;
9618 for (i
= 0, section
= section_headers
;
9619 i
< elf_header
.e_shnum
;
9622 switch (section
->sh_type
)
9624 case SHT_GNU_verdef
:
9626 Elf_External_Verdef
* edefs
;
9633 printf (_("\nVersion definition section '%s' contains %u entries:\n"),
9634 printable_section_name (section
),
9637 printf (_(" Addr: 0x"));
9638 printf_vma (section
->sh_addr
);
9639 printf (_(" Offset: %#08lx Link: %u (%s)"),
9640 (unsigned long) section
->sh_offset
, section
->sh_link
,
9641 printable_section_name_from_index (section
->sh_link
));
9643 edefs
= (Elf_External_Verdef
*)
9644 get_data (NULL
, file
, section
->sh_offset
, 1,section
->sh_size
,
9645 _("version definition section"));
9648 endbuf
= (char *) edefs
+ section
->sh_size
;
9650 for (idx
= cnt
= 0; cnt
< section
->sh_info
; ++cnt
)
9653 Elf_External_Verdef
* edef
;
9654 Elf_Internal_Verdef ent
;
9655 Elf_External_Verdaux
* eaux
;
9656 Elf_Internal_Verdaux aux
;
9660 /* Check for very large indicies. */
9661 if (idx
> (size_t) (endbuf
- (char *) edefs
))
9664 vstart
= ((char *) edefs
) + idx
;
9665 if (vstart
+ sizeof (*edef
) > endbuf
)
9668 edef
= (Elf_External_Verdef
*) vstart
;
9670 ent
.vd_version
= BYTE_GET (edef
->vd_version
);
9671 ent
.vd_flags
= BYTE_GET (edef
->vd_flags
);
9672 ent
.vd_ndx
= BYTE_GET (edef
->vd_ndx
);
9673 ent
.vd_cnt
= BYTE_GET (edef
->vd_cnt
);
9674 ent
.vd_hash
= BYTE_GET (edef
->vd_hash
);
9675 ent
.vd_aux
= BYTE_GET (edef
->vd_aux
);
9676 ent
.vd_next
= BYTE_GET (edef
->vd_next
);
9678 printf (_(" %#06x: Rev: %d Flags: %s"),
9679 idx
, ent
.vd_version
, get_ver_flags (ent
.vd_flags
));
9681 printf (_(" Index: %d Cnt: %d "),
9682 ent
.vd_ndx
, ent
.vd_cnt
);
9684 /* Check for overflow. */
9685 if (ent
.vd_aux
> (size_t) (endbuf
- vstart
))
9688 vstart
+= ent
.vd_aux
;
9690 eaux
= (Elf_External_Verdaux
*) vstart
;
9692 aux
.vda_name
= BYTE_GET (eaux
->vda_name
);
9693 aux
.vda_next
= BYTE_GET (eaux
->vda_next
);
9695 if (VALID_DYNAMIC_NAME (aux
.vda_name
))
9696 printf (_("Name: %s\n"), GET_DYNAMIC_NAME (aux
.vda_name
));
9698 printf (_("Name index: %ld\n"), aux
.vda_name
);
9700 isum
= idx
+ ent
.vd_aux
;
9702 for (j
= 1; j
< ent
.vd_cnt
; j
++)
9704 /* Check for overflow. */
9705 if (aux
.vda_next
> (size_t) (endbuf
- vstart
))
9708 isum
+= aux
.vda_next
;
9709 vstart
+= aux
.vda_next
;
9711 eaux
= (Elf_External_Verdaux
*) vstart
;
9712 if (vstart
+ sizeof (*eaux
) > endbuf
)
9715 aux
.vda_name
= BYTE_GET (eaux
->vda_name
);
9716 aux
.vda_next
= BYTE_GET (eaux
->vda_next
);
9718 if (VALID_DYNAMIC_NAME (aux
.vda_name
))
9719 printf (_(" %#06x: Parent %d: %s\n"),
9720 isum
, j
, GET_DYNAMIC_NAME (aux
.vda_name
));
9722 printf (_(" %#06x: Parent %d, name index: %ld\n"),
9723 isum
, j
, aux
.vda_name
);
9727 printf (_(" Version def aux past end of section\n"));
9729 /* PR 17531: file: id:000001,src:000172+005151,op:splice,rep:2. */
9730 if (idx
+ ent
.vd_next
<= idx
)
9736 if (cnt
< section
->sh_info
)
9737 printf (_(" Version definition past end of section\n"));
9743 case SHT_GNU_verneed
:
9745 Elf_External_Verneed
* eneed
;
9752 printf (_("\nVersion needs section '%s' contains %u entries:\n"),
9753 printable_section_name (section
), section
->sh_info
);
9755 printf (_(" Addr: 0x"));
9756 printf_vma (section
->sh_addr
);
9757 printf (_(" Offset: %#08lx Link: %u (%s)\n"),
9758 (unsigned long) section
->sh_offset
, section
->sh_link
,
9759 printable_section_name_from_index (section
->sh_link
));
9761 eneed
= (Elf_External_Verneed
*) get_data (NULL
, file
,
9762 section
->sh_offset
, 1,
9764 _("Version Needs section"));
9767 endbuf
= (char *) eneed
+ section
->sh_size
;
9769 for (idx
= cnt
= 0; cnt
< section
->sh_info
; ++cnt
)
9771 Elf_External_Verneed
* entry
;
9772 Elf_Internal_Verneed ent
;
9777 if (idx
> (size_t) (endbuf
- (char *) eneed
))
9780 vstart
= ((char *) eneed
) + idx
;
9781 if (vstart
+ sizeof (*entry
) > endbuf
)
9784 entry
= (Elf_External_Verneed
*) vstart
;
9786 ent
.vn_version
= BYTE_GET (entry
->vn_version
);
9787 ent
.vn_cnt
= BYTE_GET (entry
->vn_cnt
);
9788 ent
.vn_file
= BYTE_GET (entry
->vn_file
);
9789 ent
.vn_aux
= BYTE_GET (entry
->vn_aux
);
9790 ent
.vn_next
= BYTE_GET (entry
->vn_next
);
9792 printf (_(" %#06x: Version: %d"), idx
, ent
.vn_version
);
9794 if (VALID_DYNAMIC_NAME (ent
.vn_file
))
9795 printf (_(" File: %s"), GET_DYNAMIC_NAME (ent
.vn_file
));
9797 printf (_(" File: %lx"), ent
.vn_file
);
9799 printf (_(" Cnt: %d\n"), ent
.vn_cnt
);
9801 /* Check for overflow. */
9802 if (ent
.vn_aux
> (size_t) (endbuf
- vstart
))
9804 vstart
+= ent
.vn_aux
;
9806 for (j
= 0, isum
= idx
+ ent
.vn_aux
; j
< ent
.vn_cnt
; ++j
)
9808 Elf_External_Vernaux
* eaux
;
9809 Elf_Internal_Vernaux aux
;
9811 if (vstart
+ sizeof (*eaux
) > endbuf
)
9813 eaux
= (Elf_External_Vernaux
*) vstart
;
9815 aux
.vna_hash
= BYTE_GET (eaux
->vna_hash
);
9816 aux
.vna_flags
= BYTE_GET (eaux
->vna_flags
);
9817 aux
.vna_other
= BYTE_GET (eaux
->vna_other
);
9818 aux
.vna_name
= BYTE_GET (eaux
->vna_name
);
9819 aux
.vna_next
= BYTE_GET (eaux
->vna_next
);
9821 if (VALID_DYNAMIC_NAME (aux
.vna_name
))
9822 printf (_(" %#06x: Name: %s"),
9823 isum
, GET_DYNAMIC_NAME (aux
.vna_name
));
9825 printf (_(" %#06x: Name index: %lx"),
9826 isum
, aux
.vna_name
);
9828 printf (_(" Flags: %s Version: %d\n"),
9829 get_ver_flags (aux
.vna_flags
), aux
.vna_other
);
9831 /* Check for overflow. */
9832 if (aux
.vna_next
> (size_t) (endbuf
- vstart
)
9833 || (aux
.vna_next
== 0 && j
< ent
.vn_cnt
- 1))
9835 warn (_("Invalid vna_next field of %lx\n"),
9840 isum
+= aux
.vna_next
;
9841 vstart
+= aux
.vna_next
;
9845 warn (_("Missing Version Needs auxillary information\n"));
9847 if (ent
.vn_next
== 0 && cnt
< section
->sh_info
- 1)
9849 warn (_("Corrupt Version Needs structure - offset to next structure is zero with entries still left to be processed\n"));
9850 cnt
= section
->sh_info
;
9856 if (cnt
< section
->sh_info
)
9857 warn (_("Missing Version Needs information\n"));
9863 case SHT_GNU_versym
:
9865 Elf_Internal_Shdr
* link_section
;
9868 unsigned char * edata
;
9869 unsigned short * data
;
9871 Elf_Internal_Sym
* symbols
;
9872 Elf_Internal_Shdr
* string_sec
;
9873 unsigned long num_syms
;
9876 if (section
->sh_link
>= elf_header
.e_shnum
)
9879 link_section
= section_headers
+ section
->sh_link
;
9880 total
= section
->sh_size
/ sizeof (Elf_External_Versym
);
9882 if (link_section
->sh_link
>= elf_header
.e_shnum
)
9887 symbols
= GET_ELF_SYMBOLS (file
, link_section
, & num_syms
);
9888 if (symbols
== NULL
)
9891 string_sec
= section_headers
+ link_section
->sh_link
;
9893 strtab
= (char *) get_data (NULL
, file
, string_sec
->sh_offset
, 1,
9894 string_sec
->sh_size
,
9895 _("version string table"));
9902 printf (_("\nVersion symbols section '%s' contains %lu entries:\n"),
9903 printable_section_name (section
), (unsigned long) total
);
9905 printf (_(" Addr: "));
9906 printf_vma (section
->sh_addr
);
9907 printf (_(" Offset: %#08lx Link: %u (%s)\n"),
9908 (unsigned long) section
->sh_offset
, section
->sh_link
,
9909 printable_section_name (link_section
));
9911 off
= offset_from_vma (file
,
9912 version_info
[DT_VERSIONTAGIDX (DT_VERSYM
)],
9913 total
* sizeof (short));
9914 edata
= (unsigned char *) get_data (NULL
, file
, off
, total
,
9916 _("version symbol data"));
9924 data
= (short unsigned int *) cmalloc (total
, sizeof (short));
9926 for (cnt
= total
; cnt
--;)
9927 data
[cnt
] = byte_get (edata
+ cnt
* sizeof (short),
9932 for (cnt
= 0; cnt
< total
; cnt
+= 4)
9936 char *invalid
= _("*invalid*");
9938 printf (" %03x:", cnt
);
9940 for (j
= 0; (j
< 4) && (cnt
+ j
) < total
; ++j
)
9941 switch (data
[cnt
+ j
])
9944 fputs (_(" 0 (*local*) "), stdout
);
9948 fputs (_(" 1 (*global*) "), stdout
);
9952 nn
= printf ("%4x%c", data
[cnt
+ j
] & VERSYM_VERSION
,
9953 data
[cnt
+ j
] & VERSYM_HIDDEN
? 'h' : ' ');
9955 /* If this index value is greater than the size of the symbols
9956 array, break to avoid an out-of-bounds read. */
9957 if ((unsigned long)(cnt
+ j
) >= num_syms
)
9959 warn (_("invalid index into symbol array\n"));
9964 if (version_info
[DT_VERSIONTAGIDX (DT_VERNEED
)])
9966 Elf_Internal_Verneed ivn
;
9967 unsigned long offset
;
9969 offset
= offset_from_vma
9970 (file
, version_info
[DT_VERSIONTAGIDX (DT_VERNEED
)],
9971 sizeof (Elf_External_Verneed
));
9975 Elf_Internal_Vernaux ivna
;
9976 Elf_External_Verneed evn
;
9977 Elf_External_Vernaux evna
;
9978 unsigned long a_off
;
9980 if (get_data (&evn
, file
, offset
, sizeof (evn
), 1,
9981 _("version need")) == NULL
)
9984 ivn
.vn_aux
= BYTE_GET (evn
.vn_aux
);
9985 ivn
.vn_next
= BYTE_GET (evn
.vn_next
);
9987 a_off
= offset
+ ivn
.vn_aux
;
9991 if (get_data (&evna
, file
, a_off
, sizeof (evna
),
9992 1, _("version need aux (2)")) == NULL
)
9999 ivna
.vna_next
= BYTE_GET (evna
.vna_next
);
10000 ivna
.vna_other
= BYTE_GET (evna
.vna_other
);
10003 a_off
+= ivna
.vna_next
;
10005 while (ivna
.vna_other
!= data
[cnt
+ j
]
10006 && ivna
.vna_next
!= 0);
10008 if (ivna
.vna_other
== data
[cnt
+ j
])
10010 ivna
.vna_name
= BYTE_GET (evna
.vna_name
);
10012 if (ivna
.vna_name
>= string_sec
->sh_size
)
10015 name
= strtab
+ ivna
.vna_name
;
10019 offset
+= ivn
.vn_next
;
10021 while (ivn
.vn_next
);
10024 if (data
[cnt
+ j
] != 0x8001
10025 && version_info
[DT_VERSIONTAGIDX (DT_VERDEF
)])
10027 Elf_Internal_Verdef ivd
;
10028 Elf_External_Verdef evd
;
10029 unsigned long offset
;
10031 offset
= offset_from_vma
10032 (file
, version_info
[DT_VERSIONTAGIDX (DT_VERDEF
)],
10037 if (get_data (&evd
, file
, offset
, sizeof (evd
), 1,
10038 _("version def")) == NULL
)
10041 /* PR 17531: file: 046-1082287-0.004. */
10042 ivd
.vd_ndx
= (data
[cnt
+ j
] & VERSYM_VERSION
) + 1;
10047 ivd
.vd_next
= BYTE_GET (evd
.vd_next
);
10048 ivd
.vd_ndx
= BYTE_GET (evd
.vd_ndx
);
10051 offset
+= ivd
.vd_next
;
10053 while (ivd
.vd_ndx
!= (data
[cnt
+ j
] & VERSYM_VERSION
)
10054 && ivd
.vd_next
!= 0);
10056 if (ivd
.vd_ndx
== (data
[cnt
+ j
] & VERSYM_VERSION
))
10058 Elf_External_Verdaux evda
;
10059 Elf_Internal_Verdaux ivda
;
10061 ivd
.vd_aux
= BYTE_GET (evd
.vd_aux
);
10063 if (get_data (&evda
, file
,
10064 offset
- ivd
.vd_next
+ ivd
.vd_aux
,
10066 _("version def aux")) == NULL
)
10069 ivda
.vda_name
= BYTE_GET (evda
.vda_name
);
10071 if (ivda
.vda_name
>= string_sec
->sh_size
)
10073 else if (name
!= NULL
&& name
!= invalid
)
10074 name
= _("*both*");
10076 name
= strtab
+ ivda
.vda_name
;
10080 nn
+= printf ("(%s%-*s",
10082 12 - (int) strlen (name
),
10086 printf ("%*c", 18 - nn
, ' ');
10104 printf (_("\nNo version information found in this file.\n"));
10109 static const char *
10110 get_symbol_binding (unsigned int binding
)
10112 static char buff
[32];
10116 case STB_LOCAL
: return "LOCAL";
10117 case STB_GLOBAL
: return "GLOBAL";
10118 case STB_WEAK
: return "WEAK";
10120 if (binding
>= STB_LOPROC
&& binding
<= STB_HIPROC
)
10121 snprintf (buff
, sizeof (buff
), _("<processor specific>: %d"),
10123 else if (binding
>= STB_LOOS
&& binding
<= STB_HIOS
)
10125 if (binding
== STB_GNU_UNIQUE
10126 && (elf_header
.e_ident
[EI_OSABI
] == ELFOSABI_GNU
10127 /* GNU is still using the default value 0. */
10128 || elf_header
.e_ident
[EI_OSABI
] == ELFOSABI_NONE
))
10130 snprintf (buff
, sizeof (buff
), _("<OS specific>: %d"), binding
);
10133 snprintf (buff
, sizeof (buff
), _("<unknown>: %d"), binding
);
10138 static const char *
10139 get_symbol_type (unsigned int type
)
10141 static char buff
[32];
10145 case STT_NOTYPE
: return "NOTYPE";
10146 case STT_OBJECT
: return "OBJECT";
10147 case STT_FUNC
: return "FUNC";
10148 case STT_SECTION
: return "SECTION";
10149 case STT_FILE
: return "FILE";
10150 case STT_COMMON
: return "COMMON";
10151 case STT_TLS
: return "TLS";
10152 case STT_RELC
: return "RELC";
10153 case STT_SRELC
: return "SRELC";
10155 if (type
>= STT_LOPROC
&& type
<= STT_HIPROC
)
10157 if (elf_header
.e_machine
== EM_ARM
&& type
== STT_ARM_TFUNC
)
10158 return "THUMB_FUNC";
10160 if (elf_header
.e_machine
== EM_SPARCV9
&& type
== STT_REGISTER
)
10163 if (elf_header
.e_machine
== EM_PARISC
&& type
== STT_PARISC_MILLI
)
10164 return "PARISC_MILLI";
10166 snprintf (buff
, sizeof (buff
), _("<processor specific>: %d"), type
);
10168 else if (type
>= STT_LOOS
&& type
<= STT_HIOS
)
10170 if (elf_header
.e_machine
== EM_PARISC
)
10172 if (type
== STT_HP_OPAQUE
)
10173 return "HP_OPAQUE";
10174 if (type
== STT_HP_STUB
)
10178 if (type
== STT_GNU_IFUNC
10179 && (elf_header
.e_ident
[EI_OSABI
] == ELFOSABI_GNU
10180 || elf_header
.e_ident
[EI_OSABI
] == ELFOSABI_FREEBSD
10181 /* GNU is still using the default value 0. */
10182 || elf_header
.e_ident
[EI_OSABI
] == ELFOSABI_NONE
))
10185 snprintf (buff
, sizeof (buff
), _("<OS specific>: %d"), type
);
10188 snprintf (buff
, sizeof (buff
), _("<unknown>: %d"), type
);
10193 static const char *
10194 get_symbol_visibility (unsigned int visibility
)
10196 switch (visibility
)
10198 case STV_DEFAULT
: return "DEFAULT";
10199 case STV_INTERNAL
: return "INTERNAL";
10200 case STV_HIDDEN
: return "HIDDEN";
10201 case STV_PROTECTED
: return "PROTECTED";
10203 error (_("Unrecognized visibility value: %u"), visibility
);
10204 return _("<unknown>");
10208 static const char *
10209 get_mips_symbol_other (unsigned int other
)
10219 case STO_MICROMIPS
:
10220 return "MICROMIPS";
10221 case STO_MICROMIPS
| STO_MIPS_PIC
:
10222 return "MICROMIPS, MIPS PIC";
10230 static const char *
10231 get_ia64_symbol_other (unsigned int other
)
10233 if (is_ia64_vms ())
10235 static char res
[32];
10239 /* Function types is for images and .STB files only. */
10240 switch (elf_header
.e_type
)
10244 switch (VMS_ST_FUNC_TYPE (other
))
10246 case VMS_SFT_CODE_ADDR
:
10247 strcat (res
, " CA");
10249 case VMS_SFT_SYMV_IDX
:
10250 strcat (res
, " VEC");
10253 strcat (res
, " FD");
10255 case VMS_SFT_RESERVE
:
10256 strcat (res
, " RSV");
10259 warn (_("Unrecognized IA64 VMS ST Function type: %d\n"),
10260 VMS_ST_FUNC_TYPE (other
));
10261 strcat (res
, " <unknown>");
10268 switch (VMS_ST_LINKAGE (other
))
10270 case VMS_STL_IGNORE
:
10271 strcat (res
, " IGN");
10273 case VMS_STL_RESERVE
:
10274 strcat (res
, " RSV");
10277 strcat (res
, " STD");
10280 strcat (res
, " LNK");
10283 warn (_("Unrecognized IA64 VMS ST Linkage: %d\n"),
10284 VMS_ST_LINKAGE (other
));
10285 strcat (res
, " <unknown>");
10297 static const char *
10298 get_ppc64_symbol_other (unsigned int other
)
10300 if (PPC64_LOCAL_ENTRY_OFFSET (other
) != 0)
10302 static char buf
[32];
10303 snprintf (buf
, sizeof buf
, _("<localentry>: %d"),
10304 PPC64_LOCAL_ENTRY_OFFSET (other
));
10310 static const char *
10311 get_symbol_other (unsigned int other
)
10313 const char * result
= NULL
;
10314 static char buff
[32];
10319 switch (elf_header
.e_machine
)
10322 result
= get_mips_symbol_other (other
);
10325 result
= get_ia64_symbol_other (other
);
10328 result
= get_ppc64_symbol_other (other
);
10337 snprintf (buff
, sizeof buff
, _("<other>: %x"), other
);
10341 static const char *
10342 get_symbol_index_type (unsigned int type
)
10344 static char buff
[32];
10348 case SHN_UNDEF
: return "UND";
10349 case SHN_ABS
: return "ABS";
10350 case SHN_COMMON
: return "COM";
10352 if (type
== SHN_IA_64_ANSI_COMMON
10353 && elf_header
.e_machine
== EM_IA_64
10354 && elf_header
.e_ident
[EI_OSABI
] == ELFOSABI_HPUX
)
10356 else if ((elf_header
.e_machine
== EM_X86_64
10357 || elf_header
.e_machine
== EM_L1OM
10358 || elf_header
.e_machine
== EM_K1OM
)
10359 && type
== SHN_X86_64_LCOMMON
)
10360 return "LARGE_COM";
10361 else if ((type
== SHN_MIPS_SCOMMON
10362 && elf_header
.e_machine
== EM_MIPS
)
10363 || (type
== SHN_TIC6X_SCOMMON
10364 && elf_header
.e_machine
== EM_TI_C6000
))
10366 else if (type
== SHN_MIPS_SUNDEFINED
10367 && elf_header
.e_machine
== EM_MIPS
)
10369 else if (type
>= SHN_LOPROC
&& type
<= SHN_HIPROC
)
10370 sprintf (buff
, "PRC[0x%04x]", type
& 0xffff);
10371 else if (type
>= SHN_LOOS
&& type
<= SHN_HIOS
)
10372 sprintf (buff
, "OS [0x%04x]", type
& 0xffff);
10373 else if (type
>= SHN_LORESERVE
)
10374 sprintf (buff
, "RSV[0x%04x]", type
& 0xffff);
10375 else if (type
>= elf_header
.e_shnum
)
10376 sprintf (buff
, _("bad section index[%3d]"), type
);
10378 sprintf (buff
, "%3d", type
);
10386 get_dynamic_data (FILE * file
, bfd_size_type number
, unsigned int ent_size
)
10388 unsigned char * e_data
;
10391 /* If the size_t type is smaller than the bfd_size_type, eg because
10392 you are building a 32-bit tool on a 64-bit host, then make sure
10393 that when (number) is cast to (size_t) no information is lost. */
10394 if (sizeof (size_t) < sizeof (bfd_size_type
)
10395 && (bfd_size_type
) ((size_t) number
) != number
)
10397 error (_("Size truncation prevents reading %llu elements of size %u\n"),
10398 (unsigned long long) number
, ent_size
);
10402 /* Be kind to memory chekers (eg valgrind, address sanitizer) by not
10403 attempting to allocate memory when the read is bound to fail. */
10404 if (ent_size
* number
> current_file_size
)
10406 error (_("Invalid number of dynamic entries: %llu\n"),
10407 (unsigned long long) number
);
10411 e_data
= (unsigned char *) cmalloc ((size_t) number
, ent_size
);
10412 if (e_data
== NULL
)
10414 error (_("Out of memory reading %llu dynamic entries\n"),
10415 (unsigned long long) number
);
10419 if (fread (e_data
, ent_size
, (size_t) number
, file
) != number
)
10421 error (_("Unable to read in %llu bytes of dynamic data\n"),
10422 (unsigned long long) (number
* ent_size
));
10427 i_data
= (bfd_vma
*) cmalloc ((size_t) number
, sizeof (*i_data
));
10428 if (i_data
== NULL
)
10430 error (_("Out of memory allocating space for %llu dynamic entries\n"),
10431 (unsigned long long) number
);
10437 i_data
[number
] = byte_get (e_data
+ number
* ent_size
, ent_size
);
10445 print_dynamic_symbol (bfd_vma si
, unsigned long hn
)
10447 Elf_Internal_Sym
* psym
;
10450 n
= print_vma (si
, DEC_5
);
10452 fputs (&" "[n
], stdout
);
10453 printf (" %3lu: ", hn
);
10455 if (dynamic_symbols
== NULL
|| si
>= num_dynamic_syms
)
10457 printf (_("<No info available for dynamic symbol number %lu>\n"),
10458 (unsigned long) si
);
10462 psym
= dynamic_symbols
+ si
;
10463 print_vma (psym
->st_value
, LONG_HEX
);
10465 print_vma (psym
->st_size
, DEC_5
);
10467 printf (" %-7s", get_symbol_type (ELF_ST_TYPE (psym
->st_info
)));
10468 printf (" %-6s", get_symbol_binding (ELF_ST_BIND (psym
->st_info
)));
10469 printf (" %-7s", get_symbol_visibility (ELF_ST_VISIBILITY (psym
->st_other
)));
10470 /* Check to see if any other bits in the st_other field are set.
10471 Note - displaying this information disrupts the layout of the
10472 table being generated, but for the moment this case is very
10474 if (psym
->st_other
^ ELF_ST_VISIBILITY (psym
->st_other
))
10475 printf (" [%s] ", get_symbol_other (psym
->st_other
^ ELF_ST_VISIBILITY (psym
->st_other
)));
10476 printf (" %3.3s ", get_symbol_index_type (psym
->st_shndx
));
10477 if (VALID_DYNAMIC_NAME (psym
->st_name
))
10478 print_symbol (25, GET_DYNAMIC_NAME (psym
->st_name
));
10480 printf (_(" <corrupt: %14ld>"), psym
->st_name
);
10484 static const char *
10485 get_symbol_version_string (FILE *file
, int is_dynsym
,
10486 const char *strtab
,
10487 unsigned long int strtab_size
,
10488 unsigned int si
, Elf_Internal_Sym
*psym
,
10489 enum versioned_symbol_info
*sym_info
,
10490 unsigned short *vna_other
)
10492 unsigned char data
[2];
10493 unsigned short vers_data
;
10494 unsigned long offset
;
10497 || version_info
[DT_VERSIONTAGIDX (DT_VERSYM
)] == 0)
10500 offset
= offset_from_vma (file
, version_info
[DT_VERSIONTAGIDX (DT_VERSYM
)],
10501 sizeof data
+ si
* sizeof (vers_data
));
10503 if (get_data (&data
, file
, offset
+ si
* sizeof (vers_data
),
10504 sizeof (data
), 1, _("version data")) == NULL
)
10507 vers_data
= byte_get (data
, 2);
10509 if ((vers_data
& VERSYM_HIDDEN
) == 0 && vers_data
<= 1)
10512 /* Usually we'd only see verdef for defined symbols, and verneed for
10513 undefined symbols. However, symbols defined by the linker in
10514 .dynbss for variables copied from a shared library in order to
10515 avoid text relocations are defined yet have verneed. We could
10516 use a heuristic to detect the special case, for example, check
10517 for verneed first on symbols defined in SHT_NOBITS sections, but
10518 it is simpler and more reliable to just look for both verdef and
10519 verneed. .dynbss might not be mapped to a SHT_NOBITS section. */
10521 if (psym
->st_shndx
!= SHN_UNDEF
10522 && vers_data
!= 0x8001
10523 && version_info
[DT_VERSIONTAGIDX (DT_VERDEF
)])
10525 Elf_Internal_Verdef ivd
;
10526 Elf_Internal_Verdaux ivda
;
10527 Elf_External_Verdaux evda
;
10530 off
= offset_from_vma (file
,
10531 version_info
[DT_VERSIONTAGIDX (DT_VERDEF
)],
10532 sizeof (Elf_External_Verdef
));
10536 Elf_External_Verdef evd
;
10538 if (get_data (&evd
, file
, off
, sizeof (evd
), 1,
10539 _("version def")) == NULL
)
10547 ivd
.vd_ndx
= BYTE_GET (evd
.vd_ndx
);
10548 ivd
.vd_aux
= BYTE_GET (evd
.vd_aux
);
10549 ivd
.vd_next
= BYTE_GET (evd
.vd_next
);
10552 off
+= ivd
.vd_next
;
10554 while (ivd
.vd_ndx
!= (vers_data
& VERSYM_VERSION
) && ivd
.vd_next
!= 0);
10556 if (ivd
.vd_ndx
== (vers_data
& VERSYM_VERSION
))
10558 off
-= ivd
.vd_next
;
10561 if (get_data (&evda
, file
, off
, sizeof (evda
), 1,
10562 _("version def aux")) != NULL
)
10564 ivda
.vda_name
= BYTE_GET (evda
.vda_name
);
10566 if (psym
->st_name
!= ivda
.vda_name
)
10568 *sym_info
= ((vers_data
& VERSYM_HIDDEN
) != 0
10569 ? symbol_hidden
: symbol_public
);
10570 return (ivda
.vda_name
< strtab_size
10571 ? strtab
+ ivda
.vda_name
: _("<corrupt>"));
10577 if (version_info
[DT_VERSIONTAGIDX (DT_VERNEED
)])
10579 Elf_External_Verneed evn
;
10580 Elf_Internal_Verneed ivn
;
10581 Elf_Internal_Vernaux ivna
;
10583 offset
= offset_from_vma (file
,
10584 version_info
[DT_VERSIONTAGIDX (DT_VERNEED
)],
10588 unsigned long vna_off
;
10590 if (get_data (&evn
, file
, offset
, sizeof (evn
), 1,
10591 _("version need")) == NULL
)
10594 ivna
.vna_other
= 0;
10599 ivn
.vn_aux
= BYTE_GET (evn
.vn_aux
);
10600 ivn
.vn_next
= BYTE_GET (evn
.vn_next
);
10602 vna_off
= offset
+ ivn
.vn_aux
;
10606 Elf_External_Vernaux evna
;
10608 if (get_data (&evna
, file
, vna_off
, sizeof (evna
), 1,
10609 _("version need aux (3)")) == NULL
)
10612 ivna
.vna_other
= 0;
10617 ivna
.vna_other
= BYTE_GET (evna
.vna_other
);
10618 ivna
.vna_next
= BYTE_GET (evna
.vna_next
);
10619 ivna
.vna_name
= BYTE_GET (evna
.vna_name
);
10622 vna_off
+= ivna
.vna_next
;
10624 while (ivna
.vna_other
!= vers_data
&& ivna
.vna_next
!= 0);
10626 if (ivna
.vna_other
== vers_data
)
10629 offset
+= ivn
.vn_next
;
10631 while (ivn
.vn_next
!= 0);
10633 if (ivna
.vna_other
== vers_data
)
10635 *sym_info
= symbol_undefined
;
10636 *vna_other
= ivna
.vna_other
;
10637 return (ivna
.vna_name
< strtab_size
10638 ? strtab
+ ivna
.vna_name
: _("<corrupt>"));
10644 /* Dump the symbol table. */
10646 process_symbol_table (FILE * file
)
10648 Elf_Internal_Shdr
* section
;
10649 bfd_size_type nbuckets
= 0;
10650 bfd_size_type nchains
= 0;
10651 bfd_vma
* buckets
= NULL
;
10652 bfd_vma
* chains
= NULL
;
10653 bfd_vma ngnubuckets
= 0;
10654 bfd_vma
* gnubuckets
= NULL
;
10655 bfd_vma
* gnuchains
= NULL
;
10656 bfd_vma gnusymidx
= 0;
10657 bfd_size_type ngnuchains
= 0;
10659 if (!do_syms
&& !do_dyn_syms
&& !do_histogram
)
10662 if (dynamic_info
[DT_HASH
]
10664 || (do_using_dynamic
10666 && dynamic_strings
!= NULL
)))
10668 unsigned char nb
[8];
10669 unsigned char nc
[8];
10670 unsigned int hash_ent_size
= 4;
10672 if ((elf_header
.e_machine
== EM_ALPHA
10673 || elf_header
.e_machine
== EM_S390
10674 || elf_header
.e_machine
== EM_S390_OLD
)
10675 && elf_header
.e_ident
[EI_CLASS
] == ELFCLASS64
)
10679 (archive_file_offset
10680 + offset_from_vma (file
, dynamic_info
[DT_HASH
],
10681 sizeof nb
+ sizeof nc
)),
10684 error (_("Unable to seek to start of dynamic information\n"));
10688 if (fread (nb
, hash_ent_size
, 1, file
) != 1)
10690 error (_("Failed to read in number of buckets\n"));
10694 if (fread (nc
, hash_ent_size
, 1, file
) != 1)
10696 error (_("Failed to read in number of chains\n"));
10700 nbuckets
= byte_get (nb
, hash_ent_size
);
10701 nchains
= byte_get (nc
, hash_ent_size
);
10703 buckets
= get_dynamic_data (file
, nbuckets
, hash_ent_size
);
10704 chains
= get_dynamic_data (file
, nchains
, hash_ent_size
);
10707 if (buckets
== NULL
|| chains
== NULL
)
10709 if (do_using_dynamic
)
10720 if (dynamic_info_DT_GNU_HASH
10722 || (do_using_dynamic
10724 && dynamic_strings
!= NULL
)))
10726 unsigned char nb
[16];
10727 bfd_vma i
, maxchain
= 0xffffffff, bitmaskwords
;
10728 bfd_vma buckets_vma
;
10731 (archive_file_offset
10732 + offset_from_vma (file
, dynamic_info_DT_GNU_HASH
,
10736 error (_("Unable to seek to start of dynamic information\n"));
10740 if (fread (nb
, 16, 1, file
) != 1)
10742 error (_("Failed to read in number of buckets\n"));
10746 ngnubuckets
= byte_get (nb
, 4);
10747 gnusymidx
= byte_get (nb
+ 4, 4);
10748 bitmaskwords
= byte_get (nb
+ 8, 4);
10749 buckets_vma
= dynamic_info_DT_GNU_HASH
+ 16;
10751 buckets_vma
+= bitmaskwords
* 4;
10753 buckets_vma
+= bitmaskwords
* 8;
10756 (archive_file_offset
10757 + offset_from_vma (file
, buckets_vma
, 4)),
10760 error (_("Unable to seek to start of dynamic information\n"));
10764 gnubuckets
= get_dynamic_data (file
, ngnubuckets
, 4);
10766 if (gnubuckets
== NULL
)
10769 for (i
= 0; i
< ngnubuckets
; i
++)
10770 if (gnubuckets
[i
] != 0)
10772 if (gnubuckets
[i
] < gnusymidx
)
10775 if (maxchain
== 0xffffffff || gnubuckets
[i
] > maxchain
)
10776 maxchain
= gnubuckets
[i
];
10779 if (maxchain
== 0xffffffff)
10782 maxchain
-= gnusymidx
;
10785 (archive_file_offset
10786 + offset_from_vma (file
, buckets_vma
10787 + 4 * (ngnubuckets
+ maxchain
), 4)),
10790 error (_("Unable to seek to start of dynamic information\n"));
10796 if (fread (nb
, 4, 1, file
) != 1)
10798 error (_("Failed to determine last chain length\n"));
10802 if (maxchain
+ 1 == 0)
10807 while ((byte_get (nb
, 4) & 1) == 0);
10810 (archive_file_offset
10811 + offset_from_vma (file
, buckets_vma
+ 4 * ngnubuckets
, 4)),
10814 error (_("Unable to seek to start of dynamic information\n"));
10818 gnuchains
= get_dynamic_data (file
, maxchain
, 4);
10819 ngnuchains
= maxchain
;
10822 if (gnuchains
== NULL
)
10827 if (do_using_dynamic
)
10832 if ((dynamic_info
[DT_HASH
] || dynamic_info_DT_GNU_HASH
)
10834 && do_using_dynamic
10835 && dynamic_strings
!= NULL
10836 && dynamic_symbols
!= NULL
)
10840 if (dynamic_info
[DT_HASH
])
10844 printf (_("\nSymbol table for image:\n"));
10846 printf (_(" Num Buc: Value Size Type Bind Vis Ndx Name\n"));
10848 printf (_(" Num Buc: Value Size Type Bind Vis Ndx Name\n"));
10850 for (hn
= 0; hn
< nbuckets
; hn
++)
10855 for (si
= buckets
[hn
]; si
< nchains
&& si
> 0; si
= chains
[si
])
10856 print_dynamic_symbol (si
, hn
);
10860 if (dynamic_info_DT_GNU_HASH
)
10862 printf (_("\nSymbol table of `.gnu.hash' for image:\n"));
10864 printf (_(" Num Buc: Value Size Type Bind Vis Ndx Name\n"));
10866 printf (_(" Num Buc: Value Size Type Bind Vis Ndx Name\n"));
10868 for (hn
= 0; hn
< ngnubuckets
; ++hn
)
10869 if (gnubuckets
[hn
] != 0)
10871 bfd_vma si
= gnubuckets
[hn
];
10872 bfd_vma off
= si
- gnusymidx
;
10876 print_dynamic_symbol (si
, hn
);
10879 while (off
< ngnuchains
&& (gnuchains
[off
++] & 1) == 0);
10883 else if ((do_dyn_syms
|| (do_syms
&& !do_using_dynamic
))
10884 && section_headers
!= NULL
)
10888 for (i
= 0, section
= section_headers
;
10889 i
< elf_header
.e_shnum
;
10893 char * strtab
= NULL
;
10894 unsigned long int strtab_size
= 0;
10895 Elf_Internal_Sym
* symtab
;
10896 Elf_Internal_Sym
* psym
;
10897 unsigned long num_syms
;
10899 if ((section
->sh_type
!= SHT_SYMTAB
10900 && section
->sh_type
!= SHT_DYNSYM
)
10902 && section
->sh_type
== SHT_SYMTAB
))
10905 if (section
->sh_entsize
== 0)
10907 printf (_("\nSymbol table '%s' has a sh_entsize of zero!\n"),
10908 printable_section_name (section
));
10912 printf (_("\nSymbol table '%s' contains %lu entries:\n"),
10913 printable_section_name (section
),
10914 (unsigned long) (section
->sh_size
/ section
->sh_entsize
));
10917 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
10919 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
10921 symtab
= GET_ELF_SYMBOLS (file
, section
, & num_syms
);
10922 if (symtab
== NULL
)
10925 if (section
->sh_link
== elf_header
.e_shstrndx
)
10927 strtab
= string_table
;
10928 strtab_size
= string_table_length
;
10930 else if (section
->sh_link
< elf_header
.e_shnum
)
10932 Elf_Internal_Shdr
* string_sec
;
10934 string_sec
= section_headers
+ section
->sh_link
;
10936 strtab
= (char *) get_data (NULL
, file
, string_sec
->sh_offset
,
10937 1, string_sec
->sh_size
,
10938 _("string table"));
10939 strtab_size
= strtab
!= NULL
? string_sec
->sh_size
: 0;
10942 for (si
= 0, psym
= symtab
; si
< num_syms
; si
++, psym
++)
10944 const char *version_string
;
10945 enum versioned_symbol_info sym_info
;
10946 unsigned short vna_other
;
10948 printf ("%6d: ", si
);
10949 print_vma (psym
->st_value
, LONG_HEX
);
10951 print_vma (psym
->st_size
, DEC_5
);
10952 printf (" %-7s", get_symbol_type (ELF_ST_TYPE (psym
->st_info
)));
10953 printf (" %-6s", get_symbol_binding (ELF_ST_BIND (psym
->st_info
)));
10954 printf (" %-7s", get_symbol_visibility (ELF_ST_VISIBILITY (psym
->st_other
)));
10955 /* Check to see if any other bits in the st_other field are set.
10956 Note - displaying this information disrupts the layout of the
10957 table being generated, but for the moment this case is very rare. */
10958 if (psym
->st_other
^ ELF_ST_VISIBILITY (psym
->st_other
))
10959 printf (" [%s] ", get_symbol_other (psym
->st_other
^ ELF_ST_VISIBILITY (psym
->st_other
)));
10960 printf (" %4s ", get_symbol_index_type (psym
->st_shndx
));
10961 print_symbol (25, psym
->st_name
< strtab_size
10962 ? strtab
+ psym
->st_name
: _("<corrupt>"));
10965 = get_symbol_version_string (file
,
10966 section
->sh_type
== SHT_DYNSYM
,
10967 strtab
, strtab_size
, si
,
10968 psym
, &sym_info
, &vna_other
);
10969 if (version_string
)
10971 if (sym_info
== symbol_undefined
)
10972 printf ("@%s (%d)", version_string
, vna_other
);
10974 printf (sym_info
== symbol_hidden
? "@%s" : "@@%s",
10982 if (strtab
!= string_table
)
10988 (_("\nDynamic symbol information is not available for displaying symbols.\n"));
10990 if (do_histogram
&& buckets
!= NULL
)
10992 unsigned long * lengths
;
10993 unsigned long * counts
;
10996 unsigned long maxlength
= 0;
10997 unsigned long nzero_counts
= 0;
10998 unsigned long nsyms
= 0;
10999 unsigned long chained
;
11001 printf (_("\nHistogram for bucket list length (total of %lu buckets):\n"),
11002 (unsigned long) nbuckets
);
11004 lengths
= (unsigned long *) calloc (nbuckets
, sizeof (*lengths
));
11005 if (lengths
== NULL
)
11007 error (_("Out of memory allocating space for histogram buckets\n"));
11011 printf (_(" Length Number %% of total Coverage\n"));
11012 for (hn
= 0; hn
< nbuckets
; ++hn
)
11014 for (si
= buckets
[hn
], chained
= 0;
11015 si
> 0 && si
< nchains
&& si
< nbuckets
&& chained
<= nchains
;
11016 si
= chains
[si
], ++chained
)
11019 if (maxlength
< ++lengths
[hn
])
11023 /* PR binutils/17531: A corrupt binary could contain broken
11024 histogram data. Do not go into an infinite loop trying
11026 if (chained
> nchains
)
11028 error (_("histogram chain is corrupt\n"));
11033 counts
= (unsigned long *) calloc (maxlength
+ 1, sizeof (*counts
));
11034 if (counts
== NULL
)
11037 error (_("Out of memory allocating space for histogram counts\n"));
11041 for (hn
= 0; hn
< nbuckets
; ++hn
)
11042 ++counts
[lengths
[hn
]];
11047 printf (" 0 %-10lu (%5.1f%%)\n",
11048 counts
[0], (counts
[0] * 100.0) / nbuckets
);
11049 for (i
= 1; i
<= maxlength
; ++i
)
11051 nzero_counts
+= counts
[i
] * i
;
11052 printf ("%7lu %-10lu (%5.1f%%) %5.1f%%\n",
11053 i
, counts
[i
], (counts
[i
] * 100.0) / nbuckets
,
11054 (nzero_counts
* 100.0) / nsyms
);
11062 if (buckets
!= NULL
)
11068 if (do_histogram
&& gnubuckets
!= NULL
)
11070 unsigned long * lengths
;
11071 unsigned long * counts
;
11073 unsigned long maxlength
= 0;
11074 unsigned long nzero_counts
= 0;
11075 unsigned long nsyms
= 0;
11077 printf (_("\nHistogram for `.gnu.hash' bucket list length (total of %lu buckets):\n"),
11078 (unsigned long) ngnubuckets
);
11080 lengths
= (unsigned long *) calloc (ngnubuckets
, sizeof (*lengths
));
11081 if (lengths
== NULL
)
11083 error (_("Out of memory allocating space for gnu histogram buckets\n"));
11087 printf (_(" Length Number %% of total Coverage\n"));
11089 for (hn
= 0; hn
< ngnubuckets
; ++hn
)
11090 if (gnubuckets
[hn
] != 0)
11092 bfd_vma off
, length
= 1;
11094 for (off
= gnubuckets
[hn
] - gnusymidx
;
11095 /* PR 17531 file: 010-77222-0.004. */
11096 off
< ngnuchains
&& (gnuchains
[off
] & 1) == 0;
11099 lengths
[hn
] = length
;
11100 if (length
> maxlength
)
11101 maxlength
= length
;
11105 counts
= (unsigned long *) calloc (maxlength
+ 1, sizeof (*counts
));
11106 if (counts
== NULL
)
11109 error (_("Out of memory allocating space for gnu histogram counts\n"));
11113 for (hn
= 0; hn
< ngnubuckets
; ++hn
)
11114 ++counts
[lengths
[hn
]];
11116 if (ngnubuckets
> 0)
11119 printf (" 0 %-10lu (%5.1f%%)\n",
11120 counts
[0], (counts
[0] * 100.0) / ngnubuckets
);
11121 for (j
= 1; j
<= maxlength
; ++j
)
11123 nzero_counts
+= counts
[j
] * j
;
11124 printf ("%7lu %-10lu (%5.1f%%) %5.1f%%\n",
11125 j
, counts
[j
], (counts
[j
] * 100.0) / ngnubuckets
,
11126 (nzero_counts
* 100.0) / nsyms
);
11140 process_syminfo (FILE * file ATTRIBUTE_UNUSED
)
11144 if (dynamic_syminfo
== NULL
11146 /* No syminfo, this is ok. */
11149 /* There better should be a dynamic symbol section. */
11150 if (dynamic_symbols
== NULL
|| dynamic_strings
== NULL
)
11154 printf (_("\nDynamic info segment at offset 0x%lx contains %d entries:\n"),
11155 dynamic_syminfo_offset
, dynamic_syminfo_nent
);
11157 printf (_(" Num: Name BoundTo Flags\n"));
11158 for (i
= 0; i
< dynamic_syminfo_nent
; ++i
)
11160 unsigned short int flags
= dynamic_syminfo
[i
].si_flags
;
11162 printf ("%4d: ", i
);
11163 if (i
>= num_dynamic_syms
)
11164 printf (_("<corrupt index>"));
11165 else if (VALID_DYNAMIC_NAME (dynamic_symbols
[i
].st_name
))
11166 print_symbol (30, GET_DYNAMIC_NAME (dynamic_symbols
[i
].st_name
));
11168 printf (_("<corrupt: %19ld>"), dynamic_symbols
[i
].st_name
);
11171 switch (dynamic_syminfo
[i
].si_boundto
)
11173 case SYMINFO_BT_SELF
:
11174 fputs ("SELF ", stdout
);
11176 case SYMINFO_BT_PARENT
:
11177 fputs ("PARENT ", stdout
);
11180 if (dynamic_syminfo
[i
].si_boundto
> 0
11181 && dynamic_syminfo
[i
].si_boundto
< dynamic_nent
11182 && VALID_DYNAMIC_NAME (dynamic_section
[dynamic_syminfo
[i
].si_boundto
].d_un
.d_val
))
11184 print_symbol (10, GET_DYNAMIC_NAME (dynamic_section
[dynamic_syminfo
[i
].si_boundto
].d_un
.d_val
));
11188 printf ("%-10d ", dynamic_syminfo
[i
].si_boundto
);
11192 if (flags
& SYMINFO_FLG_DIRECT
)
11193 printf (" DIRECT");
11194 if (flags
& SYMINFO_FLG_PASSTHRU
)
11195 printf (" PASSTHRU");
11196 if (flags
& SYMINFO_FLG_COPY
)
11198 if (flags
& SYMINFO_FLG_LAZYLOAD
)
11199 printf (" LAZYLOAD");
11207 /* Check to see if the given reloc needs to be handled in a target specific
11208 manner. If so then process the reloc and return TRUE otherwise return
11212 target_specific_reloc_handling (Elf_Internal_Rela
* reloc
,
11213 unsigned char * start
,
11214 Elf_Internal_Sym
* symtab
)
11216 unsigned int reloc_type
= get_reloc_type (reloc
->r_info
);
11218 switch (elf_header
.e_machine
)
11221 case EM_MSP430_OLD
:
11223 static Elf_Internal_Sym
* saved_sym
= NULL
;
11225 switch (reloc_type
)
11227 case 10: /* R_MSP430_SYM_DIFF */
11228 if (uses_msp430x_relocs ())
11230 case 21: /* R_MSP430X_SYM_DIFF */
11231 saved_sym
= symtab
+ get_reloc_symindex (reloc
->r_info
);
11234 case 1: /* R_MSP430_32 or R_MSP430_ABS32 */
11235 case 3: /* R_MSP430_16 or R_MSP430_ABS8 */
11236 goto handle_sym_diff
;
11238 case 5: /* R_MSP430_16_BYTE */
11239 case 9: /* R_MSP430_8 */
11240 if (uses_msp430x_relocs ())
11242 goto handle_sym_diff
;
11244 case 2: /* R_MSP430_ABS16 */
11245 case 15: /* R_MSP430X_ABS16 */
11246 if (! uses_msp430x_relocs ())
11248 goto handle_sym_diff
;
11251 if (saved_sym
!= NULL
)
11255 value
= reloc
->r_addend
11256 + (symtab
[get_reloc_symindex (reloc
->r_info
)].st_value
11257 - saved_sym
->st_value
);
11259 byte_put (start
+ reloc
->r_offset
, value
, reloc_type
== 1 ? 4 : 2);
11267 if (saved_sym
!= NULL
)
11268 error (_("Unhandled MSP430 reloc type found after SYM_DIFF reloc\n"));
11275 case EM_CYGNUS_MN10300
:
11277 static Elf_Internal_Sym
* saved_sym
= NULL
;
11279 switch (reloc_type
)
11281 case 34: /* R_MN10300_ALIGN */
11283 case 33: /* R_MN10300_SYM_DIFF */
11284 saved_sym
= symtab
+ get_reloc_symindex (reloc
->r_info
);
11286 case 1: /* R_MN10300_32 */
11287 case 2: /* R_MN10300_16 */
11288 if (saved_sym
!= NULL
)
11292 value
= reloc
->r_addend
11293 + (symtab
[get_reloc_symindex (reloc
->r_info
)].st_value
11294 - saved_sym
->st_value
);
11296 byte_put (start
+ reloc
->r_offset
, value
, reloc_type
== 1 ? 4 : 2);
11303 if (saved_sym
!= NULL
)
11304 error (_("Unhandled MN10300 reloc type found after SYM_DIFF reloc\n"));
11312 static bfd_vma saved_sym1
= 0;
11313 static bfd_vma saved_sym2
= 0;
11314 static bfd_vma value
;
11316 switch (reloc_type
)
11318 case 0x80: /* R_RL78_SYM. */
11319 saved_sym1
= saved_sym2
;
11320 saved_sym2
= symtab
[get_reloc_symindex (reloc
->r_info
)].st_value
;
11321 saved_sym2
+= reloc
->r_addend
;
11324 case 0x83: /* R_RL78_OPsub. */
11325 value
= saved_sym1
- saved_sym2
;
11326 saved_sym2
= saved_sym1
= 0;
11330 case 0x41: /* R_RL78_ABS32. */
11331 byte_put (start
+ reloc
->r_offset
, value
, 4);
11335 case 0x43: /* R_RL78_ABS16. */
11336 byte_put (start
+ reloc
->r_offset
, value
, 2);
11350 /* Returns TRUE iff RELOC_TYPE is a 32-bit absolute RELA relocation used in
11351 DWARF debug sections. This is a target specific test. Note - we do not
11352 go through the whole including-target-headers-multiple-times route, (as
11353 we have already done with <elf/h8.h>) because this would become very
11354 messy and even then this function would have to contain target specific
11355 information (the names of the relocs instead of their numeric values).
11356 FIXME: This is not the correct way to solve this problem. The proper way
11357 is to have target specific reloc sizing and typing functions created by
11358 the reloc-macros.h header, in the same way that it already creates the
11359 reloc naming functions. */
11362 is_32bit_abs_reloc (unsigned int reloc_type
)
11364 switch (elf_header
.e_machine
)
11368 return reloc_type
== 1; /* R_386_32. */
11370 return reloc_type
== 1; /* R_68K_32. */
11372 return reloc_type
== 1; /* R_860_32. */
11374 return reloc_type
== 2; /* R_960_32. */
11376 return reloc_type
== 258; /* R_AARCH64_ABS32 */
11378 return reloc_type
== 1; /* R_ALPHA_REFLONG. */
11380 return reloc_type
== 1; /* R_ARC_32. */
11381 case EM_ARC_COMPACT
:
11382 case EM_ARC_COMPACT2
:
11383 return reloc_type
== 4; /* R_ARC_32. */
11385 return reloc_type
== 2; /* R_ARM_ABS32 */
11388 return reloc_type
== 1;
11389 case EM_ADAPTEVA_EPIPHANY
:
11390 return reloc_type
== 3;
11392 return reloc_type
== 0x12; /* R_byte4_data. */
11394 return reloc_type
== 3; /* R_CRIS_32. */
11396 return reloc_type
== 3; /* R_CR16_NUM32. */
11398 return reloc_type
== 15; /* R_CRX_NUM32. */
11399 case EM_CYGNUS_FRV
:
11400 return reloc_type
== 1;
11401 case EM_CYGNUS_D10V
:
11403 return reloc_type
== 6; /* R_D10V_32. */
11404 case EM_CYGNUS_D30V
:
11406 return reloc_type
== 12; /* R_D30V_32_NORMAL. */
11408 return reloc_type
== 3; /* R_DLX_RELOC_32. */
11409 case EM_CYGNUS_FR30
:
11411 return reloc_type
== 3; /* R_FR30_32. */
11413 return reloc_type
== 1; /* R_FT32_32. */
11417 return reloc_type
== 1; /* R_H8_DIR32. */
11419 return reloc_type
== 0x65 /* R_IA64_SECREL32LSB. */
11420 || reloc_type
== 0x25; /* R_IA64_DIR32LSB. */
11423 return reloc_type
== 2; /* R_IP2K_32. */
11425 return reloc_type
== 2; /* R_IQ2000_32. */
11426 case EM_LATTICEMICO32
:
11427 return reloc_type
== 3; /* R_LM32_32. */
11430 return reloc_type
== 3; /* R_M32C_32. */
11432 return reloc_type
== 34; /* R_M32R_32_RELA. */
11435 return reloc_type
== 6; /* R_M68HC11_32. */
11437 return reloc_type
== 1; /* R_MCORE_ADDR32. */
11438 case EM_CYGNUS_MEP
:
11439 return reloc_type
== 4; /* R_MEP_32. */
11441 return reloc_type
== 2; /* R_METAG_ADDR32. */
11442 case EM_MICROBLAZE
:
11443 return reloc_type
== 1; /* R_MICROBLAZE_32. */
11445 return reloc_type
== 2; /* R_MIPS_32. */
11447 return reloc_type
== 4; /* R_MMIX_32. */
11448 case EM_CYGNUS_MN10200
:
11450 return reloc_type
== 1; /* R_MN10200_32. */
11451 case EM_CYGNUS_MN10300
:
11453 return reloc_type
== 1; /* R_MN10300_32. */
11455 return reloc_type
== 1; /* R_MOXIE_32. */
11456 case EM_MSP430_OLD
:
11458 return reloc_type
== 1; /* R_MSP430_32 or R_MSP320_ABS32. */
11460 return reloc_type
== 2; /* R_MT_32. */
11462 return reloc_type
== 20; /* R_NDS32_RELA. */
11463 case EM_ALTERA_NIOS2
:
11464 return reloc_type
== 12; /* R_NIOS2_BFD_RELOC_32. */
11466 return reloc_type
== 1; /* R_NIOS_32. */
11468 return reloc_type
== 1; /* R_OR1K_32. */
11470 return (reloc_type
== 1 /* R_PARISC_DIR32. */
11471 || reloc_type
== 41); /* R_PARISC_SECREL32. */
11474 return reloc_type
== 1; /* R_PJ_DATA_DIR32. */
11476 return reloc_type
== 1; /* R_PPC64_ADDR32. */
11478 return reloc_type
== 1; /* R_PPC_ADDR32. */
11480 return reloc_type
== 1; /* R_RL78_DIR32. */
11482 return reloc_type
== 1; /* R_RX_DIR32. */
11484 return reloc_type
== 1; /* R_I370_ADDR31. */
11487 return reloc_type
== 4; /* R_S390_32. */
11489 return reloc_type
== 8; /* R_SCORE_ABS32. */
11491 return reloc_type
== 1; /* R_SH_DIR32. */
11492 case EM_SPARC32PLUS
:
11495 return reloc_type
== 3 /* R_SPARC_32. */
11496 || reloc_type
== 23; /* R_SPARC_UA32. */
11498 return reloc_type
== 6; /* R_SPU_ADDR32 */
11500 return reloc_type
== 1; /* R_C6000_ABS32. */
11502 return reloc_type
== 2; /* R_TILEGX_32. */
11504 return reloc_type
== 1; /* R_TILEPRO_32. */
11505 case EM_CYGNUS_V850
:
11507 return reloc_type
== 6; /* R_V850_ABS32. */
11509 return reloc_type
== 0x33; /* R_V810_WORD. */
11511 return reloc_type
== 1; /* R_VAX_32. */
11513 return reloc_type
== 3; /* R_VISIUM_32. */
11517 return reloc_type
== 10; /* R_X86_64_32. */
11520 return reloc_type
== 3; /* R_XC16C_ABS_32. */
11522 return reloc_type
== 4; /* R_XGATE_32. */
11524 return reloc_type
== 1; /* R_XSTROMY16_32. */
11525 case EM_XTENSA_OLD
:
11527 return reloc_type
== 1; /* R_XTENSA_32. */
11530 static unsigned int prev_warn
= 0;
11532 /* Avoid repeating the same warning multiple times. */
11533 if (prev_warn
!= elf_header
.e_machine
)
11534 error (_("Missing knowledge of 32-bit reloc types used in DWARF sections of machine number %d\n"),
11535 elf_header
.e_machine
);
11536 prev_warn
= elf_header
.e_machine
;
11542 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
11543 a 32-bit pc-relative RELA relocation used in DWARF debug sections. */
11546 is_32bit_pcrel_reloc (unsigned int reloc_type
)
11548 switch (elf_header
.e_machine
)
11552 return reloc_type
== 2; /* R_386_PC32. */
11554 return reloc_type
== 4; /* R_68K_PC32. */
11556 return reloc_type
== 261; /* R_AARCH64_PREL32 */
11557 case EM_ADAPTEVA_EPIPHANY
:
11558 return reloc_type
== 6;
11560 return reloc_type
== 10; /* R_ALPHA_SREL32. */
11561 case EM_ARC_COMPACT
:
11562 case EM_ARC_COMPACT2
:
11563 return reloc_type
== 49; /* R_ARC_32_PCREL. */
11565 return reloc_type
== 3; /* R_ARM_REL32 */
11566 case EM_MICROBLAZE
:
11567 return reloc_type
== 2; /* R_MICROBLAZE_32_PCREL. */
11569 return reloc_type
== 9; /* R_OR1K_32_PCREL. */
11571 return reloc_type
== 9; /* R_PARISC_PCREL32. */
11573 return reloc_type
== 26; /* R_PPC_REL32. */
11575 return reloc_type
== 26; /* R_PPC64_REL32. */
11578 return reloc_type
== 5; /* R_390_PC32. */
11580 return reloc_type
== 2; /* R_SH_REL32. */
11581 case EM_SPARC32PLUS
:
11584 return reloc_type
== 6; /* R_SPARC_DISP32. */
11586 return reloc_type
== 13; /* R_SPU_REL32. */
11588 return reloc_type
== 6; /* R_TILEGX_32_PCREL. */
11590 return reloc_type
== 4; /* R_TILEPRO_32_PCREL. */
11592 return reloc_type
== 6; /* R_VISIUM_32_PCREL */
11596 return reloc_type
== 2; /* R_X86_64_PC32. */
11597 case EM_XTENSA_OLD
:
11599 return reloc_type
== 14; /* R_XTENSA_32_PCREL. */
11601 /* Do not abort or issue an error message here. Not all targets use
11602 pc-relative 32-bit relocs in their DWARF debug information and we
11603 have already tested for target coverage in is_32bit_abs_reloc. A
11604 more helpful warning message will be generated by apply_relocations
11605 anyway, so just return. */
11610 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
11611 a 64-bit absolute RELA relocation used in DWARF debug sections. */
11614 is_64bit_abs_reloc (unsigned int reloc_type
)
11616 switch (elf_header
.e_machine
)
11619 return reloc_type
== 257; /* R_AARCH64_ABS64. */
11621 return reloc_type
== 2; /* R_ALPHA_REFQUAD. */
11623 return reloc_type
== 0x27; /* R_IA64_DIR64LSB. */
11625 return reloc_type
== 80; /* R_PARISC_DIR64. */
11627 return reloc_type
== 38; /* R_PPC64_ADDR64. */
11628 case EM_SPARC32PLUS
:
11631 return reloc_type
== 54; /* R_SPARC_UA64. */
11635 return reloc_type
== 1; /* R_X86_64_64. */
11638 return reloc_type
== 22; /* R_S390_64. */
11640 return reloc_type
== 1; /* R_TILEGX_64. */
11642 return reloc_type
== 18; /* R_MIPS_64. */
11648 /* Like is_32bit_pcrel_reloc except that it returns TRUE iff RELOC_TYPE is
11649 a 64-bit pc-relative RELA relocation used in DWARF debug sections. */
11652 is_64bit_pcrel_reloc (unsigned int reloc_type
)
11654 switch (elf_header
.e_machine
)
11657 return reloc_type
== 260; /* R_AARCH64_PREL64. */
11659 return reloc_type
== 11; /* R_ALPHA_SREL64. */
11661 return reloc_type
== 0x4f; /* R_IA64_PCREL64LSB. */
11663 return reloc_type
== 72; /* R_PARISC_PCREL64. */
11665 return reloc_type
== 44; /* R_PPC64_REL64. */
11666 case EM_SPARC32PLUS
:
11669 return reloc_type
== 46; /* R_SPARC_DISP64. */
11673 return reloc_type
== 24; /* R_X86_64_PC64. */
11676 return reloc_type
== 23; /* R_S390_PC64. */
11678 return reloc_type
== 5; /* R_TILEGX_64_PCREL. */
11684 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
11685 a 24-bit absolute RELA relocation used in DWARF debug sections. */
11688 is_24bit_abs_reloc (unsigned int reloc_type
)
11690 switch (elf_header
.e_machine
)
11692 case EM_CYGNUS_MN10200
:
11694 return reloc_type
== 4; /* R_MN10200_24. */
11700 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
11701 a 16-bit absolute RELA relocation used in DWARF debug sections. */
11704 is_16bit_abs_reloc (unsigned int reloc_type
)
11706 switch (elf_header
.e_machine
)
11709 case EM_ARC_COMPACT
:
11710 case EM_ARC_COMPACT2
:
11711 return reloc_type
== 2; /* R_ARC_16. */
11714 return reloc_type
== 4; /* R_AVR_16. */
11715 case EM_ADAPTEVA_EPIPHANY
:
11716 return reloc_type
== 5;
11717 case EM_CYGNUS_D10V
:
11719 return reloc_type
== 3; /* R_D10V_16. */
11723 return reloc_type
== R_H8_DIR16
;
11726 return reloc_type
== 1; /* R_IP2K_16. */
11729 return reloc_type
== 1; /* R_M32C_16 */
11731 if (uses_msp430x_relocs ())
11732 return reloc_type
== 2; /* R_MSP430_ABS16. */
11733 case EM_MSP430_OLD
:
11734 return reloc_type
== 5; /* R_MSP430_16_BYTE. */
11736 return reloc_type
== 19; /* R_NDS32_RELA. */
11737 case EM_ALTERA_NIOS2
:
11738 return reloc_type
== 13; /* R_NIOS2_BFD_RELOC_16. */
11740 return reloc_type
== 9; /* R_NIOS_16. */
11742 return reloc_type
== 2; /* R_OR1K_16. */
11744 return reloc_type
== 2; /* R_C6000_ABS16. */
11747 return reloc_type
== 2; /* R_XC16C_ABS_16. */
11748 case EM_CYGNUS_MN10200
:
11750 return reloc_type
== 2; /* R_MN10200_16. */
11751 case EM_CYGNUS_MN10300
:
11753 return reloc_type
== 2; /* R_MN10300_16. */
11755 return reloc_type
== 2; /* R_VISIUM_16. */
11757 return reloc_type
== 3; /* R_XGATE_16. */
11763 /* Returns TRUE iff RELOC_TYPE is a NONE relocation used for discarded
11764 relocation entries (possibly formerly used for SHT_GROUP sections). */
11767 is_none_reloc (unsigned int reloc_type
)
11769 switch (elf_header
.e_machine
)
11771 case EM_68K
: /* R_68K_NONE. */
11772 case EM_386
: /* R_386_NONE. */
11773 case EM_SPARC32PLUS
:
11775 case EM_SPARC
: /* R_SPARC_NONE. */
11776 case EM_MIPS
: /* R_MIPS_NONE. */
11777 case EM_PARISC
: /* R_PARISC_NONE. */
11778 case EM_ALPHA
: /* R_ALPHA_NONE. */
11779 case EM_ADAPTEVA_EPIPHANY
:
11780 case EM_PPC
: /* R_PPC_NONE. */
11781 case EM_PPC64
: /* R_PPC64_NONE. */
11782 case EM_ARC
: /* R_ARC_NONE. */
11783 case EM_ARC_COMPACT
: /* R_ARC_NONE. */
11784 case EM_ARC_COMPACT2
: /* R_ARC_NONE. */
11785 case EM_ARM
: /* R_ARM_NONE. */
11786 case EM_IA_64
: /* R_IA64_NONE. */
11787 case EM_SH
: /* R_SH_NONE. */
11789 case EM_S390
: /* R_390_NONE. */
11790 case EM_CRIS
: /* R_CRIS_NONE. */
11791 case EM_X86_64
: /* R_X86_64_NONE. */
11792 case EM_L1OM
: /* R_X86_64_NONE. */
11793 case EM_K1OM
: /* R_X86_64_NONE. */
11794 case EM_MN10300
: /* R_MN10300_NONE. */
11795 case EM_FT32
: /* R_FT32_NONE. */
11796 case EM_MOXIE
: /* R_MOXIE_NONE. */
11797 case EM_M32R
: /* R_M32R_NONE. */
11798 case EM_TI_C6000
:/* R_C6000_NONE. */
11799 case EM_TILEGX
: /* R_TILEGX_NONE. */
11800 case EM_TILEPRO
: /* R_TILEPRO_NONE. */
11802 case EM_C166
: /* R_XC16X_NONE. */
11803 case EM_ALTERA_NIOS2
: /* R_NIOS2_NONE. */
11804 case EM_NIOS32
: /* R_NIOS_NONE. */
11805 case EM_OR1K
: /* R_OR1K_NONE. */
11806 return reloc_type
== 0;
11808 return reloc_type
== 0 || reloc_type
== 256;
11810 return (reloc_type
== 0 /* R_XTENSA_NONE. */
11811 || reloc_type
== 204 /* R_NDS32_DIFF8. */
11812 || reloc_type
== 205 /* R_NDS32_DIFF16. */
11813 || reloc_type
== 206 /* R_NDS32_DIFF32. */
11814 || reloc_type
== 207 /* R_NDS32_ULEB128. */);
11815 case EM_XTENSA_OLD
:
11817 return (reloc_type
== 0 /* R_XTENSA_NONE. */
11818 || reloc_type
== 17 /* R_XTENSA_DIFF8. */
11819 || reloc_type
== 18 /* R_XTENSA_DIFF16. */
11820 || reloc_type
== 19 /* R_XTENSA_DIFF32. */);
11822 return reloc_type
== 3; /* R_METAG_NONE. */
11827 /* Returns TRUE if there is a relocation against
11828 section NAME at OFFSET bytes. */
11831 reloc_at (struct dwarf_section
* dsec
, dwarf_vma offset
)
11833 Elf_Internal_Rela
* relocs
;
11834 Elf_Internal_Rela
* rp
;
11836 if (dsec
== NULL
|| dsec
->reloc_info
== NULL
)
11839 relocs
= (Elf_Internal_Rela
*) dsec
->reloc_info
;
11841 for (rp
= relocs
; rp
< relocs
+ dsec
->num_relocs
; ++rp
)
11842 if (rp
->r_offset
== offset
)
11848 /* Apply relocations to a section.
11849 Note: So far support has been added only for those relocations
11850 which can be found in debug sections.
11851 If RELOCS_RETURN is non-NULL then returns in it a pointer to the
11852 loaded relocs. It is then the caller's responsibility to free them.
11853 FIXME: Add support for more relocations ? */
11856 apply_relocations (void * file
,
11857 const Elf_Internal_Shdr
* section
,
11858 unsigned char * start
,
11859 bfd_size_type size
,
11860 void ** relocs_return
,
11861 unsigned long * num_relocs_return
)
11863 Elf_Internal_Shdr
* relsec
;
11864 unsigned char * end
= start
+ size
;
11866 if (relocs_return
!= NULL
)
11868 * (Elf_Internal_Rela
**) relocs_return
= NULL
;
11869 * num_relocs_return
= 0;
11872 if (elf_header
.e_type
!= ET_REL
)
11875 /* Find the reloc section associated with the section. */
11876 for (relsec
= section_headers
;
11877 relsec
< section_headers
+ elf_header
.e_shnum
;
11880 bfd_boolean is_rela
;
11881 unsigned long num_relocs
;
11882 Elf_Internal_Rela
* relocs
;
11883 Elf_Internal_Rela
* rp
;
11884 Elf_Internal_Shdr
* symsec
;
11885 Elf_Internal_Sym
* symtab
;
11886 unsigned long num_syms
;
11887 Elf_Internal_Sym
* sym
;
11889 if ((relsec
->sh_type
!= SHT_RELA
&& relsec
->sh_type
!= SHT_REL
)
11890 || relsec
->sh_info
>= elf_header
.e_shnum
11891 || section_headers
+ relsec
->sh_info
!= section
11892 || relsec
->sh_size
== 0
11893 || relsec
->sh_link
>= elf_header
.e_shnum
)
11896 is_rela
= relsec
->sh_type
== SHT_RELA
;
11900 if (!slurp_rela_relocs ((FILE *) file
, relsec
->sh_offset
,
11901 relsec
->sh_size
, & relocs
, & num_relocs
))
11906 if (!slurp_rel_relocs ((FILE *) file
, relsec
->sh_offset
,
11907 relsec
->sh_size
, & relocs
, & num_relocs
))
11911 /* SH uses RELA but uses in place value instead of the addend field. */
11912 if (elf_header
.e_machine
== EM_SH
)
11915 symsec
= section_headers
+ relsec
->sh_link
;
11916 symtab
= GET_ELF_SYMBOLS ((FILE *) file
, symsec
, & num_syms
);
11918 for (rp
= relocs
; rp
< relocs
+ num_relocs
; ++rp
)
11921 unsigned int reloc_type
;
11922 unsigned int reloc_size
;
11923 unsigned char * rloc
;
11924 unsigned long sym_index
;
11926 reloc_type
= get_reloc_type (rp
->r_info
);
11928 if (target_specific_reloc_handling (rp
, start
, symtab
))
11930 else if (is_none_reloc (reloc_type
))
11932 else if (is_32bit_abs_reloc (reloc_type
)
11933 || is_32bit_pcrel_reloc (reloc_type
))
11935 else if (is_64bit_abs_reloc (reloc_type
)
11936 || is_64bit_pcrel_reloc (reloc_type
))
11938 else if (is_24bit_abs_reloc (reloc_type
))
11940 else if (is_16bit_abs_reloc (reloc_type
))
11944 static unsigned int prev_reloc
= 0;
11945 if (reloc_type
!= prev_reloc
)
11946 warn (_("unable to apply unsupported reloc type %d to section %s\n"),
11947 reloc_type
, printable_section_name (section
));
11948 prev_reloc
= reloc_type
;
11952 rloc
= start
+ rp
->r_offset
;
11953 if ((rloc
+ reloc_size
) > end
|| (rloc
< start
))
11955 warn (_("skipping invalid relocation offset 0x%lx in section %s\n"),
11956 (unsigned long) rp
->r_offset
,
11957 printable_section_name (section
));
11961 sym_index
= (unsigned long) get_reloc_symindex (rp
->r_info
);
11962 if (sym_index
>= num_syms
)
11964 warn (_("skipping invalid relocation symbol index 0x%lx in section %s\n"),
11965 sym_index
, printable_section_name (section
));
11968 sym
= symtab
+ sym_index
;
11970 /* If the reloc has a symbol associated with it,
11971 make sure that it is of an appropriate type.
11973 Relocations against symbols without type can happen.
11974 Gcc -feliminate-dwarf2-dups may generate symbols
11975 without type for debug info.
11977 Icc generates relocations against function symbols
11978 instead of local labels.
11980 Relocations against object symbols can happen, eg when
11981 referencing a global array. For an example of this see
11982 the _clz.o binary in libgcc.a. */
11984 && ELF_ST_TYPE (sym
->st_info
) > STT_SECTION
)
11986 warn (_("skipping unexpected symbol type %s in %ld'th relocation in section %s\n"),
11987 get_symbol_type (ELF_ST_TYPE (sym
->st_info
)),
11988 (long int)(rp
- relocs
),
11989 printable_section_name (relsec
));
11995 addend
+= rp
->r_addend
;
11996 /* R_XTENSA_32, R_PJ_DATA_DIR32 and R_D30V_32_NORMAL are
11997 partial_inplace. */
11999 || (elf_header
.e_machine
== EM_XTENSA
12000 && reloc_type
== 1)
12001 || ((elf_header
.e_machine
== EM_PJ
12002 || elf_header
.e_machine
== EM_PJ_OLD
)
12003 && reloc_type
== 1)
12004 || ((elf_header
.e_machine
== EM_D30V
12005 || elf_header
.e_machine
== EM_CYGNUS_D30V
)
12006 && reloc_type
== 12))
12007 addend
+= byte_get (rloc
, reloc_size
);
12009 if (is_32bit_pcrel_reloc (reloc_type
)
12010 || is_64bit_pcrel_reloc (reloc_type
))
12012 /* On HPPA, all pc-relative relocations are biased by 8. */
12013 if (elf_header
.e_machine
== EM_PARISC
)
12015 byte_put (rloc
, (addend
+ sym
->st_value
) - rp
->r_offset
,
12019 byte_put (rloc
, addend
+ sym
->st_value
, reloc_size
);
12026 * (Elf_Internal_Rela
**) relocs_return
= relocs
;
12027 * num_relocs_return
= num_relocs
;
12036 #ifdef SUPPORT_DISASSEMBLY
12038 disassemble_section (Elf_Internal_Shdr
* section
, FILE * file
)
12040 printf (_("\nAssembly dump of section %s\n"), printable_section_name (section
));
12042 /* FIXME: XXX -- to be done --- XXX */
12048 /* Reads in the contents of SECTION from FILE, returning a pointer
12049 to a malloc'ed buffer or NULL if something went wrong. */
12052 get_section_contents (Elf_Internal_Shdr
* section
, FILE * file
)
12054 bfd_size_type num_bytes
;
12056 num_bytes
= section
->sh_size
;
12058 if (num_bytes
== 0 || section
->sh_type
== SHT_NOBITS
)
12060 printf (_("\nSection '%s' has no data to dump.\n"),
12061 printable_section_name (section
));
12065 return (char *) get_data (NULL
, file
, section
->sh_offset
, 1, num_bytes
,
12066 _("section contents"));
12069 /* Uncompresses a section that was compressed using zlib, in place. */
12072 uncompress_section_contents (unsigned char **buffer
,
12073 dwarf_size_type uncompressed_size
,
12074 dwarf_size_type
*size
)
12076 dwarf_size_type compressed_size
= *size
;
12077 unsigned char * compressed_buffer
= *buffer
;
12078 unsigned char * uncompressed_buffer
;
12082 /* It is possible the section consists of several compressed
12083 buffers concatenated together, so we uncompress in a loop. */
12084 /* PR 18313: The state field in the z_stream structure is supposed
12085 to be invisible to the user (ie us), but some compilers will
12086 still complain about it being used without initialisation. So
12087 we first zero the entire z_stream structure and then set the fields
12089 memset (& strm
, 0, sizeof strm
);
12090 strm
.avail_in
= compressed_size
;
12091 strm
.next_in
= (Bytef
*) compressed_buffer
;
12092 strm
.avail_out
= uncompressed_size
;
12093 uncompressed_buffer
= (unsigned char *) xmalloc (uncompressed_size
);
12095 rc
= inflateInit (& strm
);
12096 while (strm
.avail_in
> 0)
12100 strm
.next_out
= ((Bytef
*) uncompressed_buffer
12101 + (uncompressed_size
- strm
.avail_out
));
12102 rc
= inflate (&strm
, Z_FINISH
);
12103 if (rc
!= Z_STREAM_END
)
12105 rc
= inflateReset (& strm
);
12107 rc
= inflateEnd (& strm
);
12109 || strm
.avail_out
!= 0)
12112 *buffer
= uncompressed_buffer
;
12113 *size
= uncompressed_size
;
12117 free (uncompressed_buffer
);
12118 /* Indicate decompression failure. */
12124 dump_section_as_strings (Elf_Internal_Shdr
* section
, FILE * file
)
12126 Elf_Internal_Shdr
* relsec
;
12127 bfd_size_type num_bytes
;
12128 unsigned char * data
;
12129 unsigned char * end
;
12130 unsigned char * real_start
;
12131 unsigned char * start
;
12132 bfd_boolean some_strings_shown
;
12134 real_start
= start
= (unsigned char *) get_section_contents (section
,
12138 num_bytes
= section
->sh_size
;
12140 printf (_("\nString dump of section '%s':\n"), printable_section_name (section
));
12142 if (decompress_dumps
)
12144 dwarf_size_type new_size
= num_bytes
;
12145 dwarf_size_type uncompressed_size
= 0;
12147 if ((section
->sh_flags
& SHF_COMPRESSED
) != 0)
12149 Elf_Internal_Chdr chdr
;
12150 unsigned int compression_header_size
12151 = get_compression_header (& chdr
, (unsigned char *) start
);
12153 if (chdr
.ch_type
!= ELFCOMPRESS_ZLIB
)
12155 warn (_("section '%s' has unsupported compress type: %d\n"),
12156 printable_section_name (section
), chdr
.ch_type
);
12159 else if (chdr
.ch_addralign
!= section
->sh_addralign
)
12161 warn (_("compressed section '%s' is corrupted\n"),
12162 printable_section_name (section
));
12165 uncompressed_size
= chdr
.ch_size
;
12166 start
+= compression_header_size
;
12167 new_size
-= compression_header_size
;
12169 else if (new_size
> 12 && streq ((char *) start
, "ZLIB"))
12171 /* Read the zlib header. In this case, it should be "ZLIB"
12172 followed by the uncompressed section size, 8 bytes in
12173 big-endian order. */
12174 uncompressed_size
= start
[4]; uncompressed_size
<<= 8;
12175 uncompressed_size
+= start
[5]; uncompressed_size
<<= 8;
12176 uncompressed_size
+= start
[6]; uncompressed_size
<<= 8;
12177 uncompressed_size
+= start
[7]; uncompressed_size
<<= 8;
12178 uncompressed_size
+= start
[8]; uncompressed_size
<<= 8;
12179 uncompressed_size
+= start
[9]; uncompressed_size
<<= 8;
12180 uncompressed_size
+= start
[10]; uncompressed_size
<<= 8;
12181 uncompressed_size
+= start
[11];
12186 if (uncompressed_size
12187 && uncompress_section_contents (& start
,
12188 uncompressed_size
, & new_size
))
12189 num_bytes
= new_size
;
12192 /* If the section being dumped has relocations against it the user might
12193 be expecting these relocations to have been applied. Check for this
12194 case and issue a warning message in order to avoid confusion.
12195 FIXME: Maybe we ought to have an option that dumps a section with
12196 relocs applied ? */
12197 for (relsec
= section_headers
;
12198 relsec
< section_headers
+ elf_header
.e_shnum
;
12201 if ((relsec
->sh_type
!= SHT_RELA
&& relsec
->sh_type
!= SHT_REL
)
12202 || relsec
->sh_info
>= elf_header
.e_shnum
12203 || section_headers
+ relsec
->sh_info
!= section
12204 || relsec
->sh_size
== 0
12205 || relsec
->sh_link
>= elf_header
.e_shnum
)
12208 printf (_(" Note: This section has relocations against it, but these have NOT been applied to this dump.\n"));
12213 end
= start
+ num_bytes
;
12214 some_strings_shown
= FALSE
;
12218 while (!ISPRINT (* data
))
12219 if (++ data
>= end
)
12224 size_t maxlen
= end
- data
;
12227 /* PR 11128: Use two separate invocations in order to work
12228 around bugs in the Solaris 8 implementation of printf. */
12229 printf (" [%6tx] ", data
- start
);
12231 printf (" [%6Ix] ", (size_t) (data
- start
));
12235 print_symbol ((int) maxlen
, (const char *) data
);
12237 data
+= strnlen ((const char *) data
, maxlen
);
12241 printf (_("<corrupt>\n"));
12244 some_strings_shown
= TRUE
;
12248 if (! some_strings_shown
)
12249 printf (_(" No strings found in this section."));
12257 dump_section_as_bytes (Elf_Internal_Shdr
* section
,
12259 bfd_boolean relocate
)
12261 Elf_Internal_Shdr
* relsec
;
12262 bfd_size_type bytes
;
12263 bfd_size_type section_size
;
12265 unsigned char * data
;
12266 unsigned char * real_start
;
12267 unsigned char * start
;
12269 real_start
= start
= (unsigned char *) get_section_contents (section
, file
);
12272 section_size
= section
->sh_size
;
12274 printf (_("\nHex dump of section '%s':\n"), printable_section_name (section
));
12276 if (decompress_dumps
)
12278 dwarf_size_type new_size
= section_size
;
12279 dwarf_size_type uncompressed_size
= 0;
12281 if ((section
->sh_flags
& SHF_COMPRESSED
) != 0)
12283 Elf_Internal_Chdr chdr
;
12284 unsigned int compression_header_size
12285 = get_compression_header (& chdr
, start
);
12287 if (chdr
.ch_type
!= ELFCOMPRESS_ZLIB
)
12289 warn (_("section '%s' has unsupported compress type: %d\n"),
12290 printable_section_name (section
), chdr
.ch_type
);
12293 else if (chdr
.ch_addralign
!= section
->sh_addralign
)
12295 warn (_("compressed section '%s' is corrupted\n"),
12296 printable_section_name (section
));
12299 uncompressed_size
= chdr
.ch_size
;
12300 start
+= compression_header_size
;
12301 new_size
-= compression_header_size
;
12303 else if (new_size
> 12 && streq ((char *) start
, "ZLIB"))
12305 /* Read the zlib header. In this case, it should be "ZLIB"
12306 followed by the uncompressed section size, 8 bytes in
12307 big-endian order. */
12308 uncompressed_size
= start
[4]; uncompressed_size
<<= 8;
12309 uncompressed_size
+= start
[5]; uncompressed_size
<<= 8;
12310 uncompressed_size
+= start
[6]; uncompressed_size
<<= 8;
12311 uncompressed_size
+= start
[7]; uncompressed_size
<<= 8;
12312 uncompressed_size
+= start
[8]; uncompressed_size
<<= 8;
12313 uncompressed_size
+= start
[9]; uncompressed_size
<<= 8;
12314 uncompressed_size
+= start
[10]; uncompressed_size
<<= 8;
12315 uncompressed_size
+= start
[11];
12320 if (uncompressed_size
12321 && uncompress_section_contents (& start
, uncompressed_size
,
12323 section_size
= new_size
;
12328 apply_relocations (file
, section
, start
, section_size
, NULL
, NULL
);
12332 /* If the section being dumped has relocations against it the user might
12333 be expecting these relocations to have been applied. Check for this
12334 case and issue a warning message in order to avoid confusion.
12335 FIXME: Maybe we ought to have an option that dumps a section with
12336 relocs applied ? */
12337 for (relsec
= section_headers
;
12338 relsec
< section_headers
+ elf_header
.e_shnum
;
12341 if ((relsec
->sh_type
!= SHT_RELA
&& relsec
->sh_type
!= SHT_REL
)
12342 || relsec
->sh_info
>= elf_header
.e_shnum
12343 || section_headers
+ relsec
->sh_info
!= section
12344 || relsec
->sh_size
== 0
12345 || relsec
->sh_link
>= elf_header
.e_shnum
)
12348 printf (_(" NOTE: This section has relocations against it, but these have NOT been applied to this dump.\n"));
12353 addr
= section
->sh_addr
;
12354 bytes
= section_size
;
12363 lbytes
= (bytes
> 16 ? 16 : bytes
);
12365 printf (" 0x%8.8lx ", (unsigned long) addr
);
12367 for (j
= 0; j
< 16; j
++)
12370 printf ("%2.2x", data
[j
]);
12378 for (j
= 0; j
< lbytes
; j
++)
12381 if (k
>= ' ' && k
< 0x7f)
12400 load_specific_debug_section (enum dwarf_section_display_enum debug
,
12401 const Elf_Internal_Shdr
* sec
, void * file
)
12403 struct dwarf_section
* section
= &debug_displays
[debug
].section
;
12406 /* If it is already loaded, do nothing. */
12407 if (section
->start
!= NULL
)
12410 snprintf (buf
, sizeof (buf
), _("%s section data"), section
->name
);
12411 section
->address
= sec
->sh_addr
;
12412 section
->user_data
= NULL
;
12413 section
->start
= (unsigned char *) get_data (NULL
, (FILE *) file
,
12415 sec
->sh_size
, buf
);
12416 if (section
->start
== NULL
)
12420 unsigned char *start
= section
->start
;
12421 dwarf_size_type size
= sec
->sh_size
;
12422 dwarf_size_type uncompressed_size
= 0;
12424 if ((sec
->sh_flags
& SHF_COMPRESSED
) != 0)
12426 Elf_Internal_Chdr chdr
;
12427 unsigned int compression_header_size
12428 = get_compression_header (&chdr
, start
);
12429 if (chdr
.ch_type
!= ELFCOMPRESS_ZLIB
)
12431 warn (_("section '%s' has unsupported compress type: %d\n"),
12432 section
->name
, chdr
.ch_type
);
12435 else if (chdr
.ch_addralign
!= sec
->sh_addralign
)
12437 warn (_("compressed section '%s' is corrupted\n"),
12441 uncompressed_size
= chdr
.ch_size
;
12442 start
+= compression_header_size
;
12443 size
-= compression_header_size
;
12445 else if (size
> 12 && streq ((char *) start
, "ZLIB"))
12447 /* Read the zlib header. In this case, it should be "ZLIB"
12448 followed by the uncompressed section size, 8 bytes in
12449 big-endian order. */
12450 uncompressed_size
= start
[4]; uncompressed_size
<<= 8;
12451 uncompressed_size
+= start
[5]; uncompressed_size
<<= 8;
12452 uncompressed_size
+= start
[6]; uncompressed_size
<<= 8;
12453 uncompressed_size
+= start
[7]; uncompressed_size
<<= 8;
12454 uncompressed_size
+= start
[8]; uncompressed_size
<<= 8;
12455 uncompressed_size
+= start
[9]; uncompressed_size
<<= 8;
12456 uncompressed_size
+= start
[10]; uncompressed_size
<<= 8;
12457 uncompressed_size
+= start
[11];
12462 if (uncompressed_size
12463 && uncompress_section_contents (&start
, uncompressed_size
,
12466 /* Free the compressed buffer, update the section buffer
12467 and the section size if uncompress is successful. */
12468 free (section
->start
);
12469 section
->start
= start
;
12471 section
->size
= size
;
12474 if (section
->start
== NULL
)
12477 if (debug_displays
[debug
].relocate
)
12478 apply_relocations ((FILE *) file
, sec
, section
->start
, section
->size
,
12479 & section
->reloc_info
, & section
->num_relocs
);
12482 section
->reloc_info
= NULL
;
12483 section
->num_relocs
= 0;
12489 /* If this is not NULL, load_debug_section will only look for sections
12490 within the list of sections given here. */
12491 unsigned int *section_subset
= NULL
;
12494 load_debug_section (enum dwarf_section_display_enum debug
, void * file
)
12496 struct dwarf_section
* section
= &debug_displays
[debug
].section
;
12497 Elf_Internal_Shdr
* sec
;
12499 /* Locate the debug section. */
12500 sec
= find_section_in_set (section
->uncompressed_name
, section_subset
);
12502 section
->name
= section
->uncompressed_name
;
12505 sec
= find_section_in_set (section
->compressed_name
, section_subset
);
12507 section
->name
= section
->compressed_name
;
12512 /* If we're loading from a subset of sections, and we've loaded
12513 a section matching this name before, it's likely that it's a
12515 if (section_subset
!= NULL
)
12516 free_debug_section (debug
);
12518 return load_specific_debug_section (debug
, sec
, (FILE *) file
);
12522 free_debug_section (enum dwarf_section_display_enum debug
)
12524 struct dwarf_section
* section
= &debug_displays
[debug
].section
;
12526 if (section
->start
== NULL
)
12529 free ((char *) section
->start
);
12530 section
->start
= NULL
;
12531 section
->address
= 0;
12536 display_debug_section (int shndx
, Elf_Internal_Shdr
* section
, FILE * file
)
12538 char * name
= SECTION_NAME (section
);
12539 const char * print_name
= printable_section_name (section
);
12540 bfd_size_type length
;
12544 length
= section
->sh_size
;
12547 printf (_("\nSection '%s' has no debugging data.\n"), print_name
);
12550 if (section
->sh_type
== SHT_NOBITS
)
12552 /* There is no point in dumping the contents of a debugging section
12553 which has the NOBITS type - the bits in the file will be random.
12554 This can happen when a file containing a .eh_frame section is
12555 stripped with the --only-keep-debug command line option. */
12556 printf (_("section '%s' has the NOBITS type - its contents are unreliable.\n"),
12561 if (const_strneq (name
, ".gnu.linkonce.wi."))
12562 name
= ".debug_info";
12564 /* See if we know how to display the contents of this section. */
12565 for (i
= 0; i
< max
; i
++)
12566 if (streq (debug_displays
[i
].section
.uncompressed_name
, name
)
12567 || (i
== line
&& const_strneq (name
, ".debug_line."))
12568 || streq (debug_displays
[i
].section
.compressed_name
, name
))
12570 struct dwarf_section
* sec
= &debug_displays
[i
].section
;
12571 int secondary
= (section
!= find_section (name
));
12574 free_debug_section ((enum dwarf_section_display_enum
) i
);
12576 if (i
== line
&& const_strneq (name
, ".debug_line."))
12578 else if (streq (sec
->uncompressed_name
, name
))
12579 sec
->name
= sec
->uncompressed_name
;
12581 sec
->name
= sec
->compressed_name
;
12582 if (load_specific_debug_section ((enum dwarf_section_display_enum
) i
,
12585 /* If this debug section is part of a CU/TU set in a .dwp file,
12586 restrict load_debug_section to the sections in that set. */
12587 section_subset
= find_cu_tu_set (file
, shndx
);
12589 result
&= debug_displays
[i
].display (sec
, file
);
12591 section_subset
= NULL
;
12593 if (secondary
|| (i
!= info
&& i
!= abbrev
))
12594 free_debug_section ((enum dwarf_section_display_enum
) i
);
12602 printf (_("Unrecognized debug section: %s\n"), print_name
);
12609 /* Set DUMP_SECTS for all sections where dumps were requested
12610 based on section name. */
12613 initialise_dumps_byname (void)
12615 struct dump_list_entry
* cur
;
12617 for (cur
= dump_sects_byname
; cur
; cur
= cur
->next
)
12622 for (i
= 0, any
= 0; i
< elf_header
.e_shnum
; i
++)
12623 if (streq (SECTION_NAME (section_headers
+ i
), cur
->name
))
12625 request_dump_bynumber (i
, cur
->type
);
12630 warn (_("Section '%s' was not dumped because it does not exist!\n"),
12636 process_section_contents (FILE * file
)
12638 Elf_Internal_Shdr
* section
;
12644 initialise_dumps_byname ();
12646 for (i
= 0, section
= section_headers
;
12647 i
< elf_header
.e_shnum
&& i
< num_dump_sects
;
12650 #ifdef SUPPORT_DISASSEMBLY
12651 if (dump_sects
[i
] & DISASS_DUMP
)
12652 disassemble_section (section
, file
);
12654 if (dump_sects
[i
] & HEX_DUMP
)
12655 dump_section_as_bytes (section
, file
, FALSE
);
12657 if (dump_sects
[i
] & RELOC_DUMP
)
12658 dump_section_as_bytes (section
, file
, TRUE
);
12660 if (dump_sects
[i
] & STRING_DUMP
)
12661 dump_section_as_strings (section
, file
);
12663 if (dump_sects
[i
] & DEBUG_DUMP
)
12664 display_debug_section (i
, section
, file
);
12667 /* Check to see if the user requested a
12668 dump of a section that does not exist. */
12669 while (i
++ < num_dump_sects
)
12671 warn (_("Section %d was not dumped because it does not exist!\n"), i
);
12675 process_mips_fpe_exception (int mask
)
12680 if (mask
& OEX_FPU_INEX
)
12681 fputs ("INEX", stdout
), first
= 0;
12682 if (mask
& OEX_FPU_UFLO
)
12683 printf ("%sUFLO", first
? "" : "|"), first
= 0;
12684 if (mask
& OEX_FPU_OFLO
)
12685 printf ("%sOFLO", first
? "" : "|"), first
= 0;
12686 if (mask
& OEX_FPU_DIV0
)
12687 printf ("%sDIV0", first
? "" : "|"), first
= 0;
12688 if (mask
& OEX_FPU_INVAL
)
12689 printf ("%sINVAL", first
? "" : "|");
12692 fputs ("0", stdout
);
12695 /* Display's the value of TAG at location P. If TAG is
12696 greater than 0 it is assumed to be an unknown tag, and
12697 a message is printed to this effect. Otherwise it is
12698 assumed that a message has already been printed.
12700 If the bottom bit of TAG is set it assumed to have a
12701 string value, otherwise it is assumed to have an integer
12704 Returns an updated P pointing to the first unread byte
12705 beyond the end of TAG's value.
12707 Reads at or beyond END will not be made. */
12709 static unsigned char *
12710 display_tag_value (int tag
,
12712 const unsigned char * const end
)
12717 printf (" Tag_unknown_%d: ", tag
);
12721 warn (_("<corrupt tag>\n"));
12725 /* PR 17531 file: 027-19978-0.004. */
12726 size_t maxlen
= (end
- p
) - 1;
12731 print_symbol ((int) maxlen
, (const char *) p
);
12732 p
+= strnlen ((char *) p
, maxlen
) + 1;
12736 printf (_("<corrupt string tag>"));
12737 p
= (unsigned char *) end
;
12745 val
= read_uleb128 (p
, &len
, end
);
12747 printf ("%ld (0x%lx)\n", val
, val
);
12754 /* ARM EABI attributes section. */
12759 /* 0 = special, 1 = string, 2 = uleb123, > 0x80 == table lookup. */
12761 const char ** table
;
12762 } arm_attr_public_tag
;
12764 static const char * arm_attr_tag_CPU_arch
[] =
12765 {"Pre-v4", "v4", "v4T", "v5T", "v5TE", "v5TEJ", "v6", "v6KZ", "v6T2",
12766 "v6K", "v7", "v6-M", "v6S-M", "v7E-M", "v8", "", "v8-M.baseline",
12768 static const char * arm_attr_tag_ARM_ISA_use
[] = {"No", "Yes"};
12769 static const char * arm_attr_tag_THUMB_ISA_use
[] =
12770 {"No", "Thumb-1", "Thumb-2", "Yes"};
12771 static const char * arm_attr_tag_FP_arch
[] =
12772 {"No", "VFPv1", "VFPv2", "VFPv3", "VFPv3-D16", "VFPv4", "VFPv4-D16",
12773 "FP for ARMv8", "FPv5/FP-D16 for ARMv8"};
12774 static const char * arm_attr_tag_WMMX_arch
[] = {"No", "WMMXv1", "WMMXv2"};
12775 static const char * arm_attr_tag_Advanced_SIMD_arch
[] =
12776 {"No", "NEONv1", "NEONv1 with Fused-MAC", "NEON for ARMv8"};
12777 static const char * arm_attr_tag_PCS_config
[] =
12778 {"None", "Bare platform", "Linux application", "Linux DSO", "PalmOS 2004",
12779 "PalmOS (reserved)", "SymbianOS 2004", "SymbianOS (reserved)"};
12780 static const char * arm_attr_tag_ABI_PCS_R9_use
[] =
12781 {"V6", "SB", "TLS", "Unused"};
12782 static const char * arm_attr_tag_ABI_PCS_RW_data
[] =
12783 {"Absolute", "PC-relative", "SB-relative", "None"};
12784 static const char * arm_attr_tag_ABI_PCS_RO_data
[] =
12785 {"Absolute", "PC-relative", "None"};
12786 static const char * arm_attr_tag_ABI_PCS_GOT_use
[] =
12787 {"None", "direct", "GOT-indirect"};
12788 static const char * arm_attr_tag_ABI_PCS_wchar_t
[] =
12789 {"None", "??? 1", "2", "??? 3", "4"};
12790 static const char * arm_attr_tag_ABI_FP_rounding
[] = {"Unused", "Needed"};
12791 static const char * arm_attr_tag_ABI_FP_denormal
[] =
12792 {"Unused", "Needed", "Sign only"};
12793 static const char * arm_attr_tag_ABI_FP_exceptions
[] = {"Unused", "Needed"};
12794 static const char * arm_attr_tag_ABI_FP_user_exceptions
[] = {"Unused", "Needed"};
12795 static const char * arm_attr_tag_ABI_FP_number_model
[] =
12796 {"Unused", "Finite", "RTABI", "IEEE 754"};
12797 static const char * arm_attr_tag_ABI_enum_size
[] =
12798 {"Unused", "small", "int", "forced to int"};
12799 static const char * arm_attr_tag_ABI_HardFP_use
[] =
12800 {"As Tag_FP_arch", "SP only", "Reserved", "Deprecated"};
12801 static const char * arm_attr_tag_ABI_VFP_args
[] =
12802 {"AAPCS", "VFP registers", "custom", "compatible"};
12803 static const char * arm_attr_tag_ABI_WMMX_args
[] =
12804 {"AAPCS", "WMMX registers", "custom"};
12805 static const char * arm_attr_tag_ABI_optimization_goals
[] =
12806 {"None", "Prefer Speed", "Aggressive Speed", "Prefer Size",
12807 "Aggressive Size", "Prefer Debug", "Aggressive Debug"};
12808 static const char * arm_attr_tag_ABI_FP_optimization_goals
[] =
12809 {"None", "Prefer Speed", "Aggressive Speed", "Prefer Size",
12810 "Aggressive Size", "Prefer Accuracy", "Aggressive Accuracy"};
12811 static const char * arm_attr_tag_CPU_unaligned_access
[] = {"None", "v6"};
12812 static const char * arm_attr_tag_FP_HP_extension
[] =
12813 {"Not Allowed", "Allowed"};
12814 static const char * arm_attr_tag_ABI_FP_16bit_format
[] =
12815 {"None", "IEEE 754", "Alternative Format"};
12816 static const char * arm_attr_tag_MPextension_use
[] =
12817 {"Not Allowed", "Allowed"};
12818 static const char * arm_attr_tag_DIV_use
[] =
12819 {"Allowed in Thumb-ISA, v7-R or v7-M", "Not allowed",
12820 "Allowed in v7-A with integer division extension"};
12821 static const char * arm_attr_tag_T2EE_use
[] = {"Not Allowed", "Allowed"};
12822 static const char * arm_attr_tag_Virtualization_use
[] =
12823 {"Not Allowed", "TrustZone", "Virtualization Extensions",
12824 "TrustZone and Virtualization Extensions"};
12825 static const char * arm_attr_tag_MPextension_use_legacy
[] =
12826 {"Not Allowed", "Allowed"};
12828 #define LOOKUP(id, name) \
12829 {id, #name, 0x80 | ARRAY_SIZE(arm_attr_tag_##name), arm_attr_tag_##name}
12830 static arm_attr_public_tag arm_attr_public_tags
[] =
12832 {4, "CPU_raw_name", 1, NULL
},
12833 {5, "CPU_name", 1, NULL
},
12834 LOOKUP(6, CPU_arch
),
12835 {7, "CPU_arch_profile", 0, NULL
},
12836 LOOKUP(8, ARM_ISA_use
),
12837 LOOKUP(9, THUMB_ISA_use
),
12838 LOOKUP(10, FP_arch
),
12839 LOOKUP(11, WMMX_arch
),
12840 LOOKUP(12, Advanced_SIMD_arch
),
12841 LOOKUP(13, PCS_config
),
12842 LOOKUP(14, ABI_PCS_R9_use
),
12843 LOOKUP(15, ABI_PCS_RW_data
),
12844 LOOKUP(16, ABI_PCS_RO_data
),
12845 LOOKUP(17, ABI_PCS_GOT_use
),
12846 LOOKUP(18, ABI_PCS_wchar_t
),
12847 LOOKUP(19, ABI_FP_rounding
),
12848 LOOKUP(20, ABI_FP_denormal
),
12849 LOOKUP(21, ABI_FP_exceptions
),
12850 LOOKUP(22, ABI_FP_user_exceptions
),
12851 LOOKUP(23, ABI_FP_number_model
),
12852 {24, "ABI_align_needed", 0, NULL
},
12853 {25, "ABI_align_preserved", 0, NULL
},
12854 LOOKUP(26, ABI_enum_size
),
12855 LOOKUP(27, ABI_HardFP_use
),
12856 LOOKUP(28, ABI_VFP_args
),
12857 LOOKUP(29, ABI_WMMX_args
),
12858 LOOKUP(30, ABI_optimization_goals
),
12859 LOOKUP(31, ABI_FP_optimization_goals
),
12860 {32, "compatibility", 0, NULL
},
12861 LOOKUP(34, CPU_unaligned_access
),
12862 LOOKUP(36, FP_HP_extension
),
12863 LOOKUP(38, ABI_FP_16bit_format
),
12864 LOOKUP(42, MPextension_use
),
12865 LOOKUP(44, DIV_use
),
12866 {64, "nodefaults", 0, NULL
},
12867 {65, "also_compatible_with", 0, NULL
},
12868 LOOKUP(66, T2EE_use
),
12869 {67, "conformance", 1, NULL
},
12870 LOOKUP(68, Virtualization_use
),
12871 LOOKUP(70, MPextension_use_legacy
)
12875 static unsigned char *
12876 display_arm_attribute (unsigned char * p
,
12877 const unsigned char * const end
)
12882 arm_attr_public_tag
* attr
;
12886 tag
= read_uleb128 (p
, &len
, end
);
12889 for (i
= 0; i
< ARRAY_SIZE (arm_attr_public_tags
); i
++)
12891 if (arm_attr_public_tags
[i
].tag
== tag
)
12893 attr
= &arm_attr_public_tags
[i
];
12900 printf (" Tag_%s: ", attr
->name
);
12901 switch (attr
->type
)
12906 case 7: /* Tag_CPU_arch_profile. */
12907 val
= read_uleb128 (p
, &len
, end
);
12911 case 0: printf (_("None\n")); break;
12912 case 'A': printf (_("Application\n")); break;
12913 case 'R': printf (_("Realtime\n")); break;
12914 case 'M': printf (_("Microcontroller\n")); break;
12915 case 'S': printf (_("Application or Realtime\n")); break;
12916 default: printf ("??? (%d)\n", val
); break;
12920 case 24: /* Tag_align_needed. */
12921 val
= read_uleb128 (p
, &len
, end
);
12925 case 0: printf (_("None\n")); break;
12926 case 1: printf (_("8-byte\n")); break;
12927 case 2: printf (_("4-byte\n")); break;
12928 case 3: printf ("??? 3\n"); break;
12931 printf (_("8-byte and up to %d-byte extended\n"),
12934 printf ("??? (%d)\n", val
);
12939 case 25: /* Tag_align_preserved. */
12940 val
= read_uleb128 (p
, &len
, end
);
12944 case 0: printf (_("None\n")); break;
12945 case 1: printf (_("8-byte, except leaf SP\n")); break;
12946 case 2: printf (_("8-byte\n")); break;
12947 case 3: printf ("??? 3\n"); break;
12950 printf (_("8-byte and up to %d-byte extended\n"),
12953 printf ("??? (%d)\n", val
);
12958 case 32: /* Tag_compatibility. */
12960 val
= read_uleb128 (p
, &len
, end
);
12962 printf (_("flag = %d, vendor = "), val
);
12965 size_t maxlen
= (end
- p
) - 1;
12967 print_symbol ((int) maxlen
, (const char *) p
);
12968 p
+= strnlen ((char *) p
, maxlen
) + 1;
12972 printf (_("<corrupt>"));
12973 p
= (unsigned char *) end
;
12979 case 64: /* Tag_nodefaults. */
12980 /* PR 17531: file: 001-505008-0.01. */
12983 printf (_("True\n"));
12986 case 65: /* Tag_also_compatible_with. */
12987 val
= read_uleb128 (p
, &len
, end
);
12989 if (val
== 6 /* Tag_CPU_arch. */)
12991 val
= read_uleb128 (p
, &len
, end
);
12993 if ((unsigned int) val
>= ARRAY_SIZE (arm_attr_tag_CPU_arch
))
12994 printf ("??? (%d)\n", val
);
12996 printf ("%s\n", arm_attr_tag_CPU_arch
[val
]);
13000 while (p
< end
&& *(p
++) != '\0' /* NUL terminator. */)
13005 printf (_("<unknown: %d>\n"), tag
);
13011 return display_tag_value (-1, p
, end
);
13013 return display_tag_value (0, p
, end
);
13016 assert (attr
->type
& 0x80);
13017 val
= read_uleb128 (p
, &len
, end
);
13019 type
= attr
->type
& 0x7f;
13021 printf ("??? (%d)\n", val
);
13023 printf ("%s\n", attr
->table
[val
]);
13028 return display_tag_value (tag
, p
, end
);
13031 static unsigned char *
13032 display_gnu_attribute (unsigned char * p
,
13033 unsigned char * (* display_proc_gnu_attribute
) (unsigned char *, int, const unsigned char * const),
13034 const unsigned char * const end
)
13040 tag
= read_uleb128 (p
, &len
, end
);
13043 /* Tag_compatibility is the only generic GNU attribute defined at
13047 val
= read_uleb128 (p
, &len
, end
);
13050 printf (_("flag = %d, vendor = "), val
);
13053 printf (_("<corrupt>\n"));
13054 warn (_("corrupt vendor attribute\n"));
13060 size_t maxlen
= (end
- p
) - 1;
13062 print_symbol ((int) maxlen
, (const char *) p
);
13063 p
+= strnlen ((char *) p
, maxlen
) + 1;
13067 printf (_("<corrupt>"));
13068 p
= (unsigned char *) end
;
13075 if ((tag
& 2) == 0 && display_proc_gnu_attribute
)
13076 return display_proc_gnu_attribute (p
, tag
, end
);
13078 return display_tag_value (tag
, p
, end
);
13081 static unsigned char *
13082 display_power_gnu_attribute (unsigned char * p
,
13084 const unsigned char * const end
)
13089 if (tag
== Tag_GNU_Power_ABI_FP
)
13091 val
= read_uleb128 (p
, &len
, end
);
13093 printf (" Tag_GNU_Power_ABI_FP: ");
13098 printf (_("Hard or soft float\n"));
13101 printf (_("Hard float\n"));
13104 printf (_("Soft float\n"));
13107 printf (_("Single-precision hard float\n"));
13110 printf ("??? (%d)\n", val
);
13116 if (tag
== Tag_GNU_Power_ABI_Vector
)
13118 val
= read_uleb128 (p
, &len
, end
);
13120 printf (" Tag_GNU_Power_ABI_Vector: ");
13124 printf (_("Any\n"));
13127 printf (_("Generic\n"));
13130 printf ("AltiVec\n");
13136 printf ("??? (%d)\n", val
);
13142 if (tag
== Tag_GNU_Power_ABI_Struct_Return
)
13146 warn (_("corrupt Tag_GNU_Power_ABI_Struct_Return\n"));
13150 val
= read_uleb128 (p
, &len
, end
);
13152 printf (" Tag_GNU_Power_ABI_Struct_Return: ");
13156 printf (_("Any\n"));
13159 printf ("r3/r4\n");
13162 printf (_("Memory\n"));
13165 printf ("??? (%d)\n", val
);
13171 return display_tag_value (tag
& 1, p
, end
);
13174 static unsigned char *
13175 display_s390_gnu_attribute (unsigned char * p
,
13177 const unsigned char * const end
)
13182 if (tag
== Tag_GNU_S390_ABI_Vector
)
13184 val
= read_uleb128 (p
, &len
, end
);
13186 printf (" Tag_GNU_S390_ABI_Vector: ");
13191 printf (_("any\n"));
13194 printf (_("software\n"));
13197 printf (_("hardware\n"));
13200 printf ("??? (%d)\n", val
);
13206 return display_tag_value (tag
& 1, p
, end
);
13210 display_sparc_hwcaps (int mask
)
13216 if (mask
& ELF_SPARC_HWCAP_MUL32
)
13217 fputs ("mul32", stdout
), first
= 0;
13218 if (mask
& ELF_SPARC_HWCAP_DIV32
)
13219 printf ("%sdiv32", first
? "" : "|"), first
= 0;
13220 if (mask
& ELF_SPARC_HWCAP_FSMULD
)
13221 printf ("%sfsmuld", first
? "" : "|"), first
= 0;
13222 if (mask
& ELF_SPARC_HWCAP_V8PLUS
)
13223 printf ("%sv8plus", first
? "" : "|"), first
= 0;
13224 if (mask
& ELF_SPARC_HWCAP_POPC
)
13225 printf ("%spopc", first
? "" : "|"), first
= 0;
13226 if (mask
& ELF_SPARC_HWCAP_VIS
)
13227 printf ("%svis", first
? "" : "|"), first
= 0;
13228 if (mask
& ELF_SPARC_HWCAP_VIS2
)
13229 printf ("%svis2", first
? "" : "|"), first
= 0;
13230 if (mask
& ELF_SPARC_HWCAP_ASI_BLK_INIT
)
13231 printf ("%sASIBlkInit", first
? "" : "|"), first
= 0;
13232 if (mask
& ELF_SPARC_HWCAP_FMAF
)
13233 printf ("%sfmaf", first
? "" : "|"), first
= 0;
13234 if (mask
& ELF_SPARC_HWCAP_VIS3
)
13235 printf ("%svis3", first
? "" : "|"), first
= 0;
13236 if (mask
& ELF_SPARC_HWCAP_HPC
)
13237 printf ("%shpc", first
? "" : "|"), first
= 0;
13238 if (mask
& ELF_SPARC_HWCAP_RANDOM
)
13239 printf ("%srandom", first
? "" : "|"), first
= 0;
13240 if (mask
& ELF_SPARC_HWCAP_TRANS
)
13241 printf ("%strans", first
? "" : "|"), first
= 0;
13242 if (mask
& ELF_SPARC_HWCAP_FJFMAU
)
13243 printf ("%sfjfmau", first
? "" : "|"), first
= 0;
13244 if (mask
& ELF_SPARC_HWCAP_IMA
)
13245 printf ("%sima", first
? "" : "|"), first
= 0;
13246 if (mask
& ELF_SPARC_HWCAP_ASI_CACHE_SPARING
)
13247 printf ("%scspare", first
? "" : "|"), first
= 0;
13250 fputc ('0', stdout
);
13251 fputc ('\n', stdout
);
13255 display_sparc_hwcaps2 (int mask
)
13261 if (mask
& ELF_SPARC_HWCAP2_FJATHPLUS
)
13262 fputs ("fjathplus", stdout
), first
= 0;
13263 if (mask
& ELF_SPARC_HWCAP2_VIS3B
)
13264 printf ("%svis3b", first
? "" : "|"), first
= 0;
13265 if (mask
& ELF_SPARC_HWCAP2_ADP
)
13266 printf ("%sadp", first
? "" : "|"), first
= 0;
13267 if (mask
& ELF_SPARC_HWCAP2_SPARC5
)
13268 printf ("%ssparc5", first
? "" : "|"), first
= 0;
13269 if (mask
& ELF_SPARC_HWCAP2_MWAIT
)
13270 printf ("%smwait", first
? "" : "|"), first
= 0;
13271 if (mask
& ELF_SPARC_HWCAP2_XMPMUL
)
13272 printf ("%sxmpmul", first
? "" : "|"), first
= 0;
13273 if (mask
& ELF_SPARC_HWCAP2_XMONT
)
13274 printf ("%sxmont2", first
? "" : "|"), first
= 0;
13275 if (mask
& ELF_SPARC_HWCAP2_NSEC
)
13276 printf ("%snsec", first
? "" : "|"), first
= 0;
13277 if (mask
& ELF_SPARC_HWCAP2_FJATHHPC
)
13278 printf ("%sfjathhpc", first
? "" : "|"), first
= 0;
13279 if (mask
& ELF_SPARC_HWCAP2_FJDES
)
13280 printf ("%sfjdes", first
? "" : "|"), first
= 0;
13281 if (mask
& ELF_SPARC_HWCAP2_FJAES
)
13282 printf ("%sfjaes", first
? "" : "|"), first
= 0;
13285 fputc ('0', stdout
);
13286 fputc ('\n', stdout
);
13289 static unsigned char *
13290 display_sparc_gnu_attribute (unsigned char * p
,
13292 const unsigned char * const end
)
13297 if (tag
== Tag_GNU_Sparc_HWCAPS
)
13299 val
= read_uleb128 (p
, &len
, end
);
13301 printf (" Tag_GNU_Sparc_HWCAPS: ");
13302 display_sparc_hwcaps (val
);
13305 if (tag
== Tag_GNU_Sparc_HWCAPS2
)
13307 val
= read_uleb128 (p
, &len
, end
);
13309 printf (" Tag_GNU_Sparc_HWCAPS2: ");
13310 display_sparc_hwcaps2 (val
);
13314 return display_tag_value (tag
, p
, end
);
13318 print_mips_fp_abi_value (int val
)
13322 case Val_GNU_MIPS_ABI_FP_ANY
:
13323 printf (_("Hard or soft float\n"));
13325 case Val_GNU_MIPS_ABI_FP_DOUBLE
:
13326 printf (_("Hard float (double precision)\n"));
13328 case Val_GNU_MIPS_ABI_FP_SINGLE
:
13329 printf (_("Hard float (single precision)\n"));
13331 case Val_GNU_MIPS_ABI_FP_SOFT
:
13332 printf (_("Soft float\n"));
13334 case Val_GNU_MIPS_ABI_FP_OLD_64
:
13335 printf (_("Hard float (MIPS32r2 64-bit FPU 12 callee-saved)\n"));
13337 case Val_GNU_MIPS_ABI_FP_XX
:
13338 printf (_("Hard float (32-bit CPU, Any FPU)\n"));
13340 case Val_GNU_MIPS_ABI_FP_64
:
13341 printf (_("Hard float (32-bit CPU, 64-bit FPU)\n"));
13343 case Val_GNU_MIPS_ABI_FP_64A
:
13344 printf (_("Hard float compat (32-bit CPU, 64-bit FPU)\n"));
13346 case Val_GNU_MIPS_ABI_FP_NAN2008
:
13347 printf (_("NaN 2008 compatibility\n"));
13350 printf ("??? (%d)\n", val
);
13355 static unsigned char *
13356 display_mips_gnu_attribute (unsigned char * p
,
13358 const unsigned char * const end
)
13360 if (tag
== Tag_GNU_MIPS_ABI_FP
)
13365 val
= read_uleb128 (p
, &len
, end
);
13367 printf (" Tag_GNU_MIPS_ABI_FP: ");
13369 print_mips_fp_abi_value (val
);
13374 if (tag
== Tag_GNU_MIPS_ABI_MSA
)
13379 val
= read_uleb128 (p
, &len
, end
);
13381 printf (" Tag_GNU_MIPS_ABI_MSA: ");
13385 case Val_GNU_MIPS_ABI_MSA_ANY
:
13386 printf (_("Any MSA or not\n"));
13388 case Val_GNU_MIPS_ABI_MSA_128
:
13389 printf (_("128-bit MSA\n"));
13392 printf ("??? (%d)\n", val
);
13398 return display_tag_value (tag
& 1, p
, end
);
13401 static unsigned char *
13402 display_tic6x_attribute (unsigned char * p
,
13403 const unsigned char * const end
)
13409 tag
= read_uleb128 (p
, &len
, end
);
13415 val
= read_uleb128 (p
, &len
, end
);
13417 printf (" Tag_ISA: ");
13421 case C6XABI_Tag_ISA_none
:
13422 printf (_("None\n"));
13424 case C6XABI_Tag_ISA_C62X
:
13427 case C6XABI_Tag_ISA_C67X
:
13430 case C6XABI_Tag_ISA_C67XP
:
13431 printf ("C67x+\n");
13433 case C6XABI_Tag_ISA_C64X
:
13436 case C6XABI_Tag_ISA_C64XP
:
13437 printf ("C64x+\n");
13439 case C6XABI_Tag_ISA_C674X
:
13440 printf ("C674x\n");
13443 printf ("??? (%d)\n", val
);
13448 case Tag_ABI_wchar_t
:
13449 val
= read_uleb128 (p
, &len
, end
);
13451 printf (" Tag_ABI_wchar_t: ");
13455 printf (_("Not used\n"));
13458 printf (_("2 bytes\n"));
13461 printf (_("4 bytes\n"));
13464 printf ("??? (%d)\n", val
);
13469 case Tag_ABI_stack_align_needed
:
13470 val
= read_uleb128 (p
, &len
, end
);
13472 printf (" Tag_ABI_stack_align_needed: ");
13476 printf (_("8-byte\n"));
13479 printf (_("16-byte\n"));
13482 printf ("??? (%d)\n", val
);
13487 case Tag_ABI_stack_align_preserved
:
13488 val
= read_uleb128 (p
, &len
, end
);
13490 printf (" Tag_ABI_stack_align_preserved: ");
13494 printf (_("8-byte\n"));
13497 printf (_("16-byte\n"));
13500 printf ("??? (%d)\n", val
);
13506 val
= read_uleb128 (p
, &len
, end
);
13508 printf (" Tag_ABI_DSBT: ");
13512 printf (_("DSBT addressing not used\n"));
13515 printf (_("DSBT addressing used\n"));
13518 printf ("??? (%d)\n", val
);
13524 val
= read_uleb128 (p
, &len
, end
);
13526 printf (" Tag_ABI_PID: ");
13530 printf (_("Data addressing position-dependent\n"));
13533 printf (_("Data addressing position-independent, GOT near DP\n"));
13536 printf (_("Data addressing position-independent, GOT far from DP\n"));
13539 printf ("??? (%d)\n", val
);
13545 val
= read_uleb128 (p
, &len
, end
);
13547 printf (" Tag_ABI_PIC: ");
13551 printf (_("Code addressing position-dependent\n"));
13554 printf (_("Code addressing position-independent\n"));
13557 printf ("??? (%d)\n", val
);
13562 case Tag_ABI_array_object_alignment
:
13563 val
= read_uleb128 (p
, &len
, end
);
13565 printf (" Tag_ABI_array_object_alignment: ");
13569 printf (_("8-byte\n"));
13572 printf (_("4-byte\n"));
13575 printf (_("16-byte\n"));
13578 printf ("??? (%d)\n", val
);
13583 case Tag_ABI_array_object_align_expected
:
13584 val
= read_uleb128 (p
, &len
, end
);
13586 printf (" Tag_ABI_array_object_align_expected: ");
13590 printf (_("8-byte\n"));
13593 printf (_("4-byte\n"));
13596 printf (_("16-byte\n"));
13599 printf ("??? (%d)\n", val
);
13604 case Tag_ABI_compatibility
:
13606 val
= read_uleb128 (p
, &len
, end
);
13608 printf (" Tag_ABI_compatibility: ");
13609 printf (_("flag = %d, vendor = "), val
);
13612 size_t maxlen
= (end
- p
) - 1;
13614 print_symbol ((int) maxlen
, (const char *) p
);
13615 p
+= strnlen ((char *) p
, maxlen
) + 1;
13619 printf (_("<corrupt>"));
13620 p
= (unsigned char *) end
;
13626 case Tag_ABI_conformance
:
13628 printf (" Tag_ABI_conformance: \"");
13631 size_t maxlen
= (end
- p
) - 1;
13633 print_symbol ((int) maxlen
, (const char *) p
);
13634 p
+= strnlen ((char *) p
, maxlen
) + 1;
13638 printf (_("<corrupt>"));
13639 p
= (unsigned char *) end
;
13646 return display_tag_value (tag
, p
, end
);
13650 display_raw_attribute (unsigned char * p
, unsigned char * end
)
13652 unsigned long addr
= 0;
13653 size_t bytes
= end
- p
;
13660 int lbytes
= (bytes
> 16 ? 16 : bytes
);
13662 printf (" 0x%8.8lx ", addr
);
13664 for (j
= 0; j
< 16; j
++)
13667 printf ("%2.2x", p
[j
]);
13675 for (j
= 0; j
< lbytes
; j
++)
13678 if (k
>= ' ' && k
< 0x7f)
13694 static unsigned char *
13695 display_msp430x_attribute (unsigned char * p
,
13696 const unsigned char * const end
)
13702 tag
= read_uleb128 (p
, & len
, end
);
13707 case OFBA_MSPABI_Tag_ISA
:
13708 val
= read_uleb128 (p
, &len
, end
);
13710 printf (" Tag_ISA: ");
13713 case 0: printf (_("None\n")); break;
13714 case 1: printf (_("MSP430\n")); break;
13715 case 2: printf (_("MSP430X\n")); break;
13716 default: printf ("??? (%d)\n", val
); break;
13720 case OFBA_MSPABI_Tag_Code_Model
:
13721 val
= read_uleb128 (p
, &len
, end
);
13723 printf (" Tag_Code_Model: ");
13726 case 0: printf (_("None\n")); break;
13727 case 1: printf (_("Small\n")); break;
13728 case 2: printf (_("Large\n")); break;
13729 default: printf ("??? (%d)\n", val
); break;
13733 case OFBA_MSPABI_Tag_Data_Model
:
13734 val
= read_uleb128 (p
, &len
, end
);
13736 printf (" Tag_Data_Model: ");
13739 case 0: printf (_("None\n")); break;
13740 case 1: printf (_("Small\n")); break;
13741 case 2: printf (_("Large\n")); break;
13742 case 3: printf (_("Restricted Large\n")); break;
13743 default: printf ("??? (%d)\n", val
); break;
13748 printf (_(" <unknown tag %d>: "), tag
);
13755 size_t maxlen
= (end
- p
) - 1;
13757 print_symbol ((int) maxlen
, (const char *) p
);
13758 p
+= strnlen ((char *) p
, maxlen
) + 1;
13762 printf (_("<corrupt>"));
13763 p
= (unsigned char *) end
;
13769 val
= read_uleb128 (p
, &len
, end
);
13771 printf ("%d (0x%x)\n", val
, val
);
13781 process_attributes (FILE * file
,
13782 const char * public_name
,
13783 unsigned int proc_type
,
13784 unsigned char * (* display_pub_attribute
) (unsigned char *, const unsigned char * const),
13785 unsigned char * (* display_proc_gnu_attribute
) (unsigned char *, int, const unsigned char * const))
13787 Elf_Internal_Shdr
* sect
;
13790 /* Find the section header so that we get the size. */
13791 for (i
= 0, sect
= section_headers
;
13792 i
< elf_header
.e_shnum
;
13795 unsigned char * contents
;
13798 if (sect
->sh_type
!= proc_type
&& sect
->sh_type
!= SHT_GNU_ATTRIBUTES
)
13801 contents
= (unsigned char *) get_data (NULL
, file
, sect
->sh_offset
, 1,
13802 sect
->sh_size
, _("attributes"));
13803 if (contents
== NULL
)
13809 bfd_vma section_len
;
13811 section_len
= sect
->sh_size
- 1;
13814 while (section_len
> 0)
13817 unsigned int namelen
;
13818 bfd_boolean public_section
;
13819 bfd_boolean gnu_section
;
13821 if (section_len
<= 4)
13823 error (_("Tag section ends prematurely\n"));
13826 attr_len
= byte_get (p
, 4);
13829 if (attr_len
> section_len
)
13831 error (_("Bad attribute length (%u > %u)\n"),
13832 (unsigned) attr_len
, (unsigned) section_len
);
13833 attr_len
= section_len
;
13835 /* PR 17531: file: 001-101425-0.004 */
13836 else if (attr_len
< 5)
13838 error (_("Attribute length of %u is too small\n"), (unsigned) attr_len
);
13842 section_len
-= attr_len
;
13845 namelen
= strnlen ((char *) p
, attr_len
) + 1;
13846 if (namelen
== 0 || namelen
>= attr_len
)
13848 error (_("Corrupt attribute section name\n"));
13852 printf (_("Attribute Section: "));
13853 print_symbol (INT_MAX
, (const char *) p
);
13856 if (public_name
&& streq ((char *) p
, public_name
))
13857 public_section
= TRUE
;
13859 public_section
= FALSE
;
13861 if (streq ((char *) p
, "gnu"))
13862 gnu_section
= TRUE
;
13864 gnu_section
= FALSE
;
13867 attr_len
-= namelen
;
13869 while (attr_len
> 0 && p
< contents
+ sect
->sh_size
)
13874 unsigned char * end
;
13876 /* PR binutils/17531: Safe handling of corrupt files. */
13879 error (_("Unused bytes at end of section\n"));
13885 size
= byte_get (p
, 4);
13886 if (size
> attr_len
)
13888 error (_("Bad subsection length (%u > %u)\n"),
13889 (unsigned) size
, (unsigned) attr_len
);
13892 /* PR binutils/17531: Safe handling of corrupt files. */
13895 error (_("Bad subsection length (%u < 6)\n"),
13902 end
= p
+ size
- 1;
13903 assert (end
<= contents
+ sect
->sh_size
);
13909 printf (_("File Attributes\n"));
13912 printf (_("Section Attributes:"));
13915 printf (_("Symbol Attributes:"));
13921 val
= read_uleb128 (p
, &j
, end
);
13925 printf (" %d", val
);
13930 printf (_("Unknown tag: %d\n"), tag
);
13931 public_section
= FALSE
;
13935 if (public_section
&& display_pub_attribute
!= NULL
)
13938 p
= display_pub_attribute (p
, end
);
13941 else if (gnu_section
&& display_proc_gnu_attribute
!= NULL
)
13944 p
= display_gnu_attribute (p
,
13945 display_proc_gnu_attribute
,
13951 printf (_(" Unknown attribute:\n"));
13952 display_raw_attribute (p
, end
);
13961 printf (_("Unknown format '%c' (%d)\n"), *p
, *p
);
13969 process_arm_specific (FILE * file
)
13971 return process_attributes (file
, "aeabi", SHT_ARM_ATTRIBUTES
,
13972 display_arm_attribute
, NULL
);
13976 process_power_specific (FILE * file
)
13978 return process_attributes (file
, NULL
, SHT_GNU_ATTRIBUTES
, NULL
,
13979 display_power_gnu_attribute
);
13983 process_s390_specific (FILE * file
)
13985 return process_attributes (file
, NULL
, SHT_GNU_ATTRIBUTES
, NULL
,
13986 display_s390_gnu_attribute
);
13990 process_sparc_specific (FILE * file
)
13992 return process_attributes (file
, NULL
, SHT_GNU_ATTRIBUTES
, NULL
,
13993 display_sparc_gnu_attribute
);
13997 process_tic6x_specific (FILE * file
)
13999 return process_attributes (file
, "c6xabi", SHT_C6000_ATTRIBUTES
,
14000 display_tic6x_attribute
, NULL
);
14004 process_msp430x_specific (FILE * file
)
14006 return process_attributes (file
, "mspabi", SHT_MSP430_ATTRIBUTES
,
14007 display_msp430x_attribute
, NULL
);
14010 /* DATA points to the contents of a MIPS GOT that starts at VMA PLTGOT.
14011 Print the Address, Access and Initial fields of an entry at VMA ADDR
14012 and return the VMA of the next entry, or -1 if there was a problem.
14013 Does not read from DATA_END or beyond. */
14016 print_mips_got_entry (unsigned char * data
, bfd_vma pltgot
, bfd_vma addr
,
14017 unsigned char * data_end
)
14020 print_vma (addr
, LONG_HEX
);
14022 if (addr
< pltgot
+ 0xfff0)
14023 printf ("%6d(gp)", (int) (addr
- pltgot
- 0x7ff0));
14025 printf ("%10s", "");
14028 printf ("%*s", is_32bit_elf
? 8 : 16, _("<unknown>"));
14032 unsigned char * from
= data
+ addr
- pltgot
;
14034 if (from
+ (is_32bit_elf
? 4 : 8) > data_end
)
14036 warn (_("MIPS GOT entry extends beyond the end of available data\n"));
14037 printf ("%*s", is_32bit_elf
? 8 : 16, _("<corrupt>"));
14038 return (bfd_vma
) -1;
14042 entry
= byte_get (data
+ addr
- pltgot
, is_32bit_elf
? 4 : 8);
14043 print_vma (entry
, LONG_HEX
);
14046 return addr
+ (is_32bit_elf
? 4 : 8);
14049 /* DATA points to the contents of a MIPS PLT GOT that starts at VMA
14050 PLTGOT. Print the Address and Initial fields of an entry at VMA
14051 ADDR and return the VMA of the next entry. */
14054 print_mips_pltgot_entry (unsigned char * data
, bfd_vma pltgot
, bfd_vma addr
)
14057 print_vma (addr
, LONG_HEX
);
14060 printf ("%*s", is_32bit_elf
? 8 : 16, _("<unknown>"));
14065 entry
= byte_get (data
+ addr
- pltgot
, is_32bit_elf
? 4 : 8);
14066 print_vma (entry
, LONG_HEX
);
14068 return addr
+ (is_32bit_elf
? 4 : 8);
14072 print_mips_ases (unsigned int mask
)
14074 if (mask
& AFL_ASE_DSP
)
14075 fputs ("\n\tDSP ASE", stdout
);
14076 if (mask
& AFL_ASE_DSPR2
)
14077 fputs ("\n\tDSP R2 ASE", stdout
);
14078 if (mask
& AFL_ASE_EVA
)
14079 fputs ("\n\tEnhanced VA Scheme", stdout
);
14080 if (mask
& AFL_ASE_MCU
)
14081 fputs ("\n\tMCU (MicroController) ASE", stdout
);
14082 if (mask
& AFL_ASE_MDMX
)
14083 fputs ("\n\tMDMX ASE", stdout
);
14084 if (mask
& AFL_ASE_MIPS3D
)
14085 fputs ("\n\tMIPS-3D ASE", stdout
);
14086 if (mask
& AFL_ASE_MT
)
14087 fputs ("\n\tMT ASE", stdout
);
14088 if (mask
& AFL_ASE_SMARTMIPS
)
14089 fputs ("\n\tSmartMIPS ASE", stdout
);
14090 if (mask
& AFL_ASE_VIRT
)
14091 fputs ("\n\tVZ ASE", stdout
);
14092 if (mask
& AFL_ASE_MSA
)
14093 fputs ("\n\tMSA ASE", stdout
);
14094 if (mask
& AFL_ASE_MIPS16
)
14095 fputs ("\n\tMIPS16 ASE", stdout
);
14096 if (mask
& AFL_ASE_MICROMIPS
)
14097 fputs ("\n\tMICROMIPS ASE", stdout
);
14098 if (mask
& AFL_ASE_XPA
)
14099 fputs ("\n\tXPA ASE", stdout
);
14101 fprintf (stdout
, "\n\t%s", _("None"));
14102 else if ((mask
& ~AFL_ASE_MASK
) != 0)
14103 fprintf (stdout
, "\n\t%s (%x)", _("Unknown"), mask
& ~AFL_ASE_MASK
);
14107 print_mips_isa_ext (unsigned int isa_ext
)
14112 fputs (_("None"), stdout
);
14115 fputs ("RMI XLR", stdout
);
14117 case AFL_EXT_OCTEON3
:
14118 fputs ("Cavium Networks Octeon3", stdout
);
14120 case AFL_EXT_OCTEON2
:
14121 fputs ("Cavium Networks Octeon2", stdout
);
14123 case AFL_EXT_OCTEONP
:
14124 fputs ("Cavium Networks OcteonP", stdout
);
14126 case AFL_EXT_LOONGSON_3A
:
14127 fputs ("Loongson 3A", stdout
);
14129 case AFL_EXT_OCTEON
:
14130 fputs ("Cavium Networks Octeon", stdout
);
14133 fputs ("Toshiba R5900", stdout
);
14136 fputs ("MIPS R4650", stdout
);
14139 fputs ("LSI R4010", stdout
);
14142 fputs ("NEC VR4100", stdout
);
14145 fputs ("Toshiba R3900", stdout
);
14147 case AFL_EXT_10000
:
14148 fputs ("MIPS R10000", stdout
);
14151 fputs ("Broadcom SB-1", stdout
);
14154 fputs ("NEC VR4111/VR4181", stdout
);
14157 fputs ("NEC VR4120", stdout
);
14160 fputs ("NEC VR5400", stdout
);
14163 fputs ("NEC VR5500", stdout
);
14165 case AFL_EXT_LOONGSON_2E
:
14166 fputs ("ST Microelectronics Loongson 2E", stdout
);
14168 case AFL_EXT_LOONGSON_2F
:
14169 fputs ("ST Microelectronics Loongson 2F", stdout
);
14172 fprintf (stdout
, "%s (%d)", _("Unknown"), isa_ext
);
14177 get_mips_reg_size (int reg_size
)
14179 return (reg_size
== AFL_REG_NONE
) ? 0
14180 : (reg_size
== AFL_REG_32
) ? 32
14181 : (reg_size
== AFL_REG_64
) ? 64
14182 : (reg_size
== AFL_REG_128
) ? 128
14187 process_mips_specific (FILE * file
)
14189 Elf_Internal_Dyn
* entry
;
14190 Elf_Internal_Shdr
*sect
= NULL
;
14191 size_t liblist_offset
= 0;
14192 size_t liblistno
= 0;
14193 size_t conflictsno
= 0;
14194 size_t options_offset
= 0;
14195 size_t conflicts_offset
= 0;
14196 size_t pltrelsz
= 0;
14198 bfd_vma pltgot
= 0;
14199 bfd_vma mips_pltgot
= 0;
14200 bfd_vma jmprel
= 0;
14201 bfd_vma local_gotno
= 0;
14202 bfd_vma gotsym
= 0;
14203 bfd_vma symtabno
= 0;
14205 process_attributes (file
, NULL
, SHT_GNU_ATTRIBUTES
, NULL
,
14206 display_mips_gnu_attribute
);
14208 sect
= find_section (".MIPS.abiflags");
14212 Elf_External_ABIFlags_v0
*abiflags_ext
;
14213 Elf_Internal_ABIFlags_v0 abiflags_in
;
14215 if (sizeof (Elf_External_ABIFlags_v0
) != sect
->sh_size
)
14216 fputs ("\nCorrupt ABI Flags section.\n", stdout
);
14219 abiflags_ext
= get_data (NULL
, file
, sect
->sh_offset
, 1,
14220 sect
->sh_size
, _("MIPS ABI Flags section"));
14223 abiflags_in
.version
= BYTE_GET (abiflags_ext
->version
);
14224 abiflags_in
.isa_level
= BYTE_GET (abiflags_ext
->isa_level
);
14225 abiflags_in
.isa_rev
= BYTE_GET (abiflags_ext
->isa_rev
);
14226 abiflags_in
.gpr_size
= BYTE_GET (abiflags_ext
->gpr_size
);
14227 abiflags_in
.cpr1_size
= BYTE_GET (abiflags_ext
->cpr1_size
);
14228 abiflags_in
.cpr2_size
= BYTE_GET (abiflags_ext
->cpr2_size
);
14229 abiflags_in
.fp_abi
= BYTE_GET (abiflags_ext
->fp_abi
);
14230 abiflags_in
.isa_ext
= BYTE_GET (abiflags_ext
->isa_ext
);
14231 abiflags_in
.ases
= BYTE_GET (abiflags_ext
->ases
);
14232 abiflags_in
.flags1
= BYTE_GET (abiflags_ext
->flags1
);
14233 abiflags_in
.flags2
= BYTE_GET (abiflags_ext
->flags2
);
14235 printf ("\nMIPS ABI Flags Version: %d\n", abiflags_in
.version
);
14236 printf ("\nISA: MIPS%d", abiflags_in
.isa_level
);
14237 if (abiflags_in
.isa_rev
> 1)
14238 printf ("r%d", abiflags_in
.isa_rev
);
14239 printf ("\nGPR size: %d",
14240 get_mips_reg_size (abiflags_in
.gpr_size
));
14241 printf ("\nCPR1 size: %d",
14242 get_mips_reg_size (abiflags_in
.cpr1_size
));
14243 printf ("\nCPR2 size: %d",
14244 get_mips_reg_size (abiflags_in
.cpr2_size
));
14245 fputs ("\nFP ABI: ", stdout
);
14246 print_mips_fp_abi_value (abiflags_in
.fp_abi
);
14247 fputs ("ISA Extension: ", stdout
);
14248 print_mips_isa_ext (abiflags_in
.isa_ext
);
14249 fputs ("\nASEs:", stdout
);
14250 print_mips_ases (abiflags_in
.ases
);
14251 printf ("\nFLAGS 1: %8.8lx", abiflags_in
.flags1
);
14252 printf ("\nFLAGS 2: %8.8lx", abiflags_in
.flags2
);
14253 fputc ('\n', stdout
);
14254 free (abiflags_ext
);
14259 /* We have a lot of special sections. Thanks SGI! */
14260 if (dynamic_section
== NULL
)
14261 /* No information available. */
14264 for (entry
= dynamic_section
;
14265 /* PR 17531 file: 012-50589-0.004. */
14266 entry
< dynamic_section
+ dynamic_nent
&& entry
->d_tag
!= DT_NULL
;
14268 switch (entry
->d_tag
)
14270 case DT_MIPS_LIBLIST
:
14272 = offset_from_vma (file
, entry
->d_un
.d_val
,
14273 liblistno
* sizeof (Elf32_External_Lib
));
14275 case DT_MIPS_LIBLISTNO
:
14276 liblistno
= entry
->d_un
.d_val
;
14278 case DT_MIPS_OPTIONS
:
14279 options_offset
= offset_from_vma (file
, entry
->d_un
.d_val
, 0);
14281 case DT_MIPS_CONFLICT
:
14283 = offset_from_vma (file
, entry
->d_un
.d_val
,
14284 conflictsno
* sizeof (Elf32_External_Conflict
));
14286 case DT_MIPS_CONFLICTNO
:
14287 conflictsno
= entry
->d_un
.d_val
;
14290 pltgot
= entry
->d_un
.d_ptr
;
14292 case DT_MIPS_LOCAL_GOTNO
:
14293 local_gotno
= entry
->d_un
.d_val
;
14295 case DT_MIPS_GOTSYM
:
14296 gotsym
= entry
->d_un
.d_val
;
14298 case DT_MIPS_SYMTABNO
:
14299 symtabno
= entry
->d_un
.d_val
;
14301 case DT_MIPS_PLTGOT
:
14302 mips_pltgot
= entry
->d_un
.d_ptr
;
14305 pltrel
= entry
->d_un
.d_val
;
14308 pltrelsz
= entry
->d_un
.d_val
;
14311 jmprel
= entry
->d_un
.d_ptr
;
14317 if (liblist_offset
!= 0 && liblistno
!= 0 && do_dynamic
)
14319 Elf32_External_Lib
* elib
;
14322 elib
= (Elf32_External_Lib
*) get_data (NULL
, file
, liblist_offset
,
14324 sizeof (Elf32_External_Lib
),
14325 _("liblist section data"));
14328 printf (_("\nSection '.liblist' contains %lu entries:\n"),
14329 (unsigned long) liblistno
);
14330 fputs (_(" Library Time Stamp Checksum Version Flags\n"),
14333 for (cnt
= 0; cnt
< liblistno
; ++cnt
)
14340 liblist
.l_name
= BYTE_GET (elib
[cnt
].l_name
);
14341 atime
= BYTE_GET (elib
[cnt
].l_time_stamp
);
14342 liblist
.l_checksum
= BYTE_GET (elib
[cnt
].l_checksum
);
14343 liblist
.l_version
= BYTE_GET (elib
[cnt
].l_version
);
14344 liblist
.l_flags
= BYTE_GET (elib
[cnt
].l_flags
);
14346 tmp
= gmtime (&atime
);
14347 snprintf (timebuf
, sizeof (timebuf
),
14348 "%04u-%02u-%02uT%02u:%02u:%02u",
14349 tmp
->tm_year
+ 1900, tmp
->tm_mon
+ 1, tmp
->tm_mday
,
14350 tmp
->tm_hour
, tmp
->tm_min
, tmp
->tm_sec
);
14352 printf ("%3lu: ", (unsigned long) cnt
);
14353 if (VALID_DYNAMIC_NAME (liblist
.l_name
))
14354 print_symbol (20, GET_DYNAMIC_NAME (liblist
.l_name
));
14356 printf (_("<corrupt: %9ld>"), liblist
.l_name
);
14357 printf (" %s %#10lx %-7ld", timebuf
, liblist
.l_checksum
,
14358 liblist
.l_version
);
14360 if (liblist
.l_flags
== 0)
14364 static const struct
14371 { " EXACT_MATCH", LL_EXACT_MATCH
},
14372 { " IGNORE_INT_VER", LL_IGNORE_INT_VER
},
14373 { " REQUIRE_MINOR", LL_REQUIRE_MINOR
},
14374 { " EXPORTS", LL_EXPORTS
},
14375 { " DELAY_LOAD", LL_DELAY_LOAD
},
14376 { " DELTA", LL_DELTA
}
14378 int flags
= liblist
.l_flags
;
14381 for (fcnt
= 0; fcnt
< ARRAY_SIZE (l_flags_vals
); ++fcnt
)
14382 if ((flags
& l_flags_vals
[fcnt
].bit
) != 0)
14384 fputs (l_flags_vals
[fcnt
].name
, stdout
);
14385 flags
^= l_flags_vals
[fcnt
].bit
;
14388 printf (" %#x", (unsigned int) flags
);
14398 if (options_offset
!= 0)
14400 Elf_External_Options
* eopt
;
14401 Elf_Internal_Options
* iopt
;
14402 Elf_Internal_Options
* option
;
14405 sect
= section_headers
;
14407 /* Find the section header so that we get the size. */
14408 sect
= find_section_by_type (SHT_MIPS_OPTIONS
);
14409 /* PR 17533 file: 012-277276-0.004. */
14412 error (_("No MIPS_OPTIONS header found\n"));
14416 eopt
= (Elf_External_Options
*) get_data (NULL
, file
, options_offset
, 1,
14417 sect
->sh_size
, _("options"));
14420 iopt
= (Elf_Internal_Options
*)
14421 cmalloc ((sect
->sh_size
/ sizeof (eopt
)), sizeof (* iopt
));
14424 error (_("Out of memory allocatinf space for MIPS options\n"));
14431 while (offset
<= sect
->sh_size
- sizeof (* eopt
))
14433 Elf_External_Options
* eoption
;
14435 eoption
= (Elf_External_Options
*) ((char *) eopt
+ offset
);
14437 option
->kind
= BYTE_GET (eoption
->kind
);
14438 option
->size
= BYTE_GET (eoption
->size
);
14439 option
->section
= BYTE_GET (eoption
->section
);
14440 option
->info
= BYTE_GET (eoption
->info
);
14442 /* PR 17531: file: ffa0fa3b. */
14443 if (option
->size
< sizeof (* eopt
)
14444 || offset
+ option
->size
> sect
->sh_size
)
14446 error (_("Invalid size (%u) for MIPS option\n"), option
->size
);
14449 offset
+= option
->size
;
14455 printf (_("\nSection '%s' contains %d entries:\n"),
14456 printable_section_name (sect
), cnt
);
14465 switch (option
->kind
)
14468 /* This shouldn't happen. */
14469 printf (" NULL %d %lx", option
->section
, option
->info
);
14472 printf (" REGINFO ");
14473 if (elf_header
.e_machine
== EM_MIPS
)
14476 Elf32_External_RegInfo
* ereg
;
14477 Elf32_RegInfo reginfo
;
14479 ereg
= (Elf32_External_RegInfo
*) (option
+ 1);
14480 reginfo
.ri_gprmask
= BYTE_GET (ereg
->ri_gprmask
);
14481 reginfo
.ri_cprmask
[0] = BYTE_GET (ereg
->ri_cprmask
[0]);
14482 reginfo
.ri_cprmask
[1] = BYTE_GET (ereg
->ri_cprmask
[1]);
14483 reginfo
.ri_cprmask
[2] = BYTE_GET (ereg
->ri_cprmask
[2]);
14484 reginfo
.ri_cprmask
[3] = BYTE_GET (ereg
->ri_cprmask
[3]);
14485 reginfo
.ri_gp_value
= BYTE_GET (ereg
->ri_gp_value
);
14487 printf ("GPR %08lx GP 0x%lx\n",
14488 reginfo
.ri_gprmask
,
14489 (unsigned long) reginfo
.ri_gp_value
);
14490 printf (" CPR0 %08lx CPR1 %08lx CPR2 %08lx CPR3 %08lx\n",
14491 reginfo
.ri_cprmask
[0], reginfo
.ri_cprmask
[1],
14492 reginfo
.ri_cprmask
[2], reginfo
.ri_cprmask
[3]);
14497 Elf64_External_RegInfo
* ereg
;
14498 Elf64_Internal_RegInfo reginfo
;
14500 ereg
= (Elf64_External_RegInfo
*) (option
+ 1);
14501 reginfo
.ri_gprmask
= BYTE_GET (ereg
->ri_gprmask
);
14502 reginfo
.ri_cprmask
[0] = BYTE_GET (ereg
->ri_cprmask
[0]);
14503 reginfo
.ri_cprmask
[1] = BYTE_GET (ereg
->ri_cprmask
[1]);
14504 reginfo
.ri_cprmask
[2] = BYTE_GET (ereg
->ri_cprmask
[2]);
14505 reginfo
.ri_cprmask
[3] = BYTE_GET (ereg
->ri_cprmask
[3]);
14506 reginfo
.ri_gp_value
= BYTE_GET (ereg
->ri_gp_value
);
14508 printf ("GPR %08lx GP 0x",
14509 reginfo
.ri_gprmask
);
14510 printf_vma (reginfo
.ri_gp_value
);
14513 printf (" CPR0 %08lx CPR1 %08lx CPR2 %08lx CPR3 %08lx\n",
14514 reginfo
.ri_cprmask
[0], reginfo
.ri_cprmask
[1],
14515 reginfo
.ri_cprmask
[2], reginfo
.ri_cprmask
[3]);
14519 case ODK_EXCEPTIONS
:
14520 fputs (" EXCEPTIONS fpe_min(", stdout
);
14521 process_mips_fpe_exception (option
->info
& OEX_FPU_MIN
);
14522 fputs (") fpe_max(", stdout
);
14523 process_mips_fpe_exception ((option
->info
& OEX_FPU_MAX
) >> 8);
14524 fputs (")", stdout
);
14526 if (option
->info
& OEX_PAGE0
)
14527 fputs (" PAGE0", stdout
);
14528 if (option
->info
& OEX_SMM
)
14529 fputs (" SMM", stdout
);
14530 if (option
->info
& OEX_FPDBUG
)
14531 fputs (" FPDBUG", stdout
);
14532 if (option
->info
& OEX_DISMISS
)
14533 fputs (" DISMISS", stdout
);
14536 fputs (" PAD ", stdout
);
14537 if (option
->info
& OPAD_PREFIX
)
14538 fputs (" PREFIX", stdout
);
14539 if (option
->info
& OPAD_POSTFIX
)
14540 fputs (" POSTFIX", stdout
);
14541 if (option
->info
& OPAD_SYMBOL
)
14542 fputs (" SYMBOL", stdout
);
14545 fputs (" HWPATCH ", stdout
);
14546 if (option
->info
& OHW_R4KEOP
)
14547 fputs (" R4KEOP", stdout
);
14548 if (option
->info
& OHW_R8KPFETCH
)
14549 fputs (" R8KPFETCH", stdout
);
14550 if (option
->info
& OHW_R5KEOP
)
14551 fputs (" R5KEOP", stdout
);
14552 if (option
->info
& OHW_R5KCVTL
)
14553 fputs (" R5KCVTL", stdout
);
14556 fputs (" FILL ", stdout
);
14557 /* XXX Print content of info word? */
14560 fputs (" TAGS ", stdout
);
14561 /* XXX Print content of info word? */
14564 fputs (" HWAND ", stdout
);
14565 if (option
->info
& OHWA0_R4KEOP_CHECKED
)
14566 fputs (" R4KEOP_CHECKED", stdout
);
14567 if (option
->info
& OHWA0_R4KEOP_CLEAN
)
14568 fputs (" R4KEOP_CLEAN", stdout
);
14571 fputs (" HWOR ", stdout
);
14572 if (option
->info
& OHWA0_R4KEOP_CHECKED
)
14573 fputs (" R4KEOP_CHECKED", stdout
);
14574 if (option
->info
& OHWA0_R4KEOP_CLEAN
)
14575 fputs (" R4KEOP_CLEAN", stdout
);
14578 printf (" GP_GROUP %#06lx self-contained %#06lx",
14579 option
->info
& OGP_GROUP
,
14580 (option
->info
& OGP_SELF
) >> 16);
14583 printf (" IDENT %#06lx self-contained %#06lx",
14584 option
->info
& OGP_GROUP
,
14585 (option
->info
& OGP_SELF
) >> 16);
14588 /* This shouldn't happen. */
14589 printf (" %3d ??? %d %lx",
14590 option
->kind
, option
->section
, option
->info
);
14594 len
= sizeof (* eopt
);
14595 while (len
< option
->size
)
14597 unsigned char datum
= * ((unsigned char *) eopt
+ offset
+ len
);
14599 if (ISPRINT (datum
))
14600 printf ("%c", datum
);
14602 printf ("\\%03o", datum
);
14605 fputs ("\n", stdout
);
14607 offset
+= option
->size
;
14615 if (conflicts_offset
!= 0 && conflictsno
!= 0)
14617 Elf32_Conflict
* iconf
;
14620 if (dynamic_symbols
== NULL
)
14622 error (_("conflict list found without a dynamic symbol table\n"));
14626 iconf
= (Elf32_Conflict
*) cmalloc (conflictsno
, sizeof (* iconf
));
14629 error (_("Out of memory allocating space for dynamic conflicts\n"));
14635 Elf32_External_Conflict
* econf32
;
14637 econf32
= (Elf32_External_Conflict
*)
14638 get_data (NULL
, file
, conflicts_offset
, conflictsno
,
14639 sizeof (* econf32
), _("conflict"));
14643 for (cnt
= 0; cnt
< conflictsno
; ++cnt
)
14644 iconf
[cnt
] = BYTE_GET (econf32
[cnt
]);
14650 Elf64_External_Conflict
* econf64
;
14652 econf64
= (Elf64_External_Conflict
*)
14653 get_data (NULL
, file
, conflicts_offset
, conflictsno
,
14654 sizeof (* econf64
), _("conflict"));
14658 for (cnt
= 0; cnt
< conflictsno
; ++cnt
)
14659 iconf
[cnt
] = BYTE_GET (econf64
[cnt
]);
14664 printf (_("\nSection '.conflict' contains %lu entries:\n"),
14665 (unsigned long) conflictsno
);
14666 puts (_(" Num: Index Value Name"));
14668 for (cnt
= 0; cnt
< conflictsno
; ++cnt
)
14670 printf ("%5lu: %8lu ", (unsigned long) cnt
, iconf
[cnt
]);
14672 if (iconf
[cnt
] >= num_dynamic_syms
)
14673 printf (_("<corrupt symbol index>"));
14676 Elf_Internal_Sym
* psym
;
14678 psym
= & dynamic_symbols
[iconf
[cnt
]];
14679 print_vma (psym
->st_value
, FULL_HEX
);
14681 if (VALID_DYNAMIC_NAME (psym
->st_name
))
14682 print_symbol (25, GET_DYNAMIC_NAME (psym
->st_name
));
14684 printf (_("<corrupt: %14ld>"), psym
->st_name
);
14692 if (pltgot
!= 0 && local_gotno
!= 0)
14694 bfd_vma ent
, local_end
, global_end
;
14696 unsigned char * data
;
14697 unsigned char * data_end
;
14701 addr_size
= (is_32bit_elf
? 4 : 8);
14702 local_end
= pltgot
+ local_gotno
* addr_size
;
14704 /* PR binutils/17533 file: 012-111227-0.004 */
14705 if (symtabno
< gotsym
)
14707 error (_("The GOT symbol offset (%lu) is greater than the symbol table size (%lu)\n"),
14708 (unsigned long) gotsym
, (unsigned long) symtabno
);
14712 global_end
= local_end
+ (symtabno
- gotsym
) * addr_size
;
14713 /* PR 17531: file: 54c91a34. */
14714 if (global_end
< local_end
)
14716 error (_("Too many GOT symbols: %lu\n"), (unsigned long) symtabno
);
14720 offset
= offset_from_vma (file
, pltgot
, global_end
- pltgot
);
14721 data
= (unsigned char *) get_data (NULL
, file
, offset
,
14722 global_end
- pltgot
, 1,
14723 _("Global Offset Table data"));
14726 data_end
= data
+ (global_end
- pltgot
);
14728 printf (_("\nPrimary GOT:\n"));
14729 printf (_(" Canonical gp value: "));
14730 print_vma (pltgot
+ 0x7ff0, LONG_HEX
);
14733 printf (_(" Reserved entries:\n"));
14734 printf (_(" %*s %10s %*s Purpose\n"),
14735 addr_size
* 2, _("Address"), _("Access"),
14736 addr_size
* 2, _("Initial"));
14737 ent
= print_mips_got_entry (data
, pltgot
, ent
, data_end
);
14738 printf (_(" Lazy resolver\n"));
14739 if (ent
== (bfd_vma
) -1)
14740 goto got_print_fail
;
14742 && (byte_get (data
+ ent
- pltgot
, addr_size
)
14743 >> (addr_size
* 8 - 1)) != 0)
14745 ent
= print_mips_got_entry (data
, pltgot
, ent
, data_end
);
14746 printf (_(" Module pointer (GNU extension)\n"));
14747 if (ent
== (bfd_vma
) -1)
14748 goto got_print_fail
;
14752 if (ent
< local_end
)
14754 printf (_(" Local entries:\n"));
14755 printf (" %*s %10s %*s\n",
14756 addr_size
* 2, _("Address"), _("Access"),
14757 addr_size
* 2, _("Initial"));
14758 while (ent
< local_end
)
14760 ent
= print_mips_got_entry (data
, pltgot
, ent
, data_end
);
14762 if (ent
== (bfd_vma
) -1)
14763 goto got_print_fail
;
14768 if (gotsym
< symtabno
)
14772 printf (_(" Global entries:\n"));
14773 printf (" %*s %10s %*s %*s %-7s %3s %s\n",
14774 addr_size
* 2, _("Address"),
14776 addr_size
* 2, _("Initial"),
14777 addr_size
* 2, _("Sym.Val."),
14779 /* Note for translators: "Ndx" = abbreviated form of "Index". */
14780 _("Ndx"), _("Name"));
14782 sym_width
= (is_32bit_elf
? 80 : 160) - 28 - addr_size
* 6 - 1;
14784 for (i
= gotsym
; i
< symtabno
; i
++)
14786 ent
= print_mips_got_entry (data
, pltgot
, ent
, data_end
);
14789 if (dynamic_symbols
== NULL
)
14790 printf (_("<no dynamic symbols>"));
14791 else if (i
< num_dynamic_syms
)
14793 Elf_Internal_Sym
* psym
= dynamic_symbols
+ i
;
14795 print_vma (psym
->st_value
, LONG_HEX
);
14796 printf (" %-7s %3s ",
14797 get_symbol_type (ELF_ST_TYPE (psym
->st_info
)),
14798 get_symbol_index_type (psym
->st_shndx
));
14800 if (VALID_DYNAMIC_NAME (psym
->st_name
))
14801 print_symbol (sym_width
, GET_DYNAMIC_NAME (psym
->st_name
));
14803 printf (_("<corrupt: %14ld>"), psym
->st_name
);
14806 printf (_("<symbol index %lu exceeds number of dynamic symbols>"),
14807 (unsigned long) i
);
14810 if (ent
== (bfd_vma
) -1)
14821 if (mips_pltgot
!= 0 && jmprel
!= 0 && pltrel
!= 0 && pltrelsz
!= 0)
14824 size_t offset
, rel_offset
;
14825 unsigned long count
, i
;
14826 unsigned char * data
;
14827 int addr_size
, sym_width
;
14828 Elf_Internal_Rela
* rels
;
14830 rel_offset
= offset_from_vma (file
, jmprel
, pltrelsz
);
14831 if (pltrel
== DT_RELA
)
14833 if (!slurp_rela_relocs (file
, rel_offset
, pltrelsz
, &rels
, &count
))
14838 if (!slurp_rel_relocs (file
, rel_offset
, pltrelsz
, &rels
, &count
))
14843 addr_size
= (is_32bit_elf
? 4 : 8);
14844 end
= mips_pltgot
+ (2 + count
) * addr_size
;
14846 offset
= offset_from_vma (file
, mips_pltgot
, end
- mips_pltgot
);
14847 data
= (unsigned char *) get_data (NULL
, file
, offset
, end
- mips_pltgot
,
14848 1, _("Procedure Linkage Table data"));
14852 printf ("\nPLT GOT:\n\n");
14853 printf (_(" Reserved entries:\n"));
14854 printf (_(" %*s %*s Purpose\n"),
14855 addr_size
* 2, _("Address"), addr_size
* 2, _("Initial"));
14856 ent
= print_mips_pltgot_entry (data
, mips_pltgot
, ent
);
14857 printf (_(" PLT lazy resolver\n"));
14858 ent
= print_mips_pltgot_entry (data
, mips_pltgot
, ent
);
14859 printf (_(" Module pointer\n"));
14862 printf (_(" Entries:\n"));
14863 printf (" %*s %*s %*s %-7s %3s %s\n",
14864 addr_size
* 2, _("Address"),
14865 addr_size
* 2, _("Initial"),
14866 addr_size
* 2, _("Sym.Val."), _("Type"), _("Ndx"), _("Name"));
14867 sym_width
= (is_32bit_elf
? 80 : 160) - 17 - addr_size
* 6 - 1;
14868 for (i
= 0; i
< count
; i
++)
14870 unsigned long idx
= get_reloc_symindex (rels
[i
].r_info
);
14872 ent
= print_mips_pltgot_entry (data
, mips_pltgot
, ent
);
14875 if (idx
>= num_dynamic_syms
)
14876 printf (_("<corrupt symbol index: %lu>"), idx
);
14879 Elf_Internal_Sym
* psym
= dynamic_symbols
+ idx
;
14881 print_vma (psym
->st_value
, LONG_HEX
);
14882 printf (" %-7s %3s ",
14883 get_symbol_type (ELF_ST_TYPE (psym
->st_info
)),
14884 get_symbol_index_type (psym
->st_shndx
));
14885 if (VALID_DYNAMIC_NAME (psym
->st_name
))
14886 print_symbol (sym_width
, GET_DYNAMIC_NAME (psym
->st_name
));
14888 printf (_("<corrupt: %14ld>"), psym
->st_name
);
14903 process_nds32_specific (FILE * file
)
14905 Elf_Internal_Shdr
*sect
= NULL
;
14907 sect
= find_section (".nds32_e_flags");
14910 unsigned int *flag
;
14912 printf ("\nNDS32 elf flags section:\n");
14913 flag
= get_data (NULL
, file
, sect
->sh_offset
, 1,
14914 sect
->sh_size
, _("NDS32 elf flags section"));
14916 switch ((*flag
) & 0x3)
14919 printf ("(VEC_SIZE):\tNo entry.\n");
14922 printf ("(VEC_SIZE):\t4 bytes\n");
14925 printf ("(VEC_SIZE):\t16 bytes\n");
14928 printf ("(VEC_SIZE):\treserved\n");
14937 process_gnu_liblist (FILE * file
)
14939 Elf_Internal_Shdr
* section
;
14940 Elf_Internal_Shdr
* string_sec
;
14941 Elf32_External_Lib
* elib
;
14943 size_t strtab_size
;
14950 for (i
= 0, section
= section_headers
;
14951 i
< elf_header
.e_shnum
;
14954 switch (section
->sh_type
)
14956 case SHT_GNU_LIBLIST
:
14957 if (section
->sh_link
>= elf_header
.e_shnum
)
14960 elib
= (Elf32_External_Lib
*)
14961 get_data (NULL
, file
, section
->sh_offset
, 1, section
->sh_size
,
14962 _("liblist section data"));
14966 string_sec
= section_headers
+ section
->sh_link
;
14968 strtab
= (char *) get_data (NULL
, file
, string_sec
->sh_offset
, 1,
14969 string_sec
->sh_size
,
14970 _("liblist string table"));
14972 || section
->sh_entsize
!= sizeof (Elf32_External_Lib
))
14978 strtab_size
= string_sec
->sh_size
;
14980 printf (_("\nLibrary list section '%s' contains %lu entries:\n"),
14981 printable_section_name (section
),
14982 (unsigned long) (section
->sh_size
/ sizeof (Elf32_External_Lib
)));
14984 puts (_(" Library Time Stamp Checksum Version Flags"));
14986 for (cnt
= 0; cnt
< section
->sh_size
/ sizeof (Elf32_External_Lib
);
14994 liblist
.l_name
= BYTE_GET (elib
[cnt
].l_name
);
14995 atime
= BYTE_GET (elib
[cnt
].l_time_stamp
);
14996 liblist
.l_checksum
= BYTE_GET (elib
[cnt
].l_checksum
);
14997 liblist
.l_version
= BYTE_GET (elib
[cnt
].l_version
);
14998 liblist
.l_flags
= BYTE_GET (elib
[cnt
].l_flags
);
15000 tmp
= gmtime (&atime
);
15001 snprintf (timebuf
, sizeof (timebuf
),
15002 "%04u-%02u-%02uT%02u:%02u:%02u",
15003 tmp
->tm_year
+ 1900, tmp
->tm_mon
+ 1, tmp
->tm_mday
,
15004 tmp
->tm_hour
, tmp
->tm_min
, tmp
->tm_sec
);
15006 printf ("%3lu: ", (unsigned long) cnt
);
15008 printf ("%-20s", liblist
.l_name
< strtab_size
15009 ? strtab
+ liblist
.l_name
: _("<corrupt>"));
15011 printf ("%-20.20s", liblist
.l_name
< strtab_size
15012 ? strtab
+ liblist
.l_name
: _("<corrupt>"));
15013 printf (" %s %#010lx %-7ld %-7ld\n", timebuf
, liblist
.l_checksum
,
15014 liblist
.l_version
, liblist
.l_flags
);
15025 static const char *
15026 get_note_type (unsigned e_type
)
15028 static char buff
[64];
15030 if (elf_header
.e_type
== ET_CORE
)
15034 return _("NT_AUXV (auxiliary vector)");
15036 return _("NT_PRSTATUS (prstatus structure)");
15038 return _("NT_FPREGSET (floating point registers)");
15040 return _("NT_PRPSINFO (prpsinfo structure)");
15041 case NT_TASKSTRUCT
:
15042 return _("NT_TASKSTRUCT (task structure)");
15044 return _("NT_PRXFPREG (user_xfpregs structure)");
15046 return _("NT_PPC_VMX (ppc Altivec registers)");
15048 return _("NT_PPC_VSX (ppc VSX registers)");
15050 return _("NT_386_TLS (x86 TLS information)");
15051 case NT_386_IOPERM
:
15052 return _("NT_386_IOPERM (x86 I/O permissions)");
15053 case NT_X86_XSTATE
:
15054 return _("NT_X86_XSTATE (x86 XSAVE extended state)");
15055 case NT_S390_HIGH_GPRS
:
15056 return _("NT_S390_HIGH_GPRS (s390 upper register halves)");
15057 case NT_S390_TIMER
:
15058 return _("NT_S390_TIMER (s390 timer register)");
15059 case NT_S390_TODCMP
:
15060 return _("NT_S390_TODCMP (s390 TOD comparator register)");
15061 case NT_S390_TODPREG
:
15062 return _("NT_S390_TODPREG (s390 TOD programmable register)");
15064 return _("NT_S390_CTRS (s390 control registers)");
15065 case NT_S390_PREFIX
:
15066 return _("NT_S390_PREFIX (s390 prefix register)");
15067 case NT_S390_LAST_BREAK
:
15068 return _("NT_S390_LAST_BREAK (s390 last breaking event address)");
15069 case NT_S390_SYSTEM_CALL
:
15070 return _("NT_S390_SYSTEM_CALL (s390 system call restart data)");
15072 return _("NT_S390_TDB (s390 transaction diagnostic block)");
15073 case NT_S390_VXRS_LOW
:
15074 return _("NT_S390_VXRS_LOW (s390 vector registers 0-15 upper half)");
15075 case NT_S390_VXRS_HIGH
:
15076 return _("NT_S390_VXRS_HIGH (s390 vector registers 16-31)");
15078 return _("NT_ARM_VFP (arm VFP registers)");
15080 return _("NT_ARM_TLS (AArch TLS registers)");
15081 case NT_ARM_HW_BREAK
:
15082 return _("NT_ARM_HW_BREAK (AArch hardware breakpoint registers)");
15083 case NT_ARM_HW_WATCH
:
15084 return _("NT_ARM_HW_WATCH (AArch hardware watchpoint registers)");
15086 return _("NT_PSTATUS (pstatus structure)");
15088 return _("NT_FPREGS (floating point registers)");
15090 return _("NT_PSINFO (psinfo structure)");
15092 return _("NT_LWPSTATUS (lwpstatus_t structure)");
15094 return _("NT_LWPSINFO (lwpsinfo_t structure)");
15095 case NT_WIN32PSTATUS
:
15096 return _("NT_WIN32PSTATUS (win32_pstatus structure)");
15098 return _("NT_SIGINFO (siginfo_t data)");
15100 return _("NT_FILE (mapped files)");
15108 return _("NT_VERSION (version)");
15110 return _("NT_ARCH (architecture)");
15115 snprintf (buff
, sizeof (buff
), _("Unknown note type: (0x%08x)"), e_type
);
15120 print_core_note (Elf_Internal_Note
*pnote
)
15122 unsigned int addr_size
= is_32bit_elf
? 4 : 8;
15123 bfd_vma count
, page_size
;
15124 unsigned char *descdata
, *filenames
, *descend
;
15126 if (pnote
->type
!= NT_FILE
)
15132 printf (_(" Cannot decode 64-bit note in 32-bit build\n"));
15133 /* Still "successful". */
15138 if (pnote
->descsz
< 2 * addr_size
)
15140 printf (_(" Malformed note - too short for header\n"));
15144 descdata
= (unsigned char *) pnote
->descdata
;
15145 descend
= descdata
+ pnote
->descsz
;
15147 if (descdata
[pnote
->descsz
- 1] != '\0')
15149 printf (_(" Malformed note - does not end with \\0\n"));
15153 count
= byte_get (descdata
, addr_size
);
15154 descdata
+= addr_size
;
15156 page_size
= byte_get (descdata
, addr_size
);
15157 descdata
+= addr_size
;
15159 if (pnote
->descsz
< 2 * addr_size
+ count
* 3 * addr_size
)
15161 printf (_(" Malformed note - too short for supplied file count\n"));
15165 printf (_(" Page size: "));
15166 print_vma (page_size
, DEC
);
15169 printf (_(" %*s%*s%*s\n"),
15170 (int) (2 + 2 * addr_size
), _("Start"),
15171 (int) (4 + 2 * addr_size
), _("End"),
15172 (int) (4 + 2 * addr_size
), _("Page Offset"));
15173 filenames
= descdata
+ count
* 3 * addr_size
;
15174 while (count
-- > 0)
15176 bfd_vma start
, end
, file_ofs
;
15178 if (filenames
== descend
)
15180 printf (_(" Malformed note - filenames end too early\n"));
15184 start
= byte_get (descdata
, addr_size
);
15185 descdata
+= addr_size
;
15186 end
= byte_get (descdata
, addr_size
);
15187 descdata
+= addr_size
;
15188 file_ofs
= byte_get (descdata
, addr_size
);
15189 descdata
+= addr_size
;
15192 print_vma (start
, FULL_HEX
);
15194 print_vma (end
, FULL_HEX
);
15196 print_vma (file_ofs
, FULL_HEX
);
15197 printf ("\n %s\n", filenames
);
15199 filenames
+= 1 + strlen ((char *) filenames
);
15205 static const char *
15206 get_gnu_elf_note_type (unsigned e_type
)
15208 static char buff
[64];
15212 case NT_GNU_ABI_TAG
:
15213 return _("NT_GNU_ABI_TAG (ABI version tag)");
15215 return _("NT_GNU_HWCAP (DSO-supplied software HWCAP info)");
15216 case NT_GNU_BUILD_ID
:
15217 return _("NT_GNU_BUILD_ID (unique build ID bitstring)");
15218 case NT_GNU_GOLD_VERSION
:
15219 return _("NT_GNU_GOLD_VERSION (gold version)");
15224 snprintf (buff
, sizeof (buff
), _("Unknown note type: (0x%08x)"), e_type
);
15229 print_gnu_note (Elf_Internal_Note
*pnote
)
15231 switch (pnote
->type
)
15233 case NT_GNU_BUILD_ID
:
15237 printf (_(" Build ID: "));
15238 for (i
= 0; i
< pnote
->descsz
; ++i
)
15239 printf ("%02x", pnote
->descdata
[i
] & 0xff);
15244 case NT_GNU_ABI_TAG
:
15246 unsigned long os
, major
, minor
, subminor
;
15247 const char *osname
;
15249 /* PR 17531: file: 030-599401-0.004. */
15250 if (pnote
->descsz
< 16)
15252 printf (_(" <corrupt GNU_ABI_TAG>\n"));
15256 os
= byte_get ((unsigned char *) pnote
->descdata
, 4);
15257 major
= byte_get ((unsigned char *) pnote
->descdata
+ 4, 4);
15258 minor
= byte_get ((unsigned char *) pnote
->descdata
+ 8, 4);
15259 subminor
= byte_get ((unsigned char *) pnote
->descdata
+ 12, 4);
15263 case GNU_ABI_TAG_LINUX
:
15266 case GNU_ABI_TAG_HURD
:
15269 case GNU_ABI_TAG_SOLARIS
:
15270 osname
= "Solaris";
15272 case GNU_ABI_TAG_FREEBSD
:
15273 osname
= "FreeBSD";
15275 case GNU_ABI_TAG_NETBSD
:
15278 case GNU_ABI_TAG_SYLLABLE
:
15279 osname
= "Syllable";
15281 case GNU_ABI_TAG_NACL
:
15285 osname
= "Unknown";
15289 printf (_(" OS: %s, ABI: %ld.%ld.%ld\n"), osname
,
15290 major
, minor
, subminor
);
15294 case NT_GNU_GOLD_VERSION
:
15298 printf (_(" Version: "));
15299 for (i
= 0; i
< pnote
->descsz
&& pnote
->descdata
[i
] != '\0'; ++i
)
15300 printf ("%c", pnote
->descdata
[i
]);
15309 static const char *
15310 get_v850_elf_note_type (enum v850_notes n_type
)
15312 static char buff
[64];
15316 case V850_NOTE_ALIGNMENT
: return _("Alignment of 8-byte objects");
15317 case V850_NOTE_DATA_SIZE
: return _("Sizeof double and long double");
15318 case V850_NOTE_FPU_INFO
: return _("Type of FPU support needed");
15319 case V850_NOTE_SIMD_INFO
: return _("Use of SIMD instructions");
15320 case V850_NOTE_CACHE_INFO
: return _("Use of cache");
15321 case V850_NOTE_MMU_INFO
: return _("Use of MMU");
15323 snprintf (buff
, sizeof (buff
), _("Unknown note type: (0x%08x)"), n_type
);
15329 print_v850_note (Elf_Internal_Note
* pnote
)
15333 if (pnote
->descsz
!= 4)
15335 val
= byte_get ((unsigned char *) pnote
->descdata
, pnote
->descsz
);
15339 printf (_("not set\n"));
15343 switch (pnote
->type
)
15345 case V850_NOTE_ALIGNMENT
:
15348 case EF_RH850_DATA_ALIGN4
: printf (_("4-byte\n")); return 1;
15349 case EF_RH850_DATA_ALIGN8
: printf (_("8-byte\n")); return 1;
15353 case V850_NOTE_DATA_SIZE
:
15356 case EF_RH850_DOUBLE32
: printf (_("4-bytes\n")); return 1;
15357 case EF_RH850_DOUBLE64
: printf (_("8-bytes\n")); return 1;
15361 case V850_NOTE_FPU_INFO
:
15364 case EF_RH850_FPU20
: printf (_("FPU-2.0\n")); return 1;
15365 case EF_RH850_FPU30
: printf (_("FPU-3.0\n")); return 1;
15369 case V850_NOTE_MMU_INFO
:
15370 case V850_NOTE_CACHE_INFO
:
15371 case V850_NOTE_SIMD_INFO
:
15372 if (val
== EF_RH850_SIMD
)
15374 printf (_("yes\n"));
15380 /* An 'unknown note type' message will already have been displayed. */
15384 printf (_("unknown value: %x\n"), val
);
15389 process_netbsd_elf_note (Elf_Internal_Note
* pnote
)
15391 unsigned int version
;
15393 switch (pnote
->type
)
15395 case NT_NETBSD_IDENT
:
15396 version
= byte_get ((unsigned char *) pnote
->descdata
, sizeof (version
));
15397 if ((version
/ 10000) % 100)
15398 printf (" NetBSD\t\t0x%08lx\tIDENT %u (%u.%u%s%c)\n", pnote
->descsz
,
15399 version
, version
/ 100000000, (version
/ 1000000) % 100,
15400 (version
/ 10000) % 100 > 26 ? "Z" : "",
15401 'A' + (version
/ 10000) % 26);
15403 printf (" NetBSD\t\t0x%08lx\tIDENT %u (%u.%u.%u)\n", pnote
->descsz
,
15404 version
, version
/ 100000000, (version
/ 1000000) % 100,
15405 (version
/ 100) % 100);
15408 case NT_NETBSD_MARCH
:
15409 printf (" NetBSD\t0x%08lx\tMARCH <%s>\n", pnote
->descsz
,
15417 printf (" NetBSD\t0x%08lx\tUnknown note type: (0x%08lx)\n", pnote
->descsz
,
15422 static const char *
15423 get_freebsd_elfcore_note_type (unsigned e_type
)
15427 case NT_FREEBSD_THRMISC
:
15428 return _("NT_THRMISC (thrmisc structure)");
15429 case NT_FREEBSD_PROCSTAT_PROC
:
15430 return _("NT_PROCSTAT_PROC (proc data)");
15431 case NT_FREEBSD_PROCSTAT_FILES
:
15432 return _("NT_PROCSTAT_FILES (files data)");
15433 case NT_FREEBSD_PROCSTAT_VMMAP
:
15434 return _("NT_PROCSTAT_VMMAP (vmmap data)");
15435 case NT_FREEBSD_PROCSTAT_GROUPS
:
15436 return _("NT_PROCSTAT_GROUPS (groups data)");
15437 case NT_FREEBSD_PROCSTAT_UMASK
:
15438 return _("NT_PROCSTAT_UMASK (umask data)");
15439 case NT_FREEBSD_PROCSTAT_RLIMIT
:
15440 return _("NT_PROCSTAT_RLIMIT (rlimit data)");
15441 case NT_FREEBSD_PROCSTAT_OSREL
:
15442 return _("NT_PROCSTAT_OSREL (osreldate data)");
15443 case NT_FREEBSD_PROCSTAT_PSSTRINGS
:
15444 return _("NT_PROCSTAT_PSSTRINGS (ps_strings data)");
15445 case NT_FREEBSD_PROCSTAT_AUXV
:
15446 return _("NT_PROCSTAT_AUXV (auxv data)");
15448 return get_note_type (e_type
);
15451 static const char *
15452 get_netbsd_elfcore_note_type (unsigned e_type
)
15454 static char buff
[64];
15456 if (e_type
== NT_NETBSDCORE_PROCINFO
)
15458 /* NetBSD core "procinfo" structure. */
15459 return _("NetBSD procinfo structure");
15462 /* As of Jan 2002 there are no other machine-independent notes
15463 defined for NetBSD core files. If the note type is less
15464 than the start of the machine-dependent note types, we don't
15467 if (e_type
< NT_NETBSDCORE_FIRSTMACH
)
15469 snprintf (buff
, sizeof (buff
), _("Unknown note type: (0x%08x)"), e_type
);
15473 switch (elf_header
.e_machine
)
15475 /* On the Alpha, SPARC (32-bit and 64-bit), PT_GETREGS == mach+0
15476 and PT_GETFPREGS == mach+2. */
15481 case EM_SPARC32PLUS
:
15485 case NT_NETBSDCORE_FIRSTMACH
+ 0:
15486 return _("PT_GETREGS (reg structure)");
15487 case NT_NETBSDCORE_FIRSTMACH
+ 2:
15488 return _("PT_GETFPREGS (fpreg structure)");
15494 /* On all other arch's, PT_GETREGS == mach+1 and
15495 PT_GETFPREGS == mach+3. */
15499 case NT_NETBSDCORE_FIRSTMACH
+ 1:
15500 return _("PT_GETREGS (reg structure)");
15501 case NT_NETBSDCORE_FIRSTMACH
+ 3:
15502 return _("PT_GETFPREGS (fpreg structure)");
15508 snprintf (buff
, sizeof (buff
), "PT_FIRSTMACH+%d",
15509 e_type
- NT_NETBSDCORE_FIRSTMACH
);
15513 static const char *
15514 get_stapsdt_note_type (unsigned e_type
)
15516 static char buff
[64];
15521 return _("NT_STAPSDT (SystemTap probe descriptors)");
15527 snprintf (buff
, sizeof (buff
), _("Unknown note type: (0x%08x)"), e_type
);
15532 print_stapsdt_note (Elf_Internal_Note
*pnote
)
15534 int addr_size
= is_32bit_elf
? 4 : 8;
15535 char *data
= pnote
->descdata
;
15536 char *data_end
= pnote
->descdata
+ pnote
->descsz
;
15537 bfd_vma pc
, base_addr
, semaphore
;
15538 char *provider
, *probe
, *arg_fmt
;
15540 pc
= byte_get ((unsigned char *) data
, addr_size
);
15542 base_addr
= byte_get ((unsigned char *) data
, addr_size
);
15544 semaphore
= byte_get ((unsigned char *) data
, addr_size
);
15548 data
+= strlen (data
) + 1;
15550 data
+= strlen (data
) + 1;
15552 data
+= strlen (data
) + 1;
15554 printf (_(" Provider: %s\n"), provider
);
15555 printf (_(" Name: %s\n"), probe
);
15556 printf (_(" Location: "));
15557 print_vma (pc
, FULL_HEX
);
15558 printf (_(", Base: "));
15559 print_vma (base_addr
, FULL_HEX
);
15560 printf (_(", Semaphore: "));
15561 print_vma (semaphore
, FULL_HEX
);
15563 printf (_(" Arguments: %s\n"), arg_fmt
);
15565 return data
== data_end
;
15568 static const char *
15569 get_ia64_vms_note_type (unsigned e_type
)
15571 static char buff
[64];
15576 return _("NT_VMS_MHD (module header)");
15578 return _("NT_VMS_LNM (language name)");
15580 return _("NT_VMS_SRC (source files)");
15582 return "NT_VMS_TITLE";
15584 return _("NT_VMS_EIDC (consistency check)");
15585 case NT_VMS_FPMODE
:
15586 return _("NT_VMS_FPMODE (FP mode)");
15587 case NT_VMS_LINKTIME
:
15588 return "NT_VMS_LINKTIME";
15589 case NT_VMS_IMGNAM
:
15590 return _("NT_VMS_IMGNAM (image name)");
15592 return _("NT_VMS_IMGID (image id)");
15593 case NT_VMS_LINKID
:
15594 return _("NT_VMS_LINKID (link id)");
15595 case NT_VMS_IMGBID
:
15596 return _("NT_VMS_IMGBID (build id)");
15597 case NT_VMS_GSTNAM
:
15598 return _("NT_VMS_GSTNAM (sym table name)");
15599 case NT_VMS_ORIG_DYN
:
15600 return "NT_VMS_ORIG_DYN";
15601 case NT_VMS_PATCHTIME
:
15602 return "NT_VMS_PATCHTIME";
15604 snprintf (buff
, sizeof (buff
), _("Unknown note type: (0x%08x)"), e_type
);
15610 print_ia64_vms_note (Elf_Internal_Note
* pnote
)
15612 switch (pnote
->type
)
15615 if (pnote
->descsz
> 36)
15617 size_t l
= strlen (pnote
->descdata
+ 34);
15618 printf (_(" Creation date : %.17s\n"), pnote
->descdata
);
15619 printf (_(" Last patch date: %.17s\n"), pnote
->descdata
+ 17);
15620 printf (_(" Module name : %s\n"), pnote
->descdata
+ 34);
15621 printf (_(" Module version : %s\n"), pnote
->descdata
+ 34 + l
+ 1);
15624 printf (_(" Invalid size\n"));
15627 printf (_(" Language: %s\n"), pnote
->descdata
);
15630 case NT_VMS_FPMODE
:
15631 printf (_(" Floating Point mode: "));
15632 printf ("0x%016" BFD_VMA_FMT
"x\n",
15633 (bfd_vma
) byte_get ((unsigned char *)pnote
->descdata
, 8));
15635 case NT_VMS_LINKTIME
:
15636 printf (_(" Link time: "));
15638 ((bfd_int64_t
) byte_get ((unsigned char *)pnote
->descdata
, 8));
15641 case NT_VMS_PATCHTIME
:
15642 printf (_(" Patch time: "));
15644 ((bfd_int64_t
) byte_get ((unsigned char *)pnote
->descdata
, 8));
15647 case NT_VMS_ORIG_DYN
:
15648 printf (_(" Major id: %u, minor id: %u\n"),
15649 (unsigned) byte_get ((unsigned char *)pnote
->descdata
, 4),
15650 (unsigned) byte_get ((unsigned char *)pnote
->descdata
+ 4, 4));
15651 printf (_(" Last modified : "));
15653 ((bfd_int64_t
) byte_get ((unsigned char *)pnote
->descdata
+ 8, 8));
15654 printf (_("\n Link flags : "));
15655 printf ("0x%016" BFD_VMA_FMT
"x\n",
15656 (bfd_vma
) byte_get ((unsigned char *)pnote
->descdata
+ 16, 8));
15657 printf (_(" Header flags: 0x%08x\n"),
15658 (unsigned) byte_get ((unsigned char *)pnote
->descdata
+ 24, 4));
15659 printf (_(" Image id : %s\n"), pnote
->descdata
+ 32);
15662 case NT_VMS_IMGNAM
:
15663 printf (_(" Image name: %s\n"), pnote
->descdata
);
15665 case NT_VMS_GSTNAM
:
15666 printf (_(" Global symbol table name: %s\n"), pnote
->descdata
);
15669 printf (_(" Image id: %s\n"), pnote
->descdata
);
15671 case NT_VMS_LINKID
:
15672 printf (_(" Linker id: %s\n"), pnote
->descdata
);
15680 /* Note that by the ELF standard, the name field is already null byte
15681 terminated, and namesz includes the terminating null byte.
15682 I.E. the value of namesz for the name "FSF" is 4.
15684 If the value of namesz is zero, there is no name present. */
15686 process_note (Elf_Internal_Note
* pnote
)
15688 const char * name
= pnote
->namesz
? pnote
->namedata
: "(NONE)";
15691 if (pnote
->namesz
== 0)
15692 /* If there is no note name, then use the default set of
15693 note type strings. */
15694 nt
= get_note_type (pnote
->type
);
15696 else if (const_strneq (pnote
->namedata
, "GNU"))
15697 /* GNU-specific object file notes. */
15698 nt
= get_gnu_elf_note_type (pnote
->type
);
15700 else if (const_strneq (pnote
->namedata
, "FreeBSD"))
15701 /* FreeBSD-specific core file notes. */
15702 nt
= get_freebsd_elfcore_note_type (pnote
->type
);
15704 else if (const_strneq (pnote
->namedata
, "NetBSD-CORE"))
15705 /* NetBSD-specific core file notes. */
15706 nt
= get_netbsd_elfcore_note_type (pnote
->type
);
15708 else if (const_strneq (pnote
->namedata
, "NetBSD"))
15709 /* NetBSD-specific core file notes. */
15710 return process_netbsd_elf_note (pnote
);
15712 else if (strneq (pnote
->namedata
, "SPU/", 4))
15714 /* SPU-specific core file notes. */
15715 nt
= pnote
->namedata
+ 4;
15719 else if (const_strneq (pnote
->namedata
, "IPF/VMS"))
15720 /* VMS/ia64-specific file notes. */
15721 nt
= get_ia64_vms_note_type (pnote
->type
);
15723 else if (const_strneq (pnote
->namedata
, "stapsdt"))
15724 nt
= get_stapsdt_note_type (pnote
->type
);
15727 /* Don't recognize this note name; just use the default set of
15728 note type strings. */
15729 nt
= get_note_type (pnote
->type
);
15731 printf (" %-20s 0x%08lx\t%s\n", name
, pnote
->descsz
, nt
);
15733 if (const_strneq (pnote
->namedata
, "IPF/VMS"))
15734 return print_ia64_vms_note (pnote
);
15735 else if (const_strneq (pnote
->namedata
, "GNU"))
15736 return print_gnu_note (pnote
);
15737 else if (const_strneq (pnote
->namedata
, "stapsdt"))
15738 return print_stapsdt_note (pnote
);
15739 else if (const_strneq (pnote
->namedata
, "CORE"))
15740 return print_core_note (pnote
);
15747 process_corefile_note_segment (FILE * file
, bfd_vma offset
, bfd_vma length
)
15749 Elf_External_Note
* pnotes
;
15750 Elf_External_Note
* external
;
15757 pnotes
= (Elf_External_Note
*) get_data (NULL
, file
, offset
, 1, length
,
15759 if (pnotes
== NULL
)
15764 printf (_("\nDisplaying notes found at file offset 0x%08lx with length 0x%08lx:\n"),
15765 (unsigned long) offset
, (unsigned long) length
);
15766 printf (_(" %-20s %10s\tDescription\n"), _("Owner"), _("Data size"));
15768 end
= (char *) pnotes
+ length
;
15769 while ((char *) external
< end
)
15771 Elf_Internal_Note inote
;
15774 char * temp
= NULL
;
15775 size_t data_remaining
= end
- (char *) external
;
15777 if (!is_ia64_vms ())
15779 /* PR binutils/15191
15780 Make sure that there is enough data to read. */
15781 min_notesz
= offsetof (Elf_External_Note
, name
);
15782 if (data_remaining
< min_notesz
)
15784 warn (_("Corrupt note: only %d bytes remain, not enough for a full note\n"),
15785 (int) data_remaining
);
15788 inote
.type
= BYTE_GET (external
->type
);
15789 inote
.namesz
= BYTE_GET (external
->namesz
);
15790 inote
.namedata
= external
->name
;
15791 inote
.descsz
= BYTE_GET (external
->descsz
);
15792 inote
.descdata
= inote
.namedata
+ align_power (inote
.namesz
, 2);
15793 /* PR 17531: file: 3443835e. */
15794 if (inote
.descdata
< (char *) pnotes
|| inote
.descdata
> end
)
15796 warn (_("Corrupt note: name size is too big: %lx\n"), inote
.namesz
);
15797 inote
.descdata
= inote
.namedata
;
15801 inote
.descpos
= offset
+ (inote
.descdata
- (char *) pnotes
);
15802 next
= inote
.descdata
+ align_power (inote
.descsz
, 2);
15806 Elf64_External_VMS_Note
*vms_external
;
15808 /* PR binutils/15191
15809 Make sure that there is enough data to read. */
15810 min_notesz
= offsetof (Elf64_External_VMS_Note
, name
);
15811 if (data_remaining
< min_notesz
)
15813 warn (_("Corrupt note: only %d bytes remain, not enough for a full note\n"),
15814 (int) data_remaining
);
15818 vms_external
= (Elf64_External_VMS_Note
*) external
;
15819 inote
.type
= BYTE_GET (vms_external
->type
);
15820 inote
.namesz
= BYTE_GET (vms_external
->namesz
);
15821 inote
.namedata
= vms_external
->name
;
15822 inote
.descsz
= BYTE_GET (vms_external
->descsz
);
15823 inote
.descdata
= inote
.namedata
+ align_power (inote
.namesz
, 3);
15824 inote
.descpos
= offset
+ (inote
.descdata
- (char *) pnotes
);
15825 next
= inote
.descdata
+ align_power (inote
.descsz
, 3);
15828 if (inote
.descdata
< (char *) external
+ min_notesz
15829 || next
< (char *) external
+ min_notesz
15830 /* PR binutils/17531: file: id:000000,sig:11,src:006986,op:havoc,rep:4. */
15831 || inote
.namedata
+ inote
.namesz
< inote
.namedata
15832 || inote
.descdata
+ inote
.descsz
< inote
.descdata
15833 || data_remaining
< (size_t)(next
- (char *) external
))
15835 warn (_("note with invalid namesz and/or descsz found at offset 0x%lx\n"),
15836 (unsigned long) ((char *) external
- (char *) pnotes
));
15837 warn (_(" type: 0x%lx, namesize: 0x%08lx, descsize: 0x%08lx\n"),
15838 inote
.type
, inote
.namesz
, inote
.descsz
);
15842 external
= (Elf_External_Note
*) next
;
15844 /* Verify that name is null terminated. It appears that at least
15845 one version of Linux (RedHat 6.0) generates corefiles that don't
15846 comply with the ELF spec by failing to include the null byte in
15848 if (inote
.namedata
[inote
.namesz
- 1] != '\0')
15850 temp
= (char *) malloc (inote
.namesz
+ 1);
15853 error (_("Out of memory allocating space for inote name\n"));
15858 strncpy (temp
, inote
.namedata
, inote
.namesz
);
15859 temp
[inote
.namesz
] = 0;
15861 /* warn (_("'%s' NOTE name not properly null terminated\n"), temp); */
15862 inote
.namedata
= temp
;
15865 res
&= process_note (& inote
);
15880 process_corefile_note_segments (FILE * file
)
15882 Elf_Internal_Phdr
* segment
;
15886 if (! get_program_headers (file
))
15889 for (i
= 0, segment
= program_headers
;
15890 i
< elf_header
.e_phnum
;
15893 if (segment
->p_type
== PT_NOTE
)
15894 res
&= process_corefile_note_segment (file
,
15895 (bfd_vma
) segment
->p_offset
,
15896 (bfd_vma
) segment
->p_filesz
);
15903 process_v850_notes (FILE * file
, bfd_vma offset
, bfd_vma length
)
15905 Elf_External_Note
* pnotes
;
15906 Elf_External_Note
* external
;
15913 pnotes
= (Elf_External_Note
*) get_data (NULL
, file
, offset
, 1, length
,
15915 if (pnotes
== NULL
)
15919 end
= (char*) pnotes
+ length
;
15921 printf (_("\nDisplaying contents of Renesas V850 notes section at offset 0x%lx with length 0x%lx:\n"),
15922 (unsigned long) offset
, (unsigned long) length
);
15924 while ((char *) external
+ sizeof (Elf_External_Note
) < end
)
15926 Elf_External_Note
* next
;
15927 Elf_Internal_Note inote
;
15929 inote
.type
= BYTE_GET (external
->type
);
15930 inote
.namesz
= BYTE_GET (external
->namesz
);
15931 inote
.namedata
= external
->name
;
15932 inote
.descsz
= BYTE_GET (external
->descsz
);
15933 inote
.descdata
= inote
.namedata
+ align_power (inote
.namesz
, 2);
15934 inote
.descpos
= offset
+ (inote
.descdata
- (char *) pnotes
);
15936 if (inote
.descdata
< (char *) pnotes
|| inote
.descdata
>= end
)
15938 warn (_("Corrupt note: name size is too big: %lx\n"), inote
.namesz
);
15939 inote
.descdata
= inote
.namedata
;
15943 next
= (Elf_External_Note
*) (inote
.descdata
+ align_power (inote
.descsz
, 2));
15945 if ( ((char *) next
> end
)
15946 || ((char *) next
< (char *) pnotes
))
15948 warn (_("corrupt descsz found in note at offset 0x%lx\n"),
15949 (unsigned long) ((char *) external
- (char *) pnotes
));
15950 warn (_(" type: 0x%lx, namesize: 0x%lx, descsize: 0x%lx\n"),
15951 inote
.type
, inote
.namesz
, inote
.descsz
);
15957 /* Prevent out-of-bounds indexing. */
15958 if ( inote
.namedata
+ inote
.namesz
> end
15959 || inote
.namedata
+ inote
.namesz
< inote
.namedata
)
15961 warn (_("corrupt namesz found in note at offset 0x%lx\n"),
15962 (unsigned long) ((char *) external
- (char *) pnotes
));
15963 warn (_(" type: 0x%lx, namesize: 0x%lx, descsize: 0x%lx\n"),
15964 inote
.type
, inote
.namesz
, inote
.descsz
);
15968 printf (" %s: ", get_v850_elf_note_type (inote
.type
));
15970 if (! print_v850_note (& inote
))
15973 printf ("<corrupt sizes: namesz: %lx, descsz: %lx>\n",
15974 inote
.namesz
, inote
.descsz
);
15984 process_note_sections (FILE * file
)
15986 Elf_Internal_Shdr
* section
;
15991 for (i
= 0, section
= section_headers
;
15992 i
< elf_header
.e_shnum
&& section
!= NULL
;
15995 if (section
->sh_type
== SHT_NOTE
)
15997 res
&= process_corefile_note_segment (file
,
15998 (bfd_vma
) section
->sh_offset
,
15999 (bfd_vma
) section
->sh_size
);
16003 if (( elf_header
.e_machine
== EM_V800
16004 || elf_header
.e_machine
== EM_V850
16005 || elf_header
.e_machine
== EM_CYGNUS_V850
)
16006 && section
->sh_type
== SHT_RENESAS_INFO
)
16008 res
&= process_v850_notes (file
,
16009 (bfd_vma
) section
->sh_offset
,
16010 (bfd_vma
) section
->sh_size
);
16016 /* Try processing NOTE segments instead. */
16017 return process_corefile_note_segments (file
);
16023 process_notes (FILE * file
)
16025 /* If we have not been asked to display the notes then do nothing. */
16029 if (elf_header
.e_type
!= ET_CORE
)
16030 return process_note_sections (file
);
16032 /* No program headers means no NOTE segment. */
16033 if (elf_header
.e_phnum
> 0)
16034 return process_corefile_note_segments (file
);
16036 printf (_("No note segments present in the core file.\n"));
16041 process_arch_specific (FILE * file
)
16046 switch (elf_header
.e_machine
)
16049 return process_arm_specific (file
);
16051 case EM_MIPS_RS3_LE
:
16052 return process_mips_specific (file
);
16055 return process_nds32_specific (file
);
16058 return process_power_specific (file
);
16062 return process_s390_specific (file
);
16065 case EM_SPARC32PLUS
:
16067 return process_sparc_specific (file
);
16070 return process_tic6x_specific (file
);
16073 return process_msp430x_specific (file
);
16081 get_file_header (FILE * file
)
16083 /* Read in the identity array. */
16084 if (fread (elf_header
.e_ident
, EI_NIDENT
, 1, file
) != 1)
16087 /* Determine how to read the rest of the header. */
16088 switch (elf_header
.e_ident
[EI_DATA
])
16090 default: /* fall through */
16091 case ELFDATANONE
: /* fall through */
16093 byte_get
= byte_get_little_endian
;
16094 byte_put
= byte_put_little_endian
;
16097 byte_get
= byte_get_big_endian
;
16098 byte_put
= byte_put_big_endian
;
16102 /* For now we only support 32 bit and 64 bit ELF files. */
16103 is_32bit_elf
= (elf_header
.e_ident
[EI_CLASS
] != ELFCLASS64
);
16105 /* Read in the rest of the header. */
16108 Elf32_External_Ehdr ehdr32
;
16110 if (fread (ehdr32
.e_type
, sizeof (ehdr32
) - EI_NIDENT
, 1, file
) != 1)
16113 elf_header
.e_type
= BYTE_GET (ehdr32
.e_type
);
16114 elf_header
.e_machine
= BYTE_GET (ehdr32
.e_machine
);
16115 elf_header
.e_version
= BYTE_GET (ehdr32
.e_version
);
16116 elf_header
.e_entry
= BYTE_GET (ehdr32
.e_entry
);
16117 elf_header
.e_phoff
= BYTE_GET (ehdr32
.e_phoff
);
16118 elf_header
.e_shoff
= BYTE_GET (ehdr32
.e_shoff
);
16119 elf_header
.e_flags
= BYTE_GET (ehdr32
.e_flags
);
16120 elf_header
.e_ehsize
= BYTE_GET (ehdr32
.e_ehsize
);
16121 elf_header
.e_phentsize
= BYTE_GET (ehdr32
.e_phentsize
);
16122 elf_header
.e_phnum
= BYTE_GET (ehdr32
.e_phnum
);
16123 elf_header
.e_shentsize
= BYTE_GET (ehdr32
.e_shentsize
);
16124 elf_header
.e_shnum
= BYTE_GET (ehdr32
.e_shnum
);
16125 elf_header
.e_shstrndx
= BYTE_GET (ehdr32
.e_shstrndx
);
16129 Elf64_External_Ehdr ehdr64
;
16131 /* If we have been compiled with sizeof (bfd_vma) == 4, then
16132 we will not be able to cope with the 64bit data found in
16133 64 ELF files. Detect this now and abort before we start
16134 overwriting things. */
16135 if (sizeof (bfd_vma
) < 8)
16137 error (_("This instance of readelf has been built without support for a\n\
16138 64 bit data type and so it cannot read 64 bit ELF files.\n"));
16142 if (fread (ehdr64
.e_type
, sizeof (ehdr64
) - EI_NIDENT
, 1, file
) != 1)
16145 elf_header
.e_type
= BYTE_GET (ehdr64
.e_type
);
16146 elf_header
.e_machine
= BYTE_GET (ehdr64
.e_machine
);
16147 elf_header
.e_version
= BYTE_GET (ehdr64
.e_version
);
16148 elf_header
.e_entry
= BYTE_GET (ehdr64
.e_entry
);
16149 elf_header
.e_phoff
= BYTE_GET (ehdr64
.e_phoff
);
16150 elf_header
.e_shoff
= BYTE_GET (ehdr64
.e_shoff
);
16151 elf_header
.e_flags
= BYTE_GET (ehdr64
.e_flags
);
16152 elf_header
.e_ehsize
= BYTE_GET (ehdr64
.e_ehsize
);
16153 elf_header
.e_phentsize
= BYTE_GET (ehdr64
.e_phentsize
);
16154 elf_header
.e_phnum
= BYTE_GET (ehdr64
.e_phnum
);
16155 elf_header
.e_shentsize
= BYTE_GET (ehdr64
.e_shentsize
);
16156 elf_header
.e_shnum
= BYTE_GET (ehdr64
.e_shnum
);
16157 elf_header
.e_shstrndx
= BYTE_GET (ehdr64
.e_shstrndx
);
16160 if (elf_header
.e_shoff
)
16162 /* There may be some extensions in the first section header. Don't
16163 bomb if we can't read it. */
16165 get_32bit_section_headers (file
, TRUE
);
16167 get_64bit_section_headers (file
, TRUE
);
16173 /* Process one ELF object file according to the command line options.
16174 This file may actually be stored in an archive. The file is
16175 positioned at the start of the ELF object. */
16178 process_object (char * file_name
, FILE * file
)
16182 if (! get_file_header (file
))
16184 error (_("%s: Failed to read file header\n"), file_name
);
16188 /* Initialise per file variables. */
16189 for (i
= ARRAY_SIZE (version_info
); i
--;)
16190 version_info
[i
] = 0;
16192 for (i
= ARRAY_SIZE (dynamic_info
); i
--;)
16193 dynamic_info
[i
] = 0;
16194 dynamic_info_DT_GNU_HASH
= 0;
16196 /* Process the file. */
16198 printf (_("\nFile: %s\n"), file_name
);
16200 /* Initialise the dump_sects array from the cmdline_dump_sects array.
16201 Note we do this even if cmdline_dump_sects is empty because we
16202 must make sure that the dump_sets array is zeroed out before each
16203 object file is processed. */
16204 if (num_dump_sects
> num_cmdline_dump_sects
)
16205 memset (dump_sects
, 0, num_dump_sects
* sizeof (* dump_sects
));
16207 if (num_cmdline_dump_sects
> 0)
16209 if (num_dump_sects
== 0)
16210 /* A sneaky way of allocating the dump_sects array. */
16211 request_dump_bynumber (num_cmdline_dump_sects
, 0);
16213 assert (num_dump_sects
>= num_cmdline_dump_sects
);
16214 memcpy (dump_sects
, cmdline_dump_sects
,
16215 num_cmdline_dump_sects
* sizeof (* dump_sects
));
16218 if (! process_file_header ())
16221 if (! process_section_headers (file
))
16223 /* Without loaded section headers we cannot process lots of
16225 do_unwind
= do_version
= do_dump
= do_arch
= 0;
16227 if (! do_using_dynamic
)
16228 do_syms
= do_dyn_syms
= do_reloc
= 0;
16231 if (! process_section_groups (file
))
16233 /* Without loaded section groups we cannot process unwind. */
16237 if (process_program_headers (file
))
16238 process_dynamic_section (file
);
16240 process_relocs (file
);
16242 process_unwind (file
);
16244 process_symbol_table (file
);
16246 process_syminfo (file
);
16248 process_version_sections (file
);
16250 process_section_contents (file
);
16252 process_notes (file
);
16254 process_gnu_liblist (file
);
16256 process_arch_specific (file
);
16258 if (program_headers
)
16260 free (program_headers
);
16261 program_headers
= NULL
;
16264 if (section_headers
)
16266 free (section_headers
);
16267 section_headers
= NULL
;
16272 free (string_table
);
16273 string_table
= NULL
;
16274 string_table_length
= 0;
16277 if (dynamic_strings
)
16279 free (dynamic_strings
);
16280 dynamic_strings
= NULL
;
16281 dynamic_strings_length
= 0;
16284 if (dynamic_symbols
)
16286 free (dynamic_symbols
);
16287 dynamic_symbols
= NULL
;
16288 num_dynamic_syms
= 0;
16291 if (dynamic_syminfo
)
16293 free (dynamic_syminfo
);
16294 dynamic_syminfo
= NULL
;
16297 if (dynamic_section
)
16299 free (dynamic_section
);
16300 dynamic_section
= NULL
;
16303 if (section_headers_groups
)
16305 free (section_headers_groups
);
16306 section_headers_groups
= NULL
;
16309 if (section_groups
)
16311 struct group_list
* g
;
16312 struct group_list
* next
;
16314 for (i
= 0; i
< group_count
; i
++)
16316 for (g
= section_groups
[i
].root
; g
!= NULL
; g
= next
)
16323 free (section_groups
);
16324 section_groups
= NULL
;
16327 free_debug_memory ();
16332 /* Process an ELF archive.
16333 On entry the file is positioned just after the ARMAG string. */
16336 process_archive (char * file_name
, FILE * file
, bfd_boolean is_thin_archive
)
16338 struct archive_info arch
;
16339 struct archive_info nested_arch
;
16345 /* The ARCH structure is used to hold information about this archive. */
16346 arch
.file_name
= NULL
;
16348 arch
.index_array
= NULL
;
16349 arch
.sym_table
= NULL
;
16350 arch
.longnames
= NULL
;
16352 /* The NESTED_ARCH structure is used as a single-item cache of information
16353 about a nested archive (when members of a thin archive reside within
16354 another regular archive file). */
16355 nested_arch
.file_name
= NULL
;
16356 nested_arch
.file
= NULL
;
16357 nested_arch
.index_array
= NULL
;
16358 nested_arch
.sym_table
= NULL
;
16359 nested_arch
.longnames
= NULL
;
16361 if (setup_archive (&arch
, file_name
, file
, is_thin_archive
, do_archive_index
) != 0)
16367 if (do_archive_index
)
16369 if (arch
.sym_table
== NULL
)
16370 error (_("%s: unable to dump the index as none was found\n"), file_name
);
16373 unsigned long i
, l
;
16374 unsigned long current_pos
;
16376 printf (_("Index of archive %s: (%lu entries, 0x%lx bytes in the symbol table)\n"),
16377 file_name
, (unsigned long) arch
.index_num
, arch
.sym_size
);
16378 current_pos
= ftell (file
);
16380 for (i
= l
= 0; i
< arch
.index_num
; i
++)
16382 if ((i
== 0) || ((i
> 0) && (arch
.index_array
[i
] != arch
.index_array
[i
- 1])))
16384 char * member_name
;
16386 member_name
= get_archive_member_name_at (&arch
, arch
.index_array
[i
], &nested_arch
);
16388 if (member_name
!= NULL
)
16390 char * qualified_name
= make_qualified_name (&arch
, &nested_arch
, member_name
);
16392 if (qualified_name
!= NULL
)
16394 printf (_("Contents of binary %s at offset "), qualified_name
);
16395 (void) print_vma (arch
.index_array
[i
], PREFIX_HEX
);
16397 free (qualified_name
);
16402 if (l
>= arch
.sym_size
)
16404 error (_("%s: end of the symbol table reached before the end of the index\n"),
16408 /* PR 17531: file: 0b6630b2. */
16409 printf ("\t%.*s\n", (int) (arch
.sym_size
- l
), arch
.sym_table
+ l
);
16410 l
+= strnlen (arch
.sym_table
+ l
, arch
.sym_size
- l
) + 1;
16413 if (arch
.uses_64bit_indicies
)
16418 if (l
< arch
.sym_size
)
16419 error (_("%s: %ld bytes remain in the symbol table, but without corresponding entries in the index table\n"),
16420 file_name
, arch
.sym_size
- l
);
16422 if (fseek (file
, current_pos
, SEEK_SET
) != 0)
16424 error (_("%s: failed to seek back to start of object files in the archive\n"), file_name
);
16430 if (!do_dynamic
&& !do_syms
&& !do_reloc
&& !do_unwind
&& !do_sections
16431 && !do_segments
&& !do_header
&& !do_dump
&& !do_version
16432 && !do_histogram
&& !do_debugging
&& !do_arch
&& !do_notes
16433 && !do_section_groups
&& !do_dyn_syms
)
16435 ret
= 0; /* Archive index only. */
16446 char * qualified_name
;
16448 /* Read the next archive header. */
16449 if (fseek (file
, arch
.next_arhdr_offset
, SEEK_SET
) != 0)
16451 error (_("%s: failed to seek to next archive header\n"), file_name
);
16454 got
= fread (&arch
.arhdr
, 1, sizeof arch
.arhdr
, file
);
16455 if (got
!= sizeof arch
.arhdr
)
16459 error (_("%s: failed to read archive header\n"), file_name
);
16463 if (memcmp (arch
.arhdr
.ar_fmag
, ARFMAG
, 2) != 0)
16465 error (_("%s: did not find a valid archive header\n"), arch
.file_name
);
16470 arch
.next_arhdr_offset
+= sizeof arch
.arhdr
;
16472 archive_file_size
= strtoul (arch
.arhdr
.ar_size
, NULL
, 10);
16473 if (archive_file_size
& 01)
16474 ++archive_file_size
;
16476 name
= get_archive_member_name (&arch
, &nested_arch
);
16479 error (_("%s: bad archive file name\n"), file_name
);
16483 namelen
= strlen (name
);
16485 qualified_name
= make_qualified_name (&arch
, &nested_arch
, name
);
16486 if (qualified_name
== NULL
)
16488 error (_("%s: bad archive file name\n"), file_name
);
16493 if (is_thin_archive
&& arch
.nested_member_origin
== 0)
16495 /* This is a proxy for an external member of a thin archive. */
16496 FILE * member_file
;
16497 char * member_file_name
= adjust_relative_path (file_name
, name
, namelen
);
16498 if (member_file_name
== NULL
)
16504 member_file
= fopen (member_file_name
, "rb");
16505 if (member_file
== NULL
)
16507 error (_("Input file '%s' is not readable.\n"), member_file_name
);
16508 free (member_file_name
);
16513 archive_file_offset
= arch
.nested_member_origin
;
16515 ret
|= process_object (qualified_name
, member_file
);
16517 fclose (member_file
);
16518 free (member_file_name
);
16520 else if (is_thin_archive
)
16522 /* PR 15140: Allow for corrupt thin archives. */
16523 if (nested_arch
.file
== NULL
)
16525 error (_("%s: contains corrupt thin archive: %s\n"),
16531 /* This is a proxy for a member of a nested archive. */
16532 archive_file_offset
= arch
.nested_member_origin
+ sizeof arch
.arhdr
;
16534 /* The nested archive file will have been opened and setup by
16535 get_archive_member_name. */
16536 if (fseek (nested_arch
.file
, archive_file_offset
, SEEK_SET
) != 0)
16538 error (_("%s: failed to seek to archive member.\n"), nested_arch
.file_name
);
16543 ret
|= process_object (qualified_name
, nested_arch
.file
);
16547 archive_file_offset
= arch
.next_arhdr_offset
;
16548 arch
.next_arhdr_offset
+= archive_file_size
;
16550 ret
|= process_object (qualified_name
, file
);
16553 if (dump_sects
!= NULL
)
16557 num_dump_sects
= 0;
16560 free (qualified_name
);
16564 if (nested_arch
.file
!= NULL
)
16565 fclose (nested_arch
.file
);
16566 release_archive (&nested_arch
);
16567 release_archive (&arch
);
16573 process_file (char * file_name
)
16576 struct stat statbuf
;
16577 char armag
[SARMAG
];
16580 if (stat (file_name
, &statbuf
) < 0)
16582 if (errno
== ENOENT
)
16583 error (_("'%s': No such file\n"), file_name
);
16585 error (_("Could not locate '%s'. System error message: %s\n"),
16586 file_name
, strerror (errno
));
16590 if (! S_ISREG (statbuf
.st_mode
))
16592 error (_("'%s' is not an ordinary file\n"), file_name
);
16596 file
= fopen (file_name
, "rb");
16599 error (_("Input file '%s' is not readable.\n"), file_name
);
16603 if (fread (armag
, SARMAG
, 1, file
) != 1)
16605 error (_("%s: Failed to read file's magic number\n"), file_name
);
16610 current_file_size
= (bfd_size_type
) statbuf
.st_size
;
16612 if (memcmp (armag
, ARMAG
, SARMAG
) == 0)
16613 ret
= process_archive (file_name
, file
, FALSE
);
16614 else if (memcmp (armag
, ARMAGT
, SARMAG
) == 0)
16615 ret
= process_archive (file_name
, file
, TRUE
);
16618 if (do_archive_index
)
16619 error (_("File %s is not an archive so its index cannot be displayed.\n"),
16623 archive_file_size
= archive_file_offset
= 0;
16624 ret
= process_object (file_name
, file
);
16629 current_file_size
= 0;
16633 #ifdef SUPPORT_DISASSEMBLY
16634 /* Needed by the i386 disassembler. For extra credit, someone could
16635 fix this so that we insert symbolic addresses here, esp for GOT/PLT
16639 print_address (unsigned int addr
, FILE * outfile
)
16641 fprintf (outfile
,"0x%8.8x", addr
);
16644 /* Needed by the i386 disassembler. */
16646 db_task_printsym (unsigned int addr
)
16648 print_address (addr
, stderr
);
16653 main (int argc
, char ** argv
)
16657 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
16658 setlocale (LC_MESSAGES
, "");
16660 #if defined (HAVE_SETLOCALE)
16661 setlocale (LC_CTYPE
, "");
16663 bindtextdomain (PACKAGE
, LOCALEDIR
);
16664 textdomain (PACKAGE
);
16666 expandargv (&argc
, &argv
);
16668 parse_args (argc
, argv
);
16670 if (num_dump_sects
> 0)
16672 /* Make a copy of the dump_sects array. */
16673 cmdline_dump_sects
= (dump_type
*)
16674 malloc (num_dump_sects
* sizeof (* dump_sects
));
16675 if (cmdline_dump_sects
== NULL
)
16676 error (_("Out of memory allocating dump request table.\n"));
16679 memcpy (cmdline_dump_sects
, dump_sects
,
16680 num_dump_sects
* sizeof (* dump_sects
));
16681 num_cmdline_dump_sects
= num_dump_sects
;
16685 if (optind
< (argc
- 1))
16687 else if (optind
>= argc
)
16689 warn (_("Nothing to do.\n"));
16694 while (optind
< argc
)
16695 err
|= process_file (argv
[optind
++]);
16697 if (dump_sects
!= NULL
)
16699 if (cmdline_dump_sects
!= NULL
)
16700 free (cmdline_dump_sects
);