1 /* readelf.c -- display contents of an ELF format file
2 Copyright (C) 1998-2019 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. */
65 #include "elf/common.h"
66 #include "elf/external.h"
67 #include "elf/internal.h"
70 /* Included here, before RELOC_MACROS_GEN_FUNC is defined, so that
71 we can obtain the H8 reloc numbers. We need these for the
72 get_reloc_size() function. We include h8.h again after defining
73 RELOC_MACROS_GEN_FUNC so that we get the naming function as well. */
78 /* Undo the effects of #including reloc-macros.h. */
80 #undef START_RELOC_NUMBERS
84 #undef END_RELOC_NUMBERS
85 #undef _RELOC_MACROS_H
87 /* The following headers use the elf/reloc-macros.h file to
88 automatically generate relocation recognition functions
89 such as elf_mips_reloc_type() */
91 #define RELOC_MACROS_GEN_FUNC
93 #include "elf/aarch64.h"
94 #include "elf/alpha.h"
100 #include "elf/cris.h"
102 #include "elf/csky.h"
103 #include "elf/d10v.h"
104 #include "elf/d30v.h"
107 #include "elf/epiphany.h"
108 #include "elf/fr30.h"
110 #include "elf/ft32.h"
112 #include "elf/hppa.h"
113 #include "elf/i386.h"
114 #include "elf/i370.h"
115 #include "elf/i860.h"
116 #include "elf/i960.h"
117 #include "elf/ia64.h"
118 #include "elf/ip2k.h"
119 #include "elf/lm32.h"
120 #include "elf/iq2000.h"
121 #include "elf/m32c.h"
122 #include "elf/m32r.h"
123 #include "elf/m68k.h"
124 #include "elf/m68hc11.h"
125 #include "elf/s12z.h"
126 #include "elf/mcore.h"
128 #include "elf/metag.h"
129 #include "elf/microblaze.h"
130 #include "elf/mips.h"
131 #include "elf/mmix.h"
132 #include "elf/mn10200.h"
133 #include "elf/mn10300.h"
134 #include "elf/moxie.h"
136 #include "elf/msp430.h"
137 #include "elf/nds32.h"
139 #include "elf/nios2.h"
140 #include "elf/or1k.h"
143 #include "elf/ppc64.h"
145 #include "elf/riscv.h"
146 #include "elf/rl78.h"
148 #include "elf/s390.h"
149 #include "elf/score.h"
151 #include "elf/sparc.h"
153 #include "elf/tic6x.h"
154 #include "elf/tilegx.h"
155 #include "elf/tilepro.h"
156 #include "elf/v850.h"
158 #include "elf/visium.h"
159 #include "elf/wasm32.h"
160 #include "elf/x86-64.h"
161 #include "elf/xc16x.h"
162 #include "elf/xgate.h"
163 #include "elf/xstormy16.h"
164 #include "elf/xtensa.h"
167 #include "libiberty.h"
168 #include "safe-ctype.h"
169 #include "filenames.h"
172 #define offsetof(TYPE, MEMBER) ((size_t) &(((TYPE *) 0)->MEMBER))
175 typedef struct elf_section_list
177 Elf_Internal_Shdr
* hdr
;
178 struct elf_section_list
* next
;
181 /* Flag bits indicating particular types of dump. */
182 #define HEX_DUMP (1 << 0) /* The -x command line switch. */
183 #define DISASS_DUMP (1 << 1) /* The -i command line switch. */
184 #define DEBUG_DUMP (1 << 2) /* The -w command line switch. */
185 #define STRING_DUMP (1 << 3) /* The -p command line switch. */
186 #define RELOC_DUMP (1 << 4) /* The -R command line switch. */
187 #define CTF_DUMP (1 << 5) /* The --ctf command line switch. */
189 typedef unsigned char dump_type
;
191 /* A linked list of the section names for which dumps were requested. */
192 struct dump_list_entry
196 struct dump_list_entry
* next
;
199 typedef struct filedata
201 const char * file_name
;
203 bfd_size_type file_size
;
204 Elf_Internal_Ehdr file_header
;
205 Elf_Internal_Shdr
* section_headers
;
206 Elf_Internal_Phdr
* program_headers
;
208 unsigned long string_table_length
;
209 /* A dynamic array of flags indicating for which sections a dump of
210 some kind has been requested. It is reset on a per-object file
211 basis and then initialised from the cmdline_dump_sects array,
212 the results of interpreting the -w switch, and the
213 dump_sects_byname list. */
214 dump_type
* dump_sects
;
215 unsigned int num_dump_sects
;
218 char * program_name
= "readelf";
220 static unsigned long archive_file_offset
;
221 static unsigned long archive_file_size
;
222 static unsigned long dynamic_addr
;
223 static bfd_size_type dynamic_size
;
224 static size_t dynamic_nent
;
225 static char * dynamic_strings
;
226 static unsigned long dynamic_strings_length
;
227 static unsigned long num_dynamic_syms
;
228 static Elf_Internal_Sym
* dynamic_symbols
;
229 static Elf_Internal_Syminfo
* dynamic_syminfo
;
230 static unsigned long dynamic_syminfo_offset
;
231 static unsigned int dynamic_syminfo_nent
;
232 static char program_interpreter
[PATH_MAX
];
233 static bfd_vma dynamic_info
[DT_ENCODING
];
234 static bfd_vma dynamic_info_DT_GNU_HASH
;
235 static bfd_vma dynamic_info_DT_MIPS_XHASH
;
236 static bfd_vma version_info
[16];
237 static Elf_Internal_Dyn
* dynamic_section
;
238 static elf_section_list
* symtab_shndx_list
;
239 static bfd_boolean show_name
= FALSE
;
240 static bfd_boolean do_dynamic
= FALSE
;
241 static bfd_boolean do_syms
= FALSE
;
242 static bfd_boolean do_dyn_syms
= FALSE
;
243 static bfd_boolean do_reloc
= FALSE
;
244 static bfd_boolean do_sections
= FALSE
;
245 static bfd_boolean do_section_groups
= FALSE
;
246 static bfd_boolean do_section_details
= FALSE
;
247 static bfd_boolean do_segments
= FALSE
;
248 static bfd_boolean do_unwind
= FALSE
;
249 static bfd_boolean do_using_dynamic
= FALSE
;
250 static bfd_boolean do_header
= FALSE
;
251 static bfd_boolean do_dump
= FALSE
;
252 static bfd_boolean do_version
= FALSE
;
253 static bfd_boolean do_histogram
= FALSE
;
254 static bfd_boolean do_debugging
= FALSE
;
255 static bfd_boolean do_ctf
= FALSE
;
256 static bfd_boolean do_arch
= FALSE
;
257 static bfd_boolean do_notes
= FALSE
;
258 static bfd_boolean do_archive_index
= FALSE
;
259 static bfd_boolean is_32bit_elf
= FALSE
;
260 static bfd_boolean decompress_dumps
= FALSE
;
262 static char *dump_ctf_parent_name
;
263 static char *dump_ctf_symtab_name
;
264 static char *dump_ctf_strtab_name
;
268 struct group_list
* next
;
269 unsigned int section_index
;
274 struct group_list
* root
;
275 unsigned int group_index
;
278 static size_t group_count
;
279 static struct group
* section_groups
;
280 static struct group
** section_headers_groups
;
282 /* A dynamic array of flags indicating for which sections a dump
283 has been requested via command line switches. */
284 static Filedata cmdline
;
286 static struct dump_list_entry
* dump_sects_byname
;
288 /* How to print a vma value. */
289 typedef enum print_mode
301 /* Versioned symbol info. */
302 enum versioned_symbol_info
309 static const char * get_symbol_version_string
310 (Filedata
*, bfd_boolean
, const char *, unsigned long, unsigned,
311 Elf_Internal_Sym
*, enum versioned_symbol_info
*, unsigned short *);
315 #define SECTION_NAME(X) \
316 ((X) == NULL ? _("<none>") \
317 : filedata->string_table == NULL ? _("<no-strings>") \
318 : ((X)->sh_name >= filedata->string_table_length ? _("<corrupt>") \
319 : filedata->string_table + (X)->sh_name))
321 #define DT_VERSIONTAGIDX(tag) (DT_VERNEEDNUM - (tag)) /* Reverse order! */
323 #define GET_ELF_SYMBOLS(file, section, sym_count) \
324 (is_32bit_elf ? get_32bit_elf_symbols (file, section, sym_count) \
325 : get_64bit_elf_symbols (file, section, sym_count))
327 #define VALID_DYNAMIC_NAME(offset) ((dynamic_strings != NULL) && (offset < dynamic_strings_length))
328 /* GET_DYNAMIC_NAME asssumes that VALID_DYNAMIC_NAME has
329 already been called and verified that the string exists. */
330 #define GET_DYNAMIC_NAME(offset) (dynamic_strings + offset)
332 #define REMOVE_ARCH_BITS(ADDR) \
335 if (filedata->file_header.e_machine == EM_ARM) \
340 /* Get the correct GNU hash section name. */
341 #define GNU_HASH_SECTION_NAME \
342 dynamic_info_DT_MIPS_XHASH ? ".MIPS.xhash" : ".gnu.hash"
344 /* Print a BFD_VMA to an internal buffer, for use in error messages.
345 BFD_FMA_FMT can't be used in translated strings. */
348 bfd_vmatoa (char *fmtch
, bfd_vma value
)
350 /* bfd_vmatoa is used more then once in a printf call for output.
351 Cycle through an array of buffers. */
352 static int buf_pos
= 0;
353 static struct bfd_vmatoa_buf
360 ret
= buf
[buf_pos
++].place
;
361 buf_pos
%= ARRAY_SIZE (buf
);
363 sprintf (fmt
, "%%%s%s", BFD_VMA_FMT
, fmtch
);
364 snprintf (ret
, sizeof (buf
[0].place
), fmt
, value
);
368 /* Retrieve NMEMB structures, each SIZE bytes long from FILEDATA starting at
369 OFFSET + the offset of the current archive member, if we are examining an
370 archive. Put the retrieved data into VAR, if it is not NULL. Otherwise
371 allocate a buffer using malloc and fill that. In either case return the
372 pointer to the start of the retrieved data or NULL if something went wrong.
373 If something does go wrong and REASON is not NULL then emit an error
374 message using REASON as part of the context. */
377 get_data (void * var
,
379 unsigned long offset
,
385 bfd_size_type amt
= size
* nmemb
;
387 if (size
== 0 || nmemb
== 0)
390 /* If the size_t type is smaller than the bfd_size_type, eg because
391 you are building a 32-bit tool on a 64-bit host, then make sure
392 that when the sizes are cast to (size_t) no information is lost. */
393 if ((size_t) size
!= size
394 || (size_t) nmemb
!= nmemb
395 || (size_t) amt
!= amt
)
398 error (_("Size truncation prevents reading %s"
399 " elements of size %s for %s\n"),
400 bfd_vmatoa ("u", nmemb
), bfd_vmatoa ("u", size
), reason
);
404 /* Check for size overflow. */
405 if (amt
/ size
!= nmemb
|| (size_t) amt
+ 1 == 0)
408 error (_("Size overflow prevents reading %s"
409 " elements of size %s for %s\n"),
410 bfd_vmatoa ("u", nmemb
), bfd_vmatoa ("u", size
), reason
);
414 /* Be kind to memory checkers (eg valgrind, address sanitizer) by not
415 attempting to allocate memory when the read is bound to fail. */
416 if (archive_file_offset
> filedata
->file_size
417 || offset
> filedata
->file_size
- archive_file_offset
418 || amt
> filedata
->file_size
- archive_file_offset
- offset
)
421 error (_("Reading %s bytes extends past end of file for %s\n"),
422 bfd_vmatoa ("u", amt
), reason
);
426 if (fseek (filedata
->handle
, archive_file_offset
+ offset
, SEEK_SET
))
429 error (_("Unable to seek to 0x%lx for %s\n"),
430 archive_file_offset
+ offset
, reason
);
437 /* + 1 so that we can '\0' terminate invalid string table sections. */
438 mvar
= malloc ((size_t) amt
+ 1);
443 error (_("Out of memory allocating %s bytes for %s\n"),
444 bfd_vmatoa ("u", amt
), reason
);
448 ((char *) mvar
)[amt
] = '\0';
451 if (fread (mvar
, (size_t) size
, (size_t) nmemb
, filedata
->handle
) != nmemb
)
454 error (_("Unable to read in %s bytes of %s\n"),
455 bfd_vmatoa ("u", amt
), reason
);
464 /* Print a VMA value in the MODE specified.
465 Returns the number of characters displayed. */
468 print_vma (bfd_vma vma
, print_mode mode
)
480 return nc
+ printf ("%8.8" BFD_VMA_FMT
"x", vma
);
487 return printf ("%5" BFD_VMA_FMT
"d", vma
);
493 return nc
+ printf ("%" BFD_VMA_FMT
"x", vma
);
496 return printf ("%" BFD_VMA_FMT
"d", vma
);
499 return printf ("%" BFD_VMA_FMT
"u", vma
);
502 /* FIXME: Report unrecognised mode ? */
507 /* Display a symbol on stdout. Handles the display of control characters and
508 multibye characters (assuming the host environment supports them).
510 Display at most abs(WIDTH) characters, truncating as necessary, unless do_wide is true.
512 If WIDTH is negative then ensure that the output is at least (- WIDTH) characters,
513 padding as necessary.
515 Returns the number of emitted characters. */
518 print_symbol (signed int width
, const char *symbol
)
520 bfd_boolean extra_padding
= FALSE
;
521 signed int num_printed
= 0;
522 #ifdef HAVE_MBSTATE_T
525 unsigned int width_remaining
;
529 /* Keep the width positive. This helps the code below. */
531 extra_padding
= TRUE
;
537 /* Set the remaining width to a very large value.
538 This simplifies the code below. */
539 width_remaining
= INT_MAX
;
541 width_remaining
= width
;
543 #ifdef HAVE_MBSTATE_T
544 /* Initialise the multibyte conversion state. */
545 memset (& state
, 0, sizeof (state
));
548 while (width_remaining
)
551 const char c
= *symbol
++;
556 /* Do not print control characters directly as they can affect terminal
557 settings. Such characters usually appear in the names generated
558 by the assembler for local labels. */
561 if (width_remaining
< 2)
564 printf ("^%c", c
+ 0x40);
565 width_remaining
-= 2;
568 else if (ISPRINT (c
))
576 #ifdef HAVE_MBSTATE_T
579 /* Let printf do the hard work of displaying multibyte characters. */
580 printf ("%.1s", symbol
- 1);
584 #ifdef HAVE_MBSTATE_T
585 /* Try to find out how many bytes made up the character that was
586 just printed. Advance the symbol pointer past the bytes that
588 n
= mbrtowc (& w
, symbol
- 1, MB_CUR_MAX
, & state
);
592 if (n
!= (size_t) -1 && n
!= (size_t) -2 && n
> 0)
597 if (extra_padding
&& num_printed
< width
)
599 /* Fill in the remaining spaces. */
600 printf ("%-*s", width
- num_printed
, " ");
607 /* Returns a pointer to a static buffer containing a printable version of
608 the given section's name. Like print_symbol, except that it does not try
609 to print multibyte characters, it just interprets them as hex values. */
612 printable_section_name (Filedata
* filedata
, const Elf_Internal_Shdr
* sec
)
614 #define MAX_PRINT_SEC_NAME_LEN 128
615 static char sec_name_buf
[MAX_PRINT_SEC_NAME_LEN
+ 1];
616 const char * name
= SECTION_NAME (sec
);
617 char * buf
= sec_name_buf
;
619 unsigned int remaining
= MAX_PRINT_SEC_NAME_LEN
;
621 while ((c
= * name
++) != 0)
632 else if (ISPRINT (c
))
639 static char hex
[17] = "0123456789ABCDEF";
644 * buf
++ = hex
[(c
& 0xf0) >> 4];
645 * buf
++ = hex
[c
& 0x0f];
659 printable_section_name_from_index (Filedata
* filedata
, unsigned long ndx
)
661 if (ndx
>= filedata
->file_header
.e_shnum
)
662 return _("<corrupt>");
664 return printable_section_name (filedata
, filedata
->section_headers
+ ndx
);
667 /* Return a pointer to section NAME, or NULL if no such section exists. */
669 static Elf_Internal_Shdr
*
670 find_section (Filedata
* filedata
, const char * name
)
674 if (filedata
->section_headers
== NULL
)
677 for (i
= 0; i
< filedata
->file_header
.e_shnum
; i
++)
678 if (streq (SECTION_NAME (filedata
->section_headers
+ i
), name
))
679 return filedata
->section_headers
+ i
;
684 /* Return a pointer to a section containing ADDR, or NULL if no such
687 static Elf_Internal_Shdr
*
688 find_section_by_address (Filedata
* filedata
, bfd_vma addr
)
692 if (filedata
->section_headers
== NULL
)
695 for (i
= 0; i
< filedata
->file_header
.e_shnum
; i
++)
697 Elf_Internal_Shdr
*sec
= filedata
->section_headers
+ i
;
699 if (addr
>= sec
->sh_addr
&& addr
< sec
->sh_addr
+ sec
->sh_size
)
706 static Elf_Internal_Shdr
*
707 find_section_by_type (Filedata
* filedata
, unsigned int type
)
711 if (filedata
->section_headers
== NULL
)
714 for (i
= 0; i
< filedata
->file_header
.e_shnum
; i
++)
716 Elf_Internal_Shdr
*sec
= filedata
->section_headers
+ i
;
718 if (sec
->sh_type
== type
)
725 /* Return a pointer to section NAME, or NULL if no such section exists,
726 restricted to the list of sections given in SET. */
728 static Elf_Internal_Shdr
*
729 find_section_in_set (Filedata
* filedata
, const char * name
, unsigned int * set
)
733 if (filedata
->section_headers
== NULL
)
738 while ((i
= *set
++) > 0)
740 /* See PR 21156 for a reproducer. */
741 if (i
>= filedata
->file_header
.e_shnum
)
742 continue; /* FIXME: Should we issue an error message ? */
744 if (streq (SECTION_NAME (filedata
->section_headers
+ i
), name
))
745 return filedata
->section_headers
+ i
;
749 return find_section (filedata
, name
);
752 /* Return TRUE if the current file is for IA-64 machine and OpenVMS ABI.
753 This OS has so many departures from the ELF standard that we test it at
756 static inline bfd_boolean
757 is_ia64_vms (Filedata
* filedata
)
759 return filedata
->file_header
.e_machine
== EM_IA_64
760 && filedata
->file_header
.e_ident
[EI_OSABI
] == ELFOSABI_OPENVMS
;
763 /* Guess the relocation size commonly used by the specific machines. */
766 guess_is_rela (unsigned int e_machine
)
770 /* Targets that use REL relocations. */
787 /* Targets that use RELA relocations. */
791 case EM_ADAPTEVA_EPIPHANY
:
793 case EM_ALTERA_NIOS2
:
796 case EM_ARC_COMPACT2
:
817 case EM_LATTICEMICO32
:
826 case EM_CYGNUS_MN10200
:
828 case EM_CYGNUS_MN10300
:
864 case EM_MICROBLAZE_OLD
:
886 warn (_("Don't know about relocations on this machine architecture\n"));
891 /* Load RELA type relocations from FILEDATA at REL_OFFSET extending for REL_SIZE bytes.
892 Returns TRUE upon success, FALSE otherwise. If successful then a
893 pointer to a malloc'ed buffer containing the relocs is placed in *RELASP,
894 and the number of relocs loaded is placed in *NRELASP. It is the caller's
895 responsibility to free the allocated buffer. */
898 slurp_rela_relocs (Filedata
* filedata
,
899 unsigned long rel_offset
,
900 unsigned long rel_size
,
901 Elf_Internal_Rela
** relasp
,
902 unsigned long * nrelasp
)
904 Elf_Internal_Rela
* relas
;
910 Elf32_External_Rela
* erelas
;
912 erelas
= (Elf32_External_Rela
*) get_data (NULL
, filedata
, rel_offset
, 1,
913 rel_size
, _("32-bit relocation data"));
917 nrelas
= rel_size
/ sizeof (Elf32_External_Rela
);
919 relas
= (Elf_Internal_Rela
*) cmalloc (nrelas
,
920 sizeof (Elf_Internal_Rela
));
925 error (_("out of memory parsing relocs\n"));
929 for (i
= 0; i
< nrelas
; i
++)
931 relas
[i
].r_offset
= BYTE_GET (erelas
[i
].r_offset
);
932 relas
[i
].r_info
= BYTE_GET (erelas
[i
].r_info
);
933 relas
[i
].r_addend
= BYTE_GET_SIGNED (erelas
[i
].r_addend
);
940 Elf64_External_Rela
* erelas
;
942 erelas
= (Elf64_External_Rela
*) get_data (NULL
, filedata
, rel_offset
, 1,
943 rel_size
, _("64-bit relocation data"));
947 nrelas
= rel_size
/ sizeof (Elf64_External_Rela
);
949 relas
= (Elf_Internal_Rela
*) cmalloc (nrelas
,
950 sizeof (Elf_Internal_Rela
));
955 error (_("out of memory parsing relocs\n"));
959 for (i
= 0; i
< nrelas
; i
++)
961 relas
[i
].r_offset
= BYTE_GET (erelas
[i
].r_offset
);
962 relas
[i
].r_info
= BYTE_GET (erelas
[i
].r_info
);
963 relas
[i
].r_addend
= BYTE_GET_SIGNED (erelas
[i
].r_addend
);
965 /* The #ifdef BFD64 below is to prevent a compile time
966 warning. We know that if we do not have a 64 bit data
967 type that we will never execute this code anyway. */
969 if (filedata
->file_header
.e_machine
== EM_MIPS
970 && filedata
->file_header
.e_ident
[EI_DATA
] != ELFDATA2MSB
)
972 /* In little-endian objects, r_info isn't really a
973 64-bit little-endian value: it has a 32-bit
974 little-endian symbol index followed by four
975 individual byte fields. Reorder INFO
977 bfd_vma inf
= relas
[i
].r_info
;
978 inf
= (((inf
& 0xffffffff) << 32)
979 | ((inf
>> 56) & 0xff)
980 | ((inf
>> 40) & 0xff00)
981 | ((inf
>> 24) & 0xff0000)
982 | ((inf
>> 8) & 0xff000000));
983 relas
[i
].r_info
= inf
;
996 /* Load REL type relocations from FILEDATA at REL_OFFSET extending for REL_SIZE bytes.
997 Returns TRUE upon success, FALSE otherwise. If successful then a
998 pointer to a malloc'ed buffer containing the relocs is placed in *RELSP,
999 and the number of relocs loaded is placed in *NRELSP. It is the caller's
1000 responsibility to free the allocated buffer. */
1003 slurp_rel_relocs (Filedata
* filedata
,
1004 unsigned long rel_offset
,
1005 unsigned long rel_size
,
1006 Elf_Internal_Rela
** relsp
,
1007 unsigned long * nrelsp
)
1009 Elf_Internal_Rela
* rels
;
1015 Elf32_External_Rel
* erels
;
1017 erels
= (Elf32_External_Rel
*) get_data (NULL
, filedata
, rel_offset
, 1,
1018 rel_size
, _("32-bit relocation data"));
1022 nrels
= rel_size
/ sizeof (Elf32_External_Rel
);
1024 rels
= (Elf_Internal_Rela
*) cmalloc (nrels
, sizeof (Elf_Internal_Rela
));
1029 error (_("out of memory parsing relocs\n"));
1033 for (i
= 0; i
< nrels
; i
++)
1035 rels
[i
].r_offset
= BYTE_GET (erels
[i
].r_offset
);
1036 rels
[i
].r_info
= BYTE_GET (erels
[i
].r_info
);
1037 rels
[i
].r_addend
= 0;
1044 Elf64_External_Rel
* erels
;
1046 erels
= (Elf64_External_Rel
*) get_data (NULL
, filedata
, rel_offset
, 1,
1047 rel_size
, _("64-bit relocation data"));
1051 nrels
= rel_size
/ sizeof (Elf64_External_Rel
);
1053 rels
= (Elf_Internal_Rela
*) cmalloc (nrels
, sizeof (Elf_Internal_Rela
));
1058 error (_("out of memory parsing relocs\n"));
1062 for (i
= 0; i
< nrels
; i
++)
1064 rels
[i
].r_offset
= BYTE_GET (erels
[i
].r_offset
);
1065 rels
[i
].r_info
= BYTE_GET (erels
[i
].r_info
);
1066 rels
[i
].r_addend
= 0;
1068 /* The #ifdef BFD64 below is to prevent a compile time
1069 warning. We know that if we do not have a 64 bit data
1070 type that we will never execute this code anyway. */
1072 if (filedata
->file_header
.e_machine
== EM_MIPS
1073 && filedata
->file_header
.e_ident
[EI_DATA
] != ELFDATA2MSB
)
1075 /* In little-endian objects, r_info isn't really a
1076 64-bit little-endian value: it has a 32-bit
1077 little-endian symbol index followed by four
1078 individual byte fields. Reorder INFO
1080 bfd_vma inf
= rels
[i
].r_info
;
1081 inf
= (((inf
& 0xffffffff) << 32)
1082 | ((inf
>> 56) & 0xff)
1083 | ((inf
>> 40) & 0xff00)
1084 | ((inf
>> 24) & 0xff0000)
1085 | ((inf
>> 8) & 0xff000000));
1086 rels
[i
].r_info
= inf
;
1099 /* Returns the reloc type extracted from the reloc info field. */
1102 get_reloc_type (Filedata
* filedata
, bfd_vma reloc_info
)
1105 return ELF32_R_TYPE (reloc_info
);
1107 switch (filedata
->file_header
.e_machine
)
1110 /* Note: We assume that reloc_info has already been adjusted for us. */
1111 return ELF64_MIPS_R_TYPE (reloc_info
);
1114 return ELF64_R_TYPE_ID (reloc_info
);
1117 return ELF64_R_TYPE (reloc_info
);
1121 /* Return the symbol index extracted from the reloc info field. */
1124 get_reloc_symindex (bfd_vma reloc_info
)
1126 return is_32bit_elf
? ELF32_R_SYM (reloc_info
) : ELF64_R_SYM (reloc_info
);
1129 static inline bfd_boolean
1130 uses_msp430x_relocs (Filedata
* filedata
)
1133 filedata
->file_header
.e_machine
== EM_MSP430
/* Paranoia. */
1134 /* GCC uses osabi == ELFOSBI_STANDALONE. */
1135 && (((filedata
->file_header
.e_flags
& EF_MSP430_MACH
) == E_MSP430_MACH_MSP430X
)
1136 /* TI compiler uses ELFOSABI_NONE. */
1137 || (filedata
->file_header
.e_ident
[EI_OSABI
] == ELFOSABI_NONE
));
1140 /* Display the contents of the relocation data found at the specified
1144 dump_relocations (Filedata
* filedata
,
1145 unsigned long rel_offset
,
1146 unsigned long rel_size
,
1147 Elf_Internal_Sym
* symtab
,
1148 unsigned long nsyms
,
1150 unsigned long strtablen
,
1152 bfd_boolean is_dynsym
)
1155 Elf_Internal_Rela
* rels
;
1156 bfd_boolean res
= TRUE
;
1158 if (is_rela
== UNKNOWN
)
1159 is_rela
= guess_is_rela (filedata
->file_header
.e_machine
);
1163 if (!slurp_rela_relocs (filedata
, rel_offset
, rel_size
, &rels
, &rel_size
))
1168 if (!slurp_rel_relocs (filedata
, rel_offset
, rel_size
, &rels
, &rel_size
))
1177 printf (_(" Offset Info Type Sym. Value Symbol's Name + Addend\n"));
1179 printf (_(" Offset Info Type Sym.Value Sym. Name + Addend\n"));
1184 printf (_(" Offset Info Type Sym. Value Symbol's Name\n"));
1186 printf (_(" Offset Info Type Sym.Value Sym. Name\n"));
1194 printf (_(" Offset Info Type Symbol's Value Symbol's Name + Addend\n"));
1196 printf (_(" Offset Info Type Sym. Value Sym. Name + Addend\n"));
1201 printf (_(" Offset Info Type Symbol's Value Symbol's Name\n"));
1203 printf (_(" Offset Info Type Sym. Value Sym. Name\n"));
1207 for (i
= 0; i
< rel_size
; i
++)
1212 bfd_vma symtab_index
;
1215 offset
= rels
[i
].r_offset
;
1216 inf
= rels
[i
].r_info
;
1218 type
= get_reloc_type (filedata
, inf
);
1219 symtab_index
= get_reloc_symindex (inf
);
1223 printf ("%8.8lx %8.8lx ",
1224 (unsigned long) offset
& 0xffffffff,
1225 (unsigned long) inf
& 0xffffffff);
1229 #if BFD_HOST_64BIT_LONG
1231 ? "%16.16lx %16.16lx "
1232 : "%12.12lx %12.12lx ",
1234 #elif BFD_HOST_64BIT_LONG_LONG
1237 ? "%16.16llx %16.16llx "
1238 : "%12.12llx %12.12llx ",
1242 ? "%16.16I64x %16.16I64x "
1243 : "%12.12I64x %12.12I64x ",
1248 ? "%8.8lx%8.8lx %8.8lx%8.8lx "
1249 : "%4.4lx%8.8lx %4.4lx%8.8lx ",
1250 _bfd_int64_high (offset
),
1251 _bfd_int64_low (offset
),
1252 _bfd_int64_high (inf
),
1253 _bfd_int64_low (inf
));
1257 switch (filedata
->file_header
.e_machine
)
1264 rtype
= elf_aarch64_reloc_type (type
);
1268 case EM_CYGNUS_M32R
:
1269 rtype
= elf_m32r_reloc_type (type
);
1274 rtype
= elf_i386_reloc_type (type
);
1279 rtype
= elf_m68hc11_reloc_type (type
);
1283 rtype
= elf_s12z_reloc_type (type
);
1287 rtype
= elf_m68k_reloc_type (type
);
1291 rtype
= elf_i960_reloc_type (type
);
1296 rtype
= elf_avr_reloc_type (type
);
1299 case EM_OLD_SPARCV9
:
1300 case EM_SPARC32PLUS
:
1303 rtype
= elf_sparc_reloc_type (type
);
1307 rtype
= elf_spu_reloc_type (type
);
1311 rtype
= v800_reloc_type (type
);
1314 case EM_CYGNUS_V850
:
1315 rtype
= v850_reloc_type (type
);
1319 case EM_CYGNUS_D10V
:
1320 rtype
= elf_d10v_reloc_type (type
);
1324 case EM_CYGNUS_D30V
:
1325 rtype
= elf_d30v_reloc_type (type
);
1329 rtype
= elf_dlx_reloc_type (type
);
1333 rtype
= elf_sh_reloc_type (type
);
1337 case EM_CYGNUS_MN10300
:
1338 rtype
= elf_mn10300_reloc_type (type
);
1342 case EM_CYGNUS_MN10200
:
1343 rtype
= elf_mn10200_reloc_type (type
);
1347 case EM_CYGNUS_FR30
:
1348 rtype
= elf_fr30_reloc_type (type
);
1352 rtype
= elf_frv_reloc_type (type
);
1356 rtype
= elf_csky_reloc_type (type
);
1360 rtype
= elf_ft32_reloc_type (type
);
1364 rtype
= elf_mcore_reloc_type (type
);
1368 rtype
= elf_mmix_reloc_type (type
);
1372 rtype
= elf_moxie_reloc_type (type
);
1376 if (uses_msp430x_relocs (filedata
))
1378 rtype
= elf_msp430x_reloc_type (type
);
1383 rtype
= elf_msp430_reloc_type (type
);
1387 rtype
= elf_nds32_reloc_type (type
);
1391 rtype
= elf_ppc_reloc_type (type
);
1395 rtype
= elf_ppc64_reloc_type (type
);
1399 case EM_MIPS_RS3_LE
:
1400 rtype
= elf_mips_reloc_type (type
);
1404 rtype
= elf_riscv_reloc_type (type
);
1408 rtype
= elf_alpha_reloc_type (type
);
1412 rtype
= elf_arm_reloc_type (type
);
1416 case EM_ARC_COMPACT
:
1417 case EM_ARC_COMPACT2
:
1418 rtype
= elf_arc_reloc_type (type
);
1422 rtype
= elf_hppa_reloc_type (type
);
1428 rtype
= elf_h8_reloc_type (type
);
1432 rtype
= elf_or1k_reloc_type (type
);
1437 rtype
= elf_pj_reloc_type (type
);
1440 rtype
= elf_ia64_reloc_type (type
);
1444 rtype
= elf_cris_reloc_type (type
);
1448 rtype
= elf_i860_reloc_type (type
);
1454 rtype
= elf_x86_64_reloc_type (type
);
1458 rtype
= i370_reloc_type (type
);
1463 rtype
= elf_s390_reloc_type (type
);
1467 rtype
= elf_score_reloc_type (type
);
1471 rtype
= elf_xstormy16_reloc_type (type
);
1475 rtype
= elf_crx_reloc_type (type
);
1479 rtype
= elf_vax_reloc_type (type
);
1483 rtype
= elf_visium_reloc_type (type
);
1487 rtype
= elf_bpf_reloc_type (type
);
1490 case EM_ADAPTEVA_EPIPHANY
:
1491 rtype
= elf_epiphany_reloc_type (type
);
1496 rtype
= elf_ip2k_reloc_type (type
);
1500 rtype
= elf_iq2000_reloc_type (type
);
1505 rtype
= elf_xtensa_reloc_type (type
);
1508 case EM_LATTICEMICO32
:
1509 rtype
= elf_lm32_reloc_type (type
);
1514 rtype
= elf_m32c_reloc_type (type
);
1518 rtype
= elf_mt_reloc_type (type
);
1522 rtype
= elf_bfin_reloc_type (type
);
1526 rtype
= elf_mep_reloc_type (type
);
1530 rtype
= elf_cr16_reloc_type (type
);
1534 case EM_MICROBLAZE_OLD
:
1535 rtype
= elf_microblaze_reloc_type (type
);
1539 rtype
= elf_rl78_reloc_type (type
);
1543 rtype
= elf_rx_reloc_type (type
);
1547 rtype
= elf_metag_reloc_type (type
);
1552 rtype
= elf_xc16x_reloc_type (type
);
1556 rtype
= elf_tic6x_reloc_type (type
);
1560 rtype
= elf_tilegx_reloc_type (type
);
1564 rtype
= elf_tilepro_reloc_type (type
);
1567 case EM_WEBASSEMBLY
:
1568 rtype
= elf_wasm32_reloc_type (type
);
1572 rtype
= elf_xgate_reloc_type (type
);
1575 case EM_ALTERA_NIOS2
:
1576 rtype
= elf_nios2_reloc_type (type
);
1580 rtype
= elf_pru_reloc_type (type
);
1584 if (EF_NFP_MACH (filedata
->file_header
.e_flags
) == E_NFP_MACH_3200
)
1585 rtype
= elf_nfp3200_reloc_type (type
);
1587 rtype
= elf_nfp_reloc_type (type
);
1592 printf (_("unrecognized: %-7lx"), (unsigned long) type
& 0xffffffff);
1594 printf (do_wide
? "%-22s" : "%-17.17s", rtype
);
1596 if (filedata
->file_header
.e_machine
== EM_ALPHA
1598 && streq (rtype
, "R_ALPHA_LITUSE")
1601 switch (rels
[i
].r_addend
)
1603 case LITUSE_ALPHA_ADDR
: rtype
= "ADDR"; break;
1604 case LITUSE_ALPHA_BASE
: rtype
= "BASE"; break;
1605 case LITUSE_ALPHA_BYTOFF
: rtype
= "BYTOFF"; break;
1606 case LITUSE_ALPHA_JSR
: rtype
= "JSR"; break;
1607 case LITUSE_ALPHA_TLSGD
: rtype
= "TLSGD"; break;
1608 case LITUSE_ALPHA_TLSLDM
: rtype
= "TLSLDM"; break;
1609 case LITUSE_ALPHA_JSRDIRECT
: rtype
= "JSRDIRECT"; break;
1610 default: rtype
= NULL
;
1614 printf (" (%s)", rtype
);
1618 printf (_("<unknown addend: %lx>"),
1619 (unsigned long) rels
[i
].r_addend
);
1623 else if (symtab_index
)
1625 if (symtab
== NULL
|| symtab_index
>= nsyms
)
1627 error (_(" bad symbol index: %08lx in reloc"), (unsigned long) symtab_index
);
1632 Elf_Internal_Sym
* psym
;
1633 const char * version_string
;
1634 enum versioned_symbol_info sym_info
;
1635 unsigned short vna_other
;
1637 psym
= symtab
+ symtab_index
;
1640 = get_symbol_version_string (filedata
, is_dynsym
,
1649 if (ELF_ST_TYPE (psym
->st_info
) == STT_GNU_IFUNC
)
1653 unsigned int width
= is_32bit_elf
? 8 : 14;
1655 /* Relocations against GNU_IFUNC symbols do not use the value
1656 of the symbol as the address to relocate against. Instead
1657 they invoke the function named by the symbol and use its
1658 result as the address for relocation.
1660 To indicate this to the user, do not display the value of
1661 the symbol in the "Symbols's Value" field. Instead show
1662 its name followed by () as a hint that the symbol is
1666 || psym
->st_name
== 0
1667 || psym
->st_name
>= strtablen
)
1670 name
= strtab
+ psym
->st_name
;
1672 len
= print_symbol (width
, name
);
1674 printf (sym_info
== symbol_public
? "@@%s" : "@%s",
1676 printf ("()%-*s", len
<= width
? (width
+ 1) - len
: 1, " ");
1680 print_vma (psym
->st_value
, LONG_HEX
);
1682 printf (is_32bit_elf
? " " : " ");
1685 if (psym
->st_name
== 0)
1687 const char * sec_name
= "<null>";
1690 if (ELF_ST_TYPE (psym
->st_info
) == STT_SECTION
)
1692 if (psym
->st_shndx
< filedata
->file_header
.e_shnum
)
1693 sec_name
= SECTION_NAME (filedata
->section_headers
+ psym
->st_shndx
);
1694 else if (psym
->st_shndx
== SHN_ABS
)
1696 else if (psym
->st_shndx
== SHN_COMMON
)
1697 sec_name
= "COMMON";
1698 else if ((filedata
->file_header
.e_machine
== EM_MIPS
1699 && psym
->st_shndx
== SHN_MIPS_SCOMMON
)
1700 || (filedata
->file_header
.e_machine
== EM_TI_C6000
1701 && psym
->st_shndx
== SHN_TIC6X_SCOMMON
))
1702 sec_name
= "SCOMMON";
1703 else if (filedata
->file_header
.e_machine
== EM_MIPS
1704 && psym
->st_shndx
== SHN_MIPS_SUNDEFINED
)
1705 sec_name
= "SUNDEF";
1706 else if ((filedata
->file_header
.e_machine
== EM_X86_64
1707 || filedata
->file_header
.e_machine
== EM_L1OM
1708 || filedata
->file_header
.e_machine
== EM_K1OM
)
1709 && psym
->st_shndx
== SHN_X86_64_LCOMMON
)
1710 sec_name
= "LARGE_COMMON";
1711 else if (filedata
->file_header
.e_machine
== EM_IA_64
1712 && filedata
->file_header
.e_ident
[EI_OSABI
] == ELFOSABI_HPUX
1713 && psym
->st_shndx
== SHN_IA_64_ANSI_COMMON
)
1714 sec_name
= "ANSI_COM";
1715 else if (is_ia64_vms (filedata
)
1716 && psym
->st_shndx
== SHN_IA_64_VMS_SYMVEC
)
1717 sec_name
= "VMS_SYMVEC";
1720 sprintf (name_buf
, "<section 0x%x>",
1721 (unsigned int) psym
->st_shndx
);
1722 sec_name
= name_buf
;
1725 print_symbol (22, sec_name
);
1727 else if (strtab
== NULL
)
1728 printf (_("<string table index: %3ld>"), psym
->st_name
);
1729 else if (psym
->st_name
>= strtablen
)
1731 error (_("<corrupt string table index: %3ld>"), psym
->st_name
);
1736 print_symbol (22, strtab
+ psym
->st_name
);
1738 printf (sym_info
== symbol_public
? "@@%s" : "@%s",
1744 bfd_vma off
= rels
[i
].r_addend
;
1746 if ((bfd_signed_vma
) off
< 0)
1747 printf (" - %" BFD_VMA_FMT
"x", - off
);
1749 printf (" + %" BFD_VMA_FMT
"x", off
);
1755 bfd_vma off
= rels
[i
].r_addend
;
1757 printf ("%*c", is_32bit_elf
? 12 : 20, ' ');
1758 if ((bfd_signed_vma
) off
< 0)
1759 printf ("-%" BFD_VMA_FMT
"x", - off
);
1761 printf ("%" BFD_VMA_FMT
"x", off
);
1764 if (filedata
->file_header
.e_machine
== EM_SPARCV9
1766 && streq (rtype
, "R_SPARC_OLO10"))
1767 printf (" + %lx", (unsigned long) ELF64_R_TYPE_DATA (inf
));
1772 if (! is_32bit_elf
&& filedata
->file_header
.e_machine
== EM_MIPS
)
1774 bfd_vma type2
= ELF64_MIPS_R_TYPE2 (inf
);
1775 bfd_vma type3
= ELF64_MIPS_R_TYPE3 (inf
);
1776 const char * rtype2
= elf_mips_reloc_type (type2
);
1777 const char * rtype3
= elf_mips_reloc_type (type3
);
1779 printf (" Type2: ");
1782 printf (_("unrecognized: %-7lx"),
1783 (unsigned long) type2
& 0xffffffff);
1785 printf ("%-17.17s", rtype2
);
1787 printf ("\n Type3: ");
1790 printf (_("unrecognized: %-7lx"),
1791 (unsigned long) type3
& 0xffffffff);
1793 printf ("%-17.17s", rtype3
);
1806 get_aarch64_dynamic_type (unsigned long type
)
1810 case DT_AARCH64_BTI_PLT
: return "AARCH64_BTI_PLT";
1811 case DT_AARCH64_PAC_PLT
: return "AARCH64_PAC_PLT";
1812 case DT_AARCH64_VARIANT_PCS
: return "AARCH64_VARIANT_PCS";
1819 get_mips_dynamic_type (unsigned long type
)
1823 case DT_MIPS_RLD_VERSION
: return "MIPS_RLD_VERSION";
1824 case DT_MIPS_TIME_STAMP
: return "MIPS_TIME_STAMP";
1825 case DT_MIPS_ICHECKSUM
: return "MIPS_ICHECKSUM";
1826 case DT_MIPS_IVERSION
: return "MIPS_IVERSION";
1827 case DT_MIPS_FLAGS
: return "MIPS_FLAGS";
1828 case DT_MIPS_BASE_ADDRESS
: return "MIPS_BASE_ADDRESS";
1829 case DT_MIPS_MSYM
: return "MIPS_MSYM";
1830 case DT_MIPS_CONFLICT
: return "MIPS_CONFLICT";
1831 case DT_MIPS_LIBLIST
: return "MIPS_LIBLIST";
1832 case DT_MIPS_LOCAL_GOTNO
: return "MIPS_LOCAL_GOTNO";
1833 case DT_MIPS_CONFLICTNO
: return "MIPS_CONFLICTNO";
1834 case DT_MIPS_LIBLISTNO
: return "MIPS_LIBLISTNO";
1835 case DT_MIPS_SYMTABNO
: return "MIPS_SYMTABNO";
1836 case DT_MIPS_UNREFEXTNO
: return "MIPS_UNREFEXTNO";
1837 case DT_MIPS_GOTSYM
: return "MIPS_GOTSYM";
1838 case DT_MIPS_HIPAGENO
: return "MIPS_HIPAGENO";
1839 case DT_MIPS_RLD_MAP
: return "MIPS_RLD_MAP";
1840 case DT_MIPS_RLD_MAP_REL
: return "MIPS_RLD_MAP_REL";
1841 case DT_MIPS_DELTA_CLASS
: return "MIPS_DELTA_CLASS";
1842 case DT_MIPS_DELTA_CLASS_NO
: return "MIPS_DELTA_CLASS_NO";
1843 case DT_MIPS_DELTA_INSTANCE
: return "MIPS_DELTA_INSTANCE";
1844 case DT_MIPS_DELTA_INSTANCE_NO
: return "MIPS_DELTA_INSTANCE_NO";
1845 case DT_MIPS_DELTA_RELOC
: return "MIPS_DELTA_RELOC";
1846 case DT_MIPS_DELTA_RELOC_NO
: return "MIPS_DELTA_RELOC_NO";
1847 case DT_MIPS_DELTA_SYM
: return "MIPS_DELTA_SYM";
1848 case DT_MIPS_DELTA_SYM_NO
: return "MIPS_DELTA_SYM_NO";
1849 case DT_MIPS_DELTA_CLASSSYM
: return "MIPS_DELTA_CLASSSYM";
1850 case DT_MIPS_DELTA_CLASSSYM_NO
: return "MIPS_DELTA_CLASSSYM_NO";
1851 case DT_MIPS_CXX_FLAGS
: return "MIPS_CXX_FLAGS";
1852 case DT_MIPS_PIXIE_INIT
: return "MIPS_PIXIE_INIT";
1853 case DT_MIPS_SYMBOL_LIB
: return "MIPS_SYMBOL_LIB";
1854 case DT_MIPS_LOCALPAGE_GOTIDX
: return "MIPS_LOCALPAGE_GOTIDX";
1855 case DT_MIPS_LOCAL_GOTIDX
: return "MIPS_LOCAL_GOTIDX";
1856 case DT_MIPS_HIDDEN_GOTIDX
: return "MIPS_HIDDEN_GOTIDX";
1857 case DT_MIPS_PROTECTED_GOTIDX
: return "MIPS_PROTECTED_GOTIDX";
1858 case DT_MIPS_OPTIONS
: return "MIPS_OPTIONS";
1859 case DT_MIPS_INTERFACE
: return "MIPS_INTERFACE";
1860 case DT_MIPS_DYNSTR_ALIGN
: return "MIPS_DYNSTR_ALIGN";
1861 case DT_MIPS_INTERFACE_SIZE
: return "MIPS_INTERFACE_SIZE";
1862 case DT_MIPS_RLD_TEXT_RESOLVE_ADDR
: return "MIPS_RLD_TEXT_RESOLVE_ADDR";
1863 case DT_MIPS_PERF_SUFFIX
: return "MIPS_PERF_SUFFIX";
1864 case DT_MIPS_COMPACT_SIZE
: return "MIPS_COMPACT_SIZE";
1865 case DT_MIPS_GP_VALUE
: return "MIPS_GP_VALUE";
1866 case DT_MIPS_AUX_DYNAMIC
: return "MIPS_AUX_DYNAMIC";
1867 case DT_MIPS_PLTGOT
: return "MIPS_PLTGOT";
1868 case DT_MIPS_RWPLT
: return "MIPS_RWPLT";
1869 case DT_MIPS_XHASH
: return "MIPS_XHASH";
1876 get_sparc64_dynamic_type (unsigned long type
)
1880 case DT_SPARC_REGISTER
: return "SPARC_REGISTER";
1887 get_ppc_dynamic_type (unsigned long type
)
1891 case DT_PPC_GOT
: return "PPC_GOT";
1892 case DT_PPC_OPT
: return "PPC_OPT";
1899 get_ppc64_dynamic_type (unsigned long type
)
1903 case DT_PPC64_GLINK
: return "PPC64_GLINK";
1904 case DT_PPC64_OPD
: return "PPC64_OPD";
1905 case DT_PPC64_OPDSZ
: return "PPC64_OPDSZ";
1906 case DT_PPC64_OPT
: return "PPC64_OPT";
1913 get_parisc_dynamic_type (unsigned long type
)
1917 case DT_HP_LOAD_MAP
: return "HP_LOAD_MAP";
1918 case DT_HP_DLD_FLAGS
: return "HP_DLD_FLAGS";
1919 case DT_HP_DLD_HOOK
: return "HP_DLD_HOOK";
1920 case DT_HP_UX10_INIT
: return "HP_UX10_INIT";
1921 case DT_HP_UX10_INITSZ
: return "HP_UX10_INITSZ";
1922 case DT_HP_PREINIT
: return "HP_PREINIT";
1923 case DT_HP_PREINITSZ
: return "HP_PREINITSZ";
1924 case DT_HP_NEEDED
: return "HP_NEEDED";
1925 case DT_HP_TIME_STAMP
: return "HP_TIME_STAMP";
1926 case DT_HP_CHECKSUM
: return "HP_CHECKSUM";
1927 case DT_HP_GST_SIZE
: return "HP_GST_SIZE";
1928 case DT_HP_GST_VERSION
: return "HP_GST_VERSION";
1929 case DT_HP_GST_HASHVAL
: return "HP_GST_HASHVAL";
1930 case DT_HP_EPLTREL
: return "HP_GST_EPLTREL";
1931 case DT_HP_EPLTRELSZ
: return "HP_GST_EPLTRELSZ";
1932 case DT_HP_FILTERED
: return "HP_FILTERED";
1933 case DT_HP_FILTER_TLS
: return "HP_FILTER_TLS";
1934 case DT_HP_COMPAT_FILTERED
: return "HP_COMPAT_FILTERED";
1935 case DT_HP_LAZYLOAD
: return "HP_LAZYLOAD";
1936 case DT_HP_BIND_NOW_COUNT
: return "HP_BIND_NOW_COUNT";
1937 case DT_PLT
: return "PLT";
1938 case DT_PLT_SIZE
: return "PLT_SIZE";
1939 case DT_DLT
: return "DLT";
1940 case DT_DLT_SIZE
: return "DLT_SIZE";
1947 get_ia64_dynamic_type (unsigned long type
)
1951 case DT_IA_64_PLT_RESERVE
: return "IA_64_PLT_RESERVE";
1952 case DT_IA_64_VMS_SUBTYPE
: return "VMS_SUBTYPE";
1953 case DT_IA_64_VMS_IMGIOCNT
: return "VMS_IMGIOCNT";
1954 case DT_IA_64_VMS_LNKFLAGS
: return "VMS_LNKFLAGS";
1955 case DT_IA_64_VMS_VIR_MEM_BLK_SIZ
: return "VMS_VIR_MEM_BLK_SIZ";
1956 case DT_IA_64_VMS_IDENT
: return "VMS_IDENT";
1957 case DT_IA_64_VMS_NEEDED_IDENT
: return "VMS_NEEDED_IDENT";
1958 case DT_IA_64_VMS_IMG_RELA_CNT
: return "VMS_IMG_RELA_CNT";
1959 case DT_IA_64_VMS_SEG_RELA_CNT
: return "VMS_SEG_RELA_CNT";
1960 case DT_IA_64_VMS_FIXUP_RELA_CNT
: return "VMS_FIXUP_RELA_CNT";
1961 case DT_IA_64_VMS_FIXUP_NEEDED
: return "VMS_FIXUP_NEEDED";
1962 case DT_IA_64_VMS_SYMVEC_CNT
: return "VMS_SYMVEC_CNT";
1963 case DT_IA_64_VMS_XLATED
: return "VMS_XLATED";
1964 case DT_IA_64_VMS_STACKSIZE
: return "VMS_STACKSIZE";
1965 case DT_IA_64_VMS_UNWINDSZ
: return "VMS_UNWINDSZ";
1966 case DT_IA_64_VMS_UNWIND_CODSEG
: return "VMS_UNWIND_CODSEG";
1967 case DT_IA_64_VMS_UNWIND_INFOSEG
: return "VMS_UNWIND_INFOSEG";
1968 case DT_IA_64_VMS_LINKTIME
: return "VMS_LINKTIME";
1969 case DT_IA_64_VMS_SEG_NO
: return "VMS_SEG_NO";
1970 case DT_IA_64_VMS_SYMVEC_OFFSET
: return "VMS_SYMVEC_OFFSET";
1971 case DT_IA_64_VMS_SYMVEC_SEG
: return "VMS_SYMVEC_SEG";
1972 case DT_IA_64_VMS_UNWIND_OFFSET
: return "VMS_UNWIND_OFFSET";
1973 case DT_IA_64_VMS_UNWIND_SEG
: return "VMS_UNWIND_SEG";
1974 case DT_IA_64_VMS_STRTAB_OFFSET
: return "VMS_STRTAB_OFFSET";
1975 case DT_IA_64_VMS_SYSVER_OFFSET
: return "VMS_SYSVER_OFFSET";
1976 case DT_IA_64_VMS_IMG_RELA_OFF
: return "VMS_IMG_RELA_OFF";
1977 case DT_IA_64_VMS_SEG_RELA_OFF
: return "VMS_SEG_RELA_OFF";
1978 case DT_IA_64_VMS_FIXUP_RELA_OFF
: return "VMS_FIXUP_RELA_OFF";
1979 case DT_IA_64_VMS_PLTGOT_OFFSET
: return "VMS_PLTGOT_OFFSET";
1980 case DT_IA_64_VMS_PLTGOT_SEG
: return "VMS_PLTGOT_SEG";
1981 case DT_IA_64_VMS_FPMODE
: return "VMS_FPMODE";
1988 get_solaris_section_type (unsigned long type
)
1992 case 0x6fffffee: return "SUNW_ancillary";
1993 case 0x6fffffef: return "SUNW_capchain";
1994 case 0x6ffffff0: return "SUNW_capinfo";
1995 case 0x6ffffff1: return "SUNW_symsort";
1996 case 0x6ffffff2: return "SUNW_tlssort";
1997 case 0x6ffffff3: return "SUNW_LDYNSYM";
1998 case 0x6ffffff4: return "SUNW_dof";
1999 case 0x6ffffff5: return "SUNW_cap";
2000 case 0x6ffffff6: return "SUNW_SIGNATURE";
2001 case 0x6ffffff7: return "SUNW_ANNOTATE";
2002 case 0x6ffffff8: return "SUNW_DEBUGSTR";
2003 case 0x6ffffff9: return "SUNW_DEBUG";
2004 case 0x6ffffffa: return "SUNW_move";
2005 case 0x6ffffffb: return "SUNW_COMDAT";
2006 case 0x6ffffffc: return "SUNW_syminfo";
2007 case 0x6ffffffd: return "SUNW_verdef";
2008 case 0x6ffffffe: return "SUNW_verneed";
2009 case 0x6fffffff: return "SUNW_versym";
2010 case 0x70000000: return "SPARC_GOTDATA";
2011 default: return NULL
;
2016 get_alpha_dynamic_type (unsigned long type
)
2020 case DT_ALPHA_PLTRO
: return "ALPHA_PLTRO";
2021 default: return NULL
;
2026 get_score_dynamic_type (unsigned long type
)
2030 case DT_SCORE_BASE_ADDRESS
: return "SCORE_BASE_ADDRESS";
2031 case DT_SCORE_LOCAL_GOTNO
: return "SCORE_LOCAL_GOTNO";
2032 case DT_SCORE_SYMTABNO
: return "SCORE_SYMTABNO";
2033 case DT_SCORE_GOTSYM
: return "SCORE_GOTSYM";
2034 case DT_SCORE_UNREFEXTNO
: return "SCORE_UNREFEXTNO";
2035 case DT_SCORE_HIPAGENO
: return "SCORE_HIPAGENO";
2036 default: return NULL
;
2041 get_tic6x_dynamic_type (unsigned long type
)
2045 case DT_C6000_GSYM_OFFSET
: return "C6000_GSYM_OFFSET";
2046 case DT_C6000_GSTR_OFFSET
: return "C6000_GSTR_OFFSET";
2047 case DT_C6000_DSBT_BASE
: return "C6000_DSBT_BASE";
2048 case DT_C6000_DSBT_SIZE
: return "C6000_DSBT_SIZE";
2049 case DT_C6000_PREEMPTMAP
: return "C6000_PREEMPTMAP";
2050 case DT_C6000_DSBT_INDEX
: return "C6000_DSBT_INDEX";
2051 default: return NULL
;
2056 get_nios2_dynamic_type (unsigned long type
)
2060 case DT_NIOS2_GP
: return "NIOS2_GP";
2061 default: return NULL
;
2066 get_solaris_dynamic_type (unsigned long type
)
2070 case 0x6000000d: return "SUNW_AUXILIARY";
2071 case 0x6000000e: return "SUNW_RTLDINF";
2072 case 0x6000000f: return "SUNW_FILTER";
2073 case 0x60000010: return "SUNW_CAP";
2074 case 0x60000011: return "SUNW_SYMTAB";
2075 case 0x60000012: return "SUNW_SYMSZ";
2076 case 0x60000013: return "SUNW_SORTENT";
2077 case 0x60000014: return "SUNW_SYMSORT";
2078 case 0x60000015: return "SUNW_SYMSORTSZ";
2079 case 0x60000016: return "SUNW_TLSSORT";
2080 case 0x60000017: return "SUNW_TLSSORTSZ";
2081 case 0x60000018: return "SUNW_CAPINFO";
2082 case 0x60000019: return "SUNW_STRPAD";
2083 case 0x6000001a: return "SUNW_CAPCHAIN";
2084 case 0x6000001b: return "SUNW_LDMACH";
2085 case 0x6000001d: return "SUNW_CAPCHAINENT";
2086 case 0x6000001f: return "SUNW_CAPCHAINSZ";
2087 case 0x60000021: return "SUNW_PARENT";
2088 case 0x60000023: return "SUNW_ASLR";
2089 case 0x60000025: return "SUNW_RELAX";
2090 case 0x60000029: return "SUNW_NXHEAP";
2091 case 0x6000002b: return "SUNW_NXSTACK";
2093 case 0x70000001: return "SPARC_REGISTER";
2094 case 0x7ffffffd: return "AUXILIARY";
2095 case 0x7ffffffe: return "USED";
2096 case 0x7fffffff: return "FILTER";
2098 default: return NULL
;
2103 get_dynamic_type (Filedata
* filedata
, unsigned long type
)
2105 static char buff
[64];
2109 case DT_NULL
: return "NULL";
2110 case DT_NEEDED
: return "NEEDED";
2111 case DT_PLTRELSZ
: return "PLTRELSZ";
2112 case DT_PLTGOT
: return "PLTGOT";
2113 case DT_HASH
: return "HASH";
2114 case DT_STRTAB
: return "STRTAB";
2115 case DT_SYMTAB
: return "SYMTAB";
2116 case DT_RELA
: return "RELA";
2117 case DT_RELASZ
: return "RELASZ";
2118 case DT_RELAENT
: return "RELAENT";
2119 case DT_STRSZ
: return "STRSZ";
2120 case DT_SYMENT
: return "SYMENT";
2121 case DT_INIT
: return "INIT";
2122 case DT_FINI
: return "FINI";
2123 case DT_SONAME
: return "SONAME";
2124 case DT_RPATH
: return "RPATH";
2125 case DT_SYMBOLIC
: return "SYMBOLIC";
2126 case DT_REL
: return "REL";
2127 case DT_RELSZ
: return "RELSZ";
2128 case DT_RELENT
: return "RELENT";
2129 case DT_PLTREL
: return "PLTREL";
2130 case DT_DEBUG
: return "DEBUG";
2131 case DT_TEXTREL
: return "TEXTREL";
2132 case DT_JMPREL
: return "JMPREL";
2133 case DT_BIND_NOW
: return "BIND_NOW";
2134 case DT_INIT_ARRAY
: return "INIT_ARRAY";
2135 case DT_FINI_ARRAY
: return "FINI_ARRAY";
2136 case DT_INIT_ARRAYSZ
: return "INIT_ARRAYSZ";
2137 case DT_FINI_ARRAYSZ
: return "FINI_ARRAYSZ";
2138 case DT_RUNPATH
: return "RUNPATH";
2139 case DT_FLAGS
: return "FLAGS";
2141 case DT_PREINIT_ARRAY
: return "PREINIT_ARRAY";
2142 case DT_PREINIT_ARRAYSZ
: return "PREINIT_ARRAYSZ";
2143 case DT_SYMTAB_SHNDX
: return "SYMTAB_SHNDX";
2145 case DT_CHECKSUM
: return "CHECKSUM";
2146 case DT_PLTPADSZ
: return "PLTPADSZ";
2147 case DT_MOVEENT
: return "MOVEENT";
2148 case DT_MOVESZ
: return "MOVESZ";
2149 case DT_FEATURE
: return "FEATURE";
2150 case DT_POSFLAG_1
: return "POSFLAG_1";
2151 case DT_SYMINSZ
: return "SYMINSZ";
2152 case DT_SYMINENT
: return "SYMINENT"; /* aka VALRNGHI */
2154 case DT_ADDRRNGLO
: return "ADDRRNGLO";
2155 case DT_CONFIG
: return "CONFIG";
2156 case DT_DEPAUDIT
: return "DEPAUDIT";
2157 case DT_AUDIT
: return "AUDIT";
2158 case DT_PLTPAD
: return "PLTPAD";
2159 case DT_MOVETAB
: return "MOVETAB";
2160 case DT_SYMINFO
: return "SYMINFO"; /* aka ADDRRNGHI */
2162 case DT_VERSYM
: return "VERSYM";
2164 case DT_TLSDESC_GOT
: return "TLSDESC_GOT";
2165 case DT_TLSDESC_PLT
: return "TLSDESC_PLT";
2166 case DT_RELACOUNT
: return "RELACOUNT";
2167 case DT_RELCOUNT
: return "RELCOUNT";
2168 case DT_FLAGS_1
: return "FLAGS_1";
2169 case DT_VERDEF
: return "VERDEF";
2170 case DT_VERDEFNUM
: return "VERDEFNUM";
2171 case DT_VERNEED
: return "VERNEED";
2172 case DT_VERNEEDNUM
: return "VERNEEDNUM";
2174 case DT_AUXILIARY
: return "AUXILIARY";
2175 case DT_USED
: return "USED";
2176 case DT_FILTER
: return "FILTER";
2178 case DT_GNU_PRELINKED
: return "GNU_PRELINKED";
2179 case DT_GNU_CONFLICT
: return "GNU_CONFLICT";
2180 case DT_GNU_CONFLICTSZ
: return "GNU_CONFLICTSZ";
2181 case DT_GNU_LIBLIST
: return "GNU_LIBLIST";
2182 case DT_GNU_LIBLISTSZ
: return "GNU_LIBLISTSZ";
2183 case DT_GNU_HASH
: return "GNU_HASH";
2186 if ((type
>= DT_LOPROC
) && (type
<= DT_HIPROC
))
2188 const char * result
;
2190 switch (filedata
->file_header
.e_machine
)
2193 result
= get_aarch64_dynamic_type (type
);
2196 case EM_MIPS_RS3_LE
:
2197 result
= get_mips_dynamic_type (type
);
2200 result
= get_sparc64_dynamic_type (type
);
2203 result
= get_ppc_dynamic_type (type
);
2206 result
= get_ppc64_dynamic_type (type
);
2209 result
= get_ia64_dynamic_type (type
);
2212 result
= get_alpha_dynamic_type (type
);
2215 result
= get_score_dynamic_type (type
);
2218 result
= get_tic6x_dynamic_type (type
);
2220 case EM_ALTERA_NIOS2
:
2221 result
= get_nios2_dynamic_type (type
);
2224 if (filedata
->file_header
.e_ident
[EI_OSABI
] == ELFOSABI_SOLARIS
)
2225 result
= get_solaris_dynamic_type (type
);
2234 snprintf (buff
, sizeof (buff
), _("Processor Specific: %lx"), type
);
2236 else if (((type
>= DT_LOOS
) && (type
<= DT_HIOS
))
2237 || (filedata
->file_header
.e_machine
== EM_PARISC
2238 && (type
>= OLD_DT_LOOS
) && (type
<= OLD_DT_HIOS
)))
2240 const char * result
;
2242 switch (filedata
->file_header
.e_machine
)
2245 result
= get_parisc_dynamic_type (type
);
2248 result
= get_ia64_dynamic_type (type
);
2251 if (filedata
->file_header
.e_ident
[EI_OSABI
] == ELFOSABI_SOLARIS
)
2252 result
= get_solaris_dynamic_type (type
);
2261 snprintf (buff
, sizeof (buff
), _("Operating System specific: %lx"),
2265 snprintf (buff
, sizeof (buff
), _("<unknown>: %lx"), type
);
2272 get_file_type (unsigned e_type
)
2274 static char buff
[32];
2278 case ET_NONE
: return _("NONE (None)");
2279 case ET_REL
: return _("REL (Relocatable file)");
2280 case ET_EXEC
: return _("EXEC (Executable file)");
2281 case ET_DYN
: return _("DYN (Shared object file)");
2282 case ET_CORE
: return _("CORE (Core file)");
2285 if ((e_type
>= ET_LOPROC
) && (e_type
<= ET_HIPROC
))
2286 snprintf (buff
, sizeof (buff
), _("Processor Specific: (%x)"), e_type
);
2287 else if ((e_type
>= ET_LOOS
) && (e_type
<= ET_HIOS
))
2288 snprintf (buff
, sizeof (buff
), _("OS Specific: (%x)"), e_type
);
2290 snprintf (buff
, sizeof (buff
), _("<unknown>: %x"), e_type
);
2296 get_machine_name (unsigned e_machine
)
2298 static char buff
[64]; /* XXX */
2302 /* Please keep this switch table sorted by increasing EM_ value. */
2304 case EM_NONE
: return _("None");
2305 case EM_M32
: return "WE32100";
2306 case EM_SPARC
: return "Sparc";
2307 case EM_386
: return "Intel 80386";
2308 case EM_68K
: return "MC68000";
2309 case EM_88K
: return "MC88000";
2310 case EM_IAMCU
: return "Intel MCU";
2311 case EM_860
: return "Intel 80860";
2312 case EM_MIPS
: return "MIPS R3000";
2313 case EM_S370
: return "IBM System/370";
2315 case EM_MIPS_RS3_LE
: return "MIPS R4000 big-endian";
2316 case EM_OLD_SPARCV9
: return "Sparc v9 (old)";
2317 case EM_PARISC
: return "HPPA";
2318 case EM_VPP550
: return "Fujitsu VPP500";
2319 case EM_SPARC32PLUS
: return "Sparc v8+" ;
2320 case EM_960
: return "Intel 80960";
2321 case EM_PPC
: return "PowerPC";
2323 case EM_PPC64
: return "PowerPC64";
2325 case EM_S390
: return "IBM S/390";
2326 case EM_SPU
: return "SPU";
2328 case EM_V800
: return "Renesas V850 (using RH850 ABI)";
2329 case EM_FR20
: return "Fujitsu FR20";
2330 case EM_RH32
: return "TRW RH32";
2331 case EM_MCORE
: return "MCORE";
2333 case EM_ARM
: return "ARM";
2334 case EM_OLD_ALPHA
: return "Digital Alpha (old)";
2335 case EM_SH
: return "Renesas / SuperH SH";
2336 case EM_SPARCV9
: return "Sparc v9";
2337 case EM_TRICORE
: return "Siemens Tricore";
2338 case EM_ARC
: return "ARC";
2339 case EM_H8_300
: return "Renesas H8/300";
2340 case EM_H8_300H
: return "Renesas H8/300H";
2341 case EM_H8S
: return "Renesas H8S";
2342 case EM_H8_500
: return "Renesas H8/500";
2344 case EM_IA_64
: return "Intel IA-64";
2345 case EM_MIPS_X
: return "Stanford MIPS-X";
2346 case EM_COLDFIRE
: return "Motorola Coldfire";
2347 case EM_68HC12
: return "Motorola MC68HC12 Microcontroller";
2348 case EM_MMA
: return "Fujitsu Multimedia Accelerator";
2349 case EM_PCP
: return "Siemens PCP";
2350 case EM_NCPU
: return "Sony nCPU embedded RISC processor";
2351 case EM_NDR1
: return "Denso NDR1 microprocesspr";
2352 case EM_STARCORE
: return "Motorola Star*Core processor";
2353 case EM_ME16
: return "Toyota ME16 processor";
2355 case EM_ST100
: return "STMicroelectronics ST100 processor";
2356 case EM_TINYJ
: return "Advanced Logic Corp. TinyJ embedded processor";
2357 case EM_X86_64
: return "Advanced Micro Devices X86-64";
2358 case EM_PDSP
: return "Sony DSP processor";
2359 case EM_PDP10
: return "Digital Equipment Corp. PDP-10";
2360 case EM_PDP11
: return "Digital Equipment Corp. PDP-11";
2361 case EM_FX66
: return "Siemens FX66 microcontroller";
2362 case EM_ST9PLUS
: return "STMicroelectronics ST9+ 8/16 bit microcontroller";
2363 case EM_ST7
: return "STMicroelectronics ST7 8-bit microcontroller";
2364 case EM_68HC16
: return "Motorola MC68HC16 Microcontroller";
2366 case EM_68HC11
: return "Motorola MC68HC11 Microcontroller";
2367 case EM_68HC08
: return "Motorola MC68HC08 Microcontroller";
2368 case EM_68HC05
: return "Motorola MC68HC05 Microcontroller";
2369 case EM_SVX
: return "Silicon Graphics SVx";
2370 case EM_ST19
: return "STMicroelectronics ST19 8-bit microcontroller";
2371 case EM_VAX
: return "Digital VAX";
2372 case EM_CRIS
: return "Axis Communications 32-bit embedded processor";
2373 case EM_JAVELIN
: return "Infineon Technologies 32-bit embedded cpu";
2374 case EM_FIREPATH
: return "Element 14 64-bit DSP processor";
2375 case EM_ZSP
: return "LSI Logic's 16-bit DSP processor";
2377 case EM_MMIX
: return "Donald Knuth's educational 64-bit processor";
2378 case EM_HUANY
: return "Harvard Universitys's machine-independent object format";
2379 case EM_PRISM
: return "Vitesse Prism";
2381 case EM_AVR
: return "Atmel AVR 8-bit microcontroller";
2382 case EM_CYGNUS_FR30
:
2383 case EM_FR30
: return "Fujitsu FR30";
2384 case EM_CYGNUS_D10V
:
2385 case EM_D10V
: return "d10v";
2386 case EM_CYGNUS_D30V
:
2387 case EM_D30V
: return "d30v";
2388 case EM_CYGNUS_V850
:
2389 case EM_V850
: return "Renesas V850";
2390 case EM_CYGNUS_M32R
:
2391 case EM_M32R
: return "Renesas M32R (formerly Mitsubishi M32r)";
2392 case EM_CYGNUS_MN10300
:
2393 case EM_MN10300
: return "mn10300";
2395 case EM_CYGNUS_MN10200
:
2396 case EM_MN10200
: return "mn10200";
2397 case EM_PJ
: return "picoJava";
2398 case EM_OR1K
: return "OpenRISC 1000";
2399 case EM_ARC_COMPACT
: return "ARCompact";
2401 case EM_XTENSA
: return "Tensilica Xtensa Processor";
2402 case EM_VIDEOCORE
: return "Alphamosaic VideoCore processor";
2403 case EM_TMM_GPP
: return "Thompson Multimedia General Purpose Processor";
2404 case EM_NS32K
: return "National Semiconductor 32000 series";
2405 case EM_TPC
: return "Tenor Network TPC processor";
2406 case EM_SNP1K
: return "Trebia SNP 1000 processor";
2408 case EM_ST200
: return "STMicroelectronics ST200 microcontroller";
2410 case EM_IP2K
: return "Ubicom IP2xxx 8-bit microcontrollers";
2411 case EM_MAX
: return "MAX Processor";
2412 case EM_CR
: return "National Semiconductor CompactRISC";
2413 case EM_F2MC16
: return "Fujitsu F2MC16";
2414 case EM_MSP430
: return "Texas Instruments msp430 microcontroller";
2415 case EM_BLACKFIN
: return "Analog Devices Blackfin";
2416 case EM_SE_C33
: return "S1C33 Family of Seiko Epson processors";
2417 case EM_SEP
: return "Sharp embedded microprocessor";
2418 case EM_ARCA
: return "Arca RISC microprocessor";
2420 case EM_UNICORE
: return "Unicore";
2421 case EM_EXCESS
: return "eXcess 16/32/64-bit configurable embedded CPU";
2422 case EM_DXP
: return "Icera Semiconductor Inc. Deep Execution Processor";
2423 case EM_ALTERA_NIOS2
: return "Altera Nios II";
2424 case EM_CRX
: return "National Semiconductor CRX microprocessor";
2425 case EM_XGATE
: return "Motorola XGATE embedded processor";
2427 case EM_XC16X
: return "Infineon Technologies xc16x";
2428 case EM_M16C
: return "Renesas M16C series microprocessors";
2429 case EM_DSPIC30F
: return "Microchip Technology dsPIC30F Digital Signal Controller";
2430 case EM_CE
: return "Freescale Communication Engine RISC core";
2432 case EM_M32C
: return "Renesas M32c";
2434 case EM_TSK3000
: return "Altium TSK3000 core";
2435 case EM_RS08
: return "Freescale RS08 embedded processor";
2436 case EM_ECOG2
: return "Cyan Technology eCOG2 microprocessor";
2437 case EM_SCORE
: return "SUNPLUS S+Core";
2438 case EM_DSP24
: return "New Japan Radio (NJR) 24-bit DSP Processor";
2439 case EM_VIDEOCORE3
: return "Broadcom VideoCore III processor";
2440 case EM_LATTICEMICO32
: return "Lattice Mico32";
2441 case EM_SE_C17
: return "Seiko Epson C17 family";
2443 case EM_TI_C6000
: return "Texas Instruments TMS320C6000 DSP family";
2444 case EM_TI_C2000
: return "Texas Instruments TMS320C2000 DSP family";
2445 case EM_TI_C5500
: return "Texas Instruments TMS320C55x DSP family";
2446 case EM_TI_PRU
: return "TI PRU I/O processor";
2448 case EM_MMDSP_PLUS
: return "STMicroelectronics 64bit VLIW Data Signal Processor";
2449 case EM_CYPRESS_M8C
: return "Cypress M8C microprocessor";
2450 case EM_R32C
: return "Renesas R32C series microprocessors";
2451 case EM_TRIMEDIA
: return "NXP Semiconductors TriMedia architecture family";
2452 case EM_QDSP6
: return "QUALCOMM DSP6 Processor";
2453 case EM_8051
: return "Intel 8051 and variants";
2454 case EM_STXP7X
: return "STMicroelectronics STxP7x family";
2455 case EM_NDS32
: return "Andes Technology compact code size embedded RISC processor family";
2456 case EM_ECOG1X
: return "Cyan Technology eCOG1X family";
2457 case EM_MAXQ30
: return "Dallas Semiconductor MAXQ30 Core microcontrollers";
2459 case EM_XIMO16
: return "New Japan Radio (NJR) 16-bit DSP Processor";
2460 case EM_MANIK
: return "M2000 Reconfigurable RISC Microprocessor";
2461 case EM_CRAYNV2
: return "Cray Inc. NV2 vector architecture";
2462 case EM_RX
: return "Renesas RX";
2463 case EM_METAG
: return "Imagination Technologies Meta processor architecture";
2464 case EM_MCST_ELBRUS
: return "MCST Elbrus general purpose hardware architecture";
2465 case EM_ECOG16
: return "Cyan Technology eCOG16 family";
2468 case EM_MICROBLAZE_OLD
: return "Xilinx MicroBlaze";
2469 case EM_ETPU
: return "Freescale Extended Time Processing Unit";
2470 case EM_SLE9X
: return "Infineon Technologies SLE9X core";
2472 case EM_L1OM
: return "Intel L1OM";
2473 case EM_K1OM
: return "Intel K1OM";
2474 case EM_INTEL182
: return "Intel (reserved)";
2475 case EM_AARCH64
: return "AArch64";
2476 case EM_ARM184
: return "ARM (reserved)";
2477 case EM_AVR32
: return "Atmel Corporation 32-bit microprocessor";
2478 case EM_STM8
: return "STMicroeletronics STM8 8-bit microcontroller";
2479 case EM_TILE64
: return "Tilera TILE64 multicore architecture family";
2480 case EM_TILEPRO
: return "Tilera TILEPro multicore architecture family";
2482 case EM_CUDA
: return "NVIDIA CUDA architecture";
2483 case EM_TILEGX
: return "Tilera TILE-Gx multicore architecture family";
2484 case EM_CLOUDSHIELD
: return "CloudShield architecture family";
2485 case EM_COREA_1ST
: return "KIPO-KAIST Core-A 1st generation processor family";
2486 case EM_COREA_2ND
: return "KIPO-KAIST Core-A 2nd generation processor family";
2487 case EM_ARC_COMPACT2
: return "ARCv2";
2488 case EM_OPEN8
: return "Open8 8-bit RISC soft processor core";
2489 case EM_RL78
: return "Renesas RL78";
2490 case EM_VIDEOCORE5
: return "Broadcom VideoCore V processor";
2491 case EM_78K0R
: return "Renesas 78K0R";
2493 case EM_56800EX
: return "Freescale 56800EX Digital Signal Controller (DSC)";
2494 case EM_BA1
: return "Beyond BA1 CPU architecture";
2495 case EM_BA2
: return "Beyond BA2 CPU architecture";
2496 case EM_XCORE
: return "XMOS xCORE processor family";
2497 case EM_MCHP_PIC
: return "Microchip 8-bit PIC(r) family";
2499 case EM_KM32
: return "KM211 KM32 32-bit processor";
2500 case EM_KMX32
: return "KM211 KMX32 32-bit processor";
2501 case EM_KMX16
: return "KM211 KMX16 16-bit processor";
2502 case EM_KMX8
: return "KM211 KMX8 8-bit processor";
2503 case EM_KVARC
: return "KM211 KVARC processor";
2504 case EM_CDP
: return "Paneve CDP architecture family";
2505 case EM_COGE
: return "Cognitive Smart Memory Processor";
2506 case EM_COOL
: return "Bluechip Systems CoolEngine";
2507 case EM_NORC
: return "Nanoradio Optimized RISC";
2508 case EM_CSR_KALIMBA
: return "CSR Kalimba architecture family";
2510 case EM_Z80
: return "Zilog Z80";
2511 case EM_VISIUM
: return "CDS VISIUMcore processor";
2512 case EM_FT32
: return "FTDI Chip FT32";
2513 case EM_MOXIE
: return "Moxie";
2514 case EM_AMDGPU
: return "AMD GPU";
2515 case EM_RISCV
: return "RISC-V";
2516 case EM_LANAI
: return "Lanai 32-bit processor";
2517 case EM_BPF
: return "Linux BPF";
2518 case EM_NFP
: return "Netronome Flow Processor";
2520 /* Large numbers... */
2521 case EM_MT
: return "Morpho Techologies MT processor";
2522 case EM_ALPHA
: return "Alpha";
2523 case EM_WEBASSEMBLY
: return "Web Assembly";
2524 case EM_DLX
: return "OpenDLX";
2525 case EM_XSTORMY16
: return "Sanyo XStormy16 CPU core";
2526 case EM_IQ2000
: return "Vitesse IQ2000";
2528 case EM_NIOS32
: return "Altera Nios";
2529 case EM_CYGNUS_MEP
: return "Toshiba MeP Media Engine";
2530 case EM_ADAPTEVA_EPIPHANY
: return "Adapteva EPIPHANY";
2531 case EM_CYGNUS_FRV
: return "Fujitsu FR-V";
2532 case EM_S12Z
: return "Freescale S12Z";
2533 case EM_CSKY
: return "C-SKY";
2536 snprintf (buff
, sizeof (buff
), _("<unknown>: 0x%x"), e_machine
);
2542 decode_ARC_machine_flags (unsigned e_flags
, unsigned e_machine
, char buf
[])
2544 /* ARC has two machine types EM_ARC_COMPACT and EM_ARC_COMPACT2. Some
2545 other compilers don't a specific architecture type in the e_flags, and
2546 instead use EM_ARC_COMPACT for old ARC600, ARC601, and ARC700
2547 architectures, and switch to EM_ARC_COMPACT2 for newer ARCEM and ARCHS
2550 Th GNU tools follows this use of EM_ARC_COMPACT and EM_ARC_COMPACT2,
2551 but also sets a specific architecture type in the e_flags field.
2553 However, when decoding the flags we don't worry if we see an
2554 unexpected pairing, for example EM_ARC_COMPACT machine type, with
2555 ARCEM architecture type. */
2557 switch (e_flags
& EF_ARC_MACH_MSK
)
2559 /* We only expect these to occur for EM_ARC_COMPACT2. */
2560 case EF_ARC_CPU_ARCV2EM
:
2561 strcat (buf
, ", ARC EM");
2563 case EF_ARC_CPU_ARCV2HS
:
2564 strcat (buf
, ", ARC HS");
2567 /* We only expect these to occur for EM_ARC_COMPACT. */
2568 case E_ARC_MACH_ARC600
:
2569 strcat (buf
, ", ARC600");
2571 case E_ARC_MACH_ARC601
:
2572 strcat (buf
, ", ARC601");
2574 case E_ARC_MACH_ARC700
:
2575 strcat (buf
, ", ARC700");
2578 /* The only times we should end up here are (a) A corrupt ELF, (b) A
2579 new ELF with new architecture being read by an old version of
2580 readelf, or (c) An ELF built with non-GNU compiler that does not
2581 set the architecture in the e_flags. */
2583 if (e_machine
== EM_ARC_COMPACT
)
2584 strcat (buf
, ", Unknown ARCompact");
2586 strcat (buf
, ", Unknown ARC");
2590 switch (e_flags
& EF_ARC_OSABI_MSK
)
2592 case E_ARC_OSABI_ORIG
:
2593 strcat (buf
, ", (ABI:legacy)");
2595 case E_ARC_OSABI_V2
:
2596 strcat (buf
, ", (ABI:v2)");
2598 /* Only upstream 3.9+ kernels will support ARCv2 ISA. */
2599 case E_ARC_OSABI_V3
:
2600 strcat (buf
, ", v3 no-legacy-syscalls ABI");
2602 case E_ARC_OSABI_V4
:
2603 strcat (buf
, ", v4 ABI");
2606 strcat (buf
, ", unrecognised ARC OSABI flag");
2612 decode_ARM_machine_flags (unsigned e_flags
, char buf
[])
2615 bfd_boolean unknown
= FALSE
;
2617 eabi
= EF_ARM_EABI_VERSION (e_flags
);
2618 e_flags
&= ~ EF_ARM_EABIMASK
;
2620 /* Handle "generic" ARM flags. */
2621 if (e_flags
& EF_ARM_RELEXEC
)
2623 strcat (buf
, ", relocatable executable");
2624 e_flags
&= ~ EF_ARM_RELEXEC
;
2627 if (e_flags
& EF_ARM_PIC
)
2629 strcat (buf
, ", position independent");
2630 e_flags
&= ~ EF_ARM_PIC
;
2633 /* Now handle EABI specific flags. */
2637 strcat (buf
, ", <unrecognized EABI>");
2642 case EF_ARM_EABI_VER1
:
2643 strcat (buf
, ", Version1 EABI");
2648 /* Process flags one bit at a time. */
2649 flag
= e_flags
& - e_flags
;
2654 case EF_ARM_SYMSARESORTED
: /* Conflicts with EF_ARM_INTERWORK. */
2655 strcat (buf
, ", sorted symbol tables");
2665 case EF_ARM_EABI_VER2
:
2666 strcat (buf
, ", Version2 EABI");
2671 /* Process flags one bit at a time. */
2672 flag
= e_flags
& - e_flags
;
2677 case EF_ARM_SYMSARESORTED
: /* Conflicts with EF_ARM_INTERWORK. */
2678 strcat (buf
, ", sorted symbol tables");
2681 case EF_ARM_DYNSYMSUSESEGIDX
:
2682 strcat (buf
, ", dynamic symbols use segment index");
2685 case EF_ARM_MAPSYMSFIRST
:
2686 strcat (buf
, ", mapping symbols precede others");
2696 case EF_ARM_EABI_VER3
:
2697 strcat (buf
, ", Version3 EABI");
2700 case EF_ARM_EABI_VER4
:
2701 strcat (buf
, ", Version4 EABI");
2706 /* Process flags one bit at a time. */
2707 flag
= e_flags
& - e_flags
;
2713 strcat (buf
, ", BE8");
2717 strcat (buf
, ", LE8");
2727 case EF_ARM_EABI_VER5
:
2728 strcat (buf
, ", Version5 EABI");
2733 /* Process flags one bit at a time. */
2734 flag
= e_flags
& - e_flags
;
2740 strcat (buf
, ", BE8");
2744 strcat (buf
, ", LE8");
2747 case EF_ARM_ABI_FLOAT_SOFT
: /* Conflicts with EF_ARM_SOFT_FLOAT. */
2748 strcat (buf
, ", soft-float ABI");
2751 case EF_ARM_ABI_FLOAT_HARD
: /* Conflicts with EF_ARM_VFP_FLOAT. */
2752 strcat (buf
, ", hard-float ABI");
2762 case EF_ARM_EABI_UNKNOWN
:
2763 strcat (buf
, ", GNU EABI");
2768 /* Process flags one bit at a time. */
2769 flag
= e_flags
& - e_flags
;
2774 case EF_ARM_INTERWORK
:
2775 strcat (buf
, ", interworking enabled");
2778 case EF_ARM_APCS_26
:
2779 strcat (buf
, ", uses APCS/26");
2782 case EF_ARM_APCS_FLOAT
:
2783 strcat (buf
, ", uses APCS/float");
2787 strcat (buf
, ", position independent");
2791 strcat (buf
, ", 8 bit structure alignment");
2794 case EF_ARM_NEW_ABI
:
2795 strcat (buf
, ", uses new ABI");
2798 case EF_ARM_OLD_ABI
:
2799 strcat (buf
, ", uses old ABI");
2802 case EF_ARM_SOFT_FLOAT
:
2803 strcat (buf
, ", software FP");
2806 case EF_ARM_VFP_FLOAT
:
2807 strcat (buf
, ", VFP");
2810 case EF_ARM_MAVERICK_FLOAT
:
2811 strcat (buf
, ", Maverick FP");
2822 strcat (buf
,_(", <unknown>"));
2826 decode_AVR_machine_flags (unsigned e_flags
, char buf
[], size_t size
)
2828 --size
; /* Leave space for null terminator. */
2830 switch (e_flags
& EF_AVR_MACH
)
2832 case E_AVR_MACH_AVR1
:
2833 strncat (buf
, ", avr:1", size
);
2835 case E_AVR_MACH_AVR2
:
2836 strncat (buf
, ", avr:2", size
);
2838 case E_AVR_MACH_AVR25
:
2839 strncat (buf
, ", avr:25", size
);
2841 case E_AVR_MACH_AVR3
:
2842 strncat (buf
, ", avr:3", size
);
2844 case E_AVR_MACH_AVR31
:
2845 strncat (buf
, ", avr:31", size
);
2847 case E_AVR_MACH_AVR35
:
2848 strncat (buf
, ", avr:35", size
);
2850 case E_AVR_MACH_AVR4
:
2851 strncat (buf
, ", avr:4", size
);
2853 case E_AVR_MACH_AVR5
:
2854 strncat (buf
, ", avr:5", size
);
2856 case E_AVR_MACH_AVR51
:
2857 strncat (buf
, ", avr:51", size
);
2859 case E_AVR_MACH_AVR6
:
2860 strncat (buf
, ", avr:6", size
);
2862 case E_AVR_MACH_AVRTINY
:
2863 strncat (buf
, ", avr:100", size
);
2865 case E_AVR_MACH_XMEGA1
:
2866 strncat (buf
, ", avr:101", size
);
2868 case E_AVR_MACH_XMEGA2
:
2869 strncat (buf
, ", avr:102", size
);
2871 case E_AVR_MACH_XMEGA3
:
2872 strncat (buf
, ", avr:103", size
);
2874 case E_AVR_MACH_XMEGA4
:
2875 strncat (buf
, ", avr:104", size
);
2877 case E_AVR_MACH_XMEGA5
:
2878 strncat (buf
, ", avr:105", size
);
2880 case E_AVR_MACH_XMEGA6
:
2881 strncat (buf
, ", avr:106", size
);
2883 case E_AVR_MACH_XMEGA7
:
2884 strncat (buf
, ", avr:107", size
);
2887 strncat (buf
, ", avr:<unknown>", size
);
2891 size
-= strlen (buf
);
2892 if (e_flags
& EF_AVR_LINKRELAX_PREPARED
)
2893 strncat (buf
, ", link-relax", size
);
2897 decode_NDS32_machine_flags (unsigned e_flags
, char buf
[], size_t size
)
2903 bfd_boolean has_fpu
= FALSE
;
2906 static const char *ABI_STRINGS
[] =
2908 "ABI v0", /* use r5 as return register; only used in N1213HC */
2909 "ABI v1", /* use r0 as return register */
2910 "ABI v2", /* use r0 as return register and don't reserve 24 bytes for arguments */
2911 "ABI v2fp", /* for FPU */
2915 static const char *VER_STRINGS
[] =
2917 "Andes ELF V1.3 or older",
2921 static const char *ARCH_STRINGS
[] =
2930 abi
= EF_NDS_ABI
& e_flags
;
2931 arch
= EF_NDS_ARCH
& e_flags
;
2932 config
= EF_NDS_INST
& e_flags
;
2933 version
= EF_NDS32_ELF_VERSION
& e_flags
;
2935 memset (buf
, 0, size
);
2942 case E_NDS_ABI_V2FP
:
2943 case E_NDS_ABI_AABI
:
2944 case E_NDS_ABI_V2FP_PLUS
:
2945 /* In case there are holes in the array. */
2946 r
+= snprintf (buf
+ r
, size
- r
, ", %s", ABI_STRINGS
[abi
>> EF_NDS_ABI_SHIFT
]);
2950 r
+= snprintf (buf
+ r
, size
- r
, ", <unrecognized ABI>");
2956 case E_NDS32_ELF_VER_1_2
:
2957 case E_NDS32_ELF_VER_1_3
:
2958 case E_NDS32_ELF_VER_1_4
:
2959 r
+= snprintf (buf
+ r
, size
- r
, ", %s", VER_STRINGS
[version
>> EF_NDS32_ELF_VERSION_SHIFT
]);
2963 r
+= snprintf (buf
+ r
, size
- r
, ", <unrecognized ELF version number>");
2967 if (E_NDS_ABI_V0
== abi
)
2969 /* OLD ABI; only used in N1213HC, has performance extension 1. */
2970 r
+= snprintf (buf
+ r
, size
- r
, ", Andes Star v1.0, N1213HC, MAC, PERF1");
2971 if (arch
== E_NDS_ARCH_STAR_V1_0
)
2972 r
+= snprintf (buf
+ r
, size
-r
, ", 16b"); /* has 16-bit instructions */
2978 case E_NDS_ARCH_STAR_V1_0
:
2979 case E_NDS_ARCH_STAR_V2_0
:
2980 case E_NDS_ARCH_STAR_V3_0
:
2981 case E_NDS_ARCH_STAR_V3_M
:
2982 r
+= snprintf (buf
+ r
, size
- r
, ", %s", ARCH_STRINGS
[arch
>> EF_NDS_ARCH_SHIFT
]);
2986 r
+= snprintf (buf
+ r
, size
- r
, ", <unrecognized architecture>");
2987 /* ARCH version determines how the e_flags are interpreted.
2988 If it is unknown, we cannot proceed. */
2992 /* Newer ABI; Now handle architecture specific flags. */
2993 if (arch
== E_NDS_ARCH_STAR_V1_0
)
2995 if (config
& E_NDS32_HAS_MFUSR_PC_INST
)
2996 r
+= snprintf (buf
+ r
, size
-r
, ", MFUSR_PC");
2998 if (!(config
& E_NDS32_HAS_NO_MAC_INST
))
2999 r
+= snprintf (buf
+ r
, size
-r
, ", MAC");
3001 if (config
& E_NDS32_HAS_DIV_INST
)
3002 r
+= snprintf (buf
+ r
, size
-r
, ", DIV");
3004 if (config
& E_NDS32_HAS_16BIT_INST
)
3005 r
+= snprintf (buf
+ r
, size
-r
, ", 16b");
3009 if (config
& E_NDS32_HAS_MFUSR_PC_INST
)
3011 if (version
<= E_NDS32_ELF_VER_1_3
)
3012 r
+= snprintf (buf
+ r
, size
-r
, ", [B8]");
3014 r
+= snprintf (buf
+ r
, size
-r
, ", EX9");
3017 if (config
& E_NDS32_HAS_MAC_DX_INST
)
3018 r
+= snprintf (buf
+ r
, size
-r
, ", MAC_DX");
3020 if (config
& E_NDS32_HAS_DIV_DX_INST
)
3021 r
+= snprintf (buf
+ r
, size
-r
, ", DIV_DX");
3023 if (config
& E_NDS32_HAS_16BIT_INST
)
3025 if (version
<= E_NDS32_ELF_VER_1_3
)
3026 r
+= snprintf (buf
+ r
, size
-r
, ", 16b");
3028 r
+= snprintf (buf
+ r
, size
-r
, ", IFC");
3032 if (config
& E_NDS32_HAS_EXT_INST
)
3033 r
+= snprintf (buf
+ r
, size
-r
, ", PERF1");
3035 if (config
& E_NDS32_HAS_EXT2_INST
)
3036 r
+= snprintf (buf
+ r
, size
-r
, ", PERF2");
3038 if (config
& E_NDS32_HAS_FPU_INST
)
3041 r
+= snprintf (buf
+ r
, size
-r
, ", FPU_SP");
3044 if (config
& E_NDS32_HAS_FPU_DP_INST
)
3047 r
+= snprintf (buf
+ r
, size
-r
, ", FPU_DP");
3050 if (config
& E_NDS32_HAS_FPU_MAC_INST
)
3053 r
+= snprintf (buf
+ r
, size
-r
, ", FPU_MAC");
3058 switch ((config
& E_NDS32_FPU_REG_CONF
) >> E_NDS32_FPU_REG_CONF_SHIFT
)
3060 case E_NDS32_FPU_REG_8SP_4DP
:
3061 r
+= snprintf (buf
+ r
, size
-r
, ", FPU_REG:8/4");
3063 case E_NDS32_FPU_REG_16SP_8DP
:
3064 r
+= snprintf (buf
+ r
, size
-r
, ", FPU_REG:16/8");
3066 case E_NDS32_FPU_REG_32SP_16DP
:
3067 r
+= snprintf (buf
+ r
, size
-r
, ", FPU_REG:32/16");
3069 case E_NDS32_FPU_REG_32SP_32DP
:
3070 r
+= snprintf (buf
+ r
, size
-r
, ", FPU_REG:32/32");
3075 if (config
& E_NDS32_HAS_AUDIO_INST
)
3076 r
+= snprintf (buf
+ r
, size
-r
, ", AUDIO");
3078 if (config
& E_NDS32_HAS_STRING_INST
)
3079 r
+= snprintf (buf
+ r
, size
-r
, ", STR");
3081 if (config
& E_NDS32_HAS_REDUCED_REGS
)
3082 r
+= snprintf (buf
+ r
, size
-r
, ", 16REG");
3084 if (config
& E_NDS32_HAS_VIDEO_INST
)
3086 if (version
<= E_NDS32_ELF_VER_1_3
)
3087 r
+= snprintf (buf
+ r
, size
-r
, ", VIDEO");
3089 r
+= snprintf (buf
+ r
, size
-r
, ", SATURATION");
3092 if (config
& E_NDS32_HAS_ENCRIPT_INST
)
3093 r
+= snprintf (buf
+ r
, size
-r
, ", ENCRP");
3095 if (config
& E_NDS32_HAS_L2C_INST
)
3096 r
+= snprintf (buf
+ r
, size
-r
, ", L2C");
3100 get_machine_flags (Filedata
* filedata
, unsigned e_flags
, unsigned e_machine
)
3102 static char buf
[1024];
3113 case EM_ARC_COMPACT2
:
3114 case EM_ARC_COMPACT
:
3115 decode_ARC_machine_flags (e_flags
, e_machine
, buf
);
3119 decode_ARM_machine_flags (e_flags
, buf
);
3123 decode_AVR_machine_flags (e_flags
, buf
, sizeof buf
);
3127 if (e_flags
& EF_BFIN_PIC
)
3128 strcat (buf
, ", PIC");
3130 if (e_flags
& EF_BFIN_FDPIC
)
3131 strcat (buf
, ", FDPIC");
3133 if (e_flags
& EF_BFIN_CODE_IN_L1
)
3134 strcat (buf
, ", code in L1");
3136 if (e_flags
& EF_BFIN_DATA_IN_L1
)
3137 strcat (buf
, ", data in L1");
3142 switch (e_flags
& EF_FRV_CPU_MASK
)
3144 case EF_FRV_CPU_GENERIC
:
3148 strcat (buf
, ", fr???");
3151 case EF_FRV_CPU_FR300
:
3152 strcat (buf
, ", fr300");
3155 case EF_FRV_CPU_FR400
:
3156 strcat (buf
, ", fr400");
3158 case EF_FRV_CPU_FR405
:
3159 strcat (buf
, ", fr405");
3162 case EF_FRV_CPU_FR450
:
3163 strcat (buf
, ", fr450");
3166 case EF_FRV_CPU_FR500
:
3167 strcat (buf
, ", fr500");
3169 case EF_FRV_CPU_FR550
:
3170 strcat (buf
, ", fr550");
3173 case EF_FRV_CPU_SIMPLE
:
3174 strcat (buf
, ", simple");
3176 case EF_FRV_CPU_TOMCAT
:
3177 strcat (buf
, ", tomcat");
3183 if ((e_flags
& EF_M68K_ARCH_MASK
) == EF_M68K_M68000
)
3184 strcat (buf
, ", m68000");
3185 else if ((e_flags
& EF_M68K_ARCH_MASK
) == EF_M68K_CPU32
)
3186 strcat (buf
, ", cpu32");
3187 else if ((e_flags
& EF_M68K_ARCH_MASK
) == EF_M68K_FIDO
)
3188 strcat (buf
, ", fido_a");
3191 char const * isa
= _("unknown");
3192 char const * mac
= _("unknown mac");
3193 char const * additional
= NULL
;
3195 switch (e_flags
& EF_M68K_CF_ISA_MASK
)
3197 case EF_M68K_CF_ISA_A_NODIV
:
3199 additional
= ", nodiv";
3201 case EF_M68K_CF_ISA_A
:
3204 case EF_M68K_CF_ISA_A_PLUS
:
3207 case EF_M68K_CF_ISA_B_NOUSP
:
3209 additional
= ", nousp";
3211 case EF_M68K_CF_ISA_B
:
3214 case EF_M68K_CF_ISA_C
:
3217 case EF_M68K_CF_ISA_C_NODIV
:
3219 additional
= ", nodiv";
3222 strcat (buf
, ", cf, isa ");
3225 strcat (buf
, additional
);
3226 if (e_flags
& EF_M68K_CF_FLOAT
)
3227 strcat (buf
, ", float");
3228 switch (e_flags
& EF_M68K_CF_MAC_MASK
)
3233 case EF_M68K_CF_MAC
:
3236 case EF_M68K_CF_EMAC
:
3239 case EF_M68K_CF_EMAC_B
:
3252 switch (e_flags
& EF_MEP_CPU_MASK
)
3254 case EF_MEP_CPU_MEP
: strcat (buf
, ", generic MeP"); break;
3255 case EF_MEP_CPU_C2
: strcat (buf
, ", MeP C2"); break;
3256 case EF_MEP_CPU_C3
: strcat (buf
, ", MeP C3"); break;
3257 case EF_MEP_CPU_C4
: strcat (buf
, ", MeP C4"); break;
3258 case EF_MEP_CPU_C5
: strcat (buf
, ", MeP C5"); break;
3259 case EF_MEP_CPU_H1
: strcat (buf
, ", MeP H1"); break;
3260 default: strcat (buf
, _(", <unknown MeP cpu type>")); break;
3263 switch (e_flags
& EF_MEP_COP_MASK
)
3265 case EF_MEP_COP_NONE
: break;
3266 case EF_MEP_COP_AVC
: strcat (buf
, ", AVC coprocessor"); break;
3267 case EF_MEP_COP_AVC2
: strcat (buf
, ", AVC2 coprocessor"); break;
3268 case EF_MEP_COP_FMAX
: strcat (buf
, ", FMAX coprocessor"); break;
3269 case EF_MEP_COP_IVC2
: strcat (buf
, ", IVC2 coprocessor"); break;
3270 default: strcat (buf
, _("<unknown MeP copro type>")); break;
3273 if (e_flags
& EF_MEP_LIBRARY
)
3274 strcat (buf
, ", Built for Library");
3276 if (e_flags
& EF_MEP_INDEX_MASK
)
3277 sprintf (buf
+ strlen (buf
), ", Configuration Index: %#x",
3278 e_flags
& EF_MEP_INDEX_MASK
);
3280 if (e_flags
& ~ EF_MEP_ALL_FLAGS
)
3281 sprintf (buf
+ strlen (buf
), _(", unknown flags bits: %#x"),
3282 e_flags
& ~ EF_MEP_ALL_FLAGS
);
3286 if (e_flags
& EF_PPC_EMB
)
3287 strcat (buf
, ", emb");
3289 if (e_flags
& EF_PPC_RELOCATABLE
)
3290 strcat (buf
, _(", relocatable"));
3292 if (e_flags
& EF_PPC_RELOCATABLE_LIB
)
3293 strcat (buf
, _(", relocatable-lib"));
3297 if (e_flags
& EF_PPC64_ABI
)
3299 char abi
[] = ", abiv0";
3301 abi
[6] += e_flags
& EF_PPC64_ABI
;
3307 if ((e_flags
& EF_RH850_ABI
) == EF_RH850_ABI
)
3308 strcat (buf
, ", RH850 ABI");
3310 if (e_flags
& EF_V800_850E3
)
3311 strcat (buf
, ", V3 architecture");
3313 if ((e_flags
& (EF_RH850_FPU_DOUBLE
| EF_RH850_FPU_SINGLE
)) == 0)
3314 strcat (buf
, ", FPU not used");
3316 if ((e_flags
& (EF_RH850_REGMODE22
| EF_RH850_REGMODE32
)) == 0)
3317 strcat (buf
, ", regmode: COMMON");
3319 if ((e_flags
& (EF_RH850_GP_FIX
| EF_RH850_GP_NOFIX
)) == 0)
3320 strcat (buf
, ", r4 not used");
3322 if ((e_flags
& (EF_RH850_EP_FIX
| EF_RH850_EP_NOFIX
)) == 0)
3323 strcat (buf
, ", r30 not used");
3325 if ((e_flags
& (EF_RH850_TP_FIX
| EF_RH850_TP_NOFIX
)) == 0)
3326 strcat (buf
, ", r5 not used");
3328 if ((e_flags
& (EF_RH850_REG2_RESERVE
| EF_RH850_REG2_NORESERVE
)) == 0)
3329 strcat (buf
, ", r2 not used");
3331 for (e_flags
&= 0xFFFF; e_flags
; e_flags
&= ~ (e_flags
& - e_flags
))
3333 switch (e_flags
& - e_flags
)
3335 case EF_RH850_FPU_DOUBLE
: strcat (buf
, ", double precision FPU"); break;
3336 case EF_RH850_FPU_SINGLE
: strcat (buf
, ", single precision FPU"); break;
3337 case EF_RH850_REGMODE22
: strcat (buf
, ", regmode:22"); break;
3338 case EF_RH850_REGMODE32
: strcat (buf
, ", regmode:23"); break;
3339 case EF_RH850_GP_FIX
: strcat (buf
, ", r4 fixed"); break;
3340 case EF_RH850_GP_NOFIX
: strcat (buf
, ", r4 free"); break;
3341 case EF_RH850_EP_FIX
: strcat (buf
, ", r30 fixed"); break;
3342 case EF_RH850_EP_NOFIX
: strcat (buf
, ", r30 free"); break;
3343 case EF_RH850_TP_FIX
: strcat (buf
, ", r5 fixed"); break;
3344 case EF_RH850_TP_NOFIX
: strcat (buf
, ", r5 free"); break;
3345 case EF_RH850_REG2_RESERVE
: strcat (buf
, ", r2 fixed"); break;
3346 case EF_RH850_REG2_NORESERVE
: strcat (buf
, ", r2 free"); break;
3353 case EM_CYGNUS_V850
:
3354 switch (e_flags
& EF_V850_ARCH
)
3356 case E_V850E3V5_ARCH
:
3357 strcat (buf
, ", v850e3v5");
3359 case E_V850E2V3_ARCH
:
3360 strcat (buf
, ", v850e2v3");
3363 strcat (buf
, ", v850e2");
3366 strcat (buf
, ", v850e1");
3369 strcat (buf
, ", v850e");
3372 strcat (buf
, ", v850");
3375 strcat (buf
, _(", unknown v850 architecture variant"));
3381 case EM_CYGNUS_M32R
:
3382 if ((e_flags
& EF_M32R_ARCH
) == E_M32R_ARCH
)
3383 strcat (buf
, ", m32r");
3387 case EM_MIPS_RS3_LE
:
3388 if (e_flags
& EF_MIPS_NOREORDER
)
3389 strcat (buf
, ", noreorder");
3391 if (e_flags
& EF_MIPS_PIC
)
3392 strcat (buf
, ", pic");
3394 if (e_flags
& EF_MIPS_CPIC
)
3395 strcat (buf
, ", cpic");
3397 if (e_flags
& EF_MIPS_UCODE
)
3398 strcat (buf
, ", ugen_reserved");
3400 if (e_flags
& EF_MIPS_ABI2
)
3401 strcat (buf
, ", abi2");
3403 if (e_flags
& EF_MIPS_OPTIONS_FIRST
)
3404 strcat (buf
, ", odk first");
3406 if (e_flags
& EF_MIPS_32BITMODE
)
3407 strcat (buf
, ", 32bitmode");
3409 if (e_flags
& EF_MIPS_NAN2008
)
3410 strcat (buf
, ", nan2008");
3412 if (e_flags
& EF_MIPS_FP64
)
3413 strcat (buf
, ", fp64");
3415 switch ((e_flags
& EF_MIPS_MACH
))
3417 case E_MIPS_MACH_3900
: strcat (buf
, ", 3900"); break;
3418 case E_MIPS_MACH_4010
: strcat (buf
, ", 4010"); break;
3419 case E_MIPS_MACH_4100
: strcat (buf
, ", 4100"); break;
3420 case E_MIPS_MACH_4111
: strcat (buf
, ", 4111"); break;
3421 case E_MIPS_MACH_4120
: strcat (buf
, ", 4120"); break;
3422 case E_MIPS_MACH_4650
: strcat (buf
, ", 4650"); break;
3423 case E_MIPS_MACH_5400
: strcat (buf
, ", 5400"); break;
3424 case E_MIPS_MACH_5500
: strcat (buf
, ", 5500"); break;
3425 case E_MIPS_MACH_5900
: strcat (buf
, ", 5900"); break;
3426 case E_MIPS_MACH_SB1
: strcat (buf
, ", sb1"); break;
3427 case E_MIPS_MACH_9000
: strcat (buf
, ", 9000"); break;
3428 case E_MIPS_MACH_LS2E
: strcat (buf
, ", loongson-2e"); break;
3429 case E_MIPS_MACH_LS2F
: strcat (buf
, ", loongson-2f"); break;
3430 case E_MIPS_MACH_GS464
: strcat (buf
, ", gs464"); break;
3431 case E_MIPS_MACH_GS464E
: strcat (buf
, ", gs464e"); break;
3432 case E_MIPS_MACH_GS264E
: strcat (buf
, ", gs264e"); break;
3433 case E_MIPS_MACH_OCTEON
: strcat (buf
, ", octeon"); break;
3434 case E_MIPS_MACH_OCTEON2
: strcat (buf
, ", octeon2"); break;
3435 case E_MIPS_MACH_OCTEON3
: strcat (buf
, ", octeon3"); break;
3436 case E_MIPS_MACH_XLR
: strcat (buf
, ", xlr"); break;
3437 case E_MIPS_MACH_IAMR2
: strcat (buf
, ", interaptiv-mr2"); break;
3439 /* We simply ignore the field in this case to avoid confusion:
3440 MIPS ELF does not specify EF_MIPS_MACH, it is a GNU
3443 default: strcat (buf
, _(", unknown CPU")); break;
3446 switch ((e_flags
& EF_MIPS_ABI
))
3448 case E_MIPS_ABI_O32
: strcat (buf
, ", o32"); break;
3449 case E_MIPS_ABI_O64
: strcat (buf
, ", o64"); break;
3450 case E_MIPS_ABI_EABI32
: strcat (buf
, ", eabi32"); break;
3451 case E_MIPS_ABI_EABI64
: strcat (buf
, ", eabi64"); break;
3453 /* We simply ignore the field in this case to avoid confusion:
3454 MIPS ELF does not specify EF_MIPS_ABI, it is a GNU extension.
3455 This means it is likely to be an o32 file, but not for
3458 default: strcat (buf
, _(", unknown ABI")); break;
3461 if (e_flags
& EF_MIPS_ARCH_ASE_MDMX
)
3462 strcat (buf
, ", mdmx");
3464 if (e_flags
& EF_MIPS_ARCH_ASE_M16
)
3465 strcat (buf
, ", mips16");
3467 if (e_flags
& EF_MIPS_ARCH_ASE_MICROMIPS
)
3468 strcat (buf
, ", micromips");
3470 switch ((e_flags
& EF_MIPS_ARCH
))
3472 case E_MIPS_ARCH_1
: strcat (buf
, ", mips1"); break;
3473 case E_MIPS_ARCH_2
: strcat (buf
, ", mips2"); break;
3474 case E_MIPS_ARCH_3
: strcat (buf
, ", mips3"); break;
3475 case E_MIPS_ARCH_4
: strcat (buf
, ", mips4"); break;
3476 case E_MIPS_ARCH_5
: strcat (buf
, ", mips5"); break;
3477 case E_MIPS_ARCH_32
: strcat (buf
, ", mips32"); break;
3478 case E_MIPS_ARCH_32R2
: strcat (buf
, ", mips32r2"); break;
3479 case E_MIPS_ARCH_32R6
: strcat (buf
, ", mips32r6"); break;
3480 case E_MIPS_ARCH_64
: strcat (buf
, ", mips64"); break;
3481 case E_MIPS_ARCH_64R2
: strcat (buf
, ", mips64r2"); break;
3482 case E_MIPS_ARCH_64R6
: strcat (buf
, ", mips64r6"); break;
3483 default: strcat (buf
, _(", unknown ISA")); break;
3488 decode_NDS32_machine_flags (e_flags
, buf
, sizeof buf
);
3492 switch (EF_NFP_MACH (e_flags
))
3494 case E_NFP_MACH_3200
:
3495 strcat (buf
, ", NFP-32xx");
3497 case E_NFP_MACH_6000
:
3498 strcat (buf
, ", NFP-6xxx");
3504 if (e_flags
& EF_RISCV_RVC
)
3505 strcat (buf
, ", RVC");
3507 if (e_flags
& EF_RISCV_RVE
)
3508 strcat (buf
, ", RVE");
3510 switch (e_flags
& EF_RISCV_FLOAT_ABI
)
3512 case EF_RISCV_FLOAT_ABI_SOFT
:
3513 strcat (buf
, ", soft-float ABI");
3516 case EF_RISCV_FLOAT_ABI_SINGLE
:
3517 strcat (buf
, ", single-float ABI");
3520 case EF_RISCV_FLOAT_ABI_DOUBLE
:
3521 strcat (buf
, ", double-float ABI");
3524 case EF_RISCV_FLOAT_ABI_QUAD
:
3525 strcat (buf
, ", quad-float ABI");
3531 switch ((e_flags
& EF_SH_MACH_MASK
))
3533 case EF_SH1
: strcat (buf
, ", sh1"); break;
3534 case EF_SH2
: strcat (buf
, ", sh2"); break;
3535 case EF_SH3
: strcat (buf
, ", sh3"); break;
3536 case EF_SH_DSP
: strcat (buf
, ", sh-dsp"); break;
3537 case EF_SH3_DSP
: strcat (buf
, ", sh3-dsp"); break;
3538 case EF_SH4AL_DSP
: strcat (buf
, ", sh4al-dsp"); break;
3539 case EF_SH3E
: strcat (buf
, ", sh3e"); break;
3540 case EF_SH4
: strcat (buf
, ", sh4"); break;
3541 case EF_SH5
: strcat (buf
, ", sh5"); break;
3542 case EF_SH2E
: strcat (buf
, ", sh2e"); break;
3543 case EF_SH4A
: strcat (buf
, ", sh4a"); break;
3544 case EF_SH2A
: strcat (buf
, ", sh2a"); break;
3545 case EF_SH4_NOFPU
: strcat (buf
, ", sh4-nofpu"); break;
3546 case EF_SH4A_NOFPU
: strcat (buf
, ", sh4a-nofpu"); break;
3547 case EF_SH2A_NOFPU
: strcat (buf
, ", sh2a-nofpu"); break;
3548 case EF_SH3_NOMMU
: strcat (buf
, ", sh3-nommu"); break;
3549 case EF_SH4_NOMMU_NOFPU
: strcat (buf
, ", sh4-nommu-nofpu"); break;
3550 case EF_SH2A_SH4_NOFPU
: strcat (buf
, ", sh2a-nofpu-or-sh4-nommu-nofpu"); break;
3551 case EF_SH2A_SH3_NOFPU
: strcat (buf
, ", sh2a-nofpu-or-sh3-nommu"); break;
3552 case EF_SH2A_SH4
: strcat (buf
, ", sh2a-or-sh4"); break;
3553 case EF_SH2A_SH3E
: strcat (buf
, ", sh2a-or-sh3e"); break;
3554 default: strcat (buf
, _(", unknown ISA")); break;
3557 if (e_flags
& EF_SH_PIC
)
3558 strcat (buf
, ", pic");
3560 if (e_flags
& EF_SH_FDPIC
)
3561 strcat (buf
, ", fdpic");
3565 if (e_flags
& EF_OR1K_NODELAY
)
3566 strcat (buf
, ", no delay");
3570 if (e_flags
& EF_SPARC_32PLUS
)
3571 strcat (buf
, ", v8+");
3573 if (e_flags
& EF_SPARC_SUN_US1
)
3574 strcat (buf
, ", ultrasparcI");
3576 if (e_flags
& EF_SPARC_SUN_US3
)
3577 strcat (buf
, ", ultrasparcIII");
3579 if (e_flags
& EF_SPARC_HAL_R1
)
3580 strcat (buf
, ", halr1");
3582 if (e_flags
& EF_SPARC_LEDATA
)
3583 strcat (buf
, ", ledata");
3585 if ((e_flags
& EF_SPARCV9_MM
) == EF_SPARCV9_TSO
)
3586 strcat (buf
, ", tso");
3588 if ((e_flags
& EF_SPARCV9_MM
) == EF_SPARCV9_PSO
)
3589 strcat (buf
, ", pso");
3591 if ((e_flags
& EF_SPARCV9_MM
) == EF_SPARCV9_RMO
)
3592 strcat (buf
, ", rmo");
3596 switch (e_flags
& EF_PARISC_ARCH
)
3598 case EFA_PARISC_1_0
:
3599 strcpy (buf
, ", PA-RISC 1.0");
3601 case EFA_PARISC_1_1
:
3602 strcpy (buf
, ", PA-RISC 1.1");
3604 case EFA_PARISC_2_0
:
3605 strcpy (buf
, ", PA-RISC 2.0");
3610 if (e_flags
& EF_PARISC_TRAPNIL
)
3611 strcat (buf
, ", trapnil");
3612 if (e_flags
& EF_PARISC_EXT
)
3613 strcat (buf
, ", ext");
3614 if (e_flags
& EF_PARISC_LSB
)
3615 strcat (buf
, ", lsb");
3616 if (e_flags
& EF_PARISC_WIDE
)
3617 strcat (buf
, ", wide");
3618 if (e_flags
& EF_PARISC_NO_KABP
)
3619 strcat (buf
, ", no kabp");
3620 if (e_flags
& EF_PARISC_LAZYSWAP
)
3621 strcat (buf
, ", lazyswap");
3626 if ((e_flags
& EF_PICOJAVA_NEWCALLS
) == EF_PICOJAVA_NEWCALLS
)
3627 strcat (buf
, ", new calling convention");
3629 if ((e_flags
& EF_PICOJAVA_GNUCALLS
) == EF_PICOJAVA_GNUCALLS
)
3630 strcat (buf
, ", gnu calling convention");
3634 if ((e_flags
& EF_IA_64_ABI64
))
3635 strcat (buf
, ", 64-bit");
3637 strcat (buf
, ", 32-bit");
3638 if ((e_flags
& EF_IA_64_REDUCEDFP
))
3639 strcat (buf
, ", reduced fp model");
3640 if ((e_flags
& EF_IA_64_NOFUNCDESC_CONS_GP
))
3641 strcat (buf
, ", no function descriptors, constant gp");
3642 else if ((e_flags
& EF_IA_64_CONS_GP
))
3643 strcat (buf
, ", constant gp");
3644 if ((e_flags
& EF_IA_64_ABSOLUTE
))
3645 strcat (buf
, ", absolute");
3646 if (filedata
->file_header
.e_ident
[EI_OSABI
] == ELFOSABI_OPENVMS
)
3648 if ((e_flags
& EF_IA_64_VMS_LINKAGES
))
3649 strcat (buf
, ", vms_linkages");
3650 switch ((e_flags
& EF_IA_64_VMS_COMCOD
))
3652 case EF_IA_64_VMS_COMCOD_SUCCESS
:
3654 case EF_IA_64_VMS_COMCOD_WARNING
:
3655 strcat (buf
, ", warning");
3657 case EF_IA_64_VMS_COMCOD_ERROR
:
3658 strcat (buf
, ", error");
3660 case EF_IA_64_VMS_COMCOD_ABORT
:
3661 strcat (buf
, ", abort");
3664 warn (_("Unrecognised IA64 VMS Command Code: %x\n"),
3665 e_flags
& EF_IA_64_VMS_COMCOD
);
3666 strcat (buf
, ", <unknown>");
3672 if ((e_flags
& EF_VAX_NONPIC
))
3673 strcat (buf
, ", non-PIC");
3674 if ((e_flags
& EF_VAX_DFLOAT
))
3675 strcat (buf
, ", D-Float");
3676 if ((e_flags
& EF_VAX_GFLOAT
))
3677 strcat (buf
, ", G-Float");
3681 if (e_flags
& EF_VISIUM_ARCH_MCM
)
3682 strcat (buf
, ", mcm");
3683 else if (e_flags
& EF_VISIUM_ARCH_MCM24
)
3684 strcat (buf
, ", mcm24");
3685 if (e_flags
& EF_VISIUM_ARCH_GR6
)
3686 strcat (buf
, ", gr6");
3690 switch (e_flags
& E_FLAG_RL78_CPU_MASK
)
3692 case E_FLAG_RL78_ANY_CPU
: break;
3693 case E_FLAG_RL78_G10
: strcat (buf
, ", G10"); break;
3694 case E_FLAG_RL78_G13
: strcat (buf
, ", G13"); break;
3695 case E_FLAG_RL78_G14
: strcat (buf
, ", G14"); break;
3697 if (e_flags
& E_FLAG_RL78_64BIT_DOUBLES
)
3698 strcat (buf
, ", 64-bit doubles");
3702 if (e_flags
& E_FLAG_RX_64BIT_DOUBLES
)
3703 strcat (buf
, ", 64-bit doubles");
3704 if (e_flags
& E_FLAG_RX_DSP
)
3705 strcat (buf
, ", dsp");
3706 if (e_flags
& E_FLAG_RX_PID
)
3707 strcat (buf
, ", pid");
3708 if (e_flags
& E_FLAG_RX_ABI
)
3709 strcat (buf
, ", RX ABI");
3710 if (e_flags
& E_FLAG_RX_SINSNS_SET
)
3711 strcat (buf
, e_flags
& E_FLAG_RX_SINSNS_YES
3712 ? ", uses String instructions" : ", bans String instructions");
3713 if (e_flags
& E_FLAG_RX_V2
)
3714 strcat (buf
, ", V2");
3715 if (e_flags
& E_FLAG_RX_V3
)
3716 strcat (buf
, ", V3");
3720 if (e_flags
& EF_S390_HIGH_GPRS
)
3721 strcat (buf
, ", highgprs");
3725 if ((e_flags
& EF_C6000_REL
))
3726 strcat (buf
, ", relocatable module");
3730 strcat (buf
, _(": architecture variant: "));
3731 switch (e_flags
& EF_MSP430_MACH
)
3733 case E_MSP430_MACH_MSP430x11
: strcat (buf
, "MSP430x11"); break;
3734 case E_MSP430_MACH_MSP430x11x1
: strcat (buf
, "MSP430x11x1 "); break;
3735 case E_MSP430_MACH_MSP430x12
: strcat (buf
, "MSP430x12"); break;
3736 case E_MSP430_MACH_MSP430x13
: strcat (buf
, "MSP430x13"); break;
3737 case E_MSP430_MACH_MSP430x14
: strcat (buf
, "MSP430x14"); break;
3738 case E_MSP430_MACH_MSP430x15
: strcat (buf
, "MSP430x15"); break;
3739 case E_MSP430_MACH_MSP430x16
: strcat (buf
, "MSP430x16"); break;
3740 case E_MSP430_MACH_MSP430x31
: strcat (buf
, "MSP430x31"); break;
3741 case E_MSP430_MACH_MSP430x32
: strcat (buf
, "MSP430x32"); break;
3742 case E_MSP430_MACH_MSP430x33
: strcat (buf
, "MSP430x33"); break;
3743 case E_MSP430_MACH_MSP430x41
: strcat (buf
, "MSP430x41"); break;
3744 case E_MSP430_MACH_MSP430x42
: strcat (buf
, "MSP430x42"); break;
3745 case E_MSP430_MACH_MSP430x43
: strcat (buf
, "MSP430x43"); break;
3746 case E_MSP430_MACH_MSP430x44
: strcat (buf
, "MSP430x44"); break;
3747 case E_MSP430_MACH_MSP430X
: strcat (buf
, "MSP430X"); break;
3749 strcat (buf
, _(": unknown")); break;
3752 if (e_flags
& ~ EF_MSP430_MACH
)
3753 strcat (buf
, _(": unknown extra flag bits also present"));
3761 get_osabi_name (Filedata
* filedata
, unsigned int osabi
)
3763 static char buff
[32];
3767 case ELFOSABI_NONE
: return "UNIX - System V";
3768 case ELFOSABI_HPUX
: return "UNIX - HP-UX";
3769 case ELFOSABI_NETBSD
: return "UNIX - NetBSD";
3770 case ELFOSABI_GNU
: return "UNIX - GNU";
3771 case ELFOSABI_SOLARIS
: return "UNIX - Solaris";
3772 case ELFOSABI_AIX
: return "UNIX - AIX";
3773 case ELFOSABI_IRIX
: return "UNIX - IRIX";
3774 case ELFOSABI_FREEBSD
: return "UNIX - FreeBSD";
3775 case ELFOSABI_TRU64
: return "UNIX - TRU64";
3776 case ELFOSABI_MODESTO
: return "Novell - Modesto";
3777 case ELFOSABI_OPENBSD
: return "UNIX - OpenBSD";
3778 case ELFOSABI_OPENVMS
: return "VMS - OpenVMS";
3779 case ELFOSABI_NSK
: return "HP - Non-Stop Kernel";
3780 case ELFOSABI_AROS
: return "AROS";
3781 case ELFOSABI_FENIXOS
: return "FenixOS";
3782 case ELFOSABI_CLOUDABI
: return "Nuxi CloudABI";
3783 case ELFOSABI_OPENVOS
: return "Stratus Technologies OpenVOS";
3786 switch (filedata
->file_header
.e_machine
)
3791 case ELFOSABI_ARM
: return "ARM";
3792 case ELFOSABI_ARM_FDPIC
: return "ARM FDPIC";
3803 case ELFOSABI_STANDALONE
: return _("Standalone App");
3812 case ELFOSABI_C6000_ELFABI
: return _("Bare-metal C6000");
3813 case ELFOSABI_C6000_LINUX
: return "Linux C6000";
3822 snprintf (buff
, sizeof (buff
), _("<unknown: %x>"), osabi
);
3828 get_aarch64_segment_type (unsigned long type
)
3832 case PT_AARCH64_ARCHEXT
: return "AARCH64_ARCHEXT";
3833 default: return NULL
;
3838 get_arm_segment_type (unsigned long type
)
3842 case PT_ARM_EXIDX
: return "EXIDX";
3843 default: return NULL
;
3848 get_s390_segment_type (unsigned long type
)
3852 case PT_S390_PGSTE
: return "S390_PGSTE";
3853 default: return NULL
;
3858 get_mips_segment_type (unsigned long type
)
3862 case PT_MIPS_REGINFO
: return "REGINFO";
3863 case PT_MIPS_RTPROC
: return "RTPROC";
3864 case PT_MIPS_OPTIONS
: return "OPTIONS";
3865 case PT_MIPS_ABIFLAGS
: return "ABIFLAGS";
3866 default: return NULL
;
3871 get_parisc_segment_type (unsigned long type
)
3875 case PT_PARISC_ARCHEXT
: return "PARISC_ARCHEXT";
3876 case PT_PARISC_UNWIND
: return "PARISC_UNWIND";
3877 case PT_PARISC_WEAKORDER
: return "PARISC_WEAKORDER";
3878 default: return NULL
;
3883 get_ia64_segment_type (unsigned long type
)
3887 case PT_IA_64_ARCHEXT
: return "IA_64_ARCHEXT";
3888 case PT_IA_64_UNWIND
: return "IA_64_UNWIND";
3889 default: return NULL
;
3894 get_tic6x_segment_type (unsigned long type
)
3898 case PT_C6000_PHATTR
: return "C6000_PHATTR";
3899 default: return NULL
;
3904 get_hpux_segment_type (unsigned long type
, unsigned e_machine
)
3906 if (e_machine
== EM_PARISC
)
3909 case PT_HP_TLS
: return "HP_TLS";
3910 case PT_HP_CORE_NONE
: return "HP_CORE_NONE";
3911 case PT_HP_CORE_VERSION
: return "HP_CORE_VERSION";
3912 case PT_HP_CORE_KERNEL
: return "HP_CORE_KERNEL";
3913 case PT_HP_CORE_COMM
: return "HP_CORE_COMM";
3914 case PT_HP_CORE_PROC
: return "HP_CORE_PROC";
3915 case PT_HP_CORE_LOADABLE
: return "HP_CORE_LOADABLE";
3916 case PT_HP_CORE_STACK
: return "HP_CORE_STACK";
3917 case PT_HP_CORE_SHM
: return "HP_CORE_SHM";
3918 case PT_HP_CORE_MMF
: return "HP_CORE_MMF";
3919 case PT_HP_PARALLEL
: return "HP_PARALLEL";
3920 case PT_HP_FASTBIND
: return "HP_FASTBIND";
3921 case PT_HP_OPT_ANNOT
: return "HP_OPT_ANNOT";
3922 case PT_HP_HSL_ANNOT
: return "HP_HSL_ANNOT";
3923 case PT_HP_STACK
: return "HP_STACK";
3924 case PT_HP_CORE_UTSNAME
: return "HP_CORE_UTSNAME";
3925 default: return NULL
;
3928 if (e_machine
== EM_IA_64
)
3931 case PT_HP_TLS
: return "HP_TLS";
3932 case PT_IA_64_HP_OPT_ANOT
: return "HP_OPT_ANNOT";
3933 case PT_IA_64_HP_HSL_ANOT
: return "HP_HSL_ANNOT";
3934 case PT_IA_64_HP_STACK
: return "HP_STACK";
3935 default: return NULL
;
3942 get_solaris_segment_type (unsigned long type
)
3946 case 0x6464e550: return "PT_SUNW_UNWIND";
3947 case 0x6474e550: return "PT_SUNW_EH_FRAME";
3948 case 0x6ffffff7: return "PT_LOSUNW";
3949 case 0x6ffffffa: return "PT_SUNWBSS";
3950 case 0x6ffffffb: return "PT_SUNWSTACK";
3951 case 0x6ffffffc: return "PT_SUNWDTRACE";
3952 case 0x6ffffffd: return "PT_SUNWCAP";
3953 case 0x6fffffff: return "PT_HISUNW";
3954 default: return NULL
;
3959 get_segment_type (Filedata
* filedata
, unsigned long p_type
)
3961 static char buff
[32];
3965 case PT_NULL
: return "NULL";
3966 case PT_LOAD
: return "LOAD";
3967 case PT_DYNAMIC
: return "DYNAMIC";
3968 case PT_INTERP
: return "INTERP";
3969 case PT_NOTE
: return "NOTE";
3970 case PT_SHLIB
: return "SHLIB";
3971 case PT_PHDR
: return "PHDR";
3972 case PT_TLS
: return "TLS";
3973 case PT_GNU_EH_FRAME
: return "GNU_EH_FRAME";
3974 case PT_GNU_STACK
: return "GNU_STACK";
3975 case PT_GNU_RELRO
: return "GNU_RELRO";
3976 case PT_GNU_PROPERTY
: return "GNU_PROPERTY";
3979 if ((p_type
>= PT_LOPROC
) && (p_type
<= PT_HIPROC
))
3981 const char * result
;
3983 switch (filedata
->file_header
.e_machine
)
3986 result
= get_aarch64_segment_type (p_type
);
3989 result
= get_arm_segment_type (p_type
);
3992 case EM_MIPS_RS3_LE
:
3993 result
= get_mips_segment_type (p_type
);
3996 result
= get_parisc_segment_type (p_type
);
3999 result
= get_ia64_segment_type (p_type
);
4002 result
= get_tic6x_segment_type (p_type
);
4006 result
= get_s390_segment_type (p_type
);
4016 sprintf (buff
, "LOPROC+%#lx", p_type
- PT_LOPROC
);
4018 else if ((p_type
>= PT_LOOS
) && (p_type
<= PT_HIOS
))
4020 const char * result
= NULL
;
4022 switch (filedata
->file_header
.e_ident
[EI_OSABI
])
4025 case ELFOSABI_FREEBSD
:
4026 if (p_type
>= PT_GNU_MBIND_LO
&& p_type
<= PT_GNU_MBIND_HI
)
4028 sprintf (buff
, "GNU_MBIND+%#lx", p_type
- PT_GNU_MBIND_LO
);
4033 result
= get_hpux_segment_type (p_type
,
4034 filedata
->file_header
.e_machine
);
4036 case ELFOSABI_SOLARIS
:
4037 result
= get_solaris_segment_type (p_type
);
4045 sprintf (buff
, "LOOS+%#lx", p_type
- PT_LOOS
);
4048 snprintf (buff
, sizeof (buff
), _("<unknown>: %lx"), p_type
);
4055 get_arc_section_type_name (unsigned int sh_type
)
4059 case SHT_ARC_ATTRIBUTES
: return "ARC_ATTRIBUTES";
4067 get_mips_section_type_name (unsigned int sh_type
)
4071 case SHT_MIPS_LIBLIST
: return "MIPS_LIBLIST";
4072 case SHT_MIPS_MSYM
: return "MIPS_MSYM";
4073 case SHT_MIPS_CONFLICT
: return "MIPS_CONFLICT";
4074 case SHT_MIPS_GPTAB
: return "MIPS_GPTAB";
4075 case SHT_MIPS_UCODE
: return "MIPS_UCODE";
4076 case SHT_MIPS_DEBUG
: return "MIPS_DEBUG";
4077 case SHT_MIPS_REGINFO
: return "MIPS_REGINFO";
4078 case SHT_MIPS_PACKAGE
: return "MIPS_PACKAGE";
4079 case SHT_MIPS_PACKSYM
: return "MIPS_PACKSYM";
4080 case SHT_MIPS_RELD
: return "MIPS_RELD";
4081 case SHT_MIPS_IFACE
: return "MIPS_IFACE";
4082 case SHT_MIPS_CONTENT
: return "MIPS_CONTENT";
4083 case SHT_MIPS_OPTIONS
: return "MIPS_OPTIONS";
4084 case SHT_MIPS_SHDR
: return "MIPS_SHDR";
4085 case SHT_MIPS_FDESC
: return "MIPS_FDESC";
4086 case SHT_MIPS_EXTSYM
: return "MIPS_EXTSYM";
4087 case SHT_MIPS_DENSE
: return "MIPS_DENSE";
4088 case SHT_MIPS_PDESC
: return "MIPS_PDESC";
4089 case SHT_MIPS_LOCSYM
: return "MIPS_LOCSYM";
4090 case SHT_MIPS_AUXSYM
: return "MIPS_AUXSYM";
4091 case SHT_MIPS_OPTSYM
: return "MIPS_OPTSYM";
4092 case SHT_MIPS_LOCSTR
: return "MIPS_LOCSTR";
4093 case SHT_MIPS_LINE
: return "MIPS_LINE";
4094 case SHT_MIPS_RFDESC
: return "MIPS_RFDESC";
4095 case SHT_MIPS_DELTASYM
: return "MIPS_DELTASYM";
4096 case SHT_MIPS_DELTAINST
: return "MIPS_DELTAINST";
4097 case SHT_MIPS_DELTACLASS
: return "MIPS_DELTACLASS";
4098 case SHT_MIPS_DWARF
: return "MIPS_DWARF";
4099 case SHT_MIPS_DELTADECL
: return "MIPS_DELTADECL";
4100 case SHT_MIPS_SYMBOL_LIB
: return "MIPS_SYMBOL_LIB";
4101 case SHT_MIPS_EVENTS
: return "MIPS_EVENTS";
4102 case SHT_MIPS_TRANSLATE
: return "MIPS_TRANSLATE";
4103 case SHT_MIPS_PIXIE
: return "MIPS_PIXIE";
4104 case SHT_MIPS_XLATE
: return "MIPS_XLATE";
4105 case SHT_MIPS_XLATE_DEBUG
: return "MIPS_XLATE_DEBUG";
4106 case SHT_MIPS_WHIRL
: return "MIPS_WHIRL";
4107 case SHT_MIPS_EH_REGION
: return "MIPS_EH_REGION";
4108 case SHT_MIPS_XLATE_OLD
: return "MIPS_XLATE_OLD";
4109 case SHT_MIPS_PDR_EXCEPTION
: return "MIPS_PDR_EXCEPTION";
4110 case SHT_MIPS_ABIFLAGS
: return "MIPS_ABIFLAGS";
4111 case SHT_MIPS_XHASH
: return "MIPS_XHASH";
4119 get_parisc_section_type_name (unsigned int sh_type
)
4123 case SHT_PARISC_EXT
: return "PARISC_EXT";
4124 case SHT_PARISC_UNWIND
: return "PARISC_UNWIND";
4125 case SHT_PARISC_DOC
: return "PARISC_DOC";
4126 case SHT_PARISC_ANNOT
: return "PARISC_ANNOT";
4127 case SHT_PARISC_SYMEXTN
: return "PARISC_SYMEXTN";
4128 case SHT_PARISC_STUBS
: return "PARISC_STUBS";
4129 case SHT_PARISC_DLKM
: return "PARISC_DLKM";
4130 default: return NULL
;
4135 get_ia64_section_type_name (Filedata
* filedata
, unsigned int sh_type
)
4137 /* If the top 8 bits are 0x78 the next 8 are the os/abi ID. */
4138 if ((sh_type
& 0xFF000000) == SHT_IA_64_LOPSREG
)
4139 return get_osabi_name (filedata
, (sh_type
& 0x00FF0000) >> 16);
4143 case SHT_IA_64_EXT
: return "IA_64_EXT";
4144 case SHT_IA_64_UNWIND
: return "IA_64_UNWIND";
4145 case SHT_IA_64_PRIORITY_INIT
: return "IA_64_PRIORITY_INIT";
4146 case SHT_IA_64_VMS_TRACE
: return "VMS_TRACE";
4147 case SHT_IA_64_VMS_TIE_SIGNATURES
: return "VMS_TIE_SIGNATURES";
4148 case SHT_IA_64_VMS_DEBUG
: return "VMS_DEBUG";
4149 case SHT_IA_64_VMS_DEBUG_STR
: return "VMS_DEBUG_STR";
4150 case SHT_IA_64_VMS_LINKAGES
: return "VMS_LINKAGES";
4151 case SHT_IA_64_VMS_SYMBOL_VECTOR
: return "VMS_SYMBOL_VECTOR";
4152 case SHT_IA_64_VMS_FIXUP
: return "VMS_FIXUP";
4160 get_x86_64_section_type_name (unsigned int sh_type
)
4164 case SHT_X86_64_UNWIND
: return "X86_64_UNWIND";
4165 default: return NULL
;
4170 get_aarch64_section_type_name (unsigned int sh_type
)
4174 case SHT_AARCH64_ATTRIBUTES
: return "AARCH64_ATTRIBUTES";
4175 default: return NULL
;
4180 get_arm_section_type_name (unsigned int sh_type
)
4184 case SHT_ARM_EXIDX
: return "ARM_EXIDX";
4185 case SHT_ARM_PREEMPTMAP
: return "ARM_PREEMPTMAP";
4186 case SHT_ARM_ATTRIBUTES
: return "ARM_ATTRIBUTES";
4187 case SHT_ARM_DEBUGOVERLAY
: return "ARM_DEBUGOVERLAY";
4188 case SHT_ARM_OVERLAYSECTION
: return "ARM_OVERLAYSECTION";
4189 default: return NULL
;
4194 get_tic6x_section_type_name (unsigned int sh_type
)
4198 case SHT_C6000_UNWIND
: return "C6000_UNWIND";
4199 case SHT_C6000_PREEMPTMAP
: return "C6000_PREEMPTMAP";
4200 case SHT_C6000_ATTRIBUTES
: return "C6000_ATTRIBUTES";
4201 case SHT_TI_ICODE
: return "TI_ICODE";
4202 case SHT_TI_XREF
: return "TI_XREF";
4203 case SHT_TI_HANDLER
: return "TI_HANDLER";
4204 case SHT_TI_INITINFO
: return "TI_INITINFO";
4205 case SHT_TI_PHATTRS
: return "TI_PHATTRS";
4206 default: return NULL
;
4211 get_msp430x_section_type_name (unsigned int sh_type
)
4215 case SHT_MSP430_SEC_FLAGS
: return "MSP430_SEC_FLAGS";
4216 case SHT_MSP430_SYM_ALIASES
: return "MSP430_SYM_ALIASES";
4217 case SHT_MSP430_ATTRIBUTES
: return "MSP430_ATTRIBUTES";
4218 default: return NULL
;
4223 get_nfp_section_type_name (unsigned int sh_type
)
4227 case SHT_NFP_MECONFIG
: return "NFP_MECONFIG";
4228 case SHT_NFP_INITREG
: return "NFP_INITREG";
4229 case SHT_NFP_UDEBUG
: return "NFP_UDEBUG";
4230 default: return NULL
;
4235 get_v850_section_type_name (unsigned int sh_type
)
4239 case SHT_V850_SCOMMON
: return "V850 Small Common";
4240 case SHT_V850_TCOMMON
: return "V850 Tiny Common";
4241 case SHT_V850_ZCOMMON
: return "V850 Zero Common";
4242 case SHT_RENESAS_IOP
: return "RENESAS IOP";
4243 case SHT_RENESAS_INFO
: return "RENESAS INFO";
4244 default: return NULL
;
4249 get_riscv_section_type_name (unsigned int sh_type
)
4253 case SHT_RISCV_ATTRIBUTES
: return "RISCV_ATTRIBUTES";
4254 default: return NULL
;
4259 get_section_type_name (Filedata
* filedata
, unsigned int sh_type
)
4261 static char buff
[32];
4262 const char * result
;
4266 case SHT_NULL
: return "NULL";
4267 case SHT_PROGBITS
: return "PROGBITS";
4268 case SHT_SYMTAB
: return "SYMTAB";
4269 case SHT_STRTAB
: return "STRTAB";
4270 case SHT_RELA
: return "RELA";
4271 case SHT_HASH
: return "HASH";
4272 case SHT_DYNAMIC
: return "DYNAMIC";
4273 case SHT_NOTE
: return "NOTE";
4274 case SHT_NOBITS
: return "NOBITS";
4275 case SHT_REL
: return "REL";
4276 case SHT_SHLIB
: return "SHLIB";
4277 case SHT_DYNSYM
: return "DYNSYM";
4278 case SHT_INIT_ARRAY
: return "INIT_ARRAY";
4279 case SHT_FINI_ARRAY
: return "FINI_ARRAY";
4280 case SHT_PREINIT_ARRAY
: return "PREINIT_ARRAY";
4281 case SHT_GNU_HASH
: return "GNU_HASH";
4282 case SHT_GROUP
: return "GROUP";
4283 case SHT_SYMTAB_SHNDX
: return "SYMTAB SECTION INDICES";
4284 case SHT_GNU_verdef
: return "VERDEF";
4285 case SHT_GNU_verneed
: return "VERNEED";
4286 case SHT_GNU_versym
: return "VERSYM";
4287 case 0x6ffffff0: return "VERSYM";
4288 case 0x6ffffffc: return "VERDEF";
4289 case 0x7ffffffd: return "AUXILIARY";
4290 case 0x7fffffff: return "FILTER";
4291 case SHT_GNU_LIBLIST
: return "GNU_LIBLIST";
4294 if ((sh_type
>= SHT_LOPROC
) && (sh_type
<= SHT_HIPROC
))
4296 switch (filedata
->file_header
.e_machine
)
4299 case EM_ARC_COMPACT
:
4300 case EM_ARC_COMPACT2
:
4301 result
= get_arc_section_type_name (sh_type
);
4304 case EM_MIPS_RS3_LE
:
4305 result
= get_mips_section_type_name (sh_type
);
4308 result
= get_parisc_section_type_name (sh_type
);
4311 result
= get_ia64_section_type_name (filedata
, sh_type
);
4316 result
= get_x86_64_section_type_name (sh_type
);
4319 result
= get_aarch64_section_type_name (sh_type
);
4322 result
= get_arm_section_type_name (sh_type
);
4325 result
= get_tic6x_section_type_name (sh_type
);
4328 result
= get_msp430x_section_type_name (sh_type
);
4331 result
= get_nfp_section_type_name (sh_type
);
4335 case EM_CYGNUS_V850
:
4336 result
= get_v850_section_type_name (sh_type
);
4339 result
= get_riscv_section_type_name (sh_type
);
4349 sprintf (buff
, "LOPROC+%#x", sh_type
- SHT_LOPROC
);
4351 else if ((sh_type
>= SHT_LOOS
) && (sh_type
<= SHT_HIOS
))
4353 switch (filedata
->file_header
.e_machine
)
4356 result
= get_ia64_section_type_name (filedata
, sh_type
);
4359 if (filedata
->file_header
.e_ident
[EI_OSABI
] == ELFOSABI_SOLARIS
)
4360 result
= get_solaris_section_type (sh_type
);
4365 case SHT_GNU_INCREMENTAL_INPUTS
: result
= "GNU_INCREMENTAL_INPUTS"; break;
4366 case SHT_GNU_ATTRIBUTES
: result
= "GNU_ATTRIBUTES"; break;
4367 case SHT_GNU_HASH
: result
= "GNU_HASH"; break;
4368 case SHT_GNU_LIBLIST
: result
= "GNU_LIBLIST"; break;
4380 sprintf (buff
, "LOOS+%#x", sh_type
- SHT_LOOS
);
4382 else if ((sh_type
>= SHT_LOUSER
) && (sh_type
<= SHT_HIUSER
))
4384 switch (filedata
->file_header
.e_machine
)
4388 case EM_CYGNUS_V850
:
4389 result
= get_v850_section_type_name (sh_type
);
4399 sprintf (buff
, "LOUSER+%#x", sh_type
- SHT_LOUSER
);
4402 /* This message is probably going to be displayed in a 15
4403 character wide field, so put the hex value first. */
4404 snprintf (buff
, sizeof (buff
), _("%08x: <unknown>"), sh_type
);
4410 #define OPTION_DEBUG_DUMP 512
4411 #define OPTION_DYN_SYMS 513
4412 #define OPTION_DWARF_DEPTH 514
4413 #define OPTION_DWARF_START 515
4414 #define OPTION_DWARF_CHECK 516
4415 #define OPTION_CTF_DUMP 517
4416 #define OPTION_CTF_PARENT 518
4417 #define OPTION_CTF_SYMBOLS 519
4418 #define OPTION_CTF_STRINGS 520
4420 static struct option options
[] =
4422 {"all", no_argument
, 0, 'a'},
4423 {"file-header", no_argument
, 0, 'h'},
4424 {"program-headers", no_argument
, 0, 'l'},
4425 {"headers", no_argument
, 0, 'e'},
4426 {"histogram", no_argument
, 0, 'I'},
4427 {"segments", no_argument
, 0, 'l'},
4428 {"sections", no_argument
, 0, 'S'},
4429 {"section-headers", no_argument
, 0, 'S'},
4430 {"section-groups", no_argument
, 0, 'g'},
4431 {"section-details", no_argument
, 0, 't'},
4432 {"full-section-name",no_argument
, 0, 'N'},
4433 {"symbols", no_argument
, 0, 's'},
4434 {"syms", no_argument
, 0, 's'},
4435 {"dyn-syms", no_argument
, 0, OPTION_DYN_SYMS
},
4436 {"relocs", no_argument
, 0, 'r'},
4437 {"notes", no_argument
, 0, 'n'},
4438 {"dynamic", no_argument
, 0, 'd'},
4439 {"arch-specific", no_argument
, 0, 'A'},
4440 {"version-info", no_argument
, 0, 'V'},
4441 {"use-dynamic", no_argument
, 0, 'D'},
4442 {"unwind", no_argument
, 0, 'u'},
4443 {"archive-index", no_argument
, 0, 'c'},
4444 {"hex-dump", required_argument
, 0, 'x'},
4445 {"relocated-dump", required_argument
, 0, 'R'},
4446 {"string-dump", required_argument
, 0, 'p'},
4447 {"decompress", no_argument
, 0, 'z'},
4448 #ifdef SUPPORT_DISASSEMBLY
4449 {"instruction-dump", required_argument
, 0, 'i'},
4451 {"debug-dump", optional_argument
, 0, OPTION_DEBUG_DUMP
},
4453 {"dwarf-depth", required_argument
, 0, OPTION_DWARF_DEPTH
},
4454 {"dwarf-start", required_argument
, 0, OPTION_DWARF_START
},
4455 {"dwarf-check", no_argument
, 0, OPTION_DWARF_CHECK
},
4457 {"ctf", required_argument
, 0, OPTION_CTF_DUMP
},
4459 {"ctf-symbols", required_argument
, 0, OPTION_CTF_SYMBOLS
},
4460 {"ctf-strings", required_argument
, 0, OPTION_CTF_STRINGS
},
4461 {"ctf-parent", required_argument
, 0, OPTION_CTF_PARENT
},
4463 {"version", no_argument
, 0, 'v'},
4464 {"wide", no_argument
, 0, 'W'},
4465 {"help", no_argument
, 0, 'H'},
4466 {0, no_argument
, 0, 0}
4470 usage (FILE * stream
)
4472 fprintf (stream
, _("Usage: readelf <option(s)> elf-file(s)\n"));
4473 fprintf (stream
, _(" Display information about the contents of ELF format files\n"));
4474 fprintf (stream
, _(" Options are:\n\
4475 -a --all Equivalent to: -h -l -S -s -r -d -V -A -I\n\
4476 -h --file-header Display the ELF file header\n\
4477 -l --program-headers Display the program headers\n\
4478 --segments An alias for --program-headers\n\
4479 -S --section-headers Display the sections' header\n\
4480 --sections An alias for --section-headers\n\
4481 -g --section-groups Display the section groups\n\
4482 -t --section-details Display the section details\n\
4483 -e --headers Equivalent to: -h -l -S\n\
4484 -s --syms Display the symbol table\n\
4485 --symbols An alias for --syms\n\
4486 --dyn-syms Display the dynamic symbol table\n\
4487 -n --notes Display the core notes (if present)\n\
4488 -r --relocs Display the relocations (if present)\n\
4489 -u --unwind Display the unwind info (if present)\n\
4490 -d --dynamic Display the dynamic section (if present)\n\
4491 -V --version-info Display the version sections (if present)\n\
4492 -A --arch-specific Display architecture specific information (if any)\n\
4493 -c --archive-index Display the symbol/file index in an archive\n\
4494 -D --use-dynamic Use the dynamic section info when displaying symbols\n\
4495 -x --hex-dump=<number|name>\n\
4496 Dump the contents of section <number|name> as bytes\n\
4497 -p --string-dump=<number|name>\n\
4498 Dump the contents of section <number|name> as strings\n\
4499 -R --relocated-dump=<number|name>\n\
4500 Dump the contents of section <number|name> as relocated bytes\n\
4501 -z --decompress Decompress section before dumping it\n\
4502 -w[lLiaprmfFsoRtUuTgAckK] or\n\
4503 --debug-dump[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,\n\
4504 =frames-interp,=str,=loc,=Ranges,=pubtypes,\n\
4505 =gdb_index,=trace_info,=trace_abbrev,=trace_aranges,\n\
4506 =addr,=cu_index,=links,=follow-links]\n\
4507 Display the contents of DWARF debug sections\n"));
4508 fprintf (stream
, _("\
4509 --dwarf-depth=N Do not display DIEs at depth N or greater\n\
4510 --dwarf-start=N Display DIEs starting with N, at the same depth\n\
4512 fprintf (stream
, _("\
4513 --ctf=<number|name> Display CTF info from section <number|name>\n\
4514 --ctf-parent=<number|name>\n\
4515 Use section <number|name> as the CTF parent\n\n\
4516 --ctf-symbols=<number|name>\n\
4517 Use section <number|name> as the CTF external symtab\n\n\
4518 --ctf-strings=<number|name>\n\
4519 Use section <number|name> as the CTF external strtab\n\n"));
4521 #ifdef SUPPORT_DISASSEMBLY
4522 fprintf (stream
, _("\
4523 -i --instruction-dump=<number|name>\n\
4524 Disassemble the contents of section <number|name>\n"));
4526 fprintf (stream
, _("\
4527 -I --histogram Display histogram of bucket list lengths\n\
4528 -W --wide Allow output width to exceed 80 characters\n\
4529 @<file> Read options from <file>\n\
4530 -H --help Display this information\n\
4531 -v --version Display the version number of readelf\n"));
4533 if (REPORT_BUGS_TO
[0] && stream
== stdout
)
4534 fprintf (stdout
, _("Report bugs to %s\n"), REPORT_BUGS_TO
);
4536 exit (stream
== stdout
? 0 : 1);
4539 /* Record the fact that the user wants the contents of section number
4540 SECTION to be displayed using the method(s) encoded as flags bits
4541 in TYPE. Note, TYPE can be zero if we are creating the array for
4545 request_dump_bynumber (Filedata
* filedata
, unsigned int section
, dump_type type
)
4547 if (section
>= filedata
->num_dump_sects
)
4549 dump_type
* new_dump_sects
;
4551 new_dump_sects
= (dump_type
*) calloc (section
+ 1,
4552 sizeof (* new_dump_sects
));
4554 if (new_dump_sects
== NULL
)
4555 error (_("Out of memory allocating dump request table.\n"));
4558 if (filedata
->dump_sects
)
4560 /* Copy current flag settings. */
4561 memcpy (new_dump_sects
, filedata
->dump_sects
,
4562 filedata
->num_dump_sects
* sizeof (* new_dump_sects
));
4564 free (filedata
->dump_sects
);
4567 filedata
->dump_sects
= new_dump_sects
;
4568 filedata
->num_dump_sects
= section
+ 1;
4572 if (filedata
->dump_sects
)
4573 filedata
->dump_sects
[section
] |= type
;
4576 /* Request a dump by section name. */
4579 request_dump_byname (const char * section
, dump_type type
)
4581 struct dump_list_entry
* new_request
;
4583 new_request
= (struct dump_list_entry
*)
4584 malloc (sizeof (struct dump_list_entry
));
4586 error (_("Out of memory allocating dump request table.\n"));
4588 new_request
->name
= strdup (section
);
4589 if (!new_request
->name
)
4590 error (_("Out of memory allocating dump request table.\n"));
4592 new_request
->type
= type
;
4594 new_request
->next
= dump_sects_byname
;
4595 dump_sects_byname
= new_request
;
4599 request_dump (Filedata
* filedata
, dump_type type
)
4605 section
= strtoul (optarg
, & cp
, 0);
4607 if (! *cp
&& section
>= 0)
4608 request_dump_bynumber (filedata
, section
, type
);
4610 request_dump_byname (optarg
, type
);
4614 parse_args (Filedata
* filedata
, int argc
, char ** argv
)
4621 while ((c
= getopt_long
4622 (argc
, argv
, "ADHINR:SVWacdeghi:lnp:rstuvw::x:z", options
, NULL
)) != EOF
)
4640 do_section_groups
= TRUE
;
4643 do_histogram
= TRUE
;
4648 do_section_groups
= TRUE
;
4653 do_section_details
= TRUE
;
4664 do_using_dynamic
= TRUE
;
4688 do_histogram
= TRUE
;
4694 do_archive_index
= TRUE
;
4697 request_dump (filedata
, HEX_DUMP
);
4700 request_dump (filedata
, STRING_DUMP
);
4703 request_dump (filedata
, RELOC_DUMP
);
4706 decompress_dumps
= TRUE
;
4712 do_debugging
= TRUE
;
4713 dwarf_select_sections_all ();
4717 do_debugging
= FALSE
;
4718 dwarf_select_sections_by_letters (optarg
);
4721 case OPTION_DEBUG_DUMP
:
4724 do_debugging
= TRUE
;
4727 do_debugging
= FALSE
;
4728 dwarf_select_sections_by_names (optarg
);
4731 case OPTION_DWARF_DEPTH
:
4735 dwarf_cutoff_level
= strtoul (optarg
, & cp
, 0);
4738 case OPTION_DWARF_START
:
4742 dwarf_start_die
= strtoul (optarg
, & cp
, 0);
4745 case OPTION_DWARF_CHECK
:
4748 case OPTION_CTF_DUMP
:
4750 request_dump (filedata
, CTF_DUMP
);
4752 case OPTION_CTF_SYMBOLS
:
4753 dump_ctf_symtab_name
= strdup (optarg
);
4755 case OPTION_CTF_STRINGS
:
4756 dump_ctf_strtab_name
= strdup (optarg
);
4758 case OPTION_CTF_PARENT
:
4759 dump_ctf_parent_name
= strdup (optarg
);
4761 case OPTION_DYN_SYMS
:
4764 #ifdef SUPPORT_DISASSEMBLY
4766 request_dump (filedata
, DISASS_DUMP
);
4770 print_version (program_name
);
4779 /* xgettext:c-format */
4780 error (_("Invalid option '-%c'\n"), c
);
4787 if (!do_dynamic
&& !do_syms
&& !do_reloc
&& !do_unwind
&& !do_sections
4788 && !do_segments
&& !do_header
&& !do_dump
&& !do_version
4789 && !do_histogram
&& !do_debugging
&& !do_arch
&& !do_notes
4790 && !do_section_groups
&& !do_archive_index
4796 get_elf_class (unsigned int elf_class
)
4798 static char buff
[32];
4802 case ELFCLASSNONE
: return _("none");
4803 case ELFCLASS32
: return "ELF32";
4804 case ELFCLASS64
: return "ELF64";
4806 snprintf (buff
, sizeof (buff
), _("<unknown: %x>"), elf_class
);
4812 get_data_encoding (unsigned int encoding
)
4814 static char buff
[32];
4818 case ELFDATANONE
: return _("none");
4819 case ELFDATA2LSB
: return _("2's complement, little endian");
4820 case ELFDATA2MSB
: return _("2's complement, big endian");
4822 snprintf (buff
, sizeof (buff
), _("<unknown: %x>"), encoding
);
4827 /* Decode the data held in 'filedata->file_header'. */
4830 process_file_header (Filedata
* filedata
)
4832 Elf_Internal_Ehdr
* header
= & filedata
->file_header
;
4834 if ( header
->e_ident
[EI_MAG0
] != ELFMAG0
4835 || header
->e_ident
[EI_MAG1
] != ELFMAG1
4836 || header
->e_ident
[EI_MAG2
] != ELFMAG2
4837 || header
->e_ident
[EI_MAG3
] != ELFMAG3
)
4840 (_("Not an ELF file - it has the wrong magic bytes at the start\n"));
4844 init_dwarf_regnames_by_elf_machine_code (header
->e_machine
);
4850 printf (_("ELF Header:\n"));
4851 printf (_(" Magic: "));
4852 for (i
= 0; i
< EI_NIDENT
; i
++)
4853 printf ("%2.2x ", header
->e_ident
[i
]);
4855 printf (_(" Class: %s\n"),
4856 get_elf_class (header
->e_ident
[EI_CLASS
]));
4857 printf (_(" Data: %s\n"),
4858 get_data_encoding (header
->e_ident
[EI_DATA
]));
4859 printf (_(" Version: %d%s\n"),
4860 header
->e_ident
[EI_VERSION
],
4861 (header
->e_ident
[EI_VERSION
] == EV_CURRENT
4863 : (header
->e_ident
[EI_VERSION
] != EV_NONE
4866 printf (_(" OS/ABI: %s\n"),
4867 get_osabi_name (filedata
, header
->e_ident
[EI_OSABI
]));
4868 printf (_(" ABI Version: %d\n"),
4869 header
->e_ident
[EI_ABIVERSION
]);
4870 printf (_(" Type: %s\n"),
4871 get_file_type (header
->e_type
));
4872 printf (_(" Machine: %s\n"),
4873 get_machine_name (header
->e_machine
));
4874 printf (_(" Version: 0x%lx\n"),
4877 printf (_(" Entry point address: "));
4878 print_vma (header
->e_entry
, PREFIX_HEX
);
4879 printf (_("\n Start of program headers: "));
4880 print_vma (header
->e_phoff
, DEC
);
4881 printf (_(" (bytes into file)\n Start of section headers: "));
4882 print_vma (header
->e_shoff
, DEC
);
4883 printf (_(" (bytes into file)\n"));
4885 printf (_(" Flags: 0x%lx%s\n"),
4887 get_machine_flags (filedata
, header
->e_flags
, header
->e_machine
));
4888 printf (_(" Size of this header: %u (bytes)\n"),
4890 printf (_(" Size of program headers: %u (bytes)\n"),
4891 header
->e_phentsize
);
4892 printf (_(" Number of program headers: %u"),
4894 if (filedata
->section_headers
!= NULL
4895 && header
->e_phnum
== PN_XNUM
4896 && filedata
->section_headers
[0].sh_info
!= 0)
4898 header
->e_phnum
= filedata
->section_headers
[0].sh_info
;
4899 printf (" (%u)", header
->e_phnum
);
4901 putc ('\n', stdout
);
4902 printf (_(" Size of section headers: %u (bytes)\n"),
4903 header
->e_shentsize
);
4904 printf (_(" Number of section headers: %u"),
4906 if (filedata
->section_headers
!= NULL
&& header
->e_shnum
== SHN_UNDEF
)
4908 header
->e_shnum
= filedata
->section_headers
[0].sh_size
;
4909 printf (" (%u)", header
->e_shnum
);
4911 putc ('\n', stdout
);
4912 printf (_(" Section header string table index: %u"),
4913 header
->e_shstrndx
);
4914 if (filedata
->section_headers
!= NULL
4915 && header
->e_shstrndx
== (SHN_XINDEX
& 0xffff))
4917 header
->e_shstrndx
= filedata
->section_headers
[0].sh_link
;
4918 printf (" (%u)", header
->e_shstrndx
);
4920 if (header
->e_shstrndx
!= SHN_UNDEF
4921 && header
->e_shstrndx
>= header
->e_shnum
)
4923 header
->e_shstrndx
= SHN_UNDEF
;
4924 printf (_(" <corrupt: out of range>"));
4926 putc ('\n', stdout
);
4929 if (filedata
->section_headers
!= NULL
)
4931 if (header
->e_phnum
== PN_XNUM
4932 && filedata
->section_headers
[0].sh_info
!= 0)
4933 header
->e_phnum
= filedata
->section_headers
[0].sh_info
;
4934 if (header
->e_shnum
== SHN_UNDEF
)
4935 header
->e_shnum
= filedata
->section_headers
[0].sh_size
;
4936 if (header
->e_shstrndx
== (SHN_XINDEX
& 0xffff))
4937 header
->e_shstrndx
= filedata
->section_headers
[0].sh_link
;
4938 if (header
->e_shstrndx
>= header
->e_shnum
)
4939 header
->e_shstrndx
= SHN_UNDEF
;
4940 free (filedata
->section_headers
);
4941 filedata
->section_headers
= NULL
;
4947 /* Read in the program headers from FILEDATA and store them in PHEADERS.
4948 Returns TRUE upon success, FALSE otherwise. Loads 32-bit headers. */
4951 get_32bit_program_headers (Filedata
* filedata
, Elf_Internal_Phdr
* pheaders
)
4953 Elf32_External_Phdr
* phdrs
;
4954 Elf32_External_Phdr
* external
;
4955 Elf_Internal_Phdr
* internal
;
4957 unsigned int size
= filedata
->file_header
.e_phentsize
;
4958 unsigned int num
= filedata
->file_header
.e_phnum
;
4960 /* PR binutils/17531: Cope with unexpected section header sizes. */
4961 if (size
== 0 || num
== 0)
4963 if (size
< sizeof * phdrs
)
4965 error (_("The e_phentsize field in the ELF header is less than the size of an ELF program header\n"));
4968 if (size
> sizeof * phdrs
)
4969 warn (_("The e_phentsize field in the ELF header is larger than the size of an ELF program header\n"));
4971 phdrs
= (Elf32_External_Phdr
*) get_data (NULL
, filedata
, filedata
->file_header
.e_phoff
,
4972 size
, num
, _("program headers"));
4976 for (i
= 0, internal
= pheaders
, external
= phdrs
;
4977 i
< filedata
->file_header
.e_phnum
;
4978 i
++, internal
++, external
++)
4980 internal
->p_type
= BYTE_GET (external
->p_type
);
4981 internal
->p_offset
= BYTE_GET (external
->p_offset
);
4982 internal
->p_vaddr
= BYTE_GET (external
->p_vaddr
);
4983 internal
->p_paddr
= BYTE_GET (external
->p_paddr
);
4984 internal
->p_filesz
= BYTE_GET (external
->p_filesz
);
4985 internal
->p_memsz
= BYTE_GET (external
->p_memsz
);
4986 internal
->p_flags
= BYTE_GET (external
->p_flags
);
4987 internal
->p_align
= BYTE_GET (external
->p_align
);
4994 /* Read in the program headers from FILEDATA and store them in PHEADERS.
4995 Returns TRUE upon success, FALSE otherwise. Loads 64-bit headers. */
4998 get_64bit_program_headers (Filedata
* filedata
, Elf_Internal_Phdr
* pheaders
)
5000 Elf64_External_Phdr
* phdrs
;
5001 Elf64_External_Phdr
* external
;
5002 Elf_Internal_Phdr
* internal
;
5004 unsigned int size
= filedata
->file_header
.e_phentsize
;
5005 unsigned int num
= filedata
->file_header
.e_phnum
;
5007 /* PR binutils/17531: Cope with unexpected section header sizes. */
5008 if (size
== 0 || num
== 0)
5010 if (size
< sizeof * phdrs
)
5012 error (_("The e_phentsize field in the ELF header is less than the size of an ELF program header\n"));
5015 if (size
> sizeof * phdrs
)
5016 warn (_("The e_phentsize field in the ELF header is larger than the size of an ELF program header\n"));
5018 phdrs
= (Elf64_External_Phdr
*) get_data (NULL
, filedata
, filedata
->file_header
.e_phoff
,
5019 size
, num
, _("program headers"));
5023 for (i
= 0, internal
= pheaders
, external
= phdrs
;
5024 i
< filedata
->file_header
.e_phnum
;
5025 i
++, internal
++, external
++)
5027 internal
->p_type
= BYTE_GET (external
->p_type
);
5028 internal
->p_flags
= BYTE_GET (external
->p_flags
);
5029 internal
->p_offset
= BYTE_GET (external
->p_offset
);
5030 internal
->p_vaddr
= BYTE_GET (external
->p_vaddr
);
5031 internal
->p_paddr
= BYTE_GET (external
->p_paddr
);
5032 internal
->p_filesz
= BYTE_GET (external
->p_filesz
);
5033 internal
->p_memsz
= BYTE_GET (external
->p_memsz
);
5034 internal
->p_align
= BYTE_GET (external
->p_align
);
5041 /* Returns TRUE if the program headers were read into `program_headers'. */
5044 get_program_headers (Filedata
* filedata
)
5046 Elf_Internal_Phdr
* phdrs
;
5048 /* Check cache of prior read. */
5049 if (filedata
->program_headers
!= NULL
)
5052 /* Be kind to memory checkers by looking for
5053 e_phnum values which we know must be invalid. */
5054 if (filedata
->file_header
.e_phnum
5055 * (is_32bit_elf
? sizeof (Elf32_External_Phdr
) : sizeof (Elf64_External_Phdr
))
5056 >= filedata
->file_size
)
5058 error (_("Too many program headers - %#x - the file is not that big\n"),
5059 filedata
->file_header
.e_phnum
);
5063 phdrs
= (Elf_Internal_Phdr
*) cmalloc (filedata
->file_header
.e_phnum
,
5064 sizeof (Elf_Internal_Phdr
));
5067 error (_("Out of memory reading %u program headers\n"),
5068 filedata
->file_header
.e_phnum
);
5073 ? get_32bit_program_headers (filedata
, phdrs
)
5074 : get_64bit_program_headers (filedata
, phdrs
))
5076 filedata
->program_headers
= phdrs
;
5084 /* Returns TRUE if the program headers were loaded. */
5087 process_program_headers (Filedata
* filedata
)
5089 Elf_Internal_Phdr
* segment
;
5091 Elf_Internal_Phdr
* previous_load
= NULL
;
5096 if (filedata
->file_header
.e_phnum
== 0)
5098 /* PR binutils/12467. */
5099 if (filedata
->file_header
.e_phoff
!= 0)
5101 warn (_("possibly corrupt ELF header - it has a non-zero program"
5102 " header offset, but no program headers\n"));
5105 else if (do_segments
)
5106 printf (_("\nThere are no program headers in this file.\n"));
5110 if (do_segments
&& !do_header
)
5112 printf (_("\nElf file type is %s\n"), get_file_type (filedata
->file_header
.e_type
));
5113 printf (_("Entry point 0x%s\n"), bfd_vmatoa ("x", filedata
->file_header
.e_entry
));
5114 printf (ngettext ("There is %d program header, starting at offset %s\n",
5115 "There are %d program headers, starting at offset %s\n",
5116 filedata
->file_header
.e_phnum
),
5117 filedata
->file_header
.e_phnum
,
5118 bfd_vmatoa ("u", filedata
->file_header
.e_phoff
));
5121 if (! get_program_headers (filedata
))
5126 if (filedata
->file_header
.e_phnum
> 1)
5127 printf (_("\nProgram Headers:\n"));
5129 printf (_("\nProgram Headers:\n"));
5133 (_(" Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align\n"));
5136 (_(" Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align\n"));
5140 (_(" Type Offset VirtAddr PhysAddr\n"));
5142 (_(" FileSiz MemSiz Flags Align\n"));
5146 for (i
= 0, segment
= filedata
->program_headers
;
5147 i
< filedata
->file_header
.e_phnum
;
5152 printf (" %-14.14s ", get_segment_type (filedata
, segment
->p_type
));
5156 printf ("0x%6.6lx ", (unsigned long) segment
->p_offset
);
5157 printf ("0x%8.8lx ", (unsigned long) segment
->p_vaddr
);
5158 printf ("0x%8.8lx ", (unsigned long) segment
->p_paddr
);
5159 printf ("0x%5.5lx ", (unsigned long) segment
->p_filesz
);
5160 printf ("0x%5.5lx ", (unsigned long) segment
->p_memsz
);
5162 (segment
->p_flags
& PF_R
? 'R' : ' '),
5163 (segment
->p_flags
& PF_W
? 'W' : ' '),
5164 (segment
->p_flags
& PF_X
? 'E' : ' '));
5165 printf ("%#lx", (unsigned long) segment
->p_align
);
5169 if ((unsigned long) segment
->p_offset
== segment
->p_offset
)
5170 printf ("0x%6.6lx ", (unsigned long) segment
->p_offset
);
5173 print_vma (segment
->p_offset
, FULL_HEX
);
5177 print_vma (segment
->p_vaddr
, FULL_HEX
);
5179 print_vma (segment
->p_paddr
, FULL_HEX
);
5182 if ((unsigned long) segment
->p_filesz
== segment
->p_filesz
)
5183 printf ("0x%6.6lx ", (unsigned long) segment
->p_filesz
);
5186 print_vma (segment
->p_filesz
, FULL_HEX
);
5190 if ((unsigned long) segment
->p_memsz
== segment
->p_memsz
)
5191 printf ("0x%6.6lx", (unsigned long) segment
->p_memsz
);
5194 print_vma (segment
->p_memsz
, FULL_HEX
);
5198 (segment
->p_flags
& PF_R
? 'R' : ' '),
5199 (segment
->p_flags
& PF_W
? 'W' : ' '),
5200 (segment
->p_flags
& PF_X
? 'E' : ' '));
5202 if ((unsigned long) segment
->p_align
== segment
->p_align
)
5203 printf ("%#lx", (unsigned long) segment
->p_align
);
5206 print_vma (segment
->p_align
, PREFIX_HEX
);
5211 print_vma (segment
->p_offset
, FULL_HEX
);
5213 print_vma (segment
->p_vaddr
, FULL_HEX
);
5215 print_vma (segment
->p_paddr
, FULL_HEX
);
5217 print_vma (segment
->p_filesz
, FULL_HEX
);
5219 print_vma (segment
->p_memsz
, FULL_HEX
);
5221 (segment
->p_flags
& PF_R
? 'R' : ' '),
5222 (segment
->p_flags
& PF_W
? 'W' : ' '),
5223 (segment
->p_flags
& PF_X
? 'E' : ' '));
5224 print_vma (segment
->p_align
, PREFIX_HEX
);
5227 putc ('\n', stdout
);
5230 switch (segment
->p_type
)
5233 #if 0 /* Do not warn about out of order PT_LOAD segments. Although officially
5234 required by the ELF standard, several programs, including the Linux
5235 kernel, make use of non-ordered segments. */
5237 && previous_load
->p_vaddr
> segment
->p_vaddr
)
5238 error (_("LOAD segments must be sorted in order of increasing VirtAddr\n"));
5240 if (segment
->p_memsz
< segment
->p_filesz
)
5241 error (_("the segment's file size is larger than its memory size\n"));
5242 previous_load
= segment
;
5246 /* PR 20815 - Verify that the program header is loaded into memory. */
5247 if (i
> 0 && previous_load
!= NULL
)
5248 error (_("the PHDR segment must occur before any LOAD segment\n"));
5249 if (filedata
->file_header
.e_machine
!= EM_PARISC
)
5253 for (j
= 1; j
< filedata
->file_header
.e_phnum
; j
++)
5255 Elf_Internal_Phdr
*load
= filedata
->program_headers
+ j
;
5256 if (load
->p_type
== PT_LOAD
5257 && load
->p_offset
<= segment
->p_offset
5258 && (load
->p_offset
+ load
->p_filesz
5259 >= segment
->p_offset
+ segment
->p_filesz
)
5260 && load
->p_vaddr
<= segment
->p_vaddr
5261 && (load
->p_vaddr
+ load
->p_filesz
5262 >= segment
->p_vaddr
+ segment
->p_filesz
))
5265 if (j
== filedata
->file_header
.e_phnum
)
5266 error (_("the PHDR segment is not covered by a LOAD segment\n"));
5272 error (_("more than one dynamic segment\n"));
5274 /* By default, assume that the .dynamic section is the first
5275 section in the DYNAMIC segment. */
5276 dynamic_addr
= segment
->p_offset
;
5277 dynamic_size
= segment
->p_filesz
;
5279 /* Try to locate the .dynamic section. If there is
5280 a section header table, we can easily locate it. */
5281 if (filedata
->section_headers
!= NULL
)
5283 Elf_Internal_Shdr
* sec
;
5285 sec
= find_section (filedata
, ".dynamic");
5286 if (sec
== NULL
|| sec
->sh_size
== 0)
5288 /* A corresponding .dynamic section is expected, but on
5289 IA-64/OpenVMS it is OK for it to be missing. */
5290 if (!is_ia64_vms (filedata
))
5291 error (_("no .dynamic section in the dynamic segment\n"));
5295 if (sec
->sh_type
== SHT_NOBITS
)
5301 dynamic_addr
= sec
->sh_offset
;
5302 dynamic_size
= sec
->sh_size
;
5304 if (dynamic_addr
< segment
->p_offset
5305 || dynamic_addr
> segment
->p_offset
+ segment
->p_filesz
)
5306 warn (_("the .dynamic section is not contained"
5307 " within the dynamic segment\n"));
5308 else if (dynamic_addr
> segment
->p_offset
)
5309 warn (_("the .dynamic section is not the first section"
5310 " in the dynamic segment.\n"));
5313 /* PR binutils/17512: Avoid corrupt dynamic section info in the
5314 segment. Check this after matching against the section headers
5315 so we don't warn on debuginfo file (which have NOBITS .dynamic
5317 if (dynamic_addr
> filedata
->file_size
5318 || dynamic_size
> filedata
->file_size
- dynamic_addr
)
5320 error (_("the dynamic segment offset + size exceeds the size of the file\n"));
5321 dynamic_addr
= dynamic_size
= 0;
5326 if (fseek (filedata
->handle
, archive_file_offset
+ (long) segment
->p_offset
,
5328 error (_("Unable to find program interpreter name\n"));
5332 int ret
= snprintf (fmt
, sizeof (fmt
), "%%%ds", PATH_MAX
- 1);
5334 if (ret
>= (int) sizeof (fmt
) || ret
< 0)
5335 error (_("Internal error: failed to create format string to display program interpreter\n"));
5337 program_interpreter
[0] = 0;
5338 if (fscanf (filedata
->handle
, fmt
, program_interpreter
) <= 0)
5339 error (_("Unable to read program interpreter name\n"));
5342 printf (_(" [Requesting program interpreter: %s]\n"),
5343 program_interpreter
);
5350 && filedata
->section_headers
!= NULL
5351 && filedata
->string_table
!= NULL
)
5353 printf (_("\n Section to Segment mapping:\n"));
5354 printf (_(" Segment Sections...\n"));
5356 for (i
= 0; i
< filedata
->file_header
.e_phnum
; i
++)
5359 Elf_Internal_Shdr
* section
;
5361 segment
= filedata
->program_headers
+ i
;
5362 section
= filedata
->section_headers
+ 1;
5364 printf (" %2.2d ", i
);
5366 for (j
= 1; j
< filedata
->file_header
.e_shnum
; j
++, section
++)
5368 if (!ELF_TBSS_SPECIAL (section
, segment
)
5369 && ELF_SECTION_IN_SEGMENT_STRICT (section
, segment
))
5370 printf ("%s ", printable_section_name (filedata
, section
));
5381 /* Find the file offset corresponding to VMA by using the program headers. */
5384 offset_from_vma (Filedata
* filedata
, bfd_vma vma
, bfd_size_type size
)
5386 Elf_Internal_Phdr
* seg
;
5388 if (! get_program_headers (filedata
))
5390 warn (_("Cannot interpret virtual addresses without program headers.\n"));
5394 for (seg
= filedata
->program_headers
;
5395 seg
< filedata
->program_headers
+ filedata
->file_header
.e_phnum
;
5398 if (seg
->p_type
!= PT_LOAD
)
5401 if (vma
>= (seg
->p_vaddr
& -seg
->p_align
)
5402 && vma
+ size
<= seg
->p_vaddr
+ seg
->p_filesz
)
5403 return vma
- seg
->p_vaddr
+ seg
->p_offset
;
5406 warn (_("Virtual address 0x%lx not located in any PT_LOAD segment.\n"),
5407 (unsigned long) vma
);
5412 /* Allocate memory and load the sections headers into FILEDATA->filedata->section_headers.
5413 If PROBE is true, this is just a probe and we do not generate any error
5414 messages if the load fails. */
5417 get_32bit_section_headers (Filedata
* filedata
, bfd_boolean probe
)
5419 Elf32_External_Shdr
* shdrs
;
5420 Elf_Internal_Shdr
* internal
;
5422 unsigned int size
= filedata
->file_header
.e_shentsize
;
5423 unsigned int num
= probe
? 1 : filedata
->file_header
.e_shnum
;
5425 /* PR binutils/17531: Cope with unexpected section header sizes. */
5426 if (size
== 0 || num
== 0)
5428 if (size
< sizeof * shdrs
)
5431 error (_("The e_shentsize field in the ELF header is less than the size of an ELF section header\n"));
5434 if (!probe
&& size
> sizeof * shdrs
)
5435 warn (_("The e_shentsize field in the ELF header is larger than the size of an ELF section header\n"));
5437 shdrs
= (Elf32_External_Shdr
*) get_data (NULL
, filedata
, filedata
->file_header
.e_shoff
,
5439 probe
? NULL
: _("section headers"));
5443 free (filedata
->section_headers
);
5444 filedata
->section_headers
= (Elf_Internal_Shdr
*)
5445 cmalloc (num
, sizeof (Elf_Internal_Shdr
));
5446 if (filedata
->section_headers
== NULL
)
5449 error (_("Out of memory reading %u section headers\n"), num
);
5454 for (i
= 0, internal
= filedata
->section_headers
;
5458 internal
->sh_name
= BYTE_GET (shdrs
[i
].sh_name
);
5459 internal
->sh_type
= BYTE_GET (shdrs
[i
].sh_type
);
5460 internal
->sh_flags
= BYTE_GET (shdrs
[i
].sh_flags
);
5461 internal
->sh_addr
= BYTE_GET (shdrs
[i
].sh_addr
);
5462 internal
->sh_offset
= BYTE_GET (shdrs
[i
].sh_offset
);
5463 internal
->sh_size
= BYTE_GET (shdrs
[i
].sh_size
);
5464 internal
->sh_link
= BYTE_GET (shdrs
[i
].sh_link
);
5465 internal
->sh_info
= BYTE_GET (shdrs
[i
].sh_info
);
5466 internal
->sh_addralign
= BYTE_GET (shdrs
[i
].sh_addralign
);
5467 internal
->sh_entsize
= BYTE_GET (shdrs
[i
].sh_entsize
);
5468 if (!probe
&& internal
->sh_link
> num
)
5469 warn (_("Section %u has an out of range sh_link value of %u\n"), i
, internal
->sh_link
);
5470 if (!probe
&& internal
->sh_flags
& SHF_INFO_LINK
&& internal
->sh_info
> num
)
5471 warn (_("Section %u has an out of range sh_info value of %u\n"), i
, internal
->sh_info
);
5478 /* Like get_32bit_section_headers, except that it fetches 64-bit headers. */
5481 get_64bit_section_headers (Filedata
* filedata
, bfd_boolean probe
)
5483 Elf64_External_Shdr
* shdrs
;
5484 Elf_Internal_Shdr
* internal
;
5486 unsigned int size
= filedata
->file_header
.e_shentsize
;
5487 unsigned int num
= probe
? 1 : filedata
->file_header
.e_shnum
;
5489 /* PR binutils/17531: Cope with unexpected section header sizes. */
5490 if (size
== 0 || num
== 0)
5493 if (size
< sizeof * shdrs
)
5496 error (_("The e_shentsize field in the ELF header is less than the size of an ELF section header\n"));
5500 if (! probe
&& size
> sizeof * shdrs
)
5501 warn (_("The e_shentsize field in the ELF header is larger than the size of an ELF section header\n"));
5503 shdrs
= (Elf64_External_Shdr
*) get_data (NULL
, filedata
,
5504 filedata
->file_header
.e_shoff
,
5506 probe
? NULL
: _("section headers"));
5510 free (filedata
->section_headers
);
5511 filedata
->section_headers
= (Elf_Internal_Shdr
*)
5512 cmalloc (num
, sizeof (Elf_Internal_Shdr
));
5513 if (filedata
->section_headers
== NULL
)
5516 error (_("Out of memory reading %u section headers\n"), num
);
5521 for (i
= 0, internal
= filedata
->section_headers
;
5525 internal
->sh_name
= BYTE_GET (shdrs
[i
].sh_name
);
5526 internal
->sh_type
= BYTE_GET (shdrs
[i
].sh_type
);
5527 internal
->sh_flags
= BYTE_GET (shdrs
[i
].sh_flags
);
5528 internal
->sh_addr
= BYTE_GET (shdrs
[i
].sh_addr
);
5529 internal
->sh_size
= BYTE_GET (shdrs
[i
].sh_size
);
5530 internal
->sh_entsize
= BYTE_GET (shdrs
[i
].sh_entsize
);
5531 internal
->sh_link
= BYTE_GET (shdrs
[i
].sh_link
);
5532 internal
->sh_info
= BYTE_GET (shdrs
[i
].sh_info
);
5533 internal
->sh_offset
= BYTE_GET (shdrs
[i
].sh_offset
);
5534 internal
->sh_addralign
= BYTE_GET (shdrs
[i
].sh_addralign
);
5535 if (!probe
&& internal
->sh_link
> num
)
5536 warn (_("Section %u has an out of range sh_link value of %u\n"), i
, internal
->sh_link
);
5537 if (!probe
&& internal
->sh_flags
& SHF_INFO_LINK
&& internal
->sh_info
> num
)
5538 warn (_("Section %u has an out of range sh_info value of %u\n"), i
, internal
->sh_info
);
5545 static Elf_Internal_Sym
*
5546 get_32bit_elf_symbols (Filedata
* filedata
,
5547 Elf_Internal_Shdr
* section
,
5548 unsigned long * num_syms_return
)
5550 unsigned long number
= 0;
5551 Elf32_External_Sym
* esyms
= NULL
;
5552 Elf_External_Sym_Shndx
* shndx
= NULL
;
5553 Elf_Internal_Sym
* isyms
= NULL
;
5554 Elf_Internal_Sym
* psym
;
5556 elf_section_list
* entry
;
5558 if (section
->sh_size
== 0)
5560 if (num_syms_return
!= NULL
)
5561 * num_syms_return
= 0;
5565 /* Run some sanity checks first. */
5566 if (section
->sh_entsize
== 0 || section
->sh_entsize
> section
->sh_size
)
5568 error (_("Section %s has an invalid sh_entsize of 0x%lx\n"),
5569 printable_section_name (filedata
, section
),
5570 (unsigned long) section
->sh_entsize
);
5574 if (section
->sh_size
> filedata
->file_size
)
5576 error (_("Section %s has an invalid sh_size of 0x%lx\n"),
5577 printable_section_name (filedata
, section
),
5578 (unsigned long) section
->sh_size
);
5582 number
= section
->sh_size
/ section
->sh_entsize
;
5584 if (number
* sizeof (Elf32_External_Sym
) > section
->sh_size
+ 1)
5586 error (_("Size (0x%lx) of section %s is not a multiple of its sh_entsize (0x%lx)\n"),
5587 (unsigned long) section
->sh_size
,
5588 printable_section_name (filedata
, section
),
5589 (unsigned long) section
->sh_entsize
);
5593 esyms
= (Elf32_External_Sym
*) get_data (NULL
, filedata
, section
->sh_offset
, 1,
5594 section
->sh_size
, _("symbols"));
5599 for (entry
= symtab_shndx_list
; entry
!= NULL
; entry
= entry
->next
)
5601 if (entry
->hdr
->sh_link
!= (unsigned long) (section
- filedata
->section_headers
))
5606 error (_("Multiple symbol table index sections associated with the same symbol section\n"));
5610 shndx
= (Elf_External_Sym_Shndx
*) get_data (NULL
, filedata
,
5611 entry
->hdr
->sh_offset
,
5612 1, entry
->hdr
->sh_size
,
5613 _("symbol table section indices"));
5617 /* PR17531: file: heap-buffer-overflow */
5618 if (entry
->hdr
->sh_size
/ sizeof (Elf_External_Sym_Shndx
) < number
)
5620 error (_("Index section %s has an sh_size of 0x%lx - expected 0x%lx\n"),
5621 printable_section_name (filedata
, entry
->hdr
),
5622 (unsigned long) entry
->hdr
->sh_size
,
5623 (unsigned long) section
->sh_size
);
5628 isyms
= (Elf_Internal_Sym
*) cmalloc (number
, sizeof (Elf_Internal_Sym
));
5632 error (_("Out of memory reading %lu symbols\n"),
5633 (unsigned long) number
);
5637 for (j
= 0, psym
= isyms
; j
< number
; j
++, psym
++)
5639 psym
->st_name
= BYTE_GET (esyms
[j
].st_name
);
5640 psym
->st_value
= BYTE_GET (esyms
[j
].st_value
);
5641 psym
->st_size
= BYTE_GET (esyms
[j
].st_size
);
5642 psym
->st_shndx
= BYTE_GET (esyms
[j
].st_shndx
);
5643 if (psym
->st_shndx
== (SHN_XINDEX
& 0xffff) && shndx
!= NULL
)
5645 = byte_get ((unsigned char *) &shndx
[j
], sizeof (shndx
[j
]));
5646 else if (psym
->st_shndx
>= (SHN_LORESERVE
& 0xffff))
5647 psym
->st_shndx
+= SHN_LORESERVE
- (SHN_LORESERVE
& 0xffff);
5648 psym
->st_info
= BYTE_GET (esyms
[j
].st_info
);
5649 psym
->st_other
= BYTE_GET (esyms
[j
].st_other
);
5656 if (num_syms_return
!= NULL
)
5657 * num_syms_return
= isyms
== NULL
? 0 : number
;
5662 static Elf_Internal_Sym
*
5663 get_64bit_elf_symbols (Filedata
* filedata
,
5664 Elf_Internal_Shdr
* section
,
5665 unsigned long * num_syms_return
)
5667 unsigned long number
= 0;
5668 Elf64_External_Sym
* esyms
= NULL
;
5669 Elf_External_Sym_Shndx
* shndx
= NULL
;
5670 Elf_Internal_Sym
* isyms
= NULL
;
5671 Elf_Internal_Sym
* psym
;
5673 elf_section_list
* entry
;
5675 if (section
->sh_size
== 0)
5677 if (num_syms_return
!= NULL
)
5678 * num_syms_return
= 0;
5682 /* Run some sanity checks first. */
5683 if (section
->sh_entsize
== 0 || section
->sh_entsize
> section
->sh_size
)
5685 error (_("Section %s has an invalid sh_entsize of 0x%lx\n"),
5686 printable_section_name (filedata
, section
),
5687 (unsigned long) section
->sh_entsize
);
5691 if (section
->sh_size
> filedata
->file_size
)
5693 error (_("Section %s has an invalid sh_size of 0x%lx\n"),
5694 printable_section_name (filedata
, section
),
5695 (unsigned long) section
->sh_size
);
5699 number
= section
->sh_size
/ section
->sh_entsize
;
5701 if (number
* sizeof (Elf64_External_Sym
) > section
->sh_size
+ 1)
5703 error (_("Size (0x%lx) of section %s is not a multiple of its sh_entsize (0x%lx)\n"),
5704 (unsigned long) section
->sh_size
,
5705 printable_section_name (filedata
, section
),
5706 (unsigned long) section
->sh_entsize
);
5710 esyms
= (Elf64_External_Sym
*) get_data (NULL
, filedata
, section
->sh_offset
, 1,
5711 section
->sh_size
, _("symbols"));
5716 for (entry
= symtab_shndx_list
; entry
!= NULL
; entry
= entry
->next
)
5718 if (entry
->hdr
->sh_link
!= (unsigned long) (section
- filedata
->section_headers
))
5723 error (_("Multiple symbol table index sections associated with the same symbol section\n"));
5727 shndx
= (Elf_External_Sym_Shndx
*) get_data (NULL
, filedata
,
5728 entry
->hdr
->sh_offset
,
5729 1, entry
->hdr
->sh_size
,
5730 _("symbol table section indices"));
5734 /* PR17531: file: heap-buffer-overflow */
5735 if (entry
->hdr
->sh_size
/ sizeof (Elf_External_Sym_Shndx
) < number
)
5737 error (_("Index section %s has an sh_size of 0x%lx - expected 0x%lx\n"),
5738 printable_section_name (filedata
, entry
->hdr
),
5739 (unsigned long) entry
->hdr
->sh_size
,
5740 (unsigned long) section
->sh_size
);
5745 isyms
= (Elf_Internal_Sym
*) cmalloc (number
, sizeof (Elf_Internal_Sym
));
5749 error (_("Out of memory reading %lu symbols\n"),
5750 (unsigned long) number
);
5754 for (j
= 0, psym
= isyms
; j
< number
; j
++, psym
++)
5756 psym
->st_name
= BYTE_GET (esyms
[j
].st_name
);
5757 psym
->st_info
= BYTE_GET (esyms
[j
].st_info
);
5758 psym
->st_other
= BYTE_GET (esyms
[j
].st_other
);
5759 psym
->st_shndx
= BYTE_GET (esyms
[j
].st_shndx
);
5761 if (psym
->st_shndx
== (SHN_XINDEX
& 0xffff) && shndx
!= NULL
)
5763 = byte_get ((unsigned char *) &shndx
[j
], sizeof (shndx
[j
]));
5764 else if (psym
->st_shndx
>= (SHN_LORESERVE
& 0xffff))
5765 psym
->st_shndx
+= SHN_LORESERVE
- (SHN_LORESERVE
& 0xffff);
5767 psym
->st_value
= BYTE_GET (esyms
[j
].st_value
);
5768 psym
->st_size
= BYTE_GET (esyms
[j
].st_size
);
5775 if (num_syms_return
!= NULL
)
5776 * num_syms_return
= isyms
== NULL
? 0 : number
;
5782 get_elf_section_flags (Filedata
* filedata
, bfd_vma sh_flags
)
5784 static char buff
[1024];
5786 unsigned int field_size
= is_32bit_elf
? 8 : 16;
5788 unsigned int size
= sizeof (buff
) - (field_size
+ 4 + 1);
5789 bfd_vma os_flags
= 0;
5790 bfd_vma proc_flags
= 0;
5791 bfd_vma unknown_flags
= 0;
5799 /* 0 */ { STRING_COMMA_LEN ("WRITE") },
5800 /* 1 */ { STRING_COMMA_LEN ("ALLOC") },
5801 /* 2 */ { STRING_COMMA_LEN ("EXEC") },
5802 /* 3 */ { STRING_COMMA_LEN ("MERGE") },
5803 /* 4 */ { STRING_COMMA_LEN ("STRINGS") },
5804 /* 5 */ { STRING_COMMA_LEN ("INFO LINK") },
5805 /* 6 */ { STRING_COMMA_LEN ("LINK ORDER") },
5806 /* 7 */ { STRING_COMMA_LEN ("OS NONCONF") },
5807 /* 8 */ { STRING_COMMA_LEN ("GROUP") },
5808 /* 9 */ { STRING_COMMA_LEN ("TLS") },
5809 /* IA-64 specific. */
5810 /* 10 */ { STRING_COMMA_LEN ("SHORT") },
5811 /* 11 */ { STRING_COMMA_LEN ("NORECOV") },
5812 /* IA-64 OpenVMS specific. */
5813 /* 12 */ { STRING_COMMA_LEN ("VMS_GLOBAL") },
5814 /* 13 */ { STRING_COMMA_LEN ("VMS_OVERLAID") },
5815 /* 14 */ { STRING_COMMA_LEN ("VMS_SHARED") },
5816 /* 15 */ { STRING_COMMA_LEN ("VMS_VECTOR") },
5817 /* 16 */ { STRING_COMMA_LEN ("VMS_ALLOC_64BIT") },
5818 /* 17 */ { STRING_COMMA_LEN ("VMS_PROTECTED") },
5820 /* 18 */ { STRING_COMMA_LEN ("EXCLUDE") },
5821 /* SPARC specific. */
5822 /* 19 */ { STRING_COMMA_LEN ("ORDERED") },
5823 /* 20 */ { STRING_COMMA_LEN ("COMPRESSED") },
5825 /* 21 */ { STRING_COMMA_LEN ("ENTRYSECT") },
5826 /* 22 */ { STRING_COMMA_LEN ("ARM_PURECODE") },
5827 /* 23 */ { STRING_COMMA_LEN ("COMDEF") },
5829 /* 24 */ { STRING_COMMA_LEN ("GNU_MBIND") },
5831 /* 25 */ { STRING_COMMA_LEN ("VLE") },
5834 if (do_section_details
)
5836 sprintf (buff
, "[%*.*lx]: ",
5837 field_size
, field_size
, (unsigned long) sh_flags
);
5838 p
+= field_size
+ 4;
5845 flag
= sh_flags
& - sh_flags
;
5848 if (do_section_details
)
5852 case SHF_WRITE
: sindex
= 0; break;
5853 case SHF_ALLOC
: sindex
= 1; break;
5854 case SHF_EXECINSTR
: sindex
= 2; break;
5855 case SHF_MERGE
: sindex
= 3; break;
5856 case SHF_STRINGS
: sindex
= 4; break;
5857 case SHF_INFO_LINK
: sindex
= 5; break;
5858 case SHF_LINK_ORDER
: sindex
= 6; break;
5859 case SHF_OS_NONCONFORMING
: sindex
= 7; break;
5860 case SHF_GROUP
: sindex
= 8; break;
5861 case SHF_TLS
: sindex
= 9; break;
5862 case SHF_EXCLUDE
: sindex
= 18; break;
5863 case SHF_COMPRESSED
: sindex
= 20; break;
5864 case SHF_GNU_MBIND
: sindex
= 24; break;
5868 switch (filedata
->file_header
.e_machine
)
5871 if (flag
== SHF_IA_64_SHORT
)
5873 else if (flag
== SHF_IA_64_NORECOV
)
5876 else if (filedata
->file_header
.e_ident
[EI_OSABI
] == ELFOSABI_OPENVMS
)
5879 case SHF_IA_64_VMS_GLOBAL
: sindex
= 12; break;
5880 case SHF_IA_64_VMS_OVERLAID
: sindex
= 13; break;
5881 case SHF_IA_64_VMS_SHARED
: sindex
= 14; break;
5882 case SHF_IA_64_VMS_VECTOR
: sindex
= 15; break;
5883 case SHF_IA_64_VMS_ALLOC_64BIT
: sindex
= 16; break;
5884 case SHF_IA_64_VMS_PROTECTED
: sindex
= 17; break;
5895 case EM_OLD_SPARCV9
:
5896 case EM_SPARC32PLUS
:
5899 if (flag
== SHF_ORDERED
)
5906 case SHF_ENTRYSECT
: sindex
= 21; break;
5907 case SHF_ARM_PURECODE
: sindex
= 22; break;
5908 case SHF_COMDEF
: sindex
= 23; break;
5913 if (flag
== SHF_PPC_VLE
)
5924 if (p
!= buff
+ field_size
+ 4)
5926 if (size
< (10 + 2))
5928 warn (_("Internal error: not enough buffer room for section flag info"));
5929 return _("<unknown>");
5936 size
-= flags
[sindex
].len
;
5937 p
= stpcpy (p
, flags
[sindex
].str
);
5939 else if (flag
& SHF_MASKOS
)
5941 else if (flag
& SHF_MASKPROC
)
5944 unknown_flags
|= flag
;
5950 case SHF_WRITE
: *p
= 'W'; break;
5951 case SHF_ALLOC
: *p
= 'A'; break;
5952 case SHF_EXECINSTR
: *p
= 'X'; break;
5953 case SHF_MERGE
: *p
= 'M'; break;
5954 case SHF_STRINGS
: *p
= 'S'; break;
5955 case SHF_INFO_LINK
: *p
= 'I'; break;
5956 case SHF_LINK_ORDER
: *p
= 'L'; break;
5957 case SHF_OS_NONCONFORMING
: *p
= 'O'; break;
5958 case SHF_GROUP
: *p
= 'G'; break;
5959 case SHF_TLS
: *p
= 'T'; break;
5960 case SHF_EXCLUDE
: *p
= 'E'; break;
5961 case SHF_COMPRESSED
: *p
= 'C'; break;
5962 case SHF_GNU_MBIND
: *p
= 'D'; break;
5965 if ((filedata
->file_header
.e_machine
== EM_X86_64
5966 || filedata
->file_header
.e_machine
== EM_L1OM
5967 || filedata
->file_header
.e_machine
== EM_K1OM
)
5968 && flag
== SHF_X86_64_LARGE
)
5970 else if (filedata
->file_header
.e_machine
== EM_ARM
5971 && flag
== SHF_ARM_PURECODE
)
5973 else if (filedata
->file_header
.e_machine
== EM_PPC
5974 && flag
== SHF_PPC_VLE
)
5976 else if (flag
& SHF_MASKOS
)
5979 sh_flags
&= ~ SHF_MASKOS
;
5981 else if (flag
& SHF_MASKPROC
)
5984 sh_flags
&= ~ SHF_MASKPROC
;
5994 if (do_section_details
)
5998 size
-= 5 + field_size
;
5999 if (p
!= buff
+ field_size
+ 4)
6003 warn (_("Internal error: not enough buffer room for section flag info"));
6004 return _("<unknown>");
6010 sprintf (p
, "OS (%*.*lx)", field_size
, field_size
,
6011 (unsigned long) os_flags
);
6012 p
+= 5 + field_size
;
6016 size
-= 7 + field_size
;
6017 if (p
!= buff
+ field_size
+ 4)
6021 warn (_("Internal error: not enough buffer room for section flag info"));
6022 return _("<unknown>");
6028 sprintf (p
, "PROC (%*.*lx)", field_size
, field_size
,
6029 (unsigned long) proc_flags
);
6030 p
+= 7 + field_size
;
6034 size
-= 10 + field_size
;
6035 if (p
!= buff
+ field_size
+ 4)
6039 warn (_("Internal error: not enough buffer room for section flag info"));
6040 return _("<unknown>");
6046 sprintf (p
, _("UNKNOWN (%*.*lx)"), field_size
, field_size
,
6047 (unsigned long) unknown_flags
);
6048 p
+= 10 + field_size
;
6057 get_compression_header (Elf_Internal_Chdr
*chdr
, unsigned char *buf
, bfd_size_type size
)
6061 Elf32_External_Chdr
*echdr
= (Elf32_External_Chdr
*) buf
;
6063 if (size
< sizeof (* echdr
))
6065 error (_("Compressed section is too small even for a compression header\n"));
6069 chdr
->ch_type
= BYTE_GET (echdr
->ch_type
);
6070 chdr
->ch_size
= BYTE_GET (echdr
->ch_size
);
6071 chdr
->ch_addralign
= BYTE_GET (echdr
->ch_addralign
);
6072 return sizeof (*echdr
);
6076 Elf64_External_Chdr
*echdr
= (Elf64_External_Chdr
*) buf
;
6078 if (size
< sizeof (* echdr
))
6080 error (_("Compressed section is too small even for a compression header\n"));
6084 chdr
->ch_type
= BYTE_GET (echdr
->ch_type
);
6085 chdr
->ch_size
= BYTE_GET (echdr
->ch_size
);
6086 chdr
->ch_addralign
= BYTE_GET (echdr
->ch_addralign
);
6087 return sizeof (*echdr
);
6092 process_section_headers (Filedata
* filedata
)
6094 Elf_Internal_Shdr
* section
;
6097 filedata
->section_headers
= NULL
;
6099 if (filedata
->file_header
.e_shnum
== 0)
6101 /* PR binutils/12467. */
6102 if (filedata
->file_header
.e_shoff
!= 0)
6104 warn (_("possibly corrupt ELF file header - it has a non-zero"
6105 " section header offset, but no section headers\n"));
6108 else if (do_sections
)
6109 printf (_("\nThere are no sections in this file.\n"));
6114 if (do_sections
&& !do_header
)
6115 printf (ngettext ("There is %d section header, "
6116 "starting at offset 0x%lx:\n",
6117 "There are %d section headers, "
6118 "starting at offset 0x%lx:\n",
6119 filedata
->file_header
.e_shnum
),
6120 filedata
->file_header
.e_shnum
,
6121 (unsigned long) filedata
->file_header
.e_shoff
);
6125 if (! get_32bit_section_headers (filedata
, FALSE
))
6130 if (! get_64bit_section_headers (filedata
, FALSE
))
6134 /* Read in the string table, so that we have names to display. */
6135 if (filedata
->file_header
.e_shstrndx
!= SHN_UNDEF
6136 && filedata
->file_header
.e_shstrndx
< filedata
->file_header
.e_shnum
)
6138 section
= filedata
->section_headers
+ filedata
->file_header
.e_shstrndx
;
6140 if (section
->sh_size
!= 0)
6142 filedata
->string_table
= (char *) get_data (NULL
, filedata
, section
->sh_offset
,
6143 1, section
->sh_size
,
6146 filedata
->string_table_length
= filedata
->string_table
!= NULL
? section
->sh_size
: 0;
6150 /* Scan the sections for the dynamic symbol table
6151 and dynamic string table and debug sections. */
6152 dynamic_symbols
= NULL
;
6153 dynamic_strings
= NULL
;
6154 dynamic_syminfo
= NULL
;
6155 symtab_shndx_list
= NULL
;
6157 eh_addr_size
= is_32bit_elf
? 4 : 8;
6158 switch (filedata
->file_header
.e_machine
)
6161 case EM_MIPS_RS3_LE
:
6162 /* The 64-bit MIPS EABI uses a combination of 32-bit ELF and 64-bit
6163 FDE addresses. However, the ABI also has a semi-official ILP32
6164 variant for which the normal FDE address size rules apply.
6166 GCC 4.0 marks EABI64 objects with a dummy .gcc_compiled_longXX
6167 section, where XX is the size of longs in bits. Unfortunately,
6168 earlier compilers provided no way of distinguishing ILP32 objects
6169 from LP64 objects, so if there's any doubt, we should assume that
6170 the official LP64 form is being used. */
6171 if ((filedata
->file_header
.e_flags
& EF_MIPS_ABI
) == E_MIPS_ABI_EABI64
6172 && find_section (filedata
, ".gcc_compiled_long32") == NULL
)
6178 switch (filedata
->file_header
.e_flags
& EF_H8_MACH
)
6180 case E_H8_MACH_H8300
:
6181 case E_H8_MACH_H8300HN
:
6182 case E_H8_MACH_H8300SN
:
6183 case E_H8_MACH_H8300SXN
:
6186 case E_H8_MACH_H8300H
:
6187 case E_H8_MACH_H8300S
:
6188 case E_H8_MACH_H8300SX
:
6196 switch (filedata
->file_header
.e_flags
& EF_M32C_CPU_MASK
)
6198 case EF_M32C_CPU_M16C
:
6205 #define CHECK_ENTSIZE_VALUES(section, i, size32, size64) \
6208 bfd_size_type expected_entsize = is_32bit_elf ? size32 : size64; \
6209 if (section->sh_entsize != expected_entsize) \
6212 sprintf_vma (buf, section->sh_entsize); \
6213 /* Note: coded this way so that there is a single string for \
6215 error (_("Section %d has invalid sh_entsize of %s\n"), i, buf); \
6216 error (_("(Using the expected size of %u for the rest of this dump)\n"), \
6217 (unsigned) expected_entsize); \
6218 section->sh_entsize = expected_entsize; \
6223 #define CHECK_ENTSIZE(section, i, type) \
6224 CHECK_ENTSIZE_VALUES (section, i, sizeof (Elf32_External_##type), \
6225 sizeof (Elf64_External_##type))
6227 for (i
= 0, section
= filedata
->section_headers
;
6228 i
< filedata
->file_header
.e_shnum
;
6231 char * name
= SECTION_NAME (section
);
6233 if (section
->sh_type
== SHT_DYNSYM
)
6235 if (dynamic_symbols
!= NULL
)
6237 error (_("File contains multiple dynamic symbol tables\n"));
6241 CHECK_ENTSIZE (section
, i
, Sym
);
6242 dynamic_symbols
= GET_ELF_SYMBOLS (filedata
, section
, & num_dynamic_syms
);
6244 else if (section
->sh_type
== SHT_STRTAB
6245 && streq (name
, ".dynstr"))
6247 if (dynamic_strings
!= NULL
)
6249 error (_("File contains multiple dynamic string tables\n"));
6253 dynamic_strings
= (char *) get_data (NULL
, filedata
, section
->sh_offset
,
6254 1, section
->sh_size
,
6255 _("dynamic strings"));
6256 dynamic_strings_length
= dynamic_strings
== NULL
? 0 : section
->sh_size
;
6258 else if (section
->sh_type
== SHT_SYMTAB_SHNDX
)
6260 elf_section_list
* entry
= xmalloc (sizeof * entry
);
6262 entry
->hdr
= section
;
6263 entry
->next
= symtab_shndx_list
;
6264 symtab_shndx_list
= entry
;
6266 else if (section
->sh_type
== SHT_SYMTAB
)
6267 CHECK_ENTSIZE (section
, i
, Sym
);
6268 else if (section
->sh_type
== SHT_GROUP
)
6269 CHECK_ENTSIZE_VALUES (section
, i
, GRP_ENTRY_SIZE
, GRP_ENTRY_SIZE
);
6270 else if (section
->sh_type
== SHT_REL
)
6271 CHECK_ENTSIZE (section
, i
, Rel
);
6272 else if (section
->sh_type
== SHT_RELA
)
6273 CHECK_ENTSIZE (section
, i
, Rela
);
6274 else if ((do_debugging
|| do_debug_info
|| do_debug_abbrevs
6275 || do_debug_lines
|| do_debug_pubnames
|| do_debug_pubtypes
6276 || do_debug_aranges
|| do_debug_frames
|| do_debug_macinfo
6277 || do_debug_str
|| do_debug_loc
|| do_debug_ranges
6278 || do_debug_addr
|| do_debug_cu_index
|| do_debug_links
)
6279 && (const_strneq (name
, ".debug_")
6280 || const_strneq (name
, ".zdebug_")))
6283 name
+= sizeof (".zdebug_") - 1;
6285 name
+= sizeof (".debug_") - 1;
6288 || (do_debug_info
&& const_strneq (name
, "info"))
6289 || (do_debug_info
&& const_strneq (name
, "types"))
6290 || (do_debug_abbrevs
&& const_strneq (name
, "abbrev"))
6291 || (do_debug_lines
&& strcmp (name
, "line") == 0)
6292 || (do_debug_lines
&& const_strneq (name
, "line."))
6293 || (do_debug_pubnames
&& const_strneq (name
, "pubnames"))
6294 || (do_debug_pubtypes
&& const_strneq (name
, "pubtypes"))
6295 || (do_debug_pubnames
&& const_strneq (name
, "gnu_pubnames"))
6296 || (do_debug_pubtypes
&& const_strneq (name
, "gnu_pubtypes"))
6297 || (do_debug_aranges
&& const_strneq (name
, "aranges"))
6298 || (do_debug_ranges
&& const_strneq (name
, "ranges"))
6299 || (do_debug_ranges
&& const_strneq (name
, "rnglists"))
6300 || (do_debug_frames
&& const_strneq (name
, "frame"))
6301 || (do_debug_macinfo
&& const_strneq (name
, "macinfo"))
6302 || (do_debug_macinfo
&& const_strneq (name
, "macro"))
6303 || (do_debug_str
&& const_strneq (name
, "str"))
6304 || (do_debug_loc
&& const_strneq (name
, "loc"))
6305 || (do_debug_loc
&& const_strneq (name
, "loclists"))
6306 || (do_debug_addr
&& const_strneq (name
, "addr"))
6307 || (do_debug_cu_index
&& const_strneq (name
, "cu_index"))
6308 || (do_debug_cu_index
&& const_strneq (name
, "tu_index"))
6310 request_dump_bynumber (filedata
, i
, DEBUG_DUMP
);
6312 /* Linkonce section to be combined with .debug_info at link time. */
6313 else if ((do_debugging
|| do_debug_info
)
6314 && const_strneq (name
, ".gnu.linkonce.wi."))
6315 request_dump_bynumber (filedata
, i
, DEBUG_DUMP
);
6316 else if (do_debug_frames
&& streq (name
, ".eh_frame"))
6317 request_dump_bynumber (filedata
, i
, DEBUG_DUMP
);
6318 else if (do_gdb_index
&& (streq (name
, ".gdb_index")
6319 || streq (name
, ".debug_names")))
6320 request_dump_bynumber (filedata
, i
, DEBUG_DUMP
);
6321 /* Trace sections for Itanium VMS. */
6322 else if ((do_debugging
|| do_trace_info
|| do_trace_abbrevs
6323 || do_trace_aranges
)
6324 && const_strneq (name
, ".trace_"))
6326 name
+= sizeof (".trace_") - 1;
6329 || (do_trace_info
&& streq (name
, "info"))
6330 || (do_trace_abbrevs
&& streq (name
, "abbrev"))
6331 || (do_trace_aranges
&& streq (name
, "aranges"))
6333 request_dump_bynumber (filedata
, i
, DEBUG_DUMP
);
6335 else if ((do_debugging
|| do_debug_links
)
6336 && (const_strneq (name
, ".gnu_debuglink")
6337 || const_strneq (name
, ".gnu_debugaltlink")))
6338 request_dump_bynumber (filedata
, i
, DEBUG_DUMP
);
6344 if (filedata
->file_header
.e_shnum
> 1)
6345 printf (_("\nSection Headers:\n"));
6347 printf (_("\nSection Header:\n"));
6351 if (do_section_details
)
6353 printf (_(" [Nr] Name\n"));
6354 printf (_(" Type Addr Off Size ES Lk Inf Al\n"));
6358 (_(" [Nr] Name Type Addr Off Size ES Flg Lk Inf Al\n"));
6362 if (do_section_details
)
6364 printf (_(" [Nr] Name\n"));
6365 printf (_(" Type Address Off Size ES Lk Inf Al\n"));
6369 (_(" [Nr] Name Type Address Off Size ES Flg Lk Inf Al\n"));
6373 if (do_section_details
)
6375 printf (_(" [Nr] Name\n"));
6376 printf (_(" Type Address Offset Link\n"));
6377 printf (_(" Size EntSize Info Align\n"));
6381 printf (_(" [Nr] Name Type Address Offset\n"));
6382 printf (_(" Size EntSize Flags Link Info Align\n"));
6386 if (do_section_details
)
6387 printf (_(" Flags\n"));
6389 for (i
= 0, section
= filedata
->section_headers
;
6390 i
< filedata
->file_header
.e_shnum
;
6393 /* Run some sanity checks on the section header. */
6395 /* Check the sh_link field. */
6396 switch (section
->sh_type
)
6400 if (section
->sh_link
== 0
6401 && (filedata
->file_header
.e_type
== ET_EXEC
6402 || filedata
->file_header
.e_type
== ET_DYN
))
6403 /* A dynamic relocation section where all entries use a
6404 zero symbol index need not specify a symtab section. */
6407 case SHT_SYMTAB_SHNDX
:
6411 case SHT_GNU_versym
:
6412 if (section
->sh_link
== 0
6413 || section
->sh_link
>= filedata
->file_header
.e_shnum
6414 || (filedata
->section_headers
[section
->sh_link
].sh_type
!= SHT_SYMTAB
6415 && filedata
->section_headers
[section
->sh_link
].sh_type
!= SHT_DYNSYM
))
6416 warn (_("[%2u]: Link field (%u) should index a symtab section.\n"),
6417 i
, section
->sh_link
);
6423 case SHT_GNU_verneed
:
6424 case SHT_GNU_verdef
:
6425 case SHT_GNU_LIBLIST
:
6426 if (section
->sh_link
== 0
6427 || section
->sh_link
>= filedata
->file_header
.e_shnum
6428 || filedata
->section_headers
[section
->sh_link
].sh_type
!= SHT_STRTAB
)
6429 warn (_("[%2u]: Link field (%u) should index a string section.\n"),
6430 i
, section
->sh_link
);
6433 case SHT_INIT_ARRAY
:
6434 case SHT_FINI_ARRAY
:
6435 case SHT_PREINIT_ARRAY
:
6436 if (section
->sh_type
< SHT_LOOS
&& section
->sh_link
!= 0)
6437 warn (_("[%2u]: Unexpected value (%u) in link field.\n"),
6438 i
, section
->sh_link
);
6442 /* FIXME: Add support for target specific section types. */
6443 #if 0 /* Currently we do not check other section types as there are too
6444 many special cases. Stab sections for example have a type
6445 of SHT_PROGBITS but an sh_link field that links to the .stabstr
6447 if (section
->sh_type
< SHT_LOOS
&& section
->sh_link
!= 0)
6448 warn (_("[%2u]: Unexpected value (%u) in link field.\n"),
6449 i
, section
->sh_link
);
6454 /* Check the sh_info field. */
6455 switch (section
->sh_type
)
6459 if (section
->sh_info
== 0
6460 && (filedata
->file_header
.e_type
== ET_EXEC
6461 || filedata
->file_header
.e_type
== ET_DYN
))
6462 /* Dynamic relocations apply to segments, so they do not
6463 need to specify the section they relocate. */
6465 if (section
->sh_info
== 0
6466 || section
->sh_info
>= filedata
->file_header
.e_shnum
6467 || (filedata
->section_headers
[section
->sh_info
].sh_type
!= SHT_PROGBITS
6468 && filedata
->section_headers
[section
->sh_info
].sh_type
!= SHT_NOBITS
6469 && filedata
->section_headers
[section
->sh_info
].sh_type
!= SHT_NOTE
6470 && filedata
->section_headers
[section
->sh_info
].sh_type
!= SHT_INIT_ARRAY
6471 && filedata
->section_headers
[section
->sh_info
].sh_type
!= SHT_FINI_ARRAY
6472 && filedata
->section_headers
[section
->sh_info
].sh_type
!= SHT_PREINIT_ARRAY
6473 /* FIXME: Are other section types valid ? */
6474 && filedata
->section_headers
[section
->sh_info
].sh_type
< SHT_LOOS
))
6475 warn (_("[%2u]: Info field (%u) should index a relocatable section.\n"),
6476 i
, section
->sh_info
);
6481 case SHT_SYMTAB_SHNDX
:
6482 case SHT_INIT_ARRAY
:
6483 case SHT_FINI_ARRAY
:
6484 case SHT_PREINIT_ARRAY
:
6485 if (section
->sh_info
!= 0)
6486 warn (_("[%2u]: Unexpected value (%u) in info field.\n"),
6487 i
, section
->sh_info
);
6493 /* A symbol index - we assume that it is valid. */
6497 /* FIXME: Add support for target specific section types. */
6498 if (section
->sh_type
== SHT_NOBITS
)
6499 /* NOBITS section headers with non-zero sh_info fields can be
6500 created when a binary is stripped of everything but its debug
6501 information. The stripped sections have their headers
6502 preserved but their types set to SHT_NOBITS. So do not check
6503 this type of section. */
6505 else if (section
->sh_flags
& SHF_INFO_LINK
)
6507 if (section
->sh_info
< 1 || section
->sh_info
>= filedata
->file_header
.e_shnum
)
6508 warn (_("[%2u]: Expected link to another section in info field"), i
);
6510 else if (section
->sh_type
< SHT_LOOS
6511 && (section
->sh_flags
& SHF_GNU_MBIND
) == 0
6512 && section
->sh_info
!= 0)
6513 warn (_("[%2u]: Unexpected value (%u) in info field.\n"),
6514 i
, section
->sh_info
);
6518 /* Check the sh_size field. */
6519 if (section
->sh_size
> filedata
->file_size
6520 && section
->sh_type
!= SHT_NOBITS
6521 && section
->sh_type
!= SHT_NULL
6522 && section
->sh_type
< SHT_LOOS
)
6523 warn (_("Size of section %u is larger than the entire file!\n"), i
);
6525 printf (" [%2u] ", i
);
6526 if (do_section_details
)
6527 printf ("%s\n ", printable_section_name (filedata
, section
));
6529 print_symbol (-17, SECTION_NAME (section
));
6531 printf (do_wide
? " %-15s " : " %-15.15s ",
6532 get_section_type_name (filedata
, section
->sh_type
));
6536 const char * link_too_big
= NULL
;
6538 print_vma (section
->sh_addr
, LONG_HEX
);
6540 printf ( " %6.6lx %6.6lx %2.2lx",
6541 (unsigned long) section
->sh_offset
,
6542 (unsigned long) section
->sh_size
,
6543 (unsigned long) section
->sh_entsize
);
6545 if (do_section_details
)
6546 fputs (" ", stdout
);
6548 printf (" %3s ", get_elf_section_flags (filedata
, section
->sh_flags
));
6550 if (section
->sh_link
>= filedata
->file_header
.e_shnum
)
6553 /* The sh_link value is out of range. Normally this indicates
6554 an error but it can have special values in Solaris binaries. */
6555 switch (filedata
->file_header
.e_machine
)
6562 case EM_OLD_SPARCV9
:
6563 case EM_SPARC32PLUS
:
6566 if (section
->sh_link
== (SHN_BEFORE
& 0xffff))
6567 link_too_big
= "BEFORE";
6568 else if (section
->sh_link
== (SHN_AFTER
& 0xffff))
6569 link_too_big
= "AFTER";
6576 if (do_section_details
)
6578 if (link_too_big
!= NULL
&& * link_too_big
)
6579 printf ("<%s> ", link_too_big
);
6581 printf ("%2u ", section
->sh_link
);
6582 printf ("%3u %2lu\n", section
->sh_info
,
6583 (unsigned long) section
->sh_addralign
);
6586 printf ("%2u %3u %2lu\n",
6589 (unsigned long) section
->sh_addralign
);
6591 if (link_too_big
&& ! * link_too_big
)
6592 warn (_("section %u: sh_link value of %u is larger than the number of sections\n"),
6593 i
, section
->sh_link
);
6597 print_vma (section
->sh_addr
, LONG_HEX
);
6599 if ((long) section
->sh_offset
== section
->sh_offset
)
6600 printf (" %6.6lx", (unsigned long) section
->sh_offset
);
6604 print_vma (section
->sh_offset
, LONG_HEX
);
6607 if ((unsigned long) section
->sh_size
== section
->sh_size
)
6608 printf (" %6.6lx", (unsigned long) section
->sh_size
);
6612 print_vma (section
->sh_size
, LONG_HEX
);
6615 if ((unsigned long) section
->sh_entsize
== section
->sh_entsize
)
6616 printf (" %2.2lx", (unsigned long) section
->sh_entsize
);
6620 print_vma (section
->sh_entsize
, LONG_HEX
);
6623 if (do_section_details
)
6624 fputs (" ", stdout
);
6626 printf (" %3s ", get_elf_section_flags (filedata
, section
->sh_flags
));
6628 printf ("%2u %3u ", section
->sh_link
, section
->sh_info
);
6630 if ((unsigned long) section
->sh_addralign
== section
->sh_addralign
)
6631 printf ("%2lu\n", (unsigned long) section
->sh_addralign
);
6634 print_vma (section
->sh_addralign
, DEC
);
6638 else if (do_section_details
)
6641 print_vma (section
->sh_addr
, LONG_HEX
);
6642 if ((long) section
->sh_offset
== section
->sh_offset
)
6643 printf (" %16.16lx", (unsigned long) section
->sh_offset
);
6647 print_vma (section
->sh_offset
, LONG_HEX
);
6649 printf (" %u\n ", section
->sh_link
);
6650 print_vma (section
->sh_size
, LONG_HEX
);
6652 print_vma (section
->sh_entsize
, LONG_HEX
);
6654 printf (" %-16u %lu\n",
6656 (unsigned long) section
->sh_addralign
);
6661 print_vma (section
->sh_addr
, LONG_HEX
);
6662 if ((long) section
->sh_offset
== section
->sh_offset
)
6663 printf (" %8.8lx", (unsigned long) section
->sh_offset
);
6667 print_vma (section
->sh_offset
, LONG_HEX
);
6670 print_vma (section
->sh_size
, LONG_HEX
);
6672 print_vma (section
->sh_entsize
, LONG_HEX
);
6674 printf (" %3s ", get_elf_section_flags (filedata
, section
->sh_flags
));
6676 printf (" %2u %3u %lu\n",
6679 (unsigned long) section
->sh_addralign
);
6682 if (do_section_details
)
6684 printf (" %s\n", get_elf_section_flags (filedata
, section
->sh_flags
));
6685 if ((section
->sh_flags
& SHF_COMPRESSED
) != 0)
6687 /* Minimum section size is 12 bytes for 32-bit compression
6688 header + 12 bytes for compressed data header. */
6689 unsigned char buf
[24];
6691 assert (sizeof (buf
) >= sizeof (Elf64_External_Chdr
));
6692 if (get_data (&buf
, filedata
, section
->sh_offset
, 1,
6693 sizeof (buf
), _("compression header")))
6695 Elf_Internal_Chdr chdr
;
6697 (void) get_compression_header (&chdr
, buf
, sizeof (buf
));
6699 if (chdr
.ch_type
== ELFCOMPRESS_ZLIB
)
6702 printf (_(" [<unknown>: 0x%x], "),
6704 print_vma (chdr
.ch_size
, LONG_HEX
);
6705 printf (", %lu\n", (unsigned long) chdr
.ch_addralign
);
6711 if (!do_section_details
)
6713 /* The ordering of the letters shown here matches the ordering of the
6714 corresponding SHF_xxx values, and hence the order in which these
6715 letters will be displayed to the user. */
6716 printf (_("Key to Flags:\n\
6717 W (write), A (alloc), X (execute), M (merge), S (strings), I (info),\n\
6718 L (link order), O (extra OS processing required), G (group), T (TLS),\n\
6719 C (compressed), x (unknown), o (OS specific), E (exclude),\n "));
6720 if (filedata
->file_header
.e_machine
== EM_X86_64
6721 || filedata
->file_header
.e_machine
== EM_L1OM
6722 || filedata
->file_header
.e_machine
== EM_K1OM
)
6723 printf (_("l (large), "));
6724 else if (filedata
->file_header
.e_machine
== EM_ARM
)
6725 printf (_("y (purecode), "));
6726 else if (filedata
->file_header
.e_machine
== EM_PPC
)
6727 printf (_("v (VLE), "));
6728 printf ("p (processor specific)\n");
6735 get_group_flags (unsigned int flags
)
6737 static char buff
[128];
6741 else if (flags
== GRP_COMDAT
)
6744 snprintf (buff
, 14, _("[0x%x: "), flags
);
6746 flags
&= ~ GRP_COMDAT
;
6747 if (flags
& GRP_MASKOS
)
6749 strcat (buff
, "<OS specific>");
6750 flags
&= ~ GRP_MASKOS
;
6753 if (flags
& GRP_MASKPROC
)
6755 strcat (buff
, "<PROC specific>");
6756 flags
&= ~ GRP_MASKPROC
;
6760 strcat (buff
, "<unknown>");
6767 process_section_groups (Filedata
* filedata
)
6769 Elf_Internal_Shdr
* section
;
6771 struct group
* group
;
6772 Elf_Internal_Shdr
* symtab_sec
;
6773 Elf_Internal_Shdr
* strtab_sec
;
6774 Elf_Internal_Sym
* symtab
;
6775 unsigned long num_syms
;
6779 /* Don't process section groups unless needed. */
6780 if (!do_unwind
&& !do_section_groups
)
6783 if (filedata
->file_header
.e_shnum
== 0)
6785 if (do_section_groups
)
6786 printf (_("\nThere are no sections to group in this file.\n"));
6791 if (filedata
->section_headers
== NULL
)
6793 error (_("Section headers are not available!\n"));
6794 /* PR 13622: This can happen with a corrupt ELF header. */
6798 section_headers_groups
= (struct group
**) calloc (filedata
->file_header
.e_shnum
,
6799 sizeof (struct group
*));
6801 if (section_headers_groups
== NULL
)
6803 error (_("Out of memory reading %u section group headers\n"),
6804 filedata
->file_header
.e_shnum
);
6808 /* Scan the sections for the group section. */
6810 for (i
= 0, section
= filedata
->section_headers
;
6811 i
< filedata
->file_header
.e_shnum
;
6813 if (section
->sh_type
== SHT_GROUP
)
6816 if (group_count
== 0)
6818 if (do_section_groups
)
6819 printf (_("\nThere are no section groups in this file.\n"));
6824 section_groups
= (struct group
*) calloc (group_count
, sizeof (struct group
));
6826 if (section_groups
== NULL
)
6828 error (_("Out of memory reading %lu groups\n"),
6829 (unsigned long) group_count
);
6839 for (i
= 0, section
= filedata
->section_headers
, group
= section_groups
;
6840 i
< filedata
->file_header
.e_shnum
;
6843 if (section
->sh_type
== SHT_GROUP
)
6845 const char * name
= printable_section_name (filedata
, section
);
6846 const char * group_name
;
6847 unsigned char * start
;
6848 unsigned char * indices
;
6849 unsigned int entry
, j
, size
;
6850 Elf_Internal_Shdr
* sec
;
6851 Elf_Internal_Sym
* sym
;
6853 /* Get the symbol table. */
6854 if (section
->sh_link
>= filedata
->file_header
.e_shnum
6855 || ((sec
= filedata
->section_headers
+ section
->sh_link
)->sh_type
6858 error (_("Bad sh_link in group section `%s'\n"), name
);
6862 if (symtab_sec
!= sec
)
6867 symtab
= GET_ELF_SYMBOLS (filedata
, symtab_sec
, & num_syms
);
6872 error (_("Corrupt header in group section `%s'\n"), name
);
6876 if (section
->sh_info
>= num_syms
)
6878 error (_("Bad sh_info in group section `%s'\n"), name
);
6882 sym
= symtab
+ section
->sh_info
;
6884 if (ELF_ST_TYPE (sym
->st_info
) == STT_SECTION
)
6886 if (sym
->st_shndx
== 0
6887 || sym
->st_shndx
>= filedata
->file_header
.e_shnum
)
6889 error (_("Bad sh_info in group section `%s'\n"), name
);
6893 group_name
= SECTION_NAME (filedata
->section_headers
+ sym
->st_shndx
);
6902 /* Get the string table. */
6903 if (symtab_sec
->sh_link
>= filedata
->file_header
.e_shnum
)
6912 != (sec
= filedata
->section_headers
+ symtab_sec
->sh_link
))
6918 strtab
= (char *) get_data (NULL
, filedata
, strtab_sec
->sh_offset
,
6919 1, strtab_sec
->sh_size
,
6921 strtab_size
= strtab
!= NULL
? strtab_sec
->sh_size
: 0;
6923 group_name
= sym
->st_name
< strtab_size
6924 ? strtab
+ sym
->st_name
: _("<corrupt>");
6927 /* PR 17531: file: loop. */
6928 if (section
->sh_entsize
> section
->sh_size
)
6930 error (_("Section %s has sh_entsize (0x%lx) which is larger than its size (0x%lx)\n"),
6931 printable_section_name (filedata
, section
),
6932 (unsigned long) section
->sh_entsize
,
6933 (unsigned long) section
->sh_size
);
6937 start
= (unsigned char *) get_data (NULL
, filedata
, section
->sh_offset
,
6938 1, section
->sh_size
,
6944 size
= (section
->sh_size
/ section
->sh_entsize
) - 1;
6945 entry
= byte_get (indices
, 4);
6948 if (do_section_groups
)
6950 printf (_("\n%sgroup section [%5u] `%s' [%s] contains %u sections:\n"),
6951 get_group_flags (entry
), i
, name
, group_name
, size
);
6953 printf (_(" [Index] Name\n"));
6956 group
->group_index
= i
;
6958 for (j
= 0; j
< size
; j
++)
6960 struct group_list
* g
;
6962 entry
= byte_get (indices
, 4);
6965 if (entry
>= filedata
->file_header
.e_shnum
)
6967 static unsigned num_group_errors
= 0;
6969 if (num_group_errors
++ < 10)
6971 error (_("section [%5u] in group section [%5u] > maximum section [%5u]\n"),
6972 entry
, i
, filedata
->file_header
.e_shnum
- 1);
6973 if (num_group_errors
== 10)
6974 warn (_("Further error messages about overlarge group section indices suppressed\n"));
6979 if (section_headers_groups
[entry
] != NULL
)
6983 static unsigned num_errs
= 0;
6985 if (num_errs
++ < 10)
6987 error (_("section [%5u] in group section [%5u] already in group section [%5u]\n"),
6989 section_headers_groups
[entry
]->group_index
);
6991 warn (_("Further error messages about already contained group sections suppressed\n"));
6997 /* Intel C/C++ compiler may put section 0 in a
6998 section group. We just warn it the first time
6999 and ignore it afterwards. */
7000 static bfd_boolean warned
= FALSE
;
7003 error (_("section 0 in group section [%5u]\n"),
7004 section_headers_groups
[entry
]->group_index
);
7010 section_headers_groups
[entry
] = group
;
7012 if (do_section_groups
)
7014 sec
= filedata
->section_headers
+ entry
;
7015 printf (" [%5u] %s\n", entry
, printable_section_name (filedata
, sec
));
7018 g
= (struct group_list
*) xmalloc (sizeof (struct group_list
));
7019 g
->section_index
= entry
;
7020 g
->next
= group
->root
;
7038 /* Data used to display dynamic fixups. */
7040 struct ia64_vms_dynfixup
7042 bfd_vma needed_ident
; /* Library ident number. */
7043 bfd_vma needed
; /* Index in the dstrtab of the library name. */
7044 bfd_vma fixup_needed
; /* Index of the library. */
7045 bfd_vma fixup_rela_cnt
; /* Number of fixups. */
7046 bfd_vma fixup_rela_off
; /* Fixups offset in the dynamic segment. */
7049 /* Data used to display dynamic relocations. */
7051 struct ia64_vms_dynimgrela
7053 bfd_vma img_rela_cnt
; /* Number of relocations. */
7054 bfd_vma img_rela_off
; /* Reloc offset in the dynamic segment. */
7057 /* Display IA-64 OpenVMS dynamic fixups (used to dynamically link a shared
7061 dump_ia64_vms_dynamic_fixups (Filedata
* filedata
,
7062 struct ia64_vms_dynfixup
* fixup
,
7063 const char * strtab
,
7064 unsigned int strtab_sz
)
7066 Elf64_External_VMS_IMAGE_FIXUP
* imfs
;
7068 const char * lib_name
;
7070 imfs
= get_data (NULL
, filedata
, dynamic_addr
+ fixup
->fixup_rela_off
,
7071 1, fixup
->fixup_rela_cnt
* sizeof (*imfs
),
7072 _("dynamic section image fixups"));
7076 if (fixup
->needed
< strtab_sz
)
7077 lib_name
= strtab
+ fixup
->needed
;
7080 warn (_("corrupt library name index of 0x%lx found in dynamic entry"),
7081 (unsigned long) fixup
->needed
);
7084 printf (_("\nImage fixups for needed library #%d: %s - ident: %lx\n"),
7085 (int) fixup
->fixup_needed
, lib_name
, (long) fixup
->needed_ident
);
7087 (_("Seg Offset Type SymVec DataType\n"));
7089 for (i
= 0; i
< (long) fixup
->fixup_rela_cnt
; i
++)
7094 printf ("%3u ", (unsigned) BYTE_GET (imfs
[i
].fixup_seg
));
7095 printf_vma ((bfd_vma
) BYTE_GET (imfs
[i
].fixup_offset
));
7096 type
= BYTE_GET (imfs
[i
].type
);
7097 rtype
= elf_ia64_reloc_type (type
);
7099 printf (" 0x%08x ", type
);
7101 printf (" %-32s ", rtype
);
7102 printf ("%6u ", (unsigned) BYTE_GET (imfs
[i
].symvec_index
));
7103 printf ("0x%08x\n", (unsigned) BYTE_GET (imfs
[i
].data_type
));
7110 /* Display IA-64 OpenVMS dynamic relocations (used to relocate an image). */
7113 dump_ia64_vms_dynamic_relocs (Filedata
* filedata
, struct ia64_vms_dynimgrela
*imgrela
)
7115 Elf64_External_VMS_IMAGE_RELA
*imrs
;
7118 imrs
= get_data (NULL
, filedata
, dynamic_addr
+ imgrela
->img_rela_off
,
7119 1, imgrela
->img_rela_cnt
* sizeof (*imrs
),
7120 _("dynamic section image relocations"));
7124 printf (_("\nImage relocs\n"));
7126 (_("Seg Offset Type Addend Seg Sym Off\n"));
7128 for (i
= 0; i
< (long) imgrela
->img_rela_cnt
; i
++)
7133 printf ("%3u ", (unsigned) BYTE_GET (imrs
[i
].rela_seg
));
7134 printf ("%08" BFD_VMA_FMT
"x ",
7135 (bfd_vma
) BYTE_GET (imrs
[i
].rela_offset
));
7136 type
= BYTE_GET (imrs
[i
].type
);
7137 rtype
= elf_ia64_reloc_type (type
);
7139 printf ("0x%08x ", type
);
7141 printf ("%-31s ", rtype
);
7142 print_vma (BYTE_GET (imrs
[i
].addend
), FULL_HEX
);
7143 printf ("%3u ", (unsigned) BYTE_GET (imrs
[i
].sym_seg
));
7144 printf ("%08" BFD_VMA_FMT
"x\n",
7145 (bfd_vma
) BYTE_GET (imrs
[i
].sym_offset
));
7152 /* Display IA-64 OpenVMS dynamic relocations and fixups. */
7155 process_ia64_vms_dynamic_relocs (Filedata
* filedata
)
7157 struct ia64_vms_dynfixup fixup
;
7158 struct ia64_vms_dynimgrela imgrela
;
7159 Elf_Internal_Dyn
*entry
;
7160 bfd_vma strtab_off
= 0;
7161 bfd_vma strtab_sz
= 0;
7162 char *strtab
= NULL
;
7163 bfd_boolean res
= TRUE
;
7165 memset (&fixup
, 0, sizeof (fixup
));
7166 memset (&imgrela
, 0, sizeof (imgrela
));
7168 /* Note: the order of the entries is specified by the OpenVMS specs. */
7169 for (entry
= dynamic_section
;
7170 entry
< dynamic_section
+ dynamic_nent
;
7173 switch (entry
->d_tag
)
7175 case DT_IA_64_VMS_STRTAB_OFFSET
:
7176 strtab_off
= entry
->d_un
.d_val
;
7179 strtab_sz
= entry
->d_un
.d_val
;
7181 strtab
= get_data (NULL
, filedata
, dynamic_addr
+ strtab_off
,
7182 1, strtab_sz
, _("dynamic string section"));
7185 case DT_IA_64_VMS_NEEDED_IDENT
:
7186 fixup
.needed_ident
= entry
->d_un
.d_val
;
7189 fixup
.needed
= entry
->d_un
.d_val
;
7191 case DT_IA_64_VMS_FIXUP_NEEDED
:
7192 fixup
.fixup_needed
= entry
->d_un
.d_val
;
7194 case DT_IA_64_VMS_FIXUP_RELA_CNT
:
7195 fixup
.fixup_rela_cnt
= entry
->d_un
.d_val
;
7197 case DT_IA_64_VMS_FIXUP_RELA_OFF
:
7198 fixup
.fixup_rela_off
= entry
->d_un
.d_val
;
7199 if (! dump_ia64_vms_dynamic_fixups (filedata
, &fixup
, strtab
, strtab_sz
))
7202 case DT_IA_64_VMS_IMG_RELA_CNT
:
7203 imgrela
.img_rela_cnt
= entry
->d_un
.d_val
;
7205 case DT_IA_64_VMS_IMG_RELA_OFF
:
7206 imgrela
.img_rela_off
= entry
->d_un
.d_val
;
7207 if (! dump_ia64_vms_dynamic_relocs (filedata
, &imgrela
))
7229 dynamic_relocations
[] =
7231 { "REL", DT_REL
, DT_RELSZ
, FALSE
},
7232 { "RELA", DT_RELA
, DT_RELASZ
, TRUE
},
7233 { "PLT", DT_JMPREL
, DT_PLTRELSZ
, UNKNOWN
}
7236 /* Process the reloc section. */
7239 process_relocs (Filedata
* filedata
)
7241 unsigned long rel_size
;
7242 unsigned long rel_offset
;
7247 if (do_using_dynamic
)
7251 bfd_boolean has_dynamic_reloc
;
7254 has_dynamic_reloc
= FALSE
;
7256 for (i
= 0; i
< ARRAY_SIZE (dynamic_relocations
); i
++)
7258 is_rela
= dynamic_relocations
[i
].rela
;
7259 name
= dynamic_relocations
[i
].name
;
7260 rel_size
= dynamic_info
[dynamic_relocations
[i
].size
];
7261 rel_offset
= dynamic_info
[dynamic_relocations
[i
].reloc
];
7264 has_dynamic_reloc
= TRUE
;
7266 if (is_rela
== UNKNOWN
)
7268 if (dynamic_relocations
[i
].reloc
== DT_JMPREL
)
7269 switch (dynamic_info
[DT_PLTREL
])
7283 (_("\n'%s' relocation section at offset 0x%lx contains %ld bytes:\n"),
7284 name
, rel_offset
, rel_size
);
7286 dump_relocations (filedata
,
7287 offset_from_vma (filedata
, rel_offset
, rel_size
),
7289 dynamic_symbols
, num_dynamic_syms
,
7290 dynamic_strings
, dynamic_strings_length
,
7291 is_rela
, TRUE
/* is_dynamic */);
7295 if (is_ia64_vms (filedata
))
7296 if (process_ia64_vms_dynamic_relocs (filedata
))
7297 has_dynamic_reloc
= TRUE
;
7299 if (! has_dynamic_reloc
)
7300 printf (_("\nThere are no dynamic relocations in this file.\n"));
7304 Elf_Internal_Shdr
* section
;
7306 bfd_boolean found
= FALSE
;
7308 for (i
= 0, section
= filedata
->section_headers
;
7309 i
< filedata
->file_header
.e_shnum
;
7312 if ( section
->sh_type
!= SHT_RELA
7313 && section
->sh_type
!= SHT_REL
)
7316 rel_offset
= section
->sh_offset
;
7317 rel_size
= section
->sh_size
;
7321 Elf_Internal_Shdr
* strsec
;
7323 unsigned long num_rela
;
7325 printf (_("\nRelocation section "));
7327 if (filedata
->string_table
== NULL
)
7328 printf ("%d", section
->sh_name
);
7330 printf ("'%s'", printable_section_name (filedata
, section
));
7332 num_rela
= rel_size
/ section
->sh_entsize
;
7333 printf (ngettext (" at offset 0x%lx contains %lu entry:\n",
7334 " at offset 0x%lx contains %lu entries:\n",
7336 rel_offset
, num_rela
);
7338 is_rela
= section
->sh_type
== SHT_RELA
;
7340 if (section
->sh_link
!= 0
7341 && section
->sh_link
< filedata
->file_header
.e_shnum
)
7343 Elf_Internal_Shdr
* symsec
;
7344 Elf_Internal_Sym
* symtab
;
7345 unsigned long nsyms
;
7346 unsigned long strtablen
= 0;
7347 char * strtab
= NULL
;
7349 symsec
= filedata
->section_headers
+ section
->sh_link
;
7350 if (symsec
->sh_type
!= SHT_SYMTAB
7351 && symsec
->sh_type
!= SHT_DYNSYM
)
7354 symtab
= GET_ELF_SYMBOLS (filedata
, symsec
, & nsyms
);
7359 if (symsec
->sh_link
!= 0
7360 && symsec
->sh_link
< filedata
->file_header
.e_shnum
)
7362 strsec
= filedata
->section_headers
+ symsec
->sh_link
;
7364 strtab
= (char *) get_data (NULL
, filedata
, strsec
->sh_offset
,
7367 strtablen
= strtab
== NULL
? 0 : strsec
->sh_size
;
7370 dump_relocations (filedata
, rel_offset
, rel_size
,
7371 symtab
, nsyms
, strtab
, strtablen
,
7373 symsec
->sh_type
== SHT_DYNSYM
);
7379 dump_relocations (filedata
, rel_offset
, rel_size
,
7380 NULL
, 0, NULL
, 0, is_rela
,
7381 FALSE
/* is_dynamic */);
7389 /* Users sometimes forget the -D option, so try to be helpful. */
7390 for (i
= 0; i
< ARRAY_SIZE (dynamic_relocations
); i
++)
7392 if (dynamic_info
[dynamic_relocations
[i
].size
])
7394 printf (_("\nThere are no static relocations in this file."));
7395 printf (_("\nTo see the dynamic relocations add --use-dynamic to the command line.\n"));
7400 if (i
== ARRAY_SIZE (dynamic_relocations
))
7401 printf (_("\nThere are no relocations in this file.\n"));
7408 /* An absolute address consists of a section and an offset. If the
7409 section is NULL, the offset itself is the address, otherwise, the
7410 address equals to LOAD_ADDRESS(section) + offset. */
7414 unsigned short section
;
7418 /* Find the nearest symbol at or below ADDR. Returns the symbol
7419 name, if found, and the offset from the symbol to ADDR. */
7422 find_symbol_for_address (Filedata
* filedata
,
7423 Elf_Internal_Sym
* symtab
,
7424 unsigned long nsyms
,
7425 const char * strtab
,
7426 unsigned long strtab_size
,
7427 struct absaddr addr
,
7428 const char ** symname
,
7431 bfd_vma dist
= 0x100000;
7432 Elf_Internal_Sym
* sym
;
7433 Elf_Internal_Sym
* beg
;
7434 Elf_Internal_Sym
* end
;
7435 Elf_Internal_Sym
* best
= NULL
;
7437 REMOVE_ARCH_BITS (addr
.offset
);
7439 end
= symtab
+ nsyms
;
7445 sym
= beg
+ (end
- beg
) / 2;
7447 value
= sym
->st_value
;
7448 REMOVE_ARCH_BITS (value
);
7450 if (sym
->st_name
!= 0
7451 && (addr
.section
== SHN_UNDEF
|| addr
.section
== sym
->st_shndx
)
7452 && addr
.offset
>= value
7453 && addr
.offset
- value
< dist
)
7456 dist
= addr
.offset
- value
;
7461 if (addr
.offset
< value
)
7469 *symname
= (best
->st_name
>= strtab_size
7470 ? _("<corrupt>") : strtab
+ best
->st_name
);
7476 *offset
= addr
.offset
;
7479 static /* signed */ int
7480 symcmp (const void *p
, const void *q
)
7482 Elf_Internal_Sym
*sp
= (Elf_Internal_Sym
*) p
;
7483 Elf_Internal_Sym
*sq
= (Elf_Internal_Sym
*) q
;
7485 return sp
->st_value
> sq
->st_value
? 1 : (sp
->st_value
< sq
->st_value
? -1 : 0);
7488 /* Process the unwind section. */
7490 #include "unwind-ia64.h"
7492 struct ia64_unw_table_entry
7494 struct absaddr start
;
7496 struct absaddr info
;
7499 struct ia64_unw_aux_info
7501 struct ia64_unw_table_entry
* table
; /* Unwind table. */
7502 unsigned long table_len
; /* Length of unwind table. */
7503 unsigned char * info
; /* Unwind info. */
7504 unsigned long info_size
; /* Size of unwind info. */
7505 bfd_vma info_addr
; /* Starting address of unwind info. */
7506 bfd_vma seg_base
; /* Starting address of segment. */
7507 Elf_Internal_Sym
* symtab
; /* The 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 entries in funtab. */
7511 char * strtab
; /* The string table. */
7512 unsigned long strtab_size
; /* Size of string table. */
7516 dump_ia64_unwind (Filedata
* filedata
, struct ia64_unw_aux_info
* aux
)
7518 struct ia64_unw_table_entry
* tp
;
7519 unsigned long j
, nfuns
;
7521 bfd_boolean res
= TRUE
;
7523 aux
->funtab
= xmalloc (aux
->nsyms
* sizeof (Elf_Internal_Sym
));
7524 for (nfuns
= 0, j
= 0; j
< aux
->nsyms
; j
++)
7525 if (aux
->symtab
[j
].st_value
&& ELF_ST_TYPE (aux
->symtab
[j
].st_info
) == STT_FUNC
)
7526 aux
->funtab
[nfuns
++] = aux
->symtab
[j
];
7528 qsort (aux
->funtab
, aux
->nfuns
, sizeof (Elf_Internal_Sym
), symcmp
);
7530 for (tp
= aux
->table
; tp
< aux
->table
+ aux
->table_len
; ++tp
)
7534 const unsigned char * dp
;
7535 const unsigned char * head
;
7536 const unsigned char * end
;
7537 const char * procname
;
7539 find_symbol_for_address (filedata
, aux
->funtab
, aux
->nfuns
, aux
->strtab
,
7540 aux
->strtab_size
, tp
->start
, &procname
, &offset
);
7542 fputs ("\n<", stdout
);
7546 fputs (procname
, stdout
);
7549 printf ("+%lx", (unsigned long) offset
);
7552 fputs (">: [", stdout
);
7553 print_vma (tp
->start
.offset
, PREFIX_HEX
);
7554 fputc ('-', stdout
);
7555 print_vma (tp
->end
.offset
, PREFIX_HEX
);
7556 printf ("], info at +0x%lx\n",
7557 (unsigned long) (tp
->info
.offset
- aux
->seg_base
));
7559 /* PR 17531: file: 86232b32. */
7560 if (aux
->info
== NULL
)
7563 offset
= tp
->info
.offset
;
7564 if (tp
->info
.section
)
7566 if (tp
->info
.section
>= filedata
->file_header
.e_shnum
)
7568 warn (_("Invalid section %u in table entry %ld\n"),
7569 tp
->info
.section
, (long) (tp
- aux
->table
));
7573 offset
+= filedata
->section_headers
[tp
->info
.section
].sh_addr
;
7575 offset
-= aux
->info_addr
;
7576 /* PR 17531: file: 0997b4d1. */
7577 if (offset
>= aux
->info_size
7578 || aux
->info_size
- offset
< 8)
7580 warn (_("Invalid offset %lx in table entry %ld\n"),
7581 (long) tp
->info
.offset
, (long) (tp
- aux
->table
));
7586 head
= aux
->info
+ offset
;
7587 stamp
= byte_get ((unsigned char *) head
, sizeof (stamp
));
7589 printf (" v%u, flags=0x%lx (%s%s), len=%lu bytes\n",
7590 (unsigned) UNW_VER (stamp
),
7591 (unsigned long) ((stamp
& UNW_FLAG_MASK
) >> 32),
7592 UNW_FLAG_EHANDLER (stamp
) ? " ehandler" : "",
7593 UNW_FLAG_UHANDLER (stamp
) ? " uhandler" : "",
7594 (unsigned long) (eh_addr_size
* UNW_LENGTH (stamp
)));
7596 if (UNW_VER (stamp
) != 1)
7598 printf (_("\tUnknown version.\n"));
7603 end
= head
+ 8 + eh_addr_size
* UNW_LENGTH (stamp
);
7604 /* PR 17531: file: 16ceda89. */
7605 if (end
> aux
->info
+ aux
->info_size
)
7606 end
= aux
->info
+ aux
->info_size
;
7607 for (dp
= head
+ 8; dp
< end
;)
7608 dp
= unw_decode (dp
, in_body
, & in_body
, end
);
7617 slurp_ia64_unwind_table (Filedata
* filedata
,
7618 struct ia64_unw_aux_info
* aux
,
7619 Elf_Internal_Shdr
* sec
)
7621 unsigned long size
, nrelas
, i
;
7622 Elf_Internal_Phdr
* seg
;
7623 struct ia64_unw_table_entry
* tep
;
7624 Elf_Internal_Shdr
* relsec
;
7625 Elf_Internal_Rela
* rela
;
7626 Elf_Internal_Rela
* rp
;
7627 unsigned char * table
;
7629 Elf_Internal_Sym
* sym
;
7630 const char * relname
;
7634 /* First, find the starting address of the segment that includes
7637 if (filedata
->file_header
.e_phnum
)
7639 if (! get_program_headers (filedata
))
7642 for (seg
= filedata
->program_headers
;
7643 seg
< filedata
->program_headers
+ filedata
->file_header
.e_phnum
;
7646 if (seg
->p_type
!= PT_LOAD
)
7649 if (sec
->sh_addr
>= seg
->p_vaddr
7650 && (sec
->sh_addr
+ sec
->sh_size
<= seg
->p_vaddr
+ seg
->p_memsz
))
7652 aux
->seg_base
= seg
->p_vaddr
;
7658 /* Second, build the unwind table from the contents of the unwind section: */
7659 size
= sec
->sh_size
;
7660 table
= (unsigned char *) get_data (NULL
, filedata
, sec
->sh_offset
, 1, size
,
7665 aux
->table_len
= size
/ (3 * eh_addr_size
);
7666 aux
->table
= (struct ia64_unw_table_entry
*)
7667 xcmalloc (aux
->table_len
, sizeof (aux
->table
[0]));
7670 for (tp
= table
; tp
<= table
+ size
- (3 * eh_addr_size
); ++tep
)
7672 tep
->start
.section
= SHN_UNDEF
;
7673 tep
->end
.section
= SHN_UNDEF
;
7674 tep
->info
.section
= SHN_UNDEF
;
7675 tep
->start
.offset
= byte_get (tp
, eh_addr_size
); tp
+= eh_addr_size
;
7676 tep
->end
.offset
= byte_get (tp
, eh_addr_size
); tp
+= eh_addr_size
;
7677 tep
->info
.offset
= byte_get (tp
, eh_addr_size
); tp
+= eh_addr_size
;
7678 tep
->start
.offset
+= aux
->seg_base
;
7679 tep
->end
.offset
+= aux
->seg_base
;
7680 tep
->info
.offset
+= aux
->seg_base
;
7684 /* Third, apply any relocations to the unwind table: */
7685 for (relsec
= filedata
->section_headers
;
7686 relsec
< filedata
->section_headers
+ filedata
->file_header
.e_shnum
;
7689 if (relsec
->sh_type
!= SHT_RELA
7690 || relsec
->sh_info
>= filedata
->file_header
.e_shnum
7691 || filedata
->section_headers
+ relsec
->sh_info
!= sec
)
7694 if (!slurp_rela_relocs (filedata
, relsec
->sh_offset
, relsec
->sh_size
,
7703 for (rp
= rela
; rp
< rela
+ nrelas
; ++rp
)
7705 unsigned int sym_ndx
;
7706 unsigned int r_type
= get_reloc_type (filedata
, rp
->r_info
);
7707 relname
= elf_ia64_reloc_type (r_type
);
7709 /* PR 17531: file: 9fa67536. */
7710 if (relname
== NULL
)
7712 warn (_("Skipping unknown relocation type: %u\n"), r_type
);
7716 if (! const_strneq (relname
, "R_IA64_SEGREL"))
7718 warn (_("Skipping unexpected relocation type: %s\n"), relname
);
7722 i
= rp
->r_offset
/ (3 * eh_addr_size
);
7724 /* PR 17531: file: 5bc8d9bf. */
7725 if (i
>= aux
->table_len
)
7727 warn (_("Skipping reloc with overlarge offset: %lx\n"), i
);
7731 sym_ndx
= get_reloc_symindex (rp
->r_info
);
7732 if (sym_ndx
>= aux
->nsyms
)
7734 warn (_("Skipping reloc with invalid symbol index: %u\n"),
7738 sym
= aux
->symtab
+ sym_ndx
;
7740 switch (rp
->r_offset
/ eh_addr_size
% 3)
7743 aux
->table
[i
].start
.section
= sym
->st_shndx
;
7744 aux
->table
[i
].start
.offset
= rp
->r_addend
+ sym
->st_value
;
7747 aux
->table
[i
].end
.section
= sym
->st_shndx
;
7748 aux
->table
[i
].end
.offset
= rp
->r_addend
+ sym
->st_value
;
7751 aux
->table
[i
].info
.section
= sym
->st_shndx
;
7752 aux
->table
[i
].info
.offset
= rp
->r_addend
+ sym
->st_value
;
7766 ia64_process_unwind (Filedata
* filedata
)
7768 Elf_Internal_Shdr
* sec
;
7769 Elf_Internal_Shdr
* unwsec
= NULL
;
7770 Elf_Internal_Shdr
* strsec
;
7771 unsigned long i
, unwcount
= 0, unwstart
= 0;
7772 struct ia64_unw_aux_info aux
;
7773 bfd_boolean res
= TRUE
;
7775 memset (& aux
, 0, sizeof (aux
));
7777 for (i
= 0, sec
= filedata
->section_headers
; i
< filedata
->file_header
.e_shnum
; ++i
, ++sec
)
7779 if (sec
->sh_type
== SHT_SYMTAB
7780 && sec
->sh_link
< filedata
->file_header
.e_shnum
)
7782 aux
.symtab
= GET_ELF_SYMBOLS (filedata
, sec
, & aux
.nsyms
);
7784 strsec
= filedata
->section_headers
+ sec
->sh_link
;
7785 if (aux
.strtab
!= NULL
)
7787 error (_("Multiple auxillary string tables encountered\n"));
7791 aux
.strtab
= (char *) get_data (NULL
, filedata
, strsec
->sh_offset
,
7794 aux
.strtab_size
= aux
.strtab
!= NULL
? strsec
->sh_size
: 0;
7796 else if (sec
->sh_type
== SHT_IA_64_UNWIND
)
7801 printf (_("\nThere are no unwind sections in this file.\n"));
7803 while (unwcount
-- > 0)
7808 for (i
= unwstart
, sec
= filedata
->section_headers
+ unwstart
, unwsec
= NULL
;
7809 i
< filedata
->file_header
.e_shnum
; ++i
, ++sec
)
7810 if (sec
->sh_type
== SHT_IA_64_UNWIND
)
7815 /* We have already counted the number of SHT_IA64_UNWIND
7816 sections so the loop above should never fail. */
7817 assert (unwsec
!= NULL
);
7820 len
= sizeof (ELF_STRING_ia64_unwind_once
) - 1;
7822 if ((unwsec
->sh_flags
& SHF_GROUP
) != 0)
7824 /* We need to find which section group it is in. */
7825 struct group_list
* g
;
7827 if (section_headers_groups
== NULL
7828 || section_headers_groups
[i
] == NULL
)
7829 i
= filedata
->file_header
.e_shnum
;
7832 g
= section_headers_groups
[i
]->root
;
7834 for (; g
!= NULL
; g
= g
->next
)
7836 sec
= filedata
->section_headers
+ g
->section_index
;
7838 if (streq (SECTION_NAME (sec
), ELF_STRING_ia64_unwind_info
))
7843 i
= filedata
->file_header
.e_shnum
;
7846 else if (strneq (SECTION_NAME (unwsec
), ELF_STRING_ia64_unwind_once
, len
))
7848 /* .gnu.linkonce.ia64unw.FOO -> .gnu.linkonce.ia64unwi.FOO. */
7849 len2
= sizeof (ELF_STRING_ia64_unwind_info_once
) - 1;
7850 suffix
= SECTION_NAME (unwsec
) + len
;
7851 for (i
= 0, sec
= filedata
->section_headers
; i
< filedata
->file_header
.e_shnum
;
7853 if (strneq (SECTION_NAME (sec
), ELF_STRING_ia64_unwind_info_once
, len2
)
7854 && streq (SECTION_NAME (sec
) + len2
, suffix
))
7859 /* .IA_64.unwindFOO -> .IA_64.unwind_infoFOO
7860 .IA_64.unwind or BAR -> .IA_64.unwind_info. */
7861 len
= sizeof (ELF_STRING_ia64_unwind
) - 1;
7862 len2
= sizeof (ELF_STRING_ia64_unwind_info
) - 1;
7864 if (strneq (SECTION_NAME (unwsec
), ELF_STRING_ia64_unwind
, len
))
7865 suffix
= SECTION_NAME (unwsec
) + len
;
7866 for (i
= 0, sec
= filedata
->section_headers
; i
< filedata
->file_header
.e_shnum
;
7868 if (strneq (SECTION_NAME (sec
), ELF_STRING_ia64_unwind_info
, len2
)
7869 && streq (SECTION_NAME (sec
) + len2
, suffix
))
7873 if (i
== filedata
->file_header
.e_shnum
)
7875 printf (_("\nCould not find unwind info section for "));
7877 if (filedata
->string_table
== NULL
)
7878 printf ("%d", unwsec
->sh_name
);
7880 printf ("'%s'", printable_section_name (filedata
, unwsec
));
7884 aux
.info_addr
= sec
->sh_addr
;
7885 aux
.info
= (unsigned char *) get_data (NULL
, filedata
, sec
->sh_offset
, 1,
7888 aux
.info_size
= aux
.info
== NULL
? 0 : sec
->sh_size
;
7890 printf (_("\nUnwind section "));
7892 if (filedata
->string_table
== NULL
)
7893 printf ("%d", unwsec
->sh_name
);
7895 printf ("'%s'", printable_section_name (filedata
, unwsec
));
7897 printf (_(" at offset 0x%lx contains %lu entries:\n"),
7898 (unsigned long) unwsec
->sh_offset
,
7899 (unsigned long) (unwsec
->sh_size
/ (3 * eh_addr_size
)));
7901 if (slurp_ia64_unwind_table (filedata
, & aux
, unwsec
)
7902 && aux
.table_len
> 0)
7903 dump_ia64_unwind (filedata
, & aux
);
7906 free ((char *) aux
.table
);
7908 free ((char *) aux
.info
);
7917 free ((char *) aux
.strtab
);
7922 struct hppa_unw_table_entry
7924 struct absaddr start
;
7926 unsigned int Cannot_unwind
:1; /* 0 */
7927 unsigned int Millicode
:1; /* 1 */
7928 unsigned int Millicode_save_sr0
:1; /* 2 */
7929 unsigned int Region_description
:2; /* 3..4 */
7930 unsigned int reserved1
:1; /* 5 */
7931 unsigned int Entry_SR
:1; /* 6 */
7932 unsigned int Entry_FR
:4; /* Number saved 7..10 */
7933 unsigned int Entry_GR
:5; /* Number saved 11..15 */
7934 unsigned int Args_stored
:1; /* 16 */
7935 unsigned int Variable_Frame
:1; /* 17 */
7936 unsigned int Separate_Package_Body
:1; /* 18 */
7937 unsigned int Frame_Extension_Millicode
:1; /* 19 */
7938 unsigned int Stack_Overflow_Check
:1; /* 20 */
7939 unsigned int Two_Instruction_SP_Increment
:1; /* 21 */
7940 unsigned int Ada_Region
:1; /* 22 */
7941 unsigned int cxx_info
:1; /* 23 */
7942 unsigned int cxx_try_catch
:1; /* 24 */
7943 unsigned int sched_entry_seq
:1; /* 25 */
7944 unsigned int reserved2
:1; /* 26 */
7945 unsigned int Save_SP
:1; /* 27 */
7946 unsigned int Save_RP
:1; /* 28 */
7947 unsigned int Save_MRP_in_frame
:1; /* 29 */
7948 unsigned int extn_ptr_defined
:1; /* 30 */
7949 unsigned int Cleanup_defined
:1; /* 31 */
7951 unsigned int MPE_XL_interrupt_marker
:1; /* 0 */
7952 unsigned int HP_UX_interrupt_marker
:1; /* 1 */
7953 unsigned int Large_frame
:1; /* 2 */
7954 unsigned int Pseudo_SP_Set
:1; /* 3 */
7955 unsigned int reserved4
:1; /* 4 */
7956 unsigned int Total_frame_size
:27; /* 5..31 */
7959 struct hppa_unw_aux_info
7961 struct hppa_unw_table_entry
* table
; /* Unwind table. */
7962 unsigned long table_len
; /* Length of unwind table. */
7963 bfd_vma seg_base
; /* Starting address of segment. */
7964 Elf_Internal_Sym
* symtab
; /* The symbol table. */
7965 unsigned long nsyms
; /* Number of symbols. */
7966 Elf_Internal_Sym
* funtab
; /* Sorted table of STT_FUNC symbols. */
7967 unsigned long nfuns
; /* Number of entries in funtab. */
7968 char * strtab
; /* The string table. */
7969 unsigned long strtab_size
; /* Size of string table. */
7973 dump_hppa_unwind (Filedata
* filedata
, struct hppa_unw_aux_info
* aux
)
7975 struct hppa_unw_table_entry
* tp
;
7976 unsigned long j
, nfuns
;
7977 bfd_boolean res
= TRUE
;
7979 aux
->funtab
= xmalloc (aux
->nsyms
* sizeof (Elf_Internal_Sym
));
7980 for (nfuns
= 0, j
= 0; j
< aux
->nsyms
; j
++)
7981 if (aux
->symtab
[j
].st_value
&& ELF_ST_TYPE (aux
->symtab
[j
].st_info
) == STT_FUNC
)
7982 aux
->funtab
[nfuns
++] = aux
->symtab
[j
];
7984 qsort (aux
->funtab
, aux
->nfuns
, sizeof (Elf_Internal_Sym
), symcmp
);
7986 for (tp
= aux
->table
; tp
< aux
->table
+ aux
->table_len
; ++tp
)
7989 const char * procname
;
7991 find_symbol_for_address (filedata
, aux
->funtab
, aux
->nfuns
, aux
->strtab
,
7992 aux
->strtab_size
, tp
->start
, &procname
,
7995 fputs ("\n<", stdout
);
7999 fputs (procname
, stdout
);
8002 printf ("+%lx", (unsigned long) offset
);
8005 fputs (">: [", stdout
);
8006 print_vma (tp
->start
.offset
, PREFIX_HEX
);
8007 fputc ('-', stdout
);
8008 print_vma (tp
->end
.offset
, PREFIX_HEX
);
8011 #define PF(_m) if (tp->_m) printf (#_m " ");
8012 #define PV(_m) if (tp->_m) printf (#_m "=%d ", tp->_m);
8015 PF(Millicode_save_sr0
);
8016 /* PV(Region_description); */
8022 PF(Separate_Package_Body
);
8023 PF(Frame_Extension_Millicode
);
8024 PF(Stack_Overflow_Check
);
8025 PF(Two_Instruction_SP_Increment
);
8029 PF(sched_entry_seq
);
8032 PF(Save_MRP_in_frame
);
8033 PF(extn_ptr_defined
);
8034 PF(Cleanup_defined
);
8035 PF(MPE_XL_interrupt_marker
);
8036 PF(HP_UX_interrupt_marker
);
8039 PV(Total_frame_size
);
8052 slurp_hppa_unwind_table (Filedata
* filedata
,
8053 struct hppa_unw_aux_info
* aux
,
8054 Elf_Internal_Shdr
* sec
)
8056 unsigned long size
, unw_ent_size
, nentries
, nrelas
, i
;
8057 Elf_Internal_Phdr
* seg
;
8058 struct hppa_unw_table_entry
* tep
;
8059 Elf_Internal_Shdr
* relsec
;
8060 Elf_Internal_Rela
* rela
;
8061 Elf_Internal_Rela
* rp
;
8062 unsigned char * table
;
8064 Elf_Internal_Sym
* sym
;
8065 const char * relname
;
8067 /* First, find the starting address of the segment that includes
8069 if (filedata
->file_header
.e_phnum
)
8071 if (! get_program_headers (filedata
))
8074 for (seg
= filedata
->program_headers
;
8075 seg
< filedata
->program_headers
+ filedata
->file_header
.e_phnum
;
8078 if (seg
->p_type
!= PT_LOAD
)
8081 if (sec
->sh_addr
>= seg
->p_vaddr
8082 && (sec
->sh_addr
+ sec
->sh_size
<= seg
->p_vaddr
+ seg
->p_memsz
))
8084 aux
->seg_base
= seg
->p_vaddr
;
8090 /* Second, build the unwind table from the contents of the unwind
8092 size
= sec
->sh_size
;
8093 table
= (unsigned char *) get_data (NULL
, filedata
, sec
->sh_offset
, 1, size
,
8099 nentries
= size
/ unw_ent_size
;
8100 size
= unw_ent_size
* nentries
;
8102 tep
= aux
->table
= (struct hppa_unw_table_entry
*)
8103 xcmalloc (nentries
, sizeof (aux
->table
[0]));
8105 for (tp
= table
; tp
< table
+ size
; tp
+= unw_ent_size
, ++tep
)
8107 unsigned int tmp1
, tmp2
;
8109 tep
->start
.section
= SHN_UNDEF
;
8110 tep
->end
.section
= SHN_UNDEF
;
8112 tep
->start
.offset
= byte_get ((unsigned char *) tp
+ 0, 4);
8113 tep
->end
.offset
= byte_get ((unsigned char *) tp
+ 4, 4);
8114 tmp1
= byte_get ((unsigned char *) tp
+ 8, 4);
8115 tmp2
= byte_get ((unsigned char *) tp
+ 12, 4);
8117 tep
->start
.offset
+= aux
->seg_base
;
8118 tep
->end
.offset
+= aux
->seg_base
;
8120 tep
->Cannot_unwind
= (tmp1
>> 31) & 0x1;
8121 tep
->Millicode
= (tmp1
>> 30) & 0x1;
8122 tep
->Millicode_save_sr0
= (tmp1
>> 29) & 0x1;
8123 tep
->Region_description
= (tmp1
>> 27) & 0x3;
8124 tep
->reserved1
= (tmp1
>> 26) & 0x1;
8125 tep
->Entry_SR
= (tmp1
>> 25) & 0x1;
8126 tep
->Entry_FR
= (tmp1
>> 21) & 0xf;
8127 tep
->Entry_GR
= (tmp1
>> 16) & 0x1f;
8128 tep
->Args_stored
= (tmp1
>> 15) & 0x1;
8129 tep
->Variable_Frame
= (tmp1
>> 14) & 0x1;
8130 tep
->Separate_Package_Body
= (tmp1
>> 13) & 0x1;
8131 tep
->Frame_Extension_Millicode
= (tmp1
>> 12) & 0x1;
8132 tep
->Stack_Overflow_Check
= (tmp1
>> 11) & 0x1;
8133 tep
->Two_Instruction_SP_Increment
= (tmp1
>> 10) & 0x1;
8134 tep
->Ada_Region
= (tmp1
>> 9) & 0x1;
8135 tep
->cxx_info
= (tmp1
>> 8) & 0x1;
8136 tep
->cxx_try_catch
= (tmp1
>> 7) & 0x1;
8137 tep
->sched_entry_seq
= (tmp1
>> 6) & 0x1;
8138 tep
->reserved2
= (tmp1
>> 5) & 0x1;
8139 tep
->Save_SP
= (tmp1
>> 4) & 0x1;
8140 tep
->Save_RP
= (tmp1
>> 3) & 0x1;
8141 tep
->Save_MRP_in_frame
= (tmp1
>> 2) & 0x1;
8142 tep
->extn_ptr_defined
= (tmp1
>> 1) & 0x1;
8143 tep
->Cleanup_defined
= tmp1
& 0x1;
8145 tep
->MPE_XL_interrupt_marker
= (tmp2
>> 31) & 0x1;
8146 tep
->HP_UX_interrupt_marker
= (tmp2
>> 30) & 0x1;
8147 tep
->Large_frame
= (tmp2
>> 29) & 0x1;
8148 tep
->Pseudo_SP_Set
= (tmp2
>> 28) & 0x1;
8149 tep
->reserved4
= (tmp2
>> 27) & 0x1;
8150 tep
->Total_frame_size
= tmp2
& 0x7ffffff;
8154 /* Third, apply any relocations to the unwind table. */
8155 for (relsec
= filedata
->section_headers
;
8156 relsec
< filedata
->section_headers
+ filedata
->file_header
.e_shnum
;
8159 if (relsec
->sh_type
!= SHT_RELA
8160 || relsec
->sh_info
>= filedata
->file_header
.e_shnum
8161 || filedata
->section_headers
+ relsec
->sh_info
!= sec
)
8164 if (!slurp_rela_relocs (filedata
, relsec
->sh_offset
, relsec
->sh_size
,
8168 for (rp
= rela
; rp
< rela
+ nrelas
; ++rp
)
8170 unsigned int sym_ndx
;
8171 unsigned int r_type
= get_reloc_type (filedata
, rp
->r_info
);
8172 relname
= elf_hppa_reloc_type (r_type
);
8174 if (relname
== NULL
)
8176 warn (_("Skipping unknown relocation type: %u\n"), r_type
);
8180 /* R_PARISC_SEGREL32 or R_PARISC_SEGREL64. */
8181 if (! const_strneq (relname
, "R_PARISC_SEGREL"))
8183 warn (_("Skipping unexpected relocation type: %s\n"), relname
);
8187 i
= rp
->r_offset
/ unw_ent_size
;
8188 if (i
>= aux
->table_len
)
8190 warn (_("Skipping reloc with overlarge offset: %lx\n"), i
);
8194 sym_ndx
= get_reloc_symindex (rp
->r_info
);
8195 if (sym_ndx
>= aux
->nsyms
)
8197 warn (_("Skipping reloc with invalid symbol index: %u\n"),
8201 sym
= aux
->symtab
+ sym_ndx
;
8203 switch ((rp
->r_offset
% unw_ent_size
) / 4)
8206 aux
->table
[i
].start
.section
= sym
->st_shndx
;
8207 aux
->table
[i
].start
.offset
= sym
->st_value
+ rp
->r_addend
;
8210 aux
->table
[i
].end
.section
= sym
->st_shndx
;
8211 aux
->table
[i
].end
.offset
= sym
->st_value
+ rp
->r_addend
;
8221 aux
->table_len
= nentries
;
8227 hppa_process_unwind (Filedata
* filedata
)
8229 struct hppa_unw_aux_info aux
;
8230 Elf_Internal_Shdr
* unwsec
= NULL
;
8231 Elf_Internal_Shdr
* strsec
;
8232 Elf_Internal_Shdr
* sec
;
8234 bfd_boolean res
= TRUE
;
8236 if (filedata
->string_table
== NULL
)
8239 memset (& aux
, 0, sizeof (aux
));
8241 for (i
= 0, sec
= filedata
->section_headers
; i
< filedata
->file_header
.e_shnum
; ++i
, ++sec
)
8243 if (sec
->sh_type
== SHT_SYMTAB
8244 && sec
->sh_link
< filedata
->file_header
.e_shnum
)
8246 aux
.symtab
= GET_ELF_SYMBOLS (filedata
, sec
, & aux
.nsyms
);
8248 strsec
= filedata
->section_headers
+ sec
->sh_link
;
8249 if (aux
.strtab
!= NULL
)
8251 error (_("Multiple auxillary string tables encountered\n"));
8255 aux
.strtab
= (char *) get_data (NULL
, filedata
, strsec
->sh_offset
,
8258 aux
.strtab_size
= aux
.strtab
!= NULL
? strsec
->sh_size
: 0;
8260 else if (streq (SECTION_NAME (sec
), ".PARISC.unwind"))
8265 printf (_("\nThere are no unwind sections in this file.\n"));
8267 for (i
= 0, sec
= filedata
->section_headers
; i
< filedata
->file_header
.e_shnum
; ++i
, ++sec
)
8269 if (streq (SECTION_NAME (sec
), ".PARISC.unwind"))
8271 unsigned long num_unwind
= sec
->sh_size
/ 16;
8273 printf (ngettext ("\nUnwind section '%s' at offset 0x%lx "
8274 "contains %lu entry:\n",
8275 "\nUnwind section '%s' at offset 0x%lx "
8276 "contains %lu entries:\n",
8278 printable_section_name (filedata
, sec
),
8279 (unsigned long) sec
->sh_offset
,
8282 if (! slurp_hppa_unwind_table (filedata
, &aux
, sec
))
8285 if (res
&& aux
.table_len
> 0)
8287 if (! dump_hppa_unwind (filedata
, &aux
))
8292 free ((char *) aux
.table
);
8300 free ((char *) aux
.strtab
);
8307 unsigned char * data
; /* The unwind data. */
8308 Elf_Internal_Shdr
* sec
; /* The cached unwind section header. */
8309 Elf_Internal_Rela
* rela
; /* The cached relocations for this section. */
8310 unsigned long nrelas
; /* The number of relocations. */
8311 unsigned int rel_type
; /* REL or RELA ? */
8312 Elf_Internal_Rela
* next_rela
; /* Cyclic pointer to the next reloc to process. */
8315 struct arm_unw_aux_info
8317 Filedata
* filedata
; /* The file containing the unwind sections. */
8318 Elf_Internal_Sym
* symtab
; /* The file's symbol table. */
8319 unsigned long nsyms
; /* Number of symbols. */
8320 Elf_Internal_Sym
* funtab
; /* Sorted table of STT_FUNC symbols. */
8321 unsigned long nfuns
; /* Number of these symbols. */
8322 char * strtab
; /* The file's string table. */
8323 unsigned long strtab_size
; /* Size of string table. */
8327 arm_print_vma_and_name (Filedata
* filedata
,
8328 struct arm_unw_aux_info
* aux
,
8330 struct absaddr addr
)
8332 const char *procname
;
8335 if (addr
.section
== SHN_UNDEF
)
8338 find_symbol_for_address (filedata
, aux
->funtab
, aux
->nfuns
, aux
->strtab
,
8339 aux
->strtab_size
, addr
, &procname
,
8342 print_vma (fn
, PREFIX_HEX
);
8346 fputs (" <", stdout
);
8347 fputs (procname
, stdout
);
8350 printf ("+0x%lx", (unsigned long) sym_offset
);
8351 fputc ('>', stdout
);
8358 arm_free_section (struct arm_section
*arm_sec
)
8360 if (arm_sec
->data
!= NULL
)
8361 free (arm_sec
->data
);
8363 if (arm_sec
->rela
!= NULL
)
8364 free (arm_sec
->rela
);
8367 /* 1) If SEC does not match the one cached in ARM_SEC, then free the current
8368 cached section and install SEC instead.
8369 2) Locate the 32-bit word at WORD_OFFSET in unwind section SEC
8370 and return its valued in * WORDP, relocating if necessary.
8371 3) Update the NEXT_RELA field in ARM_SEC and store the section index and
8372 relocation's offset in ADDR.
8373 4) If SYM_NAME is non-NULL and a relocation was applied, record the offset
8374 into the string table of the symbol associated with the reloc. If no
8375 reloc was applied store -1 there.
8376 5) Return TRUE upon success, FALSE otherwise. */
8379 get_unwind_section_word (Filedata
* filedata
,
8380 struct arm_unw_aux_info
* aux
,
8381 struct arm_section
* arm_sec
,
8382 Elf_Internal_Shdr
* sec
,
8383 bfd_vma word_offset
,
8384 unsigned int * wordp
,
8385 struct absaddr
* addr
,
8388 Elf_Internal_Rela
*rp
;
8389 Elf_Internal_Sym
*sym
;
8390 const char * relname
;
8392 bfd_boolean wrapped
;
8394 if (sec
== NULL
|| arm_sec
== NULL
)
8397 addr
->section
= SHN_UNDEF
;
8400 if (sym_name
!= NULL
)
8401 *sym_name
= (bfd_vma
) -1;
8403 /* If necessary, update the section cache. */
8404 if (sec
!= arm_sec
->sec
)
8406 Elf_Internal_Shdr
*relsec
;
8408 arm_free_section (arm_sec
);
8411 arm_sec
->data
= get_data (NULL
, aux
->filedata
, sec
->sh_offset
, 1,
8412 sec
->sh_size
, _("unwind data"));
8413 arm_sec
->rela
= NULL
;
8414 arm_sec
->nrelas
= 0;
8416 for (relsec
= filedata
->section_headers
;
8417 relsec
< filedata
->section_headers
+ filedata
->file_header
.e_shnum
;
8420 if (relsec
->sh_info
>= filedata
->file_header
.e_shnum
8421 || filedata
->section_headers
+ relsec
->sh_info
!= sec
8422 /* PR 15745: Check the section type as well. */
8423 || (relsec
->sh_type
!= SHT_REL
8424 && relsec
->sh_type
!= SHT_RELA
))
8427 arm_sec
->rel_type
= relsec
->sh_type
;
8428 if (relsec
->sh_type
== SHT_REL
)
8430 if (!slurp_rel_relocs (aux
->filedata
, relsec
->sh_offset
,
8432 & arm_sec
->rela
, & arm_sec
->nrelas
))
8435 else /* relsec->sh_type == SHT_RELA */
8437 if (!slurp_rela_relocs (aux
->filedata
, relsec
->sh_offset
,
8439 & arm_sec
->rela
, & arm_sec
->nrelas
))
8445 arm_sec
->next_rela
= arm_sec
->rela
;
8448 /* If there is no unwind data we can do nothing. */
8449 if (arm_sec
->data
== NULL
)
8452 /* If the offset is invalid then fail. */
8453 if (/* PR 21343 *//* PR 18879 */
8455 || word_offset
> (sec
->sh_size
- 4)
8456 || ((bfd_signed_vma
) word_offset
) < 0)
8459 /* Get the word at the required offset. */
8460 word
= byte_get (arm_sec
->data
+ word_offset
, 4);
8462 /* PR 17531: file: id:000001,src:001266+003044,op:splice,rep:128. */
8463 if (arm_sec
->rela
== NULL
)
8469 /* Look through the relocs to find the one that applies to the provided offset. */
8471 for (rp
= arm_sec
->next_rela
; rp
!= arm_sec
->rela
+ arm_sec
->nrelas
; rp
++)
8473 bfd_vma prelval
, offset
;
8475 if (rp
->r_offset
> word_offset
&& !wrapped
)
8480 if (rp
->r_offset
> word_offset
)
8483 if (rp
->r_offset
& 3)
8485 warn (_("Skipping unexpected relocation at offset 0x%lx\n"),
8486 (unsigned long) rp
->r_offset
);
8490 if (rp
->r_offset
< word_offset
)
8493 /* PR 17531: file: 027-161405-0.004 */
8494 if (aux
->symtab
== NULL
)
8497 if (arm_sec
->rel_type
== SHT_REL
)
8499 offset
= word
& 0x7fffffff;
8500 if (offset
& 0x40000000)
8501 offset
|= ~ (bfd_vma
) 0x7fffffff;
8503 else if (arm_sec
->rel_type
== SHT_RELA
)
8504 offset
= rp
->r_addend
;
8507 error (_("Unknown section relocation type %d encountered\n"),
8512 /* PR 17531 file: 027-1241568-0.004. */
8513 if (ELF32_R_SYM (rp
->r_info
) >= aux
->nsyms
)
8515 error (_("Bad symbol index in unwind relocation (%lu > %lu)\n"),
8516 (unsigned long) ELF32_R_SYM (rp
->r_info
), aux
->nsyms
);
8520 sym
= aux
->symtab
+ ELF32_R_SYM (rp
->r_info
);
8521 offset
+= sym
->st_value
;
8522 prelval
= offset
- (arm_sec
->sec
->sh_addr
+ rp
->r_offset
);
8524 /* Check that we are processing the expected reloc type. */
8525 if (filedata
->file_header
.e_machine
== EM_ARM
)
8527 relname
= elf_arm_reloc_type (ELF32_R_TYPE (rp
->r_info
));
8528 if (relname
== NULL
)
8530 warn (_("Skipping unknown ARM relocation type: %d\n"),
8531 (int) ELF32_R_TYPE (rp
->r_info
));
8535 if (streq (relname
, "R_ARM_NONE"))
8538 if (! streq (relname
, "R_ARM_PREL31"))
8540 warn (_("Skipping unexpected ARM relocation type %s\n"), relname
);
8544 else if (filedata
->file_header
.e_machine
== EM_TI_C6000
)
8546 relname
= elf_tic6x_reloc_type (ELF32_R_TYPE (rp
->r_info
));
8547 if (relname
== NULL
)
8549 warn (_("Skipping unknown C6000 relocation type: %d\n"),
8550 (int) ELF32_R_TYPE (rp
->r_info
));
8554 if (streq (relname
, "R_C6000_NONE"))
8557 if (! streq (relname
, "R_C6000_PREL31"))
8559 warn (_("Skipping unexpected C6000 relocation type %s\n"), relname
);
8567 /* This function currently only supports ARM and TI unwinders. */
8568 warn (_("Only TI and ARM unwinders are currently supported\n"));
8572 word
= (word
& ~ (bfd_vma
) 0x7fffffff) | (prelval
& 0x7fffffff);
8573 addr
->section
= sym
->st_shndx
;
8574 addr
->offset
= offset
;
8577 * sym_name
= sym
->st_name
;
8582 arm_sec
->next_rela
= rp
;
8587 static const char *tic6x_unwind_regnames
[16] =
8589 "A15", "B15", "B14", "B13", "B12", "B11", "B10", "B3",
8590 "A14", "A13", "A12", "A11", "A10",
8591 "[invalid reg 13]", "[invalid reg 14]", "[invalid reg 15]"
8595 decode_tic6x_unwind_regmask (unsigned int mask
)
8599 for (i
= 12; mask
; mask
>>= 1, i
--)
8603 fputs (tic6x_unwind_regnames
[i
], stdout
);
8605 fputs (", ", stdout
);
8611 if (remaining == 0 && more_words) \
8614 if (! get_unwind_section_word (filedata, aux, data_arm_sec, data_sec, \
8615 data_offset, & word, & addr, NULL)) \
8621 #define GET_OP(OP) \
8626 (OP) = word >> 24; \
8631 printf (_("[Truncated opcode]\n")); \
8634 printf ("0x%02x ", OP)
8637 decode_arm_unwind_bytecode (Filedata
* filedata
,
8638 struct arm_unw_aux_info
* aux
,
8640 unsigned int remaining
,
8641 unsigned int more_words
,
8642 bfd_vma data_offset
,
8643 Elf_Internal_Shdr
* data_sec
,
8644 struct arm_section
* data_arm_sec
)
8646 struct absaddr addr
;
8647 bfd_boolean res
= TRUE
;
8649 /* Decode the unwinding instructions. */
8652 unsigned int op
, op2
;
8661 printf (" 0x%02x ", op
);
8663 if ((op
& 0xc0) == 0x00)
8665 int offset
= ((op
& 0x3f) << 2) + 4;
8667 printf (" vsp = vsp + %d", offset
);
8669 else if ((op
& 0xc0) == 0x40)
8671 int offset
= ((op
& 0x3f) << 2) + 4;
8673 printf (" vsp = vsp - %d", offset
);
8675 else if ((op
& 0xf0) == 0x80)
8678 if (op
== 0x80 && op2
== 0)
8679 printf (_("Refuse to unwind"));
8682 unsigned int mask
= ((op
& 0x0f) << 8) | op2
;
8683 bfd_boolean first
= TRUE
;
8687 for (i
= 0; i
< 12; i
++)
8688 if (mask
& (1 << i
))
8694 printf ("r%d", 4 + i
);
8699 else if ((op
& 0xf0) == 0x90)
8701 if (op
== 0x9d || op
== 0x9f)
8702 printf (_(" [Reserved]"));
8704 printf (" vsp = r%d", op
& 0x0f);
8706 else if ((op
& 0xf0) == 0xa0)
8708 int end
= 4 + (op
& 0x07);
8709 bfd_boolean first
= TRUE
;
8713 for (i
= 4; i
<= end
; i
++)
8729 else if (op
== 0xb0)
8730 printf (_(" finish"));
8731 else if (op
== 0xb1)
8734 if (op2
== 0 || (op2
& 0xf0) != 0)
8735 printf (_("[Spare]"));
8738 unsigned int mask
= op2
& 0x0f;
8739 bfd_boolean first
= TRUE
;
8743 for (i
= 0; i
< 12; i
++)
8744 if (mask
& (1 << i
))
8755 else if (op
== 0xb2)
8757 unsigned char buf
[9];
8758 unsigned int i
, len
;
8759 unsigned long offset
;
8761 for (i
= 0; i
< sizeof (buf
); i
++)
8764 if ((buf
[i
] & 0x80) == 0)
8767 if (i
== sizeof (buf
))
8769 error (_("corrupt change to vsp"));
8774 offset
= read_leb128 (buf
, buf
+ i
+ 1, FALSE
, &len
, NULL
);
8775 assert (len
== i
+ 1);
8776 offset
= offset
* 4 + 0x204;
8777 printf ("vsp = vsp + %ld", offset
);
8780 else if (op
== 0xb3 || op
== 0xc8 || op
== 0xc9)
8782 unsigned int first
, last
;
8789 printf ("pop {D%d", first
);
8791 printf ("-D%d", first
+ last
);
8794 else if ((op
& 0xf8) == 0xb8 || (op
& 0xf8) == 0xd0)
8796 unsigned int count
= op
& 0x07;
8800 printf ("-D%d", 8 + count
);
8803 else if (op
>= 0xc0 && op
<= 0xc5)
8805 unsigned int count
= op
& 0x07;
8807 printf (" pop {wR10");
8809 printf ("-wR%d", 10 + count
);
8812 else if (op
== 0xc6)
8814 unsigned int first
, last
;
8819 printf ("pop {wR%d", first
);
8821 printf ("-wR%d", first
+ last
);
8824 else if (op
== 0xc7)
8827 if (op2
== 0 || (op2
& 0xf0) != 0)
8828 printf (_("[Spare]"));
8831 unsigned int mask
= op2
& 0x0f;
8832 bfd_boolean first
= TRUE
;
8836 for (i
= 0; i
< 4; i
++)
8837 if (mask
& (1 << i
))
8843 printf ("wCGR%d", i
);
8850 printf (_(" [unsupported opcode]"));
8861 decode_tic6x_unwind_bytecode (Filedata
* filedata
,
8862 struct arm_unw_aux_info
* aux
,
8864 unsigned int remaining
,
8865 unsigned int more_words
,
8866 bfd_vma data_offset
,
8867 Elf_Internal_Shdr
* data_sec
,
8868 struct arm_section
* data_arm_sec
)
8870 struct absaddr addr
;
8872 /* Decode the unwinding instructions. */
8875 unsigned int op
, op2
;
8884 printf (" 0x%02x ", op
);
8886 if ((op
& 0xc0) == 0x00)
8888 int offset
= ((op
& 0x3f) << 3) + 8;
8889 printf (" sp = sp + %d", offset
);
8891 else if ((op
& 0xc0) == 0x80)
8894 if (op
== 0x80 && op2
== 0)
8895 printf (_("Refuse to unwind"));
8898 unsigned int mask
= ((op
& 0x1f) << 8) | op2
;
8900 printf ("pop compact {");
8904 decode_tic6x_unwind_regmask (mask
);
8908 else if ((op
& 0xf0) == 0xc0)
8916 unsigned int offset
;
8920 /* Scan entire instruction first so that GET_OP output is not
8921 interleaved with disassembly. */
8923 for (i
= 0; nregs
< (op
& 0xf); i
++)
8929 regpos
[nregs
].offset
= i
* 2;
8930 regpos
[nregs
].reg
= reg
;
8937 regpos
[nregs
].offset
= i
* 2 + 1;
8938 regpos
[nregs
].reg
= reg
;
8943 printf (_("pop frame {"));
8946 printf (_("*corrupt* - no registers specified"));
8951 for (i
= i
* 2; i
> 0; i
--)
8953 if (regpos
[reg
].offset
== i
- 1)
8955 name
= tic6x_unwind_regnames
[regpos
[reg
].reg
];
8962 fputs (name
, stdout
);
8970 else if (op
== 0xd0)
8971 printf (" MOV FP, SP");
8972 else if (op
== 0xd1)
8973 printf (" __c6xabi_pop_rts");
8974 else if (op
== 0xd2)
8976 unsigned char buf
[9];
8977 unsigned int i
, len
;
8978 unsigned long offset
;
8980 for (i
= 0; i
< sizeof (buf
); i
++)
8983 if ((buf
[i
] & 0x80) == 0)
8986 /* PR 17531: file: id:000001,src:001906+004739,op:splice,rep:2. */
8987 if (i
== sizeof (buf
))
8989 warn (_("Corrupt stack pointer adjustment detected\n"));
8993 offset
= read_leb128 (buf
, buf
+ i
+ 1, FALSE
, &len
, NULL
);
8994 assert (len
== i
+ 1);
8995 offset
= offset
* 8 + 0x408;
8996 printf (_("sp = sp + %ld"), offset
);
8998 else if ((op
& 0xf0) == 0xe0)
9000 if ((op
& 0x0f) == 7)
9003 printf (" MV %s, B3", tic6x_unwind_regnames
[op
& 0x0f]);
9007 printf (_(" [unsupported opcode]"));
9016 arm_expand_prel31 (Filedata
* filedata
, bfd_vma word
, bfd_vma where
)
9020 offset
= word
& 0x7fffffff;
9021 if (offset
& 0x40000000)
9022 offset
|= ~ (bfd_vma
) 0x7fffffff;
9024 if (filedata
->file_header
.e_machine
== EM_TI_C6000
)
9027 return offset
+ where
;
9031 decode_arm_unwind (Filedata
* filedata
,
9032 struct arm_unw_aux_info
* aux
,
9034 unsigned int remaining
,
9035 bfd_vma data_offset
,
9036 Elf_Internal_Shdr
* data_sec
,
9037 struct arm_section
* data_arm_sec
)
9040 unsigned int more_words
= 0;
9041 struct absaddr addr
;
9042 bfd_vma sym_name
= (bfd_vma
) -1;
9043 bfd_boolean res
= TRUE
;
9047 /* Fetch the first word.
9048 Note - when decoding an object file the address extracted
9049 here will always be 0. So we also pass in the sym_name
9050 parameter so that we can find the symbol associated with
9051 the personality routine. */
9052 if (! get_unwind_section_word (filedata
, aux
, data_arm_sec
, data_sec
, data_offset
,
9053 & word
, & addr
, & sym_name
))
9060 addr
.section
= SHN_UNDEF
;
9064 if ((word
& 0x80000000) == 0)
9066 /* Expand prel31 for personality routine. */
9068 const char *procname
;
9070 fn
= arm_expand_prel31 (filedata
, word
, data_sec
->sh_addr
+ data_offset
);
9071 printf (_(" Personality routine: "));
9073 && addr
.section
== SHN_UNDEF
&& addr
.offset
== 0
9074 && sym_name
!= (bfd_vma
) -1 && sym_name
< aux
->strtab_size
)
9076 procname
= aux
->strtab
+ sym_name
;
9077 print_vma (fn
, PREFIX_HEX
);
9080 fputs (" <", stdout
);
9081 fputs (procname
, stdout
);
9082 fputc ('>', stdout
);
9086 procname
= arm_print_vma_and_name (filedata
, aux
, fn
, addr
);
9087 fputc ('\n', stdout
);
9089 /* The GCC personality routines use the standard compact
9090 encoding, starting with one byte giving the number of
9092 if (procname
!= NULL
9093 && (const_strneq (procname
, "__gcc_personality_v0")
9094 || const_strneq (procname
, "__gxx_personality_v0")
9095 || const_strneq (procname
, "__gcj_personality_v0")
9096 || const_strneq (procname
, "__gnu_objc_personality_v0")))
9103 printf (_(" [Truncated data]\n"));
9106 more_words
= word
>> 24;
9116 /* ARM EHABI Section 6.3:
9118 An exception-handling table entry for the compact model looks like:
9122 1 0 index Data for personalityRoutine[index] */
9124 if (filedata
->file_header
.e_machine
== EM_ARM
9125 && (word
& 0x70000000))
9127 warn (_("Corrupt ARM compact model table entry: %x \n"), word
);
9131 per_index
= (word
>> 24) & 0x7f;
9132 printf (_(" Compact model index: %d\n"), per_index
);
9139 else if (per_index
< 3)
9141 more_words
= (word
>> 16) & 0xff;
9147 switch (filedata
->file_header
.e_machine
)
9152 if (! decode_arm_unwind_bytecode (filedata
, aux
, word
, remaining
, more_words
,
9153 data_offset
, data_sec
, data_arm_sec
))
9158 warn (_("Unknown ARM compact model index encountered\n"));
9159 printf (_(" [reserved]\n"));
9167 if (! decode_tic6x_unwind_bytecode (filedata
, aux
, word
, remaining
, more_words
,
9168 data_offset
, data_sec
, data_arm_sec
))
9171 else if (per_index
< 5)
9173 if (((word
>> 17) & 0x7f) == 0x7f)
9174 printf (_(" Restore stack from frame pointer\n"));
9176 printf (_(" Stack increment %d\n"), (word
>> 14) & 0x1fc);
9177 printf (_(" Registers restored: "));
9179 printf (" (compact) ");
9180 decode_tic6x_unwind_regmask ((word
>> 4) & 0x1fff);
9182 printf (_(" Return register: %s\n"),
9183 tic6x_unwind_regnames
[word
& 0xf]);
9186 printf (_(" [reserved (%d)]\n"), per_index
);
9190 error (_("Unsupported architecture type %d encountered when decoding unwind table\n"),
9191 filedata
->file_header
.e_machine
);
9195 /* Decode the descriptors. Not implemented. */
9201 dump_arm_unwind (Filedata
* filedata
,
9202 struct arm_unw_aux_info
* aux
,
9203 Elf_Internal_Shdr
* exidx_sec
)
9205 struct arm_section exidx_arm_sec
, extab_arm_sec
;
9206 unsigned int i
, exidx_len
;
9207 unsigned long j
, nfuns
;
9208 bfd_boolean res
= TRUE
;
9210 memset (&exidx_arm_sec
, 0, sizeof (exidx_arm_sec
));
9211 memset (&extab_arm_sec
, 0, sizeof (extab_arm_sec
));
9212 exidx_len
= exidx_sec
->sh_size
/ 8;
9214 aux
->funtab
= xmalloc (aux
->nsyms
* sizeof (Elf_Internal_Sym
));
9215 for (nfuns
= 0, j
= 0; j
< aux
->nsyms
; j
++)
9216 if (aux
->symtab
[j
].st_value
&& ELF_ST_TYPE (aux
->symtab
[j
].st_info
) == STT_FUNC
)
9217 aux
->funtab
[nfuns
++] = aux
->symtab
[j
];
9219 qsort (aux
->funtab
, aux
->nfuns
, sizeof (Elf_Internal_Sym
), symcmp
);
9221 for (i
= 0; i
< exidx_len
; i
++)
9223 unsigned int exidx_fn
, exidx_entry
;
9224 struct absaddr fn_addr
, entry_addr
;
9227 fputc ('\n', stdout
);
9229 if (! get_unwind_section_word (filedata
, aux
, & exidx_arm_sec
, exidx_sec
,
9230 8 * i
, & exidx_fn
, & fn_addr
, NULL
)
9231 || ! get_unwind_section_word (filedata
, aux
, & exidx_arm_sec
, exidx_sec
,
9232 8 * i
+ 4, & exidx_entry
, & entry_addr
, NULL
))
9235 arm_free_section (& exidx_arm_sec
);
9236 arm_free_section (& extab_arm_sec
);
9240 /* ARM EHABI, Section 5:
9241 An index table entry consists of 2 words.
9242 The first word contains a prel31 offset to the start of a function, with bit 31 clear. */
9243 if (exidx_fn
& 0x80000000)
9245 warn (_("corrupt index table entry: %x\n"), exidx_fn
);
9249 fn
= arm_expand_prel31 (filedata
, exidx_fn
, exidx_sec
->sh_addr
+ 8 * i
);
9251 arm_print_vma_and_name (filedata
, aux
, fn
, fn_addr
);
9252 fputs (": ", stdout
);
9254 if (exidx_entry
== 1)
9256 print_vma (exidx_entry
, PREFIX_HEX
);
9257 fputs (" [cantunwind]\n", stdout
);
9259 else if (exidx_entry
& 0x80000000)
9261 print_vma (exidx_entry
, PREFIX_HEX
);
9262 fputc ('\n', stdout
);
9263 decode_arm_unwind (filedata
, aux
, exidx_entry
, 4, 0, NULL
, NULL
);
9267 bfd_vma table
, table_offset
= 0;
9268 Elf_Internal_Shdr
*table_sec
;
9270 fputs ("@", stdout
);
9271 table
= arm_expand_prel31 (filedata
, exidx_entry
, exidx_sec
->sh_addr
+ 8 * i
+ 4);
9272 print_vma (table
, PREFIX_HEX
);
9275 /* Locate the matching .ARM.extab. */
9276 if (entry_addr
.section
!= SHN_UNDEF
9277 && entry_addr
.section
< filedata
->file_header
.e_shnum
)
9279 table_sec
= filedata
->section_headers
+ entry_addr
.section
;
9280 table_offset
= entry_addr
.offset
;
9282 if (table_offset
> table_sec
->sh_size
9283 || ((bfd_signed_vma
) table_offset
) < 0)
9285 warn (_("Unwind entry contains corrupt offset (0x%lx) into section %s\n"),
9286 (unsigned long) table_offset
,
9287 printable_section_name (filedata
, table_sec
));
9294 table_sec
= find_section_by_address (filedata
, table
);
9295 if (table_sec
!= NULL
)
9296 table_offset
= table
- table_sec
->sh_addr
;
9299 if (table_sec
== NULL
)
9301 warn (_("Could not locate .ARM.extab section containing 0x%lx.\n"),
9302 (unsigned long) table
);
9307 if (! decode_arm_unwind (filedata
, aux
, 0, 0, table_offset
, table_sec
,
9316 arm_free_section (&exidx_arm_sec
);
9317 arm_free_section (&extab_arm_sec
);
9322 /* Used for both ARM and C6X unwinding tables. */
9325 arm_process_unwind (Filedata
* filedata
)
9327 struct arm_unw_aux_info aux
;
9328 Elf_Internal_Shdr
*unwsec
= NULL
;
9329 Elf_Internal_Shdr
*strsec
;
9330 Elf_Internal_Shdr
*sec
;
9332 unsigned int sec_type
;
9333 bfd_boolean res
= TRUE
;
9335 switch (filedata
->file_header
.e_machine
)
9338 sec_type
= SHT_ARM_EXIDX
;
9342 sec_type
= SHT_C6000_UNWIND
;
9346 error (_("Unsupported architecture type %d encountered when processing unwind table\n"),
9347 filedata
->file_header
.e_machine
);
9351 if (filedata
->string_table
== NULL
)
9354 memset (& aux
, 0, sizeof (aux
));
9355 aux
.filedata
= filedata
;
9357 for (i
= 0, sec
= filedata
->section_headers
; i
< filedata
->file_header
.e_shnum
; ++i
, ++sec
)
9359 if (sec
->sh_type
== SHT_SYMTAB
&& sec
->sh_link
< filedata
->file_header
.e_shnum
)
9361 aux
.symtab
= GET_ELF_SYMBOLS (filedata
, sec
, & aux
.nsyms
);
9363 strsec
= filedata
->section_headers
+ sec
->sh_link
;
9365 /* PR binutils/17531 file: 011-12666-0.004. */
9366 if (aux
.strtab
!= NULL
)
9368 error (_("Multiple string tables found in file.\n"));
9372 aux
.strtab
= get_data (NULL
, filedata
, strsec
->sh_offset
,
9373 1, strsec
->sh_size
, _("string table"));
9374 aux
.strtab_size
= aux
.strtab
!= NULL
? strsec
->sh_size
: 0;
9376 else if (sec
->sh_type
== sec_type
)
9381 printf (_("\nThere are no unwind sections in this file.\n"));
9383 for (i
= 0, sec
= filedata
->section_headers
; i
< filedata
->file_header
.e_shnum
; ++i
, ++sec
)
9385 if (sec
->sh_type
== sec_type
)
9387 unsigned long num_unwind
= sec
->sh_size
/ (2 * eh_addr_size
);
9388 printf (ngettext ("\nUnwind section '%s' at offset 0x%lx "
9389 "contains %lu entry:\n",
9390 "\nUnwind section '%s' at offset 0x%lx "
9391 "contains %lu entries:\n",
9393 printable_section_name (filedata
, sec
),
9394 (unsigned long) sec
->sh_offset
,
9397 if (! dump_arm_unwind (filedata
, &aux
, sec
))
9405 free ((char *) aux
.strtab
);
9411 process_unwind (Filedata
* filedata
)
9413 struct unwind_handler
9415 unsigned int machtype
;
9416 bfd_boolean (* handler
)(Filedata
*);
9419 { EM_ARM
, arm_process_unwind
},
9420 { EM_IA_64
, ia64_process_unwind
},
9421 { EM_PARISC
, hppa_process_unwind
},
9422 { EM_TI_C6000
, arm_process_unwind
},
9430 for (i
= 0; handlers
[i
].handler
!= NULL
; i
++)
9431 if (filedata
->file_header
.e_machine
== handlers
[i
].machtype
)
9432 return handlers
[i
].handler (filedata
);
9434 printf (_("\nThe decoding of unwind sections for machine type %s is not currently supported.\n"),
9435 get_machine_name (filedata
->file_header
.e_machine
));
9440 dynamic_section_aarch64_val (Elf_Internal_Dyn
* entry
)
9442 switch (entry
->d_tag
)
9444 case DT_AARCH64_BTI_PLT
:
9445 case DT_AARCH64_PAC_PLT
:
9448 print_vma (entry
->d_un
.d_ptr
, PREFIX_HEX
);
9455 dynamic_section_mips_val (Elf_Internal_Dyn
* entry
)
9457 switch (entry
->d_tag
)
9460 if (entry
->d_un
.d_val
== 0)
9464 static const char * opts
[] =
9466 "QUICKSTART", "NOTPOT", "NO_LIBRARY_REPLACEMENT",
9467 "NO_MOVE", "SGI_ONLY", "GUARANTEE_INIT", "DELTA_C_PLUS_PLUS",
9468 "GUARANTEE_START_INIT", "PIXIE", "DEFAULT_DELAY_LOAD",
9469 "REQUICKSTART", "REQUICKSTARTED", "CORD", "NO_UNRES_UNDEF",
9473 bfd_boolean first
= TRUE
;
9475 for (cnt
= 0; cnt
< ARRAY_SIZE (opts
); ++cnt
)
9476 if (entry
->d_un
.d_val
& (1 << cnt
))
9478 printf ("%s%s", first
? "" : " ", opts
[cnt
]);
9484 case DT_MIPS_IVERSION
:
9485 if (VALID_DYNAMIC_NAME (entry
->d_un
.d_val
))
9486 printf (_("Interface Version: %s"), GET_DYNAMIC_NAME (entry
->d_un
.d_val
));
9490 sprintf_vma (buf
, entry
->d_un
.d_ptr
);
9491 /* Note: coded this way so that there is a single string for translation. */
9492 printf (_("<corrupt: %s>"), buf
);
9496 case DT_MIPS_TIME_STAMP
:
9500 time_t atime
= entry
->d_un
.d_val
;
9502 tmp
= gmtime (&atime
);
9503 /* PR 17531: file: 6accc532. */
9505 snprintf (timebuf
, sizeof (timebuf
), _("<corrupt>"));
9507 snprintf (timebuf
, sizeof (timebuf
), "%04u-%02u-%02uT%02u:%02u:%02u",
9508 tmp
->tm_year
+ 1900, tmp
->tm_mon
+ 1, tmp
->tm_mday
,
9509 tmp
->tm_hour
, tmp
->tm_min
, tmp
->tm_sec
);
9510 printf (_("Time Stamp: %s"), timebuf
);
9514 case DT_MIPS_RLD_VERSION
:
9515 case DT_MIPS_LOCAL_GOTNO
:
9516 case DT_MIPS_CONFLICTNO
:
9517 case DT_MIPS_LIBLISTNO
:
9518 case DT_MIPS_SYMTABNO
:
9519 case DT_MIPS_UNREFEXTNO
:
9520 case DT_MIPS_HIPAGENO
:
9521 case DT_MIPS_DELTA_CLASS_NO
:
9522 case DT_MIPS_DELTA_INSTANCE_NO
:
9523 case DT_MIPS_DELTA_RELOC_NO
:
9524 case DT_MIPS_DELTA_SYM_NO
:
9525 case DT_MIPS_DELTA_CLASSSYM_NO
:
9526 case DT_MIPS_COMPACT_SIZE
:
9527 print_vma (entry
->d_un
.d_val
, DEC
);
9531 dynamic_info_DT_MIPS_XHASH
= entry
->d_un
.d_val
;
9532 dynamic_info_DT_GNU_HASH
= entry
->d_un
.d_val
;
9533 /* Falls through. */
9536 print_vma (entry
->d_un
.d_ptr
, PREFIX_HEX
);
9542 dynamic_section_parisc_val (Elf_Internal_Dyn
* entry
)
9544 switch (entry
->d_tag
)
9546 case DT_HP_DLD_FLAGS
:
9555 { DT_HP_DEBUG_PRIVATE
, "HP_DEBUG_PRIVATE" },
9556 { DT_HP_DEBUG_CALLBACK
, "HP_DEBUG_CALLBACK" },
9557 { DT_HP_DEBUG_CALLBACK_BOR
, "HP_DEBUG_CALLBACK_BOR" },
9558 { DT_HP_NO_ENVVAR
, "HP_NO_ENVVAR" },
9559 { DT_HP_BIND_NOW
, "HP_BIND_NOW" },
9560 { DT_HP_BIND_NONFATAL
, "HP_BIND_NONFATAL" },
9561 { DT_HP_BIND_VERBOSE
, "HP_BIND_VERBOSE" },
9562 { DT_HP_BIND_RESTRICTED
, "HP_BIND_RESTRICTED" },
9563 { DT_HP_BIND_SYMBOLIC
, "HP_BIND_SYMBOLIC" },
9564 { DT_HP_RPATH_FIRST
, "HP_RPATH_FIRST" },
9565 { DT_HP_BIND_DEPTH_FIRST
, "HP_BIND_DEPTH_FIRST" },
9566 { DT_HP_GST
, "HP_GST" },
9567 { DT_HP_SHLIB_FIXED
, "HP_SHLIB_FIXED" },
9568 { DT_HP_MERGE_SHLIB_SEG
, "HP_MERGE_SHLIB_SEG" },
9569 { DT_HP_NODELETE
, "HP_NODELETE" },
9570 { DT_HP_GROUP
, "HP_GROUP" },
9571 { DT_HP_PROTECT_LINKAGE_TABLE
, "HP_PROTECT_LINKAGE_TABLE" }
9573 bfd_boolean first
= TRUE
;
9575 bfd_vma val
= entry
->d_un
.d_val
;
9577 for (cnt
= 0; cnt
< ARRAY_SIZE (flags
); ++cnt
)
9578 if (val
& flags
[cnt
].bit
)
9582 fputs (flags
[cnt
].str
, stdout
);
9584 val
^= flags
[cnt
].bit
;
9587 if (val
!= 0 || first
)
9591 print_vma (val
, HEX
);
9597 print_vma (entry
->d_un
.d_ptr
, PREFIX_HEX
);
9605 /* VMS vs Unix time offset and factor. */
9607 #define VMS_EPOCH_OFFSET 35067168000000000LL
9608 #define VMS_GRANULARITY_FACTOR 10000000
9610 /* Display a VMS time in a human readable format. */
9613 print_vms_time (bfd_int64_t vmstime
)
9618 unxtime
= (vmstime
- VMS_EPOCH_OFFSET
) / VMS_GRANULARITY_FACTOR
;
9619 tm
= gmtime (&unxtime
);
9620 printf ("%04u-%02u-%02uT%02u:%02u:%02u",
9621 tm
->tm_year
+ 1900, tm
->tm_mon
+ 1, tm
->tm_mday
,
9622 tm
->tm_hour
, tm
->tm_min
, tm
->tm_sec
);
9627 dynamic_section_ia64_val (Elf_Internal_Dyn
* entry
)
9629 switch (entry
->d_tag
)
9631 case DT_IA_64_PLT_RESERVE
:
9632 /* First 3 slots reserved. */
9633 print_vma (entry
->d_un
.d_ptr
, PREFIX_HEX
);
9635 print_vma (entry
->d_un
.d_ptr
+ (3 * 8), PREFIX_HEX
);
9638 case DT_IA_64_VMS_LINKTIME
:
9640 print_vms_time (entry
->d_un
.d_val
);
9644 case DT_IA_64_VMS_LNKFLAGS
:
9645 print_vma (entry
->d_un
.d_ptr
, PREFIX_HEX
);
9646 if (entry
->d_un
.d_val
& VMS_LF_CALL_DEBUG
)
9647 printf (" CALL_DEBUG");
9648 if (entry
->d_un
.d_val
& VMS_LF_NOP0BUFS
)
9649 printf (" NOP0BUFS");
9650 if (entry
->d_un
.d_val
& VMS_LF_P0IMAGE
)
9651 printf (" P0IMAGE");
9652 if (entry
->d_un
.d_val
& VMS_LF_MKTHREADS
)
9653 printf (" MKTHREADS");
9654 if (entry
->d_un
.d_val
& VMS_LF_UPCALLS
)
9655 printf (" UPCALLS");
9656 if (entry
->d_un
.d_val
& VMS_LF_IMGSTA
)
9658 if (entry
->d_un
.d_val
& VMS_LF_INITIALIZE
)
9659 printf (" INITIALIZE");
9660 if (entry
->d_un
.d_val
& VMS_LF_MAIN
)
9662 if (entry
->d_un
.d_val
& VMS_LF_EXE_INIT
)
9663 printf (" EXE_INIT");
9664 if (entry
->d_un
.d_val
& VMS_LF_TBK_IN_IMG
)
9665 printf (" TBK_IN_IMG");
9666 if (entry
->d_un
.d_val
& VMS_LF_DBG_IN_IMG
)
9667 printf (" DBG_IN_IMG");
9668 if (entry
->d_un
.d_val
& VMS_LF_TBK_IN_DSF
)
9669 printf (" TBK_IN_DSF");
9670 if (entry
->d_un
.d_val
& VMS_LF_DBG_IN_DSF
)
9671 printf (" DBG_IN_DSF");
9672 if (entry
->d_un
.d_val
& VMS_LF_SIGNATURES
)
9673 printf (" SIGNATURES");
9674 if (entry
->d_un
.d_val
& VMS_LF_REL_SEG_OFF
)
9675 printf (" REL_SEG_OFF");
9679 print_vma (entry
->d_un
.d_ptr
, PREFIX_HEX
);
9686 get_32bit_dynamic_section (Filedata
* filedata
)
9688 Elf32_External_Dyn
* edyn
;
9689 Elf32_External_Dyn
* ext
;
9690 Elf_Internal_Dyn
* entry
;
9692 edyn
= (Elf32_External_Dyn
*) get_data (NULL
, filedata
, dynamic_addr
, 1,
9693 dynamic_size
, _("dynamic section"));
9697 /* SGI's ELF has more than one section in the DYNAMIC segment, and we
9698 might not have the luxury of section headers. Look for the DT_NULL
9699 terminator to determine the number of entries. */
9700 for (ext
= edyn
, dynamic_nent
= 0;
9701 (char *) (ext
+ 1) <= (char *) edyn
+ dynamic_size
;
9705 if (BYTE_GET (ext
->d_tag
) == DT_NULL
)
9709 dynamic_section
= (Elf_Internal_Dyn
*) cmalloc (dynamic_nent
,
9711 if (dynamic_section
== NULL
)
9713 error (_("Out of memory allocating space for %lu dynamic entries\n"),
9714 (unsigned long) dynamic_nent
);
9719 for (ext
= edyn
, entry
= dynamic_section
;
9720 entry
< dynamic_section
+ dynamic_nent
;
9723 entry
->d_tag
= BYTE_GET (ext
->d_tag
);
9724 entry
->d_un
.d_val
= BYTE_GET (ext
->d_un
.d_val
);
9733 get_64bit_dynamic_section (Filedata
* filedata
)
9735 Elf64_External_Dyn
* edyn
;
9736 Elf64_External_Dyn
* ext
;
9737 Elf_Internal_Dyn
* entry
;
9739 /* Read in the data. */
9740 edyn
= (Elf64_External_Dyn
*) get_data (NULL
, filedata
, dynamic_addr
, 1,
9741 dynamic_size
, _("dynamic section"));
9745 /* SGI's ELF has more than one section in the DYNAMIC segment, and we
9746 might not have the luxury of section headers. Look for the DT_NULL
9747 terminator to determine the number of entries. */
9748 for (ext
= edyn
, dynamic_nent
= 0;
9749 /* PR 17533 file: 033-67080-0.004 - do not read past end of buffer. */
9750 (char *) (ext
+ 1) <= (char *) edyn
+ dynamic_size
;
9754 if (BYTE_GET (ext
->d_tag
) == DT_NULL
)
9758 dynamic_section
= (Elf_Internal_Dyn
*) cmalloc (dynamic_nent
,
9760 if (dynamic_section
== NULL
)
9762 error (_("Out of memory allocating space for %lu dynamic entries\n"),
9763 (unsigned long) dynamic_nent
);
9768 /* Convert from external to internal formats. */
9769 for (ext
= edyn
, entry
= dynamic_section
;
9770 entry
< dynamic_section
+ dynamic_nent
;
9773 entry
->d_tag
= BYTE_GET (ext
->d_tag
);
9774 entry
->d_un
.d_val
= BYTE_GET (ext
->d_un
.d_val
);
9783 print_dynamic_flags (bfd_vma flags
)
9785 bfd_boolean first
= TRUE
;
9791 flag
= flags
& - flags
;
9801 case DF_ORIGIN
: fputs ("ORIGIN", stdout
); break;
9802 case DF_SYMBOLIC
: fputs ("SYMBOLIC", stdout
); break;
9803 case DF_TEXTREL
: fputs ("TEXTREL", stdout
); break;
9804 case DF_BIND_NOW
: fputs ("BIND_NOW", stdout
); break;
9805 case DF_STATIC_TLS
: fputs ("STATIC_TLS", stdout
); break;
9806 default: fputs (_("unknown"), stdout
); break;
9812 /* Parse and display the contents of the dynamic section. */
9815 process_dynamic_section (Filedata
* filedata
)
9817 Elf_Internal_Dyn
* entry
;
9819 if (dynamic_size
== 0)
9822 printf (_("\nThere is no dynamic section in this file.\n"));
9829 if (! get_32bit_dynamic_section (filedata
))
9834 if (! get_64bit_dynamic_section (filedata
))
9838 /* Find the appropriate symbol table. */
9839 if (dynamic_symbols
== NULL
)
9841 for (entry
= dynamic_section
;
9842 entry
< dynamic_section
+ dynamic_nent
;
9845 Elf_Internal_Shdr section
;
9847 if (entry
->d_tag
!= DT_SYMTAB
)
9850 dynamic_info
[DT_SYMTAB
] = entry
->d_un
.d_val
;
9852 /* Since we do not know how big the symbol table is,
9853 we default to reading in the entire file (!) and
9854 processing that. This is overkill, I know, but it
9856 section
.sh_offset
= offset_from_vma (filedata
, entry
->d_un
.d_val
, 0);
9857 if ((bfd_size_type
) section
.sh_offset
> filedata
->file_size
)
9859 /* See PR 21379 for a reproducer. */
9860 error (_("Invalid DT_SYMTAB entry: %lx"), (long) section
.sh_offset
);
9864 if (archive_file_offset
!= 0)
9865 section
.sh_size
= archive_file_size
- section
.sh_offset
;
9867 section
.sh_size
= filedata
->file_size
- section
.sh_offset
;
9870 section
.sh_entsize
= sizeof (Elf32_External_Sym
);
9872 section
.sh_entsize
= sizeof (Elf64_External_Sym
);
9873 section
.sh_name
= filedata
->string_table_length
;
9875 if (dynamic_symbols
!= NULL
)
9877 error (_("Multiple dynamic symbol table sections found\n"));
9878 free (dynamic_symbols
);
9880 dynamic_symbols
= GET_ELF_SYMBOLS (filedata
, §ion
, & num_dynamic_syms
);
9881 if (num_dynamic_syms
< 1)
9883 error (_("Unable to determine the number of symbols to load\n"));
9889 /* Similarly find a string table. */
9890 if (dynamic_strings
== NULL
)
9892 for (entry
= dynamic_section
;
9893 entry
< dynamic_section
+ dynamic_nent
;
9896 unsigned long offset
;
9899 if (entry
->d_tag
!= DT_STRTAB
)
9902 dynamic_info
[DT_STRTAB
] = entry
->d_un
.d_val
;
9904 /* Since we do not know how big the string table is,
9905 we default to reading in the entire file (!) and
9906 processing that. This is overkill, I know, but it
9909 offset
= offset_from_vma (filedata
, entry
->d_un
.d_val
, 0);
9911 if (archive_file_offset
!= 0)
9912 str_tab_len
= archive_file_size
- offset
;
9914 str_tab_len
= filedata
->file_size
- offset
;
9916 if (str_tab_len
< 1)
9919 (_("Unable to determine the length of the dynamic string table\n"));
9923 if (dynamic_strings
!= NULL
)
9925 error (_("Multiple dynamic string tables found\n"));
9926 free (dynamic_strings
);
9929 dynamic_strings
= (char *) get_data (NULL
, filedata
, offset
, 1,
9931 _("dynamic string table"));
9932 dynamic_strings_length
= dynamic_strings
== NULL
? 0 : str_tab_len
;
9936 /* And find the syminfo section if available. */
9937 if (dynamic_syminfo
== NULL
)
9939 unsigned long syminsz
= 0;
9941 for (entry
= dynamic_section
;
9942 entry
< dynamic_section
+ dynamic_nent
;
9945 if (entry
->d_tag
== DT_SYMINENT
)
9947 /* Note: these braces are necessary to avoid a syntax
9948 error from the SunOS4 C compiler. */
9949 /* PR binutils/17531: A corrupt file can trigger this test.
9950 So do not use an assert, instead generate an error message. */
9951 if (sizeof (Elf_External_Syminfo
) != entry
->d_un
.d_val
)
9952 error (_("Bad value (%d) for SYMINENT entry\n"),
9953 (int) entry
->d_un
.d_val
);
9955 else if (entry
->d_tag
== DT_SYMINSZ
)
9956 syminsz
= entry
->d_un
.d_val
;
9957 else if (entry
->d_tag
== DT_SYMINFO
)
9958 dynamic_syminfo_offset
= offset_from_vma (filedata
, entry
->d_un
.d_val
,
9962 if (dynamic_syminfo_offset
!= 0 && syminsz
!= 0)
9964 Elf_External_Syminfo
* extsyminfo
;
9965 Elf_External_Syminfo
* extsym
;
9966 Elf_Internal_Syminfo
* syminfo
;
9968 /* There is a syminfo section. Read the data. */
9969 extsyminfo
= (Elf_External_Syminfo
*)
9970 get_data (NULL
, filedata
, dynamic_syminfo_offset
, 1, syminsz
,
9971 _("symbol information"));
9975 if (dynamic_syminfo
!= NULL
)
9977 error (_("Multiple dynamic symbol information sections found\n"));
9978 free (dynamic_syminfo
);
9980 dynamic_syminfo
= (Elf_Internal_Syminfo
*) malloc (syminsz
);
9981 if (dynamic_syminfo
== NULL
)
9983 error (_("Out of memory allocating %lu byte for dynamic symbol info\n"),
9984 (unsigned long) syminsz
);
9988 dynamic_syminfo_nent
= syminsz
/ sizeof (Elf_External_Syminfo
);
9989 for (syminfo
= dynamic_syminfo
, extsym
= extsyminfo
;
9990 syminfo
< dynamic_syminfo
+ dynamic_syminfo_nent
;
9991 ++syminfo
, ++extsym
)
9993 syminfo
->si_boundto
= BYTE_GET (extsym
->si_boundto
);
9994 syminfo
->si_flags
= BYTE_GET (extsym
->si_flags
);
10001 if (do_dynamic
&& dynamic_addr
)
10002 printf (ngettext ("\nDynamic section at offset 0x%lx "
10003 "contains %lu entry:\n",
10004 "\nDynamic section at offset 0x%lx "
10005 "contains %lu entries:\n",
10007 dynamic_addr
, (unsigned long) dynamic_nent
);
10009 printf (_(" Tag Type Name/Value\n"));
10011 for (entry
= dynamic_section
;
10012 entry
< dynamic_section
+ dynamic_nent
;
10017 const char * dtype
;
10020 print_vma (entry
->d_tag
, FULL_HEX
);
10021 dtype
= get_dynamic_type (filedata
, entry
->d_tag
);
10022 printf (" (%s)%*s", dtype
,
10023 ((is_32bit_elf
? 27 : 19) - (int) strlen (dtype
)), " ");
10026 switch (entry
->d_tag
)
10030 print_dynamic_flags (entry
->d_un
.d_val
);
10040 switch (entry
->d_tag
)
10043 printf (_("Auxiliary library"));
10047 printf (_("Filter library"));
10051 printf (_("Configuration file"));
10055 printf (_("Dependency audit library"));
10059 printf (_("Audit library"));
10063 if (VALID_DYNAMIC_NAME (entry
->d_un
.d_val
))
10064 printf (": [%s]\n", GET_DYNAMIC_NAME (entry
->d_un
.d_val
));
10068 print_vma (entry
->d_un
.d_val
, PREFIX_HEX
);
10077 printf (_("Flags:"));
10079 if (entry
->d_un
.d_val
== 0)
10080 printf (_(" None\n"));
10083 unsigned long int val
= entry
->d_un
.d_val
;
10085 if (val
& DTF_1_PARINIT
)
10087 printf (" PARINIT");
10088 val
^= DTF_1_PARINIT
;
10090 if (val
& DTF_1_CONFEXP
)
10092 printf (" CONFEXP");
10093 val
^= DTF_1_CONFEXP
;
10096 printf (" %lx", val
);
10105 printf (_("Flags:"));
10107 if (entry
->d_un
.d_val
== 0)
10108 printf (_(" None\n"));
10111 unsigned long int val
= entry
->d_un
.d_val
;
10113 if (val
& DF_P1_LAZYLOAD
)
10115 printf (" LAZYLOAD");
10116 val
^= DF_P1_LAZYLOAD
;
10118 if (val
& DF_P1_GROUPPERM
)
10120 printf (" GROUPPERM");
10121 val
^= DF_P1_GROUPPERM
;
10124 printf (" %lx", val
);
10133 printf (_("Flags:"));
10134 if (entry
->d_un
.d_val
== 0)
10135 printf (_(" None\n"));
10138 unsigned long int val
= entry
->d_un
.d_val
;
10140 if (val
& DF_1_NOW
)
10145 if (val
& DF_1_GLOBAL
)
10147 printf (" GLOBAL");
10148 val
^= DF_1_GLOBAL
;
10150 if (val
& DF_1_GROUP
)
10155 if (val
& DF_1_NODELETE
)
10157 printf (" NODELETE");
10158 val
^= DF_1_NODELETE
;
10160 if (val
& DF_1_LOADFLTR
)
10162 printf (" LOADFLTR");
10163 val
^= DF_1_LOADFLTR
;
10165 if (val
& DF_1_INITFIRST
)
10167 printf (" INITFIRST");
10168 val
^= DF_1_INITFIRST
;
10170 if (val
& DF_1_NOOPEN
)
10172 printf (" NOOPEN");
10173 val
^= DF_1_NOOPEN
;
10175 if (val
& DF_1_ORIGIN
)
10177 printf (" ORIGIN");
10178 val
^= DF_1_ORIGIN
;
10180 if (val
& DF_1_DIRECT
)
10182 printf (" DIRECT");
10183 val
^= DF_1_DIRECT
;
10185 if (val
& DF_1_TRANS
)
10190 if (val
& DF_1_INTERPOSE
)
10192 printf (" INTERPOSE");
10193 val
^= DF_1_INTERPOSE
;
10195 if (val
& DF_1_NODEFLIB
)
10197 printf (" NODEFLIB");
10198 val
^= DF_1_NODEFLIB
;
10200 if (val
& DF_1_NODUMP
)
10202 printf (" NODUMP");
10203 val
^= DF_1_NODUMP
;
10205 if (val
& DF_1_CONFALT
)
10207 printf (" CONFALT");
10208 val
^= DF_1_CONFALT
;
10210 if (val
& DF_1_ENDFILTEE
)
10212 printf (" ENDFILTEE");
10213 val
^= DF_1_ENDFILTEE
;
10215 if (val
& DF_1_DISPRELDNE
)
10217 printf (" DISPRELDNE");
10218 val
^= DF_1_DISPRELDNE
;
10220 if (val
& DF_1_DISPRELPND
)
10222 printf (" DISPRELPND");
10223 val
^= DF_1_DISPRELPND
;
10225 if (val
& DF_1_NODIRECT
)
10227 printf (" NODIRECT");
10228 val
^= DF_1_NODIRECT
;
10230 if (val
& DF_1_IGNMULDEF
)
10232 printf (" IGNMULDEF");
10233 val
^= DF_1_IGNMULDEF
;
10235 if (val
& DF_1_NOKSYMS
)
10237 printf (" NOKSYMS");
10238 val
^= DF_1_NOKSYMS
;
10240 if (val
& DF_1_NOHDR
)
10245 if (val
& DF_1_EDITED
)
10247 printf (" EDITED");
10248 val
^= DF_1_EDITED
;
10250 if (val
& DF_1_NORELOC
)
10252 printf (" NORELOC");
10253 val
^= DF_1_NORELOC
;
10255 if (val
& DF_1_SYMINTPOSE
)
10257 printf (" SYMINTPOSE");
10258 val
^= DF_1_SYMINTPOSE
;
10260 if (val
& DF_1_GLOBAUDIT
)
10262 printf (" GLOBAUDIT");
10263 val
^= DF_1_GLOBAUDIT
;
10265 if (val
& DF_1_SINGLETON
)
10267 printf (" SINGLETON");
10268 val
^= DF_1_SINGLETON
;
10270 if (val
& DF_1_STUB
)
10275 if (val
& DF_1_PIE
)
10280 if (val
& DF_1_KMOD
)
10285 if (val
& DF_1_WEAKFILTER
)
10287 printf (" WEAKFILTER");
10288 val
^= DF_1_WEAKFILTER
;
10290 if (val
& DF_1_NOCOMMON
)
10292 printf (" NOCOMMON");
10293 val
^= DF_1_NOCOMMON
;
10296 printf (" %lx", val
);
10303 dynamic_info
[entry
->d_tag
] = entry
->d_un
.d_val
;
10305 puts (get_dynamic_type (filedata
, entry
->d_un
.d_val
));
10325 dynamic_info
[entry
->d_tag
] = entry
->d_un
.d_val
;
10331 if (VALID_DYNAMIC_NAME (entry
->d_un
.d_val
))
10332 name
= GET_DYNAMIC_NAME (entry
->d_un
.d_val
);
10338 switch (entry
->d_tag
)
10341 printf (_("Shared library: [%s]"), name
);
10343 if (streq (name
, program_interpreter
))
10344 printf (_(" program interpreter"));
10348 printf (_("Library soname: [%s]"), name
);
10352 printf (_("Library rpath: [%s]"), name
);
10356 printf (_("Library runpath: [%s]"), name
);
10360 print_vma (entry
->d_un
.d_val
, PREFIX_HEX
);
10365 print_vma (entry
->d_un
.d_val
, PREFIX_HEX
);
10378 dynamic_info
[entry
->d_tag
] = entry
->d_un
.d_val
;
10379 /* Fall through. */
10383 case DT_INIT_ARRAYSZ
:
10384 case DT_FINI_ARRAYSZ
:
10385 case DT_GNU_CONFLICTSZ
:
10386 case DT_GNU_LIBLISTSZ
:
10389 print_vma (entry
->d_un
.d_val
, UNSIGNED
);
10390 printf (_(" (bytes)\n"));
10395 case DT_VERNEEDNUM
:
10400 print_vma (entry
->d_un
.d_val
, UNSIGNED
);
10409 case DT_INIT_ARRAY
:
10410 case DT_FINI_ARRAY
:
10413 if (entry
->d_tag
== DT_USED
10414 && VALID_DYNAMIC_NAME (entry
->d_un
.d_val
))
10416 char * name
= GET_DYNAMIC_NAME (entry
->d_un
.d_val
);
10420 printf (_("Not needed object: [%s]\n"), name
);
10425 print_vma (entry
->d_un
.d_val
, PREFIX_HEX
);
10431 /* The value of this entry is ignored. */
10436 case DT_GNU_PRELINKED
:
10440 time_t atime
= entry
->d_un
.d_val
;
10442 tmp
= gmtime (&atime
);
10443 /* PR 17533 file: 041-1244816-0.004. */
10445 printf (_("<corrupt time val: %lx"),
10446 (unsigned long) atime
);
10448 printf ("%04u-%02u-%02uT%02u:%02u:%02u\n",
10449 tmp
->tm_year
+ 1900, tmp
->tm_mon
+ 1, tmp
->tm_mday
,
10450 tmp
->tm_hour
, tmp
->tm_min
, tmp
->tm_sec
);
10456 dynamic_info_DT_GNU_HASH
= entry
->d_un
.d_val
;
10459 print_vma (entry
->d_un
.d_val
, PREFIX_HEX
);
10465 if ((entry
->d_tag
>= DT_VERSYM
) && (entry
->d_tag
<= DT_VERNEEDNUM
))
10466 version_info
[DT_VERSIONTAGIDX (entry
->d_tag
)] =
10471 switch (filedata
->file_header
.e_machine
)
10474 dynamic_section_aarch64_val (entry
);
10477 case EM_MIPS_RS3_LE
:
10478 dynamic_section_mips_val (entry
);
10481 dynamic_section_parisc_val (entry
);
10484 dynamic_section_ia64_val (entry
);
10487 print_vma (entry
->d_un
.d_val
, PREFIX_HEX
);
10499 get_ver_flags (unsigned int flags
)
10501 static char buff
[128];
10508 if (flags
& VER_FLG_BASE
)
10509 strcat (buff
, "BASE");
10511 if (flags
& VER_FLG_WEAK
)
10513 if (flags
& VER_FLG_BASE
)
10514 strcat (buff
, " | ");
10516 strcat (buff
, "WEAK");
10519 if (flags
& VER_FLG_INFO
)
10521 if (flags
& (VER_FLG_BASE
|VER_FLG_WEAK
))
10522 strcat (buff
, " | ");
10524 strcat (buff
, "INFO");
10527 if (flags
& ~(VER_FLG_BASE
| VER_FLG_WEAK
| VER_FLG_INFO
))
10529 if (flags
& (VER_FLG_BASE
| VER_FLG_WEAK
| VER_FLG_INFO
))
10530 strcat (buff
, " | ");
10532 strcat (buff
, _("<unknown>"));
10538 /* Display the contents of the version sections. */
10541 process_version_sections (Filedata
* filedata
)
10543 Elf_Internal_Shdr
* section
;
10545 bfd_boolean found
= FALSE
;
10550 for (i
= 0, section
= filedata
->section_headers
;
10551 i
< filedata
->file_header
.e_shnum
;
10554 switch (section
->sh_type
)
10556 case SHT_GNU_verdef
:
10558 Elf_External_Verdef
* edefs
;
10565 printf (ngettext ("\nVersion definition section '%s' "
10566 "contains %u entry:\n",
10567 "\nVersion definition section '%s' "
10568 "contains %u entries:\n",
10570 printable_section_name (filedata
, section
),
10573 printf (_(" Addr: 0x"));
10574 printf_vma (section
->sh_addr
);
10575 printf (_(" Offset: %#08lx Link: %u (%s)\n"),
10576 (unsigned long) section
->sh_offset
, section
->sh_link
,
10577 printable_section_name_from_index (filedata
, section
->sh_link
));
10579 edefs
= (Elf_External_Verdef
*)
10580 get_data (NULL
, filedata
, section
->sh_offset
, 1,section
->sh_size
,
10581 _("version definition section"));
10584 endbuf
= (char *) edefs
+ section
->sh_size
;
10586 for (idx
= cnt
= 0; cnt
< section
->sh_info
; ++cnt
)
10589 Elf_External_Verdef
* edef
;
10590 Elf_Internal_Verdef ent
;
10591 Elf_External_Verdaux
* eaux
;
10592 Elf_Internal_Verdaux aux
;
10593 unsigned long isum
;
10596 vstart
= ((char *) edefs
) + idx
;
10597 if (vstart
+ sizeof (*edef
) > endbuf
)
10600 edef
= (Elf_External_Verdef
*) vstart
;
10602 ent
.vd_version
= BYTE_GET (edef
->vd_version
);
10603 ent
.vd_flags
= BYTE_GET (edef
->vd_flags
);
10604 ent
.vd_ndx
= BYTE_GET (edef
->vd_ndx
);
10605 ent
.vd_cnt
= BYTE_GET (edef
->vd_cnt
);
10606 ent
.vd_hash
= BYTE_GET (edef
->vd_hash
);
10607 ent
.vd_aux
= BYTE_GET (edef
->vd_aux
);
10608 ent
.vd_next
= BYTE_GET (edef
->vd_next
);
10610 printf (_(" %#06lx: Rev: %d Flags: %s"),
10611 idx
, ent
.vd_version
, get_ver_flags (ent
.vd_flags
));
10613 printf (_(" Index: %d Cnt: %d "),
10614 ent
.vd_ndx
, ent
.vd_cnt
);
10616 /* Check for overflow. */
10617 if (ent
.vd_aux
> (size_t) (endbuf
- vstart
))
10620 vstart
+= ent
.vd_aux
;
10622 if (vstart
+ sizeof (*eaux
) > endbuf
)
10624 eaux
= (Elf_External_Verdaux
*) vstart
;
10626 aux
.vda_name
= BYTE_GET (eaux
->vda_name
);
10627 aux
.vda_next
= BYTE_GET (eaux
->vda_next
);
10629 if (VALID_DYNAMIC_NAME (aux
.vda_name
))
10630 printf (_("Name: %s\n"), GET_DYNAMIC_NAME (aux
.vda_name
));
10632 printf (_("Name index: %ld\n"), aux
.vda_name
);
10634 isum
= idx
+ ent
.vd_aux
;
10636 for (j
= 1; j
< ent
.vd_cnt
; j
++)
10638 if (aux
.vda_next
< sizeof (*eaux
)
10639 && !(j
== ent
.vd_cnt
- 1 && aux
.vda_next
== 0))
10641 warn (_("Invalid vda_next field of %lx\n"),
10646 /* Check for overflow. */
10647 if (aux
.vda_next
> (size_t) (endbuf
- vstart
))
10650 isum
+= aux
.vda_next
;
10651 vstart
+= aux
.vda_next
;
10653 if (vstart
+ sizeof (*eaux
) > endbuf
)
10655 eaux
= (Elf_External_Verdaux
*) vstart
;
10657 aux
.vda_name
= BYTE_GET (eaux
->vda_name
);
10658 aux
.vda_next
= BYTE_GET (eaux
->vda_next
);
10660 if (VALID_DYNAMIC_NAME (aux
.vda_name
))
10661 printf (_(" %#06lx: Parent %d: %s\n"),
10662 isum
, j
, GET_DYNAMIC_NAME (aux
.vda_name
));
10664 printf (_(" %#06lx: Parent %d, name index: %ld\n"),
10665 isum
, j
, aux
.vda_name
);
10668 if (j
< ent
.vd_cnt
)
10669 printf (_(" Version def aux past end of section\n"));
10672 file: id:000001,src:000172+005151,op:splice,rep:2. */
10673 if (ent
.vd_next
< sizeof (*edef
)
10674 && !(cnt
== section
->sh_info
- 1 && ent
.vd_next
== 0))
10676 warn (_("Invalid vd_next field of %lx\n"), ent
.vd_next
);
10677 cnt
= section
->sh_info
;
10680 if (ent
.vd_next
> (size_t) (endbuf
- ((char *) edefs
+ idx
)))
10683 idx
+= ent
.vd_next
;
10686 if (cnt
< section
->sh_info
)
10687 printf (_(" Version definition past end of section\n"));
10693 case SHT_GNU_verneed
:
10695 Elf_External_Verneed
* eneed
;
10702 printf (ngettext ("\nVersion needs section '%s' "
10703 "contains %u entry:\n",
10704 "\nVersion needs section '%s' "
10705 "contains %u entries:\n",
10707 printable_section_name (filedata
, section
), section
->sh_info
);
10709 printf (_(" Addr: 0x"));
10710 printf_vma (section
->sh_addr
);
10711 printf (_(" Offset: %#08lx Link: %u (%s)\n"),
10712 (unsigned long) section
->sh_offset
, section
->sh_link
,
10713 printable_section_name_from_index (filedata
, section
->sh_link
));
10715 eneed
= (Elf_External_Verneed
*) get_data (NULL
, filedata
,
10716 section
->sh_offset
, 1,
10718 _("Version Needs section"));
10721 endbuf
= (char *) eneed
+ section
->sh_size
;
10723 for (idx
= cnt
= 0; cnt
< section
->sh_info
; ++cnt
)
10725 Elf_External_Verneed
* entry
;
10726 Elf_Internal_Verneed ent
;
10727 unsigned long isum
;
10731 vstart
= ((char *) eneed
) + idx
;
10732 if (vstart
+ sizeof (*entry
) > endbuf
)
10735 entry
= (Elf_External_Verneed
*) vstart
;
10737 ent
.vn_version
= BYTE_GET (entry
->vn_version
);
10738 ent
.vn_cnt
= BYTE_GET (entry
->vn_cnt
);
10739 ent
.vn_file
= BYTE_GET (entry
->vn_file
);
10740 ent
.vn_aux
= BYTE_GET (entry
->vn_aux
);
10741 ent
.vn_next
= BYTE_GET (entry
->vn_next
);
10743 printf (_(" %#06lx: Version: %d"), idx
, ent
.vn_version
);
10745 if (VALID_DYNAMIC_NAME (ent
.vn_file
))
10746 printf (_(" File: %s"), GET_DYNAMIC_NAME (ent
.vn_file
));
10748 printf (_(" File: %lx"), ent
.vn_file
);
10750 printf (_(" Cnt: %d\n"), ent
.vn_cnt
);
10752 /* Check for overflow. */
10753 if (ent
.vn_aux
> (size_t) (endbuf
- vstart
))
10755 vstart
+= ent
.vn_aux
;
10757 for (j
= 0, isum
= idx
+ ent
.vn_aux
; j
< ent
.vn_cnt
; ++j
)
10759 Elf_External_Vernaux
* eaux
;
10760 Elf_Internal_Vernaux aux
;
10762 if (vstart
+ sizeof (*eaux
) > endbuf
)
10764 eaux
= (Elf_External_Vernaux
*) vstart
;
10766 aux
.vna_hash
= BYTE_GET (eaux
->vna_hash
);
10767 aux
.vna_flags
= BYTE_GET (eaux
->vna_flags
);
10768 aux
.vna_other
= BYTE_GET (eaux
->vna_other
);
10769 aux
.vna_name
= BYTE_GET (eaux
->vna_name
);
10770 aux
.vna_next
= BYTE_GET (eaux
->vna_next
);
10772 if (VALID_DYNAMIC_NAME (aux
.vna_name
))
10773 printf (_(" %#06lx: Name: %s"),
10774 isum
, GET_DYNAMIC_NAME (aux
.vna_name
));
10776 printf (_(" %#06lx: Name index: %lx"),
10777 isum
, aux
.vna_name
);
10779 printf (_(" Flags: %s Version: %d\n"),
10780 get_ver_flags (aux
.vna_flags
), aux
.vna_other
);
10782 if (aux
.vna_next
< sizeof (*eaux
)
10783 && !(j
== ent
.vn_cnt
- 1 && aux
.vna_next
== 0))
10785 warn (_("Invalid vna_next field of %lx\n"),
10790 /* Check for overflow. */
10791 if (aux
.vna_next
> (size_t) (endbuf
- vstart
))
10793 isum
+= aux
.vna_next
;
10794 vstart
+= aux
.vna_next
;
10797 if (j
< ent
.vn_cnt
)
10798 warn (_("Missing Version Needs auxillary information\n"));
10800 if (ent
.vn_next
< sizeof (*entry
)
10801 && !(cnt
== section
->sh_info
- 1 && ent
.vn_next
== 0))
10803 warn (_("Invalid vn_next field of %lx\n"), ent
.vn_next
);
10804 cnt
= section
->sh_info
;
10807 if (ent
.vn_next
> (size_t) (endbuf
- ((char *) eneed
+ idx
)))
10809 idx
+= ent
.vn_next
;
10812 if (cnt
< section
->sh_info
)
10813 warn (_("Missing Version Needs information\n"));
10819 case SHT_GNU_versym
:
10821 Elf_Internal_Shdr
* link_section
;
10824 unsigned char * edata
;
10825 unsigned short * data
;
10827 Elf_Internal_Sym
* symbols
;
10828 Elf_Internal_Shdr
* string_sec
;
10829 unsigned long num_syms
;
10832 if (section
->sh_link
>= filedata
->file_header
.e_shnum
)
10835 link_section
= filedata
->section_headers
+ section
->sh_link
;
10836 total
= section
->sh_size
/ sizeof (Elf_External_Versym
);
10838 if (link_section
->sh_link
>= filedata
->file_header
.e_shnum
)
10843 symbols
= GET_ELF_SYMBOLS (filedata
, link_section
, & num_syms
);
10844 if (symbols
== NULL
)
10847 string_sec
= filedata
->section_headers
+ link_section
->sh_link
;
10849 strtab
= (char *) get_data (NULL
, filedata
, string_sec
->sh_offset
, 1,
10850 string_sec
->sh_size
,
10851 _("version string table"));
10858 printf (ngettext ("\nVersion symbols section '%s' "
10859 "contains %lu entry:\n",
10860 "\nVersion symbols section '%s' "
10861 "contains %lu entries:\n",
10863 printable_section_name (filedata
, section
), (unsigned long) total
);
10865 printf (_(" Addr: 0x"));
10866 printf_vma (section
->sh_addr
);
10867 printf (_(" Offset: %#08lx Link: %u (%s)\n"),
10868 (unsigned long) section
->sh_offset
, section
->sh_link
,
10869 printable_section_name (filedata
, link_section
));
10871 off
= offset_from_vma (filedata
,
10872 version_info
[DT_VERSIONTAGIDX (DT_VERSYM
)],
10873 total
* sizeof (short));
10874 edata
= (unsigned char *) get_data (NULL
, filedata
, off
, total
,
10876 _("version symbol data"));
10884 data
= (short unsigned int *) cmalloc (total
, sizeof (short));
10886 for (cnt
= total
; cnt
--;)
10887 data
[cnt
] = byte_get (edata
+ cnt
* sizeof (short),
10892 for (cnt
= 0; cnt
< total
; cnt
+= 4)
10896 char *invalid
= _("*invalid*");
10898 printf (" %03x:", cnt
);
10900 for (j
= 0; (j
< 4) && (cnt
+ j
) < total
; ++j
)
10901 switch (data
[cnt
+ j
])
10904 fputs (_(" 0 (*local*) "), stdout
);
10908 fputs (_(" 1 (*global*) "), stdout
);
10912 nn
= printf ("%4x%c", data
[cnt
+ j
] & VERSYM_VERSION
,
10913 data
[cnt
+ j
] & VERSYM_HIDDEN
? 'h' : ' ');
10915 /* If this index value is greater than the size of the symbols
10916 array, break to avoid an out-of-bounds read. */
10917 if ((unsigned long)(cnt
+ j
) >= num_syms
)
10919 warn (_("invalid index into symbol array\n"));
10924 if (version_info
[DT_VERSIONTAGIDX (DT_VERNEED
)])
10926 Elf_Internal_Verneed ivn
;
10927 unsigned long offset
;
10929 offset
= offset_from_vma
10930 (filedata
, version_info
[DT_VERSIONTAGIDX (DT_VERNEED
)],
10931 sizeof (Elf_External_Verneed
));
10935 Elf_Internal_Vernaux ivna
;
10936 Elf_External_Verneed evn
;
10937 Elf_External_Vernaux evna
;
10938 unsigned long a_off
;
10940 if (get_data (&evn
, filedata
, offset
, sizeof (evn
), 1,
10941 _("version need")) == NULL
)
10944 ivn
.vn_aux
= BYTE_GET (evn
.vn_aux
);
10945 ivn
.vn_next
= BYTE_GET (evn
.vn_next
);
10947 a_off
= offset
+ ivn
.vn_aux
;
10951 if (get_data (&evna
, filedata
, a_off
, sizeof (evna
),
10952 1, _("version need aux (2)")) == NULL
)
10955 ivna
.vna_other
= 0;
10959 ivna
.vna_next
= BYTE_GET (evna
.vna_next
);
10960 ivna
.vna_other
= BYTE_GET (evna
.vna_other
);
10963 a_off
+= ivna
.vna_next
;
10965 while (ivna
.vna_other
!= data
[cnt
+ j
]
10966 && ivna
.vna_next
!= 0);
10968 if (ivna
.vna_other
== data
[cnt
+ j
])
10970 ivna
.vna_name
= BYTE_GET (evna
.vna_name
);
10972 if (ivna
.vna_name
>= string_sec
->sh_size
)
10975 name
= strtab
+ ivna
.vna_name
;
10979 offset
+= ivn
.vn_next
;
10981 while (ivn
.vn_next
);
10984 if (data
[cnt
+ j
] != 0x8001
10985 && version_info
[DT_VERSIONTAGIDX (DT_VERDEF
)])
10987 Elf_Internal_Verdef ivd
;
10988 Elf_External_Verdef evd
;
10989 unsigned long offset
;
10991 offset
= offset_from_vma
10992 (filedata
, version_info
[DT_VERSIONTAGIDX (DT_VERDEF
)],
10997 if (get_data (&evd
, filedata
, offset
, sizeof (evd
), 1,
10998 _("version def")) == NULL
)
11001 /* PR 17531: file: 046-1082287-0.004. */
11002 ivd
.vd_ndx
= (data
[cnt
+ j
] & VERSYM_VERSION
) + 1;
11007 ivd
.vd_next
= BYTE_GET (evd
.vd_next
);
11008 ivd
.vd_ndx
= BYTE_GET (evd
.vd_ndx
);
11011 offset
+= ivd
.vd_next
;
11013 while (ivd
.vd_ndx
!= (data
[cnt
+ j
] & VERSYM_VERSION
)
11014 && ivd
.vd_next
!= 0);
11016 if (ivd
.vd_ndx
== (data
[cnt
+ j
] & VERSYM_VERSION
))
11018 Elf_External_Verdaux evda
;
11019 Elf_Internal_Verdaux ivda
;
11021 ivd
.vd_aux
= BYTE_GET (evd
.vd_aux
);
11023 if (get_data (&evda
, filedata
,
11024 offset
- ivd
.vd_next
+ ivd
.vd_aux
,
11026 _("version def aux")) == NULL
)
11029 ivda
.vda_name
= BYTE_GET (evda
.vda_name
);
11031 if (ivda
.vda_name
>= string_sec
->sh_size
)
11033 else if (name
!= NULL
&& name
!= invalid
)
11034 name
= _("*both*");
11036 name
= strtab
+ ivda
.vda_name
;
11040 nn
+= printf ("(%s%-*s",
11042 12 - (int) strlen (name
),
11046 printf ("%*c", 18 - nn
, ' ');
11064 printf (_("\nNo version information found in this file.\n"));
11069 static const char *
11070 get_symbol_binding (Filedata
* filedata
, unsigned int binding
)
11072 static char buff
[32];
11076 case STB_LOCAL
: return "LOCAL";
11077 case STB_GLOBAL
: return "GLOBAL";
11078 case STB_WEAK
: return "WEAK";
11080 if (binding
>= STB_LOPROC
&& binding
<= STB_HIPROC
)
11081 snprintf (buff
, sizeof (buff
), _("<processor specific>: %d"),
11083 else if (binding
>= STB_LOOS
&& binding
<= STB_HIOS
)
11085 if (binding
== STB_GNU_UNIQUE
11086 && filedata
->file_header
.e_ident
[EI_OSABI
] == ELFOSABI_GNU
)
11088 snprintf (buff
, sizeof (buff
), _("<OS specific>: %d"), binding
);
11091 snprintf (buff
, sizeof (buff
), _("<unknown>: %d"), binding
);
11096 static const char *
11097 get_symbol_type (Filedata
* filedata
, unsigned int type
)
11099 static char buff
[32];
11103 case STT_NOTYPE
: return "NOTYPE";
11104 case STT_OBJECT
: return "OBJECT";
11105 case STT_FUNC
: return "FUNC";
11106 case STT_SECTION
: return "SECTION";
11107 case STT_FILE
: return "FILE";
11108 case STT_COMMON
: return "COMMON";
11109 case STT_TLS
: return "TLS";
11110 case STT_RELC
: return "RELC";
11111 case STT_SRELC
: return "SRELC";
11113 if (type
>= STT_LOPROC
&& type
<= STT_HIPROC
)
11115 if (filedata
->file_header
.e_machine
== EM_ARM
&& type
== STT_ARM_TFUNC
)
11116 return "THUMB_FUNC";
11118 if (filedata
->file_header
.e_machine
== EM_SPARCV9
&& type
== STT_REGISTER
)
11121 if (filedata
->file_header
.e_machine
== EM_PARISC
&& type
== STT_PARISC_MILLI
)
11122 return "PARISC_MILLI";
11124 snprintf (buff
, sizeof (buff
), _("<processor specific>: %d"), type
);
11126 else if (type
>= STT_LOOS
&& type
<= STT_HIOS
)
11128 if (filedata
->file_header
.e_machine
== EM_PARISC
)
11130 if (type
== STT_HP_OPAQUE
)
11131 return "HP_OPAQUE";
11132 if (type
== STT_HP_STUB
)
11136 if (type
== STT_GNU_IFUNC
11137 && (filedata
->file_header
.e_ident
[EI_OSABI
] == ELFOSABI_GNU
11138 || filedata
->file_header
.e_ident
[EI_OSABI
] == ELFOSABI_FREEBSD
))
11141 snprintf (buff
, sizeof (buff
), _("<OS specific>: %d"), type
);
11144 snprintf (buff
, sizeof (buff
), _("<unknown>: %d"), type
);
11149 static const char *
11150 get_symbol_visibility (unsigned int visibility
)
11152 switch (visibility
)
11154 case STV_DEFAULT
: return "DEFAULT";
11155 case STV_INTERNAL
: return "INTERNAL";
11156 case STV_HIDDEN
: return "HIDDEN";
11157 case STV_PROTECTED
: return "PROTECTED";
11159 error (_("Unrecognized visibility value: %u"), visibility
);
11160 return _("<unknown>");
11164 static const char *
11165 get_alpha_symbol_other (unsigned int other
)
11169 case STO_ALPHA_NOPV
: return "NOPV";
11170 case STO_ALPHA_STD_GPLOAD
: return "STD GPLOAD";
11172 error (_("Unrecognized alpah specific other value: %u"), other
);
11173 return _("<unknown>");
11177 static const char *
11178 get_solaris_symbol_visibility (unsigned int visibility
)
11180 switch (visibility
)
11182 case 4: return "EXPORTED";
11183 case 5: return "SINGLETON";
11184 case 6: return "ELIMINATE";
11185 default: return get_symbol_visibility (visibility
);
11189 static const char *
11190 get_aarch64_symbol_other (unsigned int other
)
11192 static char buf
[32];
11194 if (other
& STO_AARCH64_VARIANT_PCS
)
11196 other
&= ~STO_AARCH64_VARIANT_PCS
;
11198 return "VARIANT_PCS";
11199 snprintf (buf
, sizeof buf
, "VARIANT_PCS | %x", other
);
11205 static const char *
11206 get_mips_symbol_other (unsigned int other
)
11210 case STO_OPTIONAL
: return "OPTIONAL";
11211 case STO_MIPS_PLT
: return "MIPS PLT";
11212 case STO_MIPS_PIC
: return "MIPS PIC";
11213 case STO_MICROMIPS
: return "MICROMIPS";
11214 case STO_MICROMIPS
| STO_MIPS_PIC
: return "MICROMIPS, MIPS PIC";
11215 case STO_MIPS16
: return "MIPS16";
11216 default: return NULL
;
11220 static const char *
11221 get_ia64_symbol_other (Filedata
* filedata
, unsigned int other
)
11223 if (is_ia64_vms (filedata
))
11225 static char res
[32];
11229 /* Function types is for images and .STB files only. */
11230 switch (filedata
->file_header
.e_type
)
11234 switch (VMS_ST_FUNC_TYPE (other
))
11236 case VMS_SFT_CODE_ADDR
:
11237 strcat (res
, " CA");
11239 case VMS_SFT_SYMV_IDX
:
11240 strcat (res
, " VEC");
11243 strcat (res
, " FD");
11245 case VMS_SFT_RESERVE
:
11246 strcat (res
, " RSV");
11249 warn (_("Unrecognized IA64 VMS ST Function type: %d\n"),
11250 VMS_ST_FUNC_TYPE (other
));
11251 strcat (res
, " <unknown>");
11258 switch (VMS_ST_LINKAGE (other
))
11260 case VMS_STL_IGNORE
:
11261 strcat (res
, " IGN");
11263 case VMS_STL_RESERVE
:
11264 strcat (res
, " RSV");
11267 strcat (res
, " STD");
11270 strcat (res
, " LNK");
11273 warn (_("Unrecognized IA64 VMS ST Linkage: %d\n"),
11274 VMS_ST_LINKAGE (other
));
11275 strcat (res
, " <unknown>");
11287 static const char *
11288 get_ppc64_symbol_other (unsigned int other
)
11290 if ((other
& ~STO_PPC64_LOCAL_MASK
) != 0)
11293 other
>>= STO_PPC64_LOCAL_BIT
;
11296 static char buf
[32];
11298 other
= ppc64_decode_local_entry (other
);
11299 snprintf (buf
, sizeof buf
, _("<localentry>: %d"), other
);
11305 static const char *
11306 get_symbol_other (Filedata
* filedata
, unsigned int other
)
11308 const char * result
= NULL
;
11309 static char buff
[32];
11314 switch (filedata
->file_header
.e_machine
)
11317 result
= get_alpha_symbol_other (other
);
11320 result
= get_aarch64_symbol_other (other
);
11323 result
= get_mips_symbol_other (other
);
11326 result
= get_ia64_symbol_other (filedata
, other
);
11329 result
= get_ppc64_symbol_other (other
);
11339 snprintf (buff
, sizeof buff
, _("<other>: %x"), other
);
11343 static const char *
11344 get_symbol_index_type (Filedata
* filedata
, unsigned int type
)
11346 static char buff
[32];
11350 case SHN_UNDEF
: return "UND";
11351 case SHN_ABS
: return "ABS";
11352 case SHN_COMMON
: return "COM";
11354 if (type
== SHN_IA_64_ANSI_COMMON
11355 && filedata
->file_header
.e_machine
== EM_IA_64
11356 && filedata
->file_header
.e_ident
[EI_OSABI
] == ELFOSABI_HPUX
)
11358 else if ((filedata
->file_header
.e_machine
== EM_X86_64
11359 || filedata
->file_header
.e_machine
== EM_L1OM
11360 || filedata
->file_header
.e_machine
== EM_K1OM
)
11361 && type
== SHN_X86_64_LCOMMON
)
11362 return "LARGE_COM";
11363 else if ((type
== SHN_MIPS_SCOMMON
11364 && filedata
->file_header
.e_machine
== EM_MIPS
)
11365 || (type
== SHN_TIC6X_SCOMMON
11366 && filedata
->file_header
.e_machine
== EM_TI_C6000
))
11368 else if (type
== SHN_MIPS_SUNDEFINED
11369 && filedata
->file_header
.e_machine
== EM_MIPS
)
11371 else if (type
>= SHN_LOPROC
&& type
<= SHN_HIPROC
)
11372 sprintf (buff
, "PRC[0x%04x]", type
& 0xffff);
11373 else if (type
>= SHN_LOOS
&& type
<= SHN_HIOS
)
11374 sprintf (buff
, "OS [0x%04x]", type
& 0xffff);
11375 else if (type
>= SHN_LORESERVE
)
11376 sprintf (buff
, "RSV[0x%04x]", type
& 0xffff);
11377 else if (type
>= filedata
->file_header
.e_shnum
)
11378 sprintf (buff
, _("bad section index[%3d]"), type
);
11380 sprintf (buff
, "%3d", type
);
11388 get_dynamic_data (Filedata
* filedata
, bfd_size_type number
, unsigned int ent_size
)
11390 unsigned char * e_data
;
11393 /* If the size_t type is smaller than the bfd_size_type, eg because
11394 you are building a 32-bit tool on a 64-bit host, then make sure
11395 that when (number) is cast to (size_t) no information is lost. */
11396 if (sizeof (size_t) < sizeof (bfd_size_type
)
11397 && (bfd_size_type
) ((size_t) number
) != number
)
11399 error (_("Size truncation prevents reading %s elements of size %u\n"),
11400 bfd_vmatoa ("u", number
), ent_size
);
11404 /* Be kind to memory chekers (eg valgrind, address sanitizer) by not
11405 attempting to allocate memory when the read is bound to fail. */
11406 if (ent_size
* number
> filedata
->file_size
)
11408 error (_("Invalid number of dynamic entries: %s\n"),
11409 bfd_vmatoa ("u", number
));
11413 e_data
= (unsigned char *) cmalloc ((size_t) number
, ent_size
);
11414 if (e_data
== NULL
)
11416 error (_("Out of memory reading %s dynamic entries\n"),
11417 bfd_vmatoa ("u", number
));
11421 if (fread (e_data
, ent_size
, (size_t) number
, filedata
->handle
) != number
)
11423 error (_("Unable to read in %s bytes of dynamic data\n"),
11424 bfd_vmatoa ("u", number
* ent_size
));
11429 i_data
= (bfd_vma
*) cmalloc ((size_t) number
, sizeof (*i_data
));
11430 if (i_data
== NULL
)
11432 error (_("Out of memory allocating space for %s dynamic entries\n"),
11433 bfd_vmatoa ("u", number
));
11439 i_data
[number
] = byte_get (e_data
+ number
* ent_size
, ent_size
);
11447 print_dynamic_symbol (Filedata
* filedata
, bfd_vma si
, unsigned long hn
)
11449 Elf_Internal_Sym
* psym
;
11452 n
= print_vma (si
, DEC_5
);
11454 fputs (&" "[n
], stdout
);
11455 printf (" %3lu: ", hn
);
11457 if (dynamic_symbols
== NULL
|| si
>= num_dynamic_syms
)
11459 printf (_("<No info available for dynamic symbol number %lu>\n"),
11460 (unsigned long) si
);
11464 psym
= dynamic_symbols
+ si
;
11465 print_vma (psym
->st_value
, LONG_HEX
);
11467 print_vma (psym
->st_size
, DEC_5
);
11469 printf (" %-7s", get_symbol_type (filedata
, ELF_ST_TYPE (psym
->st_info
)));
11470 printf (" %-6s", get_symbol_binding (filedata
, ELF_ST_BIND (psym
->st_info
)));
11472 if (filedata
->file_header
.e_ident
[EI_OSABI
] == ELFOSABI_SOLARIS
)
11473 printf (" %-7s", get_solaris_symbol_visibility (psym
->st_other
));
11476 unsigned int vis
= ELF_ST_VISIBILITY (psym
->st_other
);
11478 printf (" %-7s", get_symbol_visibility (vis
));
11479 /* Check to see if any other bits in the st_other field are set.
11480 Note - displaying this information disrupts the layout of the
11481 table being generated, but for the moment this case is very
11483 if (psym
->st_other
^ vis
)
11484 printf (" [%s] ", get_symbol_other (filedata
, psym
->st_other
^ vis
));
11487 printf (" %3.3s ", get_symbol_index_type (filedata
, psym
->st_shndx
));
11488 if (VALID_DYNAMIC_NAME (psym
->st_name
))
11489 print_symbol (25, GET_DYNAMIC_NAME (psym
->st_name
));
11491 printf (_(" <corrupt: %14ld>"), psym
->st_name
);
11495 static const char *
11496 get_symbol_version_string (Filedata
* filedata
,
11497 bfd_boolean is_dynsym
,
11498 const char * strtab
,
11499 unsigned long int strtab_size
,
11501 Elf_Internal_Sym
* psym
,
11502 enum versioned_symbol_info
* sym_info
,
11503 unsigned short * vna_other
)
11505 unsigned char data
[2];
11506 unsigned short vers_data
;
11507 unsigned long offset
;
11508 unsigned short max_vd_ndx
;
11511 || version_info
[DT_VERSIONTAGIDX (DT_VERSYM
)] == 0)
11514 offset
= offset_from_vma (filedata
, version_info
[DT_VERSIONTAGIDX (DT_VERSYM
)],
11515 sizeof data
+ si
* sizeof (vers_data
));
11517 if (get_data (&data
, filedata
, offset
+ si
* sizeof (vers_data
),
11518 sizeof (data
), 1, _("version data")) == NULL
)
11521 vers_data
= byte_get (data
, 2);
11523 if ((vers_data
& VERSYM_HIDDEN
) == 0 && vers_data
== 0)
11526 *sym_info
= (vers_data
& VERSYM_HIDDEN
) != 0 ? symbol_hidden
: symbol_public
;
11529 /* Usually we'd only see verdef for defined symbols, and verneed for
11530 undefined symbols. However, symbols defined by the linker in
11531 .dynbss for variables copied from a shared library in order to
11532 avoid text relocations are defined yet have verneed. We could
11533 use a heuristic to detect the special case, for example, check
11534 for verneed first on symbols defined in SHT_NOBITS sections, but
11535 it is simpler and more reliable to just look for both verdef and
11536 verneed. .dynbss might not be mapped to a SHT_NOBITS section. */
11538 if (psym
->st_shndx
!= SHN_UNDEF
11539 && vers_data
!= 0x8001
11540 && version_info
[DT_VERSIONTAGIDX (DT_VERDEF
)])
11542 Elf_Internal_Verdef ivd
;
11543 Elf_Internal_Verdaux ivda
;
11544 Elf_External_Verdaux evda
;
11547 off
= offset_from_vma (filedata
,
11548 version_info
[DT_VERSIONTAGIDX (DT_VERDEF
)],
11549 sizeof (Elf_External_Verdef
));
11553 Elf_External_Verdef evd
;
11555 if (get_data (&evd
, filedata
, off
, sizeof (evd
), 1,
11556 _("version def")) == NULL
)
11565 ivd
.vd_ndx
= BYTE_GET (evd
.vd_ndx
);
11566 ivd
.vd_aux
= BYTE_GET (evd
.vd_aux
);
11567 ivd
.vd_next
= BYTE_GET (evd
.vd_next
);
11568 ivd
.vd_flags
= BYTE_GET (evd
.vd_flags
);
11571 if ((ivd
.vd_ndx
& VERSYM_VERSION
) > max_vd_ndx
)
11572 max_vd_ndx
= ivd
.vd_ndx
& VERSYM_VERSION
;
11574 off
+= ivd
.vd_next
;
11576 while (ivd
.vd_ndx
!= (vers_data
& VERSYM_VERSION
) && ivd
.vd_next
!= 0);
11578 if (ivd
.vd_ndx
== (vers_data
& VERSYM_VERSION
))
11580 if (ivd
.vd_ndx
== 1 && ivd
.vd_flags
== VER_FLG_BASE
)
11583 off
-= ivd
.vd_next
;
11586 if (get_data (&evda
, filedata
, off
, sizeof (evda
), 1,
11587 _("version def aux")) != NULL
)
11589 ivda
.vda_name
= BYTE_GET (evda
.vda_name
);
11591 if (psym
->st_name
!= ivda
.vda_name
)
11592 return (ivda
.vda_name
< strtab_size
11593 ? strtab
+ ivda
.vda_name
: _("<corrupt>"));
11598 if (version_info
[DT_VERSIONTAGIDX (DT_VERNEED
)])
11600 Elf_External_Verneed evn
;
11601 Elf_Internal_Verneed ivn
;
11602 Elf_Internal_Vernaux ivna
;
11604 offset
= offset_from_vma (filedata
,
11605 version_info
[DT_VERSIONTAGIDX (DT_VERNEED
)],
11609 unsigned long vna_off
;
11611 if (get_data (&evn
, filedata
, offset
, sizeof (evn
), 1,
11612 _("version need")) == NULL
)
11615 ivna
.vna_other
= 0;
11620 ivn
.vn_aux
= BYTE_GET (evn
.vn_aux
);
11621 ivn
.vn_next
= BYTE_GET (evn
.vn_next
);
11623 vna_off
= offset
+ ivn
.vn_aux
;
11627 Elf_External_Vernaux evna
;
11629 if (get_data (&evna
, filedata
, vna_off
, sizeof (evna
), 1,
11630 _("version need aux (3)")) == NULL
)
11633 ivna
.vna_other
= 0;
11638 ivna
.vna_other
= BYTE_GET (evna
.vna_other
);
11639 ivna
.vna_next
= BYTE_GET (evna
.vna_next
);
11640 ivna
.vna_name
= BYTE_GET (evna
.vna_name
);
11643 vna_off
+= ivna
.vna_next
;
11645 while (ivna
.vna_other
!= vers_data
&& ivna
.vna_next
!= 0);
11647 if (ivna
.vna_other
== vers_data
)
11650 offset
+= ivn
.vn_next
;
11652 while (ivn
.vn_next
!= 0);
11654 if (ivna
.vna_other
== vers_data
)
11656 *sym_info
= symbol_undefined
;
11657 *vna_other
= ivna
.vna_other
;
11658 return (ivna
.vna_name
< strtab_size
11659 ? strtab
+ ivna
.vna_name
: _("<corrupt>"));
11661 else if ((max_vd_ndx
|| (vers_data
& VERSYM_VERSION
) != 1)
11662 && (vers_data
& VERSYM_VERSION
) > max_vd_ndx
)
11663 return _("<corrupt>");
11668 /* Dump the symbol table. */
11670 process_symbol_table (Filedata
* filedata
)
11672 Elf_Internal_Shdr
* section
;
11673 bfd_size_type nbuckets
= 0;
11674 bfd_size_type nchains
= 0;
11675 bfd_vma
* buckets
= NULL
;
11676 bfd_vma
* chains
= NULL
;
11677 bfd_vma ngnubuckets
= 0;
11678 bfd_vma
* gnubuckets
= NULL
;
11679 bfd_vma
* gnuchains
= NULL
;
11680 bfd_vma
* mipsxlat
= NULL
;
11681 bfd_vma gnusymidx
= 0;
11682 bfd_size_type ngnuchains
= 0;
11684 if (!do_syms
&& !do_dyn_syms
&& !do_histogram
)
11687 if (dynamic_info
[DT_HASH
]
11689 || (do_using_dynamic
11691 && dynamic_strings
!= NULL
)))
11693 unsigned char nb
[8];
11694 unsigned char nc
[8];
11695 unsigned int hash_ent_size
= 4;
11697 if ((filedata
->file_header
.e_machine
== EM_ALPHA
11698 || filedata
->file_header
.e_machine
== EM_S390
11699 || filedata
->file_header
.e_machine
== EM_S390_OLD
)
11700 && filedata
->file_header
.e_ident
[EI_CLASS
] == ELFCLASS64
)
11703 if (fseek (filedata
->handle
,
11704 (archive_file_offset
11705 + offset_from_vma (filedata
, dynamic_info
[DT_HASH
],
11706 sizeof nb
+ sizeof nc
)),
11709 error (_("Unable to seek to start of dynamic information\n"));
11713 if (fread (nb
, hash_ent_size
, 1, filedata
->handle
) != 1)
11715 error (_("Failed to read in number of buckets\n"));
11719 if (fread (nc
, hash_ent_size
, 1, filedata
->handle
) != 1)
11721 error (_("Failed to read in number of chains\n"));
11725 nbuckets
= byte_get (nb
, hash_ent_size
);
11726 nchains
= byte_get (nc
, hash_ent_size
);
11728 buckets
= get_dynamic_data (filedata
, nbuckets
, hash_ent_size
);
11729 chains
= get_dynamic_data (filedata
, nchains
, hash_ent_size
);
11732 if (buckets
== NULL
|| chains
== NULL
)
11734 if (do_using_dynamic
)
11745 if (dynamic_info_DT_GNU_HASH
11747 || (do_using_dynamic
11749 && dynamic_strings
!= NULL
)))
11751 unsigned char nb
[16];
11752 bfd_vma i
, maxchain
= 0xffffffff, bitmaskwords
;
11753 bfd_vma buckets_vma
;
11755 if (fseek (filedata
->handle
,
11756 (archive_file_offset
11757 + offset_from_vma (filedata
, dynamic_info_DT_GNU_HASH
,
11761 error (_("Unable to seek to start of dynamic information\n"));
11765 if (fread (nb
, 16, 1, filedata
->handle
) != 1)
11767 error (_("Failed to read in number of buckets\n"));
11771 ngnubuckets
= byte_get (nb
, 4);
11772 gnusymidx
= byte_get (nb
+ 4, 4);
11773 bitmaskwords
= byte_get (nb
+ 8, 4);
11774 buckets_vma
= dynamic_info_DT_GNU_HASH
+ 16;
11776 buckets_vma
+= bitmaskwords
* 4;
11778 buckets_vma
+= bitmaskwords
* 8;
11780 if (fseek (filedata
->handle
,
11781 (archive_file_offset
11782 + offset_from_vma (filedata
, buckets_vma
, 4)),
11785 error (_("Unable to seek to start of dynamic information\n"));
11789 gnubuckets
= get_dynamic_data (filedata
, ngnubuckets
, 4);
11791 if (gnubuckets
== NULL
)
11794 for (i
= 0; i
< ngnubuckets
; i
++)
11795 if (gnubuckets
[i
] != 0)
11797 if (gnubuckets
[i
] < gnusymidx
)
11800 if (maxchain
== 0xffffffff || gnubuckets
[i
] > maxchain
)
11801 maxchain
= gnubuckets
[i
];
11804 if (maxchain
== 0xffffffff)
11807 maxchain
-= gnusymidx
;
11809 if (fseek (filedata
->handle
,
11810 (archive_file_offset
11811 + offset_from_vma (filedata
, buckets_vma
11812 + 4 * (ngnubuckets
+ maxchain
), 4)),
11815 error (_("Unable to seek to start of dynamic information\n"));
11821 if (fread (nb
, 4, 1, filedata
->handle
) != 1)
11823 error (_("Failed to determine last chain length\n"));
11827 if (maxchain
+ 1 == 0)
11832 while ((byte_get (nb
, 4) & 1) == 0);
11834 if (fseek (filedata
->handle
,
11835 (archive_file_offset
11836 + offset_from_vma (filedata
, buckets_vma
+ 4 * ngnubuckets
, 4)),
11839 error (_("Unable to seek to start of dynamic information\n"));
11843 gnuchains
= get_dynamic_data (filedata
, maxchain
, 4);
11844 ngnuchains
= maxchain
;
11846 if (gnuchains
== NULL
)
11849 if (dynamic_info_DT_MIPS_XHASH
)
11851 if (fseek (filedata
->handle
,
11852 (archive_file_offset
11853 + offset_from_vma (filedata
, (buckets_vma
11858 error (_("Unable to seek to start of dynamic information\n"));
11862 mipsxlat
= get_dynamic_data (filedata
, maxchain
, 4);
11866 if (dynamic_info_DT_MIPS_XHASH
&& mipsxlat
== NULL
)
11871 if (gnuchains
== NULL
)
11876 if (do_using_dynamic
)
11881 if ((dynamic_info
[DT_HASH
] || dynamic_info_DT_GNU_HASH
)
11883 && do_using_dynamic
11884 && dynamic_strings
!= NULL
11885 && dynamic_symbols
!= NULL
)
11889 if (dynamic_info
[DT_HASH
])
11894 printf (_("\nSymbol table for image:\n"));
11896 printf (_(" Num Buc: Value Size Type Bind Vis Ndx Name\n"));
11898 printf (_(" Num Buc: Value Size Type Bind Vis Ndx Name\n"));
11900 visited
= xcmalloc (nchains
, 1);
11901 memset (visited
, 0, nchains
);
11902 for (hn
= 0; hn
< nbuckets
; hn
++)
11904 for (si
= buckets
[hn
]; si
> 0; si
= chains
[si
])
11906 print_dynamic_symbol (filedata
, si
, hn
);
11907 if (si
>= nchains
|| visited
[si
])
11909 error (_("histogram chain is corrupt\n"));
11918 if (dynamic_info_DT_GNU_HASH
)
11920 printf (_("\nSymbol table of `%s' for image:\n"),
11921 GNU_HASH_SECTION_NAME
);
11923 printf (_(" Num Buc: Value Size Type Bind Vis Ndx Name\n"));
11925 printf (_(" Num Buc: Value Size Type Bind Vis Ndx Name\n"));
11927 for (hn
= 0; hn
< ngnubuckets
; ++hn
)
11928 if (gnubuckets
[hn
] != 0)
11930 bfd_vma si
= gnubuckets
[hn
];
11931 bfd_vma off
= si
- gnusymidx
;
11935 if (dynamic_info_DT_MIPS_XHASH
)
11936 print_dynamic_symbol (filedata
, mipsxlat
[off
], hn
);
11938 print_dynamic_symbol (filedata
, si
, hn
);
11941 while (off
< ngnuchains
&& (gnuchains
[off
++] & 1) == 0);
11945 else if ((do_dyn_syms
|| (do_syms
&& !do_using_dynamic
))
11946 && filedata
->section_headers
!= NULL
)
11950 for (i
= 0, section
= filedata
->section_headers
;
11951 i
< filedata
->file_header
.e_shnum
;
11955 char * strtab
= NULL
;
11956 unsigned long int strtab_size
= 0;
11957 Elf_Internal_Sym
* symtab
;
11958 Elf_Internal_Sym
* psym
;
11959 unsigned long num_syms
;
11961 if ((section
->sh_type
!= SHT_SYMTAB
11962 && section
->sh_type
!= SHT_DYNSYM
)
11964 && section
->sh_type
== SHT_SYMTAB
))
11967 if (section
->sh_entsize
== 0)
11969 printf (_("\nSymbol table '%s' has a sh_entsize of zero!\n"),
11970 printable_section_name (filedata
, section
));
11974 num_syms
= section
->sh_size
/ section
->sh_entsize
;
11975 printf (ngettext ("\nSymbol table '%s' contains %lu entry:\n",
11976 "\nSymbol table '%s' contains %lu entries:\n",
11978 printable_section_name (filedata
, section
),
11982 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
11984 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
11986 symtab
= GET_ELF_SYMBOLS (filedata
, section
, & num_syms
);
11987 if (symtab
== NULL
)
11990 if (section
->sh_link
== filedata
->file_header
.e_shstrndx
)
11992 strtab
= filedata
->string_table
;
11993 strtab_size
= filedata
->string_table_length
;
11995 else if (section
->sh_link
< filedata
->file_header
.e_shnum
)
11997 Elf_Internal_Shdr
* string_sec
;
11999 string_sec
= filedata
->section_headers
+ section
->sh_link
;
12001 strtab
= (char *) get_data (NULL
, filedata
, string_sec
->sh_offset
,
12002 1, string_sec
->sh_size
,
12003 _("string table"));
12004 strtab_size
= strtab
!= NULL
? string_sec
->sh_size
: 0;
12007 for (si
= 0, psym
= symtab
; si
< num_syms
; si
++, psym
++)
12009 const char *version_string
;
12010 enum versioned_symbol_info sym_info
;
12011 unsigned short vna_other
;
12013 printf ("%6d: ", si
);
12014 print_vma (psym
->st_value
, LONG_HEX
);
12016 print_vma (psym
->st_size
, DEC_5
);
12017 printf (" %-7s", get_symbol_type (filedata
, ELF_ST_TYPE (psym
->st_info
)));
12018 printf (" %-6s", get_symbol_binding (filedata
, ELF_ST_BIND (psym
->st_info
)));
12019 if (filedata
->file_header
.e_ident
[EI_OSABI
] == ELFOSABI_SOLARIS
)
12020 printf (" %-7s", get_solaris_symbol_visibility (psym
->st_other
));
12023 unsigned int vis
= ELF_ST_VISIBILITY (psym
->st_other
);
12025 printf (" %-7s", get_symbol_visibility (vis
));
12026 /* Check to see if any other bits in the st_other field are set.
12027 Note - displaying this information disrupts the layout of the
12028 table being generated, but for the moment this case is very rare. */
12029 if (psym
->st_other
^ vis
)
12030 printf (" [%s] ", get_symbol_other (filedata
, psym
->st_other
^ vis
));
12032 printf (" %4s ", get_symbol_index_type (filedata
, psym
->st_shndx
));
12033 print_symbol (25, psym
->st_name
< strtab_size
12034 ? strtab
+ psym
->st_name
: _("<corrupt>"));
12037 = get_symbol_version_string (filedata
,
12038 section
->sh_type
== SHT_DYNSYM
,
12039 strtab
, strtab_size
, si
,
12040 psym
, &sym_info
, &vna_other
);
12041 if (version_string
)
12043 if (sym_info
== symbol_undefined
)
12044 printf ("@%s (%d)", version_string
, vna_other
);
12046 printf (sym_info
== symbol_hidden
? "@%s" : "@@%s",
12052 if (ELF_ST_BIND (psym
->st_info
) == STB_LOCAL
12053 && si
>= section
->sh_info
12054 /* Irix 5 and 6 MIPS binaries are known to ignore this requirement. */
12055 && filedata
->file_header
.e_machine
!= EM_MIPS
12056 /* Solaris binaries have been found to violate this requirement as
12057 well. Not sure if this is a bug or an ABI requirement. */
12058 && filedata
->file_header
.e_ident
[EI_OSABI
] != ELFOSABI_SOLARIS
)
12059 warn (_("local symbol %u found at index >= %s's sh_info value of %u\n"),
12060 si
, printable_section_name (filedata
, section
), section
->sh_info
);
12064 if (strtab
!= filedata
->string_table
)
12070 (_("\nDynamic symbol information is not available for displaying symbols.\n"));
12072 if (do_histogram
&& buckets
!= NULL
)
12074 unsigned long * lengths
;
12075 unsigned long * counts
;
12078 unsigned long maxlength
= 0;
12079 unsigned long nzero_counts
= 0;
12080 unsigned long nsyms
= 0;
12083 printf (ngettext ("\nHistogram for bucket list length "
12084 "(total of %lu bucket):\n",
12085 "\nHistogram for bucket list length "
12086 "(total of %lu buckets):\n",
12087 (unsigned long) nbuckets
),
12088 (unsigned long) nbuckets
);
12090 lengths
= (unsigned long *) calloc (nbuckets
, sizeof (*lengths
));
12091 if (lengths
== NULL
)
12093 error (_("Out of memory allocating space for histogram buckets\n"));
12096 visited
= xcmalloc (nchains
, 1);
12097 memset (visited
, 0, nchains
);
12099 printf (_(" Length Number %% of total Coverage\n"));
12100 for (hn
= 0; hn
< nbuckets
; ++hn
)
12102 for (si
= buckets
[hn
]; si
> 0; si
= chains
[si
])
12105 if (maxlength
< ++lengths
[hn
])
12107 if (si
>= nchains
|| visited
[si
])
12109 error (_("histogram chain is corrupt\n"));
12117 counts
= (unsigned long *) calloc (maxlength
+ 1, sizeof (*counts
));
12118 if (counts
== NULL
)
12121 error (_("Out of memory allocating space for histogram counts\n"));
12125 for (hn
= 0; hn
< nbuckets
; ++hn
)
12126 ++counts
[lengths
[hn
]];
12131 printf (" 0 %-10lu (%5.1f%%)\n",
12132 counts
[0], (counts
[0] * 100.0) / nbuckets
);
12133 for (i
= 1; i
<= maxlength
; ++i
)
12135 nzero_counts
+= counts
[i
] * i
;
12136 printf ("%7lu %-10lu (%5.1f%%) %5.1f%%\n",
12137 i
, counts
[i
], (counts
[i
] * 100.0) / nbuckets
,
12138 (nzero_counts
* 100.0) / nsyms
);
12146 if (buckets
!= NULL
)
12152 if (do_histogram
&& gnubuckets
!= NULL
)
12154 unsigned long * lengths
;
12155 unsigned long * counts
;
12157 unsigned long maxlength
= 0;
12158 unsigned long nzero_counts
= 0;
12159 unsigned long nsyms
= 0;
12161 printf (ngettext ("\nHistogram for `%s' bucket list length "
12162 "(total of %lu bucket):\n",
12163 "\nHistogram for `%s' bucket list length "
12164 "(total of %lu buckets):\n",
12165 (unsigned long) ngnubuckets
),
12166 GNU_HASH_SECTION_NAME
,
12167 (unsigned long) ngnubuckets
);
12169 lengths
= (unsigned long *) calloc (ngnubuckets
, sizeof (*lengths
));
12170 if (lengths
== NULL
)
12172 error (_("Out of memory allocating space for gnu histogram buckets\n"));
12176 printf (_(" Length Number %% of total Coverage\n"));
12178 for (hn
= 0; hn
< ngnubuckets
; ++hn
)
12179 if (gnubuckets
[hn
] != 0)
12181 bfd_vma off
, length
= 1;
12183 for (off
= gnubuckets
[hn
] - gnusymidx
;
12184 /* PR 17531 file: 010-77222-0.004. */
12185 off
< ngnuchains
&& (gnuchains
[off
] & 1) == 0;
12188 lengths
[hn
] = length
;
12189 if (length
> maxlength
)
12190 maxlength
= length
;
12194 counts
= (unsigned long *) calloc (maxlength
+ 1, sizeof (*counts
));
12195 if (counts
== NULL
)
12198 error (_("Out of memory allocating space for gnu histogram counts\n"));
12202 for (hn
= 0; hn
< ngnubuckets
; ++hn
)
12203 ++counts
[lengths
[hn
]];
12205 if (ngnubuckets
> 0)
12208 printf (" 0 %-10lu (%5.1f%%)\n",
12209 counts
[0], (counts
[0] * 100.0) / ngnubuckets
);
12210 for (j
= 1; j
<= maxlength
; ++j
)
12212 nzero_counts
+= counts
[j
] * j
;
12213 printf ("%7lu %-10lu (%5.1f%%) %5.1f%%\n",
12214 j
, counts
[j
], (counts
[j
] * 100.0) / ngnubuckets
,
12215 (nzero_counts
* 100.0) / nsyms
);
12230 process_syminfo (Filedata
* filedata ATTRIBUTE_UNUSED
)
12234 if (dynamic_syminfo
== NULL
12236 /* No syminfo, this is ok. */
12239 /* There better should be a dynamic symbol section. */
12240 if (dynamic_symbols
== NULL
|| dynamic_strings
== NULL
)
12244 printf (ngettext ("\nDynamic info segment at offset 0x%lx "
12245 "contains %d entry:\n",
12246 "\nDynamic info segment at offset 0x%lx "
12247 "contains %d entries:\n",
12248 dynamic_syminfo_nent
),
12249 dynamic_syminfo_offset
, dynamic_syminfo_nent
);
12251 printf (_(" Num: Name BoundTo Flags\n"));
12252 for (i
= 0; i
< dynamic_syminfo_nent
; ++i
)
12254 unsigned short int flags
= dynamic_syminfo
[i
].si_flags
;
12256 printf ("%4d: ", i
);
12257 if (i
>= num_dynamic_syms
)
12258 printf (_("<corrupt index>"));
12259 else if (VALID_DYNAMIC_NAME (dynamic_symbols
[i
].st_name
))
12260 print_symbol (30, GET_DYNAMIC_NAME (dynamic_symbols
[i
].st_name
));
12262 printf (_("<corrupt: %19ld>"), dynamic_symbols
[i
].st_name
);
12265 switch (dynamic_syminfo
[i
].si_boundto
)
12267 case SYMINFO_BT_SELF
:
12268 fputs ("SELF ", stdout
);
12270 case SYMINFO_BT_PARENT
:
12271 fputs ("PARENT ", stdout
);
12274 if (dynamic_syminfo
[i
].si_boundto
> 0
12275 && dynamic_syminfo
[i
].si_boundto
< dynamic_nent
12276 && VALID_DYNAMIC_NAME (dynamic_section
[dynamic_syminfo
[i
].si_boundto
].d_un
.d_val
))
12278 print_symbol (10, GET_DYNAMIC_NAME (dynamic_section
[dynamic_syminfo
[i
].si_boundto
].d_un
.d_val
));
12282 printf ("%-10d ", dynamic_syminfo
[i
].si_boundto
);
12286 if (flags
& SYMINFO_FLG_DIRECT
)
12287 printf (" DIRECT");
12288 if (flags
& SYMINFO_FLG_PASSTHRU
)
12289 printf (" PASSTHRU");
12290 if (flags
& SYMINFO_FLG_COPY
)
12292 if (flags
& SYMINFO_FLG_LAZYLOAD
)
12293 printf (" LAZYLOAD");
12301 /* A macro which evaluates to TRUE if the region ADDR .. ADDR + NELEM
12302 is contained by the region START .. END. The types of ADDR, START
12303 and END should all be the same. Note both ADDR + NELEM and END
12304 point to just beyond the end of the regions that are being tested. */
12305 #define IN_RANGE(START,END,ADDR,NELEM) \
12306 (((ADDR) >= (START)) && ((ADDR) < (END)) && ((ADDR) + (NELEM) <= (END)))
12308 /* Check to see if the given reloc needs to be handled in a target specific
12309 manner. If so then process the reloc and return TRUE otherwise return
12312 If called with reloc == NULL, then this is a signal that reloc processing
12313 for the current section has finished, and any saved state should be
12317 target_specific_reloc_handling (Filedata
* filedata
,
12318 Elf_Internal_Rela
* reloc
,
12319 unsigned char * start
,
12320 unsigned char * end
,
12321 Elf_Internal_Sym
* symtab
,
12322 unsigned long num_syms
)
12324 unsigned int reloc_type
= 0;
12325 unsigned long sym_index
= 0;
12329 reloc_type
= get_reloc_type (filedata
, reloc
->r_info
);
12330 sym_index
= get_reloc_symindex (reloc
->r_info
);
12333 switch (filedata
->file_header
.e_machine
)
12336 case EM_MSP430_OLD
:
12338 static Elf_Internal_Sym
* saved_sym
= NULL
;
12346 switch (reloc_type
)
12348 case 10: /* R_MSP430_SYM_DIFF */
12349 if (uses_msp430x_relocs (filedata
))
12351 /* Fall through. */
12352 case 21: /* R_MSP430X_SYM_DIFF */
12354 if (sym_index
>= num_syms
)
12355 error (_("MSP430 SYM_DIFF reloc contains invalid symbol index %lu\n"),
12358 saved_sym
= symtab
+ sym_index
;
12361 case 1: /* R_MSP430_32 or R_MSP430_ABS32 */
12362 case 3: /* R_MSP430_16 or R_MSP430_ABS8 */
12363 goto handle_sym_diff
;
12365 case 5: /* R_MSP430_16_BYTE */
12366 case 9: /* R_MSP430_8 */
12367 if (uses_msp430x_relocs (filedata
))
12369 goto handle_sym_diff
;
12371 case 2: /* R_MSP430_ABS16 */
12372 case 15: /* R_MSP430X_ABS16 */
12373 if (! uses_msp430x_relocs (filedata
))
12375 goto handle_sym_diff
;
12378 if (saved_sym
!= NULL
)
12380 int reloc_size
= reloc_type
== 1 ? 4 : 2;
12383 if (sym_index
>= num_syms
)
12384 error (_("MSP430 reloc contains invalid symbol index %lu\n"),
12388 value
= reloc
->r_addend
+ (symtab
[sym_index
].st_value
12389 - saved_sym
->st_value
);
12391 if (IN_RANGE (start
, end
, start
+ reloc
->r_offset
, reloc_size
))
12392 byte_put (start
+ reloc
->r_offset
, value
, reloc_size
);
12395 error (_("MSP430 sym diff reloc contains invalid offset: 0x%lx\n"),
12396 (long) reloc
->r_offset
);
12405 if (saved_sym
!= NULL
)
12406 error (_("Unhandled MSP430 reloc type found after SYM_DIFF reloc\n"));
12413 case EM_CYGNUS_MN10300
:
12415 static Elf_Internal_Sym
* saved_sym
= NULL
;
12423 switch (reloc_type
)
12425 case 34: /* R_MN10300_ALIGN */
12427 case 33: /* R_MN10300_SYM_DIFF */
12428 if (sym_index
>= num_syms
)
12429 error (_("MN10300_SYM_DIFF reloc contains invalid symbol index %lu\n"),
12432 saved_sym
= symtab
+ sym_index
;
12435 case 1: /* R_MN10300_32 */
12436 case 2: /* R_MN10300_16 */
12437 if (saved_sym
!= NULL
)
12439 int reloc_size
= reloc_type
== 1 ? 4 : 2;
12442 if (sym_index
>= num_syms
)
12443 error (_("MN10300 reloc contains invalid symbol index %lu\n"),
12447 value
= reloc
->r_addend
+ (symtab
[sym_index
].st_value
12448 - saved_sym
->st_value
);
12450 if (IN_RANGE (start
, end
, start
+ reloc
->r_offset
, reloc_size
))
12451 byte_put (start
+ reloc
->r_offset
, value
, reloc_size
);
12453 error (_("MN10300 sym diff reloc contains invalid offset: 0x%lx\n"),
12454 (long) reloc
->r_offset
);
12462 if (saved_sym
!= NULL
)
12463 error (_("Unhandled MN10300 reloc type found after SYM_DIFF reloc\n"));
12471 static bfd_vma saved_sym1
= 0;
12472 static bfd_vma saved_sym2
= 0;
12473 static bfd_vma value
;
12477 saved_sym1
= saved_sym2
= 0;
12481 switch (reloc_type
)
12483 case 0x80: /* R_RL78_SYM. */
12484 saved_sym1
= saved_sym2
;
12485 if (sym_index
>= num_syms
)
12486 error (_("RL78_SYM reloc contains invalid symbol index %lu\n"),
12490 saved_sym2
= symtab
[sym_index
].st_value
;
12491 saved_sym2
+= reloc
->r_addend
;
12495 case 0x83: /* R_RL78_OPsub. */
12496 value
= saved_sym1
- saved_sym2
;
12497 saved_sym2
= saved_sym1
= 0;
12501 case 0x41: /* R_RL78_ABS32. */
12502 if (IN_RANGE (start
, end
, start
+ reloc
->r_offset
, 4))
12503 byte_put (start
+ reloc
->r_offset
, value
, 4);
12505 error (_("RL78 sym diff reloc contains invalid offset: 0x%lx\n"),
12506 (long) reloc
->r_offset
);
12510 case 0x43: /* R_RL78_ABS16. */
12511 if (IN_RANGE (start
, end
, start
+ reloc
->r_offset
, 2))
12512 byte_put (start
+ reloc
->r_offset
, value
, 2);
12514 error (_("RL78 sym diff reloc contains invalid offset: 0x%lx\n"),
12515 (long) reloc
->r_offset
);
12529 /* Returns TRUE iff RELOC_TYPE is a 32-bit absolute RELA relocation used in
12530 DWARF debug sections. This is a target specific test. Note - we do not
12531 go through the whole including-target-headers-multiple-times route, (as
12532 we have already done with <elf/h8.h>) because this would become very
12533 messy and even then this function would have to contain target specific
12534 information (the names of the relocs instead of their numeric values).
12535 FIXME: This is not the correct way to solve this problem. The proper way
12536 is to have target specific reloc sizing and typing functions created by
12537 the reloc-macros.h header, in the same way that it already creates the
12538 reloc naming functions. */
12541 is_32bit_abs_reloc (Filedata
* filedata
, unsigned int reloc_type
)
12543 /* Please keep this table alpha-sorted for ease of visual lookup. */
12544 switch (filedata
->file_header
.e_machine
)
12548 return reloc_type
== 1; /* R_386_32. */
12550 return reloc_type
== 1; /* R_68K_32. */
12552 return reloc_type
== 1; /* R_860_32. */
12554 return reloc_type
== 2; /* R_960_32. */
12556 return (reloc_type
== 258
12557 || reloc_type
== 1); /* R_AARCH64_ABS32 || R_AARCH64_P32_ABS32 */
12559 return reloc_type
== 11; /* R_BPF_DATA_32 */
12560 case EM_ADAPTEVA_EPIPHANY
:
12561 return reloc_type
== 3;
12563 return reloc_type
== 1; /* R_ALPHA_REFLONG. */
12565 return reloc_type
== 1; /* R_ARC_32. */
12566 case EM_ARC_COMPACT
:
12567 case EM_ARC_COMPACT2
:
12568 return reloc_type
== 4; /* R_ARC_32. */
12570 return reloc_type
== 2; /* R_ARM_ABS32 */
12573 return reloc_type
== 1;
12575 return reloc_type
== 0x12; /* R_byte4_data. */
12577 return reloc_type
== 3; /* R_CRIS_32. */
12579 return reloc_type
== 3; /* R_CR16_NUM32. */
12581 return reloc_type
== 15; /* R_CRX_NUM32. */
12583 return reloc_type
== 1; /* R_CKCORE_ADDR32. */
12584 case EM_CYGNUS_FRV
:
12585 return reloc_type
== 1;
12586 case EM_CYGNUS_D10V
:
12588 return reloc_type
== 6; /* R_D10V_32. */
12589 case EM_CYGNUS_D30V
:
12591 return reloc_type
== 12; /* R_D30V_32_NORMAL. */
12593 return reloc_type
== 3; /* R_DLX_RELOC_32. */
12594 case EM_CYGNUS_FR30
:
12596 return reloc_type
== 3; /* R_FR30_32. */
12598 return reloc_type
== 1; /* R_FT32_32. */
12602 return reloc_type
== 1; /* R_H8_DIR32. */
12604 return (reloc_type
== 0x64 /* R_IA64_SECREL32MSB. */
12605 || reloc_type
== 0x65 /* R_IA64_SECREL32LSB. */
12606 || reloc_type
== 0x24 /* R_IA64_DIR32MSB. */
12607 || reloc_type
== 0x25 /* R_IA64_DIR32LSB. */);
12610 return reloc_type
== 2; /* R_IP2K_32. */
12612 return reloc_type
== 2; /* R_IQ2000_32. */
12613 case EM_LATTICEMICO32
:
12614 return reloc_type
== 3; /* R_LM32_32. */
12617 return reloc_type
== 3; /* R_M32C_32. */
12619 return reloc_type
== 34; /* R_M32R_32_RELA. */
12622 return reloc_type
== 6; /* R_M68HC11_32. */
12624 return reloc_type
== 7 || /* R_S12Z_EXT32 */
12625 reloc_type
== 6; /* R_S12Z_CW32. */
12627 return reloc_type
== 1; /* R_MCORE_ADDR32. */
12628 case EM_CYGNUS_MEP
:
12629 return reloc_type
== 4; /* R_MEP_32. */
12631 return reloc_type
== 2; /* R_METAG_ADDR32. */
12632 case EM_MICROBLAZE
:
12633 return reloc_type
== 1; /* R_MICROBLAZE_32. */
12635 return reloc_type
== 2; /* R_MIPS_32. */
12637 return reloc_type
== 4; /* R_MMIX_32. */
12638 case EM_CYGNUS_MN10200
:
12640 return reloc_type
== 1; /* R_MN10200_32. */
12641 case EM_CYGNUS_MN10300
:
12643 return reloc_type
== 1; /* R_MN10300_32. */
12645 return reloc_type
== 1; /* R_MOXIE_32. */
12646 case EM_MSP430_OLD
:
12648 return reloc_type
== 1; /* R_MSP430_32 or R_MSP320_ABS32. */
12650 return reloc_type
== 2; /* R_MT_32. */
12652 return reloc_type
== 20; /* R_NDS32_RELA. */
12653 case EM_ALTERA_NIOS2
:
12654 return reloc_type
== 12; /* R_NIOS2_BFD_RELOC_32. */
12656 return reloc_type
== 1; /* R_NIOS_32. */
12658 return reloc_type
== 1; /* R_OR1K_32. */
12660 return (reloc_type
== 1 /* R_PARISC_DIR32. */
12661 || reloc_type
== 2 /* R_PARISC_DIR21L. */
12662 || reloc_type
== 41); /* R_PARISC_SECREL32. */
12665 return reloc_type
== 1; /* R_PJ_DATA_DIR32. */
12667 return reloc_type
== 1; /* R_PPC64_ADDR32. */
12669 return reloc_type
== 1; /* R_PPC_ADDR32. */
12671 return reloc_type
== 11; /* R_PRU_BFD_RELOC_32. */
12673 return reloc_type
== 1; /* R_RISCV_32. */
12675 return reloc_type
== 1; /* R_RL78_DIR32. */
12677 return reloc_type
== 1; /* R_RX_DIR32. */
12679 return reloc_type
== 1; /* R_I370_ADDR31. */
12682 return reloc_type
== 4; /* R_S390_32. */
12684 return reloc_type
== 8; /* R_SCORE_ABS32. */
12686 return reloc_type
== 1; /* R_SH_DIR32. */
12687 case EM_SPARC32PLUS
:
12690 return reloc_type
== 3 /* R_SPARC_32. */
12691 || reloc_type
== 23; /* R_SPARC_UA32. */
12693 return reloc_type
== 6; /* R_SPU_ADDR32 */
12695 return reloc_type
== 1; /* R_C6000_ABS32. */
12697 return reloc_type
== 2; /* R_TILEGX_32. */
12699 return reloc_type
== 1; /* R_TILEPRO_32. */
12700 case EM_CYGNUS_V850
:
12702 return reloc_type
== 6; /* R_V850_ABS32. */
12704 return reloc_type
== 0x33; /* R_V810_WORD. */
12706 return reloc_type
== 1; /* R_VAX_32. */
12708 return reloc_type
== 3; /* R_VISIUM_32. */
12709 case EM_WEBASSEMBLY
:
12710 return reloc_type
== 1; /* R_WASM32_32. */
12714 return reloc_type
== 10; /* R_X86_64_32. */
12717 return reloc_type
== 3; /* R_XC16C_ABS_32. */
12719 return reloc_type
== 4; /* R_XGATE_32. */
12721 return reloc_type
== 1; /* R_XSTROMY16_32. */
12722 case EM_XTENSA_OLD
:
12724 return reloc_type
== 1; /* R_XTENSA_32. */
12727 static unsigned int prev_warn
= 0;
12729 /* Avoid repeating the same warning multiple times. */
12730 if (prev_warn
!= filedata
->file_header
.e_machine
)
12731 error (_("Missing knowledge of 32-bit reloc types used in DWARF sections of machine number %d\n"),
12732 filedata
->file_header
.e_machine
);
12733 prev_warn
= filedata
->file_header
.e_machine
;
12739 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
12740 a 32-bit pc-relative RELA relocation used in DWARF debug sections. */
12743 is_32bit_pcrel_reloc (Filedata
* filedata
, unsigned int reloc_type
)
12745 switch (filedata
->file_header
.e_machine
)
12746 /* Please keep this table alpha-sorted for ease of visual lookup. */
12750 return reloc_type
== 2; /* R_386_PC32. */
12752 return reloc_type
== 4; /* R_68K_PC32. */
12754 return reloc_type
== 261; /* R_AARCH64_PREL32 */
12755 case EM_ADAPTEVA_EPIPHANY
:
12756 return reloc_type
== 6;
12758 return reloc_type
== 10; /* R_ALPHA_SREL32. */
12759 case EM_ARC_COMPACT
:
12760 case EM_ARC_COMPACT2
:
12761 return reloc_type
== 49; /* R_ARC_32_PCREL. */
12763 return reloc_type
== 3; /* R_ARM_REL32 */
12766 return reloc_type
== 36; /* R_AVR_32_PCREL. */
12767 case EM_MICROBLAZE
:
12768 return reloc_type
== 2; /* R_MICROBLAZE_32_PCREL. */
12770 return reloc_type
== 9; /* R_OR1K_32_PCREL. */
12772 return reloc_type
== 9; /* R_PARISC_PCREL32. */
12774 return reloc_type
== 26; /* R_PPC_REL32. */
12776 return reloc_type
== 26; /* R_PPC64_REL32. */
12778 return reloc_type
== 57; /* R_RISCV_32_PCREL. */
12781 return reloc_type
== 5; /* R_390_PC32. */
12783 return reloc_type
== 2; /* R_SH_REL32. */
12784 case EM_SPARC32PLUS
:
12787 return reloc_type
== 6; /* R_SPARC_DISP32. */
12789 return reloc_type
== 13; /* R_SPU_REL32. */
12791 return reloc_type
== 6; /* R_TILEGX_32_PCREL. */
12793 return reloc_type
== 4; /* R_TILEPRO_32_PCREL. */
12795 return reloc_type
== 6; /* R_VISIUM_32_PCREL */
12799 return reloc_type
== 2; /* R_X86_64_PC32. */
12801 return reloc_type
== 4; /* R_VAX_PCREL32. */
12802 case EM_XTENSA_OLD
:
12804 return reloc_type
== 14; /* R_XTENSA_32_PCREL. */
12806 /* Do not abort or issue an error message here. Not all targets use
12807 pc-relative 32-bit relocs in their DWARF debug information and we
12808 have already tested for target coverage in is_32bit_abs_reloc. A
12809 more helpful warning message will be generated by apply_relocations
12810 anyway, so just return. */
12815 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
12816 a 64-bit absolute RELA relocation used in DWARF debug sections. */
12819 is_64bit_abs_reloc (Filedata
* filedata
, unsigned int reloc_type
)
12821 switch (filedata
->file_header
.e_machine
)
12824 return reloc_type
== 257; /* R_AARCH64_ABS64. */
12826 return reloc_type
== 2; /* R_ALPHA_REFQUAD. */
12828 return (reloc_type
== 0x26 /* R_IA64_DIR64MSB. */
12829 || reloc_type
== 0x27 /* R_IA64_DIR64LSB. */);
12831 return reloc_type
== 80; /* R_PARISC_DIR64. */
12833 return reloc_type
== 38; /* R_PPC64_ADDR64. */
12835 return reloc_type
== 2; /* R_RISCV_64. */
12836 case EM_SPARC32PLUS
:
12839 return reloc_type
== 32 /* R_SPARC_64. */
12840 || reloc_type
== 54; /* R_SPARC_UA64. */
12844 return reloc_type
== 1; /* R_X86_64_64. */
12847 return reloc_type
== 22; /* R_S390_64. */
12849 return reloc_type
== 1; /* R_TILEGX_64. */
12851 return reloc_type
== 18; /* R_MIPS_64. */
12857 /* Like is_32bit_pcrel_reloc except that it returns TRUE iff RELOC_TYPE is
12858 a 64-bit pc-relative RELA relocation used in DWARF debug sections. */
12861 is_64bit_pcrel_reloc (Filedata
* filedata
, unsigned int reloc_type
)
12863 switch (filedata
->file_header
.e_machine
)
12866 return reloc_type
== 260; /* R_AARCH64_PREL64. */
12868 return reloc_type
== 11; /* R_ALPHA_SREL64. */
12870 return (reloc_type
== 0x4e /* R_IA64_PCREL64MSB. */
12871 || reloc_type
== 0x4f /* R_IA64_PCREL64LSB. */);
12873 return reloc_type
== 72; /* R_PARISC_PCREL64. */
12875 return reloc_type
== 44; /* R_PPC64_REL64. */
12876 case EM_SPARC32PLUS
:
12879 return reloc_type
== 46; /* R_SPARC_DISP64. */
12883 return reloc_type
== 24; /* R_X86_64_PC64. */
12886 return reloc_type
== 23; /* R_S390_PC64. */
12888 return reloc_type
== 5; /* R_TILEGX_64_PCREL. */
12894 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
12895 a 24-bit absolute RELA relocation used in DWARF debug sections. */
12898 is_24bit_abs_reloc (Filedata
* filedata
, unsigned int reloc_type
)
12900 switch (filedata
->file_header
.e_machine
)
12902 case EM_CYGNUS_MN10200
:
12904 return reloc_type
== 4; /* R_MN10200_24. */
12906 return reloc_type
== 5; /* R_FT32_20. */
12912 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
12913 a 16-bit absolute RELA relocation used in DWARF debug sections. */
12916 is_16bit_abs_reloc (Filedata
* filedata
, unsigned int reloc_type
)
12918 /* Please keep this table alpha-sorted for ease of visual lookup. */
12919 switch (filedata
->file_header
.e_machine
)
12922 case EM_ARC_COMPACT
:
12923 case EM_ARC_COMPACT2
:
12924 return reloc_type
== 2; /* R_ARC_16. */
12925 case EM_ADAPTEVA_EPIPHANY
:
12926 return reloc_type
== 5;
12929 return reloc_type
== 4; /* R_AVR_16. */
12930 case EM_CYGNUS_D10V
:
12932 return reloc_type
== 3; /* R_D10V_16. */
12934 return reloc_type
== 2; /* R_FT32_16. */
12938 return reloc_type
== R_H8_DIR16
;
12941 return reloc_type
== 1; /* R_IP2K_16. */
12944 return reloc_type
== 1; /* R_M32C_16 */
12945 case EM_CYGNUS_MN10200
:
12947 return reloc_type
== 2; /* R_MN10200_16. */
12948 case EM_CYGNUS_MN10300
:
12950 return reloc_type
== 2; /* R_MN10300_16. */
12952 if (uses_msp430x_relocs (filedata
))
12953 return reloc_type
== 2; /* R_MSP430_ABS16. */
12954 /* Fall through. */
12955 case EM_MSP430_OLD
:
12956 return reloc_type
== 5; /* R_MSP430_16_BYTE. */
12958 return reloc_type
== 19; /* R_NDS32_RELA. */
12959 case EM_ALTERA_NIOS2
:
12960 return reloc_type
== 13; /* R_NIOS2_BFD_RELOC_16. */
12962 return reloc_type
== 9; /* R_NIOS_16. */
12964 return reloc_type
== 2; /* R_OR1K_16. */
12966 return reloc_type
== 55; /* R_RISCV_SET16. */
12968 return reloc_type
== 8; /* R_PRU_BFD_RELOC_16. */
12970 return reloc_type
== 2; /* R_C6000_ABS16. */
12972 return reloc_type
== 2; /* R_VISIUM_16. */
12975 return reloc_type
== 2; /* R_XC16C_ABS_16. */
12977 return reloc_type
== 3; /* R_XGATE_16. */
12983 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
12984 a 8-bit absolute RELA relocation used in DWARF debug sections. */
12987 is_8bit_abs_reloc (Filedata
* filedata
, unsigned int reloc_type
)
12989 switch (filedata
->file_header
.e_machine
)
12992 return reloc_type
== 54; /* R_RISCV_SET8. */
12998 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
12999 a 6-bit absolute RELA relocation used in DWARF debug sections. */
13002 is_6bit_abs_reloc (Filedata
* filedata
, unsigned int reloc_type
)
13004 switch (filedata
->file_header
.e_machine
)
13007 return reloc_type
== 53; /* R_RISCV_SET6. */
13013 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13014 a 32-bit inplace add RELA relocation used in DWARF debug sections. */
13017 is_32bit_inplace_add_reloc (Filedata
* filedata
, unsigned int reloc_type
)
13019 /* Please keep this table alpha-sorted for ease of visual lookup. */
13020 switch (filedata
->file_header
.e_machine
)
13023 return reloc_type
== 35; /* R_RISCV_ADD32. */
13029 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13030 a 32-bit inplace sub RELA relocation used in DWARF debug sections. */
13033 is_32bit_inplace_sub_reloc (Filedata
* filedata
, unsigned int reloc_type
)
13035 /* Please keep this table alpha-sorted for ease of visual lookup. */
13036 switch (filedata
->file_header
.e_machine
)
13039 return reloc_type
== 39; /* R_RISCV_SUB32. */
13045 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13046 a 64-bit inplace add RELA relocation used in DWARF debug sections. */
13049 is_64bit_inplace_add_reloc (Filedata
* filedata
, unsigned int reloc_type
)
13051 /* Please keep this table alpha-sorted for ease of visual lookup. */
13052 switch (filedata
->file_header
.e_machine
)
13055 return reloc_type
== 36; /* R_RISCV_ADD64. */
13061 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13062 a 64-bit inplace sub RELA relocation used in DWARF debug sections. */
13065 is_64bit_inplace_sub_reloc (Filedata
* filedata
, unsigned int reloc_type
)
13067 /* Please keep this table alpha-sorted for ease of visual lookup. */
13068 switch (filedata
->file_header
.e_machine
)
13071 return reloc_type
== 40; /* R_RISCV_SUB64. */
13077 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13078 a 16-bit inplace add RELA relocation used in DWARF debug sections. */
13081 is_16bit_inplace_add_reloc (Filedata
* filedata
, unsigned int reloc_type
)
13083 /* Please keep this table alpha-sorted for ease of visual lookup. */
13084 switch (filedata
->file_header
.e_machine
)
13087 return reloc_type
== 34; /* R_RISCV_ADD16. */
13093 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13094 a 16-bit inplace sub RELA relocation used in DWARF debug sections. */
13097 is_16bit_inplace_sub_reloc (Filedata
* filedata
, unsigned int reloc_type
)
13099 /* Please keep this table alpha-sorted for ease of visual lookup. */
13100 switch (filedata
->file_header
.e_machine
)
13103 return reloc_type
== 38; /* R_RISCV_SUB16. */
13109 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13110 a 8-bit inplace add RELA relocation used in DWARF debug sections. */
13113 is_8bit_inplace_add_reloc (Filedata
* filedata
, unsigned int reloc_type
)
13115 /* Please keep this table alpha-sorted for ease of visual lookup. */
13116 switch (filedata
->file_header
.e_machine
)
13119 return reloc_type
== 33; /* R_RISCV_ADD8. */
13125 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13126 a 8-bit inplace sub RELA relocation used in DWARF debug sections. */
13129 is_8bit_inplace_sub_reloc (Filedata
* filedata
, unsigned int reloc_type
)
13131 /* Please keep this table alpha-sorted for ease of visual lookup. */
13132 switch (filedata
->file_header
.e_machine
)
13135 return reloc_type
== 37; /* R_RISCV_SUB8. */
13141 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13142 a 6-bit inplace sub RELA relocation used in DWARF debug sections. */
13145 is_6bit_inplace_sub_reloc (Filedata
* filedata
, unsigned int reloc_type
)
13147 switch (filedata
->file_header
.e_machine
)
13150 return reloc_type
== 52; /* R_RISCV_SUB6. */
13156 /* Returns TRUE iff RELOC_TYPE is a NONE relocation used for discarded
13157 relocation entries (possibly formerly used for SHT_GROUP sections). */
13160 is_none_reloc (Filedata
* filedata
, unsigned int reloc_type
)
13162 switch (filedata
->file_header
.e_machine
)
13164 case EM_386
: /* R_386_NONE. */
13165 case EM_68K
: /* R_68K_NONE. */
13166 case EM_ADAPTEVA_EPIPHANY
:
13167 case EM_ALPHA
: /* R_ALPHA_NONE. */
13168 case EM_ALTERA_NIOS2
: /* R_NIOS2_NONE. */
13169 case EM_ARC
: /* R_ARC_NONE. */
13170 case EM_ARC_COMPACT2
: /* R_ARC_NONE. */
13171 case EM_ARC_COMPACT
: /* R_ARC_NONE. */
13172 case EM_ARM
: /* R_ARM_NONE. */
13173 case EM_C166
: /* R_XC16X_NONE. */
13174 case EM_CRIS
: /* R_CRIS_NONE. */
13175 case EM_FT32
: /* R_FT32_NONE. */
13176 case EM_IA_64
: /* R_IA64_NONE. */
13177 case EM_K1OM
: /* R_X86_64_NONE. */
13178 case EM_L1OM
: /* R_X86_64_NONE. */
13179 case EM_M32R
: /* R_M32R_NONE. */
13180 case EM_MIPS
: /* R_MIPS_NONE. */
13181 case EM_MN10300
: /* R_MN10300_NONE. */
13182 case EM_MOXIE
: /* R_MOXIE_NONE. */
13183 case EM_NIOS32
: /* R_NIOS_NONE. */
13184 case EM_OR1K
: /* R_OR1K_NONE. */
13185 case EM_PARISC
: /* R_PARISC_NONE. */
13186 case EM_PPC64
: /* R_PPC64_NONE. */
13187 case EM_PPC
: /* R_PPC_NONE. */
13188 case EM_RISCV
: /* R_RISCV_NONE. */
13189 case EM_S390
: /* R_390_NONE. */
13191 case EM_SH
: /* R_SH_NONE. */
13192 case EM_SPARC32PLUS
:
13193 case EM_SPARC
: /* R_SPARC_NONE. */
13195 case EM_TILEGX
: /* R_TILEGX_NONE. */
13196 case EM_TILEPRO
: /* R_TILEPRO_NONE. */
13197 case EM_TI_C6000
:/* R_C6000_NONE. */
13198 case EM_X86_64
: /* R_X86_64_NONE. */
13200 case EM_WEBASSEMBLY
: /* R_WASM32_NONE. */
13201 return reloc_type
== 0;
13204 return reloc_type
== 0 || reloc_type
== 256;
13207 return (reloc_type
== 0 /* R_AVR_NONE. */
13208 || reloc_type
== 30 /* R_AVR_DIFF8. */
13209 || reloc_type
== 31 /* R_AVR_DIFF16. */
13210 || reloc_type
== 32 /* R_AVR_DIFF32. */);
13212 return reloc_type
== 3; /* R_METAG_NONE. */
13214 return (reloc_type
== 0 /* R_XTENSA_NONE. */
13215 || reloc_type
== 204 /* R_NDS32_DIFF8. */
13216 || reloc_type
== 205 /* R_NDS32_DIFF16. */
13217 || reloc_type
== 206 /* R_NDS32_DIFF32. */
13218 || reloc_type
== 207 /* R_NDS32_ULEB128. */);
13220 return (reloc_type
== 0 /* R_PRU_NONE. */
13221 || reloc_type
== 65 /* R_PRU_DIFF8. */
13222 || reloc_type
== 66 /* R_PRU_DIFF16. */
13223 || reloc_type
== 67 /* R_PRU_DIFF32. */);
13224 case EM_XTENSA_OLD
:
13226 return (reloc_type
== 0 /* R_XTENSA_NONE. */
13227 || reloc_type
== 17 /* R_XTENSA_DIFF8. */
13228 || reloc_type
== 18 /* R_XTENSA_DIFF16. */
13229 || reloc_type
== 19 /* R_XTENSA_DIFF32. */);
13234 /* Returns TRUE if there is a relocation against
13235 section NAME at OFFSET bytes. */
13238 reloc_at (struct dwarf_section
* dsec
, dwarf_vma offset
)
13240 Elf_Internal_Rela
* relocs
;
13241 Elf_Internal_Rela
* rp
;
13243 if (dsec
== NULL
|| dsec
->reloc_info
== NULL
)
13246 relocs
= (Elf_Internal_Rela
*) dsec
->reloc_info
;
13248 for (rp
= relocs
; rp
< relocs
+ dsec
->num_relocs
; ++rp
)
13249 if (rp
->r_offset
== offset
)
13255 /* Apply relocations to a section.
13256 Returns TRUE upon success, FALSE otherwise.
13257 If RELOCS_RETURN is non-NULL then it is set to point to the loaded relocs.
13258 It is then the caller's responsibility to free them. NUM_RELOCS_RETURN
13259 will be set to the number of relocs loaded.
13261 Note: So far support has been added only for those relocations
13262 which can be found in debug sections. FIXME: Add support for
13263 more relocations ? */
13266 apply_relocations (Filedata
* filedata
,
13267 const Elf_Internal_Shdr
* section
,
13268 unsigned char * start
,
13269 bfd_size_type size
,
13270 void ** relocs_return
,
13271 unsigned long * num_relocs_return
)
13273 Elf_Internal_Shdr
* relsec
;
13274 unsigned char * end
= start
+ size
;
13276 if (relocs_return
!= NULL
)
13278 * (Elf_Internal_Rela
**) relocs_return
= NULL
;
13279 * num_relocs_return
= 0;
13282 if (filedata
->file_header
.e_type
!= ET_REL
)
13283 /* No relocs to apply. */
13286 /* Find the reloc section associated with the section. */
13287 for (relsec
= filedata
->section_headers
;
13288 relsec
< filedata
->section_headers
+ filedata
->file_header
.e_shnum
;
13291 bfd_boolean is_rela
;
13292 unsigned long num_relocs
;
13293 Elf_Internal_Rela
* relocs
;
13294 Elf_Internal_Rela
* rp
;
13295 Elf_Internal_Shdr
* symsec
;
13296 Elf_Internal_Sym
* symtab
;
13297 unsigned long num_syms
;
13298 Elf_Internal_Sym
* sym
;
13300 if ((relsec
->sh_type
!= SHT_RELA
&& relsec
->sh_type
!= SHT_REL
)
13301 || relsec
->sh_info
>= filedata
->file_header
.e_shnum
13302 || filedata
->section_headers
+ relsec
->sh_info
!= section
13303 || relsec
->sh_size
== 0
13304 || relsec
->sh_link
>= filedata
->file_header
.e_shnum
)
13307 is_rela
= relsec
->sh_type
== SHT_RELA
;
13311 if (!slurp_rela_relocs (filedata
, relsec
->sh_offset
,
13312 relsec
->sh_size
, & relocs
, & num_relocs
))
13317 if (!slurp_rel_relocs (filedata
, relsec
->sh_offset
,
13318 relsec
->sh_size
, & relocs
, & num_relocs
))
13322 /* SH uses RELA but uses in place value instead of the addend field. */
13323 if (filedata
->file_header
.e_machine
== EM_SH
)
13326 symsec
= filedata
->section_headers
+ relsec
->sh_link
;
13327 if (symsec
->sh_type
!= SHT_SYMTAB
13328 && symsec
->sh_type
!= SHT_DYNSYM
)
13330 symtab
= GET_ELF_SYMBOLS (filedata
, symsec
, & num_syms
);
13332 for (rp
= relocs
; rp
< relocs
+ num_relocs
; ++rp
)
13335 unsigned int reloc_type
;
13336 unsigned int reloc_size
;
13337 bfd_boolean reloc_inplace
= FALSE
;
13338 bfd_boolean reloc_subtract
= FALSE
;
13339 unsigned char * rloc
;
13340 unsigned long sym_index
;
13342 reloc_type
= get_reloc_type (filedata
, rp
->r_info
);
13344 if (target_specific_reloc_handling (filedata
, rp
, start
, end
, symtab
, num_syms
))
13346 else if (is_none_reloc (filedata
, reloc_type
))
13348 else if (is_32bit_abs_reloc (filedata
, reloc_type
)
13349 || is_32bit_pcrel_reloc (filedata
, reloc_type
))
13351 else if (is_64bit_abs_reloc (filedata
, reloc_type
)
13352 || is_64bit_pcrel_reloc (filedata
, reloc_type
))
13354 else if (is_24bit_abs_reloc (filedata
, reloc_type
))
13356 else if (is_16bit_abs_reloc (filedata
, reloc_type
))
13358 else if (is_8bit_abs_reloc (filedata
, reloc_type
)
13359 || is_6bit_abs_reloc (filedata
, reloc_type
))
13361 else if ((reloc_subtract
= is_32bit_inplace_sub_reloc (filedata
,
13363 || is_32bit_inplace_add_reloc (filedata
, reloc_type
))
13366 reloc_inplace
= TRUE
;
13368 else if ((reloc_subtract
= is_64bit_inplace_sub_reloc (filedata
,
13370 || is_64bit_inplace_add_reloc (filedata
, reloc_type
))
13373 reloc_inplace
= TRUE
;
13375 else if ((reloc_subtract
= is_16bit_inplace_sub_reloc (filedata
,
13377 || is_16bit_inplace_add_reloc (filedata
, reloc_type
))
13380 reloc_inplace
= TRUE
;
13382 else if ((reloc_subtract
= is_8bit_inplace_sub_reloc (filedata
,
13384 || is_8bit_inplace_add_reloc (filedata
, reloc_type
))
13387 reloc_inplace
= TRUE
;
13389 else if ((reloc_subtract
= is_6bit_inplace_sub_reloc (filedata
,
13393 reloc_inplace
= TRUE
;
13397 static unsigned int prev_reloc
= 0;
13399 if (reloc_type
!= prev_reloc
)
13400 warn (_("unable to apply unsupported reloc type %d to section %s\n"),
13401 reloc_type
, printable_section_name (filedata
, section
));
13402 prev_reloc
= reloc_type
;
13406 rloc
= start
+ rp
->r_offset
;
13407 if (!IN_RANGE (start
, end
, rloc
, reloc_size
))
13409 warn (_("skipping invalid relocation offset 0x%lx in section %s\n"),
13410 (unsigned long) rp
->r_offset
,
13411 printable_section_name (filedata
, section
));
13415 sym_index
= (unsigned long) get_reloc_symindex (rp
->r_info
);
13416 if (sym_index
>= num_syms
)
13418 warn (_("skipping invalid relocation symbol index 0x%lx in section %s\n"),
13419 sym_index
, printable_section_name (filedata
, section
));
13422 sym
= symtab
+ sym_index
;
13424 /* If the reloc has a symbol associated with it,
13425 make sure that it is of an appropriate type.
13427 Relocations against symbols without type can happen.
13428 Gcc -feliminate-dwarf2-dups may generate symbols
13429 without type for debug info.
13431 Icc generates relocations against function symbols
13432 instead of local labels.
13434 Relocations against object symbols can happen, eg when
13435 referencing a global array. For an example of this see
13436 the _clz.o binary in libgcc.a. */
13438 && ELF_ST_TYPE (sym
->st_info
) != STT_COMMON
13439 && ELF_ST_TYPE (sym
->st_info
) > STT_SECTION
)
13441 warn (_("skipping unexpected symbol type %s in section %s relocation %ld\n"),
13442 get_symbol_type (filedata
, ELF_ST_TYPE (sym
->st_info
)),
13443 printable_section_name (filedata
, relsec
),
13444 (long int)(rp
- relocs
));
13450 addend
+= rp
->r_addend
;
13451 /* R_XTENSA_32, R_PJ_DATA_DIR32 and R_D30V_32_NORMAL are
13452 partial_inplace. */
13454 || (filedata
->file_header
.e_machine
== EM_XTENSA
13455 && reloc_type
== 1)
13456 || ((filedata
->file_header
.e_machine
== EM_PJ
13457 || filedata
->file_header
.e_machine
== EM_PJ_OLD
)
13458 && reloc_type
== 1)
13459 || ((filedata
->file_header
.e_machine
== EM_D30V
13460 || filedata
->file_header
.e_machine
== EM_CYGNUS_D30V
)
13461 && reloc_type
== 12)
13464 if (is_6bit_inplace_sub_reloc (filedata
, reloc_type
))
13465 addend
+= byte_get (rloc
, reloc_size
) & 0x3f;
13467 addend
+= byte_get (rloc
, reloc_size
);
13470 if (is_32bit_pcrel_reloc (filedata
, reloc_type
)
13471 || is_64bit_pcrel_reloc (filedata
, reloc_type
))
13473 /* On HPPA, all pc-relative relocations are biased by 8. */
13474 if (filedata
->file_header
.e_machine
== EM_PARISC
)
13476 byte_put (rloc
, (addend
+ sym
->st_value
) - rp
->r_offset
,
13479 else if (is_6bit_abs_reloc (filedata
, reloc_type
)
13480 || is_6bit_inplace_sub_reloc (filedata
, reloc_type
))
13482 if (reloc_subtract
)
13483 addend
-= sym
->st_value
;
13485 addend
+= sym
->st_value
;
13486 addend
= (addend
& 0x3f) | (byte_get (rloc
, reloc_size
) & 0xc0);
13487 byte_put (rloc
, addend
, reloc_size
);
13489 else if (reloc_subtract
)
13490 byte_put (rloc
, addend
- sym
->st_value
, reloc_size
);
13492 byte_put (rloc
, addend
+ sym
->st_value
, reloc_size
);
13496 /* Let the target specific reloc processing code know that
13497 we have finished with these relocs. */
13498 target_specific_reloc_handling (filedata
, NULL
, NULL
, NULL
, NULL
, 0);
13502 * (Elf_Internal_Rela
**) relocs_return
= relocs
;
13503 * num_relocs_return
= num_relocs
;
13514 #ifdef SUPPORT_DISASSEMBLY
13516 disassemble_section (Elf_Internal_Shdr
* section
, Filedata
* filedata
)
13518 printf (_("\nAssembly dump of section %s\n"), printable_section_name (filedata
, section
));
13520 /* FIXME: XXX -- to be done --- XXX */
13526 /* Reads in the contents of SECTION from FILE, returning a pointer
13527 to a malloc'ed buffer or NULL if something went wrong. */
13530 get_section_contents (Elf_Internal_Shdr
* section
, Filedata
* filedata
)
13532 bfd_size_type num_bytes
= section
->sh_size
;
13534 if (num_bytes
== 0 || section
->sh_type
== SHT_NOBITS
)
13536 printf (_("Section '%s' has no data to dump.\n"),
13537 printable_section_name (filedata
, section
));
13541 return (char *) get_data (NULL
, filedata
, section
->sh_offset
, 1, num_bytes
,
13542 _("section contents"));
13545 /* Uncompresses a section that was compressed using zlib, in place. */
13548 uncompress_section_contents (unsigned char ** buffer
,
13549 dwarf_size_type uncompressed_size
,
13550 dwarf_size_type
* size
)
13552 dwarf_size_type compressed_size
= *size
;
13553 unsigned char * compressed_buffer
= *buffer
;
13554 unsigned char * uncompressed_buffer
;
13558 /* It is possible the section consists of several compressed
13559 buffers concatenated together, so we uncompress in a loop. */
13560 /* PR 18313: The state field in the z_stream structure is supposed
13561 to be invisible to the user (ie us), but some compilers will
13562 still complain about it being used without initialisation. So
13563 we first zero the entire z_stream structure and then set the fields
13565 memset (& strm
, 0, sizeof strm
);
13566 strm
.avail_in
= compressed_size
;
13567 strm
.next_in
= (Bytef
*) compressed_buffer
;
13568 strm
.avail_out
= uncompressed_size
;
13569 uncompressed_buffer
= (unsigned char *) xmalloc (uncompressed_size
);
13571 rc
= inflateInit (& strm
);
13572 while (strm
.avail_in
> 0)
13576 strm
.next_out
= ((Bytef
*) uncompressed_buffer
13577 + (uncompressed_size
- strm
.avail_out
));
13578 rc
= inflate (&strm
, Z_FINISH
);
13579 if (rc
!= Z_STREAM_END
)
13581 rc
= inflateReset (& strm
);
13583 rc
= inflateEnd (& strm
);
13585 || strm
.avail_out
!= 0)
13588 *buffer
= uncompressed_buffer
;
13589 *size
= uncompressed_size
;
13593 free (uncompressed_buffer
);
13594 /* Indicate decompression failure. */
13600 dump_section_as_strings (Elf_Internal_Shdr
* section
, Filedata
* filedata
)
13602 Elf_Internal_Shdr
* relsec
;
13603 bfd_size_type num_bytes
;
13604 unsigned char * data
;
13605 unsigned char * end
;
13606 unsigned char * real_start
;
13607 unsigned char * start
;
13608 bfd_boolean some_strings_shown
;
13610 real_start
= start
= (unsigned char *) get_section_contents (section
, filedata
);
13612 /* PR 21820: Do not fail if the section was empty. */
13613 return (section
->sh_size
== 0 || section
->sh_type
== SHT_NOBITS
) ? TRUE
: FALSE
;
13615 num_bytes
= section
->sh_size
;
13617 printf (_("\nString dump of section '%s':\n"), printable_section_name (filedata
, section
));
13619 if (decompress_dumps
)
13621 dwarf_size_type new_size
= num_bytes
;
13622 dwarf_size_type uncompressed_size
= 0;
13624 if ((section
->sh_flags
& SHF_COMPRESSED
) != 0)
13626 Elf_Internal_Chdr chdr
;
13627 unsigned int compression_header_size
13628 = get_compression_header (& chdr
, (unsigned char *) start
,
13631 if (chdr
.ch_type
!= ELFCOMPRESS_ZLIB
)
13633 warn (_("section '%s' has unsupported compress type: %d\n"),
13634 printable_section_name (filedata
, section
), chdr
.ch_type
);
13637 uncompressed_size
= chdr
.ch_size
;
13638 start
+= compression_header_size
;
13639 new_size
-= compression_header_size
;
13641 else if (new_size
> 12 && streq ((char *) start
, "ZLIB"))
13643 /* Read the zlib header. In this case, it should be "ZLIB"
13644 followed by the uncompressed section size, 8 bytes in
13645 big-endian order. */
13646 uncompressed_size
= start
[4]; uncompressed_size
<<= 8;
13647 uncompressed_size
+= start
[5]; uncompressed_size
<<= 8;
13648 uncompressed_size
+= start
[6]; uncompressed_size
<<= 8;
13649 uncompressed_size
+= start
[7]; uncompressed_size
<<= 8;
13650 uncompressed_size
+= start
[8]; uncompressed_size
<<= 8;
13651 uncompressed_size
+= start
[9]; uncompressed_size
<<= 8;
13652 uncompressed_size
+= start
[10]; uncompressed_size
<<= 8;
13653 uncompressed_size
+= start
[11];
13658 if (uncompressed_size
)
13660 if (uncompress_section_contents (& start
,
13661 uncompressed_size
, & new_size
))
13662 num_bytes
= new_size
;
13665 error (_("Unable to decompress section %s\n"),
13666 printable_section_name (filedata
, section
));
13671 start
= real_start
;
13674 /* If the section being dumped has relocations against it the user might
13675 be expecting these relocations to have been applied. Check for this
13676 case and issue a warning message in order to avoid confusion.
13677 FIXME: Maybe we ought to have an option that dumps a section with
13678 relocs applied ? */
13679 for (relsec
= filedata
->section_headers
;
13680 relsec
< filedata
->section_headers
+ filedata
->file_header
.e_shnum
;
13683 if ((relsec
->sh_type
!= SHT_RELA
&& relsec
->sh_type
!= SHT_REL
)
13684 || relsec
->sh_info
>= filedata
->file_header
.e_shnum
13685 || filedata
->section_headers
+ relsec
->sh_info
!= section
13686 || relsec
->sh_size
== 0
13687 || relsec
->sh_link
>= filedata
->file_header
.e_shnum
)
13690 printf (_(" Note: This section has relocations against it, but these have NOT been applied to this dump.\n"));
13695 end
= start
+ num_bytes
;
13696 some_strings_shown
= FALSE
;
13700 while (!ISPRINT (* data
))
13701 if (++ data
>= end
)
13706 size_t maxlen
= end
- data
;
13709 /* PR 11128: Use two separate invocations in order to work
13710 around bugs in the Solaris 8 implementation of printf. */
13711 printf (" [%6tx] ", data
- start
);
13713 printf (" [%6Ix] ", (size_t) (data
- start
));
13717 print_symbol ((int) maxlen
, (const char *) data
);
13719 data
+= strnlen ((const char *) data
, maxlen
);
13723 printf (_("<corrupt>\n"));
13726 some_strings_shown
= TRUE
;
13730 if (! some_strings_shown
)
13731 printf (_(" No strings found in this section."));
13740 dump_section_as_bytes (Elf_Internal_Shdr
* section
,
13741 Filedata
* filedata
,
13742 bfd_boolean relocate
)
13744 Elf_Internal_Shdr
* relsec
;
13745 bfd_size_type bytes
;
13746 bfd_size_type section_size
;
13748 unsigned char * data
;
13749 unsigned char * real_start
;
13750 unsigned char * start
;
13752 real_start
= start
= (unsigned char *) get_section_contents (section
, filedata
);
13754 /* PR 21820: Do not fail if the section was empty. */
13755 return (section
->sh_size
== 0 || section
->sh_type
== SHT_NOBITS
) ? TRUE
: FALSE
;
13757 section_size
= section
->sh_size
;
13759 printf (_("\nHex dump of section '%s':\n"), printable_section_name (filedata
, section
));
13761 if (decompress_dumps
)
13763 dwarf_size_type new_size
= section_size
;
13764 dwarf_size_type uncompressed_size
= 0;
13766 if ((section
->sh_flags
& SHF_COMPRESSED
) != 0)
13768 Elf_Internal_Chdr chdr
;
13769 unsigned int compression_header_size
13770 = get_compression_header (& chdr
, start
, section_size
);
13772 if (chdr
.ch_type
!= ELFCOMPRESS_ZLIB
)
13774 warn (_("section '%s' has unsupported compress type: %d\n"),
13775 printable_section_name (filedata
, section
), chdr
.ch_type
);
13778 uncompressed_size
= chdr
.ch_size
;
13779 start
+= compression_header_size
;
13780 new_size
-= compression_header_size
;
13782 else if (new_size
> 12 && streq ((char *) start
, "ZLIB"))
13784 /* Read the zlib header. In this case, it should be "ZLIB"
13785 followed by the uncompressed section size, 8 bytes in
13786 big-endian order. */
13787 uncompressed_size
= start
[4]; uncompressed_size
<<= 8;
13788 uncompressed_size
+= start
[5]; uncompressed_size
<<= 8;
13789 uncompressed_size
+= start
[6]; uncompressed_size
<<= 8;
13790 uncompressed_size
+= start
[7]; uncompressed_size
<<= 8;
13791 uncompressed_size
+= start
[8]; uncompressed_size
<<= 8;
13792 uncompressed_size
+= start
[9]; uncompressed_size
<<= 8;
13793 uncompressed_size
+= start
[10]; uncompressed_size
<<= 8;
13794 uncompressed_size
+= start
[11];
13799 if (uncompressed_size
)
13801 if (uncompress_section_contents (& start
, uncompressed_size
,
13804 section_size
= new_size
;
13808 error (_("Unable to decompress section %s\n"),
13809 printable_section_name (filedata
, section
));
13810 /* FIXME: Print the section anyway ? */
13815 start
= real_start
;
13820 if (! apply_relocations (filedata
, section
, start
, section_size
, NULL
, NULL
))
13825 /* If the section being dumped has relocations against it the user might
13826 be expecting these relocations to have been applied. Check for this
13827 case and issue a warning message in order to avoid confusion.
13828 FIXME: Maybe we ought to have an option that dumps a section with
13829 relocs applied ? */
13830 for (relsec
= filedata
->section_headers
;
13831 relsec
< filedata
->section_headers
+ filedata
->file_header
.e_shnum
;
13834 if ((relsec
->sh_type
!= SHT_RELA
&& relsec
->sh_type
!= SHT_REL
)
13835 || relsec
->sh_info
>= filedata
->file_header
.e_shnum
13836 || filedata
->section_headers
+ relsec
->sh_info
!= section
13837 || relsec
->sh_size
== 0
13838 || relsec
->sh_link
>= filedata
->file_header
.e_shnum
)
13841 printf (_(" NOTE: This section has relocations against it, but these have NOT been applied to this dump.\n"));
13846 addr
= section
->sh_addr
;
13847 bytes
= section_size
;
13856 lbytes
= (bytes
> 16 ? 16 : bytes
);
13858 printf (" 0x%8.8lx ", (unsigned long) addr
);
13860 for (j
= 0; j
< 16; j
++)
13863 printf ("%2.2x", data
[j
]);
13871 for (j
= 0; j
< lbytes
; j
++)
13874 if (k
>= ' ' && k
< 0x7f)
13893 static ctf_sect_t
*
13894 shdr_to_ctf_sect (ctf_sect_t
*buf
, Elf_Internal_Shdr
*shdr
, Filedata
*filedata
)
13896 buf
->cts_name
= SECTION_NAME (shdr
);
13897 buf
->cts_size
= shdr
->sh_size
;
13898 buf
->cts_entsize
= shdr
->sh_entsize
;
13903 /* Formatting callback function passed to ctf_dump. Returns either the pointer
13904 it is passed, or a pointer to newly-allocated storage, in which case
13905 dump_ctf() will free it when it no longer needs it. */
13907 static char *dump_ctf_indent_lines (ctf_sect_names_t sect ATTRIBUTE_UNUSED
,
13908 char *s
, void *arg
)
13910 const char *blanks
= arg
;
13913 if (asprintf (&new_s
, "%s%s", blanks
, s
) < 0)
13919 dump_section_as_ctf (Elf_Internal_Shdr
* section
, Filedata
* filedata
)
13921 Elf_Internal_Shdr
* parent_sec
= NULL
;
13922 Elf_Internal_Shdr
* symtab_sec
= NULL
;
13923 Elf_Internal_Shdr
* strtab_sec
= NULL
;
13924 void * data
= NULL
;
13925 void * symdata
= NULL
;
13926 void * strdata
= NULL
;
13927 void * parentdata
= NULL
;
13928 ctf_sect_t ctfsect
, symsect
, strsect
, parentsect
;
13929 ctf_sect_t
* symsectp
= NULL
;
13930 ctf_sect_t
* strsectp
= NULL
;
13931 ctf_file_t
* ctf
= NULL
;
13932 ctf_file_t
* parent
= NULL
;
13934 const char *things
[] = {"Header", "Labels", "Data objects",
13935 "Function objects", "Variables", "Types", "Strings",
13937 const char **thing
;
13939 bfd_boolean ret
= FALSE
;
13942 shdr_to_ctf_sect (&ctfsect
, section
, filedata
);
13943 data
= get_section_contents (section
, filedata
);
13944 ctfsect
.cts_data
= data
;
13946 if (!dump_ctf_symtab_name
)
13947 dump_ctf_symtab_name
= strdup (".symtab");
13949 if (!dump_ctf_strtab_name
)
13950 dump_ctf_strtab_name
= strdup (".strtab");
13952 if (dump_ctf_symtab_name
&& dump_ctf_symtab_name
[0] != 0)
13954 if ((symtab_sec
= find_section (filedata
, dump_ctf_symtab_name
)) == NULL
)
13956 error (_("No symbol section named %s\n"), dump_ctf_symtab_name
);
13959 if ((symdata
= (void *) get_data (NULL
, filedata
,
13960 symtab_sec
->sh_offset
, 1,
13961 symtab_sec
->sh_size
,
13962 _("symbols"))) == NULL
)
13964 symsectp
= shdr_to_ctf_sect (&symsect
, symtab_sec
, filedata
);
13965 symsect
.cts_data
= symdata
;
13967 if (dump_ctf_strtab_name
&& dump_ctf_symtab_name
[0] != 0)
13969 if ((strtab_sec
= find_section (filedata
, dump_ctf_strtab_name
)) == NULL
)
13971 error (_("No string table section named %s\n"),
13972 dump_ctf_strtab_name
);
13975 if ((strdata
= (void *) get_data (NULL
, filedata
,
13976 strtab_sec
->sh_offset
, 1,
13977 strtab_sec
->sh_size
,
13978 _("strings"))) == NULL
)
13980 strsectp
= shdr_to_ctf_sect (&strsect
, strtab_sec
, filedata
);
13981 strsect
.cts_data
= strdata
;
13983 if (dump_ctf_parent_name
)
13985 if ((parent_sec
= find_section (filedata
, dump_ctf_parent_name
)) == NULL
)
13987 error (_("No CTF parent section named %s\n"), dump_ctf_parent_name
);
13990 if ((parentdata
= (void *) get_data (NULL
, filedata
,
13991 parent_sec
->sh_offset
, 1,
13992 parent_sec
->sh_size
,
13993 _("CTF parent"))) == NULL
)
13995 shdr_to_ctf_sect (&parentsect
, parent_sec
, filedata
);
13996 parentsect
.cts_data
= parentdata
;
13999 /* Load the CTF file and dump it. */
14001 if ((ctf
= ctf_bufopen (&ctfsect
, symsectp
, strsectp
, &err
)) == NULL
)
14003 error (_("CTF open failure: %s\n"), ctf_errmsg (err
));
14009 if ((parent
= ctf_bufopen (&parentsect
, symsectp
, strsectp
, &err
)) == NULL
)
14011 error (_("CTF open failure: %s\n"), ctf_errmsg (err
));
14015 ctf_import (ctf
, parent
);
14020 printf (_("\nDump of CTF section '%s':\n"),
14021 printable_section_name (filedata
, section
));
14023 for (i
= 0, thing
= things
; *thing
[0]; thing
++, i
++)
14025 ctf_dump_state_t
*s
= NULL
;
14028 printf ("\n %s:\n", *thing
);
14029 while ((item
= ctf_dump (ctf
, &s
, i
, dump_ctf_indent_lines
,
14030 (void *) " ")) != NULL
)
14032 printf ("%s\n", item
);
14036 if (ctf_errno (ctf
))
14038 error (_("Iteration failed: %s, %s\n"), *thing
,
14039 ctf_errmsg (ctf_errno (ctf
)));
14045 ctf_file_close (ctf
);
14046 ctf_file_close (parent
);
14055 load_specific_debug_section (enum dwarf_section_display_enum debug
,
14056 const Elf_Internal_Shdr
* sec
,
14059 struct dwarf_section
* section
= &debug_displays
[debug
].section
;
14061 Filedata
* filedata
= (Filedata
*) data
;
14063 if (section
->start
!= NULL
)
14065 /* If it is already loaded, do nothing. */
14066 if (streq (section
->filename
, filedata
->file_name
))
14068 free (section
->start
);
14071 snprintf (buf
, sizeof (buf
), _("%s section data"), section
->name
);
14072 section
->address
= sec
->sh_addr
;
14073 section
->user_data
= NULL
;
14074 section
->filename
= filedata
->file_name
;
14075 section
->start
= (unsigned char *) get_data (NULL
, filedata
,
14077 sec
->sh_size
, buf
);
14078 if (section
->start
== NULL
)
14082 unsigned char *start
= section
->start
;
14083 dwarf_size_type size
= sec
->sh_size
;
14084 dwarf_size_type uncompressed_size
= 0;
14086 if ((sec
->sh_flags
& SHF_COMPRESSED
) != 0)
14088 Elf_Internal_Chdr chdr
;
14089 unsigned int compression_header_size
;
14091 if (size
< (is_32bit_elf
14092 ? sizeof (Elf32_External_Chdr
)
14093 : sizeof (Elf64_External_Chdr
)))
14095 warn (_("compressed section %s is too small to contain a compression header"),
14100 compression_header_size
= get_compression_header (&chdr
, start
, size
);
14102 if (chdr
.ch_type
!= ELFCOMPRESS_ZLIB
)
14104 warn (_("section '%s' has unsupported compress type: %d\n"),
14105 section
->name
, chdr
.ch_type
);
14108 uncompressed_size
= chdr
.ch_size
;
14109 start
+= compression_header_size
;
14110 size
-= compression_header_size
;
14112 else if (size
> 12 && streq ((char *) start
, "ZLIB"))
14114 /* Read the zlib header. In this case, it should be "ZLIB"
14115 followed by the uncompressed section size, 8 bytes in
14116 big-endian order. */
14117 uncompressed_size
= start
[4]; uncompressed_size
<<= 8;
14118 uncompressed_size
+= start
[5]; uncompressed_size
<<= 8;
14119 uncompressed_size
+= start
[6]; uncompressed_size
<<= 8;
14120 uncompressed_size
+= start
[7]; uncompressed_size
<<= 8;
14121 uncompressed_size
+= start
[8]; uncompressed_size
<<= 8;
14122 uncompressed_size
+= start
[9]; uncompressed_size
<<= 8;
14123 uncompressed_size
+= start
[10]; uncompressed_size
<<= 8;
14124 uncompressed_size
+= start
[11];
14129 if (uncompressed_size
)
14131 if (uncompress_section_contents (&start
, uncompressed_size
,
14134 /* Free the compressed buffer, update the section buffer
14135 and the section size if uncompress is successful. */
14136 free (section
->start
);
14137 section
->start
= start
;
14141 error (_("Unable to decompress section %s\n"),
14142 printable_section_name (filedata
, sec
));
14147 section
->size
= size
;
14150 if (section
->start
== NULL
)
14153 if (debug_displays
[debug
].relocate
)
14155 if (! apply_relocations (filedata
, sec
, section
->start
, section
->size
,
14156 & section
->reloc_info
, & section
->num_relocs
))
14161 section
->reloc_info
= NULL
;
14162 section
->num_relocs
= 0;
14168 /* If this is not NULL, load_debug_section will only look for sections
14169 within the list of sections given here. */
14170 static unsigned int * section_subset
= NULL
;
14173 load_debug_section (enum dwarf_section_display_enum debug
, void * data
)
14175 struct dwarf_section
* section
= &debug_displays
[debug
].section
;
14176 Elf_Internal_Shdr
* sec
;
14177 Filedata
* filedata
= (Filedata
*) data
;
14179 /* Without section headers we cannot find any sections. */
14180 if (filedata
->section_headers
== NULL
)
14183 if (filedata
->string_table
== NULL
14184 && filedata
->file_header
.e_shstrndx
!= SHN_UNDEF
14185 && filedata
->file_header
.e_shstrndx
< filedata
->file_header
.e_shnum
)
14187 Elf_Internal_Shdr
* strs
;
14189 /* Read in the string table, so that we have section names to scan. */
14190 strs
= filedata
->section_headers
+ filedata
->file_header
.e_shstrndx
;
14192 if (strs
!= NULL
&& strs
->sh_size
!= 0)
14194 filedata
->string_table
14195 = (char *) get_data (NULL
, filedata
, strs
->sh_offset
,
14196 1, strs
->sh_size
, _("string table"));
14198 filedata
->string_table_length
14199 = filedata
->string_table
!= NULL
? strs
->sh_size
: 0;
14203 /* Locate the debug section. */
14204 sec
= find_section_in_set (filedata
, section
->uncompressed_name
, section_subset
);
14206 section
->name
= section
->uncompressed_name
;
14209 sec
= find_section_in_set (filedata
, section
->compressed_name
, section_subset
);
14211 section
->name
= section
->compressed_name
;
14216 /* If we're loading from a subset of sections, and we've loaded
14217 a section matching this name before, it's likely that it's a
14219 if (section_subset
!= NULL
)
14220 free_debug_section (debug
);
14222 return load_specific_debug_section (debug
, sec
, data
);
14226 free_debug_section (enum dwarf_section_display_enum debug
)
14228 struct dwarf_section
* section
= &debug_displays
[debug
].section
;
14230 if (section
->start
== NULL
)
14233 free ((char *) section
->start
);
14234 section
->start
= NULL
;
14235 section
->address
= 0;
14240 display_debug_section (int shndx
, Elf_Internal_Shdr
* section
, Filedata
* filedata
)
14242 char * name
= SECTION_NAME (section
);
14243 const char * print_name
= printable_section_name (filedata
, section
);
14244 bfd_size_type length
;
14245 bfd_boolean result
= TRUE
;
14248 length
= section
->sh_size
;
14251 printf (_("\nSection '%s' has no debugging data.\n"), print_name
);
14254 if (section
->sh_type
== SHT_NOBITS
)
14256 /* There is no point in dumping the contents of a debugging section
14257 which has the NOBITS type - the bits in the file will be random.
14258 This can happen when a file containing a .eh_frame section is
14259 stripped with the --only-keep-debug command line option. */
14260 printf (_("section '%s' has the NOBITS type - its contents are unreliable.\n"),
14265 if (const_strneq (name
, ".gnu.linkonce.wi."))
14266 name
= ".debug_info";
14268 /* See if we know how to display the contents of this section. */
14269 for (i
= 0; i
< max
; i
++)
14271 enum dwarf_section_display_enum id
= (enum dwarf_section_display_enum
) i
;
14272 struct dwarf_section_display
* display
= debug_displays
+ i
;
14273 struct dwarf_section
* sec
= & display
->section
;
14275 if (streq (sec
->uncompressed_name
, name
)
14276 || (id
== line
&& const_strneq (name
, ".debug_line."))
14277 || streq (sec
->compressed_name
, name
))
14279 bfd_boolean secondary
= (section
!= find_section (filedata
, name
));
14282 free_debug_section (id
);
14284 if (i
== line
&& const_strneq (name
, ".debug_line."))
14286 else if (streq (sec
->uncompressed_name
, name
))
14287 sec
->name
= sec
->uncompressed_name
;
14289 sec
->name
= sec
->compressed_name
;
14291 if (load_specific_debug_section (id
, section
, filedata
))
14293 /* If this debug section is part of a CU/TU set in a .dwp file,
14294 restrict load_debug_section to the sections in that set. */
14295 section_subset
= find_cu_tu_set (filedata
, shndx
);
14297 result
&= display
->display (sec
, filedata
);
14299 section_subset
= NULL
;
14301 if (secondary
|| (id
!= info
&& id
!= abbrev
))
14302 free_debug_section (id
);
14310 printf (_("Unrecognized debug section: %s\n"), print_name
);
14317 /* Set DUMP_SECTS for all sections where dumps were requested
14318 based on section name. */
14321 initialise_dumps_byname (Filedata
* filedata
)
14323 struct dump_list_entry
* cur
;
14325 for (cur
= dump_sects_byname
; cur
; cur
= cur
->next
)
14328 bfd_boolean any
= FALSE
;
14330 for (i
= 0; i
< filedata
->file_header
.e_shnum
; i
++)
14331 if (streq (SECTION_NAME (filedata
->section_headers
+ i
), cur
->name
))
14333 request_dump_bynumber (filedata
, i
, cur
->type
);
14338 warn (_("Section '%s' was not dumped because it does not exist!\n"),
14344 process_section_contents (Filedata
* filedata
)
14346 Elf_Internal_Shdr
* section
;
14348 bfd_boolean res
= TRUE
;
14353 initialise_dumps_byname (filedata
);
14355 for (i
= 0, section
= filedata
->section_headers
;
14356 i
< filedata
->file_header
.e_shnum
&& i
< filedata
->num_dump_sects
;
14359 dump_type dump
= filedata
->dump_sects
[i
];
14361 #ifdef SUPPORT_DISASSEMBLY
14362 if (dump
& DISASS_DUMP
)
14364 if (! disassemble_section (section
, filedata
))
14368 if (dump
& HEX_DUMP
)
14370 if (! dump_section_as_bytes (section
, filedata
, FALSE
))
14374 if (dump
& RELOC_DUMP
)
14376 if (! dump_section_as_bytes (section
, filedata
, TRUE
))
14380 if (dump
& STRING_DUMP
)
14382 if (! dump_section_as_strings (section
, filedata
))
14386 if (dump
& DEBUG_DUMP
)
14388 if (! display_debug_section (i
, section
, filedata
))
14392 if (dump
& CTF_DUMP
)
14394 if (! dump_section_as_ctf (section
, filedata
))
14399 /* Check to see if the user requested a
14400 dump of a section that does not exist. */
14401 while (i
< filedata
->num_dump_sects
)
14403 if (filedata
->dump_sects
[i
])
14405 warn (_("Section %d was not dumped because it does not exist!\n"), i
);
14415 process_mips_fpe_exception (int mask
)
14419 bfd_boolean first
= TRUE
;
14421 if (mask
& OEX_FPU_INEX
)
14422 fputs ("INEX", stdout
), first
= FALSE
;
14423 if (mask
& OEX_FPU_UFLO
)
14424 printf ("%sUFLO", first
? "" : "|"), first
= FALSE
;
14425 if (mask
& OEX_FPU_OFLO
)
14426 printf ("%sOFLO", first
? "" : "|"), first
= FALSE
;
14427 if (mask
& OEX_FPU_DIV0
)
14428 printf ("%sDIV0", first
? "" : "|"), first
= FALSE
;
14429 if (mask
& OEX_FPU_INVAL
)
14430 printf ("%sINVAL", first
? "" : "|");
14433 fputs ("0", stdout
);
14436 /* Display's the value of TAG at location P. If TAG is
14437 greater than 0 it is assumed to be an unknown tag, and
14438 a message is printed to this effect. Otherwise it is
14439 assumed that a message has already been printed.
14441 If the bottom bit of TAG is set it assumed to have a
14442 string value, otherwise it is assumed to have an integer
14445 Returns an updated P pointing to the first unread byte
14446 beyond the end of TAG's value.
14448 Reads at or beyond END will not be made. */
14450 static unsigned char *
14451 display_tag_value (signed int tag
,
14453 const unsigned char * const end
)
14458 printf (" Tag_unknown_%d: ", tag
);
14462 warn (_("<corrupt tag>\n"));
14466 /* PR 17531 file: 027-19978-0.004. */
14467 size_t maxlen
= (end
- p
) - 1;
14472 print_symbol ((int) maxlen
, (const char *) p
);
14473 p
+= strnlen ((char *) p
, maxlen
) + 1;
14477 printf (_("<corrupt string tag>"));
14478 p
= (unsigned char *) end
;
14484 READ_ULEB (val
, p
, end
);
14485 printf ("%ld (0x%lx)\n", val
, val
);
14492 /* ARC ABI attributes section. */
14494 static unsigned char *
14495 display_arc_attribute (unsigned char * p
,
14496 const unsigned char * const end
)
14501 READ_ULEB (tag
, p
, end
);
14505 case Tag_ARC_PCS_config
:
14506 READ_ULEB (val
, p
, end
);
14507 printf (" Tag_ARC_PCS_config: ");
14511 printf (_("Absent/Non standard\n"));
14514 printf (_("Bare metal/mwdt\n"));
14517 printf (_("Bare metal/newlib\n"));
14520 printf (_("Linux/uclibc\n"));
14523 printf (_("Linux/glibc\n"));
14526 printf (_("Unknown\n"));
14531 case Tag_ARC_CPU_base
:
14532 READ_ULEB (val
, p
, end
);
14533 printf (" Tag_ARC_CPU_base: ");
14538 printf (_("Absent\n"));
14540 case TAG_CPU_ARC6xx
:
14541 printf ("ARC6xx\n");
14543 case TAG_CPU_ARC7xx
:
14544 printf ("ARC7xx\n");
14546 case TAG_CPU_ARCEM
:
14547 printf ("ARCEM\n");
14549 case TAG_CPU_ARCHS
:
14550 printf ("ARCHS\n");
14555 case Tag_ARC_CPU_variation
:
14556 READ_ULEB (val
, p
, end
);
14557 printf (" Tag_ARC_CPU_variation: ");
14561 if (val
> 0 && val
< 16)
14562 printf ("Core%d\n", val
);
14564 printf ("Unknown\n");
14568 printf (_("Absent\n"));
14573 case Tag_ARC_CPU_name
:
14574 printf (" Tag_ARC_CPU_name: ");
14575 p
= display_tag_value (-1, p
, end
);
14578 case Tag_ARC_ABI_rf16
:
14579 READ_ULEB (val
, p
, end
);
14580 printf (" Tag_ARC_ABI_rf16: %s\n", val
? _("yes") : _("no"));
14583 case Tag_ARC_ABI_osver
:
14584 READ_ULEB (val
, p
, end
);
14585 printf (" Tag_ARC_ABI_osver: v%d\n", val
);
14588 case Tag_ARC_ABI_pic
:
14589 case Tag_ARC_ABI_sda
:
14590 READ_ULEB (val
, p
, end
);
14591 printf (tag
== Tag_ARC_ABI_sda
? " Tag_ARC_ABI_sda: "
14592 : " Tag_ARC_ABI_pic: ");
14596 printf (_("Absent\n"));
14605 printf (_("Unknown\n"));
14610 case Tag_ARC_ABI_tls
:
14611 READ_ULEB (val
, p
, end
);
14612 printf (" Tag_ARC_ABI_tls: %s\n", val
? "r25": "none");
14615 case Tag_ARC_ABI_enumsize
:
14616 READ_ULEB (val
, p
, end
);
14617 printf (" Tag_ARC_ABI_enumsize: %s\n", val
? _("default") :
14621 case Tag_ARC_ABI_exceptions
:
14622 READ_ULEB (val
, p
, end
);
14623 printf (" Tag_ARC_ABI_exceptions: %s\n", val
? _("OPTFP")
14627 case Tag_ARC_ABI_double_size
:
14628 READ_ULEB (val
, p
, end
);
14629 printf (" Tag_ARC_ABI_double_size: %d\n", val
);
14632 case Tag_ARC_ISA_config
:
14633 printf (" Tag_ARC_ISA_config: ");
14634 p
= display_tag_value (-1, p
, end
);
14637 case Tag_ARC_ISA_apex
:
14638 printf (" Tag_ARC_ISA_apex: ");
14639 p
= display_tag_value (-1, p
, end
);
14642 case Tag_ARC_ISA_mpy_option
:
14643 READ_ULEB (val
, p
, end
);
14644 printf (" Tag_ARC_ISA_mpy_option: %d\n", val
);
14647 case Tag_ARC_ATR_version
:
14648 READ_ULEB (val
, p
, end
);
14649 printf (" Tag_ARC_ATR_version: %d\n", val
);
14653 return display_tag_value (tag
& 1, p
, end
);
14659 /* ARM EABI attributes section. */
14664 /* 0 = special, 1 = string, 2 = uleb123, > 0x80 == table lookup. */
14666 const char ** table
;
14667 } arm_attr_public_tag
;
14669 static const char * arm_attr_tag_CPU_arch
[] =
14670 {"Pre-v4", "v4", "v4T", "v5T", "v5TE", "v5TEJ", "v6", "v6KZ", "v6T2",
14671 "v6K", "v7", "v6-M", "v6S-M", "v7E-M", "v8", "v8-R", "v8-M.baseline",
14672 "v8-M.mainline", "", "", "", "v8.1-M.mainline"};
14673 static const char * arm_attr_tag_ARM_ISA_use
[] = {"No", "Yes"};
14674 static const char * arm_attr_tag_THUMB_ISA_use
[] =
14675 {"No", "Thumb-1", "Thumb-2", "Yes"};
14676 static const char * arm_attr_tag_FP_arch
[] =
14677 {"No", "VFPv1", "VFPv2", "VFPv3", "VFPv3-D16", "VFPv4", "VFPv4-D16",
14678 "FP for ARMv8", "FPv5/FP-D16 for ARMv8"};
14679 static const char * arm_attr_tag_WMMX_arch
[] = {"No", "WMMXv1", "WMMXv2"};
14680 static const char * arm_attr_tag_Advanced_SIMD_arch
[] =
14681 {"No", "NEONv1", "NEONv1 with Fused-MAC", "NEON for ARMv8",
14682 "NEON for ARMv8.1"};
14683 static const char * arm_attr_tag_PCS_config
[] =
14684 {"None", "Bare platform", "Linux application", "Linux DSO", "PalmOS 2004",
14685 "PalmOS (reserved)", "SymbianOS 2004", "SymbianOS (reserved)"};
14686 static const char * arm_attr_tag_ABI_PCS_R9_use
[] =
14687 {"V6", "SB", "TLS", "Unused"};
14688 static const char * arm_attr_tag_ABI_PCS_RW_data
[] =
14689 {"Absolute", "PC-relative", "SB-relative", "None"};
14690 static const char * arm_attr_tag_ABI_PCS_RO_data
[] =
14691 {"Absolute", "PC-relative", "None"};
14692 static const char * arm_attr_tag_ABI_PCS_GOT_use
[] =
14693 {"None", "direct", "GOT-indirect"};
14694 static const char * arm_attr_tag_ABI_PCS_wchar_t
[] =
14695 {"None", "??? 1", "2", "??? 3", "4"};
14696 static const char * arm_attr_tag_ABI_FP_rounding
[] = {"Unused", "Needed"};
14697 static const char * arm_attr_tag_ABI_FP_denormal
[] =
14698 {"Unused", "Needed", "Sign only"};
14699 static const char * arm_attr_tag_ABI_FP_exceptions
[] = {"Unused", "Needed"};
14700 static const char * arm_attr_tag_ABI_FP_user_exceptions
[] = {"Unused", "Needed"};
14701 static const char * arm_attr_tag_ABI_FP_number_model
[] =
14702 {"Unused", "Finite", "RTABI", "IEEE 754"};
14703 static const char * arm_attr_tag_ABI_enum_size
[] =
14704 {"Unused", "small", "int", "forced to int"};
14705 static const char * arm_attr_tag_ABI_HardFP_use
[] =
14706 {"As Tag_FP_arch", "SP only", "Reserved", "Deprecated"};
14707 static const char * arm_attr_tag_ABI_VFP_args
[] =
14708 {"AAPCS", "VFP registers", "custom", "compatible"};
14709 static const char * arm_attr_tag_ABI_WMMX_args
[] =
14710 {"AAPCS", "WMMX registers", "custom"};
14711 static const char * arm_attr_tag_ABI_optimization_goals
[] =
14712 {"None", "Prefer Speed", "Aggressive Speed", "Prefer Size",
14713 "Aggressive Size", "Prefer Debug", "Aggressive Debug"};
14714 static const char * arm_attr_tag_ABI_FP_optimization_goals
[] =
14715 {"None", "Prefer Speed", "Aggressive Speed", "Prefer Size",
14716 "Aggressive Size", "Prefer Accuracy", "Aggressive Accuracy"};
14717 static const char * arm_attr_tag_CPU_unaligned_access
[] = {"None", "v6"};
14718 static const char * arm_attr_tag_FP_HP_extension
[] =
14719 {"Not Allowed", "Allowed"};
14720 static const char * arm_attr_tag_ABI_FP_16bit_format
[] =
14721 {"None", "IEEE 754", "Alternative Format"};
14722 static const char * arm_attr_tag_DSP_extension
[] =
14723 {"Follow architecture", "Allowed"};
14724 static const char * arm_attr_tag_MPextension_use
[] =
14725 {"Not Allowed", "Allowed"};
14726 static const char * arm_attr_tag_DIV_use
[] =
14727 {"Allowed in Thumb-ISA, v7-R or v7-M", "Not allowed",
14728 "Allowed in v7-A with integer division extension"};
14729 static const char * arm_attr_tag_T2EE_use
[] = {"Not Allowed", "Allowed"};
14730 static const char * arm_attr_tag_Virtualization_use
[] =
14731 {"Not Allowed", "TrustZone", "Virtualization Extensions",
14732 "TrustZone and Virtualization Extensions"};
14733 static const char * arm_attr_tag_MPextension_use_legacy
[] =
14734 {"Not Allowed", "Allowed"};
14736 static const char * arm_attr_tag_MVE_arch
[] =
14737 {"No MVE", "MVE Integer only", "MVE Integer and FP"};
14739 #define LOOKUP(id, name) \
14740 {id, #name, 0x80 | ARRAY_SIZE(arm_attr_tag_##name), arm_attr_tag_##name}
14741 static arm_attr_public_tag arm_attr_public_tags
[] =
14743 {4, "CPU_raw_name", 1, NULL
},
14744 {5, "CPU_name", 1, NULL
},
14745 LOOKUP(6, CPU_arch
),
14746 {7, "CPU_arch_profile", 0, NULL
},
14747 LOOKUP(8, ARM_ISA_use
),
14748 LOOKUP(9, THUMB_ISA_use
),
14749 LOOKUP(10, FP_arch
),
14750 LOOKUP(11, WMMX_arch
),
14751 LOOKUP(12, Advanced_SIMD_arch
),
14752 LOOKUP(13, PCS_config
),
14753 LOOKUP(14, ABI_PCS_R9_use
),
14754 LOOKUP(15, ABI_PCS_RW_data
),
14755 LOOKUP(16, ABI_PCS_RO_data
),
14756 LOOKUP(17, ABI_PCS_GOT_use
),
14757 LOOKUP(18, ABI_PCS_wchar_t
),
14758 LOOKUP(19, ABI_FP_rounding
),
14759 LOOKUP(20, ABI_FP_denormal
),
14760 LOOKUP(21, ABI_FP_exceptions
),
14761 LOOKUP(22, ABI_FP_user_exceptions
),
14762 LOOKUP(23, ABI_FP_number_model
),
14763 {24, "ABI_align_needed", 0, NULL
},
14764 {25, "ABI_align_preserved", 0, NULL
},
14765 LOOKUP(26, ABI_enum_size
),
14766 LOOKUP(27, ABI_HardFP_use
),
14767 LOOKUP(28, ABI_VFP_args
),
14768 LOOKUP(29, ABI_WMMX_args
),
14769 LOOKUP(30, ABI_optimization_goals
),
14770 LOOKUP(31, ABI_FP_optimization_goals
),
14771 {32, "compatibility", 0, NULL
},
14772 LOOKUP(34, CPU_unaligned_access
),
14773 LOOKUP(36, FP_HP_extension
),
14774 LOOKUP(38, ABI_FP_16bit_format
),
14775 LOOKUP(42, MPextension_use
),
14776 LOOKUP(44, DIV_use
),
14777 LOOKUP(46, DSP_extension
),
14778 LOOKUP(48, MVE_arch
),
14779 {64, "nodefaults", 0, NULL
},
14780 {65, "also_compatible_with", 0, NULL
},
14781 LOOKUP(66, T2EE_use
),
14782 {67, "conformance", 1, NULL
},
14783 LOOKUP(68, Virtualization_use
),
14784 LOOKUP(70, MPextension_use_legacy
)
14788 static unsigned char *
14789 display_arm_attribute (unsigned char * p
,
14790 const unsigned char * const end
)
14794 arm_attr_public_tag
* attr
;
14798 READ_ULEB (tag
, p
, end
);
14800 for (i
= 0; i
< ARRAY_SIZE (arm_attr_public_tags
); i
++)
14802 if (arm_attr_public_tags
[i
].tag
== tag
)
14804 attr
= &arm_attr_public_tags
[i
];
14811 printf (" Tag_%s: ", attr
->name
);
14812 switch (attr
->type
)
14817 case 7: /* Tag_CPU_arch_profile. */
14818 READ_ULEB (val
, p
, end
);
14821 case 0: printf (_("None\n")); break;
14822 case 'A': printf (_("Application\n")); break;
14823 case 'R': printf (_("Realtime\n")); break;
14824 case 'M': printf (_("Microcontroller\n")); break;
14825 case 'S': printf (_("Application or Realtime\n")); break;
14826 default: printf ("??? (%d)\n", val
); break;
14830 case 24: /* Tag_align_needed. */
14831 READ_ULEB (val
, p
, end
);
14834 case 0: printf (_("None\n")); break;
14835 case 1: printf (_("8-byte\n")); break;
14836 case 2: printf (_("4-byte\n")); break;
14837 case 3: printf ("??? 3\n"); break;
14840 printf (_("8-byte and up to %d-byte extended\n"),
14843 printf ("??? (%d)\n", val
);
14848 case 25: /* Tag_align_preserved. */
14849 READ_ULEB (val
, p
, end
);
14852 case 0: printf (_("None\n")); break;
14853 case 1: printf (_("8-byte, except leaf SP\n")); break;
14854 case 2: printf (_("8-byte\n")); break;
14855 case 3: printf ("??? 3\n"); break;
14858 printf (_("8-byte and up to %d-byte extended\n"),
14861 printf ("??? (%d)\n", val
);
14866 case 32: /* Tag_compatibility. */
14868 READ_ULEB (val
, p
, end
);
14869 printf (_("flag = %d, vendor = "), val
);
14872 size_t maxlen
= (end
- p
) - 1;
14874 print_symbol ((int) maxlen
, (const char *) p
);
14875 p
+= strnlen ((char *) p
, maxlen
) + 1;
14879 printf (_("<corrupt>"));
14880 p
= (unsigned char *) end
;
14886 case 64: /* Tag_nodefaults. */
14887 /* PR 17531: file: 001-505008-0.01. */
14890 printf (_("True\n"));
14893 case 65: /* Tag_also_compatible_with. */
14894 READ_ULEB (val
, p
, end
);
14895 if (val
== 6 /* Tag_CPU_arch. */)
14897 READ_ULEB (val
, p
, end
);
14898 if ((unsigned int) val
>= ARRAY_SIZE (arm_attr_tag_CPU_arch
))
14899 printf ("??? (%d)\n", val
);
14901 printf ("%s\n", arm_attr_tag_CPU_arch
[val
]);
14905 while (p
< end
&& *(p
++) != '\0' /* NUL terminator. */)
14910 printf (_("<unknown: %d>\n"), tag
);
14916 return display_tag_value (-1, p
, end
);
14918 return display_tag_value (0, p
, end
);
14921 assert (attr
->type
& 0x80);
14922 READ_ULEB (val
, p
, end
);
14923 type
= attr
->type
& 0x7f;
14925 printf ("??? (%d)\n", val
);
14927 printf ("%s\n", attr
->table
[val
]);
14932 return display_tag_value (tag
, p
, end
);
14935 static unsigned char *
14936 display_gnu_attribute (unsigned char * p
,
14937 unsigned char * (* display_proc_gnu_attribute
) (unsigned char *, unsigned int, const unsigned char * const),
14938 const unsigned char * const end
)
14943 READ_ULEB (tag
, p
, end
);
14945 /* Tag_compatibility is the only generic GNU attribute defined at
14949 READ_ULEB (val
, p
, end
);
14951 printf (_("flag = %d, vendor = "), val
);
14954 printf (_("<corrupt>\n"));
14955 warn (_("corrupt vendor attribute\n"));
14961 size_t maxlen
= (end
- p
) - 1;
14963 print_symbol ((int) maxlen
, (const char *) p
);
14964 p
+= strnlen ((char *) p
, maxlen
) + 1;
14968 printf (_("<corrupt>"));
14969 p
= (unsigned char *) end
;
14976 if ((tag
& 2) == 0 && display_proc_gnu_attribute
)
14977 return display_proc_gnu_attribute (p
, tag
, end
);
14979 return display_tag_value (tag
, p
, end
);
14982 static unsigned char *
14983 display_power_gnu_attribute (unsigned char * p
,
14985 const unsigned char * const end
)
14989 if (tag
== Tag_GNU_Power_ABI_FP
)
14991 printf (" Tag_GNU_Power_ABI_FP: ");
14994 printf (_("<corrupt>\n"));
14997 READ_ULEB (val
, p
, end
);
15000 printf ("(%#x), ", val
);
15005 printf (_("unspecified hard/soft float, "));
15008 printf (_("hard float, "));
15011 printf (_("soft float, "));
15014 printf (_("single-precision hard float, "));
15021 printf (_("unspecified long double\n"));
15024 printf (_("128-bit IBM long double\n"));
15027 printf (_("64-bit long double\n"));
15030 printf (_("128-bit IEEE long double\n"));
15036 if (tag
== Tag_GNU_Power_ABI_Vector
)
15038 printf (" Tag_GNU_Power_ABI_Vector: ");
15041 printf (_("<corrupt>\n"));
15044 READ_ULEB (val
, p
, end
);
15047 printf ("(%#x), ", val
);
15052 printf (_("unspecified\n"));
15055 printf (_("generic\n"));
15058 printf ("AltiVec\n");
15067 if (tag
== Tag_GNU_Power_ABI_Struct_Return
)
15069 printf (" Tag_GNU_Power_ABI_Struct_Return: ");
15072 printf (_("<corrupt>\n"));
15075 READ_ULEB (val
, p
, end
);
15078 printf ("(%#x), ", val
);
15083 printf (_("unspecified\n"));
15086 printf ("r3/r4\n");
15089 printf (_("memory\n"));
15098 return display_tag_value (tag
& 1, p
, end
);
15101 static unsigned char *
15102 display_s390_gnu_attribute (unsigned char * p
,
15104 const unsigned char * const end
)
15108 if (tag
== Tag_GNU_S390_ABI_Vector
)
15110 printf (" Tag_GNU_S390_ABI_Vector: ");
15111 READ_ULEB (val
, p
, end
);
15116 printf (_("any\n"));
15119 printf (_("software\n"));
15122 printf (_("hardware\n"));
15125 printf ("??? (%d)\n", val
);
15131 return display_tag_value (tag
& 1, p
, end
);
15135 display_sparc_hwcaps (unsigned int mask
)
15139 bfd_boolean first
= TRUE
;
15141 if (mask
& ELF_SPARC_HWCAP_MUL32
)
15142 fputs ("mul32", stdout
), first
= FALSE
;
15143 if (mask
& ELF_SPARC_HWCAP_DIV32
)
15144 printf ("%sdiv32", first
? "" : "|"), first
= FALSE
;
15145 if (mask
& ELF_SPARC_HWCAP_FSMULD
)
15146 printf ("%sfsmuld", first
? "" : "|"), first
= FALSE
;
15147 if (mask
& ELF_SPARC_HWCAP_V8PLUS
)
15148 printf ("%sv8plus", first
? "" : "|"), first
= FALSE
;
15149 if (mask
& ELF_SPARC_HWCAP_POPC
)
15150 printf ("%spopc", first
? "" : "|"), first
= FALSE
;
15151 if (mask
& ELF_SPARC_HWCAP_VIS
)
15152 printf ("%svis", first
? "" : "|"), first
= FALSE
;
15153 if (mask
& ELF_SPARC_HWCAP_VIS2
)
15154 printf ("%svis2", first
? "" : "|"), first
= FALSE
;
15155 if (mask
& ELF_SPARC_HWCAP_ASI_BLK_INIT
)
15156 printf ("%sASIBlkInit", first
? "" : "|"), first
= FALSE
;
15157 if (mask
& ELF_SPARC_HWCAP_FMAF
)
15158 printf ("%sfmaf", first
? "" : "|"), first
= FALSE
;
15159 if (mask
& ELF_SPARC_HWCAP_VIS3
)
15160 printf ("%svis3", first
? "" : "|"), first
= FALSE
;
15161 if (mask
& ELF_SPARC_HWCAP_HPC
)
15162 printf ("%shpc", first
? "" : "|"), first
= FALSE
;
15163 if (mask
& ELF_SPARC_HWCAP_RANDOM
)
15164 printf ("%srandom", first
? "" : "|"), first
= FALSE
;
15165 if (mask
& ELF_SPARC_HWCAP_TRANS
)
15166 printf ("%strans", first
? "" : "|"), first
= FALSE
;
15167 if (mask
& ELF_SPARC_HWCAP_FJFMAU
)
15168 printf ("%sfjfmau", first
? "" : "|"), first
= FALSE
;
15169 if (mask
& ELF_SPARC_HWCAP_IMA
)
15170 printf ("%sima", first
? "" : "|"), first
= FALSE
;
15171 if (mask
& ELF_SPARC_HWCAP_ASI_CACHE_SPARING
)
15172 printf ("%scspare", first
? "" : "|"), first
= FALSE
;
15175 fputc ('0', stdout
);
15176 fputc ('\n', stdout
);
15180 display_sparc_hwcaps2 (unsigned int mask
)
15184 bfd_boolean first
= TRUE
;
15186 if (mask
& ELF_SPARC_HWCAP2_FJATHPLUS
)
15187 fputs ("fjathplus", stdout
), first
= FALSE
;
15188 if (mask
& ELF_SPARC_HWCAP2_VIS3B
)
15189 printf ("%svis3b", first
? "" : "|"), first
= FALSE
;
15190 if (mask
& ELF_SPARC_HWCAP2_ADP
)
15191 printf ("%sadp", first
? "" : "|"), first
= FALSE
;
15192 if (mask
& ELF_SPARC_HWCAP2_SPARC5
)
15193 printf ("%ssparc5", first
? "" : "|"), first
= FALSE
;
15194 if (mask
& ELF_SPARC_HWCAP2_MWAIT
)
15195 printf ("%smwait", first
? "" : "|"), first
= FALSE
;
15196 if (mask
& ELF_SPARC_HWCAP2_XMPMUL
)
15197 printf ("%sxmpmul", first
? "" : "|"), first
= FALSE
;
15198 if (mask
& ELF_SPARC_HWCAP2_XMONT
)
15199 printf ("%sxmont2", first
? "" : "|"), first
= FALSE
;
15200 if (mask
& ELF_SPARC_HWCAP2_NSEC
)
15201 printf ("%snsec", first
? "" : "|"), first
= FALSE
;
15202 if (mask
& ELF_SPARC_HWCAP2_FJATHHPC
)
15203 printf ("%sfjathhpc", first
? "" : "|"), first
= FALSE
;
15204 if (mask
& ELF_SPARC_HWCAP2_FJDES
)
15205 printf ("%sfjdes", first
? "" : "|"), first
= FALSE
;
15206 if (mask
& ELF_SPARC_HWCAP2_FJAES
)
15207 printf ("%sfjaes", first
? "" : "|"), first
= FALSE
;
15210 fputc ('0', stdout
);
15211 fputc ('\n', stdout
);
15214 static unsigned char *
15215 display_sparc_gnu_attribute (unsigned char * p
,
15217 const unsigned char * const end
)
15221 if (tag
== Tag_GNU_Sparc_HWCAPS
)
15223 READ_ULEB (val
, p
, end
);
15224 printf (" Tag_GNU_Sparc_HWCAPS: ");
15225 display_sparc_hwcaps (val
);
15228 if (tag
== Tag_GNU_Sparc_HWCAPS2
)
15230 READ_ULEB (val
, p
, end
);
15231 printf (" Tag_GNU_Sparc_HWCAPS2: ");
15232 display_sparc_hwcaps2 (val
);
15236 return display_tag_value (tag
, p
, end
);
15240 print_mips_fp_abi_value (unsigned int val
)
15244 case Val_GNU_MIPS_ABI_FP_ANY
:
15245 printf (_("Hard or soft float\n"));
15247 case Val_GNU_MIPS_ABI_FP_DOUBLE
:
15248 printf (_("Hard float (double precision)\n"));
15250 case Val_GNU_MIPS_ABI_FP_SINGLE
:
15251 printf (_("Hard float (single precision)\n"));
15253 case Val_GNU_MIPS_ABI_FP_SOFT
:
15254 printf (_("Soft float\n"));
15256 case Val_GNU_MIPS_ABI_FP_OLD_64
:
15257 printf (_("Hard float (MIPS32r2 64-bit FPU 12 callee-saved)\n"));
15259 case Val_GNU_MIPS_ABI_FP_XX
:
15260 printf (_("Hard float (32-bit CPU, Any FPU)\n"));
15262 case Val_GNU_MIPS_ABI_FP_64
:
15263 printf (_("Hard float (32-bit CPU, 64-bit FPU)\n"));
15265 case Val_GNU_MIPS_ABI_FP_64A
:
15266 printf (_("Hard float compat (32-bit CPU, 64-bit FPU)\n"));
15268 case Val_GNU_MIPS_ABI_FP_NAN2008
:
15269 printf (_("NaN 2008 compatibility\n"));
15272 printf ("??? (%d)\n", val
);
15277 static unsigned char *
15278 display_mips_gnu_attribute (unsigned char * p
,
15280 const unsigned char * const end
)
15282 if (tag
== Tag_GNU_MIPS_ABI_FP
)
15286 printf (" Tag_GNU_MIPS_ABI_FP: ");
15287 READ_ULEB (val
, p
, end
);
15288 print_mips_fp_abi_value (val
);
15292 if (tag
== Tag_GNU_MIPS_ABI_MSA
)
15296 printf (" Tag_GNU_MIPS_ABI_MSA: ");
15297 READ_ULEB (val
, p
, end
);
15301 case Val_GNU_MIPS_ABI_MSA_ANY
:
15302 printf (_("Any MSA or not\n"));
15304 case Val_GNU_MIPS_ABI_MSA_128
:
15305 printf (_("128-bit MSA\n"));
15308 printf ("??? (%d)\n", val
);
15314 return display_tag_value (tag
& 1, p
, end
);
15317 static unsigned char *
15318 display_tic6x_attribute (unsigned char * p
,
15319 const unsigned char * const end
)
15324 READ_ULEB (tag
, p
, end
);
15329 printf (" Tag_ISA: ");
15330 READ_ULEB (val
, p
, end
);
15334 case C6XABI_Tag_ISA_none
:
15335 printf (_("None\n"));
15337 case C6XABI_Tag_ISA_C62X
:
15340 case C6XABI_Tag_ISA_C67X
:
15343 case C6XABI_Tag_ISA_C67XP
:
15344 printf ("C67x+\n");
15346 case C6XABI_Tag_ISA_C64X
:
15349 case C6XABI_Tag_ISA_C64XP
:
15350 printf ("C64x+\n");
15352 case C6XABI_Tag_ISA_C674X
:
15353 printf ("C674x\n");
15356 printf ("??? (%d)\n", val
);
15361 case Tag_ABI_wchar_t
:
15362 printf (" Tag_ABI_wchar_t: ");
15363 READ_ULEB (val
, p
, end
);
15367 printf (_("Not used\n"));
15370 printf (_("2 bytes\n"));
15373 printf (_("4 bytes\n"));
15376 printf ("??? (%d)\n", val
);
15381 case Tag_ABI_stack_align_needed
:
15382 printf (" Tag_ABI_stack_align_needed: ");
15383 READ_ULEB (val
, p
, end
);
15387 printf (_("8-byte\n"));
15390 printf (_("16-byte\n"));
15393 printf ("??? (%d)\n", val
);
15398 case Tag_ABI_stack_align_preserved
:
15399 READ_ULEB (val
, p
, end
);
15400 printf (" Tag_ABI_stack_align_preserved: ");
15404 printf (_("8-byte\n"));
15407 printf (_("16-byte\n"));
15410 printf ("??? (%d)\n", val
);
15416 READ_ULEB (val
, p
, end
);
15417 printf (" Tag_ABI_DSBT: ");
15421 printf (_("DSBT addressing not used\n"));
15424 printf (_("DSBT addressing used\n"));
15427 printf ("??? (%d)\n", val
);
15433 READ_ULEB (val
, p
, end
);
15434 printf (" Tag_ABI_PID: ");
15438 printf (_("Data addressing position-dependent\n"));
15441 printf (_("Data addressing position-independent, GOT near DP\n"));
15444 printf (_("Data addressing position-independent, GOT far from DP\n"));
15447 printf ("??? (%d)\n", val
);
15453 READ_ULEB (val
, p
, end
);
15454 printf (" Tag_ABI_PIC: ");
15458 printf (_("Code addressing position-dependent\n"));
15461 printf (_("Code addressing position-independent\n"));
15464 printf ("??? (%d)\n", val
);
15469 case Tag_ABI_array_object_alignment
:
15470 READ_ULEB (val
, p
, end
);
15471 printf (" Tag_ABI_array_object_alignment: ");
15475 printf (_("8-byte\n"));
15478 printf (_("4-byte\n"));
15481 printf (_("16-byte\n"));
15484 printf ("??? (%d)\n", val
);
15489 case Tag_ABI_array_object_align_expected
:
15490 READ_ULEB (val
, p
, end
);
15491 printf (" Tag_ABI_array_object_align_expected: ");
15495 printf (_("8-byte\n"));
15498 printf (_("4-byte\n"));
15501 printf (_("16-byte\n"));
15504 printf ("??? (%d)\n", val
);
15509 case Tag_ABI_compatibility
:
15511 READ_ULEB (val
, p
, end
);
15512 printf (" Tag_ABI_compatibility: ");
15513 printf (_("flag = %d, vendor = "), val
);
15516 size_t maxlen
= (end
- p
) - 1;
15518 print_symbol ((int) maxlen
, (const char *) p
);
15519 p
+= strnlen ((char *) p
, maxlen
) + 1;
15523 printf (_("<corrupt>"));
15524 p
= (unsigned char *) end
;
15530 case Tag_ABI_conformance
:
15532 printf (" Tag_ABI_conformance: \"");
15535 size_t maxlen
= (end
- p
) - 1;
15537 print_symbol ((int) maxlen
, (const char *) p
);
15538 p
+= strnlen ((char *) p
, maxlen
) + 1;
15542 printf (_("<corrupt>"));
15543 p
= (unsigned char *) end
;
15550 return display_tag_value (tag
, p
, end
);
15554 display_raw_attribute (unsigned char * p
, unsigned char const * const end
)
15556 unsigned long addr
= 0;
15557 size_t bytes
= end
- p
;
15564 int lbytes
= (bytes
> 16 ? 16 : bytes
);
15566 printf (" 0x%8.8lx ", addr
);
15568 for (j
= 0; j
< 16; j
++)
15571 printf ("%2.2x", p
[j
]);
15579 for (j
= 0; j
< lbytes
; j
++)
15582 if (k
>= ' ' && k
< 0x7f)
15598 static unsigned char *
15599 display_msp430x_attribute (unsigned char * p
,
15600 const unsigned char * const end
)
15605 READ_ULEB (tag
, p
, end
);
15609 case OFBA_MSPABI_Tag_ISA
:
15610 printf (" Tag_ISA: ");
15611 READ_ULEB (val
, p
, end
);
15614 case 0: printf (_("None\n")); break;
15615 case 1: printf (_("MSP430\n")); break;
15616 case 2: printf (_("MSP430X\n")); break;
15617 default: printf ("??? (%d)\n", val
); break;
15621 case OFBA_MSPABI_Tag_Code_Model
:
15622 printf (" Tag_Code_Model: ");
15623 READ_ULEB (val
, p
, end
);
15626 case 0: printf (_("None\n")); break;
15627 case 1: printf (_("Small\n")); break;
15628 case 2: printf (_("Large\n")); break;
15629 default: printf ("??? (%d)\n", val
); break;
15633 case OFBA_MSPABI_Tag_Data_Model
:
15634 printf (" Tag_Data_Model: ");
15635 READ_ULEB (val
, p
, end
);
15638 case 0: printf (_("None\n")); break;
15639 case 1: printf (_("Small\n")); break;
15640 case 2: printf (_("Large\n")); break;
15641 case 3: printf (_("Restricted Large\n")); break;
15642 default: printf ("??? (%d)\n", val
); break;
15647 printf (_(" <unknown tag %d>: "), tag
);
15654 size_t maxlen
= (end
- p
) - 1;
15656 print_symbol ((int) maxlen
, (const char *) p
);
15657 p
+= strnlen ((char *) p
, maxlen
) + 1;
15661 printf (_("<corrupt>"));
15662 p
= (unsigned char *) end
;
15668 READ_ULEB (val
, p
, end
);
15669 printf ("%d (0x%x)\n", val
, val
);
15678 static unsigned char *
15679 display_msp430_gnu_attribute (unsigned char * p
,
15681 const unsigned char * const end
)
15683 if (tag
== Tag_GNU_MSP430_Data_Region
)
15687 printf (" Tag_GNU_MSP430_Data_Region: ");
15688 READ_ULEB (val
, p
, end
);
15692 case Val_GNU_MSP430_Data_Region_Any
:
15693 printf (_("Any Region\n"));
15695 case Val_GNU_MSP430_Data_Region_Lower
:
15696 printf (_("Lower Region Only\n"));
15699 printf ("??? (%u)\n", val
);
15703 return display_tag_value (tag
& 1, p
, end
);
15706 struct riscv_attr_tag_t
{
15711 static struct riscv_attr_tag_t riscv_attr_tag
[] =
15713 #define T(tag) {"Tag_RISCV_" #tag, Tag_RISCV_##tag}
15716 T(priv_spec_minor
),
15717 T(priv_spec_revision
),
15718 T(unaligned_access
),
15723 static unsigned char *
15724 display_riscv_attribute (unsigned char *p
,
15725 const unsigned char * const end
)
15729 struct riscv_attr_tag_t
*attr
= NULL
;
15732 READ_ULEB (tag
, p
, end
);
15734 /* Find the name of attribute. */
15735 for (i
= 0; i
< ARRAY_SIZE (riscv_attr_tag
); i
++)
15737 if (riscv_attr_tag
[i
].tag
== tag
)
15739 attr
= &riscv_attr_tag
[i
];
15745 printf (" %s: ", attr
->name
);
15747 return display_tag_value (tag
, p
, end
);
15751 case Tag_RISCV_priv_spec
:
15752 case Tag_RISCV_priv_spec_minor
:
15753 case Tag_RISCV_priv_spec_revision
:
15754 READ_ULEB (val
, p
, end
);
15755 printf (_("%u\n"), val
);
15757 case Tag_RISCV_unaligned_access
:
15758 READ_ULEB (val
, p
, end
);
15762 printf (_("No unaligned access\n"));
15765 printf (_("Unaligned access\n"));
15769 case Tag_RISCV_stack_align
:
15770 READ_ULEB (val
, p
, end
);
15771 printf (_("%u-bytes\n"), val
);
15773 case Tag_RISCV_arch
:
15774 p
= display_tag_value (-1, p
, end
);
15777 return display_tag_value (tag
, p
, end
);
15784 process_attributes (Filedata
* filedata
,
15785 const char * public_name
,
15786 unsigned int proc_type
,
15787 unsigned char * (* display_pub_attribute
) (unsigned char *, const unsigned char * const),
15788 unsigned char * (* display_proc_gnu_attribute
) (unsigned char *, unsigned int, const unsigned char * const))
15790 Elf_Internal_Shdr
* sect
;
15792 bfd_boolean res
= TRUE
;
15794 /* Find the section header so that we get the size. */
15795 for (i
= 0, sect
= filedata
->section_headers
;
15796 i
< filedata
->file_header
.e_shnum
;
15799 unsigned char * contents
;
15802 if (sect
->sh_type
!= proc_type
&& sect
->sh_type
!= SHT_GNU_ATTRIBUTES
)
15805 contents
= (unsigned char *) get_data (NULL
, filedata
, sect
->sh_offset
, 1,
15806 sect
->sh_size
, _("attributes"));
15807 if (contents
== NULL
)
15814 /* The first character is the version of the attributes.
15815 Currently only version 1, (aka 'A') is recognised here. */
15818 printf (_("Unknown attributes version '%c'(%d) - expecting 'A'\n"), *p
, *p
);
15823 bfd_vma section_len
;
15825 section_len
= sect
->sh_size
- 1;
15828 while (section_len
> 0)
15831 unsigned int namelen
;
15832 bfd_boolean public_section
;
15833 bfd_boolean gnu_section
;
15835 if (section_len
<= 4)
15837 error (_("Tag section ends prematurely\n"));
15841 attr_len
= byte_get (p
, 4);
15844 if (attr_len
> section_len
)
15846 error (_("Bad attribute length (%u > %u)\n"),
15847 (unsigned) attr_len
, (unsigned) section_len
);
15848 attr_len
= section_len
;
15851 /* PR 17531: file: 001-101425-0.004 */
15852 else if (attr_len
< 5)
15854 error (_("Attribute length of %u is too small\n"), (unsigned) attr_len
);
15859 section_len
-= attr_len
;
15862 namelen
= strnlen ((char *) p
, attr_len
) + 1;
15863 if (namelen
== 0 || namelen
>= attr_len
)
15865 error (_("Corrupt attribute section name\n"));
15870 printf (_("Attribute Section: "));
15871 print_symbol (INT_MAX
, (const char *) p
);
15874 if (public_name
&& streq ((char *) p
, public_name
))
15875 public_section
= TRUE
;
15877 public_section
= FALSE
;
15879 if (streq ((char *) p
, "gnu"))
15880 gnu_section
= TRUE
;
15882 gnu_section
= FALSE
;
15885 attr_len
-= namelen
;
15887 while (attr_len
> 0 && p
< contents
+ sect
->sh_size
)
15892 unsigned char * end
;
15894 /* PR binutils/17531: Safe handling of corrupt files. */
15897 error (_("Unused bytes at end of section\n"));
15904 size
= byte_get (p
, 4);
15905 if (size
> attr_len
)
15907 error (_("Bad subsection length (%u > %u)\n"),
15908 (unsigned) size
, (unsigned) attr_len
);
15912 /* PR binutils/17531: Safe handling of corrupt files. */
15915 error (_("Bad subsection length (%u < 6)\n"),
15923 end
= p
+ size
- 1;
15924 assert (end
<= contents
+ sect
->sh_size
);
15930 printf (_("File Attributes\n"));
15933 printf (_("Section Attributes:"));
15936 printf (_("Symbol Attributes:"));
15937 /* Fall through. */
15941 READ_ULEB (val
, p
, end
);
15944 printf (" %d", val
);
15949 printf (_("Unknown tag: %d\n"), tag
);
15950 public_section
= FALSE
;
15954 if (public_section
&& display_pub_attribute
!= NULL
)
15957 p
= display_pub_attribute (p
, end
);
15960 else if (gnu_section
&& display_proc_gnu_attribute
!= NULL
)
15963 p
= display_gnu_attribute (p
,
15964 display_proc_gnu_attribute
,
15970 printf (_(" Unknown attribute:\n"));
15971 display_raw_attribute (p
, end
);
15986 /* DATA points to the contents of a MIPS GOT that starts at VMA PLTGOT.
15987 Print the Address, Access and Initial fields of an entry at VMA ADDR
15988 and return the VMA of the next entry, or -1 if there was a problem.
15989 Does not read from DATA_END or beyond. */
15992 print_mips_got_entry (unsigned char * data
, bfd_vma pltgot
, bfd_vma addr
,
15993 unsigned char * data_end
)
15996 print_vma (addr
, LONG_HEX
);
15998 if (addr
< pltgot
+ 0xfff0)
15999 printf ("%6d(gp)", (int) (addr
- pltgot
- 0x7ff0));
16001 printf ("%10s", "");
16004 printf ("%*s", is_32bit_elf
? 8 : 16, _("<unknown>"));
16008 unsigned char * from
= data
+ addr
- pltgot
;
16010 if (from
+ (is_32bit_elf
? 4 : 8) > data_end
)
16012 warn (_("MIPS GOT entry extends beyond the end of available data\n"));
16013 printf ("%*s", is_32bit_elf
? 8 : 16, _("<corrupt>"));
16014 return (bfd_vma
) -1;
16018 entry
= byte_get (data
+ addr
- pltgot
, is_32bit_elf
? 4 : 8);
16019 print_vma (entry
, LONG_HEX
);
16022 return addr
+ (is_32bit_elf
? 4 : 8);
16025 /* DATA points to the contents of a MIPS PLT GOT that starts at VMA
16026 PLTGOT. Print the Address and Initial fields of an entry at VMA
16027 ADDR and return the VMA of the next entry. */
16030 print_mips_pltgot_entry (unsigned char * data
, bfd_vma pltgot
, bfd_vma addr
)
16033 print_vma (addr
, LONG_HEX
);
16036 printf ("%*s", is_32bit_elf
? 8 : 16, _("<unknown>"));
16041 entry
= byte_get (data
+ addr
- pltgot
, is_32bit_elf
? 4 : 8);
16042 print_vma (entry
, LONG_HEX
);
16044 return addr
+ (is_32bit_elf
? 4 : 8);
16048 print_mips_ases (unsigned int mask
)
16050 if (mask
& AFL_ASE_DSP
)
16051 fputs ("\n\tDSP ASE", stdout
);
16052 if (mask
& AFL_ASE_DSPR2
)
16053 fputs ("\n\tDSP R2 ASE", stdout
);
16054 if (mask
& AFL_ASE_DSPR3
)
16055 fputs ("\n\tDSP R3 ASE", stdout
);
16056 if (mask
& AFL_ASE_EVA
)
16057 fputs ("\n\tEnhanced VA Scheme", stdout
);
16058 if (mask
& AFL_ASE_MCU
)
16059 fputs ("\n\tMCU (MicroController) ASE", stdout
);
16060 if (mask
& AFL_ASE_MDMX
)
16061 fputs ("\n\tMDMX ASE", stdout
);
16062 if (mask
& AFL_ASE_MIPS3D
)
16063 fputs ("\n\tMIPS-3D ASE", stdout
);
16064 if (mask
& AFL_ASE_MT
)
16065 fputs ("\n\tMT ASE", stdout
);
16066 if (mask
& AFL_ASE_SMARTMIPS
)
16067 fputs ("\n\tSmartMIPS ASE", stdout
);
16068 if (mask
& AFL_ASE_VIRT
)
16069 fputs ("\n\tVZ ASE", stdout
);
16070 if (mask
& AFL_ASE_MSA
)
16071 fputs ("\n\tMSA ASE", stdout
);
16072 if (mask
& AFL_ASE_MIPS16
)
16073 fputs ("\n\tMIPS16 ASE", stdout
);
16074 if (mask
& AFL_ASE_MICROMIPS
)
16075 fputs ("\n\tMICROMIPS ASE", stdout
);
16076 if (mask
& AFL_ASE_XPA
)
16077 fputs ("\n\tXPA ASE", stdout
);
16078 if (mask
& AFL_ASE_MIPS16E2
)
16079 fputs ("\n\tMIPS16e2 ASE", stdout
);
16080 if (mask
& AFL_ASE_CRC
)
16081 fputs ("\n\tCRC ASE", stdout
);
16082 if (mask
& AFL_ASE_GINV
)
16083 fputs ("\n\tGINV ASE", stdout
);
16084 if (mask
& AFL_ASE_LOONGSON_MMI
)
16085 fputs ("\n\tLoongson MMI ASE", stdout
);
16086 if (mask
& AFL_ASE_LOONGSON_CAM
)
16087 fputs ("\n\tLoongson CAM ASE", stdout
);
16088 if (mask
& AFL_ASE_LOONGSON_EXT
)
16089 fputs ("\n\tLoongson EXT ASE", stdout
);
16090 if (mask
& AFL_ASE_LOONGSON_EXT2
)
16091 fputs ("\n\tLoongson EXT2 ASE", stdout
);
16093 fprintf (stdout
, "\n\t%s", _("None"));
16094 else if ((mask
& ~AFL_ASE_MASK
) != 0)
16095 fprintf (stdout
, "\n\t%s (%x)", _("Unknown"), mask
& ~AFL_ASE_MASK
);
16099 print_mips_isa_ext (unsigned int isa_ext
)
16104 fputs (_("None"), stdout
);
16107 fputs ("RMI XLR", stdout
);
16109 case AFL_EXT_OCTEON3
:
16110 fputs ("Cavium Networks Octeon3", stdout
);
16112 case AFL_EXT_OCTEON2
:
16113 fputs ("Cavium Networks Octeon2", stdout
);
16115 case AFL_EXT_OCTEONP
:
16116 fputs ("Cavium Networks OcteonP", stdout
);
16118 case AFL_EXT_OCTEON
:
16119 fputs ("Cavium Networks Octeon", stdout
);
16122 fputs ("Toshiba R5900", stdout
);
16125 fputs ("MIPS R4650", stdout
);
16128 fputs ("LSI R4010", stdout
);
16131 fputs ("NEC VR4100", stdout
);
16134 fputs ("Toshiba R3900", stdout
);
16136 case AFL_EXT_10000
:
16137 fputs ("MIPS R10000", stdout
);
16140 fputs ("Broadcom SB-1", stdout
);
16143 fputs ("NEC VR4111/VR4181", stdout
);
16146 fputs ("NEC VR4120", stdout
);
16149 fputs ("NEC VR5400", stdout
);
16152 fputs ("NEC VR5500", stdout
);
16154 case AFL_EXT_LOONGSON_2E
:
16155 fputs ("ST Microelectronics Loongson 2E", stdout
);
16157 case AFL_EXT_LOONGSON_2F
:
16158 fputs ("ST Microelectronics Loongson 2F", stdout
);
16160 case AFL_EXT_INTERAPTIV_MR2
:
16161 fputs ("Imagination interAptiv MR2", stdout
);
16164 fprintf (stdout
, "%s (%d)", _("Unknown"), isa_ext
);
16169 get_mips_reg_size (int reg_size
)
16171 return (reg_size
== AFL_REG_NONE
) ? 0
16172 : (reg_size
== AFL_REG_32
) ? 32
16173 : (reg_size
== AFL_REG_64
) ? 64
16174 : (reg_size
== AFL_REG_128
) ? 128
16179 process_mips_specific (Filedata
* filedata
)
16181 Elf_Internal_Dyn
* entry
;
16182 Elf_Internal_Shdr
*sect
= NULL
;
16183 size_t liblist_offset
= 0;
16184 size_t liblistno
= 0;
16185 size_t conflictsno
= 0;
16186 size_t options_offset
= 0;
16187 size_t conflicts_offset
= 0;
16188 size_t pltrelsz
= 0;
16190 bfd_vma pltgot
= 0;
16191 bfd_vma mips_pltgot
= 0;
16192 bfd_vma jmprel
= 0;
16193 bfd_vma local_gotno
= 0;
16194 bfd_vma gotsym
= 0;
16195 bfd_vma symtabno
= 0;
16196 bfd_boolean res
= TRUE
;
16198 if (! process_attributes (filedata
, NULL
, SHT_GNU_ATTRIBUTES
, NULL
,
16199 display_mips_gnu_attribute
))
16202 sect
= find_section (filedata
, ".MIPS.abiflags");
16206 Elf_External_ABIFlags_v0
*abiflags_ext
;
16207 Elf_Internal_ABIFlags_v0 abiflags_in
;
16209 if (sizeof (Elf_External_ABIFlags_v0
) != sect
->sh_size
)
16211 error (_("Corrupt MIPS ABI Flags section.\n"));
16216 abiflags_ext
= get_data (NULL
, filedata
, sect
->sh_offset
, 1,
16217 sect
->sh_size
, _("MIPS ABI Flags section"));
16220 abiflags_in
.version
= BYTE_GET (abiflags_ext
->version
);
16221 abiflags_in
.isa_level
= BYTE_GET (abiflags_ext
->isa_level
);
16222 abiflags_in
.isa_rev
= BYTE_GET (abiflags_ext
->isa_rev
);
16223 abiflags_in
.gpr_size
= BYTE_GET (abiflags_ext
->gpr_size
);
16224 abiflags_in
.cpr1_size
= BYTE_GET (abiflags_ext
->cpr1_size
);
16225 abiflags_in
.cpr2_size
= BYTE_GET (abiflags_ext
->cpr2_size
);
16226 abiflags_in
.fp_abi
= BYTE_GET (abiflags_ext
->fp_abi
);
16227 abiflags_in
.isa_ext
= BYTE_GET (abiflags_ext
->isa_ext
);
16228 abiflags_in
.ases
= BYTE_GET (abiflags_ext
->ases
);
16229 abiflags_in
.flags1
= BYTE_GET (abiflags_ext
->flags1
);
16230 abiflags_in
.flags2
= BYTE_GET (abiflags_ext
->flags2
);
16232 printf ("\nMIPS ABI Flags Version: %d\n", abiflags_in
.version
);
16233 printf ("\nISA: MIPS%d", abiflags_in
.isa_level
);
16234 if (abiflags_in
.isa_rev
> 1)
16235 printf ("r%d", abiflags_in
.isa_rev
);
16236 printf ("\nGPR size: %d",
16237 get_mips_reg_size (abiflags_in
.gpr_size
));
16238 printf ("\nCPR1 size: %d",
16239 get_mips_reg_size (abiflags_in
.cpr1_size
));
16240 printf ("\nCPR2 size: %d",
16241 get_mips_reg_size (abiflags_in
.cpr2_size
));
16242 fputs ("\nFP ABI: ", stdout
);
16243 print_mips_fp_abi_value (abiflags_in
.fp_abi
);
16244 fputs ("ISA Extension: ", stdout
);
16245 print_mips_isa_ext (abiflags_in
.isa_ext
);
16246 fputs ("\nASEs:", stdout
);
16247 print_mips_ases (abiflags_in
.ases
);
16248 printf ("\nFLAGS 1: %8.8lx", abiflags_in
.flags1
);
16249 printf ("\nFLAGS 2: %8.8lx", abiflags_in
.flags2
);
16250 fputc ('\n', stdout
);
16251 free (abiflags_ext
);
16256 /* We have a lot of special sections. Thanks SGI! */
16257 if (dynamic_section
== NULL
)
16259 /* No dynamic information available. See if there is static GOT. */
16260 sect
= find_section (filedata
, ".got");
16263 unsigned char *data_end
;
16264 unsigned char *data
;
16268 pltgot
= sect
->sh_addr
;
16271 addr_size
= (is_32bit_elf
? 4 : 8);
16272 end
= pltgot
+ sect
->sh_size
;
16274 data
= (unsigned char *) get_data (NULL
, filedata
, sect
->sh_offset
,
16276 _("Global Offset Table data"));
16277 /* PR 12855: Null data is handled gracefully throughout. */
16278 data_end
= data
+ (end
- pltgot
);
16280 printf (_("\nStatic GOT:\n"));
16281 printf (_(" Canonical gp value: "));
16282 print_vma (ent
+ 0x7ff0, LONG_HEX
);
16285 /* In a dynamic binary GOT[0] is reserved for the dynamic
16286 loader to store the lazy resolver pointer, however in
16287 a static binary it may well have been omitted and GOT
16288 reduced to a table of addresses.
16289 PR 21344: Check for the entry being fully available
16290 before fetching it. */
16292 && data
+ ent
- pltgot
+ addr_size
<= data_end
16293 && byte_get (data
+ ent
- pltgot
, addr_size
) == 0)
16295 printf (_(" Reserved entries:\n"));
16296 printf (_(" %*s %10s %*s\n"),
16297 addr_size
* 2, _("Address"), _("Access"),
16298 addr_size
* 2, _("Value"));
16299 ent
= print_mips_got_entry (data
, pltgot
, ent
, data_end
);
16301 if (ent
== (bfd_vma
) -1)
16302 goto sgot_print_fail
;
16304 /* Check for the MSB of GOT[1] being set, identifying a
16305 GNU object. This entry will be used by some runtime
16306 loaders, to store the module pointer. Otherwise this
16307 is an ordinary local entry.
16308 PR 21344: Check for the entry being fully available
16309 before fetching it. */
16311 && data
+ ent
- pltgot
+ addr_size
<= data_end
16312 && (byte_get (data
+ ent
- pltgot
, addr_size
)
16313 >> (addr_size
* 8 - 1)) != 0)
16315 ent
= print_mips_got_entry (data
, pltgot
, ent
, data_end
);
16317 if (ent
== (bfd_vma
) -1)
16318 goto sgot_print_fail
;
16323 if (data
!= NULL
&& ent
< end
)
16325 printf (_(" Local entries:\n"));
16326 printf (" %*s %10s %*s\n",
16327 addr_size
* 2, _("Address"), _("Access"),
16328 addr_size
* 2, _("Value"));
16331 ent
= print_mips_got_entry (data
, pltgot
, ent
, data_end
);
16333 if (ent
== (bfd_vma
) -1)
16334 goto sgot_print_fail
;
16346 for (entry
= dynamic_section
;
16347 /* PR 17531 file: 012-50589-0.004. */
16348 entry
< dynamic_section
+ dynamic_nent
&& entry
->d_tag
!= DT_NULL
;
16350 switch (entry
->d_tag
)
16352 case DT_MIPS_LIBLIST
:
16354 = offset_from_vma (filedata
, entry
->d_un
.d_val
,
16355 liblistno
* sizeof (Elf32_External_Lib
));
16357 case DT_MIPS_LIBLISTNO
:
16358 liblistno
= entry
->d_un
.d_val
;
16360 case DT_MIPS_OPTIONS
:
16361 options_offset
= offset_from_vma (filedata
, entry
->d_un
.d_val
, 0);
16363 case DT_MIPS_CONFLICT
:
16365 = offset_from_vma (filedata
, entry
->d_un
.d_val
,
16366 conflictsno
* sizeof (Elf32_External_Conflict
));
16368 case DT_MIPS_CONFLICTNO
:
16369 conflictsno
= entry
->d_un
.d_val
;
16372 pltgot
= entry
->d_un
.d_ptr
;
16374 case DT_MIPS_LOCAL_GOTNO
:
16375 local_gotno
= entry
->d_un
.d_val
;
16377 case DT_MIPS_GOTSYM
:
16378 gotsym
= entry
->d_un
.d_val
;
16380 case DT_MIPS_SYMTABNO
:
16381 symtabno
= entry
->d_un
.d_val
;
16383 case DT_MIPS_PLTGOT
:
16384 mips_pltgot
= entry
->d_un
.d_ptr
;
16387 pltrel
= entry
->d_un
.d_val
;
16390 pltrelsz
= entry
->d_un
.d_val
;
16393 jmprel
= entry
->d_un
.d_ptr
;
16399 if (liblist_offset
!= 0 && liblistno
!= 0 && do_dynamic
)
16401 Elf32_External_Lib
* elib
;
16404 elib
= (Elf32_External_Lib
*) get_data (NULL
, filedata
, liblist_offset
,
16406 sizeof (Elf32_External_Lib
),
16407 _("liblist section data"));
16410 printf (ngettext ("\nSection '.liblist' contains %lu entry:\n",
16411 "\nSection '.liblist' contains %lu entries:\n",
16412 (unsigned long) liblistno
),
16413 (unsigned long) liblistno
);
16414 fputs (_(" Library Time Stamp Checksum Version Flags\n"),
16417 for (cnt
= 0; cnt
< liblistno
; ++cnt
)
16424 liblist
.l_name
= BYTE_GET (elib
[cnt
].l_name
);
16425 atime
= BYTE_GET (elib
[cnt
].l_time_stamp
);
16426 liblist
.l_checksum
= BYTE_GET (elib
[cnt
].l_checksum
);
16427 liblist
.l_version
= BYTE_GET (elib
[cnt
].l_version
);
16428 liblist
.l_flags
= BYTE_GET (elib
[cnt
].l_flags
);
16430 tmp
= gmtime (&atime
);
16431 snprintf (timebuf
, sizeof (timebuf
),
16432 "%04u-%02u-%02uT%02u:%02u:%02u",
16433 tmp
->tm_year
+ 1900, tmp
->tm_mon
+ 1, tmp
->tm_mday
,
16434 tmp
->tm_hour
, tmp
->tm_min
, tmp
->tm_sec
);
16436 printf ("%3lu: ", (unsigned long) cnt
);
16437 if (VALID_DYNAMIC_NAME (liblist
.l_name
))
16438 print_symbol (20, GET_DYNAMIC_NAME (liblist
.l_name
));
16440 printf (_("<corrupt: %9ld>"), liblist
.l_name
);
16441 printf (" %s %#10lx %-7ld", timebuf
, liblist
.l_checksum
,
16442 liblist
.l_version
);
16444 if (liblist
.l_flags
== 0)
16448 static const struct
16455 { " EXACT_MATCH", LL_EXACT_MATCH
},
16456 { " IGNORE_INT_VER", LL_IGNORE_INT_VER
},
16457 { " REQUIRE_MINOR", LL_REQUIRE_MINOR
},
16458 { " EXPORTS", LL_EXPORTS
},
16459 { " DELAY_LOAD", LL_DELAY_LOAD
},
16460 { " DELTA", LL_DELTA
}
16462 int flags
= liblist
.l_flags
;
16465 for (fcnt
= 0; fcnt
< ARRAY_SIZE (l_flags_vals
); ++fcnt
)
16466 if ((flags
& l_flags_vals
[fcnt
].bit
) != 0)
16468 fputs (l_flags_vals
[fcnt
].name
, stdout
);
16469 flags
^= l_flags_vals
[fcnt
].bit
;
16472 printf (" %#x", (unsigned int) flags
);
16484 if (options_offset
!= 0)
16486 Elf_External_Options
* eopt
;
16489 sect
= filedata
->section_headers
;
16491 /* Find the section header so that we get the size. */
16492 sect
= find_section_by_type (filedata
, SHT_MIPS_OPTIONS
);
16493 /* PR 17533 file: 012-277276-0.004. */
16496 error (_("No MIPS_OPTIONS header found\n"));
16500 if (sect
->sh_size
< sizeof (* eopt
))
16502 error (_("The MIPS options section is too small.\n"));
16506 eopt
= (Elf_External_Options
*) get_data (NULL
, filedata
, options_offset
, 1,
16507 sect
->sh_size
, _("options"));
16510 Elf_Internal_Options
* iopt
;
16511 Elf_Internal_Options
* option
;
16512 Elf_Internal_Options
* iopt_end
;
16514 iopt
= (Elf_Internal_Options
*)
16515 cmalloc ((sect
->sh_size
/ sizeof (eopt
)), sizeof (* iopt
));
16518 error (_("Out of memory allocating space for MIPS options\n"));
16524 iopt_end
= iopt
+ (sect
->sh_size
/ sizeof (eopt
));
16526 while (offset
<= sect
->sh_size
- sizeof (* eopt
))
16528 Elf_External_Options
* eoption
;
16530 eoption
= (Elf_External_Options
*) ((char *) eopt
+ offset
);
16532 option
->kind
= BYTE_GET (eoption
->kind
);
16533 option
->size
= BYTE_GET (eoption
->size
);
16534 option
->section
= BYTE_GET (eoption
->section
);
16535 option
->info
= BYTE_GET (eoption
->info
);
16537 /* PR 17531: file: ffa0fa3b. */
16538 if (option
->size
< sizeof (* eopt
)
16539 || offset
+ option
->size
> sect
->sh_size
)
16541 error (_("Invalid size (%u) for MIPS option\n"), option
->size
);
16544 offset
+= option
->size
;
16550 printf (ngettext ("\nSection '%s' contains %d entry:\n",
16551 "\nSection '%s' contains %d entries:\n",
16553 printable_section_name (filedata
, sect
), cnt
);
16562 switch (option
->kind
)
16565 /* This shouldn't happen. */
16566 printf (" NULL %d %lx", option
->section
, option
->info
);
16570 printf (" REGINFO ");
16571 if (filedata
->file_header
.e_machine
== EM_MIPS
)
16573 Elf32_External_RegInfo
* ereg
;
16574 Elf32_RegInfo reginfo
;
16577 if (option
+ 2 > iopt_end
)
16579 printf (_("<corrupt>\n"));
16580 error (_("Truncated MIPS REGINFO option\n"));
16585 ereg
= (Elf32_External_RegInfo
*) (option
+ 1);
16587 reginfo
.ri_gprmask
= BYTE_GET (ereg
->ri_gprmask
);
16588 reginfo
.ri_cprmask
[0] = BYTE_GET (ereg
->ri_cprmask
[0]);
16589 reginfo
.ri_cprmask
[1] = BYTE_GET (ereg
->ri_cprmask
[1]);
16590 reginfo
.ri_cprmask
[2] = BYTE_GET (ereg
->ri_cprmask
[2]);
16591 reginfo
.ri_cprmask
[3] = BYTE_GET (ereg
->ri_cprmask
[3]);
16592 reginfo
.ri_gp_value
= BYTE_GET (ereg
->ri_gp_value
);
16594 printf ("GPR %08lx GP 0x%lx\n",
16595 reginfo
.ri_gprmask
,
16596 (unsigned long) reginfo
.ri_gp_value
);
16597 printf (" CPR0 %08lx CPR1 %08lx CPR2 %08lx CPR3 %08lx\n",
16598 reginfo
.ri_cprmask
[0], reginfo
.ri_cprmask
[1],
16599 reginfo
.ri_cprmask
[2], reginfo
.ri_cprmask
[3]);
16604 Elf64_External_RegInfo
* ereg
;
16605 Elf64_Internal_RegInfo reginfo
;
16607 if (option
+ 2 > iopt_end
)
16609 printf (_("<corrupt>\n"));
16610 error (_("Truncated MIPS REGINFO option\n"));
16615 ereg
= (Elf64_External_RegInfo
*) (option
+ 1);
16616 reginfo
.ri_gprmask
= BYTE_GET (ereg
->ri_gprmask
);
16617 reginfo
.ri_cprmask
[0] = BYTE_GET (ereg
->ri_cprmask
[0]);
16618 reginfo
.ri_cprmask
[1] = BYTE_GET (ereg
->ri_cprmask
[1]);
16619 reginfo
.ri_cprmask
[2] = BYTE_GET (ereg
->ri_cprmask
[2]);
16620 reginfo
.ri_cprmask
[3] = BYTE_GET (ereg
->ri_cprmask
[3]);
16621 reginfo
.ri_gp_value
= BYTE_GET (ereg
->ri_gp_value
);
16623 printf ("GPR %08lx GP 0x",
16624 reginfo
.ri_gprmask
);
16625 printf_vma (reginfo
.ri_gp_value
);
16628 printf (" CPR0 %08lx CPR1 %08lx CPR2 %08lx CPR3 %08lx\n",
16629 reginfo
.ri_cprmask
[0], reginfo
.ri_cprmask
[1],
16630 reginfo
.ri_cprmask
[2], reginfo
.ri_cprmask
[3]);
16635 case ODK_EXCEPTIONS
:
16636 fputs (" EXCEPTIONS fpe_min(", stdout
);
16637 process_mips_fpe_exception (option
->info
& OEX_FPU_MIN
);
16638 fputs (") fpe_max(", stdout
);
16639 process_mips_fpe_exception ((option
->info
& OEX_FPU_MAX
) >> 8);
16640 fputs (")", stdout
);
16642 if (option
->info
& OEX_PAGE0
)
16643 fputs (" PAGE0", stdout
);
16644 if (option
->info
& OEX_SMM
)
16645 fputs (" SMM", stdout
);
16646 if (option
->info
& OEX_FPDBUG
)
16647 fputs (" FPDBUG", stdout
);
16648 if (option
->info
& OEX_DISMISS
)
16649 fputs (" DISMISS", stdout
);
16653 fputs (" PAD ", stdout
);
16654 if (option
->info
& OPAD_PREFIX
)
16655 fputs (" PREFIX", stdout
);
16656 if (option
->info
& OPAD_POSTFIX
)
16657 fputs (" POSTFIX", stdout
);
16658 if (option
->info
& OPAD_SYMBOL
)
16659 fputs (" SYMBOL", stdout
);
16663 fputs (" HWPATCH ", stdout
);
16664 if (option
->info
& OHW_R4KEOP
)
16665 fputs (" R4KEOP", stdout
);
16666 if (option
->info
& OHW_R8KPFETCH
)
16667 fputs (" R8KPFETCH", stdout
);
16668 if (option
->info
& OHW_R5KEOP
)
16669 fputs (" R5KEOP", stdout
);
16670 if (option
->info
& OHW_R5KCVTL
)
16671 fputs (" R5KCVTL", stdout
);
16675 fputs (" FILL ", stdout
);
16676 /* XXX Print content of info word? */
16680 fputs (" TAGS ", stdout
);
16681 /* XXX Print content of info word? */
16685 fputs (" HWAND ", stdout
);
16686 if (option
->info
& OHWA0_R4KEOP_CHECKED
)
16687 fputs (" R4KEOP_CHECKED", stdout
);
16688 if (option
->info
& OHWA0_R4KEOP_CLEAN
)
16689 fputs (" R4KEOP_CLEAN", stdout
);
16693 fputs (" HWOR ", stdout
);
16694 if (option
->info
& OHWA0_R4KEOP_CHECKED
)
16695 fputs (" R4KEOP_CHECKED", stdout
);
16696 if (option
->info
& OHWA0_R4KEOP_CLEAN
)
16697 fputs (" R4KEOP_CLEAN", stdout
);
16701 printf (" GP_GROUP %#06lx self-contained %#06lx",
16702 option
->info
& OGP_GROUP
,
16703 (option
->info
& OGP_SELF
) >> 16);
16707 printf (" IDENT %#06lx self-contained %#06lx",
16708 option
->info
& OGP_GROUP
,
16709 (option
->info
& OGP_SELF
) >> 16);
16713 /* This shouldn't happen. */
16714 printf (" %3d ??? %d %lx",
16715 option
->kind
, option
->section
, option
->info
);
16719 len
= sizeof (* eopt
);
16720 while (len
< option
->size
)
16722 unsigned char datum
= * ((unsigned char *) eopt
+ offset
+ len
);
16724 if (ISPRINT (datum
))
16725 printf ("%c", datum
);
16727 printf ("\\%03o", datum
);
16730 fputs ("\n", stdout
);
16732 offset
+= option
->size
;
16742 if (conflicts_offset
!= 0 && conflictsno
!= 0)
16744 Elf32_Conflict
* iconf
;
16747 if (dynamic_symbols
== NULL
)
16749 error (_("conflict list found without a dynamic symbol table\n"));
16753 /* PR 21345 - print a slightly more helpful error message
16754 if we are sure that the cmalloc will fail. */
16755 if (conflictsno
* sizeof (* iconf
) > filedata
->file_size
)
16757 error (_("Overlarge number of conflicts detected: %lx\n"),
16758 (long) conflictsno
);
16762 iconf
= (Elf32_Conflict
*) cmalloc (conflictsno
, sizeof (* iconf
));
16765 error (_("Out of memory allocating space for dynamic conflicts\n"));
16771 Elf32_External_Conflict
* econf32
;
16773 econf32
= (Elf32_External_Conflict
*)
16774 get_data (NULL
, filedata
, conflicts_offset
, conflictsno
,
16775 sizeof (* econf32
), _("conflict"));
16779 for (cnt
= 0; cnt
< conflictsno
; ++cnt
)
16780 iconf
[cnt
] = BYTE_GET (econf32
[cnt
]);
16786 Elf64_External_Conflict
* econf64
;
16788 econf64
= (Elf64_External_Conflict
*)
16789 get_data (NULL
, filedata
, conflicts_offset
, conflictsno
,
16790 sizeof (* econf64
), _("conflict"));
16794 for (cnt
= 0; cnt
< conflictsno
; ++cnt
)
16795 iconf
[cnt
] = BYTE_GET (econf64
[cnt
]);
16800 printf (ngettext ("\nSection '.conflict' contains %lu entry:\n",
16801 "\nSection '.conflict' contains %lu entries:\n",
16802 (unsigned long) conflictsno
),
16803 (unsigned long) conflictsno
);
16804 puts (_(" Num: Index Value Name"));
16806 for (cnt
= 0; cnt
< conflictsno
; ++cnt
)
16808 printf ("%5lu: %8lu ", (unsigned long) cnt
, iconf
[cnt
]);
16810 if (iconf
[cnt
] >= num_dynamic_syms
)
16811 printf (_("<corrupt symbol index>"));
16814 Elf_Internal_Sym
* psym
;
16816 psym
= & dynamic_symbols
[iconf
[cnt
]];
16817 print_vma (psym
->st_value
, FULL_HEX
);
16819 if (VALID_DYNAMIC_NAME (psym
->st_name
))
16820 print_symbol (25, GET_DYNAMIC_NAME (psym
->st_name
));
16822 printf (_("<corrupt: %14ld>"), psym
->st_name
);
16830 if (pltgot
!= 0 && local_gotno
!= 0)
16832 bfd_vma ent
, local_end
, global_end
;
16834 unsigned char * data
;
16835 unsigned char * data_end
;
16839 addr_size
= (is_32bit_elf
? 4 : 8);
16840 local_end
= pltgot
+ local_gotno
* addr_size
;
16842 /* PR binutils/17533 file: 012-111227-0.004 */
16843 if (symtabno
< gotsym
)
16845 error (_("The GOT symbol offset (%lu) is greater than the symbol table size (%lu)\n"),
16846 (unsigned long) gotsym
, (unsigned long) symtabno
);
16850 global_end
= local_end
+ (symtabno
- gotsym
) * addr_size
;
16851 /* PR 17531: file: 54c91a34. */
16852 if (global_end
< local_end
)
16854 error (_("Too many GOT symbols: %lu\n"), (unsigned long) symtabno
);
16858 offset
= offset_from_vma (filedata
, pltgot
, global_end
- pltgot
);
16859 data
= (unsigned char *) get_data (NULL
, filedata
, offset
,
16860 global_end
- pltgot
, 1,
16861 _("Global Offset Table data"));
16862 /* PR 12855: Null data is handled gracefully throughout. */
16863 data_end
= data
+ (global_end
- pltgot
);
16865 printf (_("\nPrimary GOT:\n"));
16866 printf (_(" Canonical gp value: "));
16867 print_vma (pltgot
+ 0x7ff0, LONG_HEX
);
16870 printf (_(" Reserved entries:\n"));
16871 printf (_(" %*s %10s %*s Purpose\n"),
16872 addr_size
* 2, _("Address"), _("Access"),
16873 addr_size
* 2, _("Initial"));
16874 ent
= print_mips_got_entry (data
, pltgot
, ent
, data_end
);
16875 printf (_(" Lazy resolver\n"));
16876 if (ent
== (bfd_vma
) -1)
16877 goto got_print_fail
;
16879 /* Check for the MSB of GOT[1] being set, denoting a GNU object.
16880 This entry will be used by some runtime loaders, to store the
16881 module pointer. Otherwise this is an ordinary local entry.
16882 PR 21344: Check for the entry being fully available before
16885 && data
+ ent
- pltgot
+ addr_size
<= data_end
16886 && (byte_get (data
+ ent
- pltgot
, addr_size
)
16887 >> (addr_size
* 8 - 1)) != 0)
16889 ent
= print_mips_got_entry (data
, pltgot
, ent
, data_end
);
16890 printf (_(" Module pointer (GNU extension)\n"));
16891 if (ent
== (bfd_vma
) -1)
16892 goto got_print_fail
;
16896 if (data
!= NULL
&& ent
< local_end
)
16898 printf (_(" Local entries:\n"));
16899 printf (" %*s %10s %*s\n",
16900 addr_size
* 2, _("Address"), _("Access"),
16901 addr_size
* 2, _("Initial"));
16902 while (ent
< local_end
)
16904 ent
= print_mips_got_entry (data
, pltgot
, ent
, data_end
);
16906 if (ent
== (bfd_vma
) -1)
16907 goto got_print_fail
;
16912 if (data
!= NULL
&& gotsym
< symtabno
)
16916 printf (_(" Global entries:\n"));
16917 printf (" %*s %10s %*s %*s %-7s %3s %s\n",
16918 addr_size
* 2, _("Address"),
16920 addr_size
* 2, _("Initial"),
16921 addr_size
* 2, _("Sym.Val."),
16923 /* Note for translators: "Ndx" = abbreviated form of "Index". */
16924 _("Ndx"), _("Name"));
16926 sym_width
= (is_32bit_elf
? 80 : 160) - 28 - addr_size
* 6 - 1;
16928 for (i
= gotsym
; i
< symtabno
; i
++)
16930 ent
= print_mips_got_entry (data
, pltgot
, ent
, data_end
);
16933 if (dynamic_symbols
== NULL
)
16934 printf (_("<no dynamic symbols>"));
16935 else if (i
< num_dynamic_syms
)
16937 Elf_Internal_Sym
* psym
= dynamic_symbols
+ i
;
16939 print_vma (psym
->st_value
, LONG_HEX
);
16940 printf (" %-7s %3s ",
16941 get_symbol_type (filedata
, ELF_ST_TYPE (psym
->st_info
)),
16942 get_symbol_index_type (filedata
, psym
->st_shndx
));
16944 if (VALID_DYNAMIC_NAME (psym
->st_name
))
16945 print_symbol (sym_width
, GET_DYNAMIC_NAME (psym
->st_name
));
16947 printf (_("<corrupt: %14ld>"), psym
->st_name
);
16950 printf (_("<symbol index %lu exceeds number of dynamic symbols>"),
16951 (unsigned long) i
);
16954 if (ent
== (bfd_vma
) -1)
16965 if (mips_pltgot
!= 0 && jmprel
!= 0 && pltrel
!= 0 && pltrelsz
!= 0)
16968 size_t offset
, rel_offset
;
16969 unsigned long count
, i
;
16970 unsigned char * data
;
16971 int addr_size
, sym_width
;
16972 Elf_Internal_Rela
* rels
;
16974 rel_offset
= offset_from_vma (filedata
, jmprel
, pltrelsz
);
16975 if (pltrel
== DT_RELA
)
16977 if (!slurp_rela_relocs (filedata
, rel_offset
, pltrelsz
, &rels
, &count
))
16982 if (!slurp_rel_relocs (filedata
, rel_offset
, pltrelsz
, &rels
, &count
))
16987 addr_size
= (is_32bit_elf
? 4 : 8);
16988 end
= mips_pltgot
+ (2 + count
) * addr_size
;
16990 offset
= offset_from_vma (filedata
, mips_pltgot
, end
- mips_pltgot
);
16991 data
= (unsigned char *) get_data (NULL
, filedata
, offset
, end
- mips_pltgot
,
16992 1, _("Procedure Linkage Table data"));
16996 printf ("\nPLT GOT:\n\n");
16997 printf (_(" Reserved entries:\n"));
16998 printf (_(" %*s %*s Purpose\n"),
16999 addr_size
* 2, _("Address"), addr_size
* 2, _("Initial"));
17000 ent
= print_mips_pltgot_entry (data
, mips_pltgot
, ent
);
17001 printf (_(" PLT lazy resolver\n"));
17002 ent
= print_mips_pltgot_entry (data
, mips_pltgot
, ent
);
17003 printf (_(" Module pointer\n"));
17006 printf (_(" Entries:\n"));
17007 printf (" %*s %*s %*s %-7s %3s %s\n",
17008 addr_size
* 2, _("Address"),
17009 addr_size
* 2, _("Initial"),
17010 addr_size
* 2, _("Sym.Val."), _("Type"), _("Ndx"), _("Name"));
17011 sym_width
= (is_32bit_elf
? 80 : 160) - 17 - addr_size
* 6 - 1;
17012 for (i
= 0; i
< count
; i
++)
17014 unsigned long idx
= get_reloc_symindex (rels
[i
].r_info
);
17016 ent
= print_mips_pltgot_entry (data
, mips_pltgot
, ent
);
17019 if (idx
>= num_dynamic_syms
)
17020 printf (_("<corrupt symbol index: %lu>"), idx
);
17023 Elf_Internal_Sym
* psym
= dynamic_symbols
+ idx
;
17025 print_vma (psym
->st_value
, LONG_HEX
);
17026 printf (" %-7s %3s ",
17027 get_symbol_type (filedata
, ELF_ST_TYPE (psym
->st_info
)),
17028 get_symbol_index_type (filedata
, psym
->st_shndx
));
17029 if (VALID_DYNAMIC_NAME (psym
->st_name
))
17030 print_symbol (sym_width
, GET_DYNAMIC_NAME (psym
->st_name
));
17032 printf (_("<corrupt: %14ld>"), psym
->st_name
);
17047 process_nds32_specific (Filedata
* filedata
)
17049 Elf_Internal_Shdr
*sect
= NULL
;
17051 sect
= find_section (filedata
, ".nds32_e_flags");
17054 unsigned int *flag
;
17056 printf ("\nNDS32 elf flags section:\n");
17057 flag
= get_data (NULL
, filedata
, sect
->sh_offset
, 1,
17058 sect
->sh_size
, _("NDS32 elf flags section"));
17063 switch ((*flag
) & 0x3)
17066 printf ("(VEC_SIZE):\tNo entry.\n");
17069 printf ("(VEC_SIZE):\t4 bytes\n");
17072 printf ("(VEC_SIZE):\t16 bytes\n");
17075 printf ("(VEC_SIZE):\treserved\n");
17084 process_gnu_liblist (Filedata
* filedata
)
17086 Elf_Internal_Shdr
* section
;
17087 Elf_Internal_Shdr
* string_sec
;
17088 Elf32_External_Lib
* elib
;
17090 size_t strtab_size
;
17092 unsigned long num_liblist
;
17094 bfd_boolean res
= TRUE
;
17099 for (i
= 0, section
= filedata
->section_headers
;
17100 i
< filedata
->file_header
.e_shnum
;
17103 switch (section
->sh_type
)
17105 case SHT_GNU_LIBLIST
:
17106 if (section
->sh_link
>= filedata
->file_header
.e_shnum
)
17109 elib
= (Elf32_External_Lib
*)
17110 get_data (NULL
, filedata
, section
->sh_offset
, 1, section
->sh_size
,
17111 _("liblist section data"));
17119 string_sec
= filedata
->section_headers
+ section
->sh_link
;
17120 strtab
= (char *) get_data (NULL
, filedata
, string_sec
->sh_offset
, 1,
17121 string_sec
->sh_size
,
17122 _("liblist string table"));
17124 || section
->sh_entsize
!= sizeof (Elf32_External_Lib
))
17131 strtab_size
= string_sec
->sh_size
;
17133 num_liblist
= section
->sh_size
/ sizeof (Elf32_External_Lib
);
17134 printf (ngettext ("\nLibrary list section '%s' contains %lu entries:\n",
17135 "\nLibrary list section '%s' contains %lu entries:\n",
17137 printable_section_name (filedata
, section
),
17140 puts (_(" Library Time Stamp Checksum Version Flags"));
17142 for (cnt
= 0; cnt
< section
->sh_size
/ sizeof (Elf32_External_Lib
);
17150 liblist
.l_name
= BYTE_GET (elib
[cnt
].l_name
);
17151 atime
= BYTE_GET (elib
[cnt
].l_time_stamp
);
17152 liblist
.l_checksum
= BYTE_GET (elib
[cnt
].l_checksum
);
17153 liblist
.l_version
= BYTE_GET (elib
[cnt
].l_version
);
17154 liblist
.l_flags
= BYTE_GET (elib
[cnt
].l_flags
);
17156 tmp
= gmtime (&atime
);
17157 snprintf (timebuf
, sizeof (timebuf
),
17158 "%04u-%02u-%02uT%02u:%02u:%02u",
17159 tmp
->tm_year
+ 1900, tmp
->tm_mon
+ 1, tmp
->tm_mday
,
17160 tmp
->tm_hour
, tmp
->tm_min
, tmp
->tm_sec
);
17162 printf ("%3lu: ", (unsigned long) cnt
);
17164 printf ("%-20s", liblist
.l_name
< strtab_size
17165 ? strtab
+ liblist
.l_name
: _("<corrupt>"));
17167 printf ("%-20.20s", liblist
.l_name
< strtab_size
17168 ? strtab
+ liblist
.l_name
: _("<corrupt>"));
17169 printf (" %s %#010lx %-7ld %-7ld\n", timebuf
, liblist
.l_checksum
,
17170 liblist
.l_version
, liblist
.l_flags
);
17181 static const char *
17182 get_note_type (Filedata
* filedata
, unsigned e_type
)
17184 static char buff
[64];
17186 if (filedata
->file_header
.e_type
== ET_CORE
)
17190 return _("NT_AUXV (auxiliary vector)");
17192 return _("NT_PRSTATUS (prstatus structure)");
17194 return _("NT_FPREGSET (floating point registers)");
17196 return _("NT_PRPSINFO (prpsinfo structure)");
17197 case NT_TASKSTRUCT
:
17198 return _("NT_TASKSTRUCT (task structure)");
17200 return _("NT_PRXFPREG (user_xfpregs structure)");
17202 return _("NT_PPC_VMX (ppc Altivec registers)");
17204 return _("NT_PPC_VSX (ppc VSX registers)");
17206 return _("NT_PPC_TAR (ppc TAR register)");
17208 return _("NT_PPC_PPR (ppc PPR register)");
17210 return _("NT_PPC_DSCR (ppc DSCR register)");
17212 return _("NT_PPC_EBB (ppc EBB registers)");
17214 return _("NT_PPC_PMU (ppc PMU registers)");
17215 case NT_PPC_TM_CGPR
:
17216 return _("NT_PPC_TM_CGPR (ppc checkpointed GPR registers)");
17217 case NT_PPC_TM_CFPR
:
17218 return _("NT_PPC_TM_CFPR (ppc checkpointed floating point registers)");
17219 case NT_PPC_TM_CVMX
:
17220 return _("NT_PPC_TM_CVMX (ppc checkpointed Altivec registers)");
17221 case NT_PPC_TM_CVSX
:
17222 return _("NT_PPC_TM_CVSX (ppc checkpointed VSX registers)");
17223 case NT_PPC_TM_SPR
:
17224 return _("NT_PPC_TM_SPR (ppc TM special purpose registers)");
17225 case NT_PPC_TM_CTAR
:
17226 return _("NT_PPC_TM_CTAR (ppc checkpointed TAR register)");
17227 case NT_PPC_TM_CPPR
:
17228 return _("NT_PPC_TM_CPPR (ppc checkpointed PPR register)");
17229 case NT_PPC_TM_CDSCR
:
17230 return _("NT_PPC_TM_CDSCR (ppc checkpointed DSCR register)");
17232 return _("NT_386_TLS (x86 TLS information)");
17233 case NT_386_IOPERM
:
17234 return _("NT_386_IOPERM (x86 I/O permissions)");
17235 case NT_X86_XSTATE
:
17236 return _("NT_X86_XSTATE (x86 XSAVE extended state)");
17237 case NT_S390_HIGH_GPRS
:
17238 return _("NT_S390_HIGH_GPRS (s390 upper register halves)");
17239 case NT_S390_TIMER
:
17240 return _("NT_S390_TIMER (s390 timer register)");
17241 case NT_S390_TODCMP
:
17242 return _("NT_S390_TODCMP (s390 TOD comparator register)");
17243 case NT_S390_TODPREG
:
17244 return _("NT_S390_TODPREG (s390 TOD programmable register)");
17246 return _("NT_S390_CTRS (s390 control registers)");
17247 case NT_S390_PREFIX
:
17248 return _("NT_S390_PREFIX (s390 prefix register)");
17249 case NT_S390_LAST_BREAK
:
17250 return _("NT_S390_LAST_BREAK (s390 last breaking event address)");
17251 case NT_S390_SYSTEM_CALL
:
17252 return _("NT_S390_SYSTEM_CALL (s390 system call restart data)");
17254 return _("NT_S390_TDB (s390 transaction diagnostic block)");
17255 case NT_S390_VXRS_LOW
:
17256 return _("NT_S390_VXRS_LOW (s390 vector registers 0-15 upper half)");
17257 case NT_S390_VXRS_HIGH
:
17258 return _("NT_S390_VXRS_HIGH (s390 vector registers 16-31)");
17259 case NT_S390_GS_CB
:
17260 return _("NT_S390_GS_CB (s390 guarded-storage registers)");
17261 case NT_S390_GS_BC
:
17262 return _("NT_S390_GS_BC (s390 guarded-storage broadcast control)");
17264 return _("NT_ARM_VFP (arm VFP registers)");
17266 return _("NT_ARM_TLS (AArch TLS registers)");
17267 case NT_ARM_HW_BREAK
:
17268 return _("NT_ARM_HW_BREAK (AArch hardware breakpoint registers)");
17269 case NT_ARM_HW_WATCH
:
17270 return _("NT_ARM_HW_WATCH (AArch hardware watchpoint registers)");
17272 return _("NT_PSTATUS (pstatus structure)");
17274 return _("NT_FPREGS (floating point registers)");
17276 return _("NT_PSINFO (psinfo structure)");
17278 return _("NT_LWPSTATUS (lwpstatus_t structure)");
17280 return _("NT_LWPSINFO (lwpsinfo_t structure)");
17281 case NT_WIN32PSTATUS
:
17282 return _("NT_WIN32PSTATUS (win32_pstatus structure)");
17284 return _("NT_SIGINFO (siginfo_t data)");
17286 return _("NT_FILE (mapped files)");
17294 return _("NT_VERSION (version)");
17296 return _("NT_ARCH (architecture)");
17297 case NT_GNU_BUILD_ATTRIBUTE_OPEN
:
17299 case NT_GNU_BUILD_ATTRIBUTE_FUNC
:
17305 snprintf (buff
, sizeof (buff
), _("Unknown note type: (0x%08x)"), e_type
);
17310 print_core_note (Elf_Internal_Note
*pnote
)
17312 unsigned int addr_size
= is_32bit_elf
? 4 : 8;
17313 bfd_vma count
, page_size
;
17314 unsigned char *descdata
, *filenames
, *descend
;
17316 if (pnote
->type
!= NT_FILE
)
17326 printf (_(" Cannot decode 64-bit note in 32-bit build\n"));
17327 /* Still "successful". */
17332 if (pnote
->descsz
< 2 * addr_size
)
17334 error (_(" Malformed note - too short for header\n"));
17338 descdata
= (unsigned char *) pnote
->descdata
;
17339 descend
= descdata
+ pnote
->descsz
;
17341 if (descdata
[pnote
->descsz
- 1] != '\0')
17343 error (_(" Malformed note - does not end with \\0\n"));
17347 count
= byte_get (descdata
, addr_size
);
17348 descdata
+= addr_size
;
17350 page_size
= byte_get (descdata
, addr_size
);
17351 descdata
+= addr_size
;
17353 if (count
> ((bfd_vma
) -1 - 2 * addr_size
) / (3 * addr_size
)
17354 || pnote
->descsz
< 2 * addr_size
+ count
* 3 * addr_size
)
17356 error (_(" Malformed note - too short for supplied file count\n"));
17360 printf (_(" Page size: "));
17361 print_vma (page_size
, DEC
);
17364 printf (_(" %*s%*s%*s\n"),
17365 (int) (2 + 2 * addr_size
), _("Start"),
17366 (int) (4 + 2 * addr_size
), _("End"),
17367 (int) (4 + 2 * addr_size
), _("Page Offset"));
17368 filenames
= descdata
+ count
* 3 * addr_size
;
17369 while (count
-- > 0)
17371 bfd_vma start
, end
, file_ofs
;
17373 if (filenames
== descend
)
17375 error (_(" Malformed note - filenames end too early\n"));
17379 start
= byte_get (descdata
, addr_size
);
17380 descdata
+= addr_size
;
17381 end
= byte_get (descdata
, addr_size
);
17382 descdata
+= addr_size
;
17383 file_ofs
= byte_get (descdata
, addr_size
);
17384 descdata
+= addr_size
;
17387 print_vma (start
, FULL_HEX
);
17389 print_vma (end
, FULL_HEX
);
17391 print_vma (file_ofs
, FULL_HEX
);
17392 printf ("\n %s\n", filenames
);
17394 filenames
+= 1 + strlen ((char *) filenames
);
17400 static const char *
17401 get_gnu_elf_note_type (unsigned e_type
)
17403 /* NB/ Keep this switch statement in sync with print_gnu_note (). */
17406 case NT_GNU_ABI_TAG
:
17407 return _("NT_GNU_ABI_TAG (ABI version tag)");
17409 return _("NT_GNU_HWCAP (DSO-supplied software HWCAP info)");
17410 case NT_GNU_BUILD_ID
:
17411 return _("NT_GNU_BUILD_ID (unique build ID bitstring)");
17412 case NT_GNU_GOLD_VERSION
:
17413 return _("NT_GNU_GOLD_VERSION (gold version)");
17414 case NT_GNU_PROPERTY_TYPE_0
:
17415 return _("NT_GNU_PROPERTY_TYPE_0");
17416 case NT_GNU_BUILD_ATTRIBUTE_OPEN
:
17417 return _("NT_GNU_BUILD_ATTRIBUTE_OPEN");
17418 case NT_GNU_BUILD_ATTRIBUTE_FUNC
:
17419 return _("NT_GNU_BUILD_ATTRIBUTE_FUNC");
17422 static char buff
[64];
17424 snprintf (buff
, sizeof (buff
), _("Unknown note type: (0x%08x)"), e_type
);
17431 decode_x86_compat_isa (unsigned int bitmask
)
17435 unsigned int bit
= bitmask
& (- bitmask
);
17440 case GNU_PROPERTY_X86_COMPAT_ISA_1_486
:
17443 case GNU_PROPERTY_X86_COMPAT_ISA_1_586
:
17446 case GNU_PROPERTY_X86_COMPAT_ISA_1_686
:
17449 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE
:
17452 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE2
:
17455 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE3
:
17458 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSSE3
:
17461 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE4_1
:
17464 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE4_2
:
17467 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX
:
17470 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX2
:
17473 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512F
:
17474 printf ("AVX512F");
17476 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512CD
:
17477 printf ("AVX512CD");
17479 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512ER
:
17480 printf ("AVX512ER");
17482 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512PF
:
17483 printf ("AVX512PF");
17485 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512VL
:
17486 printf ("AVX512VL");
17488 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512DQ
:
17489 printf ("AVX512DQ");
17491 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512BW
:
17492 printf ("AVX512BW");
17495 printf (_("<unknown: %x>"), bit
);
17504 decode_x86_isa (unsigned int bitmask
)
17508 printf (_("<None>"));
17514 unsigned int bit
= bitmask
& (- bitmask
);
17519 case GNU_PROPERTY_X86_ISA_1_CMOV
:
17522 case GNU_PROPERTY_X86_ISA_1_SSE
:
17525 case GNU_PROPERTY_X86_ISA_1_SSE2
:
17528 case GNU_PROPERTY_X86_ISA_1_SSE3
:
17531 case GNU_PROPERTY_X86_ISA_1_SSSE3
:
17534 case GNU_PROPERTY_X86_ISA_1_SSE4_1
:
17537 case GNU_PROPERTY_X86_ISA_1_SSE4_2
:
17540 case GNU_PROPERTY_X86_ISA_1_AVX
:
17543 case GNU_PROPERTY_X86_ISA_1_AVX2
:
17546 case GNU_PROPERTY_X86_ISA_1_FMA
:
17549 case GNU_PROPERTY_X86_ISA_1_AVX512F
:
17550 printf ("AVX512F");
17552 case GNU_PROPERTY_X86_ISA_1_AVX512CD
:
17553 printf ("AVX512CD");
17555 case GNU_PROPERTY_X86_ISA_1_AVX512ER
:
17556 printf ("AVX512ER");
17558 case GNU_PROPERTY_X86_ISA_1_AVX512PF
:
17559 printf ("AVX512PF");
17561 case GNU_PROPERTY_X86_ISA_1_AVX512VL
:
17562 printf ("AVX512VL");
17564 case GNU_PROPERTY_X86_ISA_1_AVX512DQ
:
17565 printf ("AVX512DQ");
17567 case GNU_PROPERTY_X86_ISA_1_AVX512BW
:
17568 printf ("AVX512BW");
17570 case GNU_PROPERTY_X86_ISA_1_AVX512_4FMAPS
:
17571 printf ("AVX512_4FMAPS");
17573 case GNU_PROPERTY_X86_ISA_1_AVX512_4VNNIW
:
17574 printf ("AVX512_4VNNIW");
17576 case GNU_PROPERTY_X86_ISA_1_AVX512_BITALG
:
17577 printf ("AVX512_BITALG");
17579 case GNU_PROPERTY_X86_ISA_1_AVX512_IFMA
:
17580 printf ("AVX512_IFMA");
17582 case GNU_PROPERTY_X86_ISA_1_AVX512_VBMI
:
17583 printf ("AVX512_VBMI");
17585 case GNU_PROPERTY_X86_ISA_1_AVX512_VBMI2
:
17586 printf ("AVX512_VBMI2");
17588 case GNU_PROPERTY_X86_ISA_1_AVX512_VNNI
:
17589 printf ("AVX512_VNNI");
17591 case GNU_PROPERTY_X86_ISA_1_AVX512_BF16
:
17592 printf ("AVX512_BF16");
17595 printf (_("<unknown: %x>"), bit
);
17604 decode_x86_feature_1 (unsigned int bitmask
)
17608 printf (_("<None>"));
17614 unsigned int bit
= bitmask
& (- bitmask
);
17619 case GNU_PROPERTY_X86_FEATURE_1_IBT
:
17622 case GNU_PROPERTY_X86_FEATURE_1_SHSTK
:
17626 printf (_("<unknown: %x>"), bit
);
17635 decode_x86_feature_2 (unsigned int bitmask
)
17639 printf (_("<None>"));
17645 unsigned int bit
= bitmask
& (- bitmask
);
17650 case GNU_PROPERTY_X86_FEATURE_2_X86
:
17653 case GNU_PROPERTY_X86_FEATURE_2_X87
:
17656 case GNU_PROPERTY_X86_FEATURE_2_MMX
:
17659 case GNU_PROPERTY_X86_FEATURE_2_XMM
:
17662 case GNU_PROPERTY_X86_FEATURE_2_YMM
:
17665 case GNU_PROPERTY_X86_FEATURE_2_ZMM
:
17668 case GNU_PROPERTY_X86_FEATURE_2_FXSR
:
17671 case GNU_PROPERTY_X86_FEATURE_2_XSAVE
:
17674 case GNU_PROPERTY_X86_FEATURE_2_XSAVEOPT
:
17675 printf ("XSAVEOPT");
17677 case GNU_PROPERTY_X86_FEATURE_2_XSAVEC
:
17681 printf (_("<unknown: %x>"), bit
);
17690 decode_aarch64_feature_1_and (unsigned int bitmask
)
17694 unsigned int bit
= bitmask
& (- bitmask
);
17699 case GNU_PROPERTY_AARCH64_FEATURE_1_BTI
:
17703 case GNU_PROPERTY_AARCH64_FEATURE_1_PAC
:
17708 printf (_("<unknown: %x>"), bit
);
17717 print_gnu_property_note (Filedata
* filedata
, Elf_Internal_Note
* pnote
)
17719 unsigned char * ptr
= (unsigned char *) pnote
->descdata
;
17720 unsigned char * ptr_end
= ptr
+ pnote
->descsz
;
17721 unsigned int size
= is_32bit_elf
? 4 : 8;
17723 printf (_(" Properties: "));
17725 if (pnote
->descsz
< 8 || (pnote
->descsz
% size
) != 0)
17727 printf (_("<corrupt GNU_PROPERTY_TYPE, size = %#lx>\n"), pnote
->descsz
);
17731 while (ptr
< ptr_end
)
17735 unsigned int datasz
;
17737 if ((size_t) (ptr_end
- ptr
) < 8)
17739 printf (_("<corrupt descsz: %#lx>\n"), pnote
->descsz
);
17743 type
= byte_get (ptr
, 4);
17744 datasz
= byte_get (ptr
+ 4, 4);
17748 if (datasz
> (size_t) (ptr_end
- ptr
))
17750 printf (_("<corrupt type (%#x) datasz: %#x>\n"),
17755 if (type
>= GNU_PROPERTY_LOPROC
&& type
<= GNU_PROPERTY_HIPROC
)
17757 if (filedata
->file_header
.e_machine
== EM_X86_64
17758 || filedata
->file_header
.e_machine
== EM_IAMCU
17759 || filedata
->file_header
.e_machine
== EM_386
)
17761 unsigned int bitmask
;
17764 bitmask
= byte_get (ptr
, 4);
17770 case GNU_PROPERTY_X86_ISA_1_USED
:
17772 printf (_("x86 ISA used: <corrupt length: %#x> "),
17776 printf ("x86 ISA used: ");
17777 decode_x86_isa (bitmask
);
17781 case GNU_PROPERTY_X86_ISA_1_NEEDED
:
17783 printf (_("x86 ISA needed: <corrupt length: %#x> "),
17787 printf ("x86 ISA needed: ");
17788 decode_x86_isa (bitmask
);
17792 case GNU_PROPERTY_X86_FEATURE_1_AND
:
17794 printf (_("x86 feature: <corrupt length: %#x> "),
17798 printf ("x86 feature: ");
17799 decode_x86_feature_1 (bitmask
);
17803 case GNU_PROPERTY_X86_FEATURE_2_USED
:
17805 printf (_("x86 feature used: <corrupt length: %#x> "),
17809 printf ("x86 feature used: ");
17810 decode_x86_feature_2 (bitmask
);
17814 case GNU_PROPERTY_X86_FEATURE_2_NEEDED
:
17816 printf (_("x86 feature needed: <corrupt length: %#x> "), datasz
);
17819 printf ("x86 feature needed: ");
17820 decode_x86_feature_2 (bitmask
);
17824 case GNU_PROPERTY_X86_COMPAT_ISA_1_USED
:
17826 printf (_("x86 ISA used: <corrupt length: %#x> "),
17830 printf ("x86 ISA used: ");
17831 decode_x86_compat_isa (bitmask
);
17835 case GNU_PROPERTY_X86_COMPAT_ISA_1_NEEDED
:
17837 printf (_("x86 ISA needed: <corrupt length: %#x> "),
17841 printf ("x86 ISA needed: ");
17842 decode_x86_compat_isa (bitmask
);
17850 else if (filedata
->file_header
.e_machine
== EM_AARCH64
)
17852 if (type
== GNU_PROPERTY_AARCH64_FEATURE_1_AND
)
17854 printf ("AArch64 feature: ");
17856 printf (_("<corrupt length: %#x> "), datasz
);
17858 decode_aarch64_feature_1_and (byte_get (ptr
, 4));
17867 case GNU_PROPERTY_STACK_SIZE
:
17868 printf (_("stack size: "));
17869 if (datasz
!= size
)
17870 printf (_("<corrupt length: %#x> "), datasz
);
17872 printf ("%#lx", (unsigned long) byte_get (ptr
, size
));
17875 case GNU_PROPERTY_NO_COPY_ON_PROTECTED
:
17876 printf ("no copy on protected ");
17878 printf (_("<corrupt length: %#x> "), datasz
);
17886 if (type
< GNU_PROPERTY_LOPROC
)
17887 printf (_("<unknown type %#x data: "), type
);
17888 else if (type
< GNU_PROPERTY_LOUSER
)
17889 printf (_("<procesor-specific type %#x data: "), type
);
17891 printf (_("<application-specific type %#x data: "), type
);
17892 for (j
= 0; j
< datasz
; ++j
)
17893 printf ("%02x ", ptr
[j
] & 0xff);
17897 ptr
+= ((datasz
+ (size
- 1)) & ~ (size
- 1));
17898 if (ptr
== ptr_end
)
17911 print_gnu_note (Filedata
* filedata
, Elf_Internal_Note
*pnote
)
17913 /* NB/ Keep this switch statement in sync with get_gnu_elf_note_type (). */
17914 switch (pnote
->type
)
17916 case NT_GNU_BUILD_ID
:
17920 printf (_(" Build ID: "));
17921 for (i
= 0; i
< pnote
->descsz
; ++i
)
17922 printf ("%02x", pnote
->descdata
[i
] & 0xff);
17927 case NT_GNU_ABI_TAG
:
17929 unsigned long os
, major
, minor
, subminor
;
17930 const char *osname
;
17932 /* PR 17531: file: 030-599401-0.004. */
17933 if (pnote
->descsz
< 16)
17935 printf (_(" <corrupt GNU_ABI_TAG>\n"));
17939 os
= byte_get ((unsigned char *) pnote
->descdata
, 4);
17940 major
= byte_get ((unsigned char *) pnote
->descdata
+ 4, 4);
17941 minor
= byte_get ((unsigned char *) pnote
->descdata
+ 8, 4);
17942 subminor
= byte_get ((unsigned char *) pnote
->descdata
+ 12, 4);
17946 case GNU_ABI_TAG_LINUX
:
17949 case GNU_ABI_TAG_HURD
:
17952 case GNU_ABI_TAG_SOLARIS
:
17953 osname
= "Solaris";
17955 case GNU_ABI_TAG_FREEBSD
:
17956 osname
= "FreeBSD";
17958 case GNU_ABI_TAG_NETBSD
:
17961 case GNU_ABI_TAG_SYLLABLE
:
17962 osname
= "Syllable";
17964 case GNU_ABI_TAG_NACL
:
17968 osname
= "Unknown";
17972 printf (_(" OS: %s, ABI: %ld.%ld.%ld\n"), osname
,
17973 major
, minor
, subminor
);
17977 case NT_GNU_GOLD_VERSION
:
17981 printf (_(" Version: "));
17982 for (i
= 0; i
< pnote
->descsz
&& pnote
->descdata
[i
] != '\0'; ++i
)
17983 printf ("%c", pnote
->descdata
[i
]);
17990 unsigned long num_entries
, mask
;
17992 /* Hardware capabilities information. Word 0 is the number of entries.
17993 Word 1 is a bitmask of enabled entries. The rest of the descriptor
17994 is a series of entries, where each entry is a single byte followed
17995 by a nul terminated string. The byte gives the bit number to test
17996 if enabled in the bitmask. */
17997 printf (_(" Hardware Capabilities: "));
17998 if (pnote
->descsz
< 8)
18000 error (_("<corrupt GNU_HWCAP>\n"));
18003 num_entries
= byte_get ((unsigned char *) pnote
->descdata
, 4);
18004 mask
= byte_get ((unsigned char *) pnote
->descdata
+ 4, 4);
18005 printf (_("num entries: %ld, enabled mask: %lx\n"), num_entries
, mask
);
18006 /* FIXME: Add code to display the entries... */
18010 case NT_GNU_PROPERTY_TYPE_0
:
18011 print_gnu_property_note (filedata
, pnote
);
18015 /* Handle unrecognised types. An error message should have already been
18016 created by get_gnu_elf_note_type(), so all that we need to do is to
18017 display the data. */
18021 printf (_(" Description data: "));
18022 for (i
= 0; i
< pnote
->descsz
; ++i
)
18023 printf ("%02x ", pnote
->descdata
[i
] & 0xff);
18032 static const char *
18033 get_v850_elf_note_type (enum v850_notes n_type
)
18035 static char buff
[64];
18039 case V850_NOTE_ALIGNMENT
: return _("Alignment of 8-byte objects");
18040 case V850_NOTE_DATA_SIZE
: return _("Sizeof double and long double");
18041 case V850_NOTE_FPU_INFO
: return _("Type of FPU support needed");
18042 case V850_NOTE_SIMD_INFO
: return _("Use of SIMD instructions");
18043 case V850_NOTE_CACHE_INFO
: return _("Use of cache");
18044 case V850_NOTE_MMU_INFO
: return _("Use of MMU");
18046 snprintf (buff
, sizeof (buff
), _("Unknown note type: (0x%08x)"), n_type
);
18052 print_v850_note (Elf_Internal_Note
* pnote
)
18056 if (pnote
->descsz
!= 4)
18059 val
= byte_get ((unsigned char *) pnote
->descdata
, pnote
->descsz
);
18063 printf (_("not set\n"));
18067 switch (pnote
->type
)
18069 case V850_NOTE_ALIGNMENT
:
18072 case EF_RH850_DATA_ALIGN4
: printf (_("4-byte\n")); return TRUE
;
18073 case EF_RH850_DATA_ALIGN8
: printf (_("8-byte\n")); return TRUE
;
18077 case V850_NOTE_DATA_SIZE
:
18080 case EF_RH850_DOUBLE32
: printf (_("4-bytes\n")); return TRUE
;
18081 case EF_RH850_DOUBLE64
: printf (_("8-bytes\n")); return TRUE
;
18085 case V850_NOTE_FPU_INFO
:
18088 case EF_RH850_FPU20
: printf (_("FPU-2.0\n")); return TRUE
;
18089 case EF_RH850_FPU30
: printf (_("FPU-3.0\n")); return TRUE
;
18093 case V850_NOTE_MMU_INFO
:
18094 case V850_NOTE_CACHE_INFO
:
18095 case V850_NOTE_SIMD_INFO
:
18096 if (val
== EF_RH850_SIMD
)
18098 printf (_("yes\n"));
18104 /* An 'unknown note type' message will already have been displayed. */
18108 printf (_("unknown value: %x\n"), val
);
18113 process_netbsd_elf_note (Elf_Internal_Note
* pnote
)
18115 unsigned int version
;
18117 switch (pnote
->type
)
18119 case NT_NETBSD_IDENT
:
18120 version
= byte_get ((unsigned char *) pnote
->descdata
, sizeof (version
));
18121 if ((version
/ 10000) % 100)
18122 printf (" NetBSD\t\t0x%08lx\tIDENT %u (%u.%u%s%c)\n", pnote
->descsz
,
18123 version
, version
/ 100000000, (version
/ 1000000) % 100,
18124 (version
/ 10000) % 100 > 26 ? "Z" : "",
18125 'A' + (version
/ 10000) % 26);
18127 printf (" NetBSD\t\t0x%08lx\tIDENT %u (%u.%u.%u)\n", pnote
->descsz
,
18128 version
, version
/ 100000000, (version
/ 1000000) % 100,
18129 (version
/ 100) % 100);
18132 case NT_NETBSD_MARCH
:
18133 printf (" NetBSD\t\t0x%08lx\tMARCH <%s>\n", pnote
->descsz
,
18137 #ifdef NT_NETBSD_PAX
18138 case NT_NETBSD_PAX
:
18139 version
= byte_get ((unsigned char *) pnote
->descdata
, sizeof (version
));
18140 printf (" NetBSD\t\t0x%08lx\tPaX <%s%s%s%s%s%s>\n", pnote
->descsz
,
18141 ((version
& NT_NETBSD_PAX_MPROTECT
) ? "+mprotect" : ""),
18142 ((version
& NT_NETBSD_PAX_NOMPROTECT
) ? "-mprotect" : ""),
18143 ((version
& NT_NETBSD_PAX_GUARD
) ? "+guard" : ""),
18144 ((version
& NT_NETBSD_PAX_NOGUARD
) ? "-guard" : ""),
18145 ((version
& NT_NETBSD_PAX_ASLR
) ? "+ASLR" : ""),
18146 ((version
& NT_NETBSD_PAX_NOASLR
) ? "-ASLR" : ""));
18151 printf (" NetBSD\t0x%08lx\tUnknown note type: (0x%08lx)\n", pnote
->descsz
,
18157 static const char *
18158 get_freebsd_elfcore_note_type (Filedata
* filedata
, unsigned e_type
)
18162 case NT_FREEBSD_THRMISC
:
18163 return _("NT_THRMISC (thrmisc structure)");
18164 case NT_FREEBSD_PROCSTAT_PROC
:
18165 return _("NT_PROCSTAT_PROC (proc data)");
18166 case NT_FREEBSD_PROCSTAT_FILES
:
18167 return _("NT_PROCSTAT_FILES (files data)");
18168 case NT_FREEBSD_PROCSTAT_VMMAP
:
18169 return _("NT_PROCSTAT_VMMAP (vmmap data)");
18170 case NT_FREEBSD_PROCSTAT_GROUPS
:
18171 return _("NT_PROCSTAT_GROUPS (groups data)");
18172 case NT_FREEBSD_PROCSTAT_UMASK
:
18173 return _("NT_PROCSTAT_UMASK (umask data)");
18174 case NT_FREEBSD_PROCSTAT_RLIMIT
:
18175 return _("NT_PROCSTAT_RLIMIT (rlimit data)");
18176 case NT_FREEBSD_PROCSTAT_OSREL
:
18177 return _("NT_PROCSTAT_OSREL (osreldate data)");
18178 case NT_FREEBSD_PROCSTAT_PSSTRINGS
:
18179 return _("NT_PROCSTAT_PSSTRINGS (ps_strings data)");
18180 case NT_FREEBSD_PROCSTAT_AUXV
:
18181 return _("NT_PROCSTAT_AUXV (auxv data)");
18182 case NT_FREEBSD_PTLWPINFO
:
18183 return _("NT_PTLWPINFO (ptrace_lwpinfo structure)");
18185 return get_note_type (filedata
, e_type
);
18188 static const char *
18189 get_netbsd_elfcore_note_type (Filedata
* filedata
, unsigned e_type
)
18191 static char buff
[64];
18195 case NT_NETBSDCORE_PROCINFO
:
18196 /* NetBSD core "procinfo" structure. */
18197 return _("NetBSD procinfo structure");
18199 #ifdef NT_NETBSDCORE_AUXV
18200 case NT_NETBSDCORE_AUXV
:
18201 return _("NetBSD ELF auxiliary vector data");
18205 /* As of Jan 2002 there are no other machine-independent notes
18206 defined for NetBSD core files. If the note type is less
18207 than the start of the machine-dependent note types, we don't
18210 if (e_type
< NT_NETBSDCORE_FIRSTMACH
)
18212 snprintf (buff
, sizeof (buff
), _("Unknown note type: (0x%08x)"), e_type
);
18218 switch (filedata
->file_header
.e_machine
)
18220 /* On the Alpha, SPARC (32-bit and 64-bit), PT_GETREGS == mach+0
18221 and PT_GETFPREGS == mach+2. */
18226 case EM_SPARC32PLUS
:
18230 case NT_NETBSDCORE_FIRSTMACH
+ 0:
18231 return _("PT_GETREGS (reg structure)");
18232 case NT_NETBSDCORE_FIRSTMACH
+ 2:
18233 return _("PT_GETFPREGS (fpreg structure)");
18239 /* On SuperH, PT_GETREGS == mach+3 and PT_GETFPREGS == mach+5.
18240 There's also old PT___GETREGS40 == mach + 1 for old reg
18241 structure which lacks GBR. */
18245 case NT_NETBSDCORE_FIRSTMACH
+ 1:
18246 return _("PT___GETREGS40 (old reg structure)");
18247 case NT_NETBSDCORE_FIRSTMACH
+ 3:
18248 return _("PT_GETREGS (reg structure)");
18249 case NT_NETBSDCORE_FIRSTMACH
+ 5:
18250 return _("PT_GETFPREGS (fpreg structure)");
18256 /* On all other arch's, PT_GETREGS == mach+1 and
18257 PT_GETFPREGS == mach+3. */
18261 case NT_NETBSDCORE_FIRSTMACH
+ 1:
18262 return _("PT_GETREGS (reg structure)");
18263 case NT_NETBSDCORE_FIRSTMACH
+ 3:
18264 return _("PT_GETFPREGS (fpreg structure)");
18270 snprintf (buff
, sizeof (buff
), "PT_FIRSTMACH+%d",
18271 e_type
- NT_NETBSDCORE_FIRSTMACH
);
18275 static const char *
18276 get_stapsdt_note_type (unsigned e_type
)
18278 static char buff
[64];
18283 return _("NT_STAPSDT (SystemTap probe descriptors)");
18289 snprintf (buff
, sizeof (buff
), _("Unknown note type: (0x%08x)"), e_type
);
18294 print_stapsdt_note (Elf_Internal_Note
*pnote
)
18296 size_t len
, maxlen
;
18297 unsigned long addr_size
= is_32bit_elf
? 4 : 8;
18298 char *data
= pnote
->descdata
;
18299 char *data_end
= pnote
->descdata
+ pnote
->descsz
;
18300 bfd_vma pc
, base_addr
, semaphore
;
18301 char *provider
, *probe
, *arg_fmt
;
18303 if (pnote
->descsz
< (addr_size
* 3))
18304 goto stapdt_note_too_small
;
18306 pc
= byte_get ((unsigned char *) data
, addr_size
);
18309 base_addr
= byte_get ((unsigned char *) data
, addr_size
);
18312 semaphore
= byte_get ((unsigned char *) data
, addr_size
);
18315 if (data
>= data_end
)
18316 goto stapdt_note_too_small
;
18317 maxlen
= data_end
- data
;
18318 len
= strnlen (data
, maxlen
);
18325 goto stapdt_note_too_small
;
18327 if (data
>= data_end
)
18328 goto stapdt_note_too_small
;
18329 maxlen
= data_end
- data
;
18330 len
= strnlen (data
, maxlen
);
18337 goto stapdt_note_too_small
;
18339 if (data
>= data_end
)
18340 goto stapdt_note_too_small
;
18341 maxlen
= data_end
- data
;
18342 len
= strnlen (data
, maxlen
);
18349 goto stapdt_note_too_small
;
18351 printf (_(" Provider: %s\n"), provider
);
18352 printf (_(" Name: %s\n"), probe
);
18353 printf (_(" Location: "));
18354 print_vma (pc
, FULL_HEX
);
18355 printf (_(", Base: "));
18356 print_vma (base_addr
, FULL_HEX
);
18357 printf (_(", Semaphore: "));
18358 print_vma (semaphore
, FULL_HEX
);
18360 printf (_(" Arguments: %s\n"), arg_fmt
);
18362 return data
== data_end
;
18364 stapdt_note_too_small
:
18365 printf (_(" <corrupt - note is too small>\n"));
18366 error (_("corrupt stapdt note - the data size is too small\n"));
18370 static const char *
18371 get_ia64_vms_note_type (unsigned e_type
)
18373 static char buff
[64];
18378 return _("NT_VMS_MHD (module header)");
18380 return _("NT_VMS_LNM (language name)");
18382 return _("NT_VMS_SRC (source files)");
18384 return "NT_VMS_TITLE";
18386 return _("NT_VMS_EIDC (consistency check)");
18387 case NT_VMS_FPMODE
:
18388 return _("NT_VMS_FPMODE (FP mode)");
18389 case NT_VMS_LINKTIME
:
18390 return "NT_VMS_LINKTIME";
18391 case NT_VMS_IMGNAM
:
18392 return _("NT_VMS_IMGNAM (image name)");
18394 return _("NT_VMS_IMGID (image id)");
18395 case NT_VMS_LINKID
:
18396 return _("NT_VMS_LINKID (link id)");
18397 case NT_VMS_IMGBID
:
18398 return _("NT_VMS_IMGBID (build id)");
18399 case NT_VMS_GSTNAM
:
18400 return _("NT_VMS_GSTNAM (sym table name)");
18401 case NT_VMS_ORIG_DYN
:
18402 return "NT_VMS_ORIG_DYN";
18403 case NT_VMS_PATCHTIME
:
18404 return "NT_VMS_PATCHTIME";
18406 snprintf (buff
, sizeof (buff
), _("Unknown note type: (0x%08x)"), e_type
);
18412 print_ia64_vms_note (Elf_Internal_Note
* pnote
)
18414 int maxlen
= pnote
->descsz
;
18416 if (maxlen
< 2 || (unsigned long) maxlen
!= pnote
->descsz
)
18417 goto desc_size_fail
;
18419 switch (pnote
->type
)
18423 goto desc_size_fail
;
18425 int l
= (int) strnlen (pnote
->descdata
+ 34, maxlen
- 34);
18427 printf (_(" Creation date : %.17s\n"), pnote
->descdata
);
18428 printf (_(" Last patch date: %.17s\n"), pnote
->descdata
+ 17);
18429 if (l
+ 34 < maxlen
)
18431 printf (_(" Module name : %s\n"), pnote
->descdata
+ 34);
18432 if (l
+ 35 < maxlen
)
18433 printf (_(" Module version : %s\n"), pnote
->descdata
+ 34 + l
+ 1);
18435 printf (_(" Module version : <missing>\n"));
18439 printf (_(" Module name : <missing>\n"));
18440 printf (_(" Module version : <missing>\n"));
18445 printf (_(" Language: %.*s\n"), maxlen
, pnote
->descdata
);
18449 case NT_VMS_FPMODE
:
18450 printf (_(" Floating Point mode: "));
18452 goto desc_size_fail
;
18453 /* FIXME: Generate an error if descsz > 8 ? */
18455 printf ("0x%016" BFD_VMA_FMT
"x\n",
18456 (bfd_vma
) byte_get ((unsigned char *)pnote
->descdata
, 8));
18459 case NT_VMS_LINKTIME
:
18460 printf (_(" Link time: "));
18462 goto desc_size_fail
;
18463 /* FIXME: Generate an error if descsz > 8 ? */
18466 ((bfd_int64_t
) byte_get ((unsigned char *)pnote
->descdata
, 8));
18470 case NT_VMS_PATCHTIME
:
18471 printf (_(" Patch time: "));
18473 goto desc_size_fail
;
18474 /* FIXME: Generate an error if descsz > 8 ? */
18477 ((bfd_int64_t
) byte_get ((unsigned char *)pnote
->descdata
, 8));
18481 case NT_VMS_ORIG_DYN
:
18483 goto desc_size_fail
;
18485 printf (_(" Major id: %u, minor id: %u\n"),
18486 (unsigned) byte_get ((unsigned char *)pnote
->descdata
, 4),
18487 (unsigned) byte_get ((unsigned char *)pnote
->descdata
+ 4, 4));
18488 printf (_(" Last modified : "));
18490 ((bfd_int64_t
) byte_get ((unsigned char *)pnote
->descdata
+ 8, 8));
18491 printf (_("\n Link flags : "));
18492 printf ("0x%016" BFD_VMA_FMT
"x\n",
18493 (bfd_vma
) byte_get ((unsigned char *)pnote
->descdata
+ 16, 8));
18494 printf (_(" Header flags: 0x%08x\n"),
18495 (unsigned) byte_get ((unsigned char *)pnote
->descdata
+ 24, 4));
18496 printf (_(" Image id : %.*s\n"), maxlen
- 32, pnote
->descdata
+ 32);
18500 case NT_VMS_IMGNAM
:
18501 printf (_(" Image name: %.*s\n"), maxlen
, pnote
->descdata
);
18504 case NT_VMS_GSTNAM
:
18505 printf (_(" Global symbol table name: %.*s\n"), maxlen
, pnote
->descdata
);
18509 printf (_(" Image id: %.*s\n"), maxlen
, pnote
->descdata
);
18512 case NT_VMS_LINKID
:
18513 printf (_(" Linker id: %.*s\n"), maxlen
, pnote
->descdata
);
18523 printf (_(" <corrupt - data size is too small>\n"));
18524 error (_("corrupt IA64 note: data size is too small\n"));
18528 /* Find the symbol associated with a build attribute that is attached
18529 to address OFFSET. If PNAME is non-NULL then store the name of
18530 the symbol (if found) in the provided pointer, Returns NULL if a
18531 symbol could not be found. */
18533 static Elf_Internal_Sym
*
18534 get_symbol_for_build_attribute (Filedata
* filedata
,
18535 unsigned long offset
,
18536 bfd_boolean is_open_attr
,
18537 const char ** pname
)
18539 static Filedata
* saved_filedata
= NULL
;
18540 static char * strtab
;
18541 static unsigned long strtablen
;
18542 static Elf_Internal_Sym
* symtab
;
18543 static unsigned long nsyms
;
18544 Elf_Internal_Sym
* saved_sym
= NULL
;
18545 Elf_Internal_Sym
* sym
;
18547 if (filedata
->section_headers
!= NULL
18548 && (saved_filedata
== NULL
|| filedata
!= saved_filedata
))
18550 Elf_Internal_Shdr
* symsec
;
18552 /* Load the symbol and string sections. */
18553 for (symsec
= filedata
->section_headers
;
18554 symsec
< filedata
->section_headers
+ filedata
->file_header
.e_shnum
;
18557 if (symsec
->sh_type
== SHT_SYMTAB
)
18559 symtab
= GET_ELF_SYMBOLS (filedata
, symsec
, & nsyms
);
18561 if (symsec
->sh_link
< filedata
->file_header
.e_shnum
)
18563 Elf_Internal_Shdr
* strtab_sec
= filedata
->section_headers
+ symsec
->sh_link
;
18565 strtab
= (char *) get_data (NULL
, filedata
, strtab_sec
->sh_offset
,
18566 1, strtab_sec
->sh_size
,
18567 _("string table"));
18568 strtablen
= strtab
!= NULL
? strtab_sec
->sh_size
: 0;
18572 saved_filedata
= filedata
;
18575 if (symtab
== NULL
|| strtab
== NULL
)
18578 /* Find a symbol whose value matches offset. */
18579 for (sym
= symtab
; sym
< symtab
+ nsyms
; sym
++)
18580 if (sym
->st_value
== offset
)
18582 if (sym
->st_name
>= strtablen
)
18583 /* Huh ? This should not happen. */
18586 if (strtab
[sym
->st_name
] == 0)
18589 /* The AArch64 and ARM architectures define mapping symbols
18590 (eg $d, $x, $t) which we want to ignore. */
18591 if (strtab
[sym
->st_name
] == '$'
18592 && strtab
[sym
->st_name
+ 1] != 0
18593 && strtab
[sym
->st_name
+ 2] == 0)
18598 /* For OPEN attributes we prefer GLOBAL over LOCAL symbols
18599 and FILE or OBJECT symbols over NOTYPE symbols. We skip
18600 FUNC symbols entirely. */
18601 switch (ELF_ST_TYPE (sym
->st_info
))
18608 /* If the symbol has a size associated
18609 with it then we can stop searching. */
18610 sym
= symtab
+ nsyms
;
18615 /* Ignore function symbols. */
18622 switch (ELF_ST_BIND (sym
->st_info
))
18625 if (saved_sym
== NULL
18626 || ELF_ST_TYPE (saved_sym
->st_info
) != STT_OBJECT
)
18631 if (saved_sym
== NULL
)
18641 if (ELF_ST_TYPE (sym
->st_info
) != STT_FUNC
)
18649 if (saved_sym
&& pname
)
18650 * pname
= strtab
+ saved_sym
->st_name
;
18655 /* Returns true iff addr1 and addr2 are in the same section. */
18658 same_section (Filedata
* filedata
, unsigned long addr1
, unsigned long addr2
)
18660 Elf_Internal_Shdr
* a1
;
18661 Elf_Internal_Shdr
* a2
;
18663 a1
= find_section_by_address (filedata
, addr1
);
18664 a2
= find_section_by_address (filedata
, addr2
);
18666 return a1
== a2
&& a1
!= NULL
;
18670 print_gnu_build_attribute_description (Elf_Internal_Note
* pnote
,
18671 Filedata
* filedata
)
18673 static unsigned long global_offset
= 0;
18674 static unsigned long global_end
= 0;
18675 static unsigned long func_offset
= 0;
18676 static unsigned long func_end
= 0;
18678 Elf_Internal_Sym
* sym
;
18680 unsigned long start
;
18682 bfd_boolean is_open_attr
= pnote
->type
== NT_GNU_BUILD_ATTRIBUTE_OPEN
;
18684 switch (pnote
->descsz
)
18687 /* A zero-length description means that the range of
18688 the previous note of the same type should be used. */
18691 if (global_end
> global_offset
)
18692 printf (_(" Applies to region from %#lx to %#lx\n"),
18693 global_offset
, global_end
);
18695 printf (_(" Applies to region from %#lx\n"), global_offset
);
18699 if (func_end
> func_offset
)
18700 printf (_(" Applies to region from %#lx to %#lx\n"), func_offset
, func_end
);
18702 printf (_(" Applies to region from %#lx\n"), func_offset
);
18707 start
= byte_get ((unsigned char *) pnote
->descdata
, 4);
18714 /* FIXME: We should check that version 3+ notes are being used here... */
18715 start
= byte_get ((unsigned char *) pnote
->descdata
, 4);
18716 end
= byte_get ((unsigned char *) pnote
->descdata
+ 4, 4);
18720 start
= byte_get ((unsigned char *) pnote
->descdata
, 8);
18726 start
= byte_get ((unsigned char *) pnote
->descdata
, 8);
18727 end
= byte_get ((unsigned char *) pnote
->descdata
+ 8, 8);
18731 error (_(" <invalid description size: %lx>\n"), pnote
->descsz
);
18732 printf (_(" <invalid descsz>"));
18737 sym
= get_symbol_for_build_attribute (filedata
, start
, is_open_attr
, & name
);
18738 /* As of version 5 of the annobin plugin, filename symbols are biased by 2
18739 in order to avoid them being confused with the start address of the
18740 first function in the file... */
18741 if (sym
== NULL
&& is_open_attr
)
18742 sym
= get_symbol_for_build_attribute (filedata
, start
+ 2, is_open_attr
,
18745 if (end
== 0 && sym
!= NULL
&& sym
->st_size
> 0)
18746 end
= start
+ sym
->st_size
;
18750 /* FIXME: Need to properly allow for section alignment.
18751 16 is just the alignment used on x86_64. */
18753 && start
> BFD_ALIGN (global_end
, 16)
18754 /* Build notes are not guaranteed to be organised in order of
18755 increasing address, but we should find the all of the notes
18756 for one section in the same place. */
18757 && same_section (filedata
, start
, global_end
))
18758 warn (_("Gap in build notes detected from %#lx to %#lx\n"),
18759 global_end
+ 1, start
- 1);
18761 printf (_(" Applies to region from %#lx"), start
);
18762 global_offset
= start
;
18766 printf (_(" to %#lx"), end
);
18772 printf (_(" Applies to region from %#lx"), start
);
18773 func_offset
= start
;
18777 printf (_(" to %#lx"), end
);
18783 printf (_(" (%s)"), name
);
18790 print_gnu_build_attribute_name (Elf_Internal_Note
* pnote
)
18792 static const char string_expected
[2] = { GNU_BUILD_ATTRIBUTE_TYPE_STRING
, 0 };
18793 static const char number_expected
[2] = { GNU_BUILD_ATTRIBUTE_TYPE_NUMERIC
, 0 };
18794 static const char bool_expected
[3] = { GNU_BUILD_ATTRIBUTE_TYPE_BOOL_TRUE
, GNU_BUILD_ATTRIBUTE_TYPE_BOOL_FALSE
, 0 };
18796 char name_attribute
;
18797 const char * expected_types
;
18798 const char * name
= pnote
->namedata
;
18802 if (name
== NULL
|| pnote
->namesz
< 2)
18804 error (_("corrupt name field in GNU build attribute note: size = %ld\n"), pnote
->namesz
);
18805 print_symbol (-20, _(" <corrupt name>"));
18814 /* Version 2 of the spec adds a "GA" prefix to the name field. */
18815 if (name
[0] == 'G' && name
[1] == 'A')
18817 if (pnote
->namesz
< 4)
18819 error (_("corrupt name field in GNU build attribute note: size = %ld\n"), pnote
->namesz
);
18820 print_symbol (-20, _(" <corrupt name>"));
18829 switch ((name_type
= * name
))
18831 case GNU_BUILD_ATTRIBUTE_TYPE_NUMERIC
:
18832 case GNU_BUILD_ATTRIBUTE_TYPE_STRING
:
18833 case GNU_BUILD_ATTRIBUTE_TYPE_BOOL_TRUE
:
18834 case GNU_BUILD_ATTRIBUTE_TYPE_BOOL_FALSE
:
18835 printf ("%c", * name
);
18839 error (_("unrecognised attribute type in name field: %d\n"), name_type
);
18840 print_symbol (-20, _("<unknown name type>"));
18847 switch ((name_attribute
= * name
))
18849 case GNU_BUILD_ATTRIBUTE_VERSION
:
18850 text
= _("<version>");
18851 expected_types
= string_expected
;
18854 case GNU_BUILD_ATTRIBUTE_STACK_PROT
:
18855 text
= _("<stack prot>");
18856 expected_types
= "!+*";
18859 case GNU_BUILD_ATTRIBUTE_RELRO
:
18860 text
= _("<relro>");
18861 expected_types
= bool_expected
;
18864 case GNU_BUILD_ATTRIBUTE_STACK_SIZE
:
18865 text
= _("<stack size>");
18866 expected_types
= number_expected
;
18869 case GNU_BUILD_ATTRIBUTE_TOOL
:
18870 text
= _("<tool>");
18871 expected_types
= string_expected
;
18874 case GNU_BUILD_ATTRIBUTE_ABI
:
18876 expected_types
= "$*";
18879 case GNU_BUILD_ATTRIBUTE_PIC
:
18881 expected_types
= number_expected
;
18884 case GNU_BUILD_ATTRIBUTE_SHORT_ENUM
:
18885 text
= _("<short enum>");
18886 expected_types
= bool_expected
;
18890 if (ISPRINT (* name
))
18892 int len
= strnlen (name
, pnote
->namesz
- (name
- pnote
->namedata
)) + 1;
18894 if (len
> left
&& ! do_wide
)
18896 printf ("%.*s:", len
, name
);
18902 static char tmpbuf
[128];
18904 error (_("unrecognised byte in name field: %d\n"), * name
);
18905 sprintf (tmpbuf
, _("<unknown:_%d>"), * name
);
18909 expected_types
= "*$!+";
18914 left
-= printf ("%s", text
);
18916 if (strchr (expected_types
, name_type
) == NULL
)
18917 warn (_("attribute does not have an expected type (%c)\n"), name_type
);
18919 if ((unsigned long)(name
- pnote
->namedata
) > pnote
->namesz
)
18921 error (_("corrupt name field: namesz: %lu but parsing gets to %ld\n"),
18922 (unsigned long) pnote
->namesz
,
18923 (long) (name
- pnote
->namedata
));
18927 if (left
< 1 && ! do_wide
)
18932 case GNU_BUILD_ATTRIBUTE_TYPE_NUMERIC
:
18934 unsigned int bytes
;
18935 unsigned long long val
= 0;
18936 unsigned int shift
= 0;
18937 char * decoded
= NULL
;
18939 bytes
= pnote
->namesz
- (name
- pnote
->namedata
);
18941 /* The -1 is because the name field is always 0 terminated, and we
18942 want to be able to ensure that the shift in the while loop below
18943 will not overflow. */
18946 if (bytes
> sizeof (val
))
18948 error (_("corrupt numeric name field: too many bytes in the value: %x\n"),
18950 bytes
= sizeof (val
);
18952 /* We do not bother to warn if bytes == 0 as this can
18953 happen with some early versions of the gcc plugin. */
18957 unsigned long byte
= (* name
++) & 0xff;
18959 val
|= byte
<< shift
;
18963 switch (name_attribute
)
18965 case GNU_BUILD_ATTRIBUTE_PIC
:
18968 case 0: decoded
= "static"; break;
18969 case 1: decoded
= "pic"; break;
18970 case 2: decoded
= "PIC"; break;
18971 case 3: decoded
= "pie"; break;
18972 case 4: decoded
= "PIE"; break;
18976 case GNU_BUILD_ATTRIBUTE_STACK_PROT
:
18979 /* Based upon the SPCT_FLAG_xxx enum values in gcc/cfgexpand.c. */
18980 case 0: decoded
= "off"; break;
18981 case 1: decoded
= "on"; break;
18982 case 2: decoded
= "all"; break;
18983 case 3: decoded
= "strong"; break;
18984 case 4: decoded
= "explicit"; break;
18992 if (decoded
!= NULL
)
18994 print_symbol (-left
, decoded
);
19005 left
-= printf ("0x%llx", val
);
19007 left
-= printf ("0x%-.*llx", left
, val
);
19011 case GNU_BUILD_ATTRIBUTE_TYPE_STRING
:
19012 left
-= print_symbol (- left
, name
);
19014 case GNU_BUILD_ATTRIBUTE_TYPE_BOOL_TRUE
:
19015 left
-= print_symbol (- left
, "true");
19017 case GNU_BUILD_ATTRIBUTE_TYPE_BOOL_FALSE
:
19018 left
-= print_symbol (- left
, "false");
19022 if (do_wide
&& left
> 0)
19023 printf ("%-*s", left
, " ");
19028 /* Note that by the ELF standard, the name field is already null byte
19029 terminated, and namesz includes the terminating null byte.
19030 I.E. the value of namesz for the name "FSF" is 4.
19032 If the value of namesz is zero, there is no name present. */
19035 process_note (Elf_Internal_Note
* pnote
,
19036 Filedata
* filedata
)
19038 const char * name
= pnote
->namesz
? pnote
->namedata
: "(NONE)";
19041 if (pnote
->namesz
== 0)
19042 /* If there is no note name, then use the default set of
19043 note type strings. */
19044 nt
= get_note_type (filedata
, pnote
->type
);
19046 else if (const_strneq (pnote
->namedata
, "GNU"))
19047 /* GNU-specific object file notes. */
19048 nt
= get_gnu_elf_note_type (pnote
->type
);
19050 else if (const_strneq (pnote
->namedata
, "FreeBSD"))
19051 /* FreeBSD-specific core file notes. */
19052 nt
= get_freebsd_elfcore_note_type (filedata
, pnote
->type
);
19054 else if (const_strneq (pnote
->namedata
, "NetBSD-CORE"))
19055 /* NetBSD-specific core file notes. */
19056 nt
= get_netbsd_elfcore_note_type (filedata
, pnote
->type
);
19058 else if (const_strneq (pnote
->namedata
, "NetBSD"))
19059 /* NetBSD-specific core file notes. */
19060 return process_netbsd_elf_note (pnote
);
19062 else if (const_strneq (pnote
->namedata
, "PaX"))
19063 /* NetBSD-specific core file notes. */
19064 return process_netbsd_elf_note (pnote
);
19066 else if (strneq (pnote
->namedata
, "SPU/", 4))
19068 /* SPU-specific core file notes. */
19069 nt
= pnote
->namedata
+ 4;
19073 else if (const_strneq (pnote
->namedata
, "IPF/VMS"))
19074 /* VMS/ia64-specific file notes. */
19075 nt
= get_ia64_vms_note_type (pnote
->type
);
19077 else if (const_strneq (pnote
->namedata
, "stapsdt"))
19078 nt
= get_stapsdt_note_type (pnote
->type
);
19081 /* Don't recognize this note name; just use the default set of
19082 note type strings. */
19083 nt
= get_note_type (filedata
, pnote
->type
);
19087 if (((const_strneq (pnote
->namedata
, "GA")
19088 && strchr ("*$!+", pnote
->namedata
[2]) != NULL
)
19089 || strchr ("*$!+", pnote
->namedata
[0]) != NULL
)
19090 && (pnote
->type
== NT_GNU_BUILD_ATTRIBUTE_OPEN
19091 || pnote
->type
== NT_GNU_BUILD_ATTRIBUTE_FUNC
))
19092 print_gnu_build_attribute_name (pnote
);
19094 print_symbol (-20, name
);
19097 printf (" 0x%08lx\t%s\t", pnote
->descsz
, nt
);
19099 printf (" 0x%08lx\t%s\n", pnote
->descsz
, nt
);
19101 if (const_strneq (pnote
->namedata
, "IPF/VMS"))
19102 return print_ia64_vms_note (pnote
);
19103 else if (const_strneq (pnote
->namedata
, "GNU"))
19104 return print_gnu_note (filedata
, pnote
);
19105 else if (const_strneq (pnote
->namedata
, "stapsdt"))
19106 return print_stapsdt_note (pnote
);
19107 else if (const_strneq (pnote
->namedata
, "CORE"))
19108 return print_core_note (pnote
);
19109 else if (((const_strneq (pnote
->namedata
, "GA")
19110 && strchr ("*$!+", pnote
->namedata
[2]) != NULL
)
19111 || strchr ("*$!+", pnote
->namedata
[0]) != NULL
)
19112 && (pnote
->type
== NT_GNU_BUILD_ATTRIBUTE_OPEN
19113 || pnote
->type
== NT_GNU_BUILD_ATTRIBUTE_FUNC
))
19114 return print_gnu_build_attribute_description (pnote
, filedata
);
19120 printf (_(" description data: "));
19121 for (i
= 0; i
< pnote
->descsz
; i
++)
19122 printf ("%02x ", pnote
->descdata
[i
] & 0xff);
19134 process_notes_at (Filedata
* filedata
,
19135 Elf_Internal_Shdr
* section
,
19140 Elf_External_Note
* pnotes
;
19141 Elf_External_Note
* external
;
19143 bfd_boolean res
= TRUE
;
19150 pnotes
= (Elf_External_Note
*) get_section_contents (section
, filedata
);
19153 if (! apply_relocations (filedata
, section
, (unsigned char *) pnotes
, length
, NULL
, NULL
))
19158 pnotes
= (Elf_External_Note
*) get_data (NULL
, filedata
, offset
, 1, length
,
19161 if (pnotes
== NULL
)
19167 printf (_("\nDisplaying notes found in: %s\n"), printable_section_name (filedata
, section
));
19169 printf (_("\nDisplaying notes found at file offset 0x%08lx with length 0x%08lx:\n"),
19170 (unsigned long) offset
, (unsigned long) length
);
19172 /* NB: Some note sections may have alignment value of 0 or 1. gABI
19173 specifies that notes should be aligned to 4 bytes in 32-bit
19174 objects and to 8 bytes in 64-bit objects. As a Linux extension,
19175 we also support 4 byte alignment in 64-bit objects. If section
19176 alignment is less than 4, we treate alignment as 4 bytes. */
19179 else if (align
!= 4 && align
!= 8)
19181 warn (_("Corrupt note: alignment %ld, expecting 4 or 8\n"),
19186 printf (_(" %-20s %-10s\tDescription\n"), _("Owner"), _("Data size"));
19188 end
= (char *) pnotes
+ length
;
19189 while ((char *) external
< end
)
19191 Elf_Internal_Note inote
;
19194 char * temp
= NULL
;
19195 size_t data_remaining
= end
- (char *) external
;
19197 if (!is_ia64_vms (filedata
))
19199 /* PR binutils/15191
19200 Make sure that there is enough data to read. */
19201 min_notesz
= offsetof (Elf_External_Note
, name
);
19202 if (data_remaining
< min_notesz
)
19204 warn (ngettext ("Corrupt note: only %ld byte remains, "
19205 "not enough for a full note\n",
19206 "Corrupt note: only %ld bytes remain, "
19207 "not enough for a full note\n",
19209 (long) data_remaining
);
19212 data_remaining
-= min_notesz
;
19214 inote
.type
= BYTE_GET (external
->type
);
19215 inote
.namesz
= BYTE_GET (external
->namesz
);
19216 inote
.namedata
= external
->name
;
19217 inote
.descsz
= BYTE_GET (external
->descsz
);
19218 inote
.descdata
= ((char *) external
19219 + ELF_NOTE_DESC_OFFSET (inote
.namesz
, align
));
19220 inote
.descpos
= offset
+ (inote
.descdata
- (char *) pnotes
);
19221 next
= ((char *) external
19222 + ELF_NOTE_NEXT_OFFSET (inote
.namesz
, inote
.descsz
, align
));
19226 Elf64_External_VMS_Note
*vms_external
;
19228 /* PR binutils/15191
19229 Make sure that there is enough data to read. */
19230 min_notesz
= offsetof (Elf64_External_VMS_Note
, name
);
19231 if (data_remaining
< min_notesz
)
19233 warn (ngettext ("Corrupt note: only %ld byte remains, "
19234 "not enough for a full note\n",
19235 "Corrupt note: only %ld bytes remain, "
19236 "not enough for a full note\n",
19238 (long) data_remaining
);
19241 data_remaining
-= min_notesz
;
19243 vms_external
= (Elf64_External_VMS_Note
*) external
;
19244 inote
.type
= BYTE_GET (vms_external
->type
);
19245 inote
.namesz
= BYTE_GET (vms_external
->namesz
);
19246 inote
.namedata
= vms_external
->name
;
19247 inote
.descsz
= BYTE_GET (vms_external
->descsz
);
19248 inote
.descdata
= inote
.namedata
+ align_power (inote
.namesz
, 3);
19249 inote
.descpos
= offset
+ (inote
.descdata
- (char *) pnotes
);
19250 next
= inote
.descdata
+ align_power (inote
.descsz
, 3);
19253 /* PR 17531: file: 3443835e. */
19254 /* PR 17531: file: id:000000,sig:11,src:006986,op:havoc,rep:4. */
19255 if ((size_t) (inote
.descdata
- inote
.namedata
) < inote
.namesz
19256 || (size_t) (inote
.descdata
- inote
.namedata
) > data_remaining
19257 || (size_t) (next
- inote
.descdata
) < inote
.descsz
19258 || ((size_t) (next
- inote
.descdata
)
19259 > data_remaining
- (size_t) (inote
.descdata
- inote
.namedata
)))
19261 warn (_("note with invalid namesz and/or descsz found at offset 0x%lx\n"),
19262 (unsigned long) ((char *) external
- (char *) pnotes
));
19263 warn (_(" type: 0x%lx, namesize: 0x%08lx, descsize: 0x%08lx, alignment: %u\n"),
19264 inote
.type
, inote
.namesz
, inote
.descsz
, (int) align
);
19268 external
= (Elf_External_Note
*) next
;
19270 /* Verify that name is null terminated. It appears that at least
19271 one version of Linux (RedHat 6.0) generates corefiles that don't
19272 comply with the ELF spec by failing to include the null byte in
19274 if (inote
.namesz
> 0 && inote
.namedata
[inote
.namesz
- 1] != '\0')
19276 if ((size_t) (inote
.descdata
- inote
.namedata
) == inote
.namesz
)
19278 temp
= (char *) malloc (inote
.namesz
+ 1);
19281 error (_("Out of memory allocating space for inote name\n"));
19286 memcpy (temp
, inote
.namedata
, inote
.namesz
);
19287 inote
.namedata
= temp
;
19289 inote
.namedata
[inote
.namesz
] = 0;
19292 if (! process_note (& inote
, filedata
))
19308 process_corefile_note_segments (Filedata
* filedata
)
19310 Elf_Internal_Phdr
* segment
;
19312 bfd_boolean res
= TRUE
;
19314 if (! get_program_headers (filedata
))
19317 for (i
= 0, segment
= filedata
->program_headers
;
19318 i
< filedata
->file_header
.e_phnum
;
19321 if (segment
->p_type
== PT_NOTE
)
19322 if (! process_notes_at (filedata
, NULL
,
19323 (bfd_vma
) segment
->p_offset
,
19324 (bfd_vma
) segment
->p_filesz
,
19325 (bfd_vma
) segment
->p_align
))
19333 process_v850_notes (Filedata
* filedata
, bfd_vma offset
, bfd_vma length
)
19335 Elf_External_Note
* pnotes
;
19336 Elf_External_Note
* external
;
19338 bfd_boolean res
= TRUE
;
19343 pnotes
= (Elf_External_Note
*) get_data (NULL
, filedata
, offset
, 1, length
,
19345 if (pnotes
== NULL
)
19349 end
= (char*) pnotes
+ length
;
19351 printf (_("\nDisplaying contents of Renesas V850 notes section at offset 0x%lx with length 0x%lx:\n"),
19352 (unsigned long) offset
, (unsigned long) length
);
19354 while ((char *) external
+ sizeof (Elf_External_Note
) < end
)
19356 Elf_External_Note
* next
;
19357 Elf_Internal_Note inote
;
19359 inote
.type
= BYTE_GET (external
->type
);
19360 inote
.namesz
= BYTE_GET (external
->namesz
);
19361 inote
.namedata
= external
->name
;
19362 inote
.descsz
= BYTE_GET (external
->descsz
);
19363 inote
.descdata
= inote
.namedata
+ align_power (inote
.namesz
, 2);
19364 inote
.descpos
= offset
+ (inote
.descdata
- (char *) pnotes
);
19366 if (inote
.descdata
< (char *) pnotes
|| inote
.descdata
>= end
)
19368 warn (_("Corrupt note: name size is too big: %lx\n"), inote
.namesz
);
19369 inote
.descdata
= inote
.namedata
;
19373 next
= (Elf_External_Note
*) (inote
.descdata
+ align_power (inote
.descsz
, 2));
19375 if ( ((char *) next
> end
)
19376 || ((char *) next
< (char *) pnotes
))
19378 warn (_("corrupt descsz found in note at offset 0x%lx\n"),
19379 (unsigned long) ((char *) external
- (char *) pnotes
));
19380 warn (_(" type: 0x%lx, namesize: 0x%lx, descsize: 0x%lx\n"),
19381 inote
.type
, inote
.namesz
, inote
.descsz
);
19387 /* Prevent out-of-bounds indexing. */
19388 if ( inote
.namedata
+ inote
.namesz
> end
19389 || inote
.namedata
+ inote
.namesz
< inote
.namedata
)
19391 warn (_("corrupt namesz found in note at offset 0x%lx\n"),
19392 (unsigned long) ((char *) external
- (char *) pnotes
));
19393 warn (_(" type: 0x%lx, namesize: 0x%lx, descsize: 0x%lx\n"),
19394 inote
.type
, inote
.namesz
, inote
.descsz
);
19398 printf (" %s: ", get_v850_elf_note_type (inote
.type
));
19400 if (! print_v850_note (& inote
))
19403 printf ("<corrupt sizes: namesz: %lx, descsz: %lx>\n",
19404 inote
.namesz
, inote
.descsz
);
19414 process_note_sections (Filedata
* filedata
)
19416 Elf_Internal_Shdr
* section
;
19418 unsigned int n
= 0;
19419 bfd_boolean res
= TRUE
;
19421 for (i
= 0, section
= filedata
->section_headers
;
19422 i
< filedata
->file_header
.e_shnum
&& section
!= NULL
;
19425 if (section
->sh_type
== SHT_NOTE
)
19427 if (! process_notes_at (filedata
, section
,
19428 (bfd_vma
) section
->sh_offset
,
19429 (bfd_vma
) section
->sh_size
,
19430 (bfd_vma
) section
->sh_addralign
))
19435 if (( filedata
->file_header
.e_machine
== EM_V800
19436 || filedata
->file_header
.e_machine
== EM_V850
19437 || filedata
->file_header
.e_machine
== EM_CYGNUS_V850
)
19438 && section
->sh_type
== SHT_RENESAS_INFO
)
19440 if (! process_v850_notes (filedata
,
19441 (bfd_vma
) section
->sh_offset
,
19442 (bfd_vma
) section
->sh_size
))
19449 /* Try processing NOTE segments instead. */
19450 return process_corefile_note_segments (filedata
);
19456 process_notes (Filedata
* filedata
)
19458 /* If we have not been asked to display the notes then do nothing. */
19462 if (filedata
->file_header
.e_type
!= ET_CORE
)
19463 return process_note_sections (filedata
);
19465 /* No program headers means no NOTE segment. */
19466 if (filedata
->file_header
.e_phnum
> 0)
19467 return process_corefile_note_segments (filedata
);
19469 printf (_("No note segments present in the core file.\n"));
19473 static unsigned char *
19474 display_public_gnu_attributes (unsigned char * start
,
19475 const unsigned char * const end
)
19477 printf (_(" Unknown GNU attribute: %s\n"), start
);
19479 start
+= strnlen ((char *) start
, end
- start
);
19480 display_raw_attribute (start
, end
);
19482 return (unsigned char *) end
;
19485 static unsigned char *
19486 display_generic_attribute (unsigned char * start
,
19488 const unsigned char * const end
)
19491 return (unsigned char *) end
;
19493 return display_tag_value (tag
, start
, end
);
19497 process_arch_specific (Filedata
* filedata
)
19502 switch (filedata
->file_header
.e_machine
)
19505 case EM_ARC_COMPACT
:
19506 case EM_ARC_COMPACT2
:
19507 return process_attributes (filedata
, "ARC", SHT_ARC_ATTRIBUTES
,
19508 display_arc_attribute
,
19509 display_generic_attribute
);
19511 return process_attributes (filedata
, "aeabi", SHT_ARM_ATTRIBUTES
,
19512 display_arm_attribute
,
19513 display_generic_attribute
);
19516 case EM_MIPS_RS3_LE
:
19517 return process_mips_specific (filedata
);
19520 return process_attributes (filedata
, "mspabi", SHT_MSP430_ATTRIBUTES
,
19521 display_msp430x_attribute
,
19522 display_msp430_gnu_attribute
);
19525 return process_attributes (filedata
, "riscv", SHT_RISCV_ATTRIBUTES
,
19526 display_riscv_attribute
,
19527 display_generic_attribute
);
19530 return process_nds32_specific (filedata
);
19534 return process_attributes (filedata
, NULL
, SHT_GNU_ATTRIBUTES
, NULL
,
19535 display_power_gnu_attribute
);
19539 return process_attributes (filedata
, NULL
, SHT_GNU_ATTRIBUTES
, NULL
,
19540 display_s390_gnu_attribute
);
19543 case EM_SPARC32PLUS
:
19545 return process_attributes (filedata
, NULL
, SHT_GNU_ATTRIBUTES
, NULL
,
19546 display_sparc_gnu_attribute
);
19549 return process_attributes (filedata
, "c6xabi", SHT_C6000_ATTRIBUTES
,
19550 display_tic6x_attribute
,
19551 display_generic_attribute
);
19554 return process_attributes (filedata
, "gnu", SHT_GNU_ATTRIBUTES
,
19555 display_public_gnu_attributes
,
19556 display_generic_attribute
);
19561 get_file_header (Filedata
* filedata
)
19563 /* Read in the identity array. */
19564 if (fread (filedata
->file_header
.e_ident
, EI_NIDENT
, 1, filedata
->handle
) != 1)
19567 /* Determine how to read the rest of the header. */
19568 switch (filedata
->file_header
.e_ident
[EI_DATA
])
19573 byte_get
= byte_get_little_endian
;
19574 byte_put
= byte_put_little_endian
;
19577 byte_get
= byte_get_big_endian
;
19578 byte_put
= byte_put_big_endian
;
19582 /* For now we only support 32 bit and 64 bit ELF files. */
19583 is_32bit_elf
= (filedata
->file_header
.e_ident
[EI_CLASS
] != ELFCLASS64
);
19585 /* Read in the rest of the header. */
19588 Elf32_External_Ehdr ehdr32
;
19590 if (fread (ehdr32
.e_type
, sizeof (ehdr32
) - EI_NIDENT
, 1, filedata
->handle
) != 1)
19593 filedata
->file_header
.e_type
= BYTE_GET (ehdr32
.e_type
);
19594 filedata
->file_header
.e_machine
= BYTE_GET (ehdr32
.e_machine
);
19595 filedata
->file_header
.e_version
= BYTE_GET (ehdr32
.e_version
);
19596 filedata
->file_header
.e_entry
= BYTE_GET (ehdr32
.e_entry
);
19597 filedata
->file_header
.e_phoff
= BYTE_GET (ehdr32
.e_phoff
);
19598 filedata
->file_header
.e_shoff
= BYTE_GET (ehdr32
.e_shoff
);
19599 filedata
->file_header
.e_flags
= BYTE_GET (ehdr32
.e_flags
);
19600 filedata
->file_header
.e_ehsize
= BYTE_GET (ehdr32
.e_ehsize
);
19601 filedata
->file_header
.e_phentsize
= BYTE_GET (ehdr32
.e_phentsize
);
19602 filedata
->file_header
.e_phnum
= BYTE_GET (ehdr32
.e_phnum
);
19603 filedata
->file_header
.e_shentsize
= BYTE_GET (ehdr32
.e_shentsize
);
19604 filedata
->file_header
.e_shnum
= BYTE_GET (ehdr32
.e_shnum
);
19605 filedata
->file_header
.e_shstrndx
= BYTE_GET (ehdr32
.e_shstrndx
);
19609 Elf64_External_Ehdr ehdr64
;
19611 /* If we have been compiled with sizeof (bfd_vma) == 4, then
19612 we will not be able to cope with the 64bit data found in
19613 64 ELF files. Detect this now and abort before we start
19614 overwriting things. */
19615 if (sizeof (bfd_vma
) < 8)
19617 error (_("This instance of readelf has been built without support for a\n\
19618 64 bit data type and so it cannot read 64 bit ELF files.\n"));
19622 if (fread (ehdr64
.e_type
, sizeof (ehdr64
) - EI_NIDENT
, 1, filedata
->handle
) != 1)
19625 filedata
->file_header
.e_type
= BYTE_GET (ehdr64
.e_type
);
19626 filedata
->file_header
.e_machine
= BYTE_GET (ehdr64
.e_machine
);
19627 filedata
->file_header
.e_version
= BYTE_GET (ehdr64
.e_version
);
19628 filedata
->file_header
.e_entry
= BYTE_GET (ehdr64
.e_entry
);
19629 filedata
->file_header
.e_phoff
= BYTE_GET (ehdr64
.e_phoff
);
19630 filedata
->file_header
.e_shoff
= BYTE_GET (ehdr64
.e_shoff
);
19631 filedata
->file_header
.e_flags
= BYTE_GET (ehdr64
.e_flags
);
19632 filedata
->file_header
.e_ehsize
= BYTE_GET (ehdr64
.e_ehsize
);
19633 filedata
->file_header
.e_phentsize
= BYTE_GET (ehdr64
.e_phentsize
);
19634 filedata
->file_header
.e_phnum
= BYTE_GET (ehdr64
.e_phnum
);
19635 filedata
->file_header
.e_shentsize
= BYTE_GET (ehdr64
.e_shentsize
);
19636 filedata
->file_header
.e_shnum
= BYTE_GET (ehdr64
.e_shnum
);
19637 filedata
->file_header
.e_shstrndx
= BYTE_GET (ehdr64
.e_shstrndx
);
19640 if (filedata
->file_header
.e_shoff
)
19642 /* There may be some extensions in the first section header. Don't
19643 bomb if we can't read it. */
19645 get_32bit_section_headers (filedata
, TRUE
);
19647 get_64bit_section_headers (filedata
, TRUE
);
19654 close_file (Filedata
* filedata
)
19658 if (filedata
->handle
)
19659 fclose (filedata
->handle
);
19665 close_debug_file (void * data
)
19667 close_file ((Filedata
*) data
);
19671 open_file (const char * pathname
)
19673 struct stat statbuf
;
19674 Filedata
* filedata
= NULL
;
19676 if (stat (pathname
, & statbuf
) < 0
19677 || ! S_ISREG (statbuf
.st_mode
))
19680 filedata
= calloc (1, sizeof * filedata
);
19681 if (filedata
== NULL
)
19684 filedata
->handle
= fopen (pathname
, "rb");
19685 if (filedata
->handle
== NULL
)
19688 filedata
->file_size
= (bfd_size_type
) statbuf
.st_size
;
19689 filedata
->file_name
= pathname
;
19691 if (! get_file_header (filedata
))
19694 if (filedata
->file_header
.e_shoff
)
19698 /* Read the section headers again, this time for real. */
19700 res
= get_32bit_section_headers (filedata
, FALSE
);
19702 res
= get_64bit_section_headers (filedata
, FALSE
);
19713 if (filedata
->handle
)
19714 fclose (filedata
->handle
);
19721 open_debug_file (const char * pathname
)
19723 return open_file (pathname
);
19726 /* Process one ELF object file according to the command line options.
19727 This file may actually be stored in an archive. The file is
19728 positioned at the start of the ELF object. Returns TRUE if no
19729 problems were encountered, FALSE otherwise. */
19732 process_object (Filedata
* filedata
)
19734 bfd_boolean have_separate_files
;
19736 bfd_boolean res
= TRUE
;
19738 if (! get_file_header (filedata
))
19740 error (_("%s: Failed to read file header\n"), filedata
->file_name
);
19744 /* Initialise per file variables. */
19745 for (i
= ARRAY_SIZE (version_info
); i
--;)
19746 version_info
[i
] = 0;
19748 for (i
= ARRAY_SIZE (dynamic_info
); i
--;)
19749 dynamic_info
[i
] = 0;
19750 dynamic_info_DT_GNU_HASH
= 0;
19751 dynamic_info_DT_MIPS_XHASH
= 0;
19753 /* Process the file. */
19755 printf (_("\nFile: %s\n"), filedata
->file_name
);
19757 /* Initialise the dump_sects array from the cmdline_dump_sects array.
19758 Note we do this even if cmdline_dump_sects is empty because we
19759 must make sure that the dump_sets array is zeroed out before each
19760 object file is processed. */
19761 if (filedata
->num_dump_sects
> cmdline
.num_dump_sects
)
19762 memset (filedata
->dump_sects
, 0, filedata
->num_dump_sects
* sizeof (* filedata
->dump_sects
));
19764 if (cmdline
.num_dump_sects
> 0)
19766 if (filedata
->num_dump_sects
== 0)
19767 /* A sneaky way of allocating the dump_sects array. */
19768 request_dump_bynumber (filedata
, cmdline
.num_dump_sects
, 0);
19770 assert (filedata
->num_dump_sects
>= cmdline
.num_dump_sects
);
19771 memcpy (filedata
->dump_sects
, cmdline
.dump_sects
,
19772 cmdline
.num_dump_sects
* sizeof (* filedata
->dump_sects
));
19775 if (! process_file_header (filedata
))
19778 if (! process_section_headers (filedata
))
19780 /* Without loaded section headers we cannot process lots of things. */
19781 do_unwind
= do_version
= do_dump
= do_arch
= FALSE
;
19783 if (! do_using_dynamic
)
19784 do_syms
= do_dyn_syms
= do_reloc
= FALSE
;
19787 if (! process_section_groups (filedata
))
19788 /* Without loaded section groups we cannot process unwind. */
19791 if (process_program_headers (filedata
))
19792 process_dynamic_section (filedata
);
19796 if (! process_relocs (filedata
))
19799 if (! process_unwind (filedata
))
19802 if (! process_symbol_table (filedata
))
19805 if (! process_syminfo (filedata
))
19808 if (! process_version_sections (filedata
))
19811 if (filedata
->file_header
.e_shstrndx
!= SHN_UNDEF
)
19812 have_separate_files
= load_separate_debug_files (filedata
, filedata
->file_name
);
19814 have_separate_files
= FALSE
;
19816 if (! process_section_contents (filedata
))
19819 if (have_separate_files
)
19823 for (d
= first_separate_info
; d
!= NULL
; d
= d
->next
)
19825 if (! process_section_headers (d
->handle
))
19827 else if (! process_section_contents (d
->handle
))
19831 /* The file handles are closed by the call to free_debug_memory() below. */
19834 if (! process_notes (filedata
))
19837 if (! process_gnu_liblist (filedata
))
19840 if (! process_arch_specific (filedata
))
19843 free (filedata
->program_headers
);
19844 filedata
->program_headers
= NULL
;
19846 free (filedata
->section_headers
);
19847 filedata
->section_headers
= NULL
;
19849 free (filedata
->string_table
);
19850 filedata
->string_table
= NULL
;
19851 filedata
->string_table_length
= 0;
19853 if (dynamic_strings
)
19855 free (dynamic_strings
);
19856 dynamic_strings
= NULL
;
19857 dynamic_strings_length
= 0;
19860 if (dynamic_symbols
)
19862 free (dynamic_symbols
);
19863 dynamic_symbols
= NULL
;
19864 num_dynamic_syms
= 0;
19867 if (dynamic_syminfo
)
19869 free (dynamic_syminfo
);
19870 dynamic_syminfo
= NULL
;
19873 if (dynamic_section
)
19875 free (dynamic_section
);
19876 dynamic_section
= NULL
;
19879 if (section_headers_groups
)
19881 free (section_headers_groups
);
19882 section_headers_groups
= NULL
;
19885 if (section_groups
)
19887 struct group_list
* g
;
19888 struct group_list
* next
;
19890 for (i
= 0; i
< group_count
; i
++)
19892 for (g
= section_groups
[i
].root
; g
!= NULL
; g
= next
)
19899 free (section_groups
);
19900 section_groups
= NULL
;
19903 free_debug_memory ();
19908 /* Process an ELF archive.
19909 On entry the file is positioned just after the ARMAG string.
19910 Returns TRUE upon success, FALSE otherwise. */
19913 process_archive (Filedata
* filedata
, bfd_boolean is_thin_archive
)
19915 struct archive_info arch
;
19916 struct archive_info nested_arch
;
19918 bfd_boolean ret
= TRUE
;
19922 /* The ARCH structure is used to hold information about this archive. */
19923 arch
.file_name
= NULL
;
19925 arch
.index_array
= NULL
;
19926 arch
.sym_table
= NULL
;
19927 arch
.longnames
= NULL
;
19929 /* The NESTED_ARCH structure is used as a single-item cache of information
19930 about a nested archive (when members of a thin archive reside within
19931 another regular archive file). */
19932 nested_arch
.file_name
= NULL
;
19933 nested_arch
.file
= NULL
;
19934 nested_arch
.index_array
= NULL
;
19935 nested_arch
.sym_table
= NULL
;
19936 nested_arch
.longnames
= NULL
;
19938 if (setup_archive (&arch
, filedata
->file_name
, filedata
->handle
,
19939 is_thin_archive
, do_archive_index
) != 0)
19945 if (do_archive_index
)
19947 if (arch
.sym_table
== NULL
)
19948 error (_("%s: unable to dump the index as none was found\n"), filedata
->file_name
);
19951 unsigned long i
, l
;
19952 unsigned long current_pos
;
19954 printf (_("Index of archive %s: (%lu entries, 0x%lx bytes in the symbol table)\n"),
19955 filedata
->file_name
, (unsigned long) arch
.index_num
, arch
.sym_size
);
19957 current_pos
= ftell (filedata
->handle
);
19959 for (i
= l
= 0; i
< arch
.index_num
; i
++)
19961 if ((i
== 0) || ((i
> 0) && (arch
.index_array
[i
] != arch
.index_array
[i
- 1])))
19963 char * member_name
;
19965 member_name
= get_archive_member_name_at (&arch
, arch
.index_array
[i
], &nested_arch
);
19967 if (member_name
!= NULL
)
19969 char * qualified_name
= make_qualified_name (&arch
, &nested_arch
, member_name
);
19971 if (qualified_name
!= NULL
)
19973 printf (_("Contents of binary %s at offset "), qualified_name
);
19974 (void) print_vma (arch
.index_array
[i
], PREFIX_HEX
);
19976 free (qualified_name
);
19981 if (l
>= arch
.sym_size
)
19983 error (_("%s: end of the symbol table reached before the end of the index\n"),
19984 filedata
->file_name
);
19988 /* PR 17531: file: 0b6630b2. */
19989 printf ("\t%.*s\n", (int) (arch
.sym_size
- l
), arch
.sym_table
+ l
);
19990 l
+= strnlen (arch
.sym_table
+ l
, arch
.sym_size
- l
) + 1;
19993 if (arch
.uses_64bit_indices
)
19998 if (l
< arch
.sym_size
)
20000 error (ngettext ("%s: %ld byte remains in the symbol table, "
20001 "but without corresponding entries in "
20002 "the index table\n",
20003 "%s: %ld bytes remain in the symbol table, "
20004 "but without corresponding entries in "
20005 "the index table\n",
20006 arch
.sym_size
- l
),
20007 filedata
->file_name
, arch
.sym_size
- l
);
20011 if (fseek (filedata
->handle
, current_pos
, SEEK_SET
) != 0)
20013 error (_("%s: failed to seek back to start of object files in the archive\n"),
20014 filedata
->file_name
);
20020 if (!do_dynamic
&& !do_syms
&& !do_reloc
&& !do_unwind
&& !do_sections
20021 && !do_segments
&& !do_header
&& !do_dump
&& !do_version
20022 && !do_histogram
&& !do_debugging
&& !do_arch
&& !do_notes
20023 && !do_section_groups
&& !do_dyn_syms
)
20025 ret
= TRUE
; /* Archive index only. */
20034 char * qualified_name
;
20036 /* Read the next archive header. */
20037 if (fseek (filedata
->handle
, arch
.next_arhdr_offset
, SEEK_SET
) != 0)
20039 error (_("%s: failed to seek to next archive header\n"), arch
.file_name
);
20042 got
= fread (&arch
.arhdr
, 1, sizeof arch
.arhdr
, filedata
->handle
);
20043 if (got
!= sizeof arch
.arhdr
)
20047 /* PR 24049 - we cannot use filedata->file_name as this will
20048 have already been freed. */
20049 error (_("%s: failed to read archive header\n"), arch
.file_name
);
20054 if (memcmp (arch
.arhdr
.ar_fmag
, ARFMAG
, 2) != 0)
20056 error (_("%s: did not find a valid archive header\n"), arch
.file_name
);
20061 arch
.next_arhdr_offset
+= sizeof arch
.arhdr
;
20063 archive_file_size
= strtoul (arch
.arhdr
.ar_size
, NULL
, 10);
20064 if (archive_file_size
& 01)
20065 ++archive_file_size
;
20067 name
= get_archive_member_name (&arch
, &nested_arch
);
20070 error (_("%s: bad archive file name\n"), arch
.file_name
);
20074 namelen
= strlen (name
);
20076 qualified_name
= make_qualified_name (&arch
, &nested_arch
, name
);
20077 if (qualified_name
== NULL
)
20079 error (_("%s: bad archive file name\n"), arch
.file_name
);
20084 if (is_thin_archive
&& arch
.nested_member_origin
== 0)
20086 /* This is a proxy for an external member of a thin archive. */
20087 Filedata
* member_filedata
;
20088 char * member_file_name
= adjust_relative_path
20089 (filedata
->file_name
, name
, namelen
);
20091 if (member_file_name
== NULL
)
20097 member_filedata
= open_file (member_file_name
);
20098 if (member_filedata
== NULL
)
20100 error (_("Input file '%s' is not readable.\n"), member_file_name
);
20101 free (member_file_name
);
20106 archive_file_offset
= arch
.nested_member_origin
;
20107 member_filedata
->file_name
= qualified_name
;
20109 if (! process_object (member_filedata
))
20112 close_file (member_filedata
);
20113 free (member_file_name
);
20115 else if (is_thin_archive
)
20117 Filedata thin_filedata
;
20119 memset (&thin_filedata
, 0, sizeof (thin_filedata
));
20121 /* PR 15140: Allow for corrupt thin archives. */
20122 if (nested_arch
.file
== NULL
)
20124 error (_("%s: contains corrupt thin archive: %s\n"),
20125 qualified_name
, name
);
20130 /* This is a proxy for a member of a nested archive. */
20131 archive_file_offset
= arch
.nested_member_origin
+ sizeof arch
.arhdr
;
20133 /* The nested archive file will have been opened and setup by
20134 get_archive_member_name. */
20135 if (fseek (nested_arch
.file
, archive_file_offset
, SEEK_SET
) != 0)
20137 error (_("%s: failed to seek to archive member.\n"), nested_arch
.file_name
);
20142 thin_filedata
.handle
= nested_arch
.file
;
20143 thin_filedata
.file_name
= qualified_name
;
20145 if (! process_object (& thin_filedata
))
20150 archive_file_offset
= arch
.next_arhdr_offset
;
20151 arch
.next_arhdr_offset
+= archive_file_size
;
20153 filedata
->file_name
= qualified_name
;
20154 if (! process_object (filedata
))
20158 if (filedata
->dump_sects
!= NULL
)
20160 free (filedata
->dump_sects
);
20161 filedata
->dump_sects
= NULL
;
20162 filedata
->num_dump_sects
= 0;
20165 free (qualified_name
);
20169 if (nested_arch
.file
!= NULL
)
20170 fclose (nested_arch
.file
);
20171 release_archive (&nested_arch
);
20172 release_archive (&arch
);
20178 process_file (char * file_name
)
20180 Filedata
* filedata
= NULL
;
20181 struct stat statbuf
;
20182 char armag
[SARMAG
];
20183 bfd_boolean ret
= TRUE
;
20185 if (stat (file_name
, &statbuf
) < 0)
20187 if (errno
== ENOENT
)
20188 error (_("'%s': No such file\n"), file_name
);
20190 error (_("Could not locate '%s'. System error message: %s\n"),
20191 file_name
, strerror (errno
));
20195 if (! S_ISREG (statbuf
.st_mode
))
20197 error (_("'%s' is not an ordinary file\n"), file_name
);
20201 filedata
= calloc (1, sizeof * filedata
);
20202 if (filedata
== NULL
)
20204 error (_("Out of memory allocating file data structure\n"));
20208 filedata
->file_name
= file_name
;
20209 filedata
->handle
= fopen (file_name
, "rb");
20210 if (filedata
->handle
== NULL
)
20212 error (_("Input file '%s' is not readable.\n"), file_name
);
20217 if (fread (armag
, SARMAG
, 1, filedata
->handle
) != 1)
20219 error (_("%s: Failed to read file's magic number\n"), file_name
);
20220 fclose (filedata
->handle
);
20225 filedata
->file_size
= (bfd_size_type
) statbuf
.st_size
;
20227 if (memcmp (armag
, ARMAG
, SARMAG
) == 0)
20229 if (! process_archive (filedata
, FALSE
))
20232 else if (memcmp (armag
, ARMAGT
, SARMAG
) == 0)
20234 if ( ! process_archive (filedata
, TRUE
))
20239 if (do_archive_index
)
20240 error (_("File %s is not an archive so its index cannot be displayed.\n"),
20243 rewind (filedata
->handle
);
20244 archive_file_size
= archive_file_offset
= 0;
20246 if (! process_object (filedata
))
20250 fclose (filedata
->handle
);
20256 #ifdef SUPPORT_DISASSEMBLY
20257 /* Needed by the i386 disassembler. For extra credit, someone could
20258 fix this so that we insert symbolic addresses here, esp for GOT/PLT
20262 print_address (unsigned int addr
, FILE * outfile
)
20264 fprintf (outfile
,"0x%8.8x", addr
);
20267 /* Needed by the i386 disassembler. */
20270 db_task_printsym (unsigned int addr
)
20272 print_address (addr
, stderr
);
20277 main (int argc
, char ** argv
)
20281 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
20282 setlocale (LC_MESSAGES
, "");
20284 #if defined (HAVE_SETLOCALE)
20285 setlocale (LC_CTYPE
, "");
20287 bindtextdomain (PACKAGE
, LOCALEDIR
);
20288 textdomain (PACKAGE
);
20290 expandargv (&argc
, &argv
);
20292 cmdline
.file_name
= "<cmdline>";
20293 parse_args (& cmdline
, argc
, argv
);
20295 if (optind
< (argc
- 1))
20297 else if (optind
>= argc
)
20299 warn (_("Nothing to do.\n"));
20304 while (optind
< argc
)
20305 if (! process_file (argv
[optind
++]))
20308 if (cmdline
.dump_sects
!= NULL
)
20309 free (cmdline
.dump_sects
);
20311 free (dump_ctf_symtab_name
);
20312 free (dump_ctf_strtab_name
);
20313 free (dump_ctf_parent_name
);
20315 return err
? EXIT_FAILURE
: EXIT_SUCCESS
;