1 /* readelf.c -- display contents of an ELF format file
2 Copyright (C) 1998-2015 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. */
54 /* Define BFD64 here, even if our default architecture is 32 bit ELF
55 as this will allow us to read in and parse 64bit and 32bit ELF files.
56 Only do this if we believe that the compiler can support a 64 bit
57 data type. For now we only rely on GCC being able to do this. */
66 #include "elf/common.h"
67 #include "elf/external.h"
68 #include "elf/internal.h"
71 /* Included here, before RELOC_MACROS_GEN_FUNC is defined, so that
72 we can obtain the H8 reloc numbers. We need these for the
73 get_reloc_size() function. We include h8.h again after defining
74 RELOC_MACROS_GEN_FUNC so that we get the naming function as well. */
79 /* Undo the effects of #including reloc-macros.h. */
81 #undef START_RELOC_NUMBERS
85 #undef END_RELOC_NUMBERS
86 #undef _RELOC_MACROS_H
88 /* The following headers use the elf/reloc-macros.h file to
89 automatically generate relocation recognition functions
90 such as elf_mips_reloc_type() */
92 #define RELOC_MACROS_GEN_FUNC
94 #include "elf/aarch64.h"
95 #include "elf/alpha.h"
100 #include "elf/cr16.h"
101 #include "elf/cris.h"
103 #include "elf/d10v.h"
104 #include "elf/d30v.h"
106 #include "elf/epiphany.h"
107 #include "elf/fr30.h"
109 #include "elf/ft32.h"
111 #include "elf/hppa.h"
112 #include "elf/i386.h"
113 #include "elf/i370.h"
114 #include "elf/i860.h"
115 #include "elf/i960.h"
116 #include "elf/ia64.h"
117 #include "elf/ip2k.h"
118 #include "elf/lm32.h"
119 #include "elf/iq2000.h"
120 #include "elf/m32c.h"
121 #include "elf/m32r.h"
122 #include "elf/m68k.h"
123 #include "elf/m68hc11.h"
124 #include "elf/mcore.h"
126 #include "elf/metag.h"
127 #include "elf/microblaze.h"
128 #include "elf/mips.h"
129 #include "elf/mmix.h"
130 #include "elf/mn10200.h"
131 #include "elf/mn10300.h"
132 #include "elf/moxie.h"
134 #include "elf/msp430.h"
135 #include "elf/nds32.h"
136 #include "elf/nios2.h"
137 #include "elf/or1k.h"
140 #include "elf/ppc64.h"
141 #include "elf/rl78.h"
143 #include "elf/s390.h"
144 #include "elf/score.h"
146 #include "elf/sparc.h"
148 #include "elf/tic6x.h"
149 #include "elf/tilegx.h"
150 #include "elf/tilepro.h"
151 #include "elf/v850.h"
153 #include "elf/visium.h"
154 #include "elf/x86-64.h"
155 #include "elf/xc16x.h"
156 #include "elf/xgate.h"
157 #include "elf/xstormy16.h"
158 #include "elf/xtensa.h"
161 #include "libiberty.h"
162 #include "safe-ctype.h"
163 #include "filenames.h"
166 #define offsetof(TYPE, MEMBER) ((size_t) &(((TYPE *) 0)->MEMBER))
169 char * program_name = "readelf";
170 static unsigned long archive_file_offset;
171 static unsigned long archive_file_size;
172 static bfd_size_type current_file_size;
173 static unsigned long dynamic_addr;
174 static bfd_size_type dynamic_size;
175 static size_t dynamic_nent;
176 static char * dynamic_strings;
177 static unsigned long dynamic_strings_length;
178 static char * string_table;
179 static unsigned long string_table_length;
180 static unsigned long num_dynamic_syms;
181 static Elf_Internal_Sym * dynamic_symbols;
182 static Elf_Internal_Syminfo * dynamic_syminfo;
183 static unsigned long dynamic_syminfo_offset;
184 static unsigned int dynamic_syminfo_nent;
185 static char program_interpreter[PATH_MAX];
186 static bfd_vma dynamic_info[DT_ENCODING];
187 static bfd_vma dynamic_info_DT_GNU_HASH;
188 static bfd_vma version_info[16];
189 static Elf_Internal_Ehdr elf_header;
190 static Elf_Internal_Shdr * section_headers;
191 static Elf_Internal_Phdr * program_headers;
192 static Elf_Internal_Dyn * dynamic_section;
193 static Elf_Internal_Shdr * symtab_shndx_hdr;
194 static int show_name;
195 static int do_dynamic;
197 static int do_dyn_syms;
199 static int do_sections;
200 static int do_section_groups;
201 static int do_section_details;
202 static int do_segments;
203 static int do_unwind;
204 static int do_using_dynamic;
205 static int do_header;
207 static int do_version;
208 static int do_histogram;
209 static int do_debugging;
212 static int do_archive_index;
213 static int is_32bit_elf;
217 struct group_list * next;
218 unsigned int section_index;
223 struct group_list * root;
224 unsigned int group_index;
227 static size_t group_count;
228 static struct group * section_groups;
229 static struct group ** section_headers_groups;
232 /* Flag bits indicating particular types of dump. */
233 #define HEX_DUMP (1 << 0) /* The -x command line switch. */
234 #define DISASS_DUMP (1 << 1) /* The -i command line switch. */
235 #define DEBUG_DUMP (1 << 2) /* The -w command line switch. */
236 #define STRING_DUMP (1 << 3) /* The -p command line switch. */
237 #define RELOC_DUMP (1 << 4) /* The -R command line switch. */
239 typedef unsigned char dump_type;
241 /* A linked list of the section names for which dumps were requested. */
242 struct dump_list_entry
246 struct dump_list_entry * next;
248 static struct dump_list_entry * dump_sects_byname;
250 /* A dynamic array of flags indicating for which sections a dump
251 has been requested via command line switches. */
252 static dump_type * cmdline_dump_sects = NULL;
253 static unsigned int num_cmdline_dump_sects = 0;
255 /* A dynamic array of flags indicating for which sections a dump of
256 some kind has been requested. It is reset on a per-object file
257 basis and then initialised from the cmdline_dump_sects array,
258 the results of interpreting the -w switch, and the
259 dump_sects_byname list. */
260 static dump_type * dump_sects = NULL;
261 static unsigned int num_dump_sects = 0;
264 /* How to print a vma value. */
265 typedef enum print_mode
277 /* Versioned symbol info. */
278 enum versioned_symbol_info
285 static const char *get_symbol_version_string
286 (FILE *file, int is_dynsym, const char *strtab,
287 unsigned long int strtab_size, unsigned int si,
288 Elf_Internal_Sym *psym, enum versioned_symbol_info *sym_info,
289 unsigned short *vna_other);
293 #define SECTION_NAME(X) \
294 ((X) == NULL ? _("<none>") \
295 : string_table == NULL ? _("<no-name>") \
296 : ((X)->sh_name >= string_table_length ? _("<corrupt>") \
297 : string_table + (X)->sh_name))
299 #define DT_VERSIONTAGIDX(tag) (DT_VERNEEDNUM - (tag)) /* Reverse order! */
301 #define GET_ELF_SYMBOLS(file, section, sym_count) \
302 (is_32bit_elf ? get_32bit_elf_symbols (file, section, sym_count) \
303 : get_64bit_elf_symbols (file, section, sym_count))
305 #define VALID_DYNAMIC_NAME(offset) ((dynamic_strings != NULL) && (offset < dynamic_strings_length))
306 /* GET_DYNAMIC_NAME asssumes that VALID_DYNAMIC_NAME has
307 already been called and verified that the string exists. */
308 #define GET_DYNAMIC_NAME(offset) (dynamic_strings + offset)
310 #define REMOVE_ARCH_BITS(ADDR) \
313 if (elf_header.e_machine == EM_ARM) \
318 /* Retrieve NMEMB structures, each SIZE bytes long from FILE starting at OFFSET +
319 the offset of the current archive member, if we are examining an archive.
320 Put the retrieved data into VAR, if it is not NULL. Otherwise allocate a buffer
321 using malloc and fill that. In either case return the pointer to the start of
322 the retrieved data or NULL if something went wrong. If something does go wrong
323 and REASON is not NULL then emit an error message using REASON as part of the
327 get_data (void * var, FILE * file, unsigned long offset, size_t size, size_t nmemb,
331 size_t amt = size * nmemb;
333 if (size == 0 || nmemb == 0)
336 /* Be kind to memory chekers (eg valgrind, address sanitizer) by not
337 attempting to allocate memory when the read is bound to fail. */
338 if (amt > current_file_size
339 || offset + archive_file_offset + amt > current_file_size)
342 error (_("Reading 0x%lx bytes extends past end of file for %s\n"),
343 (unsigned long) amt, reason);
347 if (fseek (file, archive_file_offset + offset, SEEK_SET))
350 error (_("Unable to seek to 0x%lx for %s\n"),
351 (unsigned long) archive_file_offset + offset, reason);
358 /* Check for overflow. */
359 if (nmemb < (~(size_t) 0 - 1) / size)
360 /* + 1 so that we can '\0' terminate invalid string table sections. */
361 mvar = malloc (size * nmemb + 1);
366 error (_("Out of memory allocating 0x%lx bytes for %s\n"),
367 (unsigned long)(size * nmemb), reason);
371 ((char *) mvar)[amt] = '\0';
374 if (fread (mvar, size, nmemb, file) != nmemb)
377 error (_("Unable to read in 0x%lx bytes of %s\n"),
378 (unsigned long) amt, reason);
387 /* Print a VMA value. */
390 print_vma (bfd_vma vma, print_mode mode)
403 return nc + printf ("%8.8" BFD_VMA_FMT "x", vma);
410 return printf ("%5" BFD_VMA_FMT "d", vma);
418 return nc + printf ("%" BFD_VMA_FMT "x", vma);
421 return printf ("%" BFD_VMA_FMT "d", vma);
424 return printf ("%" BFD_VMA_FMT "u", vma);
429 /* Display a symbol on stdout. Handles the display of control characters and
430 multibye characters (assuming the host environment supports them).
432 Display at most abs(WIDTH) characters, truncating as necessary, unless do_wide is true.
434 If WIDTH is negative then ensure that the output is at least (- WIDTH) characters,
435 padding as necessary.
437 Returns the number of emitted characters. */
440 print_symbol (int width, const char *symbol)
442 bfd_boolean extra_padding = FALSE;
444 #ifdef HAVE_MBSTATE_T
451 /* Keep the width positive. This also helps. */
453 extra_padding = TRUE;
458 /* Set the remaining width to a very large value.
459 This simplifies the code below. */
460 width_remaining = INT_MAX;
462 width_remaining = width;
464 #ifdef HAVE_MBSTATE_T
465 /* Initialise the multibyte conversion state. */
466 memset (& state, 0, sizeof (state));
469 while (width_remaining)
472 const char c = *symbol++;
477 /* Do not print control characters directly as they can affect terminal
478 settings. Such characters usually appear in the names generated
479 by the assembler for local labels. */
482 if (width_remaining < 2)
485 printf ("^%c", c + 0x40);
486 width_remaining -= 2;
489 else if (ISPRINT (c))
497 #ifdef HAVE_MBSTATE_T
500 /* Let printf do the hard work of displaying multibyte characters. */
501 printf ("%.1s", symbol - 1);
505 #ifdef HAVE_MBSTATE_T
506 /* Try to find out how many bytes made up the character that was
507 just printed. Advance the symbol pointer past the bytes that
509 n = mbrtowc (& w, symbol - 1, MB_CUR_MAX, & state);
513 if (n != (size_t) -1 && n != (size_t) -2 && n > 0)
518 if (extra_padding && num_printed < width)
520 /* Fill in the remaining spaces. */
521 printf ("%-*s", width - num_printed, " ");
528 /* Returns a pointer to a static buffer containing a printable version of
529 the given section's name. Like print_symbol, except that it does not try
530 to print multibyte characters, it just interprets them as hex values. */
533 printable_section_name (Elf_Internal_Shdr * sec)
535 #define MAX_PRINT_SEC_NAME_LEN 128
536 static char sec_name_buf [MAX_PRINT_SEC_NAME_LEN + 1];
537 const char * name = SECTION_NAME (sec);
538 char * buf = sec_name_buf;
540 unsigned int remaining = MAX_PRINT_SEC_NAME_LEN;
542 while ((c = * name ++) != 0)
553 else if (ISPRINT (c))
560 static char hex[17] = "0123456789ABCDEF";
565 * buf ++ = hex[(c & 0xf0) >> 4];
566 * buf ++ = hex[c & 0x0f];
580 printable_section_name_from_index (unsigned long ndx)
582 if (ndx >= elf_header.e_shnum)
583 return _("<corrupt>");
585 return printable_section_name (section_headers + ndx);
588 /* Return a pointer to section NAME, or NULL if no such section exists. */
590 static Elf_Internal_Shdr *
591 find_section (const char * name)
595 for (i = 0; i < elf_header.e_shnum; i++)
596 if (streq (SECTION_NAME (section_headers + i), name))
597 return section_headers + i;
602 /* Return a pointer to a section containing ADDR, or NULL if no such
605 static Elf_Internal_Shdr *
606 find_section_by_address (bfd_vma addr)
610 for (i = 0; i < elf_header.e_shnum; i++)
612 Elf_Internal_Shdr *sec = section_headers + i;
613 if (addr >= sec->sh_addr && addr < sec->sh_addr + sec->sh_size)
620 static Elf_Internal_Shdr *
621 find_section_by_type (unsigned int type)
625 for (i = 0; i < elf_header.e_shnum; i++)
627 Elf_Internal_Shdr *sec = section_headers + i;
628 if (sec->sh_type == type)
635 /* Return a pointer to section NAME, or NULL if no such section exists,
636 restricted to the list of sections given in SET. */
638 static Elf_Internal_Shdr *
639 find_section_in_set (const char * name, unsigned int * set)
645 while ((i = *set++) > 0)
646 if (streq (SECTION_NAME (section_headers + i), name))
647 return section_headers + i;
650 return find_section (name);
653 /* Read an unsigned LEB128 encoded value from p. Set *PLEN to the number of
656 static inline unsigned long
657 read_uleb128 (unsigned char *data,
658 unsigned int *length_return,
659 const unsigned char * const end)
661 return read_leb128 (data, length_return, FALSE, end);
664 /* Return true if the current file is for IA-64 machine and OpenVMS ABI.
665 This OS has so many departures from the ELF standard that we test it at
671 return elf_header.e_machine == EM_IA_64
672 && elf_header.e_ident[EI_OSABI] == ELFOSABI_OPENVMS;
675 /* Guess the relocation size commonly used by the specific machines. */
678 guess_is_rela (unsigned int e_machine)
682 /* Targets that use REL relocations. */
697 /* Targets that use RELA relocations. */
701 case EM_ADAPTEVA_EPIPHANY:
703 case EM_ALTERA_NIOS2:
723 case EM_LATTICEMICO32:
732 case EM_CYGNUS_MN10200:
734 case EM_CYGNUS_MN10300:
768 case EM_MICROBLAZE_OLD:
789 warn (_("Don't know about relocations on this machine architecture\n"));
795 slurp_rela_relocs (FILE * file,
796 unsigned long rel_offset,
797 unsigned long rel_size,
798 Elf_Internal_Rela ** relasp,
799 unsigned long * nrelasp)
801 Elf_Internal_Rela * relas;
807 Elf32_External_Rela * erelas;
809 erelas = (Elf32_External_Rela *) get_data (NULL, file, rel_offset, 1,
810 rel_size, _("32-bit relocation data"));
814 nrelas = rel_size / sizeof (Elf32_External_Rela);
816 relas = (Elf_Internal_Rela *) cmalloc (nrelas,
817 sizeof (Elf_Internal_Rela));
822 error (_("out of memory parsing relocs\n"));
826 for (i = 0; i < nrelas; i++)
828 relas[i].r_offset = BYTE_GET (erelas[i].r_offset);
829 relas[i].r_info = BYTE_GET (erelas[i].r_info);
830 relas[i].r_addend = BYTE_GET_SIGNED (erelas[i].r_addend);
837 Elf64_External_Rela * erelas;
839 erelas = (Elf64_External_Rela *) get_data (NULL, file, rel_offset, 1,
840 rel_size, _("64-bit relocation data"));
844 nrelas = rel_size / sizeof (Elf64_External_Rela);
846 relas = (Elf_Internal_Rela *) cmalloc (nrelas,
847 sizeof (Elf_Internal_Rela));
852 error (_("out of memory parsing relocs\n"));
856 for (i = 0; i < nrelas; i++)
858 relas[i].r_offset = BYTE_GET (erelas[i].r_offset);
859 relas[i].r_info = BYTE_GET (erelas[i].r_info);
860 relas[i].r_addend = BYTE_GET_SIGNED (erelas[i].r_addend);
862 /* The #ifdef BFD64 below is to prevent a compile time
863 warning. We know that if we do not have a 64 bit data
864 type that we will never execute this code anyway. */
866 if (elf_header.e_machine == EM_MIPS
867 && elf_header.e_ident[EI_DATA] != ELFDATA2MSB)
869 /* In little-endian objects, r_info isn't really a
870 64-bit little-endian value: it has a 32-bit
871 little-endian symbol index followed by four
872 individual byte fields. Reorder INFO
874 bfd_vma inf = relas[i].r_info;
875 inf = (((inf & 0xffffffff) << 32)
876 | ((inf >> 56) & 0xff)
877 | ((inf >> 40) & 0xff00)
878 | ((inf >> 24) & 0xff0000)
879 | ((inf >> 8) & 0xff000000));
880 relas[i].r_info = inf;
893 slurp_rel_relocs (FILE * file,
894 unsigned long rel_offset,
895 unsigned long rel_size,
896 Elf_Internal_Rela ** relsp,
897 unsigned long * nrelsp)
899 Elf_Internal_Rela * rels;
905 Elf32_External_Rel * erels;
907 erels = (Elf32_External_Rel *) get_data (NULL, file, rel_offset, 1,
908 rel_size, _("32-bit relocation data"));
912 nrels = rel_size / sizeof (Elf32_External_Rel);
914 rels = (Elf_Internal_Rela *) cmalloc (nrels, sizeof (Elf_Internal_Rela));
919 error (_("out of memory parsing relocs\n"));
923 for (i = 0; i < nrels; i++)
925 rels[i].r_offset = BYTE_GET (erels[i].r_offset);
926 rels[i].r_info = BYTE_GET (erels[i].r_info);
927 rels[i].r_addend = 0;
934 Elf64_External_Rel * erels;
936 erels = (Elf64_External_Rel *) get_data (NULL, file, rel_offset, 1,
937 rel_size, _("64-bit relocation data"));
941 nrels = rel_size / sizeof (Elf64_External_Rel);
943 rels = (Elf_Internal_Rela *) cmalloc (nrels, sizeof (Elf_Internal_Rela));
948 error (_("out of memory parsing relocs\n"));
952 for (i = 0; i < nrels; i++)
954 rels[i].r_offset = BYTE_GET (erels[i].r_offset);
955 rels[i].r_info = BYTE_GET (erels[i].r_info);
956 rels[i].r_addend = 0;
958 /* The #ifdef BFD64 below is to prevent a compile time
959 warning. We know that if we do not have a 64 bit data
960 type that we will never execute this code anyway. */
962 if (elf_header.e_machine == EM_MIPS
963 && elf_header.e_ident[EI_DATA] != ELFDATA2MSB)
965 /* In little-endian objects, r_info isn't really a
966 64-bit little-endian value: it has a 32-bit
967 little-endian symbol index followed by four
968 individual byte fields. Reorder INFO
970 bfd_vma inf = rels[i].r_info;
971 inf = (((inf & 0xffffffff) << 32)
972 | ((inf >> 56) & 0xff)
973 | ((inf >> 40) & 0xff00)
974 | ((inf >> 24) & 0xff0000)
975 | ((inf >> 8) & 0xff000000));
976 rels[i].r_info = inf;
988 /* Returns the reloc type extracted from the reloc info field. */
991 get_reloc_type (bfd_vma reloc_info)
994 return ELF32_R_TYPE (reloc_info);
996 switch (elf_header.e_machine)
999 /* Note: We assume that reloc_info has already been adjusted for us. */
1000 return ELF64_MIPS_R_TYPE (reloc_info);
1003 return ELF64_R_TYPE_ID (reloc_info);
1006 return ELF64_R_TYPE (reloc_info);
1010 /* Return the symbol index extracted from the reloc info field. */
1013 get_reloc_symindex (bfd_vma reloc_info)
1015 return is_32bit_elf ? ELF32_R_SYM (reloc_info) : ELF64_R_SYM (reloc_info);
1018 static inline bfd_boolean
1019 uses_msp430x_relocs (void)
1022 elf_header.e_machine == EM_MSP430 /* Paranoia. */
1023 /* GCC uses osabi == ELFOSBI_STANDALONE. */
1024 && (((elf_header.e_flags & EF_MSP430_MACH) == E_MSP430_MACH_MSP430X)
1025 /* TI compiler uses ELFOSABI_NONE. */
1026 || (elf_header.e_ident[EI_OSABI] == ELFOSABI_NONE));
1029 /* Display the contents of the relocation data found at the specified
1033 dump_relocations (FILE * file,
1034 unsigned long rel_offset,
1035 unsigned long rel_size,
1036 Elf_Internal_Sym * symtab,
1037 unsigned long nsyms,
1039 unsigned long strtablen,
1044 Elf_Internal_Rela * rels;
1046 if (is_rela == UNKNOWN)
1047 is_rela = guess_is_rela (elf_header.e_machine);
1051 if (!slurp_rela_relocs (file, rel_offset, rel_size, &rels, &rel_size))
1056 if (!slurp_rel_relocs (file, rel_offset, rel_size, &rels, &rel_size))
1065 printf (_(" Offset Info Type Sym. Value Symbol's Name + Addend\n"));
1067 printf (_(" Offset Info Type Sym.Value Sym. Name + Addend\n"));
1072 printf (_(" Offset Info Type Sym. Value Symbol's Name\n"));
1074 printf (_(" Offset Info Type Sym.Value Sym. Name\n"));
1082 printf (_(" Offset Info Type Symbol's Value Symbol's Name + Addend\n"));
1084 printf (_(" Offset Info Type Sym. Value Sym. Name + Addend\n"));
1089 printf (_(" Offset Info Type Symbol's Value Symbol's Name\n"));
1091 printf (_(" Offset Info Type Sym. Value Sym. Name\n"));
1095 for (i = 0; i < rel_size; i++)
1100 bfd_vma symtab_index;
1103 offset = rels[i].r_offset;
1104 inf = rels[i].r_info;
1106 type = get_reloc_type (inf);
1107 symtab_index = get_reloc_symindex (inf);
1111 printf ("%8.8lx %8.8lx ",
1112 (unsigned long) offset & 0xffffffff,
1113 (unsigned long) inf & 0xffffffff);
1117 #if BFD_HOST_64BIT_LONG
1119 ? "%16.16lx %16.16lx "
1120 : "%12.12lx %12.12lx ",
1122 #elif BFD_HOST_64BIT_LONG_LONG
1125 ? "%16.16llx %16.16llx "
1126 : "%12.12llx %12.12llx ",
1130 ? "%16.16I64x %16.16I64x "
1131 : "%12.12I64x %12.12I64x ",
1136 ? "%8.8lx%8.8lx %8.8lx%8.8lx "
1137 : "%4.4lx%8.8lx %4.4lx%8.8lx ",
1138 _bfd_int64_high (offset),
1139 _bfd_int64_low (offset),
1140 _bfd_int64_high (inf),
1141 _bfd_int64_low (inf));
1145 switch (elf_header.e_machine)
1152 rtype = elf_aarch64_reloc_type (type);
1156 case EM_CYGNUS_M32R:
1157 rtype = elf_m32r_reloc_type (type);
1162 rtype = elf_i386_reloc_type (type);
1167 rtype = elf_m68hc11_reloc_type (type);
1171 rtype = elf_m68k_reloc_type (type);
1175 rtype = elf_i960_reloc_type (type);
1180 rtype = elf_avr_reloc_type (type);
1183 case EM_OLD_SPARCV9:
1184 case EM_SPARC32PLUS:
1187 rtype = elf_sparc_reloc_type (type);
1191 rtype = elf_spu_reloc_type (type);
1195 rtype = v800_reloc_type (type);
1198 case EM_CYGNUS_V850:
1199 rtype = v850_reloc_type (type);
1203 case EM_CYGNUS_D10V:
1204 rtype = elf_d10v_reloc_type (type);
1208 case EM_CYGNUS_D30V:
1209 rtype = elf_d30v_reloc_type (type);
1213 rtype = elf_dlx_reloc_type (type);
1217 rtype = elf_sh_reloc_type (type);
1221 case EM_CYGNUS_MN10300:
1222 rtype = elf_mn10300_reloc_type (type);
1226 case EM_CYGNUS_MN10200:
1227 rtype = elf_mn10200_reloc_type (type);
1231 case EM_CYGNUS_FR30:
1232 rtype = elf_fr30_reloc_type (type);
1236 rtype = elf_frv_reloc_type (type);
1240 rtype = elf_ft32_reloc_type (type);
1244 rtype = elf_mcore_reloc_type (type);
1248 rtype = elf_mmix_reloc_type (type);
1252 rtype = elf_moxie_reloc_type (type);
1256 if (uses_msp430x_relocs ())
1258 rtype = elf_msp430x_reloc_type (type);
1262 rtype = elf_msp430_reloc_type (type);
1266 rtype = elf_nds32_reloc_type (type);
1270 rtype = elf_ppc_reloc_type (type);
1274 rtype = elf_ppc64_reloc_type (type);
1278 case EM_MIPS_RS3_LE:
1279 rtype = elf_mips_reloc_type (type);
1283 rtype = elf_alpha_reloc_type (type);
1287 rtype = elf_arm_reloc_type (type);
1291 rtype = elf_arc_reloc_type (type);
1295 rtype = elf_hppa_reloc_type (type);
1301 rtype = elf_h8_reloc_type (type);
1305 rtype = elf_or1k_reloc_type (type);
1310 rtype = elf_pj_reloc_type (type);
1313 rtype = elf_ia64_reloc_type (type);
1317 rtype = elf_cris_reloc_type (type);
1321 rtype = elf_i860_reloc_type (type);
1327 rtype = elf_x86_64_reloc_type (type);
1331 rtype = i370_reloc_type (type);
1336 rtype = elf_s390_reloc_type (type);
1340 rtype = elf_score_reloc_type (type);
1344 rtype = elf_xstormy16_reloc_type (type);
1348 rtype = elf_crx_reloc_type (type);
1352 rtype = elf_vax_reloc_type (type);
1356 rtype = elf_visium_reloc_type (type);
1359 case EM_ADAPTEVA_EPIPHANY:
1360 rtype = elf_epiphany_reloc_type (type);
1365 rtype = elf_ip2k_reloc_type (type);
1369 rtype = elf_iq2000_reloc_type (type);
1374 rtype = elf_xtensa_reloc_type (type);
1377 case EM_LATTICEMICO32:
1378 rtype = elf_lm32_reloc_type (type);
1383 rtype = elf_m32c_reloc_type (type);
1387 rtype = elf_mt_reloc_type (type);
1391 rtype = elf_bfin_reloc_type (type);
1395 rtype = elf_mep_reloc_type (type);
1399 rtype = elf_cr16_reloc_type (type);
1403 case EM_MICROBLAZE_OLD:
1404 rtype = elf_microblaze_reloc_type (type);
1408 rtype = elf_rl78_reloc_type (type);
1412 rtype = elf_rx_reloc_type (type);
1416 rtype = elf_metag_reloc_type (type);
1421 rtype = elf_xc16x_reloc_type (type);
1425 rtype = elf_tic6x_reloc_type (type);
1429 rtype = elf_tilegx_reloc_type (type);
1433 rtype = elf_tilepro_reloc_type (type);
1437 rtype = elf_xgate_reloc_type (type);
1440 case EM_ALTERA_NIOS2:
1441 rtype = elf_nios2_reloc_type (type);
1446 printf (_("unrecognized: %-7lx"), (unsigned long) type & 0xffffffff);
1448 printf (do_wide ? "%-22.22s" : "%-17.17s", rtype);
1450 if (elf_header.e_machine == EM_ALPHA
1452 && streq (rtype, "R_ALPHA_LITUSE")
1455 switch (rels[i].r_addend)
1457 case LITUSE_ALPHA_ADDR: rtype = "ADDR"; break;
1458 case LITUSE_ALPHA_BASE: rtype = "BASE"; break;
1459 case LITUSE_ALPHA_BYTOFF: rtype = "BYTOFF"; break;
1460 case LITUSE_ALPHA_JSR: rtype = "JSR"; break;
1461 case LITUSE_ALPHA_TLSGD: rtype = "TLSGD"; break;
1462 case LITUSE_ALPHA_TLSLDM: rtype = "TLSLDM"; break;
1463 case LITUSE_ALPHA_JSRDIRECT: rtype = "JSRDIRECT"; break;
1464 default: rtype = NULL;
1467 printf (" (%s)", rtype);
1471 printf (_("<unknown addend: %lx>"),
1472 (unsigned long) rels[i].r_addend);
1475 else if (symtab_index)
1477 if (symtab == NULL || symtab_index >= nsyms)
1478 printf (_(" bad symbol index: %08lx"), (unsigned long) symtab_index);
1481 Elf_Internal_Sym * psym;
1482 const char * version_string;
1483 enum versioned_symbol_info sym_info;
1484 unsigned short vna_other;
1486 psym = symtab + symtab_index;
1489 = get_symbol_version_string (file, is_dynsym,
1498 if (ELF_ST_TYPE (psym->st_info) == STT_GNU_IFUNC)
1502 unsigned int width = is_32bit_elf ? 8 : 14;
1504 /* Relocations against GNU_IFUNC symbols do not use the value
1505 of the symbol as the address to relocate against. Instead
1506 they invoke the function named by the symbol and use its
1507 result as the address for relocation.
1509 To indicate this to the user, do not display the value of
1510 the symbol in the "Symbols's Value" field. Instead show
1511 its name followed by () as a hint that the symbol is
1515 || psym->st_name == 0
1516 || psym->st_name >= strtablen)
1519 name = strtab + psym->st_name;
1521 len = print_symbol (width, name);
1523 printf (sym_info == symbol_public ? "@@%s" : "@%s",
1525 printf ("()%-*s", len <= width ? (width + 1) - len : 1, " ");
1529 print_vma (psym->st_value, LONG_HEX);
1531 printf (is_32bit_elf ? " " : " ");
1534 if (psym->st_name == 0)
1536 const char * sec_name = "<null>";
1539 if (ELF_ST_TYPE (psym->st_info) == STT_SECTION)
1541 if (psym->st_shndx < elf_header.e_shnum)
1542 sec_name = SECTION_NAME (section_headers + psym->st_shndx);
1543 else if (psym->st_shndx == SHN_ABS)
1545 else if (psym->st_shndx == SHN_COMMON)
1546 sec_name = "COMMON";
1547 else if ((elf_header.e_machine == EM_MIPS
1548 && psym->st_shndx == SHN_MIPS_SCOMMON)
1549 || (elf_header.e_machine == EM_TI_C6000
1550 && psym->st_shndx == SHN_TIC6X_SCOMMON))
1551 sec_name = "SCOMMON";
1552 else if (elf_header.e_machine == EM_MIPS
1553 && psym->st_shndx == SHN_MIPS_SUNDEFINED)
1554 sec_name = "SUNDEF";
1555 else if ((elf_header.e_machine == EM_X86_64
1556 || elf_header.e_machine == EM_L1OM
1557 || elf_header.e_machine == EM_K1OM)
1558 && psym->st_shndx == SHN_X86_64_LCOMMON)
1559 sec_name = "LARGE_COMMON";
1560 else if (elf_header.e_machine == EM_IA_64
1561 && elf_header.e_ident[EI_OSABI] == ELFOSABI_HPUX
1562 && psym->st_shndx == SHN_IA_64_ANSI_COMMON)
1563 sec_name = "ANSI_COM";
1564 else if (is_ia64_vms ()
1565 && psym->st_shndx == SHN_IA_64_VMS_SYMVEC)
1566 sec_name = "VMS_SYMVEC";
1569 sprintf (name_buf, "<section 0x%x>",
1570 (unsigned int) psym->st_shndx);
1571 sec_name = name_buf;
1574 print_symbol (22, sec_name);
1576 else if (strtab == NULL)
1577 printf (_("<string table index: %3ld>"), psym->st_name);
1578 else if (psym->st_name >= strtablen)
1579 printf (_("<corrupt string table index: %3ld>"), psym->st_name);
1582 print_symbol (22, strtab + psym->st_name);
1584 printf (sym_info == symbol_public ? "@@%s" : "@%s",
1590 bfd_signed_vma off = rels[i].r_addend;
1593 printf (" - %" BFD_VMA_FMT "x", - off);
1595 printf (" + %" BFD_VMA_FMT "x", off);
1601 bfd_signed_vma off = rels[i].r_addend;
1603 printf ("%*c", is_32bit_elf ? 12 : 20, ' ');
1605 printf ("-%" BFD_VMA_FMT "x", - off);
1607 printf ("%" BFD_VMA_FMT "x", off);
1610 if (elf_header.e_machine == EM_SPARCV9
1612 && streq (rtype, "R_SPARC_OLO10"))
1613 printf (" + %lx", (unsigned long) ELF64_R_TYPE_DATA (inf));
1618 if (! is_32bit_elf && elf_header.e_machine == EM_MIPS)
1620 bfd_vma type2 = ELF64_MIPS_R_TYPE2 (inf);
1621 bfd_vma type3 = ELF64_MIPS_R_TYPE3 (inf);
1622 const char * rtype2 = elf_mips_reloc_type (type2);
1623 const char * rtype3 = elf_mips_reloc_type (type3);
1625 printf (" Type2: ");
1628 printf (_("unrecognized: %-7lx"),
1629 (unsigned long) type2 & 0xffffffff);
1631 printf ("%-17.17s", rtype2);
1633 printf ("\n Type3: ");
1636 printf (_("unrecognized: %-7lx"),
1637 (unsigned long) type3 & 0xffffffff);
1639 printf ("%-17.17s", rtype3);
1650 get_mips_dynamic_type (unsigned long type)
1654 case DT_MIPS_RLD_VERSION: return "MIPS_RLD_VERSION";
1655 case DT_MIPS_TIME_STAMP: return "MIPS_TIME_STAMP";
1656 case DT_MIPS_ICHECKSUM: return "MIPS_ICHECKSUM";
1657 case DT_MIPS_IVERSION: return "MIPS_IVERSION";
1658 case DT_MIPS_FLAGS: return "MIPS_FLAGS";
1659 case DT_MIPS_BASE_ADDRESS: return "MIPS_BASE_ADDRESS";
1660 case DT_MIPS_MSYM: return "MIPS_MSYM";
1661 case DT_MIPS_CONFLICT: return "MIPS_CONFLICT";
1662 case DT_MIPS_LIBLIST: return "MIPS_LIBLIST";
1663 case DT_MIPS_LOCAL_GOTNO: return "MIPS_LOCAL_GOTNO";
1664 case DT_MIPS_CONFLICTNO: return "MIPS_CONFLICTNO";
1665 case DT_MIPS_LIBLISTNO: return "MIPS_LIBLISTNO";
1666 case DT_MIPS_SYMTABNO: return "MIPS_SYMTABNO";
1667 case DT_MIPS_UNREFEXTNO: return "MIPS_UNREFEXTNO";
1668 case DT_MIPS_GOTSYM: return "MIPS_GOTSYM";
1669 case DT_MIPS_HIPAGENO: return "MIPS_HIPAGENO";
1670 case DT_MIPS_RLD_MAP: return "MIPS_RLD_MAP";
1671 case DT_MIPS_DELTA_CLASS: return "MIPS_DELTA_CLASS";
1672 case DT_MIPS_DELTA_CLASS_NO: return "MIPS_DELTA_CLASS_NO";
1673 case DT_MIPS_DELTA_INSTANCE: return "MIPS_DELTA_INSTANCE";
1674 case DT_MIPS_DELTA_INSTANCE_NO: return "MIPS_DELTA_INSTANCE_NO";
1675 case DT_MIPS_DELTA_RELOC: return "MIPS_DELTA_RELOC";
1676 case DT_MIPS_DELTA_RELOC_NO: return "MIPS_DELTA_RELOC_NO";
1677 case DT_MIPS_DELTA_SYM: return "MIPS_DELTA_SYM";
1678 case DT_MIPS_DELTA_SYM_NO: return "MIPS_DELTA_SYM_NO";
1679 case DT_MIPS_DELTA_CLASSSYM: return "MIPS_DELTA_CLASSSYM";
1680 case DT_MIPS_DELTA_CLASSSYM_NO: return "MIPS_DELTA_CLASSSYM_NO";
1681 case DT_MIPS_CXX_FLAGS: return "MIPS_CXX_FLAGS";
1682 case DT_MIPS_PIXIE_INIT: return "MIPS_PIXIE_INIT";
1683 case DT_MIPS_SYMBOL_LIB: return "MIPS_SYMBOL_LIB";
1684 case DT_MIPS_LOCALPAGE_GOTIDX: return "MIPS_LOCALPAGE_GOTIDX";
1685 case DT_MIPS_LOCAL_GOTIDX: return "MIPS_LOCAL_GOTIDX";
1686 case DT_MIPS_HIDDEN_GOTIDX: return "MIPS_HIDDEN_GOTIDX";
1687 case DT_MIPS_PROTECTED_GOTIDX: return "MIPS_PROTECTED_GOTIDX";
1688 case DT_MIPS_OPTIONS: return "MIPS_OPTIONS";
1689 case DT_MIPS_INTERFACE: return "MIPS_INTERFACE";
1690 case DT_MIPS_DYNSTR_ALIGN: return "MIPS_DYNSTR_ALIGN";
1691 case DT_MIPS_INTERFACE_SIZE: return "MIPS_INTERFACE_SIZE";
1692 case DT_MIPS_RLD_TEXT_RESOLVE_ADDR: return "MIPS_RLD_TEXT_RESOLVE_ADDR";
1693 case DT_MIPS_PERF_SUFFIX: return "MIPS_PERF_SUFFIX";
1694 case DT_MIPS_COMPACT_SIZE: return "MIPS_COMPACT_SIZE";
1695 case DT_MIPS_GP_VALUE: return "MIPS_GP_VALUE";
1696 case DT_MIPS_AUX_DYNAMIC: return "MIPS_AUX_DYNAMIC";
1697 case DT_MIPS_PLTGOT: return "MIPS_PLTGOT";
1698 case DT_MIPS_RWPLT: return "MIPS_RWPLT";
1705 get_sparc64_dynamic_type (unsigned long type)
1709 case DT_SPARC_REGISTER: return "SPARC_REGISTER";
1716 get_ppc_dynamic_type (unsigned long type)
1720 case DT_PPC_GOT: return "PPC_GOT";
1721 case DT_PPC_OPT: return "PPC_OPT";
1728 get_ppc64_dynamic_type (unsigned long type)
1732 case DT_PPC64_GLINK: return "PPC64_GLINK";
1733 case DT_PPC64_OPD: return "PPC64_OPD";
1734 case DT_PPC64_OPDSZ: return "PPC64_OPDSZ";
1735 case DT_PPC64_OPT: return "PPC64_OPT";
1742 get_parisc_dynamic_type (unsigned long type)
1746 case DT_HP_LOAD_MAP: return "HP_LOAD_MAP";
1747 case DT_HP_DLD_FLAGS: return "HP_DLD_FLAGS";
1748 case DT_HP_DLD_HOOK: return "HP_DLD_HOOK";
1749 case DT_HP_UX10_INIT: return "HP_UX10_INIT";
1750 case DT_HP_UX10_INITSZ: return "HP_UX10_INITSZ";
1751 case DT_HP_PREINIT: return "HP_PREINIT";
1752 case DT_HP_PREINITSZ: return "HP_PREINITSZ";
1753 case DT_HP_NEEDED: return "HP_NEEDED";
1754 case DT_HP_TIME_STAMP: return "HP_TIME_STAMP";
1755 case DT_HP_CHECKSUM: return "HP_CHECKSUM";
1756 case DT_HP_GST_SIZE: return "HP_GST_SIZE";
1757 case DT_HP_GST_VERSION: return "HP_GST_VERSION";
1758 case DT_HP_GST_HASHVAL: return "HP_GST_HASHVAL";
1759 case DT_HP_EPLTREL: return "HP_GST_EPLTREL";
1760 case DT_HP_EPLTRELSZ: return "HP_GST_EPLTRELSZ";
1761 case DT_HP_FILTERED: return "HP_FILTERED";
1762 case DT_HP_FILTER_TLS: return "HP_FILTER_TLS";
1763 case DT_HP_COMPAT_FILTERED: return "HP_COMPAT_FILTERED";
1764 case DT_HP_LAZYLOAD: return "HP_LAZYLOAD";
1765 case DT_HP_BIND_NOW_COUNT: return "HP_BIND_NOW_COUNT";
1766 case DT_PLT: return "PLT";
1767 case DT_PLT_SIZE: return "PLT_SIZE";
1768 case DT_DLT: return "DLT";
1769 case DT_DLT_SIZE: return "DLT_SIZE";
1776 get_ia64_dynamic_type (unsigned long type)
1780 case DT_IA_64_PLT_RESERVE: return "IA_64_PLT_RESERVE";
1781 case DT_IA_64_VMS_SUBTYPE: return "VMS_SUBTYPE";
1782 case DT_IA_64_VMS_IMGIOCNT: return "VMS_IMGIOCNT";
1783 case DT_IA_64_VMS_LNKFLAGS: return "VMS_LNKFLAGS";
1784 case DT_IA_64_VMS_VIR_MEM_BLK_SIZ: return "VMS_VIR_MEM_BLK_SIZ";
1785 case DT_IA_64_VMS_IDENT: return "VMS_IDENT";
1786 case DT_IA_64_VMS_NEEDED_IDENT: return "VMS_NEEDED_IDENT";
1787 case DT_IA_64_VMS_IMG_RELA_CNT: return "VMS_IMG_RELA_CNT";
1788 case DT_IA_64_VMS_SEG_RELA_CNT: return "VMS_SEG_RELA_CNT";
1789 case DT_IA_64_VMS_FIXUP_RELA_CNT: return "VMS_FIXUP_RELA_CNT";
1790 case DT_IA_64_VMS_FIXUP_NEEDED: return "VMS_FIXUP_NEEDED";
1791 case DT_IA_64_VMS_SYMVEC_CNT: return "VMS_SYMVEC_CNT";
1792 case DT_IA_64_VMS_XLATED: return "VMS_XLATED";
1793 case DT_IA_64_VMS_STACKSIZE: return "VMS_STACKSIZE";
1794 case DT_IA_64_VMS_UNWINDSZ: return "VMS_UNWINDSZ";
1795 case DT_IA_64_VMS_UNWIND_CODSEG: return "VMS_UNWIND_CODSEG";
1796 case DT_IA_64_VMS_UNWIND_INFOSEG: return "VMS_UNWIND_INFOSEG";
1797 case DT_IA_64_VMS_LINKTIME: return "VMS_LINKTIME";
1798 case DT_IA_64_VMS_SEG_NO: return "VMS_SEG_NO";
1799 case DT_IA_64_VMS_SYMVEC_OFFSET: return "VMS_SYMVEC_OFFSET";
1800 case DT_IA_64_VMS_SYMVEC_SEG: return "VMS_SYMVEC_SEG";
1801 case DT_IA_64_VMS_UNWIND_OFFSET: return "VMS_UNWIND_OFFSET";
1802 case DT_IA_64_VMS_UNWIND_SEG: return "VMS_UNWIND_SEG";
1803 case DT_IA_64_VMS_STRTAB_OFFSET: return "VMS_STRTAB_OFFSET";
1804 case DT_IA_64_VMS_SYSVER_OFFSET: return "VMS_SYSVER_OFFSET";
1805 case DT_IA_64_VMS_IMG_RELA_OFF: return "VMS_IMG_RELA_OFF";
1806 case DT_IA_64_VMS_SEG_RELA_OFF: return "VMS_SEG_RELA_OFF";
1807 case DT_IA_64_VMS_FIXUP_RELA_OFF: return "VMS_FIXUP_RELA_OFF";
1808 case DT_IA_64_VMS_PLTGOT_OFFSET: return "VMS_PLTGOT_OFFSET";
1809 case DT_IA_64_VMS_PLTGOT_SEG: return "VMS_PLTGOT_SEG";
1810 case DT_IA_64_VMS_FPMODE: return "VMS_FPMODE";
1817 get_alpha_dynamic_type (unsigned long type)
1821 case DT_ALPHA_PLTRO: return "ALPHA_PLTRO";
1828 get_score_dynamic_type (unsigned long type)
1832 case DT_SCORE_BASE_ADDRESS: return "SCORE_BASE_ADDRESS";
1833 case DT_SCORE_LOCAL_GOTNO: return "SCORE_LOCAL_GOTNO";
1834 case DT_SCORE_SYMTABNO: return "SCORE_SYMTABNO";
1835 case DT_SCORE_GOTSYM: return "SCORE_GOTSYM";
1836 case DT_SCORE_UNREFEXTNO: return "SCORE_UNREFEXTNO";
1837 case DT_SCORE_HIPAGENO: return "SCORE_HIPAGENO";
1844 get_tic6x_dynamic_type (unsigned long type)
1848 case DT_C6000_GSYM_OFFSET: return "C6000_GSYM_OFFSET";
1849 case DT_C6000_GSTR_OFFSET: return "C6000_GSTR_OFFSET";
1850 case DT_C6000_DSBT_BASE: return "C6000_DSBT_BASE";
1851 case DT_C6000_DSBT_SIZE: return "C6000_DSBT_SIZE";
1852 case DT_C6000_PREEMPTMAP: return "C6000_PREEMPTMAP";
1853 case DT_C6000_DSBT_INDEX: return "C6000_DSBT_INDEX";
1860 get_nios2_dynamic_type (unsigned long type)
1864 case DT_NIOS2_GP: return "NIOS2_GP";
1871 get_dynamic_type (unsigned long type)
1873 static char buff[64];
1877 case DT_NULL: return "NULL";
1878 case DT_NEEDED: return "NEEDED";
1879 case DT_PLTRELSZ: return "PLTRELSZ";
1880 case DT_PLTGOT: return "PLTGOT";
1881 case DT_HASH: return "HASH";
1882 case DT_STRTAB: return "STRTAB";
1883 case DT_SYMTAB: return "SYMTAB";
1884 case DT_RELA: return "RELA";
1885 case DT_RELASZ: return "RELASZ";
1886 case DT_RELAENT: return "RELAENT";
1887 case DT_STRSZ: return "STRSZ";
1888 case DT_SYMENT: return "SYMENT";
1889 case DT_INIT: return "INIT";
1890 case DT_FINI: return "FINI";
1891 case DT_SONAME: return "SONAME";
1892 case DT_RPATH: return "RPATH";
1893 case DT_SYMBOLIC: return "SYMBOLIC";
1894 case DT_REL: return "REL";
1895 case DT_RELSZ: return "RELSZ";
1896 case DT_RELENT: return "RELENT";
1897 case DT_PLTREL: return "PLTREL";
1898 case DT_DEBUG: return "DEBUG";
1899 case DT_TEXTREL: return "TEXTREL";
1900 case DT_JMPREL: return "JMPREL";
1901 case DT_BIND_NOW: return "BIND_NOW";
1902 case DT_INIT_ARRAY: return "INIT_ARRAY";
1903 case DT_FINI_ARRAY: return "FINI_ARRAY";
1904 case DT_INIT_ARRAYSZ: return "INIT_ARRAYSZ";
1905 case DT_FINI_ARRAYSZ: return "FINI_ARRAYSZ";
1906 case DT_RUNPATH: return "RUNPATH";
1907 case DT_FLAGS: return "FLAGS";
1909 case DT_PREINIT_ARRAY: return "PREINIT_ARRAY";
1910 case DT_PREINIT_ARRAYSZ: return "PREINIT_ARRAYSZ";
1912 case DT_CHECKSUM: return "CHECKSUM";
1913 case DT_PLTPADSZ: return "PLTPADSZ";
1914 case DT_MOVEENT: return "MOVEENT";
1915 case DT_MOVESZ: return "MOVESZ";
1916 case DT_FEATURE: return "FEATURE";
1917 case DT_POSFLAG_1: return "POSFLAG_1";
1918 case DT_SYMINSZ: return "SYMINSZ";
1919 case DT_SYMINENT: return "SYMINENT"; /* aka VALRNGHI */
1921 case DT_ADDRRNGLO: return "ADDRRNGLO";
1922 case DT_CONFIG: return "CONFIG";
1923 case DT_DEPAUDIT: return "DEPAUDIT";
1924 case DT_AUDIT: return "AUDIT";
1925 case DT_PLTPAD: return "PLTPAD";
1926 case DT_MOVETAB: return "MOVETAB";
1927 case DT_SYMINFO: return "SYMINFO"; /* aka ADDRRNGHI */
1929 case DT_VERSYM: return "VERSYM";
1931 case DT_TLSDESC_GOT: return "TLSDESC_GOT";
1932 case DT_TLSDESC_PLT: return "TLSDESC_PLT";
1933 case DT_RELACOUNT: return "RELACOUNT";
1934 case DT_RELCOUNT: return "RELCOUNT";
1935 case DT_FLAGS_1: return "FLAGS_1";
1936 case DT_VERDEF: return "VERDEF";
1937 case DT_VERDEFNUM: return "VERDEFNUM";
1938 case DT_VERNEED: return "VERNEED";
1939 case DT_VERNEEDNUM: return "VERNEEDNUM";
1941 case DT_AUXILIARY: return "AUXILIARY";
1942 case DT_USED: return "USED";
1943 case DT_FILTER: return "FILTER";
1945 case DT_GNU_PRELINKED: return "GNU_PRELINKED";
1946 case DT_GNU_CONFLICT: return "GNU_CONFLICT";
1947 case DT_GNU_CONFLICTSZ: return "GNU_CONFLICTSZ";
1948 case DT_GNU_LIBLIST: return "GNU_LIBLIST";
1949 case DT_GNU_LIBLISTSZ: return "GNU_LIBLISTSZ";
1950 case DT_GNU_HASH: return "GNU_HASH";
1953 if ((type >= DT_LOPROC) && (type <= DT_HIPROC))
1955 const char * result;
1957 switch (elf_header.e_machine)
1960 case EM_MIPS_RS3_LE:
1961 result = get_mips_dynamic_type (type);
1964 result = get_sparc64_dynamic_type (type);
1967 result = get_ppc_dynamic_type (type);
1970 result = get_ppc64_dynamic_type (type);
1973 result = get_ia64_dynamic_type (type);
1976 result = get_alpha_dynamic_type (type);
1979 result = get_score_dynamic_type (type);
1982 result = get_tic6x_dynamic_type (type);
1984 case EM_ALTERA_NIOS2:
1985 result = get_nios2_dynamic_type (type);
1995 snprintf (buff, sizeof (buff), _("Processor Specific: %lx"), type);
1997 else if (((type >= DT_LOOS) && (type <= DT_HIOS))
1998 || (elf_header.e_machine == EM_PARISC
1999 && (type >= OLD_DT_LOOS) && (type <= OLD_DT_HIOS)))
2001 const char * result;
2003 switch (elf_header.e_machine)
2006 result = get_parisc_dynamic_type (type);
2009 result = get_ia64_dynamic_type (type);
2019 snprintf (buff, sizeof (buff), _("Operating System specific: %lx"),
2023 snprintf (buff, sizeof (buff), _("<unknown>: %lx"), type);
2030 get_file_type (unsigned e_type)
2032 static char buff[32];
2036 case ET_NONE: return _("NONE (None)");
2037 case ET_REL: return _("REL (Relocatable file)");
2038 case ET_EXEC: return _("EXEC (Executable file)");
2039 case ET_DYN: return _("DYN (Shared object file)");
2040 case ET_CORE: return _("CORE (Core file)");
2043 if ((e_type >= ET_LOPROC) && (e_type <= ET_HIPROC))
2044 snprintf (buff, sizeof (buff), _("Processor Specific: (%x)"), e_type);
2045 else if ((e_type >= ET_LOOS) && (e_type <= ET_HIOS))
2046 snprintf (buff, sizeof (buff), _("OS Specific: (%x)"), e_type);
2048 snprintf (buff, sizeof (buff), _("<unknown>: %x"), e_type);
2054 get_machine_name (unsigned e_machine)
2056 static char buff[64]; /* XXX */
2060 case EM_NONE: return _("None");
2061 case EM_AARCH64: return "AArch64";
2062 case EM_M32: return "WE32100";
2063 case EM_SPARC: return "Sparc";
2064 case EM_SPU: return "SPU";
2065 case EM_386: return "Intel 80386";
2066 case EM_68K: return "MC68000";
2067 case EM_88K: return "MC88000";
2068 case EM_486: return "Intel 80486";
2069 case EM_860: return "Intel 80860";
2070 case EM_MIPS: return "MIPS R3000";
2071 case EM_S370: return "IBM System/370";
2072 case EM_MIPS_RS3_LE: return "MIPS R4000 big-endian";
2073 case EM_OLD_SPARCV9: return "Sparc v9 (old)";
2074 case EM_PARISC: return "HPPA";
2075 case EM_PPC_OLD: return "Power PC (old)";
2076 case EM_SPARC32PLUS: return "Sparc v8+" ;
2077 case EM_960: return "Intel 90860";
2078 case EM_PPC: return "PowerPC";
2079 case EM_PPC64: return "PowerPC64";
2080 case EM_FR20: return "Fujitsu FR20";
2081 case EM_FT32: return "FTDI FT32";
2082 case EM_RH32: return "TRW RH32";
2083 case EM_MCORE: return "MCORE";
2084 case EM_ARM: return "ARM";
2085 case EM_OLD_ALPHA: return "Digital Alpha (old)";
2086 case EM_SH: return "Renesas / SuperH SH";
2087 case EM_SPARCV9: return "Sparc v9";
2088 case EM_TRICORE: return "Siemens Tricore";
2089 case EM_ARC: return "ARC";
2090 case EM_H8_300: return "Renesas H8/300";
2091 case EM_H8_300H: return "Renesas H8/300H";
2092 case EM_H8S: return "Renesas H8S";
2093 case EM_H8_500: return "Renesas H8/500";
2094 case EM_IA_64: return "Intel IA-64";
2095 case EM_MIPS_X: return "Stanford MIPS-X";
2096 case EM_COLDFIRE: return "Motorola Coldfire";
2097 case EM_ALPHA: return "Alpha";
2098 case EM_CYGNUS_D10V:
2099 case EM_D10V: return "d10v";
2100 case EM_CYGNUS_D30V:
2101 case EM_D30V: return "d30v";
2102 case EM_CYGNUS_M32R:
2103 case EM_M32R: return "Renesas M32R (formerly Mitsubishi M32r)";
2104 case EM_CYGNUS_V850:
2105 case EM_V800: return "Renesas V850 (using RH850 ABI)";
2106 case EM_V850: return "Renesas V850";
2107 case EM_CYGNUS_MN10300:
2108 case EM_MN10300: return "mn10300";
2109 case EM_CYGNUS_MN10200:
2110 case EM_MN10200: return "mn10200";
2111 case EM_MOXIE: return "Moxie";
2112 case EM_CYGNUS_FR30:
2113 case EM_FR30: return "Fujitsu FR30";
2114 case EM_CYGNUS_FRV: return "Fujitsu FR-V";
2116 case EM_PJ: return "picoJava";
2117 case EM_MMA: return "Fujitsu Multimedia Accelerator";
2118 case EM_PCP: return "Siemens PCP";
2119 case EM_NCPU: return "Sony nCPU embedded RISC processor";
2120 case EM_NDR1: return "Denso NDR1 microprocesspr";
2121 case EM_STARCORE: return "Motorola Star*Core processor";
2122 case EM_ME16: return "Toyota ME16 processor";
2123 case EM_ST100: return "STMicroelectronics ST100 processor";
2124 case EM_TINYJ: return "Advanced Logic Corp. TinyJ embedded processor";
2125 case EM_PDSP: return "Sony DSP processor";
2126 case EM_PDP10: return "Digital Equipment Corp. PDP-10";
2127 case EM_PDP11: return "Digital Equipment Corp. PDP-11";
2128 case EM_FX66: return "Siemens FX66 microcontroller";
2129 case EM_ST9PLUS: return "STMicroelectronics ST9+ 8/16 bit microcontroller";
2130 case EM_ST7: return "STMicroelectronics ST7 8-bit microcontroller";
2131 case EM_68HC16: return "Motorola MC68HC16 Microcontroller";
2132 case EM_68HC12: return "Motorola MC68HC12 Microcontroller";
2133 case EM_68HC11: return "Motorola MC68HC11 Microcontroller";
2134 case EM_68HC08: return "Motorola MC68HC08 Microcontroller";
2135 case EM_68HC05: return "Motorola MC68HC05 Microcontroller";
2136 case EM_SVX: return "Silicon Graphics SVx";
2137 case EM_ST19: return "STMicroelectronics ST19 8-bit microcontroller";
2138 case EM_VAX: return "Digital VAX";
2139 case EM_VISIUM: return "CDS VISIUMcore processor";
2141 case EM_AVR: return "Atmel AVR 8-bit microcontroller";
2142 case EM_CRIS: return "Axis Communications 32-bit embedded processor";
2143 case EM_JAVELIN: return "Infineon Technologies 32-bit embedded cpu";
2144 case EM_FIREPATH: return "Element 14 64-bit DSP processor";
2145 case EM_ZSP: return "LSI Logic's 16-bit DSP processor";
2146 case EM_MMIX: return "Donald Knuth's educational 64-bit processor";
2147 case EM_HUANY: return "Harvard Universitys's machine-independent object format";
2148 case EM_PRISM: return "Vitesse Prism";
2149 case EM_X86_64: return "Advanced Micro Devices X86-64";
2150 case EM_L1OM: return "Intel L1OM";
2151 case EM_K1OM: return "Intel K1OM";
2153 case EM_S390: return "IBM S/390";
2154 case EM_SCORE: return "SUNPLUS S+Core";
2155 case EM_XSTORMY16: return "Sanyo XStormy16 CPU core";
2156 case EM_OR1K: return "OpenRISC 1000";
2157 case EM_ARC_A5: return "ARC International ARCompact processor";
2158 case EM_CRX: return "National Semiconductor CRX microprocessor";
2159 case EM_ADAPTEVA_EPIPHANY: return "Adapteva EPIPHANY";
2160 case EM_DLX: return "OpenDLX";
2162 case EM_IP2K: return "Ubicom IP2xxx 8-bit microcontrollers";
2163 case EM_IQ2000: return "Vitesse IQ2000";
2165 case EM_XTENSA: return "Tensilica Xtensa Processor";
2166 case EM_VIDEOCORE: return "Alphamosaic VideoCore processor";
2167 case EM_TMM_GPP: return "Thompson Multimedia General Purpose Processor";
2168 case EM_NS32K: return "National Semiconductor 32000 series";
2169 case EM_TPC: return "Tenor Network TPC processor";
2170 case EM_ST200: return "STMicroelectronics ST200 microcontroller";
2171 case EM_MAX: return "MAX Processor";
2172 case EM_CR: return "National Semiconductor CompactRISC";
2173 case EM_F2MC16: return "Fujitsu F2MC16";
2174 case EM_MSP430: return "Texas Instruments msp430 microcontroller";
2175 case EM_LATTICEMICO32: return "Lattice Mico32";
2177 case EM_M32C: return "Renesas M32c";
2178 case EM_MT: return "Morpho Techologies MT processor";
2179 case EM_BLACKFIN: return "Analog Devices Blackfin";
2180 case EM_SE_C33: return "S1C33 Family of Seiko Epson processors";
2181 case EM_SEP: return "Sharp embedded microprocessor";
2182 case EM_ARCA: return "Arca RISC microprocessor";
2183 case EM_UNICORE: return "Unicore";
2184 case EM_EXCESS: return "eXcess 16/32/64-bit configurable embedded CPU";
2185 case EM_DXP: return "Icera Semiconductor Inc. Deep Execution Processor";
2186 case EM_NIOS32: return "Altera Nios";
2187 case EM_ALTERA_NIOS2: return "Altera Nios II";
2189 case EM_XC16X: return "Infineon Technologies xc16x";
2190 case EM_M16C: return "Renesas M16C series microprocessors";
2191 case EM_DSPIC30F: return "Microchip Technology dsPIC30F Digital Signal Controller";
2192 case EM_CE: return "Freescale Communication Engine RISC core";
2193 case EM_TSK3000: return "Altium TSK3000 core";
2194 case EM_RS08: return "Freescale RS08 embedded processor";
2195 case EM_ECOG2: return "Cyan Technology eCOG2 microprocessor";
2196 case EM_DSP24: return "New Japan Radio (NJR) 24-bit DSP Processor";
2197 case EM_VIDEOCORE3: return "Broadcom VideoCore III processor";
2198 case EM_SE_C17: return "Seiko Epson C17 family";
2199 case EM_TI_C6000: return "Texas Instruments TMS320C6000 DSP family";
2200 case EM_TI_C2000: return "Texas Instruments TMS320C2000 DSP family";
2201 case EM_TI_C5500: return "Texas Instruments TMS320C55x DSP family";
2202 case EM_MMDSP_PLUS: return "STMicroelectronics 64bit VLIW Data Signal Processor";
2203 case EM_CYPRESS_M8C: return "Cypress M8C microprocessor";
2204 case EM_R32C: return "Renesas R32C series microprocessors";
2205 case EM_TRIMEDIA: return "NXP Semiconductors TriMedia architecture family";
2206 case EM_QDSP6: return "QUALCOMM DSP6 Processor";
2207 case EM_8051: return "Intel 8051 and variants";
2208 case EM_STXP7X: return "STMicroelectronics STxP7x family";
2209 case EM_NDS32: return "Andes Technology compact code size embedded RISC processor family";
2210 case EM_ECOG1X: return "Cyan Technology eCOG1X family";
2211 case EM_MAXQ30: return "Dallas Semiconductor MAXQ30 Core microcontrollers";
2212 case EM_XIMO16: return "New Japan Radio (NJR) 16-bit DSP Processor";
2213 case EM_MANIK: return "M2000 Reconfigurable RISC Microprocessor";
2214 case EM_CRAYNV2: return "Cray Inc. NV2 vector architecture";
2215 case EM_CYGNUS_MEP: return "Toshiba MeP Media Engine";
2218 case EM_MICROBLAZE_OLD: return "Xilinx MicroBlaze";
2219 case EM_RL78: return "Renesas RL78";
2220 case EM_RX: return "Renesas RX";
2221 case EM_METAG: return "Imagination Technologies Meta processor architecture";
2222 case EM_MCST_ELBRUS: return "MCST Elbrus general purpose hardware architecture";
2223 case EM_ECOG16: return "Cyan Technology eCOG16 family";
2224 case EM_ETPU: return "Freescale Extended Time Processing Unit";
2225 case EM_SLE9X: return "Infineon Technologies SLE9X core";
2226 case EM_AVR32: return "Atmel Corporation 32-bit microprocessor family";
2227 case EM_STM8: return "STMicroeletronics STM8 8-bit microcontroller";
2228 case EM_TILE64: return "Tilera TILE64 multicore architecture family";
2229 case EM_TILEPRO: return "Tilera TILEPro multicore architecture family";
2230 case EM_TILEGX: return "Tilera TILE-Gx multicore architecture family";
2231 case EM_CUDA: return "NVIDIA CUDA architecture";
2232 case EM_XGATE: return "Motorola XGATE embedded processor";
2234 snprintf (buff, sizeof (buff), _("<unknown>: 0x%x"), e_machine);
2240 decode_ARM_machine_flags (unsigned e_flags, char buf[])
2245 eabi = EF_ARM_EABI_VERSION (e_flags);
2246 e_flags &= ~ EF_ARM_EABIMASK;
2248 /* Handle "generic" ARM flags. */
2249 if (e_flags & EF_ARM_RELEXEC)
2251 strcat (buf, ", relocatable executable");
2252 e_flags &= ~ EF_ARM_RELEXEC;
2255 if (e_flags & EF_ARM_HASENTRY)
2257 strcat (buf, ", has entry point");
2258 e_flags &= ~ EF_ARM_HASENTRY;
2261 /* Now handle EABI specific flags. */
2265 strcat (buf, ", <unrecognized EABI>");
2270 case EF_ARM_EABI_VER1:
2271 strcat (buf, ", Version1 EABI");
2276 /* Process flags one bit at a time. */
2277 flag = e_flags & - e_flags;
2282 case EF_ARM_SYMSARESORTED: /* Conflicts with EF_ARM_INTERWORK. */
2283 strcat (buf, ", sorted symbol tables");
2293 case EF_ARM_EABI_VER2:
2294 strcat (buf, ", Version2 EABI");
2299 /* Process flags one bit at a time. */
2300 flag = e_flags & - e_flags;
2305 case EF_ARM_SYMSARESORTED: /* Conflicts with EF_ARM_INTERWORK. */
2306 strcat (buf, ", sorted symbol tables");
2309 case EF_ARM_DYNSYMSUSESEGIDX:
2310 strcat (buf, ", dynamic symbols use segment index");
2313 case EF_ARM_MAPSYMSFIRST:
2314 strcat (buf, ", mapping symbols precede others");
2324 case EF_ARM_EABI_VER3:
2325 strcat (buf, ", Version3 EABI");
2328 case EF_ARM_EABI_VER4:
2329 strcat (buf, ", Version4 EABI");
2334 /* Process flags one bit at a time. */
2335 flag = e_flags & - e_flags;
2341 strcat (buf, ", BE8");
2345 strcat (buf, ", LE8");
2356 case EF_ARM_EABI_VER5:
2357 strcat (buf, ", Version5 EABI");
2362 /* Process flags one bit at a time. */
2363 flag = e_flags & - e_flags;
2369 strcat (buf, ", BE8");
2373 strcat (buf, ", LE8");
2376 case EF_ARM_ABI_FLOAT_SOFT: /* Conflicts with EF_ARM_SOFT_FLOAT. */
2377 strcat (buf, ", soft-float ABI");
2380 case EF_ARM_ABI_FLOAT_HARD: /* Conflicts with EF_ARM_VFP_FLOAT. */
2381 strcat (buf, ", hard-float ABI");
2391 case EF_ARM_EABI_UNKNOWN:
2392 strcat (buf, ", GNU EABI");
2397 /* Process flags one bit at a time. */
2398 flag = e_flags & - e_flags;
2403 case EF_ARM_INTERWORK:
2404 strcat (buf, ", interworking enabled");
2407 case EF_ARM_APCS_26:
2408 strcat (buf, ", uses APCS/26");
2411 case EF_ARM_APCS_FLOAT:
2412 strcat (buf, ", uses APCS/float");
2416 strcat (buf, ", position independent");
2420 strcat (buf, ", 8 bit structure alignment");
2423 case EF_ARM_NEW_ABI:
2424 strcat (buf, ", uses new ABI");
2427 case EF_ARM_OLD_ABI:
2428 strcat (buf, ", uses old ABI");
2431 case EF_ARM_SOFT_FLOAT:
2432 strcat (buf, ", software FP");
2435 case EF_ARM_VFP_FLOAT:
2436 strcat (buf, ", VFP");
2439 case EF_ARM_MAVERICK_FLOAT:
2440 strcat (buf, ", Maverick FP");
2451 strcat (buf,_(", <unknown>"));
2455 decode_AVR_machine_flags (unsigned e_flags, char buf[], size_t size)
2457 --size; /* Leave space for null terminator. */
2459 switch (e_flags & EF_AVR_MACH)
2461 case E_AVR_MACH_AVR1:
2462 strncat (buf, ", avr:1", size);
2464 case E_AVR_MACH_AVR2:
2465 strncat (buf, ", avr:2", size);
2467 case E_AVR_MACH_AVR25:
2468 strncat (buf, ", avr:25", size);
2470 case E_AVR_MACH_AVR3:
2471 strncat (buf, ", avr:3", size);
2473 case E_AVR_MACH_AVR31:
2474 strncat (buf, ", avr:31", size);
2476 case E_AVR_MACH_AVR35:
2477 strncat (buf, ", avr:35", size);
2479 case E_AVR_MACH_AVR4:
2480 strncat (buf, ", avr:4", size);
2482 case E_AVR_MACH_AVR5:
2483 strncat (buf, ", avr:5", size);
2485 case E_AVR_MACH_AVR51:
2486 strncat (buf, ", avr:51", size);
2488 case E_AVR_MACH_AVR6:
2489 strncat (buf, ", avr:6", size);
2491 case E_AVR_MACH_AVRTINY:
2492 strncat (buf, ", avr:100", size);
2494 case E_AVR_MACH_XMEGA1:
2495 strncat (buf, ", avr:101", size);
2497 case E_AVR_MACH_XMEGA2:
2498 strncat (buf, ", avr:102", size);
2500 case E_AVR_MACH_XMEGA3:
2501 strncat (buf, ", avr:103", size);
2503 case E_AVR_MACH_XMEGA4:
2504 strncat (buf, ", avr:104", size);
2506 case E_AVR_MACH_XMEGA5:
2507 strncat (buf, ", avr:105", size);
2509 case E_AVR_MACH_XMEGA6:
2510 strncat (buf, ", avr:106", size);
2512 case E_AVR_MACH_XMEGA7:
2513 strncat (buf, ", avr:107", size);
2516 strncat (buf, ", avr:<unknown>", size);
2520 size -= strlen (buf);
2521 if (e_flags & EF_AVR_LINKRELAX_PREPARED)
2522 strncat (buf, ", link-relax", size);
2526 decode_NDS32_machine_flags (unsigned e_flags, char buf[], size_t size)
2535 static const char *ABI_STRINGS[] =
2537 "ABI v0", /* use r5 as return register; only used in N1213HC */
2538 "ABI v1", /* use r0 as return register */
2539 "ABI v2", /* use r0 as return register and don't reserve 24 bytes for arguments */
2540 "ABI v2fp", /* for FPU */
2544 static const char *VER_STRINGS[] =
2546 "Andes ELF V1.3 or older",
2550 static const char *ARCH_STRINGS[] =
2559 abi = EF_NDS_ABI & e_flags;
2560 arch = EF_NDS_ARCH & e_flags;
2561 config = EF_NDS_INST & e_flags;
2562 version = EF_NDS32_ELF_VERSION & e_flags;
2564 memset (buf, 0, size);
2571 case E_NDS_ABI_V2FP:
2572 case E_NDS_ABI_AABI:
2573 case E_NDS_ABI_V2FP_PLUS:
2574 /* In case there are holes in the array. */
2575 r += snprintf (buf + r, size - r, ", %s", ABI_STRINGS[abi >> EF_NDS_ABI_SHIFT]);
2579 r += snprintf (buf + r, size - r, ", <unrecognized ABI>");
2585 case E_NDS32_ELF_VER_1_2:
2586 case E_NDS32_ELF_VER_1_3:
2587 case E_NDS32_ELF_VER_1_4:
2588 r += snprintf (buf + r, size - r, ", %s", VER_STRINGS[version >> EF_NDS32_ELF_VERSION_SHIFT]);
2592 r += snprintf (buf + r, size - r, ", <unrecognized ELF version number>");
2596 if (E_NDS_ABI_V0 == abi)
2598 /* OLD ABI; only used in N1213HC, has performance extension 1. */
2599 r += snprintf (buf + r, size - r, ", Andes Star v1.0, N1213HC, MAC, PERF1");
2600 if (arch == E_NDS_ARCH_STAR_V1_0)
2601 r += snprintf (buf + r, size -r, ", 16b"); /* has 16-bit instructions */
2607 case E_NDS_ARCH_STAR_V1_0:
2608 case E_NDS_ARCH_STAR_V2_0:
2609 case E_NDS_ARCH_STAR_V3_0:
2610 case E_NDS_ARCH_STAR_V3_M:
2611 r += snprintf (buf + r, size - r, ", %s", ARCH_STRINGS[arch >> EF_NDS_ARCH_SHIFT]);
2615 r += snprintf (buf + r, size - r, ", <unrecognized architecture>");
2616 /* ARCH version determines how the e_flags are interpreted.
2617 If it is unknown, we cannot proceed. */
2621 /* Newer ABI; Now handle architecture specific flags. */
2622 if (arch == E_NDS_ARCH_STAR_V1_0)
2624 if (config & E_NDS32_HAS_MFUSR_PC_INST)
2625 r += snprintf (buf + r, size -r, ", MFUSR_PC");
2627 if (!(config & E_NDS32_HAS_NO_MAC_INST))
2628 r += snprintf (buf + r, size -r, ", MAC");
2630 if (config & E_NDS32_HAS_DIV_INST)
2631 r += snprintf (buf + r, size -r, ", DIV");
2633 if (config & E_NDS32_HAS_16BIT_INST)
2634 r += snprintf (buf + r, size -r, ", 16b");
2638 if (config & E_NDS32_HAS_MFUSR_PC_INST)
2640 if (version <= E_NDS32_ELF_VER_1_3)
2641 r += snprintf (buf + r, size -r, ", [B8]");
2643 r += snprintf (buf + r, size -r, ", EX9");
2646 if (config & E_NDS32_HAS_MAC_DX_INST)
2647 r += snprintf (buf + r, size -r, ", MAC_DX");
2649 if (config & E_NDS32_HAS_DIV_DX_INST)
2650 r += snprintf (buf + r, size -r, ", DIV_DX");
2652 if (config & E_NDS32_HAS_16BIT_INST)
2654 if (version <= E_NDS32_ELF_VER_1_3)
2655 r += snprintf (buf + r, size -r, ", 16b");
2657 r += snprintf (buf + r, size -r, ", IFC");
2661 if (config & E_NDS32_HAS_EXT_INST)
2662 r += snprintf (buf + r, size -r, ", PERF1");
2664 if (config & E_NDS32_HAS_EXT2_INST)
2665 r += snprintf (buf + r, size -r, ", PERF2");
2667 if (config & E_NDS32_HAS_FPU_INST)
2670 r += snprintf (buf + r, size -r, ", FPU_SP");
2673 if (config & E_NDS32_HAS_FPU_DP_INST)
2676 r += snprintf (buf + r, size -r, ", FPU_DP");
2679 if (config & E_NDS32_HAS_FPU_MAC_INST)
2682 r += snprintf (buf + r, size -r, ", FPU_MAC");
2687 switch ((config & E_NDS32_FPU_REG_CONF) >> E_NDS32_FPU_REG_CONF_SHIFT)
2689 case E_NDS32_FPU_REG_8SP_4DP:
2690 r += snprintf (buf + r, size -r, ", FPU_REG:8/4");
2692 case E_NDS32_FPU_REG_16SP_8DP:
2693 r += snprintf (buf + r, size -r, ", FPU_REG:16/8");
2695 case E_NDS32_FPU_REG_32SP_16DP:
2696 r += snprintf (buf + r, size -r, ", FPU_REG:32/16");
2698 case E_NDS32_FPU_REG_32SP_32DP:
2699 r += snprintf (buf + r, size -r, ", FPU_REG:32/32");
2704 if (config & E_NDS32_HAS_AUDIO_INST)
2705 r += snprintf (buf + r, size -r, ", AUDIO");
2707 if (config & E_NDS32_HAS_STRING_INST)
2708 r += snprintf (buf + r, size -r, ", STR");
2710 if (config & E_NDS32_HAS_REDUCED_REGS)
2711 r += snprintf (buf + r, size -r, ", 16REG");
2713 if (config & E_NDS32_HAS_VIDEO_INST)
2715 if (version <= E_NDS32_ELF_VER_1_3)
2716 r += snprintf (buf + r, size -r, ", VIDEO");
2718 r += snprintf (buf + r, size -r, ", SATURATION");
2721 if (config & E_NDS32_HAS_ENCRIPT_INST)
2722 r += snprintf (buf + r, size -r, ", ENCRP");
2724 if (config & E_NDS32_HAS_L2C_INST)
2725 r += snprintf (buf + r, size -r, ", L2C");
2729 get_machine_flags (unsigned e_flags, unsigned e_machine)
2731 static char buf[1024];
2743 decode_ARM_machine_flags (e_flags, buf);
2747 decode_AVR_machine_flags (e_flags, buf, sizeof buf);
2751 if (e_flags & EF_BFIN_PIC)
2752 strcat (buf, ", PIC");
2754 if (e_flags & EF_BFIN_FDPIC)
2755 strcat (buf, ", FDPIC");
2757 if (e_flags & EF_BFIN_CODE_IN_L1)
2758 strcat (buf, ", code in L1");
2760 if (e_flags & EF_BFIN_DATA_IN_L1)
2761 strcat (buf, ", data in L1");
2766 switch (e_flags & EF_FRV_CPU_MASK)
2768 case EF_FRV_CPU_GENERIC:
2772 strcat (buf, ", fr???");
2775 case EF_FRV_CPU_FR300:
2776 strcat (buf, ", fr300");
2779 case EF_FRV_CPU_FR400:
2780 strcat (buf, ", fr400");
2782 case EF_FRV_CPU_FR405:
2783 strcat (buf, ", fr405");
2786 case EF_FRV_CPU_FR450:
2787 strcat (buf, ", fr450");
2790 case EF_FRV_CPU_FR500:
2791 strcat (buf, ", fr500");
2793 case EF_FRV_CPU_FR550:
2794 strcat (buf, ", fr550");
2797 case EF_FRV_CPU_SIMPLE:
2798 strcat (buf, ", simple");
2800 case EF_FRV_CPU_TOMCAT:
2801 strcat (buf, ", tomcat");
2807 if ((e_flags & EF_M68K_ARCH_MASK) == EF_M68K_M68000)
2808 strcat (buf, ", m68000");
2809 else if ((e_flags & EF_M68K_ARCH_MASK) == EF_M68K_CPU32)
2810 strcat (buf, ", cpu32");
2811 else if ((e_flags & EF_M68K_ARCH_MASK) == EF_M68K_FIDO)
2812 strcat (buf, ", fido_a");
2815 char const * isa = _("unknown");
2816 char const * mac = _("unknown mac");
2817 char const * additional = NULL;
2819 switch (e_flags & EF_M68K_CF_ISA_MASK)
2821 case EF_M68K_CF_ISA_A_NODIV:
2823 additional = ", nodiv";
2825 case EF_M68K_CF_ISA_A:
2828 case EF_M68K_CF_ISA_A_PLUS:
2831 case EF_M68K_CF_ISA_B_NOUSP:
2833 additional = ", nousp";
2835 case EF_M68K_CF_ISA_B:
2838 case EF_M68K_CF_ISA_C:
2841 case EF_M68K_CF_ISA_C_NODIV:
2843 additional = ", nodiv";
2846 strcat (buf, ", cf, isa ");
2849 strcat (buf, additional);
2850 if (e_flags & EF_M68K_CF_FLOAT)
2851 strcat (buf, ", float");
2852 switch (e_flags & EF_M68K_CF_MAC_MASK)
2857 case EF_M68K_CF_MAC:
2860 case EF_M68K_CF_EMAC:
2863 case EF_M68K_CF_EMAC_B:
2876 if (e_flags & EF_PPC_EMB)
2877 strcat (buf, ", emb");
2879 if (e_flags & EF_PPC_RELOCATABLE)
2880 strcat (buf, _(", relocatable"));
2882 if (e_flags & EF_PPC_RELOCATABLE_LIB)
2883 strcat (buf, _(", relocatable-lib"));
2887 if (e_flags & EF_PPC64_ABI)
2889 char abi[] = ", abiv0";
2891 abi[6] += e_flags & EF_PPC64_ABI;
2897 if ((e_flags & EF_RH850_ABI) == EF_RH850_ABI)
2898 strcat (buf, ", RH850 ABI");
2900 if (e_flags & EF_V800_850E3)
2901 strcat (buf, ", V3 architecture");
2903 if ((e_flags & (EF_RH850_FPU_DOUBLE | EF_RH850_FPU_SINGLE)) == 0)
2904 strcat (buf, ", FPU not used");
2906 if ((e_flags & (EF_RH850_REGMODE22 | EF_RH850_REGMODE32)) == 0)
2907 strcat (buf, ", regmode: COMMON");
2909 if ((e_flags & (EF_RH850_GP_FIX | EF_RH850_GP_NOFIX)) == 0)
2910 strcat (buf, ", r4 not used");
2912 if ((e_flags & (EF_RH850_EP_FIX | EF_RH850_EP_NOFIX)) == 0)
2913 strcat (buf, ", r30 not used");
2915 if ((e_flags & (EF_RH850_TP_FIX | EF_RH850_TP_NOFIX)) == 0)
2916 strcat (buf, ", r5 not used");
2918 if ((e_flags & (EF_RH850_REG2_RESERVE | EF_RH850_REG2_NORESERVE)) == 0)
2919 strcat (buf, ", r2 not used");
2921 for (e_flags &= 0xFFFF; e_flags; e_flags &= ~ (e_flags & - e_flags))
2923 switch (e_flags & - e_flags)
2925 case EF_RH850_FPU_DOUBLE: strcat (buf, ", double precision FPU"); break;
2926 case EF_RH850_FPU_SINGLE: strcat (buf, ", single precision FPU"); break;
2927 case EF_RH850_SIMD: strcat (buf, ", SIMD"); break;
2928 case EF_RH850_CACHE: strcat (buf, ", CACHE"); break;
2929 case EF_RH850_MMU: strcat (buf, ", MMU"); break;
2930 case EF_RH850_REGMODE22: strcat (buf, ", regmode:22"); break;
2931 case EF_RH850_REGMODE32: strcat (buf, ", regmode:23"); break;
2932 case EF_RH850_DATA_ALIGN8: strcat (buf, ", 8-byte alignment"); break;
2933 case EF_RH850_GP_FIX: strcat (buf, ", r4 fixed"); break;
2934 case EF_RH850_GP_NOFIX: strcat (buf, ", r4 free"); break;
2935 case EF_RH850_EP_FIX: strcat (buf, ", r30 fixed"); break;
2936 case EF_RH850_EP_NOFIX: strcat (buf, ", r30 free"); break;
2937 case EF_RH850_TP_FIX: strcat (buf, ", r5 fixed"); break;
2938 case EF_RH850_TP_NOFIX: strcat (buf, ", r5 free"); break;
2939 case EF_RH850_REG2_RESERVE: strcat (buf, ", r2 fixed"); break;
2940 case EF_RH850_REG2_NORESERVE: strcat (buf, ", r2 free"); break;
2947 case EM_CYGNUS_V850:
2948 switch (e_flags & EF_V850_ARCH)
2950 case E_V850E3V5_ARCH:
2951 strcat (buf, ", v850e3v5");
2953 case E_V850E2V3_ARCH:
2954 strcat (buf, ", v850e2v3");
2957 strcat (buf, ", v850e2");
2960 strcat (buf, ", v850e1");
2963 strcat (buf, ", v850e");
2966 strcat (buf, ", v850");
2969 strcat (buf, _(", unknown v850 architecture variant"));
2975 case EM_CYGNUS_M32R:
2976 if ((e_flags & EF_M32R_ARCH) == E_M32R_ARCH)
2977 strcat (buf, ", m32r");
2981 case EM_MIPS_RS3_LE:
2982 if (e_flags & EF_MIPS_NOREORDER)
2983 strcat (buf, ", noreorder");
2985 if (e_flags & EF_MIPS_PIC)
2986 strcat (buf, ", pic");
2988 if (e_flags & EF_MIPS_CPIC)
2989 strcat (buf, ", cpic");
2991 if (e_flags & EF_MIPS_UCODE)
2992 strcat (buf, ", ugen_reserved");
2994 if (e_flags & EF_MIPS_ABI2)
2995 strcat (buf, ", abi2");
2997 if (e_flags & EF_MIPS_OPTIONS_FIRST)
2998 strcat (buf, ", odk first");
3000 if (e_flags & EF_MIPS_32BITMODE)
3001 strcat (buf, ", 32bitmode");
3003 if (e_flags & EF_MIPS_NAN2008)
3004 strcat (buf, ", nan2008");
3006 if (e_flags & EF_MIPS_FP64)
3007 strcat (buf, ", fp64");
3009 switch ((e_flags & EF_MIPS_MACH))
3011 case E_MIPS_MACH_3900: strcat (buf, ", 3900"); break;
3012 case E_MIPS_MACH_4010: strcat (buf, ", 4010"); break;
3013 case E_MIPS_MACH_4100: strcat (buf, ", 4100"); break;
3014 case E_MIPS_MACH_4111: strcat (buf, ", 4111"); break;
3015 case E_MIPS_MACH_4120: strcat (buf, ", 4120"); break;
3016 case E_MIPS_MACH_4650: strcat (buf, ", 4650"); break;
3017 case E_MIPS_MACH_5400: strcat (buf, ", 5400"); break;
3018 case E_MIPS_MACH_5500: strcat (buf, ", 5500"); break;
3019 case E_MIPS_MACH_SB1: strcat (buf, ", sb1"); break;
3020 case E_MIPS_MACH_9000: strcat (buf, ", 9000"); break;
3021 case E_MIPS_MACH_LS2E: strcat (buf, ", loongson-2e"); break;
3022 case E_MIPS_MACH_LS2F: strcat (buf, ", loongson-2f"); break;
3023 case E_MIPS_MACH_LS3A: strcat (buf, ", loongson-3a"); break;
3024 case E_MIPS_MACH_OCTEON: strcat (buf, ", octeon"); break;
3025 case E_MIPS_MACH_OCTEON2: strcat (buf, ", octeon2"); break;
3026 case E_MIPS_MACH_OCTEON3: strcat (buf, ", octeon3"); break;
3027 case E_MIPS_MACH_XLR: strcat (buf, ", xlr"); break;
3029 /* We simply ignore the field in this case to avoid confusion:
3030 MIPS ELF does not specify EF_MIPS_MACH, it is a GNU
3033 default: strcat (buf, _(", unknown CPU")); break;
3036 switch ((e_flags & EF_MIPS_ABI))
3038 case E_MIPS_ABI_O32: strcat (buf, ", o32"); break;
3039 case E_MIPS_ABI_O64: strcat (buf, ", o64"); break;
3040 case E_MIPS_ABI_EABI32: strcat (buf, ", eabi32"); break;
3041 case E_MIPS_ABI_EABI64: strcat (buf, ", eabi64"); break;
3043 /* We simply ignore the field in this case to avoid confusion:
3044 MIPS ELF does not specify EF_MIPS_ABI, it is a GNU extension.
3045 This means it is likely to be an o32 file, but not for
3048 default: strcat (buf, _(", unknown ABI")); break;
3051 if (e_flags & EF_MIPS_ARCH_ASE_MDMX)
3052 strcat (buf, ", mdmx");
3054 if (e_flags & EF_MIPS_ARCH_ASE_M16)
3055 strcat (buf, ", mips16");
3057 if (e_flags & EF_MIPS_ARCH_ASE_MICROMIPS)
3058 strcat (buf, ", micromips");
3060 switch ((e_flags & EF_MIPS_ARCH))
3062 case E_MIPS_ARCH_1: strcat (buf, ", mips1"); break;
3063 case E_MIPS_ARCH_2: strcat (buf, ", mips2"); break;
3064 case E_MIPS_ARCH_3: strcat (buf, ", mips3"); break;
3065 case E_MIPS_ARCH_4: strcat (buf, ", mips4"); break;
3066 case E_MIPS_ARCH_5: strcat (buf, ", mips5"); break;
3067 case E_MIPS_ARCH_32: strcat (buf, ", mips32"); break;
3068 case E_MIPS_ARCH_32R2: strcat (buf, ", mips32r2"); break;
3069 case E_MIPS_ARCH_32R6: strcat (buf, ", mips32r6"); break;
3070 case E_MIPS_ARCH_64: strcat (buf, ", mips64"); break;
3071 case E_MIPS_ARCH_64R2: strcat (buf, ", mips64r2"); break;
3072 case E_MIPS_ARCH_64R6: strcat (buf, ", mips64r6"); break;
3073 default: strcat (buf, _(", unknown ISA")); break;
3078 decode_NDS32_machine_flags (e_flags, buf, sizeof buf);
3082 switch ((e_flags & EF_SH_MACH_MASK))
3084 case EF_SH1: strcat (buf, ", sh1"); break;
3085 case EF_SH2: strcat (buf, ", sh2"); break;
3086 case EF_SH3: strcat (buf, ", sh3"); break;
3087 case EF_SH_DSP: strcat (buf, ", sh-dsp"); break;
3088 case EF_SH3_DSP: strcat (buf, ", sh3-dsp"); break;
3089 case EF_SH4AL_DSP: strcat (buf, ", sh4al-dsp"); break;
3090 case EF_SH3E: strcat (buf, ", sh3e"); break;
3091 case EF_SH4: strcat (buf, ", sh4"); break;
3092 case EF_SH5: strcat (buf, ", sh5"); break;
3093 case EF_SH2E: strcat (buf, ", sh2e"); break;
3094 case EF_SH4A: strcat (buf, ", sh4a"); break;
3095 case EF_SH2A: strcat (buf, ", sh2a"); break;
3096 case EF_SH4_NOFPU: strcat (buf, ", sh4-nofpu"); break;
3097 case EF_SH4A_NOFPU: strcat (buf, ", sh4a-nofpu"); break;
3098 case EF_SH2A_NOFPU: strcat (buf, ", sh2a-nofpu"); break;
3099 case EF_SH3_NOMMU: strcat (buf, ", sh3-nommu"); break;
3100 case EF_SH4_NOMMU_NOFPU: strcat (buf, ", sh4-nommu-nofpu"); break;
3101 case EF_SH2A_SH4_NOFPU: strcat (buf, ", sh2a-nofpu-or-sh4-nommu-nofpu"); break;
3102 case EF_SH2A_SH3_NOFPU: strcat (buf, ", sh2a-nofpu-or-sh3-nommu"); break;
3103 case EF_SH2A_SH4: strcat (buf, ", sh2a-or-sh4"); break;
3104 case EF_SH2A_SH3E: strcat (buf, ", sh2a-or-sh3e"); break;
3105 default: strcat (buf, _(", unknown ISA")); break;
3108 if (e_flags & EF_SH_PIC)
3109 strcat (buf, ", pic");
3111 if (e_flags & EF_SH_FDPIC)
3112 strcat (buf, ", fdpic");
3116 if (e_flags & EF_OR1K_NODELAY)
3117 strcat (buf, ", no delay");
3121 if (e_flags & EF_SPARC_32PLUS)
3122 strcat (buf, ", v8+");
3124 if (e_flags & EF_SPARC_SUN_US1)
3125 strcat (buf, ", ultrasparcI");
3127 if (e_flags & EF_SPARC_SUN_US3)
3128 strcat (buf, ", ultrasparcIII");
3130 if (e_flags & EF_SPARC_HAL_R1)
3131 strcat (buf, ", halr1");
3133 if (e_flags & EF_SPARC_LEDATA)
3134 strcat (buf, ", ledata");
3136 if ((e_flags & EF_SPARCV9_MM) == EF_SPARCV9_TSO)
3137 strcat (buf, ", tso");
3139 if ((e_flags & EF_SPARCV9_MM) == EF_SPARCV9_PSO)
3140 strcat (buf, ", pso");
3142 if ((e_flags & EF_SPARCV9_MM) == EF_SPARCV9_RMO)
3143 strcat (buf, ", rmo");
3147 switch (e_flags & EF_PARISC_ARCH)
3149 case EFA_PARISC_1_0:
3150 strcpy (buf, ", PA-RISC 1.0");
3152 case EFA_PARISC_1_1:
3153 strcpy (buf, ", PA-RISC 1.1");
3155 case EFA_PARISC_2_0:
3156 strcpy (buf, ", PA-RISC 2.0");
3161 if (e_flags & EF_PARISC_TRAPNIL)
3162 strcat (buf, ", trapnil");
3163 if (e_flags & EF_PARISC_EXT)
3164 strcat (buf, ", ext");
3165 if (e_flags & EF_PARISC_LSB)
3166 strcat (buf, ", lsb");
3167 if (e_flags & EF_PARISC_WIDE)
3168 strcat (buf, ", wide");
3169 if (e_flags & EF_PARISC_NO_KABP)
3170 strcat (buf, ", no kabp");
3171 if (e_flags & EF_PARISC_LAZYSWAP)
3172 strcat (buf, ", lazyswap");
3177 if ((e_flags & EF_PICOJAVA_NEWCALLS) == EF_PICOJAVA_NEWCALLS)
3178 strcat (buf, ", new calling convention");
3180 if ((e_flags & EF_PICOJAVA_GNUCALLS) == EF_PICOJAVA_GNUCALLS)
3181 strcat (buf, ", gnu calling convention");
3185 if ((e_flags & EF_IA_64_ABI64))
3186 strcat (buf, ", 64-bit");
3188 strcat (buf, ", 32-bit");
3189 if ((e_flags & EF_IA_64_REDUCEDFP))
3190 strcat (buf, ", reduced fp model");
3191 if ((e_flags & EF_IA_64_NOFUNCDESC_CONS_GP))
3192 strcat (buf, ", no function descriptors, constant gp");
3193 else if ((e_flags & EF_IA_64_CONS_GP))
3194 strcat (buf, ", constant gp");
3195 if ((e_flags & EF_IA_64_ABSOLUTE))
3196 strcat (buf, ", absolute");
3197 if (elf_header.e_ident[EI_OSABI] == ELFOSABI_OPENVMS)
3199 if ((e_flags & EF_IA_64_VMS_LINKAGES))
3200 strcat (buf, ", vms_linkages");
3201 switch ((e_flags & EF_IA_64_VMS_COMCOD))
3203 case EF_IA_64_VMS_COMCOD_SUCCESS:
3205 case EF_IA_64_VMS_COMCOD_WARNING:
3206 strcat (buf, ", warning");
3208 case EF_IA_64_VMS_COMCOD_ERROR:
3209 strcat (buf, ", error");
3211 case EF_IA_64_VMS_COMCOD_ABORT:
3212 strcat (buf, ", abort");
3215 warn (_("Unrecognised IA64 VMS Command Code: %x\n"),
3216 e_flags & EF_IA_64_VMS_COMCOD);
3217 strcat (buf, ", <unknown>");
3223 if ((e_flags & EF_VAX_NONPIC))
3224 strcat (buf, ", non-PIC");
3225 if ((e_flags & EF_VAX_DFLOAT))
3226 strcat (buf, ", D-Float");
3227 if ((e_flags & EF_VAX_GFLOAT))
3228 strcat (buf, ", G-Float");
3232 if (e_flags & EF_VISIUM_ARCH_MCM)
3233 strcat (buf, ", mcm");
3234 else if (e_flags & EF_VISIUM_ARCH_MCM24)
3235 strcat (buf, ", mcm24");
3236 if (e_flags & EF_VISIUM_ARCH_GR6)
3237 strcat (buf, ", gr6");
3241 if (e_flags & E_FLAG_RL78_G10)
3242 strcat (buf, ", G10");
3243 if (e_flags & E_FLAG_RL78_64BIT_DOUBLES)
3244 strcat (buf, ", 64-bit doubles");
3248 if (e_flags & E_FLAG_RX_64BIT_DOUBLES)
3249 strcat (buf, ", 64-bit doubles");
3250 if (e_flags & E_FLAG_RX_DSP)
3251 strcat (buf, ", dsp");
3252 if (e_flags & E_FLAG_RX_PID)
3253 strcat (buf, ", pid");
3254 if (e_flags & E_FLAG_RX_ABI)
3255 strcat (buf, ", RX ABI");
3259 if (e_flags & EF_S390_HIGH_GPRS)
3260 strcat (buf, ", highgprs");
3264 if ((e_flags & EF_C6000_REL))
3265 strcat (buf, ", relocatable module");
3269 strcat (buf, _(": architecture variant: "));
3270 switch (e_flags & EF_MSP430_MACH)
3272 case E_MSP430_MACH_MSP430x11: strcat (buf, "MSP430x11"); break;
3273 case E_MSP430_MACH_MSP430x11x1 : strcat (buf, "MSP430x11x1 "); break;
3274 case E_MSP430_MACH_MSP430x12: strcat (buf, "MSP430x12"); break;
3275 case E_MSP430_MACH_MSP430x13: strcat (buf, "MSP430x13"); break;
3276 case E_MSP430_MACH_MSP430x14: strcat (buf, "MSP430x14"); break;
3277 case E_MSP430_MACH_MSP430x15: strcat (buf, "MSP430x15"); break;
3278 case E_MSP430_MACH_MSP430x16: strcat (buf, "MSP430x16"); break;
3279 case E_MSP430_MACH_MSP430x31: strcat (buf, "MSP430x31"); break;
3280 case E_MSP430_MACH_MSP430x32: strcat (buf, "MSP430x32"); break;
3281 case E_MSP430_MACH_MSP430x33: strcat (buf, "MSP430x33"); break;
3282 case E_MSP430_MACH_MSP430x41: strcat (buf, "MSP430x41"); break;
3283 case E_MSP430_MACH_MSP430x42: strcat (buf, "MSP430x42"); break;
3284 case E_MSP430_MACH_MSP430x43: strcat (buf, "MSP430x43"); break;
3285 case E_MSP430_MACH_MSP430x44: strcat (buf, "MSP430x44"); break;
3286 case E_MSP430_MACH_MSP430X : strcat (buf, "MSP430X"); break;
3288 strcat (buf, _(": unknown")); break;
3291 if (e_flags & ~ EF_MSP430_MACH)
3292 strcat (buf, _(": unknown extra flag bits also present"));
3300 get_osabi_name (unsigned int osabi)
3302 static char buff[32];
3306 case ELFOSABI_NONE: return "UNIX - System V";
3307 case ELFOSABI_HPUX: return "UNIX - HP-UX";
3308 case ELFOSABI_NETBSD: return "UNIX - NetBSD";
3309 case ELFOSABI_GNU: return "UNIX - GNU";
3310 case ELFOSABI_SOLARIS: return "UNIX - Solaris";
3311 case ELFOSABI_AIX: return "UNIX - AIX";
3312 case ELFOSABI_IRIX: return "UNIX - IRIX";
3313 case ELFOSABI_FREEBSD: return "UNIX - FreeBSD";
3314 case ELFOSABI_TRU64: return "UNIX - TRU64";
3315 case ELFOSABI_MODESTO: return "Novell - Modesto";
3316 case ELFOSABI_OPENBSD: return "UNIX - OpenBSD";
3317 case ELFOSABI_OPENVMS: return "VMS - OpenVMS";
3318 case ELFOSABI_NSK: return "HP - Non-Stop Kernel";
3319 case ELFOSABI_AROS: return "AROS";
3320 case ELFOSABI_FENIXOS: return "FenixOS";
3323 switch (elf_header.e_machine)
3328 case ELFOSABI_ARM: return "ARM";
3339 case ELFOSABI_STANDALONE: return _("Standalone App");
3348 case ELFOSABI_C6000_ELFABI: return _("Bare-metal C6000");
3349 case ELFOSABI_C6000_LINUX: return "Linux C6000";
3358 snprintf (buff, sizeof (buff), _("<unknown: %x>"), osabi);
3364 get_aarch64_segment_type (unsigned long type)
3368 case PT_AARCH64_ARCHEXT:
3369 return "AARCH64_ARCHEXT";
3378 get_arm_segment_type (unsigned long type)
3392 get_mips_segment_type (unsigned long type)
3396 case PT_MIPS_REGINFO:
3398 case PT_MIPS_RTPROC:
3400 case PT_MIPS_OPTIONS:
3402 case PT_MIPS_ABIFLAGS:
3412 get_parisc_segment_type (unsigned long type)
3416 case PT_HP_TLS: return "HP_TLS";
3417 case PT_HP_CORE_NONE: return "HP_CORE_NONE";
3418 case PT_HP_CORE_VERSION: return "HP_CORE_VERSION";
3419 case PT_HP_CORE_KERNEL: return "HP_CORE_KERNEL";
3420 case PT_HP_CORE_COMM: return "HP_CORE_COMM";
3421 case PT_HP_CORE_PROC: return "HP_CORE_PROC";
3422 case PT_HP_CORE_LOADABLE: return "HP_CORE_LOADABLE";
3423 case PT_HP_CORE_STACK: return "HP_CORE_STACK";
3424 case PT_HP_CORE_SHM: return "HP_CORE_SHM";
3425 case PT_HP_CORE_MMF: return "HP_CORE_MMF";
3426 case PT_HP_PARALLEL: return "HP_PARALLEL";
3427 case PT_HP_FASTBIND: return "HP_FASTBIND";
3428 case PT_HP_OPT_ANNOT: return "HP_OPT_ANNOT";
3429 case PT_HP_HSL_ANNOT: return "HP_HSL_ANNOT";
3430 case PT_HP_STACK: return "HP_STACK";
3431 case PT_HP_CORE_UTSNAME: return "HP_CORE_UTSNAME";
3432 case PT_PARISC_ARCHEXT: return "PARISC_ARCHEXT";
3433 case PT_PARISC_UNWIND: return "PARISC_UNWIND";
3434 case PT_PARISC_WEAKORDER: return "PARISC_WEAKORDER";
3443 get_ia64_segment_type (unsigned long type)
3447 case PT_IA_64_ARCHEXT: return "IA_64_ARCHEXT";
3448 case PT_IA_64_UNWIND: return "IA_64_UNWIND";
3449 case PT_HP_TLS: return "HP_TLS";
3450 case PT_IA_64_HP_OPT_ANOT: return "HP_OPT_ANNOT";
3451 case PT_IA_64_HP_HSL_ANOT: return "HP_HSL_ANNOT";
3452 case PT_IA_64_HP_STACK: return "HP_STACK";
3461 get_tic6x_segment_type (unsigned long type)
3465 case PT_C6000_PHATTR: return "C6000_PHATTR";
3474 get_segment_type (unsigned long p_type)
3476 static char buff[32];
3480 case PT_NULL: return "NULL";
3481 case PT_LOAD: return "LOAD";
3482 case PT_DYNAMIC: return "DYNAMIC";
3483 case PT_INTERP: return "INTERP";
3484 case PT_NOTE: return "NOTE";
3485 case PT_SHLIB: return "SHLIB";
3486 case PT_PHDR: return "PHDR";
3487 case PT_TLS: return "TLS";
3489 case PT_GNU_EH_FRAME:
3490 return "GNU_EH_FRAME";
3491 case PT_GNU_STACK: return "GNU_STACK";
3492 case PT_GNU_RELRO: return "GNU_RELRO";
3495 if ((p_type >= PT_LOPROC) && (p_type <= PT_HIPROC))
3497 const char * result;
3499 switch (elf_header.e_machine)
3502 result = get_aarch64_segment_type (p_type);
3505 result = get_arm_segment_type (p_type);
3508 case EM_MIPS_RS3_LE:
3509 result = get_mips_segment_type (p_type);
3512 result = get_parisc_segment_type (p_type);
3515 result = get_ia64_segment_type (p_type);
3518 result = get_tic6x_segment_type (p_type);
3528 sprintf (buff, "LOPROC+%lx", p_type - PT_LOPROC);
3530 else if ((p_type >= PT_LOOS) && (p_type <= PT_HIOS))
3532 const char * result;
3534 switch (elf_header.e_machine)
3537 result = get_parisc_segment_type (p_type);
3540 result = get_ia64_segment_type (p_type);
3550 sprintf (buff, "LOOS+%lx", p_type - PT_LOOS);
3553 snprintf (buff, sizeof (buff), _("<unknown>: %lx"), p_type);
3560 get_mips_section_type_name (unsigned int sh_type)
3564 case SHT_MIPS_LIBLIST: return "MIPS_LIBLIST";
3565 case SHT_MIPS_MSYM: return "MIPS_MSYM";
3566 case SHT_MIPS_CONFLICT: return "MIPS_CONFLICT";
3567 case SHT_MIPS_GPTAB: return "MIPS_GPTAB";
3568 case SHT_MIPS_UCODE: return "MIPS_UCODE";
3569 case SHT_MIPS_DEBUG: return "MIPS_DEBUG";
3570 case SHT_MIPS_REGINFO: return "MIPS_REGINFO";
3571 case SHT_MIPS_PACKAGE: return "MIPS_PACKAGE";
3572 case SHT_MIPS_PACKSYM: return "MIPS_PACKSYM";
3573 case SHT_MIPS_RELD: return "MIPS_RELD";
3574 case SHT_MIPS_IFACE: return "MIPS_IFACE";
3575 case SHT_MIPS_CONTENT: return "MIPS_CONTENT";
3576 case SHT_MIPS_OPTIONS: return "MIPS_OPTIONS";
3577 case SHT_MIPS_SHDR: return "MIPS_SHDR";
3578 case SHT_MIPS_FDESC: return "MIPS_FDESC";
3579 case SHT_MIPS_EXTSYM: return "MIPS_EXTSYM";
3580 case SHT_MIPS_DENSE: return "MIPS_DENSE";
3581 case SHT_MIPS_PDESC: return "MIPS_PDESC";
3582 case SHT_MIPS_LOCSYM: return "MIPS_LOCSYM";
3583 case SHT_MIPS_AUXSYM: return "MIPS_AUXSYM";
3584 case SHT_MIPS_OPTSYM: return "MIPS_OPTSYM";
3585 case SHT_MIPS_LOCSTR: return "MIPS_LOCSTR";
3586 case SHT_MIPS_LINE: return "MIPS_LINE";
3587 case SHT_MIPS_RFDESC: return "MIPS_RFDESC";
3588 case SHT_MIPS_DELTASYM: return "MIPS_DELTASYM";
3589 case SHT_MIPS_DELTAINST: return "MIPS_DELTAINST";
3590 case SHT_MIPS_DELTACLASS: return "MIPS_DELTACLASS";
3591 case SHT_MIPS_DWARF: return "MIPS_DWARF";
3592 case SHT_MIPS_DELTADECL: return "MIPS_DELTADECL";
3593 case SHT_MIPS_SYMBOL_LIB: return "MIPS_SYMBOL_LIB";
3594 case SHT_MIPS_EVENTS: return "MIPS_EVENTS";
3595 case SHT_MIPS_TRANSLATE: return "MIPS_TRANSLATE";
3596 case SHT_MIPS_PIXIE: return "MIPS_PIXIE";
3597 case SHT_MIPS_XLATE: return "MIPS_XLATE";
3598 case SHT_MIPS_XLATE_DEBUG: return "MIPS_XLATE_DEBUG";
3599 case SHT_MIPS_WHIRL: return "MIPS_WHIRL";
3600 case SHT_MIPS_EH_REGION: return "MIPS_EH_REGION";
3601 case SHT_MIPS_XLATE_OLD: return "MIPS_XLATE_OLD";
3602 case SHT_MIPS_PDR_EXCEPTION: return "MIPS_PDR_EXCEPTION";
3603 case SHT_MIPS_ABIFLAGS: return "MIPS_ABIFLAGS";
3611 get_parisc_section_type_name (unsigned int sh_type)
3615 case SHT_PARISC_EXT: return "PARISC_EXT";
3616 case SHT_PARISC_UNWIND: return "PARISC_UNWIND";
3617 case SHT_PARISC_DOC: return "PARISC_DOC";
3618 case SHT_PARISC_ANNOT: return "PARISC_ANNOT";
3619 case SHT_PARISC_SYMEXTN: return "PARISC_SYMEXTN";
3620 case SHT_PARISC_STUBS: return "PARISC_STUBS";
3621 case SHT_PARISC_DLKM: return "PARISC_DLKM";
3629 get_ia64_section_type_name (unsigned int sh_type)
3631 /* If the top 8 bits are 0x78 the next 8 are the os/abi ID. */
3632 if ((sh_type & 0xFF000000) == SHT_IA_64_LOPSREG)
3633 return get_osabi_name ((sh_type & 0x00FF0000) >> 16);
3637 case SHT_IA_64_EXT: return "IA_64_EXT";
3638 case SHT_IA_64_UNWIND: return "IA_64_UNWIND";
3639 case SHT_IA_64_PRIORITY_INIT: return "IA_64_PRIORITY_INIT";
3640 case SHT_IA_64_VMS_TRACE: return "VMS_TRACE";
3641 case SHT_IA_64_VMS_TIE_SIGNATURES: return "VMS_TIE_SIGNATURES";
3642 case SHT_IA_64_VMS_DEBUG: return "VMS_DEBUG";
3643 case SHT_IA_64_VMS_DEBUG_STR: return "VMS_DEBUG_STR";
3644 case SHT_IA_64_VMS_LINKAGES: return "VMS_LINKAGES";
3645 case SHT_IA_64_VMS_SYMBOL_VECTOR: return "VMS_SYMBOL_VECTOR";
3646 case SHT_IA_64_VMS_FIXUP: return "VMS_FIXUP";
3654 get_x86_64_section_type_name (unsigned int sh_type)
3658 case SHT_X86_64_UNWIND: return "X86_64_UNWIND";
3666 get_aarch64_section_type_name (unsigned int sh_type)
3670 case SHT_AARCH64_ATTRIBUTES:
3671 return "AARCH64_ATTRIBUTES";
3679 get_arm_section_type_name (unsigned int sh_type)
3683 case SHT_ARM_EXIDX: return "ARM_EXIDX";
3684 case SHT_ARM_PREEMPTMAP: return "ARM_PREEMPTMAP";
3685 case SHT_ARM_ATTRIBUTES: return "ARM_ATTRIBUTES";
3686 case SHT_ARM_DEBUGOVERLAY: return "ARM_DEBUGOVERLAY";
3687 case SHT_ARM_OVERLAYSECTION: return "ARM_OVERLAYSECTION";
3695 get_tic6x_section_type_name (unsigned int sh_type)
3699 case SHT_C6000_UNWIND:
3700 return "C6000_UNWIND";
3701 case SHT_C6000_PREEMPTMAP:
3702 return "C6000_PREEMPTMAP";
3703 case SHT_C6000_ATTRIBUTES:
3704 return "C6000_ATTRIBUTES";
3709 case SHT_TI_HANDLER:
3710 return "TI_HANDLER";
3711 case SHT_TI_INITINFO:
3712 return "TI_INITINFO";
3713 case SHT_TI_PHATTRS:
3714 return "TI_PHATTRS";
3722 get_msp430x_section_type_name (unsigned int sh_type)
3726 case SHT_MSP430_SEC_FLAGS: return "MSP430_SEC_FLAGS";
3727 case SHT_MSP430_SYM_ALIASES: return "MSP430_SYM_ALIASES";
3728 case SHT_MSP430_ATTRIBUTES: return "MSP430_ATTRIBUTES";
3729 default: return NULL;
3734 get_section_type_name (unsigned int sh_type)
3736 static char buff[32];
3740 case SHT_NULL: return "NULL";
3741 case SHT_PROGBITS: return "PROGBITS";
3742 case SHT_SYMTAB: return "SYMTAB";
3743 case SHT_STRTAB: return "STRTAB";
3744 case SHT_RELA: return "RELA";
3745 case SHT_HASH: return "HASH";
3746 case SHT_DYNAMIC: return "DYNAMIC";
3747 case SHT_NOTE: return "NOTE";
3748 case SHT_NOBITS: return "NOBITS";
3749 case SHT_REL: return "REL";
3750 case SHT_SHLIB: return "SHLIB";
3751 case SHT_DYNSYM: return "DYNSYM";
3752 case SHT_INIT_ARRAY: return "INIT_ARRAY";
3753 case SHT_FINI_ARRAY: return "FINI_ARRAY";
3754 case SHT_PREINIT_ARRAY: return "PREINIT_ARRAY";
3755 case SHT_GNU_HASH: return "GNU_HASH";
3756 case SHT_GROUP: return "GROUP";
3757 case SHT_SYMTAB_SHNDX: return "SYMTAB SECTION INDICIES";
3758 case SHT_GNU_verdef: return "VERDEF";
3759 case SHT_GNU_verneed: return "VERNEED";
3760 case SHT_GNU_versym: return "VERSYM";
3761 case 0x6ffffff0: return "VERSYM";
3762 case 0x6ffffffc: return "VERDEF";
3763 case 0x7ffffffd: return "AUXILIARY";
3764 case 0x7fffffff: return "FILTER";
3765 case SHT_GNU_LIBLIST: return "GNU_LIBLIST";
3768 if ((sh_type >= SHT_LOPROC) && (sh_type <= SHT_HIPROC))
3770 const char * result;
3772 switch (elf_header.e_machine)
3775 case EM_MIPS_RS3_LE:
3776 result = get_mips_section_type_name (sh_type);
3779 result = get_parisc_section_type_name (sh_type);
3782 result = get_ia64_section_type_name (sh_type);
3787 result = get_x86_64_section_type_name (sh_type);
3790 result = get_aarch64_section_type_name (sh_type);
3793 result = get_arm_section_type_name (sh_type);
3796 result = get_tic6x_section_type_name (sh_type);
3799 result = get_msp430x_section_type_name (sh_type);
3809 sprintf (buff, "LOPROC+%x", sh_type - SHT_LOPROC);
3811 else if ((sh_type >= SHT_LOOS) && (sh_type <= SHT_HIOS))
3813 const char * result;
3815 switch (elf_header.e_machine)
3818 result = get_ia64_section_type_name (sh_type);
3828 sprintf (buff, "LOOS+%x", sh_type - SHT_LOOS);
3830 else if ((sh_type >= SHT_LOUSER) && (sh_type <= SHT_HIUSER))
3831 sprintf (buff, "LOUSER+%x", sh_type - SHT_LOUSER);
3833 /* This message is probably going to be displayed in a 15
3834 character wide field, so put the hex value first. */
3835 snprintf (buff, sizeof (buff), _("%08x: <unknown>"), sh_type);
3841 #define OPTION_DEBUG_DUMP 512
3842 #define OPTION_DYN_SYMS 513
3843 #define OPTION_DWARF_DEPTH 514
3844 #define OPTION_DWARF_START 515
3845 #define OPTION_DWARF_CHECK 516
3847 static struct option options[] =
3849 {"all", no_argument, 0, 'a'},
3850 {"file-header", no_argument, 0, 'h'},
3851 {"program-headers", no_argument, 0, 'l'},
3852 {"headers", no_argument, 0, 'e'},
3853 {"histogram", no_argument, 0, 'I'},
3854 {"segments", no_argument, 0, 'l'},
3855 {"sections", no_argument, 0, 'S'},
3856 {"section-headers", no_argument, 0, 'S'},
3857 {"section-groups", no_argument, 0, 'g'},
3858 {"section-details", no_argument, 0, 't'},
3859 {"full-section-name",no_argument, 0, 'N'},
3860 {"symbols", no_argument, 0, 's'},
3861 {"syms", no_argument, 0, 's'},
3862 {"dyn-syms", no_argument, 0, OPTION_DYN_SYMS},
3863 {"relocs", no_argument, 0, 'r'},
3864 {"notes", no_argument, 0, 'n'},
3865 {"dynamic", no_argument, 0, 'd'},
3866 {"arch-specific", no_argument, 0, 'A'},
3867 {"version-info", no_argument, 0, 'V'},
3868 {"use-dynamic", no_argument, 0, 'D'},
3869 {"unwind", no_argument, 0, 'u'},
3870 {"archive-index", no_argument, 0, 'c'},
3871 {"hex-dump", required_argument, 0, 'x'},
3872 {"relocated-dump", required_argument, 0, 'R'},
3873 {"string-dump", required_argument, 0, 'p'},
3874 #ifdef SUPPORT_DISASSEMBLY
3875 {"instruction-dump", required_argument, 0, 'i'},
3877 {"debug-dump", optional_argument, 0, OPTION_DEBUG_DUMP},
3879 {"dwarf-depth", required_argument, 0, OPTION_DWARF_DEPTH},
3880 {"dwarf-start", required_argument, 0, OPTION_DWARF_START},
3881 {"dwarf-check", no_argument, 0, OPTION_DWARF_CHECK},
3883 {"version", no_argument, 0, 'v'},
3884 {"wide", no_argument, 0, 'W'},
3885 {"help", no_argument, 0, 'H'},
3886 {0, no_argument, 0, 0}
3890 usage (FILE * stream)
3892 fprintf (stream, _("Usage: readelf <option(s)> elf-file(s)\n"));
3893 fprintf (stream, _(" Display information about the contents of ELF format files\n"));
3894 fprintf (stream, _(" Options are:\n\
3895 -a --all Equivalent to: -h -l -S -s -r -d -V -A -I\n\
3896 -h --file-header Display the ELF file header\n\
3897 -l --program-headers Display the program headers\n\
3898 --segments An alias for --program-headers\n\
3899 -S --section-headers Display the sections' header\n\
3900 --sections An alias for --section-headers\n\
3901 -g --section-groups Display the section groups\n\
3902 -t --section-details Display the section details\n\
3903 -e --headers Equivalent to: -h -l -S\n\
3904 -s --syms Display the symbol table\n\
3905 --symbols An alias for --syms\n\
3906 --dyn-syms Display the dynamic symbol table\n\
3907 -n --notes Display the core notes (if present)\n\
3908 -r --relocs Display the relocations (if present)\n\
3909 -u --unwind Display the unwind info (if present)\n\
3910 -d --dynamic Display the dynamic section (if present)\n\
3911 -V --version-info Display the version sections (if present)\n\
3912 -A --arch-specific Display architecture specific information (if any)\n\
3913 -c --archive-index Display the symbol/file index in an archive\n\
3914 -D --use-dynamic Use the dynamic section info when displaying symbols\n\
3915 -x --hex-dump=<number|name>\n\
3916 Dump the contents of section <number|name> as bytes\n\
3917 -p --string-dump=<number|name>\n\
3918 Dump the contents of section <number|name> as strings\n\
3919 -R --relocated-dump=<number|name>\n\
3920 Dump the contents of section <number|name> as relocated bytes\n\
3921 -w[lLiaprmfFsoRt] or\n\
3922 --debug-dump[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,\n\
3923 =frames-interp,=str,=loc,=Ranges,=pubtypes,\n\
3924 =gdb_index,=trace_info,=trace_abbrev,=trace_aranges,\n\
3926 Display the contents of DWARF2 debug sections\n"));
3927 fprintf (stream, _("\
3928 --dwarf-depth=N Do not display DIEs at depth N or greater\n\
3929 --dwarf-start=N Display DIEs starting with N, at the same depth\n\
3931 #ifdef SUPPORT_DISASSEMBLY
3932 fprintf (stream, _("\
3933 -i --instruction-dump=<number|name>\n\
3934 Disassemble the contents of section <number|name>\n"));
3936 fprintf (stream, _("\
3937 -I --histogram Display histogram of bucket list lengths\n\
3938 -W --wide Allow output width to exceed 80 characters\n\
3939 @<file> Read options from <file>\n\
3940 -H --help Display this information\n\
3941 -v --version Display the version number of readelf\n"));
3943 if (REPORT_BUGS_TO[0] && stream == stdout)
3944 fprintf (stdout, _("Report bugs to %s\n"), REPORT_BUGS_TO);
3946 exit (stream == stdout ? 0 : 1);
3949 /* Record the fact that the user wants the contents of section number
3950 SECTION to be displayed using the method(s) encoded as flags bits
3951 in TYPE. Note, TYPE can be zero if we are creating the array for
3955 request_dump_bynumber (unsigned int section, dump_type type)
3957 if (section >= num_dump_sects)
3959 dump_type * new_dump_sects;
3961 new_dump_sects = (dump_type *) calloc (section + 1,
3962 sizeof (* dump_sects));
3964 if (new_dump_sects == NULL)
3965 error (_("Out of memory allocating dump request table.\n"));
3968 /* Copy current flag settings. */
3969 memcpy (new_dump_sects, dump_sects, num_dump_sects * sizeof (* dump_sects));
3973 dump_sects = new_dump_sects;
3974 num_dump_sects = section + 1;
3979 dump_sects[section] |= type;
3984 /* Request a dump by section name. */
3987 request_dump_byname (const char * section, dump_type type)
3989 struct dump_list_entry * new_request;
3991 new_request = (struct dump_list_entry *)
3992 malloc (sizeof (struct dump_list_entry));
3994 error (_("Out of memory allocating dump request table.\n"));
3996 new_request->name = strdup (section);
3997 if (!new_request->name)
3998 error (_("Out of memory allocating dump request table.\n"));
4000 new_request->type = type;
4002 new_request->next = dump_sects_byname;
4003 dump_sects_byname = new_request;
4007 request_dump (dump_type type)
4013 section = strtoul (optarg, & cp, 0);
4015 if (! *cp && section >= 0)
4016 request_dump_bynumber (section, type);
4018 request_dump_byname (optarg, type);
4023 parse_args (int argc, char ** argv)
4030 while ((c = getopt_long
4031 (argc, argv, "ADHINR:SVWacdeghi:lnp:rstuvw::x:", options, NULL)) != EOF)
4049 do_section_groups++;
4057 do_section_groups++;
4062 do_section_details++;
4106 request_dump (HEX_DUMP);
4109 request_dump (STRING_DUMP);
4112 request_dump (RELOC_DUMP);
4119 dwarf_select_sections_all ();
4124 dwarf_select_sections_by_letters (optarg);
4127 case OPTION_DEBUG_DUMP:
4134 dwarf_select_sections_by_names (optarg);
4137 case OPTION_DWARF_DEPTH:
4141 dwarf_cutoff_level = strtoul (optarg, & cp, 0);
4144 case OPTION_DWARF_START:
4148 dwarf_start_die = strtoul (optarg, & cp, 0);
4151 case OPTION_DWARF_CHECK:
4154 case OPTION_DYN_SYMS:
4157 #ifdef SUPPORT_DISASSEMBLY
4159 request_dump (DISASS_DUMP);
4163 print_version (program_name);
4172 /* xgettext:c-format */
4173 error (_("Invalid option '-%c'\n"), c);
4180 if (!do_dynamic && !do_syms && !do_reloc && !do_unwind && !do_sections
4181 && !do_segments && !do_header && !do_dump && !do_version
4182 && !do_histogram && !do_debugging && !do_arch && !do_notes
4183 && !do_section_groups && !do_archive_index
4188 warn (_("Nothing to do.\n"));
4194 get_elf_class (unsigned int elf_class)
4196 static char buff[32];
4200 case ELFCLASSNONE: return _("none");
4201 case ELFCLASS32: return "ELF32";
4202 case ELFCLASS64: return "ELF64";
4204 snprintf (buff, sizeof (buff), _("<unknown: %x>"), elf_class);
4210 get_data_encoding (unsigned int encoding)
4212 static char buff[32];
4216 case ELFDATANONE: return _("none");
4217 case ELFDATA2LSB: return _("2's complement, little endian");
4218 case ELFDATA2MSB: return _("2's complement, big endian");
4220 snprintf (buff, sizeof (buff), _("<unknown: %x>"), encoding);
4225 /* Decode the data held in 'elf_header'. */
4228 process_file_header (void)
4230 if ( elf_header.e_ident[EI_MAG0] != ELFMAG0
4231 || elf_header.e_ident[EI_MAG1] != ELFMAG1
4232 || elf_header.e_ident[EI_MAG2] != ELFMAG2
4233 || elf_header.e_ident[EI_MAG3] != ELFMAG3)
4236 (_("Not an ELF file - it has the wrong magic bytes at the start\n"));
4240 init_dwarf_regnames (elf_header.e_machine);
4246 printf (_("ELF Header:\n"));
4247 printf (_(" Magic: "));
4248 for (i = 0; i < EI_NIDENT; i++)
4249 printf ("%2.2x ", elf_header.e_ident[i]);
4251 printf (_(" Class: %s\n"),
4252 get_elf_class (elf_header.e_ident[EI_CLASS]));
4253 printf (_(" Data: %s\n"),
4254 get_data_encoding (elf_header.e_ident[EI_DATA]));
4255 printf (_(" Version: %d %s\n"),
4256 elf_header.e_ident[EI_VERSION],
4257 (elf_header.e_ident[EI_VERSION] == EV_CURRENT
4259 : (elf_header.e_ident[EI_VERSION] != EV_NONE
4260 ? _("<unknown: %lx>")
4262 printf (_(" OS/ABI: %s\n"),
4263 get_osabi_name (elf_header.e_ident[EI_OSABI]));
4264 printf (_(" ABI Version: %d\n"),
4265 elf_header.e_ident[EI_ABIVERSION]);
4266 printf (_(" Type: %s\n"),
4267 get_file_type (elf_header.e_type));
4268 printf (_(" Machine: %s\n"),
4269 get_machine_name (elf_header.e_machine));
4270 printf (_(" Version: 0x%lx\n"),
4271 (unsigned long) elf_header.e_version);
4273 printf (_(" Entry point address: "));
4274 print_vma ((bfd_vma) elf_header.e_entry, PREFIX_HEX);
4275 printf (_("\n Start of program headers: "));
4276 print_vma ((bfd_vma) elf_header.e_phoff, DEC);
4277 printf (_(" (bytes into file)\n Start of section headers: "));
4278 print_vma ((bfd_vma) elf_header.e_shoff, DEC);
4279 printf (_(" (bytes into file)\n"));
4281 printf (_(" Flags: 0x%lx%s\n"),
4282 (unsigned long) elf_header.e_flags,
4283 get_machine_flags (elf_header.e_flags, elf_header.e_machine));
4284 printf (_(" Size of this header: %ld (bytes)\n"),
4285 (long) elf_header.e_ehsize);
4286 printf (_(" Size of program headers: %ld (bytes)\n"),
4287 (long) elf_header.e_phentsize);
4288 printf (_(" Number of program headers: %ld"),
4289 (long) elf_header.e_phnum);
4290 if (section_headers != NULL
4291 && elf_header.e_phnum == PN_XNUM
4292 && section_headers[0].sh_info != 0)
4293 printf (" (%ld)", (long) section_headers[0].sh_info);
4294 putc ('\n', stdout);
4295 printf (_(" Size of section headers: %ld (bytes)\n"),
4296 (long) elf_header.e_shentsize);
4297 printf (_(" Number of section headers: %ld"),
4298 (long) elf_header.e_shnum);
4299 if (section_headers != NULL && elf_header.e_shnum == SHN_UNDEF)
4300 printf (" (%ld)", (long) section_headers[0].sh_size);
4301 putc ('\n', stdout);
4302 printf (_(" Section header string table index: %ld"),
4303 (long) elf_header.e_shstrndx);
4304 if (section_headers != NULL
4305 && elf_header.e_shstrndx == (SHN_XINDEX & 0xffff))
4306 printf (" (%u)", section_headers[0].sh_link);
4307 else if (elf_header.e_shstrndx != SHN_UNDEF
4308 && elf_header.e_shstrndx >= elf_header.e_shnum)
4309 printf (_(" <corrupt: out of range>"));
4310 putc ('\n', stdout);
4313 if (section_headers != NULL)
4315 if (elf_header.e_phnum == PN_XNUM
4316 && section_headers[0].sh_info != 0)
4317 elf_header.e_phnum = section_headers[0].sh_info;
4318 if (elf_header.e_shnum == SHN_UNDEF)
4319 elf_header.e_shnum = section_headers[0].sh_size;
4320 if (elf_header.e_shstrndx == (SHN_XINDEX & 0xffff))
4321 elf_header.e_shstrndx = section_headers[0].sh_link;
4322 else if (elf_header.e_shstrndx >= elf_header.e_shnum)
4323 elf_header.e_shstrndx = SHN_UNDEF;
4324 free (section_headers);
4325 section_headers = NULL;
4332 get_32bit_program_headers (FILE * file, Elf_Internal_Phdr * pheaders)
4334 Elf32_External_Phdr * phdrs;
4335 Elf32_External_Phdr * external;
4336 Elf_Internal_Phdr * internal;
4338 unsigned int size = elf_header.e_phentsize;
4339 unsigned int num = elf_header.e_phnum;
4341 /* PR binutils/17531: Cope with unexpected section header sizes. */
4342 if (size == 0 || num == 0)
4344 if (size < sizeof * phdrs)
4346 error (_("The e_phentsize field in the ELF header is less than the size of an ELF program header\n"));
4349 if (size > sizeof * phdrs)
4350 warn (_("The e_phentsize field in the ELF header is larger than the size of an ELF program header\n"));
4352 phdrs = (Elf32_External_Phdr *) get_data (NULL, file, elf_header.e_phoff,
4353 size, num, _("program headers"));
4357 for (i = 0, internal = pheaders, external = phdrs;
4358 i < elf_header.e_phnum;
4359 i++, internal++, external++)
4361 internal->p_type = BYTE_GET (external->p_type);
4362 internal->p_offset = BYTE_GET (external->p_offset);
4363 internal->p_vaddr = BYTE_GET (external->p_vaddr);
4364 internal->p_paddr = BYTE_GET (external->p_paddr);
4365 internal->p_filesz = BYTE_GET (external->p_filesz);
4366 internal->p_memsz = BYTE_GET (external->p_memsz);
4367 internal->p_flags = BYTE_GET (external->p_flags);
4368 internal->p_align = BYTE_GET (external->p_align);
4376 get_64bit_program_headers (FILE * file, Elf_Internal_Phdr * pheaders)
4378 Elf64_External_Phdr * phdrs;
4379 Elf64_External_Phdr * external;
4380 Elf_Internal_Phdr * internal;
4382 unsigned int size = elf_header.e_phentsize;
4383 unsigned int num = elf_header.e_phnum;
4385 /* PR binutils/17531: Cope with unexpected section header sizes. */
4386 if (size == 0 || num == 0)
4388 if (size < sizeof * phdrs)
4390 error (_("The e_phentsize field in the ELF header is less than the size of an ELF program header\n"));
4393 if (size > sizeof * phdrs)
4394 warn (_("The e_phentsize field in the ELF header is larger than the size of an ELF program header\n"));
4396 phdrs = (Elf64_External_Phdr *) get_data (NULL, file, elf_header.e_phoff,
4397 size, num, _("program headers"));
4401 for (i = 0, internal = pheaders, external = phdrs;
4402 i < elf_header.e_phnum;
4403 i++, internal++, external++)
4405 internal->p_type = BYTE_GET (external->p_type);
4406 internal->p_flags = BYTE_GET (external->p_flags);
4407 internal->p_offset = BYTE_GET (external->p_offset);
4408 internal->p_vaddr = BYTE_GET (external->p_vaddr);
4409 internal->p_paddr = BYTE_GET (external->p_paddr);
4410 internal->p_filesz = BYTE_GET (external->p_filesz);
4411 internal->p_memsz = BYTE_GET (external->p_memsz);
4412 internal->p_align = BYTE_GET (external->p_align);
4419 /* Returns 1 if the program headers were read into `program_headers'. */
4422 get_program_headers (FILE * file)
4424 Elf_Internal_Phdr * phdrs;
4426 /* Check cache of prior read. */
4427 if (program_headers != NULL)
4430 phdrs = (Elf_Internal_Phdr *) cmalloc (elf_header.e_phnum,
4431 sizeof (Elf_Internal_Phdr));
4435 error (_("Out of memory reading %u program headers\n"),
4436 elf_header.e_phnum);
4441 ? get_32bit_program_headers (file, phdrs)
4442 : get_64bit_program_headers (file, phdrs))
4444 program_headers = phdrs;
4452 /* Returns 1 if the program headers were loaded. */
4455 process_program_headers (FILE * file)
4457 Elf_Internal_Phdr * segment;
4460 if (elf_header.e_phnum == 0)
4462 /* PR binutils/12467. */
4463 if (elf_header.e_phoff != 0)
4464 warn (_("possibly corrupt ELF header - it has a non-zero program"
4465 " header offset, but no program headers"));
4466 else if (do_segments)
4467 printf (_("\nThere are no program headers in this file.\n"));
4471 if (do_segments && !do_header)
4473 printf (_("\nElf file type is %s\n"), get_file_type (elf_header.e_type));
4474 printf (_("Entry point "));
4475 print_vma ((bfd_vma) elf_header.e_entry, PREFIX_HEX);
4476 printf (_("\nThere are %d program headers, starting at offset "),
4477 elf_header.e_phnum);
4478 print_vma ((bfd_vma) elf_header.e_phoff, DEC);
4482 if (! get_program_headers (file))
4487 if (elf_header.e_phnum > 1)
4488 printf (_("\nProgram Headers:\n"));
4490 printf (_("\nProgram Headers:\n"));
4494 (_(" Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align\n"));
4497 (_(" Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align\n"));
4501 (_(" Type Offset VirtAddr PhysAddr\n"));
4503 (_(" FileSiz MemSiz Flags Align\n"));
4510 for (i = 0, segment = program_headers;
4511 i < elf_header.e_phnum;
4516 printf (" %-14.14s ", get_segment_type (segment->p_type));
4520 printf ("0x%6.6lx ", (unsigned long) segment->p_offset);
4521 printf ("0x%8.8lx ", (unsigned long) segment->p_vaddr);
4522 printf ("0x%8.8lx ", (unsigned long) segment->p_paddr);
4523 printf ("0x%5.5lx ", (unsigned long) segment->p_filesz);
4524 printf ("0x%5.5lx ", (unsigned long) segment->p_memsz);
4526 (segment->p_flags & PF_R ? 'R' : ' '),
4527 (segment->p_flags & PF_W ? 'W' : ' '),
4528 (segment->p_flags & PF_X ? 'E' : ' '));
4529 printf ("%#lx", (unsigned long) segment->p_align);
4533 if ((unsigned long) segment->p_offset == segment->p_offset)
4534 printf ("0x%6.6lx ", (unsigned long) segment->p_offset);
4537 print_vma (segment->p_offset, FULL_HEX);
4541 print_vma (segment->p_vaddr, FULL_HEX);
4543 print_vma (segment->p_paddr, FULL_HEX);
4546 if ((unsigned long) segment->p_filesz == segment->p_filesz)
4547 printf ("0x%6.6lx ", (unsigned long) segment->p_filesz);
4550 print_vma (segment->p_filesz, FULL_HEX);
4554 if ((unsigned long) segment->p_memsz == segment->p_memsz)
4555 printf ("0x%6.6lx", (unsigned long) segment->p_memsz);
4558 print_vma (segment->p_memsz, FULL_HEX);
4562 (segment->p_flags & PF_R ? 'R' : ' '),
4563 (segment->p_flags & PF_W ? 'W' : ' '),
4564 (segment->p_flags & PF_X ? 'E' : ' '));
4566 if ((unsigned long) segment->p_align == segment->p_align)
4567 printf ("%#lx", (unsigned long) segment->p_align);
4570 print_vma (segment->p_align, PREFIX_HEX);
4575 print_vma (segment->p_offset, FULL_HEX);
4577 print_vma (segment->p_vaddr, FULL_HEX);
4579 print_vma (segment->p_paddr, FULL_HEX);
4581 print_vma (segment->p_filesz, FULL_HEX);
4583 print_vma (segment->p_memsz, FULL_HEX);
4585 (segment->p_flags & PF_R ? 'R' : ' '),
4586 (segment->p_flags & PF_W ? 'W' : ' '),
4587 (segment->p_flags & PF_X ? 'E' : ' '));
4588 print_vma (segment->p_align, HEX);
4593 putc ('\n', stdout);
4595 switch (segment->p_type)
4599 error (_("more than one dynamic segment\n"));
4601 /* By default, assume that the .dynamic section is the first
4602 section in the DYNAMIC segment. */
4603 dynamic_addr = segment->p_offset;
4604 dynamic_size = segment->p_filesz;
4605 /* PR binutils/17512: Avoid corrupt dynamic section info in the segment. */
4606 if (dynamic_addr + dynamic_size >= current_file_size)
4608 error (_("the dynamic segment offset + size exceeds the size of the file\n"));
4609 dynamic_addr = dynamic_size = 0;
4612 /* Try to locate the .dynamic section. If there is
4613 a section header table, we can easily locate it. */
4614 if (section_headers != NULL)
4616 Elf_Internal_Shdr * sec;
4618 sec = find_section (".dynamic");
4619 if (sec == NULL || sec->sh_size == 0)
4621 /* A corresponding .dynamic section is expected, but on
4622 IA-64/OpenVMS it is OK for it to be missing. */
4623 if (!is_ia64_vms ())
4624 error (_("no .dynamic section in the dynamic segment\n"));
4628 if (sec->sh_type == SHT_NOBITS)
4634 dynamic_addr = sec->sh_offset;
4635 dynamic_size = sec->sh_size;
4637 if (dynamic_addr < segment->p_offset
4638 || dynamic_addr > segment->p_offset + segment->p_filesz)
4639 warn (_("the .dynamic section is not contained"
4640 " within the dynamic segment\n"));
4641 else if (dynamic_addr > segment->p_offset)
4642 warn (_("the .dynamic section is not the first section"
4643 " in the dynamic segment.\n"));
4648 if (fseek (file, archive_file_offset + (long) segment->p_offset,
4650 error (_("Unable to find program interpreter name\n"));
4654 int ret = snprintf (fmt, sizeof (fmt), "%%%ds", PATH_MAX - 1);
4656 if (ret >= (int) sizeof (fmt) || ret < 0)
4657 error (_("Internal error: failed to create format string to display program interpreter\n"));
4659 program_interpreter[0] = 0;
4660 if (fscanf (file, fmt, program_interpreter) <= 0)
4661 error (_("Unable to read program interpreter name\n"));
4664 printf (_(" [Requesting program interpreter: %s]\n"),
4665 program_interpreter);
4671 if (do_segments && section_headers != NULL && string_table != NULL)
4673 printf (_("\n Section to Segment mapping:\n"));
4674 printf (_(" Segment Sections...\n"));
4676 for (i = 0; i < elf_header.e_phnum; i++)
4679 Elf_Internal_Shdr * section;
4681 segment = program_headers + i;
4682 section = section_headers + 1;
4684 printf (" %2.2d ", i);
4686 for (j = 1; j < elf_header.e_shnum; j++, section++)
4688 if (!ELF_TBSS_SPECIAL (section, segment)
4689 && ELF_SECTION_IN_SEGMENT_STRICT (section, segment))
4690 printf ("%s ", printable_section_name (section));
4701 /* Find the file offset corresponding to VMA by using the program headers. */
4704 offset_from_vma (FILE * file, bfd_vma vma, bfd_size_type size)
4706 Elf_Internal_Phdr * seg;
4708 if (! get_program_headers (file))
4710 warn (_("Cannot interpret virtual addresses without program headers.\n"));
4714 for (seg = program_headers;
4715 seg < program_headers + elf_header.e_phnum;
4718 if (seg->p_type != PT_LOAD)
4721 if (vma >= (seg->p_vaddr & -seg->p_align)
4722 && vma + size <= seg->p_vaddr + seg->p_filesz)
4723 return vma - seg->p_vaddr + seg->p_offset;
4726 warn (_("Virtual address 0x%lx not located in any PT_LOAD segment.\n"),
4727 (unsigned long) vma);
4732 /* Allocate memory and load the sections headers into the global pointer
4733 SECTION_HEADERS. If PROBE is true, this is just a probe and we do not
4734 generate any error messages if the load fails. */
4737 get_32bit_section_headers (FILE * file, bfd_boolean probe)
4739 Elf32_External_Shdr * shdrs;
4740 Elf_Internal_Shdr * internal;
4742 unsigned int size = elf_header.e_shentsize;
4743 unsigned int num = probe ? 1 : elf_header.e_shnum;
4745 /* PR binutils/17531: Cope with unexpected section header sizes. */
4746 if (size == 0 || num == 0)
4748 if (size < sizeof * shdrs)
4751 error (_("The e_shentsize field in the ELF header is less than the size of an ELF section header\n"));
4754 if (!probe && size > sizeof * shdrs)
4755 warn (_("The e_shentsize field in the ELF header is larger than the size of an ELF section header\n"));
4757 shdrs = (Elf32_External_Shdr *) get_data (NULL, file, elf_header.e_shoff,
4759 probe ? NULL : _("section headers"));
4763 if (section_headers != NULL)
4764 free (section_headers);
4765 section_headers = (Elf_Internal_Shdr *) cmalloc (num,
4766 sizeof (Elf_Internal_Shdr));
4767 if (section_headers == NULL)
4770 error (_("Out of memory reading %u section headers\n"), num);
4774 for (i = 0, internal = section_headers;
4778 internal->sh_name = BYTE_GET (shdrs[i].sh_name);
4779 internal->sh_type = BYTE_GET (shdrs[i].sh_type);
4780 internal->sh_flags = BYTE_GET (shdrs[i].sh_flags);
4781 internal->sh_addr = BYTE_GET (shdrs[i].sh_addr);
4782 internal->sh_offset = BYTE_GET (shdrs[i].sh_offset);
4783 internal->sh_size = BYTE_GET (shdrs[i].sh_size);
4784 internal->sh_link = BYTE_GET (shdrs[i].sh_link);
4785 internal->sh_info = BYTE_GET (shdrs[i].sh_info);
4786 internal->sh_addralign = BYTE_GET (shdrs[i].sh_addralign);
4787 internal->sh_entsize = BYTE_GET (shdrs[i].sh_entsize);
4795 get_64bit_section_headers (FILE * file, bfd_boolean probe)
4797 Elf64_External_Shdr * shdrs;
4798 Elf_Internal_Shdr * internal;
4800 unsigned int size = elf_header.e_shentsize;
4801 unsigned int num = probe ? 1 : elf_header.e_shnum;
4803 /* PR binutils/17531: Cope with unexpected section header sizes. */
4804 if (size == 0 || num == 0)
4806 if (size < sizeof * shdrs)
4809 error (_("The e_shentsize field in the ELF header is less than the size of an ELF section header\n"));
4812 if (! probe && size > sizeof * shdrs)
4813 warn (_("The e_shentsize field in the ELF header is larger than the size of an ELF section header\n"));
4815 shdrs = (Elf64_External_Shdr *) get_data (NULL, file, elf_header.e_shoff,
4817 probe ? NULL : _("section headers"));
4821 if (section_headers != NULL)
4822 free (section_headers);
4823 section_headers = (Elf_Internal_Shdr *) cmalloc (num,
4824 sizeof (Elf_Internal_Shdr));
4825 if (section_headers == NULL)
4828 error (_("Out of memory reading %u section headers\n"), num);
4832 for (i = 0, internal = section_headers;
4836 internal->sh_name = BYTE_GET (shdrs[i].sh_name);
4837 internal->sh_type = BYTE_GET (shdrs[i].sh_type);
4838 internal->sh_flags = BYTE_GET (shdrs[i].sh_flags);
4839 internal->sh_addr = BYTE_GET (shdrs[i].sh_addr);
4840 internal->sh_size = BYTE_GET (shdrs[i].sh_size);
4841 internal->sh_entsize = BYTE_GET (shdrs[i].sh_entsize);
4842 internal->sh_link = BYTE_GET (shdrs[i].sh_link);
4843 internal->sh_info = BYTE_GET (shdrs[i].sh_info);
4844 internal->sh_offset = BYTE_GET (shdrs[i].sh_offset);
4845 internal->sh_addralign = BYTE_GET (shdrs[i].sh_addralign);
4852 static Elf_Internal_Sym *
4853 get_32bit_elf_symbols (FILE * file,
4854 Elf_Internal_Shdr * section,
4855 unsigned long * num_syms_return)
4857 unsigned long number = 0;
4858 Elf32_External_Sym * esyms = NULL;
4859 Elf_External_Sym_Shndx * shndx = NULL;
4860 Elf_Internal_Sym * isyms = NULL;
4861 Elf_Internal_Sym * psym;
4864 if (section->sh_size == 0)
4866 if (num_syms_return != NULL)
4867 * num_syms_return = 0;
4871 /* Run some sanity checks first. */
4872 if (section->sh_entsize == 0 || section->sh_entsize > section->sh_size)
4874 error (_("Section %s has an invalid sh_entsize of 0x%lx\n"),
4875 printable_section_name (section), (unsigned long) section->sh_entsize);
4879 if (section->sh_size > current_file_size)
4881 error (_("Section %s has an invalid sh_size of 0x%lx\n"),
4882 printable_section_name (section), (unsigned long) section->sh_size);
4886 number = section->sh_size / section->sh_entsize;
4888 if (number * sizeof (Elf32_External_Sym) > section->sh_size + 1)
4890 error (_("Size (0x%lx) of section %s is not a multiple of its sh_entsize (0x%lx)\n"),
4891 (unsigned long) section->sh_size,
4892 printable_section_name (section),
4893 (unsigned long) section->sh_entsize);
4897 esyms = (Elf32_External_Sym *) get_data (NULL, file, section->sh_offset, 1,
4898 section->sh_size, _("symbols"));
4903 if (symtab_shndx_hdr != NULL
4904 && (symtab_shndx_hdr->sh_link
4905 == (unsigned long) (section - section_headers)))
4907 shndx = (Elf_External_Sym_Shndx *) get_data (NULL, file,
4908 symtab_shndx_hdr->sh_offset,
4909 1, symtab_shndx_hdr->sh_size,
4910 _("symbol table section indicies"));
4913 /* PR17531: file: heap-buffer-overflow */
4914 else if (symtab_shndx_hdr->sh_size / sizeof (Elf_External_Sym_Shndx) < number)
4916 error (_("Index section %s has an sh_size of 0x%lx - expected 0x%lx\n"),
4917 printable_section_name (symtab_shndx_hdr),
4918 (unsigned long) symtab_shndx_hdr->sh_size,
4919 (unsigned long) section->sh_size);
4924 isyms = (Elf_Internal_Sym *) cmalloc (number, sizeof (Elf_Internal_Sym));
4928 error (_("Out of memory reading %lu symbols\n"),
4929 (unsigned long) number);
4933 for (j = 0, psym = isyms; j < number; j++, psym++)
4935 psym->st_name = BYTE_GET (esyms[j].st_name);
4936 psym->st_value = BYTE_GET (esyms[j].st_value);
4937 psym->st_size = BYTE_GET (esyms[j].st_size);
4938 psym->st_shndx = BYTE_GET (esyms[j].st_shndx);
4939 if (psym->st_shndx == (SHN_XINDEX & 0xffff) && shndx != NULL)
4941 = byte_get ((unsigned char *) &shndx[j], sizeof (shndx[j]));
4942 else if (psym->st_shndx >= (SHN_LORESERVE & 0xffff))
4943 psym->st_shndx += SHN_LORESERVE - (SHN_LORESERVE & 0xffff);
4944 psym->st_info = BYTE_GET (esyms[j].st_info);
4945 psym->st_other = BYTE_GET (esyms[j].st_other);
4954 if (num_syms_return != NULL)
4955 * num_syms_return = isyms == NULL ? 0 : number;
4960 static Elf_Internal_Sym *
4961 get_64bit_elf_symbols (FILE * file,
4962 Elf_Internal_Shdr * section,
4963 unsigned long * num_syms_return)
4965 unsigned long number = 0;
4966 Elf64_External_Sym * esyms = NULL;
4967 Elf_External_Sym_Shndx * shndx = NULL;
4968 Elf_Internal_Sym * isyms = NULL;
4969 Elf_Internal_Sym * psym;
4972 if (section->sh_size == 0)
4974 if (num_syms_return != NULL)
4975 * num_syms_return = 0;
4979 /* Run some sanity checks first. */
4980 if (section->sh_entsize == 0 || section->sh_entsize > section->sh_size)
4982 error (_("Section %s has an invalid sh_entsize of 0x%lx\n"),
4983 printable_section_name (section),
4984 (unsigned long) section->sh_entsize);
4988 if (section->sh_size > current_file_size)
4990 error (_("Section %s has an invalid sh_size of 0x%lx\n"),
4991 printable_section_name (section),
4992 (unsigned long) section->sh_size);
4996 number = section->sh_size / section->sh_entsize;
4998 if (number * sizeof (Elf64_External_Sym) > section->sh_size + 1)
5000 error (_("Size (0x%lx) of section %s is not a multiple of its sh_entsize (0x%lx)\n"),
5001 (unsigned long) section->sh_size,
5002 printable_section_name (section),
5003 (unsigned long) section->sh_entsize);
5007 esyms = (Elf64_External_Sym *) get_data (NULL, file, section->sh_offset, 1,
5008 section->sh_size, _("symbols"));
5012 if (symtab_shndx_hdr != NULL
5013 && (symtab_shndx_hdr->sh_link
5014 == (unsigned long) (section - section_headers)))
5016 shndx = (Elf_External_Sym_Shndx *) get_data (NULL, file,
5017 symtab_shndx_hdr->sh_offset,
5018 1, symtab_shndx_hdr->sh_size,
5019 _("symbol table section indicies"));
5022 else if (symtab_shndx_hdr->sh_size / sizeof (Elf_External_Sym_Shndx) < number)
5024 error (_("Index section %s has an sh_size of 0x%lx - expected 0x%lx\n"),
5025 printable_section_name (symtab_shndx_hdr),
5026 (unsigned long) symtab_shndx_hdr->sh_size,
5027 (unsigned long) section->sh_size);
5032 isyms = (Elf_Internal_Sym *) cmalloc (number, sizeof (Elf_Internal_Sym));
5036 error (_("Out of memory reading %lu symbols\n"),
5037 (unsigned long) number);
5041 for (j = 0, psym = isyms; j < number; j++, psym++)
5043 psym->st_name = BYTE_GET (esyms[j].st_name);
5044 psym->st_info = BYTE_GET (esyms[j].st_info);
5045 psym->st_other = BYTE_GET (esyms[j].st_other);
5046 psym->st_shndx = BYTE_GET (esyms[j].st_shndx);
5048 if (psym->st_shndx == (SHN_XINDEX & 0xffff) && shndx != NULL)
5050 = byte_get ((unsigned char *) &shndx[j], sizeof (shndx[j]));
5051 else if (psym->st_shndx >= (SHN_LORESERVE & 0xffff))
5052 psym->st_shndx += SHN_LORESERVE - (SHN_LORESERVE & 0xffff);
5054 psym->st_value = BYTE_GET (esyms[j].st_value);
5055 psym->st_size = BYTE_GET (esyms[j].st_size);
5064 if (num_syms_return != NULL)
5065 * num_syms_return = isyms == NULL ? 0 : number;
5071 get_elf_section_flags (bfd_vma sh_flags)
5073 static char buff[1024];
5075 int field_size = is_32bit_elf ? 8 : 16;
5077 int size = sizeof (buff) - (field_size + 4 + 1);
5078 bfd_vma os_flags = 0;
5079 bfd_vma proc_flags = 0;
5080 bfd_vma unknown_flags = 0;
5088 /* 0 */ { STRING_COMMA_LEN ("WRITE") },
5089 /* 1 */ { STRING_COMMA_LEN ("ALLOC") },
5090 /* 2 */ { STRING_COMMA_LEN ("EXEC") },
5091 /* 3 */ { STRING_COMMA_LEN ("MERGE") },
5092 /* 4 */ { STRING_COMMA_LEN ("STRINGS") },
5093 /* 5 */ { STRING_COMMA_LEN ("INFO LINK") },
5094 /* 6 */ { STRING_COMMA_LEN ("LINK ORDER") },
5095 /* 7 */ { STRING_COMMA_LEN ("OS NONCONF") },
5096 /* 8 */ { STRING_COMMA_LEN ("GROUP") },
5097 /* 9 */ { STRING_COMMA_LEN ("TLS") },
5098 /* IA-64 specific. */
5099 /* 10 */ { STRING_COMMA_LEN ("SHORT") },
5100 /* 11 */ { STRING_COMMA_LEN ("NORECOV") },
5101 /* IA-64 OpenVMS specific. */
5102 /* 12 */ { STRING_COMMA_LEN ("VMS_GLOBAL") },
5103 /* 13 */ { STRING_COMMA_LEN ("VMS_OVERLAID") },
5104 /* 14 */ { STRING_COMMA_LEN ("VMS_SHARED") },
5105 /* 15 */ { STRING_COMMA_LEN ("VMS_VECTOR") },
5106 /* 16 */ { STRING_COMMA_LEN ("VMS_ALLOC_64BIT") },
5107 /* 17 */ { STRING_COMMA_LEN ("VMS_PROTECTED") },
5109 /* 18 */ { STRING_COMMA_LEN ("EXCLUDE") },
5110 /* SPARC specific. */
5111 /* 19 */ { STRING_COMMA_LEN ("ORDERED") }
5114 if (do_section_details)
5116 sprintf (buff, "[%*.*lx]: ",
5117 field_size, field_size, (unsigned long) sh_flags);
5118 p += field_size + 4;
5125 flag = sh_flags & - sh_flags;
5128 if (do_section_details)
5132 case SHF_WRITE: sindex = 0; break;
5133 case SHF_ALLOC: sindex = 1; break;
5134 case SHF_EXECINSTR: sindex = 2; break;
5135 case SHF_MERGE: sindex = 3; break;
5136 case SHF_STRINGS: sindex = 4; break;
5137 case SHF_INFO_LINK: sindex = 5; break;
5138 case SHF_LINK_ORDER: sindex = 6; break;
5139 case SHF_OS_NONCONFORMING: sindex = 7; break;
5140 case SHF_GROUP: sindex = 8; break;
5141 case SHF_TLS: sindex = 9; break;
5142 case SHF_EXCLUDE: sindex = 18; break;
5146 switch (elf_header.e_machine)
5149 if (flag == SHF_IA_64_SHORT)
5151 else if (flag == SHF_IA_64_NORECOV)
5154 else if (elf_header.e_ident[EI_OSABI] == ELFOSABI_OPENVMS)
5157 case SHF_IA_64_VMS_GLOBAL: sindex = 12; break;
5158 case SHF_IA_64_VMS_OVERLAID: sindex = 13; break;
5159 case SHF_IA_64_VMS_SHARED: sindex = 14; break;
5160 case SHF_IA_64_VMS_VECTOR: sindex = 15; break;
5161 case SHF_IA_64_VMS_ALLOC_64BIT: sindex = 16; break;
5162 case SHF_IA_64_VMS_PROTECTED: sindex = 17; break;
5173 case EM_OLD_SPARCV9:
5174 case EM_SPARC32PLUS:
5177 if (flag == SHF_ORDERED)
5187 if (p != buff + field_size + 4)
5189 if (size < (10 + 2))
5191 warn (_("Internal error: not enough buffer room for section flag info"));
5192 return _("<unknown>");
5199 size -= flags [sindex].len;
5200 p = stpcpy (p, flags [sindex].str);
5202 else if (flag & SHF_MASKOS)
5204 else if (flag & SHF_MASKPROC)
5207 unknown_flags |= flag;
5213 case SHF_WRITE: *p = 'W'; break;
5214 case SHF_ALLOC: *p = 'A'; break;
5215 case SHF_EXECINSTR: *p = 'X'; break;
5216 case SHF_MERGE: *p = 'M'; break;
5217 case SHF_STRINGS: *p = 'S'; break;
5218 case SHF_INFO_LINK: *p = 'I'; break;
5219 case SHF_LINK_ORDER: *p = 'L'; break;
5220 case SHF_OS_NONCONFORMING: *p = 'O'; break;
5221 case SHF_GROUP: *p = 'G'; break;
5222 case SHF_TLS: *p = 'T'; break;
5223 case SHF_EXCLUDE: *p = 'E'; break;
5226 if ((elf_header.e_machine == EM_X86_64
5227 || elf_header.e_machine == EM_L1OM
5228 || elf_header.e_machine == EM_K1OM)
5229 && flag == SHF_X86_64_LARGE)
5231 else if (flag & SHF_MASKOS)
5234 sh_flags &= ~ SHF_MASKOS;
5236 else if (flag & SHF_MASKPROC)
5239 sh_flags &= ~ SHF_MASKPROC;
5249 if (do_section_details)
5253 size -= 5 + field_size;
5254 if (p != buff + field_size + 4)
5258 warn (_("Internal error: not enough buffer room for section flag info"));
5259 return _("<unknown>");
5265 sprintf (p, "OS (%*.*lx)", field_size, field_size,
5266 (unsigned long) os_flags);
5267 p += 5 + field_size;
5271 size -= 7 + field_size;
5272 if (p != buff + field_size + 4)
5276 warn (_("Internal error: not enough buffer room for section flag info"));
5277 return _("<unknown>");
5283 sprintf (p, "PROC (%*.*lx)", field_size, field_size,
5284 (unsigned long) proc_flags);
5285 p += 7 + field_size;
5289 size -= 10 + field_size;
5290 if (p != buff + field_size + 4)
5294 warn (_("Internal error: not enough buffer room for section flag info"));
5295 return _("<unknown>");
5301 sprintf (p, _("UNKNOWN (%*.*lx)"), field_size, field_size,
5302 (unsigned long) unknown_flags);
5303 p += 10 + field_size;
5312 process_section_headers (FILE * file)
5314 Elf_Internal_Shdr * section;
5317 section_headers = NULL;
5319 if (elf_header.e_shnum == 0)
5321 /* PR binutils/12467. */
5322 if (elf_header.e_shoff != 0)
5323 warn (_("possibly corrupt ELF file header - it has a non-zero"
5324 " section header offset, but no section headers\n"));
5325 else if (do_sections)
5326 printf (_("\nThere are no sections in this file.\n"));
5331 if (do_sections && !do_header)
5332 printf (_("There are %d section headers, starting at offset 0x%lx:\n"),
5333 elf_header.e_shnum, (unsigned long) elf_header.e_shoff);
5337 if (! get_32bit_section_headers (file, FALSE))
5340 else if (! get_64bit_section_headers (file, FALSE))
5343 /* Read in the string table, so that we have names to display. */
5344 if (elf_header.e_shstrndx != SHN_UNDEF
5345 && elf_header.e_shstrndx < elf_header.e_shnum)
5347 section = section_headers + elf_header.e_shstrndx;
5349 if (section->sh_size != 0)
5351 string_table = (char *) get_data (NULL, file, section->sh_offset,
5352 1, section->sh_size,
5355 string_table_length = string_table != NULL ? section->sh_size : 0;
5359 /* Scan the sections for the dynamic symbol table
5360 and dynamic string table and debug sections. */
5361 dynamic_symbols = NULL;
5362 dynamic_strings = NULL;
5363 dynamic_syminfo = NULL;
5364 symtab_shndx_hdr = NULL;
5366 eh_addr_size = is_32bit_elf ? 4 : 8;
5367 switch (elf_header.e_machine)
5370 case EM_MIPS_RS3_LE:
5371 /* The 64-bit MIPS EABI uses a combination of 32-bit ELF and 64-bit
5372 FDE addresses. However, the ABI also has a semi-official ILP32
5373 variant for which the normal FDE address size rules apply.
5375 GCC 4.0 marks EABI64 objects with a dummy .gcc_compiled_longXX
5376 section, where XX is the size of longs in bits. Unfortunately,
5377 earlier compilers provided no way of distinguishing ILP32 objects
5378 from LP64 objects, so if there's any doubt, we should assume that
5379 the official LP64 form is being used. */
5380 if ((elf_header.e_flags & EF_MIPS_ABI) == E_MIPS_ABI_EABI64
5381 && find_section (".gcc_compiled_long32") == NULL)
5387 switch (elf_header.e_flags & EF_H8_MACH)
5389 case E_H8_MACH_H8300:
5390 case E_H8_MACH_H8300HN:
5391 case E_H8_MACH_H8300SN:
5392 case E_H8_MACH_H8300SXN:
5395 case E_H8_MACH_H8300H:
5396 case E_H8_MACH_H8300S:
5397 case E_H8_MACH_H8300SX:
5405 switch (elf_header.e_flags & EF_M32C_CPU_MASK)
5407 case EF_M32C_CPU_M16C:
5414 #define CHECK_ENTSIZE_VALUES(section, i, size32, size64) \
5417 bfd_size_type expected_entsize = is_32bit_elf ? size32 : size64; \
5418 if (section->sh_entsize != expected_entsize) \
5421 sprintf_vma (buf, section->sh_entsize); \
5422 /* Note: coded this way so that there is a single string for \
5424 error (_("Section %d has invalid sh_entsize of %s\n"), i, buf); \
5425 error (_("(Using the expected size of %u for the rest of this dump)\n"), \
5426 (unsigned) expected_entsize); \
5427 section->sh_entsize = expected_entsize; \
5432 #define CHECK_ENTSIZE(section, i, type) \
5433 CHECK_ENTSIZE_VALUES (section, i, sizeof (Elf32_External_##type), \
5434 sizeof (Elf64_External_##type))
5436 for (i = 0, section = section_headers;
5437 i < elf_header.e_shnum;
5440 char * name = SECTION_NAME (section);
5442 if (section->sh_type == SHT_DYNSYM)
5444 if (dynamic_symbols != NULL)
5446 error (_("File contains multiple dynamic symbol tables\n"));
5450 CHECK_ENTSIZE (section, i, Sym);
5451 dynamic_symbols = GET_ELF_SYMBOLS (file, section, & num_dynamic_syms);
5453 else if (section->sh_type == SHT_STRTAB
5454 && streq (name, ".dynstr"))
5456 if (dynamic_strings != NULL)
5458 error (_("File contains multiple dynamic string tables\n"));
5462 dynamic_strings = (char *) get_data (NULL, file, section->sh_offset,
5463 1, section->sh_size,
5464 _("dynamic strings"));
5465 dynamic_strings_length = dynamic_strings == NULL ? 0 : section->sh_size;
5467 else if (section->sh_type == SHT_SYMTAB_SHNDX)
5469 if (symtab_shndx_hdr != NULL)
5471 error (_("File contains multiple symtab shndx tables\n"));
5474 symtab_shndx_hdr = section;
5476 else if (section->sh_type == SHT_SYMTAB)
5477 CHECK_ENTSIZE (section, i, Sym);
5478 else if (section->sh_type == SHT_GROUP)
5479 CHECK_ENTSIZE_VALUES (section, i, GRP_ENTRY_SIZE, GRP_ENTRY_SIZE);
5480 else if (section->sh_type == SHT_REL)
5481 CHECK_ENTSIZE (section, i, Rel);
5482 else if (section->sh_type == SHT_RELA)
5483 CHECK_ENTSIZE (section, i, Rela);
5484 else if ((do_debugging || do_debug_info || do_debug_abbrevs
5485 || do_debug_lines || do_debug_pubnames || do_debug_pubtypes
5486 || do_debug_aranges || do_debug_frames || do_debug_macinfo
5487 || do_debug_str || do_debug_loc || do_debug_ranges
5488 || do_debug_addr || do_debug_cu_index)
5489 && (const_strneq (name, ".debug_")
5490 || const_strneq (name, ".zdebug_")))
5493 name += sizeof (".zdebug_") - 1;
5495 name += sizeof (".debug_") - 1;
5498 || (do_debug_info && const_strneq (name, "info"))
5499 || (do_debug_info && const_strneq (name, "types"))
5500 || (do_debug_abbrevs && const_strneq (name, "abbrev"))
5501 || (do_debug_lines && strcmp (name, "line") == 0)
5502 || (do_debug_lines && const_strneq (name, "line."))
5503 || (do_debug_pubnames && const_strneq (name, "pubnames"))
5504 || (do_debug_pubtypes && const_strneq (name, "pubtypes"))
5505 || (do_debug_pubnames && const_strneq (name, "gnu_pubnames"))
5506 || (do_debug_pubtypes && const_strneq (name, "gnu_pubtypes"))
5507 || (do_debug_aranges && const_strneq (name, "aranges"))
5508 || (do_debug_ranges && const_strneq (name, "ranges"))
5509 || (do_debug_frames && const_strneq (name, "frame"))
5510 || (do_debug_macinfo && const_strneq (name, "macinfo"))
5511 || (do_debug_macinfo && const_strneq (name, "macro"))
5512 || (do_debug_str && const_strneq (name, "str"))
5513 || (do_debug_loc && const_strneq (name, "loc"))
5514 || (do_debug_addr && const_strneq (name, "addr"))
5515 || (do_debug_cu_index && const_strneq (name, "cu_index"))
5516 || (do_debug_cu_index && const_strneq (name, "tu_index"))
5518 request_dump_bynumber (i, DEBUG_DUMP);
5520 /* Linkonce section to be combined with .debug_info at link time. */
5521 else if ((do_debugging || do_debug_info)
5522 && const_strneq (name, ".gnu.linkonce.wi."))
5523 request_dump_bynumber (i, DEBUG_DUMP);
5524 else if (do_debug_frames && streq (name, ".eh_frame"))
5525 request_dump_bynumber (i, DEBUG_DUMP);
5526 else if (do_gdb_index && streq (name, ".gdb_index"))
5527 request_dump_bynumber (i, DEBUG_DUMP);
5528 /* Trace sections for Itanium VMS. */
5529 else if ((do_debugging || do_trace_info || do_trace_abbrevs
5530 || do_trace_aranges)
5531 && const_strneq (name, ".trace_"))
5533 name += sizeof (".trace_") - 1;
5536 || (do_trace_info && streq (name, "info"))
5537 || (do_trace_abbrevs && streq (name, "abbrev"))
5538 || (do_trace_aranges && streq (name, "aranges"))
5540 request_dump_bynumber (i, DEBUG_DUMP);
5547 if (elf_header.e_shnum > 1)
5548 printf (_("\nSection Headers:\n"));
5550 printf (_("\nSection Header:\n"));
5554 if (do_section_details)
5556 printf (_(" [Nr] Name\n"));
5557 printf (_(" Type Addr Off Size ES Lk Inf Al\n"));
5561 (_(" [Nr] Name Type Addr Off Size ES Flg Lk Inf Al\n"));
5565 if (do_section_details)
5567 printf (_(" [Nr] Name\n"));
5568 printf (_(" Type Address Off Size ES Lk Inf Al\n"));
5572 (_(" [Nr] Name Type Address Off Size ES Flg Lk Inf Al\n"));
5576 if (do_section_details)
5578 printf (_(" [Nr] Name\n"));
5579 printf (_(" Type Address Offset Link\n"));
5580 printf (_(" Size EntSize Info Align\n"));
5584 printf (_(" [Nr] Name Type Address Offset\n"));
5585 printf (_(" Size EntSize Flags Link Info Align\n"));
5589 if (do_section_details)
5590 printf (_(" Flags\n"));
5592 for (i = 0, section = section_headers;
5593 i < elf_header.e_shnum;
5596 printf (" [%2u] ", i);
5597 if (do_section_details)
5598 printf ("%s\n ", printable_section_name (section));
5600 print_symbol (-17, SECTION_NAME (section));
5602 printf (do_wide ? " %-15s " : " %-15.15s ",
5603 get_section_type_name (section->sh_type));
5607 const char * link_too_big = NULL;
5609 print_vma (section->sh_addr, LONG_HEX);
5611 printf ( " %6.6lx %6.6lx %2.2lx",
5612 (unsigned long) section->sh_offset,
5613 (unsigned long) section->sh_size,
5614 (unsigned long) section->sh_entsize);
5616 if (do_section_details)
5617 fputs (" ", stdout);
5619 printf (" %3s ", get_elf_section_flags (section->sh_flags));
5621 if (section->sh_link >= elf_header.e_shnum)
5624 /* The sh_link value is out of range. Normally this indicates
5625 an error but it can have special values in Solaris binaries. */
5626 switch (elf_header.e_machine)
5633 case EM_OLD_SPARCV9:
5634 case EM_SPARC32PLUS:
5637 if (section->sh_link == (SHN_BEFORE & 0xffff))
5638 link_too_big = "BEFORE";
5639 else if (section->sh_link == (SHN_AFTER & 0xffff))
5640 link_too_big = "AFTER";
5647 if (do_section_details)
5649 if (link_too_big != NULL && * link_too_big)
5650 printf ("<%s> ", link_too_big);
5652 printf ("%2u ", section->sh_link);
5653 printf ("%3u %2lu\n", section->sh_info,
5654 (unsigned long) section->sh_addralign);
5657 printf ("%2u %3u %2lu\n",
5660 (unsigned long) section->sh_addralign);
5662 if (link_too_big && ! * link_too_big)
5663 warn (_("section %u: sh_link value of %u is larger than the number of sections\n"),
5664 i, section->sh_link);
5668 print_vma (section->sh_addr, LONG_HEX);
5670 if ((long) section->sh_offset == section->sh_offset)
5671 printf (" %6.6lx", (unsigned long) section->sh_offset);
5675 print_vma (section->sh_offset, LONG_HEX);
5678 if ((unsigned long) section->sh_size == section->sh_size)
5679 printf (" %6.6lx", (unsigned long) section->sh_size);
5683 print_vma (section->sh_size, LONG_HEX);
5686 if ((unsigned long) section->sh_entsize == section->sh_entsize)
5687 printf (" %2.2lx", (unsigned long) section->sh_entsize);
5691 print_vma (section->sh_entsize, LONG_HEX);
5694 if (do_section_details)
5695 fputs (" ", stdout);
5697 printf (" %3s ", get_elf_section_flags (section->sh_flags));
5699 printf ("%2u %3u ", section->sh_link, section->sh_info);
5701 if ((unsigned long) section->sh_addralign == section->sh_addralign)
5702 printf ("%2lu\n", (unsigned long) section->sh_addralign);
5705 print_vma (section->sh_addralign, DEC);
5709 else if (do_section_details)
5711 printf (" %-15.15s ",
5712 get_section_type_name (section->sh_type));
5713 print_vma (section->sh_addr, LONG_HEX);
5714 if ((long) section->sh_offset == section->sh_offset)
5715 printf (" %16.16lx", (unsigned long) section->sh_offset);
5719 print_vma (section->sh_offset, LONG_HEX);
5721 printf (" %u\n ", section->sh_link);
5722 print_vma (section->sh_size, LONG_HEX);
5724 print_vma (section->sh_entsize, LONG_HEX);
5726 printf (" %-16u %lu\n",
5728 (unsigned long) section->sh_addralign);
5733 print_vma (section->sh_addr, LONG_HEX);
5734 if ((long) section->sh_offset == section->sh_offset)
5735 printf (" %8.8lx", (unsigned long) section->sh_offset);
5739 print_vma (section->sh_offset, LONG_HEX);
5742 print_vma (section->sh_size, LONG_HEX);
5744 print_vma (section->sh_entsize, LONG_HEX);
5746 printf (" %3s ", get_elf_section_flags (section->sh_flags));
5748 printf (" %2u %3u %lu\n",
5751 (unsigned long) section->sh_addralign);
5754 if (do_section_details)
5755 printf (" %s\n", get_elf_section_flags (section->sh_flags));
5758 if (!do_section_details)
5760 if (elf_header.e_machine == EM_X86_64
5761 || elf_header.e_machine == EM_L1OM
5762 || elf_header.e_machine == EM_K1OM)
5763 printf (_("Key to Flags:\n\
5764 W (write), A (alloc), X (execute), M (merge), S (strings), l (large)\n\
5765 I (info), L (link order), G (group), T (TLS), E (exclude), x (unknown)\n\
5766 O (extra OS processing required) o (OS specific), p (processor specific)\n"));
5768 printf (_("Key to Flags:\n\
5769 W (write), A (alloc), X (execute), M (merge), S (strings)\n\
5770 I (info), L (link order), G (group), T (TLS), E (exclude), x (unknown)\n\
5771 O (extra OS processing required) o (OS specific), p (processor specific)\n"));
5778 get_group_flags (unsigned int flags)
5780 static char buff[32];
5790 snprintf (buff, sizeof (buff), _("[<unknown>: 0x%x] "), flags);
5797 process_section_groups (FILE * file)
5799 Elf_Internal_Shdr * section;
5801 struct group * group;
5802 Elf_Internal_Shdr * symtab_sec;
5803 Elf_Internal_Shdr * strtab_sec;
5804 Elf_Internal_Sym * symtab;
5805 unsigned long num_syms;
5809 /* Don't process section groups unless needed. */
5810 if (!do_unwind && !do_section_groups)
5813 if (elf_header.e_shnum == 0)
5815 if (do_section_groups)
5816 printf (_("\nThere are no sections to group in this file.\n"));
5821 if (section_headers == NULL)
5823 error (_("Section headers are not available!\n"));
5824 /* PR 13622: This can happen with a corrupt ELF header. */
5828 section_headers_groups = (struct group **) calloc (elf_header.e_shnum,
5829 sizeof (struct group *));
5831 if (section_headers_groups == NULL)
5833 error (_("Out of memory reading %u section group headers\n"),
5834 elf_header.e_shnum);
5838 /* Scan the sections for the group section. */
5840 for (i = 0, section = section_headers;
5841 i < elf_header.e_shnum;
5843 if (section->sh_type == SHT_GROUP)
5846 if (group_count == 0)
5848 if (do_section_groups)
5849 printf (_("\nThere are no section groups in this file.\n"));
5854 section_groups = (struct group *) calloc (group_count, sizeof (struct group));
5856 if (section_groups == NULL)
5858 error (_("Out of memory reading %lu groups\n"),
5859 (unsigned long) group_count);
5869 for (i = 0, section = section_headers, group = section_groups;
5870 i < elf_header.e_shnum;
5873 if (section->sh_type == SHT_GROUP)
5875 const char * name = printable_section_name (section);
5876 const char * group_name;
5877 unsigned char * start;
5878 unsigned char * indices;
5879 unsigned int entry, j, size;
5880 Elf_Internal_Shdr * sec;
5881 Elf_Internal_Sym * sym;
5883 /* Get the symbol table. */
5884 if (section->sh_link >= elf_header.e_shnum
5885 || ((sec = section_headers + section->sh_link)->sh_type
5888 error (_("Bad sh_link in group section `%s'\n"), name);
5892 if (symtab_sec != sec)
5897 symtab = GET_ELF_SYMBOLS (file, symtab_sec, & num_syms);
5902 error (_("Corrupt header in group section `%s'\n"), name);
5906 if (section->sh_info >= num_syms)
5908 error (_("Bad sh_info in group section `%s'\n"), name);
5912 sym = symtab + section->sh_info;
5914 if (ELF_ST_TYPE (sym->st_info) == STT_SECTION)
5916 if (sym->st_shndx == 0
5917 || sym->st_shndx >= elf_header.e_shnum)
5919 error (_("Bad sh_info in group section `%s'\n"), name);
5923 group_name = SECTION_NAME (section_headers + sym->st_shndx);
5932 /* Get the string table. */
5933 if (symtab_sec->sh_link >= elf_header.e_shnum)
5942 != (sec = section_headers + symtab_sec->sh_link))
5948 strtab = (char *) get_data (NULL, file, strtab_sec->sh_offset,
5949 1, strtab_sec->sh_size,
5951 strtab_size = strtab != NULL ? strtab_sec->sh_size : 0;
5953 group_name = sym->st_name < strtab_size
5954 ? strtab + sym->st_name : _("<corrupt>");
5957 /* PR 17531: file: loop. */
5958 if (section->sh_entsize > section->sh_size)
5960 error (_("Section %s has sh_entsize (0x%lx) which is larger than its size (0x%lx)\n"),
5961 printable_section_name (section),
5962 (unsigned long) section->sh_entsize,
5963 (unsigned long) section->sh_size);
5967 start = (unsigned char *) get_data (NULL, file, section->sh_offset,
5968 1, section->sh_size,
5974 size = (section->sh_size / section->sh_entsize) - 1;
5975 entry = byte_get (indices, 4);
5978 if (do_section_groups)
5980 printf (_("\n%sgroup section [%5u] `%s' [%s] contains %u sections:\n"),
5981 get_group_flags (entry), i, name, group_name, size);
5983 printf (_(" [Index] Name\n"));
5986 group->group_index = i;
5988 for (j = 0; j < size; j++)
5990 struct group_list * g;
5992 entry = byte_get (indices, 4);
5995 if (entry >= elf_header.e_shnum)
5997 error (_("section [%5u] in group section [%5u] > maximum section [%5u]\n"),
5998 entry, i, elf_header.e_shnum - 1);
6002 if (section_headers_groups [entry] != NULL)
6006 error (_("section [%5u] in group section [%5u] already in group section [%5u]\n"),
6008 section_headers_groups [entry]->group_index);
6013 /* Intel C/C++ compiler may put section 0 in a
6014 section group. We just warn it the first time
6015 and ignore it afterwards. */
6016 static int warned = 0;
6019 error (_("section 0 in group section [%5u]\n"),
6020 section_headers_groups [entry]->group_index);
6026 section_headers_groups [entry] = group;
6028 if (do_section_groups)
6030 sec = section_headers + entry;
6031 printf (" [%5u] %s\n", entry, printable_section_name (sec));
6034 g = (struct group_list *) xmalloc (sizeof (struct group_list));
6035 g->section_index = entry;
6036 g->next = group->root;
6054 /* Data used to display dynamic fixups. */
6056 struct ia64_vms_dynfixup
6058 bfd_vma needed_ident; /* Library ident number. */
6059 bfd_vma needed; /* Index in the dstrtab of the library name. */
6060 bfd_vma fixup_needed; /* Index of the library. */
6061 bfd_vma fixup_rela_cnt; /* Number of fixups. */
6062 bfd_vma fixup_rela_off; /* Fixups offset in the dynamic segment. */
6065 /* Data used to display dynamic relocations. */
6067 struct ia64_vms_dynimgrela
6069 bfd_vma img_rela_cnt; /* Number of relocations. */
6070 bfd_vma img_rela_off; /* Reloc offset in the dynamic segment. */
6073 /* Display IA-64 OpenVMS dynamic fixups (used to dynamically link a shared
6077 dump_ia64_vms_dynamic_fixups (FILE *file, struct ia64_vms_dynfixup *fixup,
6078 const char *strtab, unsigned int strtab_sz)
6080 Elf64_External_VMS_IMAGE_FIXUP *imfs;
6082 const char *lib_name;
6084 imfs = get_data (NULL, file, dynamic_addr + fixup->fixup_rela_off,
6085 1, fixup->fixup_rela_cnt * sizeof (*imfs),
6086 _("dynamic section image fixups"));
6090 if (fixup->needed < strtab_sz)
6091 lib_name = strtab + fixup->needed;
6094 warn ("corrupt library name index of 0x%lx found in dynamic entry",
6095 (unsigned long) fixup->needed);
6098 printf (_("\nImage fixups for needed library #%d: %s - ident: %lx\n"),
6099 (int) fixup->fixup_needed, lib_name, (long) fixup->needed_ident);
6101 (_("Seg Offset Type SymVec DataType\n"));
6103 for (i = 0; i < (long) fixup->fixup_rela_cnt; i++)
6108 printf ("%3u ", (unsigned) BYTE_GET (imfs [i].fixup_seg));
6109 printf_vma ((bfd_vma) BYTE_GET (imfs [i].fixup_offset));
6110 type = BYTE_GET (imfs [i].type);
6111 rtype = elf_ia64_reloc_type (type);
6113 printf (" 0x%08x ", type);
6115 printf (" %-32s ", rtype);
6116 printf ("%6u ", (unsigned) BYTE_GET (imfs [i].symvec_index));
6117 printf ("0x%08x\n", (unsigned) BYTE_GET (imfs [i].data_type));
6123 /* Display IA-64 OpenVMS dynamic relocations (used to relocate an image). */
6126 dump_ia64_vms_dynamic_relocs (FILE *file, struct ia64_vms_dynimgrela *imgrela)
6128 Elf64_External_VMS_IMAGE_RELA *imrs;
6131 imrs = get_data (NULL, file, dynamic_addr + imgrela->img_rela_off,
6132 1, imgrela->img_rela_cnt * sizeof (*imrs),
6133 _("dynamic section image relocations"));
6137 printf (_("\nImage relocs\n"));
6139 (_("Seg Offset Type Addend Seg Sym Off\n"));
6141 for (i = 0; i < (long) imgrela->img_rela_cnt; i++)
6146 printf ("%3u ", (unsigned) BYTE_GET (imrs [i].rela_seg));
6147 printf ("%08" BFD_VMA_FMT "x ",
6148 (bfd_vma) BYTE_GET (imrs [i].rela_offset));
6149 type = BYTE_GET (imrs [i].type);
6150 rtype = elf_ia64_reloc_type (type);
6152 printf ("0x%08x ", type);
6154 printf ("%-31s ", rtype);
6155 print_vma (BYTE_GET (imrs [i].addend), FULL_HEX);
6156 printf ("%3u ", (unsigned) BYTE_GET (imrs [i].sym_seg));
6157 printf ("%08" BFD_VMA_FMT "x\n",
6158 (bfd_vma) BYTE_GET (imrs [i].sym_offset));
6164 /* Display IA-64 OpenVMS dynamic relocations and fixups. */
6167 process_ia64_vms_dynamic_relocs (FILE *file)
6169 struct ia64_vms_dynfixup fixup;
6170 struct ia64_vms_dynimgrela imgrela;
6171 Elf_Internal_Dyn *entry;
6173 bfd_vma strtab_off = 0;
6174 bfd_vma strtab_sz = 0;
6175 char *strtab = NULL;
6177 memset (&fixup, 0, sizeof (fixup));
6178 memset (&imgrela, 0, sizeof (imgrela));
6180 /* Note: the order of the entries is specified by the OpenVMS specs. */
6181 for (entry = dynamic_section;
6182 entry < dynamic_section + dynamic_nent;
6185 switch (entry->d_tag)
6187 case DT_IA_64_VMS_STRTAB_OFFSET:
6188 strtab_off = entry->d_un.d_val;
6191 strtab_sz = entry->d_un.d_val;
6193 strtab = get_data (NULL, file, dynamic_addr + strtab_off,
6194 1, strtab_sz, _("dynamic string section"));
6197 case DT_IA_64_VMS_NEEDED_IDENT:
6198 fixup.needed_ident = entry->d_un.d_val;
6201 fixup.needed = entry->d_un.d_val;
6203 case DT_IA_64_VMS_FIXUP_NEEDED:
6204 fixup.fixup_needed = entry->d_un.d_val;
6206 case DT_IA_64_VMS_FIXUP_RELA_CNT:
6207 fixup.fixup_rela_cnt = entry->d_un.d_val;
6209 case DT_IA_64_VMS_FIXUP_RELA_OFF:
6210 fixup.fixup_rela_off = entry->d_un.d_val;
6212 dump_ia64_vms_dynamic_fixups (file, &fixup, strtab, strtab_sz);
6215 case DT_IA_64_VMS_IMG_RELA_CNT:
6216 imgrela.img_rela_cnt = entry->d_un.d_val;
6218 case DT_IA_64_VMS_IMG_RELA_OFF:
6219 imgrela.img_rela_off = entry->d_un.d_val;
6221 dump_ia64_vms_dynamic_relocs (file, &imgrela);
6241 } dynamic_relocations [] =
6243 { "REL", DT_REL, DT_RELSZ, FALSE },
6244 { "RELA", DT_RELA, DT_RELASZ, TRUE },
6245 { "PLT", DT_JMPREL, DT_PLTRELSZ, UNKNOWN }
6248 /* Process the reloc section. */
6251 process_relocs (FILE * file)
6253 unsigned long rel_size;
6254 unsigned long rel_offset;
6260 if (do_using_dynamic)
6264 int has_dynamic_reloc;
6267 has_dynamic_reloc = 0;
6269 for (i = 0; i < ARRAY_SIZE (dynamic_relocations); i++)
6271 is_rela = dynamic_relocations [i].rela;
6272 name = dynamic_relocations [i].name;
6273 rel_size = dynamic_info [dynamic_relocations [i].size];
6274 rel_offset = dynamic_info [dynamic_relocations [i].reloc];
6276 has_dynamic_reloc |= rel_size;
6278 if (is_rela == UNKNOWN)
6280 if (dynamic_relocations [i].reloc == DT_JMPREL)
6281 switch (dynamic_info[DT_PLTREL])
6295 (_("\n'%s' relocation section at offset 0x%lx contains %ld bytes:\n"),
6296 name, rel_offset, rel_size);
6298 dump_relocations (file,
6299 offset_from_vma (file, rel_offset, rel_size),
6301 dynamic_symbols, num_dynamic_syms,
6302 dynamic_strings, dynamic_strings_length,
6308 has_dynamic_reloc |= process_ia64_vms_dynamic_relocs (file);
6310 if (! has_dynamic_reloc)
6311 printf (_("\nThere are no dynamic relocations in this file.\n"));
6315 Elf_Internal_Shdr * section;
6319 for (i = 0, section = section_headers;
6320 i < elf_header.e_shnum;
6323 if ( section->sh_type != SHT_RELA
6324 && section->sh_type != SHT_REL)
6327 rel_offset = section->sh_offset;
6328 rel_size = section->sh_size;
6332 Elf_Internal_Shdr * strsec;
6335 printf (_("\nRelocation section "));
6337 if (string_table == NULL)
6338 printf ("%d", section->sh_name);
6340 printf ("'%s'", printable_section_name (section));
6342 printf (_(" at offset 0x%lx contains %lu entries:\n"),
6343 rel_offset, (unsigned long) (rel_size / section->sh_entsize));
6345 is_rela = section->sh_type == SHT_RELA;
6347 if (section->sh_link != 0
6348 && section->sh_link < elf_header.e_shnum)
6350 Elf_Internal_Shdr * symsec;
6351 Elf_Internal_Sym * symtab;
6352 unsigned long nsyms;
6353 unsigned long strtablen = 0;
6354 char * strtab = NULL;
6356 symsec = section_headers + section->sh_link;
6357 if (symsec->sh_type != SHT_SYMTAB
6358 && symsec->sh_type != SHT_DYNSYM)
6361 symtab = GET_ELF_SYMBOLS (file, symsec, & nsyms);
6366 if (symsec->sh_link != 0
6367 && symsec->sh_link < elf_header.e_shnum)
6369 strsec = section_headers + symsec->sh_link;
6371 strtab = (char *) get_data (NULL, file, strsec->sh_offset,
6374 strtablen = strtab == NULL ? 0 : strsec->sh_size;
6377 dump_relocations (file, rel_offset, rel_size,
6378 symtab, nsyms, strtab, strtablen,
6380 symsec->sh_type == SHT_DYNSYM);
6386 dump_relocations (file, rel_offset, rel_size,
6387 NULL, 0, NULL, 0, is_rela, 0);
6394 printf (_("\nThere are no relocations in this file.\n"));
6400 /* Process the unwind section. */
6402 #include "unwind-ia64.h"
6404 /* An absolute address consists of a section and an offset. If the
6405 section is NULL, the offset itself is the address, otherwise, the
6406 address equals to LOAD_ADDRESS(section) + offset. */
6410 unsigned short section;
6414 #define ABSADDR(a) \
6416 ? section_headers [(a).section].sh_addr + (a).offset \
6419 struct ia64_unw_table_entry
6421 struct absaddr start;
6423 struct absaddr info;
6426 struct ia64_unw_aux_info
6429 struct ia64_unw_table_entry *table; /* Unwind table. */
6430 unsigned long table_len; /* Length of unwind table. */
6431 unsigned char * info; /* Unwind info. */
6432 unsigned long info_size; /* Size of unwind info. */
6433 bfd_vma info_addr; /* starting address of unwind info. */
6434 bfd_vma seg_base; /* Starting address of segment. */
6435 Elf_Internal_Sym * symtab; /* The symbol table. */
6436 unsigned long nsyms; /* Number of symbols. */
6437 char * strtab; /* The string table. */
6438 unsigned long strtab_size; /* Size of string table. */
6442 find_symbol_for_address (Elf_Internal_Sym * symtab,
6443 unsigned long nsyms,
6444 const char * strtab,
6445 unsigned long strtab_size,
6446 struct absaddr addr,
6447 const char ** symname,
6450 bfd_vma dist = 0x100000;
6451 Elf_Internal_Sym * sym;
6452 Elf_Internal_Sym * best = NULL;
6455 REMOVE_ARCH_BITS (addr.offset);
6457 for (i = 0, sym = symtab; i < nsyms; ++i, ++sym)
6459 bfd_vma value = sym->st_value;
6461 REMOVE_ARCH_BITS (value);
6463 if (ELF_ST_TYPE (sym->st_info) == STT_FUNC
6464 && sym->st_name != 0
6465 && (addr.section == SHN_UNDEF || addr.section == sym->st_shndx)
6466 && addr.offset >= value
6467 && addr.offset - value < dist)
6470 dist = addr.offset - value;
6478 *symname = (best->st_name >= strtab_size
6479 ? _("<corrupt>") : strtab + best->st_name);
6485 *offset = addr.offset;
6489 dump_ia64_unwind (struct ia64_unw_aux_info * aux)
6491 struct ia64_unw_table_entry * tp;
6494 for (tp = aux->table; tp < aux->table + aux->table_len; ++tp)
6498 const unsigned char * dp;
6499 const unsigned char * head;
6500 const unsigned char * end;
6501 const char * procname;
6503 find_symbol_for_address (aux->symtab, aux->nsyms, aux->strtab,
6504 aux->strtab_size, tp->start, &procname, &offset);
6506 fputs ("\n<", stdout);
6510 fputs (procname, stdout);
6513 printf ("+%lx", (unsigned long) offset);
6516 fputs (">: [", stdout);
6517 print_vma (tp->start.offset, PREFIX_HEX);
6518 fputc ('-', stdout);
6519 print_vma (tp->end.offset, PREFIX_HEX);
6520 printf ("], info at +0x%lx\n",
6521 (unsigned long) (tp->info.offset - aux->seg_base));
6523 /* PR 17531: file: 86232b32. */
6524 if (aux->info == NULL)
6527 /* PR 17531: file: 0997b4d1. */
6528 if ((ABSADDR (tp->info) - aux->info_addr) >= aux->info_size)
6530 warn (_("Invalid offset %lx in table entry %ld\n"),
6531 (long) tp->info.offset, (long) (tp - aux->table));
6535 head = aux->info + (ABSADDR (tp->info) - aux->info_addr);
6536 stamp = byte_get ((unsigned char *) head, sizeof (stamp));
6538 printf (" v%u, flags=0x%lx (%s%s), len=%lu bytes\n",
6539 (unsigned) UNW_VER (stamp),
6540 (unsigned long) ((stamp & UNW_FLAG_MASK) >> 32),
6541 UNW_FLAG_EHANDLER (stamp) ? " ehandler" : "",
6542 UNW_FLAG_UHANDLER (stamp) ? " uhandler" : "",
6543 (unsigned long) (eh_addr_size * UNW_LENGTH (stamp)));
6545 if (UNW_VER (stamp) != 1)
6547 printf (_("\tUnknown version.\n"));
6552 end = head + 8 + eh_addr_size * UNW_LENGTH (stamp);
6553 /* PR 17531: file: 16ceda89. */
6554 if (end > aux->info + aux->info_size)
6555 end = aux->info + aux->info_size;
6556 for (dp = head + 8; dp < end;)
6557 dp = unw_decode (dp, in_body, & in_body);
6562 slurp_ia64_unwind_table (FILE * file,
6563 struct ia64_unw_aux_info * aux,
6564 Elf_Internal_Shdr * sec)
6566 unsigned long size, nrelas, i;
6567 Elf_Internal_Phdr * seg;
6568 struct ia64_unw_table_entry * tep;
6569 Elf_Internal_Shdr * relsec;
6570 Elf_Internal_Rela * rela;
6571 Elf_Internal_Rela * rp;
6572 unsigned char * table;
6574 Elf_Internal_Sym * sym;
6575 const char * relname;
6579 /* First, find the starting address of the segment that includes
6582 if (elf_header.e_phnum)
6584 if (! get_program_headers (file))
6587 for (seg = program_headers;
6588 seg < program_headers + elf_header.e_phnum;
6591 if (seg->p_type != PT_LOAD)
6594 if (sec->sh_addr >= seg->p_vaddr
6595 && (sec->sh_addr + sec->sh_size <= seg->p_vaddr + seg->p_memsz))
6597 aux->seg_base = seg->p_vaddr;
6603 /* Second, build the unwind table from the contents of the unwind section: */
6604 size = sec->sh_size;
6605 table = (unsigned char *) get_data (NULL, file, sec->sh_offset, 1, size,
6610 aux->table_len = size / (3 * eh_addr_size);
6611 aux->table = (struct ia64_unw_table_entry *)
6612 xcmalloc (aux->table_len, sizeof (aux->table[0]));
6615 for (tp = table; tp <= table + size - (3 * eh_addr_size); ++tep)
6617 tep->start.section = SHN_UNDEF;
6618 tep->end.section = SHN_UNDEF;
6619 tep->info.section = SHN_UNDEF;
6620 tep->start.offset = byte_get (tp, eh_addr_size); tp += eh_addr_size;
6621 tep->end.offset = byte_get (tp, eh_addr_size); tp += eh_addr_size;
6622 tep->info.offset = byte_get (tp, eh_addr_size); tp += eh_addr_size;
6623 tep->start.offset += aux->seg_base;
6624 tep->end.offset += aux->seg_base;
6625 tep->info.offset += aux->seg_base;
6629 /* Third, apply any relocations to the unwind table: */
6630 for (relsec = section_headers;
6631 relsec < section_headers + elf_header.e_shnum;
6634 if (relsec->sh_type != SHT_RELA
6635 || relsec->sh_info >= elf_header.e_shnum
6636 || section_headers + relsec->sh_info != sec)
6639 if (!slurp_rela_relocs (file, relsec->sh_offset, relsec->sh_size,
6648 for (rp = rela; rp < rela + nrelas; ++rp)
6650 relname = elf_ia64_reloc_type (get_reloc_type (rp->r_info));
6651 sym = aux->symtab + get_reloc_symindex (rp->r_info);
6653 /* PR 17531: file: 9fa67536. */
6654 if (relname == NULL)
6656 warn (_("Skipping unknown relocation type: %u\n"), get_reloc_type (rp->r_info));
6660 if (! const_strneq (relname, "R_IA64_SEGREL"))
6662 warn (_("Skipping unexpected relocation type: %s\n"), relname);
6666 i = rp->r_offset / (3 * eh_addr_size);
6668 /* PR 17531: file: 5bc8d9bf. */
6669 if (i >= aux->table_len)
6671 warn (_("Skipping reloc with overlarge offset: %lx\n"), i);
6675 switch (rp->r_offset / eh_addr_size % 3)
6678 aux->table[i].start.section = sym->st_shndx;
6679 aux->table[i].start.offset = rp->r_addend + sym->st_value;
6682 aux->table[i].end.section = sym->st_shndx;
6683 aux->table[i].end.offset = rp->r_addend + sym->st_value;
6686 aux->table[i].info.section = sym->st_shndx;
6687 aux->table[i].info.offset = rp->r_addend + sym->st_value;
6701 ia64_process_unwind (FILE * file)
6703 Elf_Internal_Shdr * sec;
6704 Elf_Internal_Shdr * unwsec = NULL;
6705 Elf_Internal_Shdr * strsec;
6706 unsigned long i, unwcount = 0, unwstart = 0;
6707 struct ia64_unw_aux_info aux;
6709 memset (& aux, 0, sizeof (aux));
6711 for (i = 0, sec = section_headers; i < elf_header.e_shnum; ++i, ++sec)
6713 if (sec->sh_type == SHT_SYMTAB
6714 && sec->sh_link < elf_header.e_shnum)
6716 aux.symtab = GET_ELF_SYMBOLS (file, sec, & aux.nsyms);
6718 strsec = section_headers + sec->sh_link;
6719 if (aux.strtab != NULL)
6721 error (_("Multiple auxillary string tables encountered\n"));
6724 aux.strtab = (char *) get_data (NULL, file, strsec->sh_offset,
6727 aux.strtab_size = aux.strtab != NULL ? strsec->sh_size : 0;
6729 else if (sec->sh_type == SHT_IA_64_UNWIND)
6734 printf (_("\nThere are no unwind sections in this file.\n"));
6736 while (unwcount-- > 0)
6741 for (i = unwstart, sec = section_headers + unwstart, unwsec = NULL;
6742 i < elf_header.e_shnum; ++i, ++sec)
6743 if (sec->sh_type == SHT_IA_64_UNWIND)
6748 /* We have already counted the number of SHT_IA64_UNWIND
6749 sections so the loop above should never fail. */
6750 assert (unwsec != NULL);
6753 len = sizeof (ELF_STRING_ia64_unwind_once) - 1;
6755 if ((unwsec->sh_flags & SHF_GROUP) != 0)
6757 /* We need to find which section group it is in. */
6758 struct group_list * g;
6760 if (section_headers_groups == NULL
6761 || section_headers_groups [i] == NULL)
6762 i = elf_header.e_shnum;
6765 g = section_headers_groups [i]->root;
6767 for (; g != NULL; g = g->next)
6769 sec = section_headers + g->section_index;
6771 if (streq (SECTION_NAME (sec), ELF_STRING_ia64_unwind_info))
6776 i = elf_header.e_shnum;
6779 else if (strneq (SECTION_NAME (unwsec), ELF_STRING_ia64_unwind_once, len))
6781 /* .gnu.linkonce.ia64unw.FOO -> .gnu.linkonce.ia64unwi.FOO. */
6782 len2 = sizeof (ELF_STRING_ia64_unwind_info_once) - 1;
6783 suffix = SECTION_NAME (unwsec) + len;
6784 for (i = 0, sec = section_headers; i < elf_header.e_shnum;
6786 if (strneq (SECTION_NAME (sec), ELF_STRING_ia64_unwind_info_once, len2)
6787 && streq (SECTION_NAME (sec) + len2, suffix))
6792 /* .IA_64.unwindFOO -> .IA_64.unwind_infoFOO
6793 .IA_64.unwind or BAR -> .IA_64.unwind_info. */
6794 len = sizeof (ELF_STRING_ia64_unwind) - 1;
6795 len2 = sizeof (ELF_STRING_ia64_unwind_info) - 1;
6797 if (strneq (SECTION_NAME (unwsec), ELF_STRING_ia64_unwind, len))
6798 suffix = SECTION_NAME (unwsec) + len;
6799 for (i = 0, sec = section_headers; i < elf_header.e_shnum;
6801 if (strneq (SECTION_NAME (sec), ELF_STRING_ia64_unwind_info, len2)
6802 && streq (SECTION_NAME (sec) + len2, suffix))
6806 if (i == elf_header.e_shnum)
6808 printf (_("\nCould not find unwind info section for "));
6810 if (string_table == NULL)
6811 printf ("%d", unwsec->sh_name);
6813 printf ("'%s'", printable_section_name (unwsec));
6817 aux.info_addr = sec->sh_addr;
6818 aux.info = (unsigned char *) get_data (NULL, file, sec->sh_offset, 1,
6821 aux.info_size = aux.info == NULL ? 0 : sec->sh_size;
6823 printf (_("\nUnwind section "));
6825 if (string_table == NULL)
6826 printf ("%d", unwsec->sh_name);
6828 printf ("'%s'", printable_section_name (unwsec));
6830 printf (_(" at offset 0x%lx contains %lu entries:\n"),
6831 (unsigned long) unwsec->sh_offset,
6832 (unsigned long) (unwsec->sh_size / (3 * eh_addr_size)));
6834 if (slurp_ia64_unwind_table (file, & aux, unwsec)
6835 && aux.table_len > 0)
6836 dump_ia64_unwind (& aux);
6839 free ((char *) aux.table);
6841 free ((char *) aux.info);
6850 free ((char *) aux.strtab);
6853 struct hppa_unw_table_entry
6855 struct absaddr start;
6857 unsigned int Cannot_unwind:1; /* 0 */
6858 unsigned int Millicode:1; /* 1 */
6859 unsigned int Millicode_save_sr0:1; /* 2 */
6860 unsigned int Region_description:2; /* 3..4 */
6861 unsigned int reserved1:1; /* 5 */
6862 unsigned int Entry_SR:1; /* 6 */
6863 unsigned int Entry_FR:4; /* number saved */ /* 7..10 */
6864 unsigned int Entry_GR:5; /* number saved */ /* 11..15 */
6865 unsigned int Args_stored:1; /* 16 */
6866 unsigned int Variable_Frame:1; /* 17 */
6867 unsigned int Separate_Package_Body:1; /* 18 */
6868 unsigned int Frame_Extension_Millicode:1; /* 19 */
6869 unsigned int Stack_Overflow_Check:1; /* 20 */
6870 unsigned int Two_Instruction_SP_Increment:1; /* 21 */
6871 unsigned int Ada_Region:1; /* 22 */
6872 unsigned int cxx_info:1; /* 23 */
6873 unsigned int cxx_try_catch:1; /* 24 */
6874 unsigned int sched_entry_seq:1; /* 25 */
6875 unsigned int reserved2:1; /* 26 */
6876 unsigned int Save_SP:1; /* 27 */
6877 unsigned int Save_RP:1; /* 28 */
6878 unsigned int Save_MRP_in_frame:1; /* 29 */
6879 unsigned int extn_ptr_defined:1; /* 30 */
6880 unsigned int Cleanup_defined:1; /* 31 */
6882 unsigned int MPE_XL_interrupt_marker:1; /* 0 */
6883 unsigned int HP_UX_interrupt_marker:1; /* 1 */
6884 unsigned int Large_frame:1; /* 2 */
6885 unsigned int Pseudo_SP_Set:1; /* 3 */
6886 unsigned int reserved4:1; /* 4 */
6887 unsigned int Total_frame_size:27; /* 5..31 */
6890 struct hppa_unw_aux_info
6892 struct hppa_unw_table_entry *table; /* Unwind table. */
6893 unsigned long table_len; /* Length of unwind table. */
6894 bfd_vma seg_base; /* Starting address of segment. */
6895 Elf_Internal_Sym * symtab; /* The symbol table. */
6896 unsigned long nsyms; /* Number of symbols. */
6897 char * strtab; /* The string table. */
6898 unsigned long strtab_size; /* Size of string table. */
6902 dump_hppa_unwind (struct hppa_unw_aux_info * aux)
6904 struct hppa_unw_table_entry * tp;
6906 for (tp = aux->table; tp < aux->table + aux->table_len; ++tp)
6909 const char * procname;
6911 find_symbol_for_address (aux->symtab, aux->nsyms, aux->strtab,
6912 aux->strtab_size, tp->start, &procname,
6915 fputs ("\n<", stdout);
6919 fputs (procname, stdout);
6922 printf ("+%lx", (unsigned long) offset);
6925 fputs (">: [", stdout);
6926 print_vma (tp->start.offset, PREFIX_HEX);
6927 fputc ('-', stdout);
6928 print_vma (tp->end.offset, PREFIX_HEX);
6931 #define PF(_m) if (tp->_m) printf (#_m " ");
6932 #define PV(_m) if (tp->_m) printf (#_m "=%d ", tp->_m);
6935 PF(Millicode_save_sr0);
6936 /* PV(Region_description); */
6942 PF(Separate_Package_Body);
6943 PF(Frame_Extension_Millicode);
6944 PF(Stack_Overflow_Check);
6945 PF(Two_Instruction_SP_Increment);
6949 PF(sched_entry_seq);
6952 PF(Save_MRP_in_frame);
6953 PF(extn_ptr_defined);
6954 PF(Cleanup_defined);
6955 PF(MPE_XL_interrupt_marker);
6956 PF(HP_UX_interrupt_marker);
6959 PV(Total_frame_size);
6968 slurp_hppa_unwind_table (FILE * file,
6969 struct hppa_unw_aux_info * aux,
6970 Elf_Internal_Shdr * sec)
6972 unsigned long size, unw_ent_size, nentries, nrelas, i;
6973 Elf_Internal_Phdr * seg;
6974 struct hppa_unw_table_entry * tep;
6975 Elf_Internal_Shdr * relsec;
6976 Elf_Internal_Rela * rela;
6977 Elf_Internal_Rela * rp;
6978 unsigned char * table;
6980 Elf_Internal_Sym * sym;
6981 const char * relname;
6983 /* First, find the starting address of the segment that includes
6986 if (elf_header.e_phnum)
6988 if (! get_program_headers (file))
6991 for (seg = program_headers;
6992 seg < program_headers + elf_header.e_phnum;
6995 if (seg->p_type != PT_LOAD)
6998 if (sec->sh_addr >= seg->p_vaddr
6999 && (sec->sh_addr + sec->sh_size <= seg->p_vaddr + seg->p_memsz))
7001 aux->seg_base = seg->p_vaddr;
7007 /* Second, build the unwind table from the contents of the unwind
7009 size = sec->sh_size;
7010 table = (unsigned char *) get_data (NULL, file, sec->sh_offset, 1, size,
7016 nentries = size / unw_ent_size;
7017 size = unw_ent_size * nentries;
7019 tep = aux->table = (struct hppa_unw_table_entry *)
7020 xcmalloc (nentries, sizeof (aux->table[0]));
7022 for (tp = table; tp < table + size; tp += unw_ent_size, ++tep)
7024 unsigned int tmp1, tmp2;
7026 tep->start.section = SHN_UNDEF;
7027 tep->end.section = SHN_UNDEF;
7029 tep->start.offset = byte_get ((unsigned char *) tp + 0, 4);
7030 tep->end.offset = byte_get ((unsigned char *) tp + 4, 4);
7031 tmp1 = byte_get ((unsigned char *) tp + 8, 4);
7032 tmp2 = byte_get ((unsigned char *) tp + 12, 4);
7034 tep->start.offset += aux->seg_base;
7035 tep->end.offset += aux->seg_base;
7037 tep->Cannot_unwind = (tmp1 >> 31) & 0x1;
7038 tep->Millicode = (tmp1 >> 30) & 0x1;
7039 tep->Millicode_save_sr0 = (tmp1 >> 29) & 0x1;
7040 tep->Region_description = (tmp1 >> 27) & 0x3;
7041 tep->reserved1 = (tmp1 >> 26) & 0x1;
7042 tep->Entry_SR = (tmp1 >> 25) & 0x1;
7043 tep->Entry_FR = (tmp1 >> 21) & 0xf;
7044 tep->Entry_GR = (tmp1 >> 16) & 0x1f;
7045 tep->Args_stored = (tmp1 >> 15) & 0x1;
7046 tep->Variable_Frame = (tmp1 >> 14) & 0x1;
7047 tep->Separate_Package_Body = (tmp1 >> 13) & 0x1;
7048 tep->Frame_Extension_Millicode = (tmp1 >> 12) & 0x1;
7049 tep->Stack_Overflow_Check = (tmp1 >> 11) & 0x1;
7050 tep->Two_Instruction_SP_Increment = (tmp1 >> 10) & 0x1;
7051 tep->Ada_Region = (tmp1 >> 9) & 0x1;
7052 tep->cxx_info = (tmp1 >> 8) & 0x1;
7053 tep->cxx_try_catch = (tmp1 >> 7) & 0x1;
7054 tep->sched_entry_seq = (tmp1 >> 6) & 0x1;
7055 tep->reserved2 = (tmp1 >> 5) & 0x1;
7056 tep->Save_SP = (tmp1 >> 4) & 0x1;
7057 tep->Save_RP = (tmp1 >> 3) & 0x1;
7058 tep->Save_MRP_in_frame = (tmp1 >> 2) & 0x1;
7059 tep->extn_ptr_defined = (tmp1 >> 1) & 0x1;
7060 tep->Cleanup_defined = tmp1 & 0x1;
7062 tep->MPE_XL_interrupt_marker = (tmp2 >> 31) & 0x1;
7063 tep->HP_UX_interrupt_marker = (tmp2 >> 30) & 0x1;
7064 tep->Large_frame = (tmp2 >> 29) & 0x1;
7065 tep->Pseudo_SP_Set = (tmp2 >> 28) & 0x1;
7066 tep->reserved4 = (tmp2 >> 27) & 0x1;
7067 tep->Total_frame_size = tmp2 & 0x7ffffff;
7071 /* Third, apply any relocations to the unwind table. */
7072 for (relsec = section_headers;
7073 relsec < section_headers + elf_header.e_shnum;
7076 if (relsec->sh_type != SHT_RELA
7077 || relsec->sh_info >= elf_header.e_shnum
7078 || section_headers + relsec->sh_info != sec)
7081 if (!slurp_rela_relocs (file, relsec->sh_offset, relsec->sh_size,
7085 for (rp = rela; rp < rela + nrelas; ++rp)
7087 relname = elf_hppa_reloc_type (get_reloc_type (rp->r_info));
7088 sym = aux->symtab + get_reloc_symindex (rp->r_info);
7090 /* R_PARISC_SEGREL32 or R_PARISC_SEGREL64. */
7091 if (! const_strneq (relname, "R_PARISC_SEGREL"))
7093 warn (_("Skipping unexpected relocation type %s\n"), relname);
7097 i = rp->r_offset / unw_ent_size;
7099 switch ((rp->r_offset % unw_ent_size) / eh_addr_size)
7102 aux->table[i].start.section = sym->st_shndx;
7103 aux->table[i].start.offset = sym->st_value + rp->r_addend;
7106 aux->table[i].end.section = sym->st_shndx;
7107 aux->table[i].end.offset = sym->st_value + rp->r_addend;
7117 aux->table_len = nentries;
7123 hppa_process_unwind (FILE * file)
7125 struct hppa_unw_aux_info aux;
7126 Elf_Internal_Shdr * unwsec = NULL;
7127 Elf_Internal_Shdr * strsec;
7128 Elf_Internal_Shdr * sec;
7131 if (string_table == NULL)
7134 memset (& aux, 0, sizeof (aux));
7136 for (i = 0, sec = section_headers; i < elf_header.e_shnum; ++i, ++sec)
7138 if (sec->sh_type == SHT_SYMTAB
7139 && sec->sh_link < elf_header.e_shnum)
7141 aux.symtab = GET_ELF_SYMBOLS (file, sec, & aux.nsyms);
7143 strsec = section_headers + sec->sh_link;
7144 if (aux.strtab != NULL)
7146 error (_("Multiple auxillary string tables encountered\n"));
7149 aux.strtab = (char *) get_data (NULL, file, strsec->sh_offset,
7152 aux.strtab_size = aux.strtab != NULL ? strsec->sh_size : 0;
7154 else if (streq (SECTION_NAME (sec), ".PARISC.unwind"))
7159 printf (_("\nThere are no unwind sections in this file.\n"));
7161 for (i = 0, sec = section_headers; i < elf_header.e_shnum; ++i, ++sec)
7163 if (streq (SECTION_NAME (sec), ".PARISC.unwind"))
7165 printf (_("\nUnwind section '%s' at offset 0x%lx contains %lu entries:\n"),
7166 printable_section_name (sec),
7167 (unsigned long) sec->sh_offset,
7168 (unsigned long) (sec->sh_size / (2 * eh_addr_size + 8)));
7170 slurp_hppa_unwind_table (file, &aux, sec);
7171 if (aux.table_len > 0)
7172 dump_hppa_unwind (&aux);
7175 free ((char *) aux.table);
7183 free ((char *) aux.strtab);
7188 unsigned char * data; /* The unwind data. */
7189 Elf_Internal_Shdr * sec; /* The cached unwind section header. */
7190 Elf_Internal_Rela * rela; /* The cached relocations for this section. */
7191 unsigned long nrelas; /* The number of relocations. */
7192 unsigned int rel_type; /* REL or RELA ? */
7193 Elf_Internal_Rela * next_rela; /* Cyclic pointer to the next reloc to process. */
7196 struct arm_unw_aux_info
7198 FILE * file; /* The file containing the unwind sections. */
7199 Elf_Internal_Sym * symtab; /* The file's symbol table. */
7200 unsigned long nsyms; /* Number of symbols. */
7201 char * strtab; /* The file's string table. */
7202 unsigned long strtab_size; /* Size of string table. */
7206 arm_print_vma_and_name (struct arm_unw_aux_info *aux,
7207 bfd_vma fn, struct absaddr addr)
7209 const char *procname;
7212 if (addr.section == SHN_UNDEF)
7215 find_symbol_for_address (aux->symtab, aux->nsyms, aux->strtab,
7216 aux->strtab_size, addr, &procname,
7219 print_vma (fn, PREFIX_HEX);
7223 fputs (" <", stdout);
7224 fputs (procname, stdout);
7227 printf ("+0x%lx", (unsigned long) sym_offset);
7228 fputc ('>', stdout);
7235 arm_free_section (struct arm_section *arm_sec)
7237 if (arm_sec->data != NULL)
7238 free (arm_sec->data);
7240 if (arm_sec->rela != NULL)
7241 free (arm_sec->rela);
7244 /* 1) If SEC does not match the one cached in ARM_SEC, then free the current
7245 cached section and install SEC instead.
7246 2) Locate the 32-bit word at WORD_OFFSET in unwind section SEC
7247 and return its valued in * WORDP, relocating if necessary.
7248 3) Update the NEXT_RELA field in ARM_SEC and store the section index and
7249 relocation's offset in ADDR.
7250 4) If SYM_NAME is non-NULL and a relocation was applied, record the offset
7251 into the string table of the symbol associated with the reloc. If no
7252 reloc was applied store -1 there.
7253 5) Return TRUE upon success, FALSE otherwise. */
7256 get_unwind_section_word (struct arm_unw_aux_info * aux,
7257 struct arm_section * arm_sec,
7258 Elf_Internal_Shdr * sec,
7259 bfd_vma word_offset,
7260 unsigned int * wordp,
7261 struct absaddr * addr,
7264 Elf_Internal_Rela *rp;
7265 Elf_Internal_Sym *sym;
7266 const char * relname;
7268 bfd_boolean wrapped;
7270 if (sec == NULL || arm_sec == NULL)
7273 addr->section = SHN_UNDEF;
7276 if (sym_name != NULL)
7277 *sym_name = (bfd_vma) -1;
7279 /* If necessary, update the section cache. */
7280 if (sec != arm_sec->sec)
7282 Elf_Internal_Shdr *relsec;
7284 arm_free_section (arm_sec);
7287 arm_sec->data = get_data (NULL, aux->file, sec->sh_offset, 1,
7288 sec->sh_size, _("unwind data"));
7289 arm_sec->rela = NULL;
7290 arm_sec->nrelas = 0;
7292 for (relsec = section_headers;
7293 relsec < section_headers + elf_header.e_shnum;
7296 if (relsec->sh_info >= elf_header.e_shnum
7297 || section_headers + relsec->sh_info != sec
7298 /* PR 15745: Check the section type as well. */
7299 || (relsec->sh_type != SHT_REL
7300 && relsec->sh_type != SHT_RELA))
7303 arm_sec->rel_type = relsec->sh_type;
7304 if (relsec->sh_type == SHT_REL)
7306 if (!slurp_rel_relocs (aux->file, relsec->sh_offset,
7308 & arm_sec->rela, & arm_sec->nrelas))
7311 else /* relsec->sh_type == SHT_RELA */
7313 if (!slurp_rela_relocs (aux->file, relsec->sh_offset,
7315 & arm_sec->rela, & arm_sec->nrelas))
7321 arm_sec->next_rela = arm_sec->rela;
7324 /* If there is no unwind data we can do nothing. */
7325 if (arm_sec->data == NULL)
7328 /* If the offset is invalid then fail. */
7329 if (word_offset > sec->sh_size - 4)
7332 /* Get the word at the required offset. */
7333 word = byte_get (arm_sec->data + word_offset, 4);
7335 /* PR 17531: file: id:000001,src:001266+003044,op:splice,rep:128. */
7336 if (arm_sec->rela == NULL)
7342 /* Look through the relocs to find the one that applies to the provided offset. */
7344 for (rp = arm_sec->next_rela; rp != arm_sec->rela + arm_sec->nrelas; rp++)
7346 bfd_vma prelval, offset;
7348 if (rp->r_offset > word_offset && !wrapped)
7353 if (rp->r_offset > word_offset)
7356 if (rp->r_offset & 3)
7358 warn (_("Skipping unexpected relocation at offset 0x%lx\n"),
7359 (unsigned long) rp->r_offset);
7363 if (rp->r_offset < word_offset)
7366 /* PR 17531: file: 027-161405-0.004 */
7367 if (aux->symtab == NULL)
7370 if (arm_sec->rel_type == SHT_REL)
7372 offset = word & 0x7fffffff;
7373 if (offset & 0x40000000)
7374 offset |= ~ (bfd_vma) 0x7fffffff;
7376 else if (arm_sec->rel_type == SHT_RELA)
7377 offset = rp->r_addend;
7380 error (_("Unknown section relocation type %d encountered\n"),
7385 /* PR 17531 file: 027-1241568-0.004. */
7386 if (ELF32_R_SYM (rp->r_info) >= aux->nsyms)
7388 error (_("Bad symbol index in unwind relocation (%lu > %lu)\n"),
7389 (unsigned long) ELF32_R_SYM (rp->r_info), aux->nsyms);
7393 sym = aux->symtab + ELF32_R_SYM (rp->r_info);
7394 offset += sym->st_value;
7395 prelval = offset - (arm_sec->sec->sh_addr + rp->r_offset);
7397 /* Check that we are processing the expected reloc type. */
7398 if (elf_header.e_machine == EM_ARM)
7400 relname = elf_arm_reloc_type (ELF32_R_TYPE (rp->r_info));
7401 if (relname == NULL)
7403 warn (_("Skipping unknown ARM relocation type: %d\n"),
7404 (int) ELF32_R_TYPE (rp->r_info));
7408 if (streq (relname, "R_ARM_NONE"))
7411 if (! streq (relname, "R_ARM_PREL31"))
7413 warn (_("Skipping unexpected ARM relocation type %s\n"), relname);
7417 else if (elf_header.e_machine == EM_TI_C6000)
7419 relname = elf_tic6x_reloc_type (ELF32_R_TYPE (rp->r_info));
7420 if (relname == NULL)
7422 warn (_("Skipping unknown C6000 relocation type: %d\n"),
7423 (int) ELF32_R_TYPE (rp->r_info));
7427 if (streq (relname, "R_C6000_NONE"))
7430 if (! streq (relname, "R_C6000_PREL31"))
7432 warn (_("Skipping unexpected C6000 relocation type %s\n"), relname);
7440 /* This function currently only supports ARM and TI unwinders. */
7441 warn (_("Only TI and ARM unwinders are currently supported\n"));
7445 word = (word & ~ (bfd_vma) 0x7fffffff) | (prelval & 0x7fffffff);
7446 addr->section = sym->st_shndx;
7447 addr->offset = offset;
7450 * sym_name = sym->st_name;
7455 arm_sec->next_rela = rp;
7460 static const char *tic6x_unwind_regnames[16] =
7462 "A15", "B15", "B14", "B13", "B12", "B11", "B10", "B3",
7463 "A14", "A13", "A12", "A11", "A10",
7464 "[invalid reg 13]", "[invalid reg 14]", "[invalid reg 15]"
7468 decode_tic6x_unwind_regmask (unsigned int mask)
7472 for (i = 12; mask; mask >>= 1, i--)
7476 fputs (tic6x_unwind_regnames[i], stdout);
7478 fputs (", ", stdout);
7484 if (remaining == 0 && more_words) \
7487 if (! get_unwind_section_word (aux, data_arm_sec, data_sec, \
7488 data_offset, & word, & addr, NULL)) \
7494 #define GET_OP(OP) \
7499 (OP) = word >> 24; \
7504 printf (_("[Truncated opcode]\n")); \
7507 printf ("0x%02x ", OP)
7510 decode_arm_unwind_bytecode (struct arm_unw_aux_info *aux,
7511 unsigned int word, unsigned int remaining,
7512 unsigned int more_words,
7513 bfd_vma data_offset, Elf_Internal_Shdr *data_sec,
7514 struct arm_section *data_arm_sec)
7516 struct absaddr addr;
7518 /* Decode the unwinding instructions. */
7521 unsigned int op, op2;
7530 printf (" 0x%02x ", op);
7532 if ((op & 0xc0) == 0x00)
7534 int offset = ((op & 0x3f) << 2) + 4;
7536 printf (" vsp = vsp + %d", offset);
7538 else if ((op & 0xc0) == 0x40)
7540 int offset = ((op & 0x3f) << 2) + 4;
7542 printf (" vsp = vsp - %d", offset);
7544 else if ((op & 0xf0) == 0x80)
7547 if (op == 0x80 && op2 == 0)
7548 printf (_("Refuse to unwind"));
7551 unsigned int mask = ((op & 0x0f) << 8) | op2;
7556 for (i = 0; i < 12; i++)
7557 if (mask & (1 << i))
7563 printf ("r%d", 4 + i);
7568 else if ((op & 0xf0) == 0x90)
7570 if (op == 0x9d || op == 0x9f)
7571 printf (_(" [Reserved]"));
7573 printf (" vsp = r%d", op & 0x0f);
7575 else if ((op & 0xf0) == 0xa0)
7577 int end = 4 + (op & 0x07);
7582 for (i = 4; i <= end; i++)
7598 else if (op == 0xb0)
7599 printf (_(" finish"));
7600 else if (op == 0xb1)
7603 if (op2 == 0 || (op2 & 0xf0) != 0)
7604 printf (_("[Spare]"));
7607 unsigned int mask = op2 & 0x0f;
7612 for (i = 0; i < 12; i++)
7613 if (mask & (1 << i))
7624 else if (op == 0xb2)
7626 unsigned char buf[9];
7627 unsigned int i, len;
7628 unsigned long offset;
7630 for (i = 0; i < sizeof (buf); i++)
7633 if ((buf[i] & 0x80) == 0)
7636 if (i == sizeof (buf))
7637 printf (_("corrupt change to vsp"));
7640 offset = read_uleb128 (buf, &len, buf + i + 1);
7641 assert (len == i + 1);
7642 offset = offset * 4 + 0x204;
7643 printf ("vsp = vsp + %ld", offset);
7646 else if (op == 0xb3 || op == 0xc8 || op == 0xc9)
7648 unsigned int first, last;
7655 printf ("pop {D%d", first);
7657 printf ("-D%d", first + last);
7660 else if ((op & 0xf8) == 0xb8 || (op & 0xf8) == 0xd0)
7662 unsigned int count = op & 0x07;
7666 printf ("-D%d", 8 + count);
7669 else if (op >= 0xc0 && op <= 0xc5)
7671 unsigned int count = op & 0x07;
7673 printf (" pop {wR10");
7675 printf ("-wR%d", 10 + count);
7678 else if (op == 0xc6)
7680 unsigned int first, last;
7685 printf ("pop {wR%d", first);
7687 printf ("-wR%d", first + last);
7690 else if (op == 0xc7)
7693 if (op2 == 0 || (op2 & 0xf0) != 0)
7694 printf (_("[Spare]"));
7697 unsigned int mask = op2 & 0x0f;
7702 for (i = 0; i < 4; i++)
7703 if (mask & (1 << i))
7709 printf ("wCGR%d", i);
7715 printf (_(" [unsupported opcode]"));
7721 decode_tic6x_unwind_bytecode (struct arm_unw_aux_info *aux,
7722 unsigned int word, unsigned int remaining,
7723 unsigned int more_words,
7724 bfd_vma data_offset, Elf_Internal_Shdr *data_sec,
7725 struct arm_section *data_arm_sec)
7727 struct absaddr addr;
7729 /* Decode the unwinding instructions. */
7732 unsigned int op, op2;
7741 printf (" 0x%02x ", op);
7743 if ((op & 0xc0) == 0x00)
7745 int offset = ((op & 0x3f) << 3) + 8;
7746 printf (" sp = sp + %d", offset);
7748 else if ((op & 0xc0) == 0x80)
7751 if (op == 0x80 && op2 == 0)
7752 printf (_("Refuse to unwind"));
7755 unsigned int mask = ((op & 0x1f) << 8) | op2;
7757 printf ("pop compact {");
7761 decode_tic6x_unwind_regmask (mask);
7765 else if ((op & 0xf0) == 0xc0)
7773 unsigned int offset;
7777 /* Scan entire instruction first so that GET_OP output is not
7778 interleaved with disassembly. */
7780 for (i = 0; nregs < (op & 0xf); i++)
7786 regpos[nregs].offset = i * 2;
7787 regpos[nregs].reg = reg;
7794 regpos[nregs].offset = i * 2 + 1;
7795 regpos[nregs].reg = reg;
7800 printf (_("pop frame {"));
7802 for (i = i * 2; i > 0; i--)
7804 if (regpos[reg].offset == i - 1)
7806 name = tic6x_unwind_regnames[regpos[reg].reg];
7813 fputs (name, stdout);
7820 else if (op == 0xd0)
7821 printf (" MOV FP, SP");
7822 else if (op == 0xd1)
7823 printf (" __c6xabi_pop_rts");
7824 else if (op == 0xd2)
7826 unsigned char buf[9];
7827 unsigned int i, len;
7828 unsigned long offset;
7830 for (i = 0; i < sizeof (buf); i++)
7833 if ((buf[i] & 0x80) == 0)
7836 /* PR 17531: file: id:000001,src:001906+004739,op:splice,rep:2. */
7837 if (i == sizeof (buf))
7839 printf ("<corrupt sp adjust>\n");
7840 warn (_("Corrupt stack pointer adjustment detected\n"));
7844 offset = read_uleb128 (buf, &len, buf + i + 1);
7845 assert (len == i + 1);
7846 offset = offset * 8 + 0x408;
7847 printf (_("sp = sp + %ld"), offset);
7849 else if ((op & 0xf0) == 0xe0)
7851 if ((op & 0x0f) == 7)
7854 printf (" MV %s, B3", tic6x_unwind_regnames[op & 0x0f]);
7858 printf (_(" [unsupported opcode]"));
7865 arm_expand_prel31 (bfd_vma word, bfd_vma where)
7869 offset = word & 0x7fffffff;
7870 if (offset & 0x40000000)
7871 offset |= ~ (bfd_vma) 0x7fffffff;
7873 if (elf_header.e_machine == EM_TI_C6000)
7876 return offset + where;
7880 decode_arm_unwind (struct arm_unw_aux_info * aux,
7882 unsigned int remaining,
7883 bfd_vma data_offset,
7884 Elf_Internal_Shdr * data_sec,
7885 struct arm_section * data_arm_sec)
7888 unsigned int more_words = 0;
7889 struct absaddr addr;
7890 bfd_vma sym_name = (bfd_vma) -1;
7894 /* Fetch the first word.
7895 Note - when decoding an object file the address extracted
7896 here will always be 0. So we also pass in the sym_name
7897 parameter so that we can find the symbol associated with
7898 the personality routine. */
7899 if (! get_unwind_section_word (aux, data_arm_sec, data_sec, data_offset,
7900 & word, & addr, & sym_name))
7906 if ((word & 0x80000000) == 0)
7908 /* Expand prel31 for personality routine. */
7910 const char *procname;
7912 fn = arm_expand_prel31 (word, data_sec->sh_addr + data_offset);
7913 printf (_(" Personality routine: "));
7915 && addr.section == SHN_UNDEF && addr.offset == 0
7916 && sym_name != (bfd_vma) -1 && sym_name < aux->strtab_size)
7918 procname = aux->strtab + sym_name;
7919 print_vma (fn, PREFIX_HEX);
7922 fputs (" <", stdout);
7923 fputs (procname, stdout);
7924 fputc ('>', stdout);
7928 procname = arm_print_vma_and_name (aux, fn, addr);
7929 fputc ('\n', stdout);
7931 /* The GCC personality routines use the standard compact
7932 encoding, starting with one byte giving the number of
7934 if (procname != NULL
7935 && (const_strneq (procname, "__gcc_personality_v0")
7936 || const_strneq (procname, "__gxx_personality_v0")
7937 || const_strneq (procname, "__gcj_personality_v0")
7938 || const_strneq (procname, "__gnu_objc_personality_v0")))
7945 printf (_(" [Truncated data]\n"));
7948 more_words = word >> 24;
7958 /* ARM EHABI Section 6.3:
7960 An exception-handling table entry for the compact model looks like:
7964 1 0 index Data for personalityRoutine[index] */
7966 if (elf_header.e_machine == EM_ARM
7967 && (word & 0x70000000))
7968 warn (_("Corrupt ARM compact model table entry: %x \n"), word);
7970 per_index = (word >> 24) & 0x7f;
7971 printf (_(" Compact model index: %d\n"), per_index);
7978 else if (per_index < 3)
7980 more_words = (word >> 16) & 0xff;
7986 switch (elf_header.e_machine)
7991 decode_arm_unwind_bytecode (aux, word, remaining, more_words,
7992 data_offset, data_sec, data_arm_sec);
7996 warn (_("Unknown ARM compact model index encountered\n"));
7997 printf (_(" [reserved]\n"));
8004 decode_tic6x_unwind_bytecode (aux, word, remaining, more_words,
8005 data_offset, data_sec, data_arm_sec);
8007 else if (per_index < 5)
8009 if (((word >> 17) & 0x7f) == 0x7f)
8010 printf (_(" Restore stack from frame pointer\n"));
8012 printf (_(" Stack increment %d\n"), (word >> 14) & 0x1fc);
8013 printf (_(" Registers restored: "));
8015 printf (" (compact) ");
8016 decode_tic6x_unwind_regmask ((word >> 4) & 0x1fff);
8018 printf (_(" Return register: %s\n"),
8019 tic6x_unwind_regnames[word & 0xf]);
8022 printf (_(" [reserved (%d)]\n"), per_index);
8026 error (_("Unsupported architecture type %d encountered when decoding unwind table\n"),
8027 elf_header.e_machine);
8030 /* Decode the descriptors. Not implemented. */
8034 dump_arm_unwind (struct arm_unw_aux_info *aux, Elf_Internal_Shdr *exidx_sec)
8036 struct arm_section exidx_arm_sec, extab_arm_sec;
8037 unsigned int i, exidx_len;
8039 memset (&exidx_arm_sec, 0, sizeof (exidx_arm_sec));
8040 memset (&extab_arm_sec, 0, sizeof (extab_arm_sec));
8041 exidx_len = exidx_sec->sh_size / 8;
8043 for (i = 0; i < exidx_len; i++)
8045 unsigned int exidx_fn, exidx_entry;
8046 struct absaddr fn_addr, entry_addr;
8049 fputc ('\n', stdout);
8051 if (! get_unwind_section_word (aux, & exidx_arm_sec, exidx_sec,
8052 8 * i, & exidx_fn, & fn_addr, NULL)
8053 || ! get_unwind_section_word (aux, & exidx_arm_sec, exidx_sec,
8054 8 * i + 4, & exidx_entry, & entry_addr, NULL))
8056 arm_free_section (& exidx_arm_sec);
8057 arm_free_section (& extab_arm_sec);
8061 /* ARM EHABI, Section 5:
8062 An index table entry consists of 2 words.
8063 The first word contains a prel31 offset to the start of a function, with bit 31 clear. */
8064 if (exidx_fn & 0x80000000)
8065 warn (_("corrupt index table entry: %x\n"), exidx_fn);
8067 fn = arm_expand_prel31 (exidx_fn, exidx_sec->sh_addr + 8 * i);
8069 arm_print_vma_and_name (aux, fn, fn_addr);
8070 fputs (": ", stdout);
8072 if (exidx_entry == 1)
8074 print_vma (exidx_entry, PREFIX_HEX);
8075 fputs (" [cantunwind]\n", stdout);
8077 else if (exidx_entry & 0x80000000)
8079 print_vma (exidx_entry, PREFIX_HEX);
8080 fputc ('\n', stdout);
8081 decode_arm_unwind (aux, exidx_entry, 4, 0, NULL, NULL);
8085 bfd_vma table, table_offset = 0;
8086 Elf_Internal_Shdr *table_sec;
8088 fputs ("@", stdout);
8089 table = arm_expand_prel31 (exidx_entry, exidx_sec->sh_addr + 8 * i + 4);
8090 print_vma (table, PREFIX_HEX);
8093 /* Locate the matching .ARM.extab. */
8094 if (entry_addr.section != SHN_UNDEF
8095 && entry_addr.section < elf_header.e_shnum)
8097 table_sec = section_headers + entry_addr.section;
8098 table_offset = entry_addr.offset;
8102 table_sec = find_section_by_address (table);
8103 if (table_sec != NULL)
8104 table_offset = table - table_sec->sh_addr;
8106 if (table_sec == NULL)
8108 warn (_("Could not locate .ARM.extab section containing 0x%lx.\n"),
8109 (unsigned long) table);
8112 decode_arm_unwind (aux, 0, 0, table_offset, table_sec,
8119 arm_free_section (&exidx_arm_sec);
8120 arm_free_section (&extab_arm_sec);
8123 /* Used for both ARM and C6X unwinding tables. */
8126 arm_process_unwind (FILE *file)
8128 struct arm_unw_aux_info aux;
8129 Elf_Internal_Shdr *unwsec = NULL;
8130 Elf_Internal_Shdr *strsec;
8131 Elf_Internal_Shdr *sec;
8133 unsigned int sec_type;
8135 switch (elf_header.e_machine)
8138 sec_type = SHT_ARM_EXIDX;
8142 sec_type = SHT_C6000_UNWIND;
8146 error (_("Unsupported architecture type %d encountered when processing unwind table\n"),
8147 elf_header.e_machine);
8151 if (string_table == NULL)
8154 memset (& aux, 0, sizeof (aux));
8157 for (i = 0, sec = section_headers; i < elf_header.e_shnum; ++i, ++sec)
8159 if (sec->sh_type == SHT_SYMTAB && sec->sh_link < elf_header.e_shnum)
8161 aux.symtab = GET_ELF_SYMBOLS (file, sec, & aux.nsyms);
8163 strsec = section_headers + sec->sh_link;
8165 /* PR binutils/17531 file: 011-12666-0.004. */
8166 if (aux.strtab != NULL)
8168 error (_("Multiple string tables found in file.\n"));
8171 aux.strtab = get_data (NULL, file, strsec->sh_offset,
8172 1, strsec->sh_size, _("string table"));
8173 aux.strtab_size = aux.strtab != NULL ? strsec->sh_size : 0;
8175 else if (sec->sh_type == sec_type)
8180 printf (_("\nThere are no unwind sections in this file.\n"));
8182 for (i = 0, sec = section_headers; i < elf_header.e_shnum; ++i, ++sec)
8184 if (sec->sh_type == sec_type)
8186 printf (_("\nUnwind table index '%s' at offset 0x%lx contains %lu entries:\n"),
8187 printable_section_name (sec),
8188 (unsigned long) sec->sh_offset,
8189 (unsigned long) (sec->sh_size / (2 * eh_addr_size)));
8191 dump_arm_unwind (&aux, sec);
8198 free ((char *) aux.strtab);
8202 process_unwind (FILE * file)
8204 struct unwind_handler
8207 void (* handler)(FILE *);
8210 { EM_ARM, arm_process_unwind },
8211 { EM_IA_64, ia64_process_unwind },
8212 { EM_PARISC, hppa_process_unwind },
8213 { EM_TI_C6000, arm_process_unwind },
8221 for (i = 0; handlers[i].handler != NULL; i++)
8222 if (elf_header.e_machine == handlers[i].machtype)
8224 handlers[i].handler (file);
8228 printf (_("\nThe decoding of unwind sections for machine type %s is not currently supported.\n"),
8229 get_machine_name (elf_header.e_machine));
8233 dynamic_section_mips_val (Elf_Internal_Dyn * entry)
8235 switch (entry->d_tag)
8238 if (entry->d_un.d_val == 0)
8242 static const char * opts[] =
8244 "QUICKSTART", "NOTPOT", "NO_LIBRARY_REPLACEMENT",
8245 "NO_MOVE", "SGI_ONLY", "GUARANTEE_INIT", "DELTA_C_PLUS_PLUS",
8246 "GUARANTEE_START_INIT", "PIXIE", "DEFAULT_DELAY_LOAD",
8247 "REQUICKSTART", "REQUICKSTARTED", "CORD", "NO_UNRES_UNDEF",
8253 for (cnt = 0; cnt < ARRAY_SIZE (opts); ++cnt)
8254 if (entry->d_un.d_val & (1 << cnt))
8256 printf ("%s%s", first ? "" : " ", opts[cnt]);
8262 case DT_MIPS_IVERSION:
8263 if (VALID_DYNAMIC_NAME (entry->d_un.d_val))
8264 printf (_("Interface Version: %s"), GET_DYNAMIC_NAME (entry->d_un.d_val));
8268 sprintf_vma (buf, entry->d_un.d_ptr);
8269 /* Note: coded this way so that there is a single string for translation. */
8270 printf (_("<corrupt: %s>"), buf);
8274 case DT_MIPS_TIME_STAMP:
8278 time_t atime = entry->d_un.d_val;
8280 tmp = gmtime (&atime);
8281 /* PR 17531: file: 6accc532. */
8283 snprintf (timebuf, sizeof (timebuf), _("<corrupt>"));
8285 snprintf (timebuf, sizeof (timebuf), "%04u-%02u-%02uT%02u:%02u:%02u",
8286 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
8287 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
8288 printf (_("Time Stamp: %s"), timebuf);
8292 case DT_MIPS_RLD_VERSION:
8293 case DT_MIPS_LOCAL_GOTNO:
8294 case DT_MIPS_CONFLICTNO:
8295 case DT_MIPS_LIBLISTNO:
8296 case DT_MIPS_SYMTABNO:
8297 case DT_MIPS_UNREFEXTNO:
8298 case DT_MIPS_HIPAGENO:
8299 case DT_MIPS_DELTA_CLASS_NO:
8300 case DT_MIPS_DELTA_INSTANCE_NO:
8301 case DT_MIPS_DELTA_RELOC_NO:
8302 case DT_MIPS_DELTA_SYM_NO:
8303 case DT_MIPS_DELTA_CLASSSYM_NO:
8304 case DT_MIPS_COMPACT_SIZE:
8305 print_vma (entry->d_un.d_ptr, DEC);
8309 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
8315 dynamic_section_parisc_val (Elf_Internal_Dyn * entry)
8317 switch (entry->d_tag)
8319 case DT_HP_DLD_FLAGS:
8328 { DT_HP_DEBUG_PRIVATE, "HP_DEBUG_PRIVATE" },
8329 { DT_HP_DEBUG_CALLBACK, "HP_DEBUG_CALLBACK" },
8330 { DT_HP_DEBUG_CALLBACK_BOR, "HP_DEBUG_CALLBACK_BOR" },
8331 { DT_HP_NO_ENVVAR, "HP_NO_ENVVAR" },
8332 { DT_HP_BIND_NOW, "HP_BIND_NOW" },
8333 { DT_HP_BIND_NONFATAL, "HP_BIND_NONFATAL" },
8334 { DT_HP_BIND_VERBOSE, "HP_BIND_VERBOSE" },
8335 { DT_HP_BIND_RESTRICTED, "HP_BIND_RESTRICTED" },
8336 { DT_HP_BIND_SYMBOLIC, "HP_BIND_SYMBOLIC" },
8337 { DT_HP_RPATH_FIRST, "HP_RPATH_FIRST" },
8338 { DT_HP_BIND_DEPTH_FIRST, "HP_BIND_DEPTH_FIRST" },
8339 { DT_HP_GST, "HP_GST" },
8340 { DT_HP_SHLIB_FIXED, "HP_SHLIB_FIXED" },
8341 { DT_HP_MERGE_SHLIB_SEG, "HP_MERGE_SHLIB_SEG" },
8342 { DT_HP_NODELETE, "HP_NODELETE" },
8343 { DT_HP_GROUP, "HP_GROUP" },
8344 { DT_HP_PROTECT_LINKAGE_TABLE, "HP_PROTECT_LINKAGE_TABLE" }
8348 bfd_vma val = entry->d_un.d_val;
8350 for (cnt = 0; cnt < ARRAY_SIZE (flags); ++cnt)
8351 if (val & flags[cnt].bit)
8355 fputs (flags[cnt].str, stdout);
8357 val ^= flags[cnt].bit;
8360 if (val != 0 || first)
8364 print_vma (val, HEX);
8370 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
8378 /* VMS vs Unix time offset and factor. */
8380 #define VMS_EPOCH_OFFSET 35067168000000000LL
8381 #define VMS_GRANULARITY_FACTOR 10000000
8383 /* Display a VMS time in a human readable format. */
8386 print_vms_time (bfd_int64_t vmstime)
8391 unxtime = (vmstime - VMS_EPOCH_OFFSET) / VMS_GRANULARITY_FACTOR;
8392 tm = gmtime (&unxtime);
8393 printf ("%04u-%02u-%02uT%02u:%02u:%02u",
8394 tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
8395 tm->tm_hour, tm->tm_min, tm->tm_sec);
8400 dynamic_section_ia64_val (Elf_Internal_Dyn * entry)
8402 switch (entry->d_tag)
8404 case DT_IA_64_PLT_RESERVE:
8405 /* First 3 slots reserved. */
8406 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
8408 print_vma (entry->d_un.d_ptr + (3 * 8), PREFIX_HEX);
8411 case DT_IA_64_VMS_LINKTIME:
8413 print_vms_time (entry->d_un.d_val);
8417 case DT_IA_64_VMS_LNKFLAGS:
8418 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
8419 if (entry->d_un.d_val & VMS_LF_CALL_DEBUG)
8420 printf (" CALL_DEBUG");
8421 if (entry->d_un.d_val & VMS_LF_NOP0BUFS)
8422 printf (" NOP0BUFS");
8423 if (entry->d_un.d_val & VMS_LF_P0IMAGE)
8424 printf (" P0IMAGE");
8425 if (entry->d_un.d_val & VMS_LF_MKTHREADS)
8426 printf (" MKTHREADS");
8427 if (entry->d_un.d_val & VMS_LF_UPCALLS)
8428 printf (" UPCALLS");
8429 if (entry->d_un.d_val & VMS_LF_IMGSTA)
8431 if (entry->d_un.d_val & VMS_LF_INITIALIZE)
8432 printf (" INITIALIZE");
8433 if (entry->d_un.d_val & VMS_LF_MAIN)
8435 if (entry->d_un.d_val & VMS_LF_EXE_INIT)
8436 printf (" EXE_INIT");
8437 if (entry->d_un.d_val & VMS_LF_TBK_IN_IMG)
8438 printf (" TBK_IN_IMG");
8439 if (entry->d_un.d_val & VMS_LF_DBG_IN_IMG)
8440 printf (" DBG_IN_IMG");
8441 if (entry->d_un.d_val & VMS_LF_TBK_IN_DSF)
8442 printf (" TBK_IN_DSF");
8443 if (entry->d_un.d_val & VMS_LF_DBG_IN_DSF)
8444 printf (" DBG_IN_DSF");
8445 if (entry->d_un.d_val & VMS_LF_SIGNATURES)
8446 printf (" SIGNATURES");
8447 if (entry->d_un.d_val & VMS_LF_REL_SEG_OFF)
8448 printf (" REL_SEG_OFF");
8452 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
8459 get_32bit_dynamic_section (FILE * file)
8461 Elf32_External_Dyn * edyn;
8462 Elf32_External_Dyn * ext;
8463 Elf_Internal_Dyn * entry;
8465 edyn = (Elf32_External_Dyn *) get_data (NULL, file, dynamic_addr, 1,
8466 dynamic_size, _("dynamic section"));
8470 /* SGI's ELF has more than one section in the DYNAMIC segment, and we
8471 might not have the luxury of section headers. Look for the DT_NULL
8472 terminator to determine the number of entries. */
8473 for (ext = edyn, dynamic_nent = 0;
8474 (char *) ext < (char *) edyn + dynamic_size - sizeof (* entry);
8478 if (BYTE_GET (ext->d_tag) == DT_NULL)
8482 dynamic_section = (Elf_Internal_Dyn *) cmalloc (dynamic_nent,
8484 if (dynamic_section == NULL)
8486 error (_("Out of memory allocating space for %lu dynamic entries\n"),
8487 (unsigned long) dynamic_nent);
8492 for (ext = edyn, entry = dynamic_section;
8493 entry < dynamic_section + dynamic_nent;
8496 entry->d_tag = BYTE_GET (ext->d_tag);
8497 entry->d_un.d_val = BYTE_GET (ext->d_un.d_val);
8506 get_64bit_dynamic_section (FILE * file)
8508 Elf64_External_Dyn * edyn;
8509 Elf64_External_Dyn * ext;
8510 Elf_Internal_Dyn * entry;
8512 /* Read in the data. */
8513 edyn = (Elf64_External_Dyn *) get_data (NULL, file, dynamic_addr, 1,
8514 dynamic_size, _("dynamic section"));
8518 /* SGI's ELF has more than one section in the DYNAMIC segment, and we
8519 might not have the luxury of section headers. Look for the DT_NULL
8520 terminator to determine the number of entries. */
8521 for (ext = edyn, dynamic_nent = 0;
8522 /* PR 17533 file: 033-67080-0.004 - do not read off the end of the buffer. */
8523 (char *) ext < ((char *) edyn) + dynamic_size - sizeof (* ext);
8527 if (BYTE_GET (ext->d_tag) == DT_NULL)
8531 dynamic_section = (Elf_Internal_Dyn *) cmalloc (dynamic_nent,
8533 if (dynamic_section == NULL)
8535 error (_("Out of memory allocating space for %lu dynamic entries\n"),
8536 (unsigned long) dynamic_nent);
8541 /* Convert from external to internal formats. */
8542 for (ext = edyn, entry = dynamic_section;
8543 entry < dynamic_section + dynamic_nent;
8546 entry->d_tag = BYTE_GET (ext->d_tag);
8547 entry->d_un.d_val = BYTE_GET (ext->d_un.d_val);
8556 print_dynamic_flags (bfd_vma flags)
8564 flag = flags & - flags;
8574 case DF_ORIGIN: fputs ("ORIGIN", stdout); break;
8575 case DF_SYMBOLIC: fputs ("SYMBOLIC", stdout); break;
8576 case DF_TEXTREL: fputs ("TEXTREL", stdout); break;
8577 case DF_BIND_NOW: fputs ("BIND_NOW", stdout); break;
8578 case DF_STATIC_TLS: fputs ("STATIC_TLS", stdout); break;
8579 default: fputs (_("unknown"), stdout); break;
8585 /* Parse and display the contents of the dynamic section. */
8588 process_dynamic_section (FILE * file)
8590 Elf_Internal_Dyn * entry;
8592 if (dynamic_size == 0)
8595 printf (_("\nThere is no dynamic section in this file.\n"));
8602 if (! get_32bit_dynamic_section (file))
8605 else if (! get_64bit_dynamic_section (file))
8608 /* Find the appropriate symbol table. */
8609 if (dynamic_symbols == NULL)
8611 for (entry = dynamic_section;
8612 entry < dynamic_section + dynamic_nent;
8615 Elf_Internal_Shdr section;
8617 if (entry->d_tag != DT_SYMTAB)
8620 dynamic_info[DT_SYMTAB] = entry->d_un.d_val;
8622 /* Since we do not know how big the symbol table is,
8623 we default to reading in the entire file (!) and
8624 processing that. This is overkill, I know, but it
8626 section.sh_offset = offset_from_vma (file, entry->d_un.d_val, 0);
8628 if (archive_file_offset != 0)
8629 section.sh_size = archive_file_size - section.sh_offset;
8632 if (fseek (file, 0, SEEK_END))
8633 error (_("Unable to seek to end of file!\n"));
8635 section.sh_size = ftell (file) - section.sh_offset;
8639 section.sh_entsize = sizeof (Elf32_External_Sym);
8641 section.sh_entsize = sizeof (Elf64_External_Sym);
8642 section.sh_name = string_table_length;
8644 dynamic_symbols = GET_ELF_SYMBOLS (file, §ion, & num_dynamic_syms);
8645 if (num_dynamic_syms < 1)
8647 error (_("Unable to determine the number of symbols to load\n"));
8653 /* Similarly find a string table. */
8654 if (dynamic_strings == NULL)
8656 for (entry = dynamic_section;
8657 entry < dynamic_section + dynamic_nent;
8660 unsigned long offset;
8663 if (entry->d_tag != DT_STRTAB)
8666 dynamic_info[DT_STRTAB] = entry->d_un.d_val;
8668 /* Since we do not know how big the string table is,
8669 we default to reading in the entire file (!) and
8670 processing that. This is overkill, I know, but it
8673 offset = offset_from_vma (file, entry->d_un.d_val, 0);
8675 if (archive_file_offset != 0)
8676 str_tab_len = archive_file_size - offset;
8679 if (fseek (file, 0, SEEK_END))
8680 error (_("Unable to seek to end of file\n"));
8681 str_tab_len = ftell (file) - offset;
8684 if (str_tab_len < 1)
8687 (_("Unable to determine the length of the dynamic string table\n"));
8691 dynamic_strings = (char *) get_data (NULL, file, offset, 1,
8693 _("dynamic string table"));
8694 dynamic_strings_length = dynamic_strings == NULL ? 0 : str_tab_len;
8699 /* And find the syminfo section if available. */
8700 if (dynamic_syminfo == NULL)
8702 unsigned long syminsz = 0;
8704 for (entry = dynamic_section;
8705 entry < dynamic_section + dynamic_nent;
8708 if (entry->d_tag == DT_SYMINENT)
8710 /* Note: these braces are necessary to avoid a syntax
8711 error from the SunOS4 C compiler. */
8712 /* PR binutils/17531: A corrupt file can trigger this test.
8713 So do not use an assert, instead generate an error message. */
8714 if (sizeof (Elf_External_Syminfo) != entry->d_un.d_val)
8715 error (_("Bad value (%d) for SYMINENT entry\n"),
8716 (int) entry->d_un.d_val);
8718 else if (entry->d_tag == DT_SYMINSZ)
8719 syminsz = entry->d_un.d_val;
8720 else if (entry->d_tag == DT_SYMINFO)
8721 dynamic_syminfo_offset = offset_from_vma (file, entry->d_un.d_val,
8725 if (dynamic_syminfo_offset != 0 && syminsz != 0)
8727 Elf_External_Syminfo * extsyminfo;
8728 Elf_External_Syminfo * extsym;
8729 Elf_Internal_Syminfo * syminfo;
8731 /* There is a syminfo section. Read the data. */
8732 extsyminfo = (Elf_External_Syminfo *)
8733 get_data (NULL, file, dynamic_syminfo_offset, 1, syminsz,
8734 _("symbol information"));
8738 dynamic_syminfo = (Elf_Internal_Syminfo *) malloc (syminsz);
8739 if (dynamic_syminfo == NULL)
8741 error (_("Out of memory allocating %lu byte for dynamic symbol info\n"),
8742 (unsigned long) syminsz);
8746 dynamic_syminfo_nent = syminsz / sizeof (Elf_External_Syminfo);
8747 for (syminfo = dynamic_syminfo, extsym = extsyminfo;
8748 syminfo < dynamic_syminfo + dynamic_syminfo_nent;
8749 ++syminfo, ++extsym)
8751 syminfo->si_boundto = BYTE_GET (extsym->si_boundto);
8752 syminfo->si_flags = BYTE_GET (extsym->si_flags);
8759 if (do_dynamic && dynamic_addr)
8760 printf (_("\nDynamic section at offset 0x%lx contains %lu entries:\n"),
8761 dynamic_addr, (unsigned long) dynamic_nent);
8763 printf (_(" Tag Type Name/Value\n"));
8765 for (entry = dynamic_section;
8766 entry < dynamic_section + dynamic_nent;
8774 print_vma (entry->d_tag, FULL_HEX);
8775 dtype = get_dynamic_type (entry->d_tag);
8776 printf (" (%s)%*s", dtype,
8777 ((is_32bit_elf ? 27 : 19)
8778 - (int) strlen (dtype)),
8782 switch (entry->d_tag)
8786 print_dynamic_flags (entry->d_un.d_val);
8796 switch (entry->d_tag)
8799 printf (_("Auxiliary library"));
8803 printf (_("Filter library"));
8807 printf (_("Configuration file"));
8811 printf (_("Dependency audit library"));
8815 printf (_("Audit library"));
8819 if (VALID_DYNAMIC_NAME (entry->d_un.d_val))
8820 printf (": [%s]\n", GET_DYNAMIC_NAME (entry->d_un.d_val));
8824 print_vma (entry->d_un.d_val, PREFIX_HEX);
8833 printf (_("Flags:"));
8835 if (entry->d_un.d_val == 0)
8836 printf (_(" None\n"));
8839 unsigned long int val = entry->d_un.d_val;
8841 if (val & DTF_1_PARINIT)
8843 printf (" PARINIT");
8844 val ^= DTF_1_PARINIT;
8846 if (val & DTF_1_CONFEXP)
8848 printf (" CONFEXP");
8849 val ^= DTF_1_CONFEXP;
8852 printf (" %lx", val);
8861 printf (_("Flags:"));
8863 if (entry->d_un.d_val == 0)
8864 printf (_(" None\n"));
8867 unsigned long int val = entry->d_un.d_val;
8869 if (val & DF_P1_LAZYLOAD)
8871 printf (" LAZYLOAD");
8872 val ^= DF_P1_LAZYLOAD;
8874 if (val & DF_P1_GROUPPERM)
8876 printf (" GROUPPERM");
8877 val ^= DF_P1_GROUPPERM;
8880 printf (" %lx", val);
8889 printf (_("Flags:"));
8890 if (entry->d_un.d_val == 0)
8891 printf (_(" None\n"));
8894 unsigned long int val = entry->d_un.d_val;
8901 if (val & DF_1_GLOBAL)
8906 if (val & DF_1_GROUP)
8911 if (val & DF_1_NODELETE)
8913 printf (" NODELETE");
8914 val ^= DF_1_NODELETE;
8916 if (val & DF_1_LOADFLTR)
8918 printf (" LOADFLTR");
8919 val ^= DF_1_LOADFLTR;
8921 if (val & DF_1_INITFIRST)
8923 printf (" INITFIRST");
8924 val ^= DF_1_INITFIRST;
8926 if (val & DF_1_NOOPEN)
8931 if (val & DF_1_ORIGIN)
8936 if (val & DF_1_DIRECT)
8941 if (val & DF_1_TRANS)
8946 if (val & DF_1_INTERPOSE)
8948 printf (" INTERPOSE");
8949 val ^= DF_1_INTERPOSE;
8951 if (val & DF_1_NODEFLIB)
8953 printf (" NODEFLIB");
8954 val ^= DF_1_NODEFLIB;
8956 if (val & DF_1_NODUMP)
8961 if (val & DF_1_CONFALT)
8963 printf (" CONFALT");
8964 val ^= DF_1_CONFALT;
8966 if (val & DF_1_ENDFILTEE)
8968 printf (" ENDFILTEE");
8969 val ^= DF_1_ENDFILTEE;
8971 if (val & DF_1_DISPRELDNE)
8973 printf (" DISPRELDNE");
8974 val ^= DF_1_DISPRELDNE;
8976 if (val & DF_1_DISPRELPND)
8978 printf (" DISPRELPND");
8979 val ^= DF_1_DISPRELPND;
8981 if (val & DF_1_NODIRECT)
8983 printf (" NODIRECT");
8984 val ^= DF_1_NODIRECT;
8986 if (val & DF_1_IGNMULDEF)
8988 printf (" IGNMULDEF");
8989 val ^= DF_1_IGNMULDEF;
8991 if (val & DF_1_NOKSYMS)
8993 printf (" NOKSYMS");
8994 val ^= DF_1_NOKSYMS;
8996 if (val & DF_1_NOHDR)
9001 if (val & DF_1_EDITED)
9006 if (val & DF_1_NORELOC)
9008 printf (" NORELOC");
9009 val ^= DF_1_NORELOC;
9011 if (val & DF_1_SYMINTPOSE)
9013 printf (" SYMINTPOSE");
9014 val ^= DF_1_SYMINTPOSE;
9016 if (val & DF_1_GLOBAUDIT)
9018 printf (" GLOBAUDIT");
9019 val ^= DF_1_GLOBAUDIT;
9021 if (val & DF_1_SINGLETON)
9023 printf (" SINGLETON");
9024 val ^= DF_1_SINGLETON;
9027 printf (" %lx", val);
9034 dynamic_info[entry->d_tag] = entry->d_un.d_val;
9036 puts (get_dynamic_type (entry->d_un.d_val));
9056 dynamic_info[entry->d_tag] = entry->d_un.d_val;
9062 if (VALID_DYNAMIC_NAME (entry->d_un.d_val))
9063 name = GET_DYNAMIC_NAME (entry->d_un.d_val);
9069 switch (entry->d_tag)
9072 printf (_("Shared library: [%s]"), name);
9074 if (streq (name, program_interpreter))
9075 printf (_(" program interpreter"));
9079 printf (_("Library soname: [%s]"), name);
9083 printf (_("Library rpath: [%s]"), name);
9087 printf (_("Library runpath: [%s]"), name);
9091 print_vma (entry->d_un.d_val, PREFIX_HEX);
9096 print_vma (entry->d_un.d_val, PREFIX_HEX);
9109 dynamic_info[entry->d_tag] = entry->d_un.d_val;
9113 case DT_INIT_ARRAYSZ:
9114 case DT_FINI_ARRAYSZ:
9115 case DT_GNU_CONFLICTSZ:
9116 case DT_GNU_LIBLISTSZ:
9119 print_vma (entry->d_un.d_val, UNSIGNED);
9120 printf (_(" (bytes)\n"));
9130 print_vma (entry->d_un.d_val, UNSIGNED);
9143 if (entry->d_tag == DT_USED
9144 && VALID_DYNAMIC_NAME (entry->d_un.d_val))
9146 char * name = GET_DYNAMIC_NAME (entry->d_un.d_val);
9150 printf (_("Not needed object: [%s]\n"), name);
9155 print_vma (entry->d_un.d_val, PREFIX_HEX);
9161 /* The value of this entry is ignored. */
9166 case DT_GNU_PRELINKED:
9170 time_t atime = entry->d_un.d_val;
9172 tmp = gmtime (&atime);
9173 /* PR 17533 file: 041-1244816-0.004. */
9175 printf (_("<corrupt time val: %lx"),
9176 (unsigned long) atime);
9178 printf ("%04u-%02u-%02uT%02u:%02u:%02u\n",
9179 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
9180 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
9186 dynamic_info_DT_GNU_HASH = entry->d_un.d_val;
9189 print_vma (entry->d_un.d_val, PREFIX_HEX);
9195 if ((entry->d_tag >= DT_VERSYM) && (entry->d_tag <= DT_VERNEEDNUM))
9196 version_info[DT_VERSIONTAGIDX (entry->d_tag)] =
9201 switch (elf_header.e_machine)
9204 case EM_MIPS_RS3_LE:
9205 dynamic_section_mips_val (entry);
9208 dynamic_section_parisc_val (entry);
9211 dynamic_section_ia64_val (entry);
9214 print_vma (entry->d_un.d_val, PREFIX_HEX);
9226 get_ver_flags (unsigned int flags)
9228 static char buff[32];
9235 if (flags & VER_FLG_BASE)
9236 strcat (buff, "BASE ");
9238 if (flags & VER_FLG_WEAK)
9240 if (flags & VER_FLG_BASE)
9241 strcat (buff, "| ");
9243 strcat (buff, "WEAK ");
9246 if (flags & VER_FLG_INFO)
9248 if (flags & (VER_FLG_BASE|VER_FLG_WEAK))
9249 strcat (buff, "| ");
9251 strcat (buff, "INFO ");
9254 if (flags & ~(VER_FLG_BASE | VER_FLG_WEAK | VER_FLG_INFO))
9255 strcat (buff, _("| <unknown>"));
9260 /* Display the contents of the version sections. */
9263 process_version_sections (FILE * file)
9265 Elf_Internal_Shdr * section;
9272 for (i = 0, section = section_headers;
9273 i < elf_header.e_shnum;
9276 switch (section->sh_type)
9278 case SHT_GNU_verdef:
9280 Elf_External_Verdef * edefs;
9287 printf (_("\nVersion definition section '%s' contains %u entries:\n"),
9288 printable_section_name (section),
9291 printf (_(" Addr: 0x"));
9292 printf_vma (section->sh_addr);
9293 printf (_(" Offset: %#08lx Link: %u (%s)"),
9294 (unsigned long) section->sh_offset, section->sh_link,
9295 printable_section_name_from_index (section->sh_link));
9297 edefs = (Elf_External_Verdef *)
9298 get_data (NULL, file, section->sh_offset, 1,section->sh_size,
9299 _("version definition section"));
9302 endbuf = (char *) edefs + section->sh_size;
9304 for (idx = cnt = 0; cnt < section->sh_info; ++cnt)
9307 Elf_External_Verdef * edef;
9308 Elf_Internal_Verdef ent;
9309 Elf_External_Verdaux * eaux;
9310 Elf_Internal_Verdaux aux;
9314 /* Check for very large indicies. */
9315 if (idx > (size_t) (endbuf - (char *) edefs))
9318 vstart = ((char *) edefs) + idx;
9319 if (vstart + sizeof (*edef) > endbuf)
9322 edef = (Elf_External_Verdef *) vstart;
9324 ent.vd_version = BYTE_GET (edef->vd_version);
9325 ent.vd_flags = BYTE_GET (edef->vd_flags);
9326 ent.vd_ndx = BYTE_GET (edef->vd_ndx);
9327 ent.vd_cnt = BYTE_GET (edef->vd_cnt);
9328 ent.vd_hash = BYTE_GET (edef->vd_hash);
9329 ent.vd_aux = BYTE_GET (edef->vd_aux);
9330 ent.vd_next = BYTE_GET (edef->vd_next);
9332 printf (_(" %#06x: Rev: %d Flags: %s"),
9333 idx, ent.vd_version, get_ver_flags (ent.vd_flags));
9335 printf (_(" Index: %d Cnt: %d "),
9336 ent.vd_ndx, ent.vd_cnt);
9338 /* Check for overflow. */
9339 if (ent.vd_aux > (size_t) (endbuf - vstart))
9342 vstart += ent.vd_aux;
9344 eaux = (Elf_External_Verdaux *) vstart;
9346 aux.vda_name = BYTE_GET (eaux->vda_name);
9347 aux.vda_next = BYTE_GET (eaux->vda_next);
9349 if (VALID_DYNAMIC_NAME (aux.vda_name))
9350 printf (_("Name: %s\n"), GET_DYNAMIC_NAME (aux.vda_name));
9352 printf (_("Name index: %ld\n"), aux.vda_name);
9354 isum = idx + ent.vd_aux;
9356 for (j = 1; j < ent.vd_cnt; j++)
9358 /* Check for overflow. */
9359 if (aux.vda_next > (size_t) (endbuf - vstart))
9362 isum += aux.vda_next;
9363 vstart += aux.vda_next;
9365 eaux = (Elf_External_Verdaux *) vstart;
9366 if (vstart + sizeof (*eaux) > endbuf)
9369 aux.vda_name = BYTE_GET (eaux->vda_name);
9370 aux.vda_next = BYTE_GET (eaux->vda_next);
9372 if (VALID_DYNAMIC_NAME (aux.vda_name))
9373 printf (_(" %#06x: Parent %d: %s\n"),
9374 isum, j, GET_DYNAMIC_NAME (aux.vda_name));
9376 printf (_(" %#06x: Parent %d, name index: %ld\n"),
9377 isum, j, aux.vda_name);
9381 printf (_(" Version def aux past end of section\n"));
9383 /* PR 17531: file: id:000001,src:000172+005151,op:splice,rep:2. */
9384 if (idx + ent.vd_next <= idx)
9390 if (cnt < section->sh_info)
9391 printf (_(" Version definition past end of section\n"));
9397 case SHT_GNU_verneed:
9399 Elf_External_Verneed * eneed;
9406 printf (_("\nVersion needs section '%s' contains %u entries:\n"),
9407 printable_section_name (section), section->sh_info);
9409 printf (_(" Addr: 0x"));
9410 printf_vma (section->sh_addr);
9411 printf (_(" Offset: %#08lx Link: %u (%s)\n"),
9412 (unsigned long) section->sh_offset, section->sh_link,
9413 printable_section_name_from_index (section->sh_link));
9415 eneed = (Elf_External_Verneed *) get_data (NULL, file,
9416 section->sh_offset, 1,
9418 _("Version Needs section"));
9421 endbuf = (char *) eneed + section->sh_size;
9423 for (idx = cnt = 0; cnt < section->sh_info; ++cnt)
9425 Elf_External_Verneed * entry;
9426 Elf_Internal_Verneed ent;
9431 if (idx > (size_t) (endbuf - (char *) eneed))
9434 vstart = ((char *) eneed) + idx;
9435 if (vstart + sizeof (*entry) > endbuf)
9438 entry = (Elf_External_Verneed *) vstart;
9440 ent.vn_version = BYTE_GET (entry->vn_version);
9441 ent.vn_cnt = BYTE_GET (entry->vn_cnt);
9442 ent.vn_file = BYTE_GET (entry->vn_file);
9443 ent.vn_aux = BYTE_GET (entry->vn_aux);
9444 ent.vn_next = BYTE_GET (entry->vn_next);
9446 printf (_(" %#06x: Version: %d"), idx, ent.vn_version);
9448 if (VALID_DYNAMIC_NAME (ent.vn_file))
9449 printf (_(" File: %s"), GET_DYNAMIC_NAME (ent.vn_file));
9451 printf (_(" File: %lx"), ent.vn_file);
9453 printf (_(" Cnt: %d\n"), ent.vn_cnt);
9455 /* Check for overflow. */
9456 if (ent.vn_aux > (size_t) (endbuf - vstart))
9458 vstart += ent.vn_aux;
9460 for (j = 0, isum = idx + ent.vn_aux; j < ent.vn_cnt; ++j)
9462 Elf_External_Vernaux * eaux;
9463 Elf_Internal_Vernaux aux;
9465 if (vstart + sizeof (*eaux) > endbuf)
9467 eaux = (Elf_External_Vernaux *) vstart;
9469 aux.vna_hash = BYTE_GET (eaux->vna_hash);
9470 aux.vna_flags = BYTE_GET (eaux->vna_flags);
9471 aux.vna_other = BYTE_GET (eaux->vna_other);
9472 aux.vna_name = BYTE_GET (eaux->vna_name);
9473 aux.vna_next = BYTE_GET (eaux->vna_next);
9475 if (VALID_DYNAMIC_NAME (aux.vna_name))
9476 printf (_(" %#06x: Name: %s"),
9477 isum, GET_DYNAMIC_NAME (aux.vna_name));
9479 printf (_(" %#06x: Name index: %lx"),
9480 isum, aux.vna_name);
9482 printf (_(" Flags: %s Version: %d\n"),
9483 get_ver_flags (aux.vna_flags), aux.vna_other);
9485 /* Check for overflow. */
9486 if (aux.vna_next > (size_t) (endbuf - vstart)
9487 || (aux.vna_next == 0 && j < ent.vn_cnt - 1))
9489 warn (_("Invalid vna_next field of %lx\n"),
9494 isum += aux.vna_next;
9495 vstart += aux.vna_next;
9499 warn (_("Missing Version Needs auxillary information\n"));
9501 if (ent.vn_next == 0 && cnt < section->sh_info - 1)
9503 warn (_("Corrupt Version Needs structure - offset to next structure is zero with entries still left to be processed\n"));
9504 cnt = section->sh_info;
9510 if (cnt < section->sh_info)
9511 warn (_("Missing Version Needs information\n"));
9517 case SHT_GNU_versym:
9519 Elf_Internal_Shdr * link_section;
9522 unsigned char * edata;
9523 unsigned short * data;
9525 Elf_Internal_Sym * symbols;
9526 Elf_Internal_Shdr * string_sec;
9527 unsigned long num_syms;
9530 if (section->sh_link >= elf_header.e_shnum)
9533 link_section = section_headers + section->sh_link;
9534 total = section->sh_size / sizeof (Elf_External_Versym);
9536 if (link_section->sh_link >= elf_header.e_shnum)
9541 symbols = GET_ELF_SYMBOLS (file, link_section, & num_syms);
9542 if (symbols == NULL)
9545 string_sec = section_headers + link_section->sh_link;
9547 strtab = (char *) get_data (NULL, file, string_sec->sh_offset, 1,
9548 string_sec->sh_size,
9549 _("version string table"));
9556 printf (_("\nVersion symbols section '%s' contains %lu entries:\n"),
9557 printable_section_name (section), (unsigned long) total);
9559 printf (_(" Addr: "));
9560 printf_vma (section->sh_addr);
9561 printf (_(" Offset: %#08lx Link: %u (%s)\n"),
9562 (unsigned long) section->sh_offset, section->sh_link,
9563 printable_section_name (link_section));
9565 off = offset_from_vma (file,
9566 version_info[DT_VERSIONTAGIDX (DT_VERSYM)],
9567 total * sizeof (short));
9568 edata = (unsigned char *) get_data (NULL, file, off, total,
9570 _("version symbol data"));
9578 data = (short unsigned int *) cmalloc (total, sizeof (short));
9580 for (cnt = total; cnt --;)
9581 data[cnt] = byte_get (edata + cnt * sizeof (short),
9586 for (cnt = 0; cnt < total; cnt += 4)
9589 int check_def, check_need;
9592 printf (" %03x:", cnt);
9594 for (j = 0; (j < 4) && (cnt + j) < total; ++j)
9595 switch (data[cnt + j])
9598 fputs (_(" 0 (*local*) "), stdout);
9602 fputs (_(" 1 (*global*) "), stdout);
9606 nn = printf ("%4x%c", data[cnt + j] & VERSYM_VERSION,
9607 data[cnt + j] & VERSYM_HIDDEN ? 'h' : ' ');
9609 /* If this index value is greater than the size of the symbols
9610 array, break to avoid an out-of-bounds read. */
9611 if ((unsigned long)(cnt + j) >= num_syms)
9613 warn (_("invalid index into symbol array\n"));
9619 if (symbols[cnt + j].st_shndx >= elf_header.e_shnum
9620 || section_headers[symbols[cnt + j].st_shndx].sh_type
9623 if (symbols[cnt + j].st_shndx == SHN_UNDEF)
9630 && version_info[DT_VERSIONTAGIDX (DT_VERNEED)])
9632 Elf_Internal_Verneed ivn;
9633 unsigned long offset;
9635 offset = offset_from_vma
9636 (file, version_info[DT_VERSIONTAGIDX (DT_VERNEED)],
9637 sizeof (Elf_External_Verneed));
9641 Elf_Internal_Vernaux ivna;
9642 Elf_External_Verneed evn;
9643 Elf_External_Vernaux evna;
9644 unsigned long a_off;
9646 if (get_data (&evn, file, offset, sizeof (evn), 1,
9647 _("version need")) == NULL)
9650 ivn.vn_aux = BYTE_GET (evn.vn_aux);
9651 ivn.vn_next = BYTE_GET (evn.vn_next);
9653 a_off = offset + ivn.vn_aux;
9657 if (get_data (&evna, file, a_off, sizeof (evna),
9658 1, _("version need aux (2)")) == NULL)
9665 ivna.vna_next = BYTE_GET (evna.vna_next);
9666 ivna.vna_other = BYTE_GET (evna.vna_other);
9669 a_off += ivna.vna_next;
9671 while (ivna.vna_other != data[cnt + j]
9672 && ivna.vna_next != 0);
9674 if (ivna.vna_other == data[cnt + j])
9676 ivna.vna_name = BYTE_GET (evna.vna_name);
9678 if (ivna.vna_name >= string_sec->sh_size)
9679 name = _("*invalid*");
9681 name = strtab + ivna.vna_name;
9682 nn += printf ("(%s%-*s",
9684 12 - (int) strlen (name),
9690 offset += ivn.vn_next;
9692 while (ivn.vn_next);
9695 if (check_def && data[cnt + j] != 0x8001
9696 && version_info[DT_VERSIONTAGIDX (DT_VERDEF)])
9698 Elf_Internal_Verdef ivd;
9699 Elf_External_Verdef evd;
9700 unsigned long offset;
9702 offset = offset_from_vma
9703 (file, version_info[DT_VERSIONTAGIDX (DT_VERDEF)],
9708 if (get_data (&evd, file, offset, sizeof (evd), 1,
9709 _("version def")) == NULL)
9712 /* PR 17531: file: 046-1082287-0.004. */
9713 ivd.vd_ndx = (data[cnt + j] & VERSYM_VERSION) + 1;
9718 ivd.vd_next = BYTE_GET (evd.vd_next);
9719 ivd.vd_ndx = BYTE_GET (evd.vd_ndx);
9722 offset += ivd.vd_next;
9724 while (ivd.vd_ndx != (data[cnt + j] & VERSYM_VERSION)
9725 && ivd.vd_next != 0);
9727 if (ivd.vd_ndx == (data[cnt + j] & VERSYM_VERSION))
9729 Elf_External_Verdaux evda;
9730 Elf_Internal_Verdaux ivda;
9732 ivd.vd_aux = BYTE_GET (evd.vd_aux);
9734 if (get_data (&evda, file,
9735 offset - ivd.vd_next + ivd.vd_aux,
9737 _("version def aux")) == NULL)
9740 ivda.vda_name = BYTE_GET (evda.vda_name);
9742 if (ivda.vda_name >= string_sec->sh_size)
9743 name = _("*invalid*");
9745 name = strtab + ivda.vda_name;
9746 nn += printf ("(%s%-*s",
9748 12 - (int) strlen (name),
9754 printf ("%*c", 18 - nn, ' ');
9772 printf (_("\nNo version information found in this file.\n"));
9778 get_symbol_binding (unsigned int binding)
9780 static char buff[32];
9784 case STB_LOCAL: return "LOCAL";
9785 case STB_GLOBAL: return "GLOBAL";
9786 case STB_WEAK: return "WEAK";
9788 if (binding >= STB_LOPROC && binding <= STB_HIPROC)
9789 snprintf (buff, sizeof (buff), _("<processor specific>: %d"),
9791 else if (binding >= STB_LOOS && binding <= STB_HIOS)
9793 if (binding == STB_GNU_UNIQUE
9794 && (elf_header.e_ident[EI_OSABI] == ELFOSABI_GNU
9795 /* GNU is still using the default value 0. */
9796 || elf_header.e_ident[EI_OSABI] == ELFOSABI_NONE))
9798 snprintf (buff, sizeof (buff), _("<OS specific>: %d"), binding);
9801 snprintf (buff, sizeof (buff), _("<unknown>: %d"), binding);
9807 get_symbol_type (unsigned int type)
9809 static char buff[32];
9813 case STT_NOTYPE: return "NOTYPE";
9814 case STT_OBJECT: return "OBJECT";
9815 case STT_FUNC: return "FUNC";
9816 case STT_SECTION: return "SECTION";
9817 case STT_FILE: return "FILE";
9818 case STT_COMMON: return "COMMON";
9819 case STT_TLS: return "TLS";
9820 case STT_RELC: return "RELC";
9821 case STT_SRELC: return "SRELC";
9823 if (type >= STT_LOPROC && type <= STT_HIPROC)
9825 if (elf_header.e_machine == EM_ARM && type == STT_ARM_TFUNC)
9826 return "THUMB_FUNC";
9828 if (elf_header.e_machine == EM_SPARCV9 && type == STT_REGISTER)
9831 if (elf_header.e_machine == EM_PARISC && type == STT_PARISC_MILLI)
9832 return "PARISC_MILLI";
9834 snprintf (buff, sizeof (buff), _("<processor specific>: %d"), type);
9836 else if (type >= STT_LOOS && type <= STT_HIOS)
9838 if (elf_header.e_machine == EM_PARISC)
9840 if (type == STT_HP_OPAQUE)
9842 if (type == STT_HP_STUB)
9846 if (type == STT_GNU_IFUNC
9847 && (elf_header.e_ident[EI_OSABI] == ELFOSABI_GNU
9848 || elf_header.e_ident[EI_OSABI] == ELFOSABI_FREEBSD
9849 /* GNU is still using the default value 0. */
9850 || elf_header.e_ident[EI_OSABI] == ELFOSABI_NONE))
9853 snprintf (buff, sizeof (buff), _("<OS specific>: %d"), type);
9856 snprintf (buff, sizeof (buff), _("<unknown>: %d"), type);
9862 get_symbol_visibility (unsigned int visibility)
9866 case STV_DEFAULT: return "DEFAULT";
9867 case STV_INTERNAL: return "INTERNAL";
9868 case STV_HIDDEN: return "HIDDEN";
9869 case STV_PROTECTED: return "PROTECTED";
9871 error (_("Unrecognized visibility value: %u"), visibility);
9872 return _("<unknown>");
9877 get_mips_symbol_other (unsigned int other)
9889 case STO_MICROMIPS | STO_MIPS_PIC:
9890 return "MICROMIPS, MIPS PIC";
9899 get_ia64_symbol_other (unsigned int other)
9903 static char res[32];
9907 /* Function types is for images and .STB files only. */
9908 switch (elf_header.e_type)
9912 switch (VMS_ST_FUNC_TYPE (other))
9914 case VMS_SFT_CODE_ADDR:
9915 strcat (res, " CA");
9917 case VMS_SFT_SYMV_IDX:
9918 strcat (res, " VEC");
9921 strcat (res, " FD");
9923 case VMS_SFT_RESERVE:
9924 strcat (res, " RSV");
9927 warn (_("Unrecognized IA64 VMS ST Function type: %d\n"),
9928 VMS_ST_FUNC_TYPE (other));
9929 strcat (res, " <unknown>");
9936 switch (VMS_ST_LINKAGE (other))
9938 case VMS_STL_IGNORE:
9939 strcat (res, " IGN");
9941 case VMS_STL_RESERVE:
9942 strcat (res, " RSV");
9945 strcat (res, " STD");
9948 strcat (res, " LNK");
9951 warn (_("Unrecognized IA64 VMS ST Linkage: %d\n"),
9952 VMS_ST_LINKAGE (other));
9953 strcat (res, " <unknown>");
9966 get_ppc64_symbol_other (unsigned int other)
9968 if (PPC64_LOCAL_ENTRY_OFFSET (other) != 0)
9970 static char buf[32];
9971 snprintf (buf, sizeof buf, _("<localentry>: %d"),
9972 PPC64_LOCAL_ENTRY_OFFSET (other));
9979 get_symbol_other (unsigned int other)
9981 const char * result = NULL;
9982 static char buff [32];
9987 switch (elf_header.e_machine)
9990 result = get_mips_symbol_other (other);
9993 result = get_ia64_symbol_other (other);
9996 result = get_ppc64_symbol_other (other);
10005 snprintf (buff, sizeof buff, _("<other>: %x"), other);
10009 static const char *
10010 get_symbol_index_type (unsigned int type)
10012 static char buff[32];
10016 case SHN_UNDEF: return "UND";
10017 case SHN_ABS: return "ABS";
10018 case SHN_COMMON: return "COM";
10020 if (type == SHN_IA_64_ANSI_COMMON
10021 && elf_header.e_machine == EM_IA_64
10022 && elf_header.e_ident[EI_OSABI] == ELFOSABI_HPUX)
10024 else if ((elf_header.e_machine == EM_X86_64
10025 || elf_header.e_machine == EM_L1OM
10026 || elf_header.e_machine == EM_K1OM)
10027 && type == SHN_X86_64_LCOMMON)
10028 return "LARGE_COM";
10029 else if ((type == SHN_MIPS_SCOMMON
10030 && elf_header.e_machine == EM_MIPS)
10031 || (type == SHN_TIC6X_SCOMMON
10032 && elf_header.e_machine == EM_TI_C6000))
10034 else if (type == SHN_MIPS_SUNDEFINED
10035 && elf_header.e_machine == EM_MIPS)
10037 else if (type >= SHN_LOPROC && type <= SHN_HIPROC)
10038 sprintf (buff, "PRC[0x%04x]", type & 0xffff);
10039 else if (type >= SHN_LOOS && type <= SHN_HIOS)
10040 sprintf (buff, "OS [0x%04x]", type & 0xffff);
10041 else if (type >= SHN_LORESERVE)
10042 sprintf (buff, "RSV[0x%04x]", type & 0xffff);
10043 else if (type >= elf_header.e_shnum)
10044 sprintf (buff, _("bad section index[%3d]"), type);
10046 sprintf (buff, "%3d", type);
10054 get_dynamic_data (FILE * file, size_t number, unsigned int ent_size)
10056 unsigned char * e_data;
10059 /* Be kind to memory chekers (eg valgrind, address sanitizer) by not
10060 attempting to allocate memory when the read is bound to fail. */
10061 if (ent_size * number > current_file_size)
10063 error (_("Invalid number of dynamic entries: %lu\n"),
10064 (unsigned long) number);
10068 e_data = (unsigned char *) cmalloc (number, ent_size);
10069 if (e_data == NULL)
10071 error (_("Out of memory reading %lu dynamic entries\n"),
10072 (unsigned long) number);
10076 if (fread (e_data, ent_size, number, file) != number)
10078 error (_("Unable to read in %lu bytes of dynamic data\n"),
10079 (unsigned long) (number * ent_size));
10084 i_data = (bfd_vma *) cmalloc (number, sizeof (*i_data));
10085 if (i_data == NULL)
10087 error (_("Out of memory allocating space for %lu dynamic entries\n"),
10088 (unsigned long) number);
10094 i_data[number] = byte_get (e_data + number * ent_size, ent_size);
10102 print_dynamic_symbol (bfd_vma si, unsigned long hn)
10104 Elf_Internal_Sym * psym;
10107 n = print_vma (si, DEC_5);
10109 fputs (&" "[n], stdout);
10110 printf (" %3lu: ", hn);
10112 if (dynamic_symbols == NULL || si >= num_dynamic_syms)
10114 printf (_("<No info available for dynamic symbol number %lu>\n"),
10115 (unsigned long) si);
10119 psym = dynamic_symbols + si;
10120 print_vma (psym->st_value, LONG_HEX);
10122 print_vma (psym->st_size, DEC_5);
10124 printf (" %-7s", get_symbol_type (ELF_ST_TYPE (psym->st_info)));
10125 printf (" %-6s", get_symbol_binding (ELF_ST_BIND (psym->st_info)));
10126 printf (" %-7s", get_symbol_visibility (ELF_ST_VISIBILITY (psym->st_other)));
10127 /* Check to see if any other bits in the st_other field are set.
10128 Note - displaying this information disrupts the layout of the
10129 table being generated, but for the moment this case is very
10131 if (psym->st_other ^ ELF_ST_VISIBILITY (psym->st_other))
10132 printf (" [%s] ", get_symbol_other (psym->st_other ^ ELF_ST_VISIBILITY (psym->st_other)));
10133 printf (" %3.3s ", get_symbol_index_type (psym->st_shndx));
10134 if (VALID_DYNAMIC_NAME (psym->st_name))
10135 print_symbol (25, GET_DYNAMIC_NAME (psym->st_name));
10137 printf (_(" <corrupt: %14ld>"), psym->st_name);
10141 static const char *
10142 get_symbol_version_string (FILE *file, int is_dynsym,
10143 const char *strtab,
10144 unsigned long int strtab_size,
10145 unsigned int si, Elf_Internal_Sym *psym,
10146 enum versioned_symbol_info *sym_info,
10147 unsigned short *vna_other)
10149 const char *version_string = NULL;
10152 && version_info[DT_VERSIONTAGIDX (DT_VERSYM)] != 0)
10154 unsigned char data[2];
10155 unsigned short vers_data;
10156 unsigned long offset;
10160 offset = offset_from_vma
10161 (file, version_info[DT_VERSIONTAGIDX (DT_VERSYM)],
10162 sizeof data + si * sizeof (vers_data));
10164 if (get_data (&data, file, offset + si * sizeof (vers_data),
10165 sizeof (data), 1, _("version data")) == NULL)
10168 vers_data = byte_get (data, 2);
10170 is_nobits = (section_headers != NULL
10171 && psym->st_shndx < elf_header.e_shnum
10172 && section_headers[psym->st_shndx].sh_type
10175 check_def = (psym->st_shndx != SHN_UNDEF);
10177 if ((vers_data & VERSYM_HIDDEN) || vers_data > 1)
10179 if (version_info[DT_VERSIONTAGIDX (DT_VERNEED)]
10180 && (is_nobits || ! check_def))
10182 Elf_External_Verneed evn;
10183 Elf_Internal_Verneed ivn;
10184 Elf_Internal_Vernaux ivna;
10186 /* We must test both. */
10187 offset = offset_from_vma
10188 (file, version_info[DT_VERSIONTAGIDX (DT_VERNEED)],
10193 unsigned long vna_off;
10195 if (get_data (&evn, file, offset, sizeof (evn), 1,
10196 _("version need")) == NULL)
10199 ivna.vna_other = 0;
10204 ivn.vn_aux = BYTE_GET (evn.vn_aux);
10205 ivn.vn_next = BYTE_GET (evn.vn_next);
10207 vna_off = offset + ivn.vn_aux;
10211 Elf_External_Vernaux evna;
10213 if (get_data (&evna, file, vna_off,
10215 _("version need aux (3)")) == NULL)
10218 ivna.vna_other = 0;
10223 ivna.vna_other = BYTE_GET (evna.vna_other);
10224 ivna.vna_next = BYTE_GET (evna.vna_next);
10225 ivna.vna_name = BYTE_GET (evna.vna_name);
10228 vna_off += ivna.vna_next;
10230 while (ivna.vna_other != vers_data
10231 && ivna.vna_next != 0);
10233 if (ivna.vna_other == vers_data)
10236 offset += ivn.vn_next;
10238 while (ivn.vn_next != 0);
10240 if (ivna.vna_other == vers_data)
10242 *sym_info = symbol_undefined;
10243 *vna_other = ivna.vna_other;
10244 version_string = (ivna.vna_name < strtab_size
10245 ? strtab + ivna.vna_name
10249 else if (! is_nobits)
10250 error (_("bad dynamic symbol\n"));
10257 if (vers_data != 0x8001
10258 && version_info[DT_VERSIONTAGIDX (DT_VERDEF)])
10260 Elf_Internal_Verdef ivd;
10261 Elf_Internal_Verdaux ivda;
10262 Elf_External_Verdaux evda;
10265 off = offset_from_vma
10267 version_info[DT_VERSIONTAGIDX (DT_VERDEF)],
10268 sizeof (Elf_External_Verdef));
10272 Elf_External_Verdef evd;
10274 if (get_data (&evd, file, off, sizeof (evd),
10275 1, _("version def")) == NULL)
10283 ivd.vd_ndx = BYTE_GET (evd.vd_ndx);
10284 ivd.vd_aux = BYTE_GET (evd.vd_aux);
10285 ivd.vd_next = BYTE_GET (evd.vd_next);
10288 off += ivd.vd_next;
10290 while (ivd.vd_ndx != (vers_data & VERSYM_VERSION)
10291 && ivd.vd_next != 0);
10293 off -= ivd.vd_next;
10296 if (get_data (&evda, file, off, sizeof (evda),
10297 1, _("version def aux")) == NULL)
10298 return version_string;
10300 ivda.vda_name = BYTE_GET (evda.vda_name);
10302 if (psym->st_name != ivda.vda_name)
10304 *sym_info = ((vers_data & VERSYM_HIDDEN) != 0
10305 ? symbol_hidden : symbol_public);
10306 version_string = (ivda.vda_name < strtab_size
10307 ? strtab + ivda.vda_name
10314 return version_string;
10317 /* Dump the symbol table. */
10319 process_symbol_table (FILE * file)
10321 Elf_Internal_Shdr * section;
10322 bfd_size_type nbuckets = 0;
10323 bfd_size_type nchains = 0;
10324 bfd_vma * buckets = NULL;
10325 bfd_vma * chains = NULL;
10326 bfd_vma ngnubuckets = 0;
10327 bfd_vma * gnubuckets = NULL;
10328 bfd_vma * gnuchains = NULL;
10329 bfd_vma gnusymidx = 0;
10330 bfd_size_type ngnuchains = 0;
10332 if (!do_syms && !do_dyn_syms && !do_histogram)
10335 if (dynamic_info[DT_HASH]
10337 || (do_using_dynamic
10339 && dynamic_strings != NULL)))
10341 unsigned char nb[8];
10342 unsigned char nc[8];
10343 unsigned int hash_ent_size = 4;
10345 if ((elf_header.e_machine == EM_ALPHA
10346 || elf_header.e_machine == EM_S390
10347 || elf_header.e_machine == EM_S390_OLD)
10348 && elf_header.e_ident[EI_CLASS] == ELFCLASS64)
10352 (archive_file_offset
10353 + offset_from_vma (file, dynamic_info[DT_HASH],
10354 sizeof nb + sizeof nc)),
10357 error (_("Unable to seek to start of dynamic information\n"));
10361 if (fread (nb, hash_ent_size, 1, file) != 1)
10363 error (_("Failed to read in number of buckets\n"));
10367 if (fread (nc, hash_ent_size, 1, file) != 1)
10369 error (_("Failed to read in number of chains\n"));
10373 nbuckets = byte_get (nb, hash_ent_size);
10374 nchains = byte_get (nc, hash_ent_size);
10376 buckets = get_dynamic_data (file, nbuckets, hash_ent_size);
10377 chains = get_dynamic_data (file, nchains, hash_ent_size);
10380 if (buckets == NULL || chains == NULL)
10382 if (do_using_dynamic)
10393 if (dynamic_info_DT_GNU_HASH
10395 || (do_using_dynamic
10397 && dynamic_strings != NULL)))
10399 unsigned char nb[16];
10400 bfd_vma i, maxchain = 0xffffffff, bitmaskwords;
10401 bfd_vma buckets_vma;
10404 (archive_file_offset
10405 + offset_from_vma (file, dynamic_info_DT_GNU_HASH,
10409 error (_("Unable to seek to start of dynamic information\n"));
10413 if (fread (nb, 16, 1, file) != 1)
10415 error (_("Failed to read in number of buckets\n"));
10419 ngnubuckets = byte_get (nb, 4);
10420 gnusymidx = byte_get (nb + 4, 4);
10421 bitmaskwords = byte_get (nb + 8, 4);
10422 buckets_vma = dynamic_info_DT_GNU_HASH + 16;
10424 buckets_vma += bitmaskwords * 4;
10426 buckets_vma += bitmaskwords * 8;
10429 (archive_file_offset
10430 + offset_from_vma (file, buckets_vma, 4)),
10433 error (_("Unable to seek to start of dynamic information\n"));
10437 gnubuckets = get_dynamic_data (file, ngnubuckets, 4);
10439 if (gnubuckets == NULL)
10442 for (i = 0; i < ngnubuckets; i++)
10443 if (gnubuckets[i] != 0)
10445 if (gnubuckets[i] < gnusymidx)
10448 if (maxchain == 0xffffffff || gnubuckets[i] > maxchain)
10449 maxchain = gnubuckets[i];
10452 if (maxchain == 0xffffffff)
10455 maxchain -= gnusymidx;
10458 (archive_file_offset
10459 + offset_from_vma (file, buckets_vma
10460 + 4 * (ngnubuckets + maxchain), 4)),
10463 error (_("Unable to seek to start of dynamic information\n"));
10469 if (fread (nb, 4, 1, file) != 1)
10471 error (_("Failed to determine last chain length\n"));
10475 if (maxchain + 1 == 0)
10480 while ((byte_get (nb, 4) & 1) == 0);
10483 (archive_file_offset
10484 + offset_from_vma (file, buckets_vma + 4 * ngnubuckets, 4)),
10487 error (_("Unable to seek to start of dynamic information\n"));
10491 gnuchains = get_dynamic_data (file, maxchain, 4);
10492 ngnuchains = maxchain;
10495 if (gnuchains == NULL)
10500 if (do_using_dynamic)
10505 if ((dynamic_info[DT_HASH] || dynamic_info_DT_GNU_HASH)
10507 && do_using_dynamic
10508 && dynamic_strings != NULL
10509 && dynamic_symbols != NULL)
10513 if (dynamic_info[DT_HASH])
10517 printf (_("\nSymbol table for image:\n"));
10519 printf (_(" Num Buc: Value Size Type Bind Vis Ndx Name\n"));
10521 printf (_(" Num Buc: Value Size Type Bind Vis Ndx Name\n"));
10523 for (hn = 0; hn < nbuckets; hn++)
10528 for (si = buckets[hn]; si < nchains && si > 0; si = chains[si])
10529 print_dynamic_symbol (si, hn);
10533 if (dynamic_info_DT_GNU_HASH)
10535 printf (_("\nSymbol table of `.gnu.hash' for image:\n"));
10537 printf (_(" Num Buc: Value Size Type Bind Vis Ndx Name\n"));
10539 printf (_(" Num Buc: Value Size Type Bind Vis Ndx Name\n"));
10541 for (hn = 0; hn < ngnubuckets; ++hn)
10542 if (gnubuckets[hn] != 0)
10544 bfd_vma si = gnubuckets[hn];
10545 bfd_vma off = si - gnusymidx;
10549 print_dynamic_symbol (si, hn);
10552 while (off < ngnuchains && (gnuchains[off++] & 1) == 0);
10556 else if ((do_dyn_syms || (do_syms && !do_using_dynamic))
10557 && section_headers != NULL)
10561 for (i = 0, section = section_headers;
10562 i < elf_header.e_shnum;
10566 char * strtab = NULL;
10567 unsigned long int strtab_size = 0;
10568 Elf_Internal_Sym * symtab;
10569 Elf_Internal_Sym * psym;
10570 unsigned long num_syms;
10572 if ((section->sh_type != SHT_SYMTAB
10573 && section->sh_type != SHT_DYNSYM)
10575 && section->sh_type == SHT_SYMTAB))
10578 if (section->sh_entsize == 0)
10580 printf (_("\nSymbol table '%s' has a sh_entsize of zero!\n"),
10581 printable_section_name (section));
10585 printf (_("\nSymbol table '%s' contains %lu entries:\n"),
10586 printable_section_name (section),
10587 (unsigned long) (section->sh_size / section->sh_entsize));
10590 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
10592 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
10594 symtab = GET_ELF_SYMBOLS (file, section, & num_syms);
10595 if (symtab == NULL)
10598 if (section->sh_link == elf_header.e_shstrndx)
10600 strtab = string_table;
10601 strtab_size = string_table_length;
10603 else if (section->sh_link < elf_header.e_shnum)
10605 Elf_Internal_Shdr * string_sec;
10607 string_sec = section_headers + section->sh_link;
10609 strtab = (char *) get_data (NULL, file, string_sec->sh_offset,
10610 1, string_sec->sh_size,
10611 _("string table"));
10612 strtab_size = strtab != NULL ? string_sec->sh_size : 0;
10615 for (si = 0, psym = symtab; si < num_syms; si++, psym++)
10617 const char *version_string;
10618 enum versioned_symbol_info sym_info;
10619 unsigned short vna_other;
10621 printf ("%6d: ", si);
10622 print_vma (psym->st_value, LONG_HEX);
10624 print_vma (psym->st_size, DEC_5);
10625 printf (" %-7s", get_symbol_type (ELF_ST_TYPE (psym->st_info)));
10626 printf (" %-6s", get_symbol_binding (ELF_ST_BIND (psym->st_info)));
10627 printf (" %-7s", get_symbol_visibility (ELF_ST_VISIBILITY (psym->st_other)));
10628 /* Check to see if any other bits in the st_other field are set.
10629 Note - displaying this information disrupts the layout of the
10630 table being generated, but for the moment this case is very rare. */
10631 if (psym->st_other ^ ELF_ST_VISIBILITY (psym->st_other))
10632 printf (" [%s] ", get_symbol_other (psym->st_other ^ ELF_ST_VISIBILITY (psym->st_other)));
10633 printf (" %4s ", get_symbol_index_type (psym->st_shndx));
10634 print_symbol (25, psym->st_name < strtab_size
10635 ? strtab + psym->st_name : _("<corrupt>"));
10638 = get_symbol_version_string (file,
10639 section->sh_type == SHT_DYNSYM,
10640 strtab, strtab_size, si,
10641 psym, &sym_info, &vna_other);
10642 if (version_string)
10644 if (sym_info == symbol_undefined)
10645 printf ("@%s (%d)", version_string, vna_other);
10647 printf (sym_info == symbol_hidden ? "@%s" : "@@%s",
10655 if (strtab != string_table)
10661 (_("\nDynamic symbol information is not available for displaying symbols.\n"));
10663 if (do_histogram && buckets != NULL)
10665 unsigned long * lengths;
10666 unsigned long * counts;
10669 unsigned long maxlength = 0;
10670 unsigned long nzero_counts = 0;
10671 unsigned long nsyms = 0;
10673 printf (_("\nHistogram for bucket list length (total of %lu buckets):\n"),
10674 (unsigned long) nbuckets);
10676 lengths = (unsigned long *) calloc (nbuckets, sizeof (*lengths));
10677 if (lengths == NULL)
10679 error (_("Out of memory allocating space for histogram buckets\n"));
10683 printf (_(" Length Number %% of total Coverage\n"));
10684 for (hn = 0; hn < nbuckets; ++hn)
10686 for (si = buckets[hn]; si > 0 && si < nchains; si = chains[si])
10689 if (maxlength < ++lengths[hn])
10692 /* PR binutils/17531: A corrupt binary could contain broken
10693 histogram data. Do not go into an infinite loop trying
10695 if (chains[si] == si)
10697 error (_("histogram chain links to itself\n"));
10703 counts = (unsigned long *) calloc (maxlength + 1, sizeof (*counts));
10704 if (counts == NULL)
10707 error (_("Out of memory allocating space for histogram counts\n"));
10711 for (hn = 0; hn < nbuckets; ++hn)
10712 ++counts[lengths[hn]];
10717 printf (" 0 %-10lu (%5.1f%%)\n",
10718 counts[0], (counts[0] * 100.0) / nbuckets);
10719 for (i = 1; i <= maxlength; ++i)
10721 nzero_counts += counts[i] * i;
10722 printf ("%7lu %-10lu (%5.1f%%) %5.1f%%\n",
10723 i, counts[i], (counts[i] * 100.0) / nbuckets,
10724 (nzero_counts * 100.0) / nsyms);
10732 if (buckets != NULL)
10738 if (do_histogram && gnubuckets != NULL)
10740 unsigned long * lengths;
10741 unsigned long * counts;
10743 unsigned long maxlength = 0;
10744 unsigned long nzero_counts = 0;
10745 unsigned long nsyms = 0;
10747 printf (_("\nHistogram for `.gnu.hash' bucket list length (total of %lu buckets):\n"),
10748 (unsigned long) ngnubuckets);
10750 lengths = (unsigned long *) calloc (ngnubuckets, sizeof (*lengths));
10751 if (lengths == NULL)
10753 error (_("Out of memory allocating space for gnu histogram buckets\n"));
10757 printf (_(" Length Number %% of total Coverage\n"));
10759 for (hn = 0; hn < ngnubuckets; ++hn)
10760 if (gnubuckets[hn] != 0)
10762 bfd_vma off, length = 1;
10764 for (off = gnubuckets[hn] - gnusymidx;
10765 /* PR 17531 file: 010-77222-0.004. */
10766 off < ngnuchains && (gnuchains[off] & 1) == 0;
10769 lengths[hn] = length;
10770 if (length > maxlength)
10771 maxlength = length;
10775 counts = (unsigned long *) calloc (maxlength + 1, sizeof (*counts));
10776 if (counts == NULL)
10779 error (_("Out of memory allocating space for gnu histogram counts\n"));
10783 for (hn = 0; hn < ngnubuckets; ++hn)
10784 ++counts[lengths[hn]];
10786 if (ngnubuckets > 0)
10789 printf (" 0 %-10lu (%5.1f%%)\n",
10790 counts[0], (counts[0] * 100.0) / ngnubuckets);
10791 for (j = 1; j <= maxlength; ++j)
10793 nzero_counts += counts[j] * j;
10794 printf ("%7lu %-10lu (%5.1f%%) %5.1f%%\n",
10795 j, counts[j], (counts[j] * 100.0) / ngnubuckets,
10796 (nzero_counts * 100.0) / nsyms);
10810 process_syminfo (FILE * file ATTRIBUTE_UNUSED)
10814 if (dynamic_syminfo == NULL
10816 /* No syminfo, this is ok. */
10819 /* There better should be a dynamic symbol section. */
10820 if (dynamic_symbols == NULL || dynamic_strings == NULL)
10824 printf (_("\nDynamic info segment at offset 0x%lx contains %d entries:\n"),
10825 dynamic_syminfo_offset, dynamic_syminfo_nent);
10827 printf (_(" Num: Name BoundTo Flags\n"));
10828 for (i = 0; i < dynamic_syminfo_nent; ++i)
10830 unsigned short int flags = dynamic_syminfo[i].si_flags;
10832 printf ("%4d: ", i);
10833 if (i >= num_dynamic_syms)
10834 printf (_("<corrupt index>"));
10835 else if (VALID_DYNAMIC_NAME (dynamic_symbols[i].st_name))
10836 print_symbol (30, GET_DYNAMIC_NAME (dynamic_symbols[i].st_name));
10838 printf (_("<corrupt: %19ld>"), dynamic_symbols[i].st_name);
10841 switch (dynamic_syminfo[i].si_boundto)
10843 case SYMINFO_BT_SELF:
10844 fputs ("SELF ", stdout);
10846 case SYMINFO_BT_PARENT:
10847 fputs ("PARENT ", stdout);
10850 if (dynamic_syminfo[i].si_boundto > 0
10851 && dynamic_syminfo[i].si_boundto < dynamic_nent
10852 && VALID_DYNAMIC_NAME (dynamic_section[dynamic_syminfo[i].si_boundto].d_un.d_val))
10854 print_symbol (10, GET_DYNAMIC_NAME (dynamic_section[dynamic_syminfo[i].si_boundto].d_un.d_val));
10858 printf ("%-10d ", dynamic_syminfo[i].si_boundto);
10862 if (flags & SYMINFO_FLG_DIRECT)
10863 printf (" DIRECT");
10864 if (flags & SYMINFO_FLG_PASSTHRU)
10865 printf (" PASSTHRU");
10866 if (flags & SYMINFO_FLG_COPY)
10868 if (flags & SYMINFO_FLG_LAZYLOAD)
10869 printf (" LAZYLOAD");
10877 /* Check to see if the given reloc needs to be handled in a target specific
10878 manner. If so then process the reloc and return TRUE otherwise return
10882 target_specific_reloc_handling (Elf_Internal_Rela * reloc,
10883 unsigned char * start,
10884 Elf_Internal_Sym * symtab)
10886 unsigned int reloc_type = get_reloc_type (reloc->r_info);
10888 switch (elf_header.e_machine)
10891 case EM_MSP430_OLD:
10893 static Elf_Internal_Sym * saved_sym = NULL;
10895 switch (reloc_type)
10897 case 10: /* R_MSP430_SYM_DIFF */
10898 if (uses_msp430x_relocs ())
10900 case 21: /* R_MSP430X_SYM_DIFF */
10901 saved_sym = symtab + get_reloc_symindex (reloc->r_info);
10904 case 1: /* R_MSP430_32 or R_MSP430_ABS32 */
10905 case 3: /* R_MSP430_16 or R_MSP430_ABS8 */
10906 goto handle_sym_diff;
10908 case 5: /* R_MSP430_16_BYTE */
10909 case 9: /* R_MSP430_8 */
10910 if (uses_msp430x_relocs ())
10912 goto handle_sym_diff;
10914 case 2: /* R_MSP430_ABS16 */
10915 case 15: /* R_MSP430X_ABS16 */
10916 if (! uses_msp430x_relocs ())
10918 goto handle_sym_diff;
10921 if (saved_sym != NULL)
10925 value = reloc->r_addend
10926 + (symtab[get_reloc_symindex (reloc->r_info)].st_value
10927 - saved_sym->st_value);
10929 byte_put (start + reloc->r_offset, value, reloc_type == 1 ? 4 : 2);
10937 if (saved_sym != NULL)
10938 error (_("Unhandled MSP430 reloc type found after SYM_DIFF reloc\n"));
10945 case EM_CYGNUS_MN10300:
10947 static Elf_Internal_Sym * saved_sym = NULL;
10949 switch (reloc_type)
10951 case 34: /* R_MN10300_ALIGN */
10953 case 33: /* R_MN10300_SYM_DIFF */
10954 saved_sym = symtab + get_reloc_symindex (reloc->r_info);
10956 case 1: /* R_MN10300_32 */
10957 case 2: /* R_MN10300_16 */
10958 if (saved_sym != NULL)
10962 value = reloc->r_addend
10963 + (symtab[get_reloc_symindex (reloc->r_info)].st_value
10964 - saved_sym->st_value);
10966 byte_put (start + reloc->r_offset, value, reloc_type == 1 ? 4 : 2);
10973 if (saved_sym != NULL)
10974 error (_("Unhandled MN10300 reloc type found after SYM_DIFF reloc\n"));
10984 /* Returns TRUE iff RELOC_TYPE is a 32-bit absolute RELA relocation used in
10985 DWARF debug sections. This is a target specific test. Note - we do not
10986 go through the whole including-target-headers-multiple-times route, (as
10987 we have already done with <elf/h8.h>) because this would become very
10988 messy and even then this function would have to contain target specific
10989 information (the names of the relocs instead of their numeric values).
10990 FIXME: This is not the correct way to solve this problem. The proper way
10991 is to have target specific reloc sizing and typing functions created by
10992 the reloc-macros.h header, in the same way that it already creates the
10993 reloc naming functions. */
10996 is_32bit_abs_reloc (unsigned int reloc_type)
10998 switch (elf_header.e_machine)
11002 return reloc_type == 1; /* R_386_32. */
11004 return reloc_type == 1; /* R_68K_32. */
11006 return reloc_type == 1; /* R_860_32. */
11008 return reloc_type == 2; /* R_960_32. */
11010 return reloc_type == 258; /* R_AARCH64_ABS32 */
11012 return reloc_type == 1; /* R_ALPHA_REFLONG. */
11014 return reloc_type == 1; /* R_ARC_32. */
11016 return reloc_type == 2; /* R_ARM_ABS32 */
11019 return reloc_type == 1;
11020 case EM_ADAPTEVA_EPIPHANY:
11021 return reloc_type == 3;
11023 return reloc_type == 0x12; /* R_byte4_data. */
11025 return reloc_type == 3; /* R_CRIS_32. */
11027 return reloc_type == 3; /* R_CR16_NUM32. */
11029 return reloc_type == 15; /* R_CRX_NUM32. */
11030 case EM_CYGNUS_FRV:
11031 return reloc_type == 1;
11032 case EM_CYGNUS_D10V:
11034 return reloc_type == 6; /* R_D10V_32. */
11035 case EM_CYGNUS_D30V:
11037 return reloc_type == 12; /* R_D30V_32_NORMAL. */
11039 return reloc_type == 3; /* R_DLX_RELOC_32. */
11040 case EM_CYGNUS_FR30:
11042 return reloc_type == 3; /* R_FR30_32. */
11044 return reloc_type == 1; /* R_FT32_32. */
11048 return reloc_type == 1; /* R_H8_DIR32. */
11050 return reloc_type == 0x65; /* R_IA64_SECREL32LSB. */
11053 return reloc_type == 2; /* R_IP2K_32. */
11055 return reloc_type == 2; /* R_IQ2000_32. */
11056 case EM_LATTICEMICO32:
11057 return reloc_type == 3; /* R_LM32_32. */
11060 return reloc_type == 3; /* R_M32C_32. */
11062 return reloc_type == 34; /* R_M32R_32_RELA. */
11064 return reloc_type == 1; /* R_MCORE_ADDR32. */
11065 case EM_CYGNUS_MEP:
11066 return reloc_type == 4; /* R_MEP_32. */
11068 return reloc_type == 2; /* R_METAG_ADDR32. */
11069 case EM_MICROBLAZE:
11070 return reloc_type == 1; /* R_MICROBLAZE_32. */
11072 return reloc_type == 2; /* R_MIPS_32. */
11074 return reloc_type == 4; /* R_MMIX_32. */
11075 case EM_CYGNUS_MN10200:
11077 return reloc_type == 1; /* R_MN10200_32. */
11078 case EM_CYGNUS_MN10300:
11080 return reloc_type == 1; /* R_MN10300_32. */
11082 return reloc_type == 1; /* R_MOXIE_32. */
11083 case EM_MSP430_OLD:
11085 return reloc_type == 1; /* R_MSP430_32 or R_MSP320_ABS32. */
11087 return reloc_type == 2; /* R_MT_32. */
11089 return reloc_type == 20; /* R_NDS32_RELA. */
11090 case EM_ALTERA_NIOS2:
11091 return reloc_type == 12; /* R_NIOS2_BFD_RELOC_32. */
11093 return reloc_type == 1; /* R_NIOS_32. */
11095 return reloc_type == 1; /* R_OR1K_32. */
11097 return (reloc_type == 1 /* R_PARISC_DIR32. */
11098 || reloc_type == 41); /* R_PARISC_SECREL32. */
11101 return reloc_type == 1; /* R_PJ_DATA_DIR32. */
11103 return reloc_type == 1; /* R_PPC64_ADDR32. */
11105 return reloc_type == 1; /* R_PPC_ADDR32. */
11107 return reloc_type == 1; /* R_RL78_DIR32. */
11109 return reloc_type == 1; /* R_RX_DIR32. */
11111 return reloc_type == 1; /* R_I370_ADDR31. */
11114 return reloc_type == 4; /* R_S390_32. */
11116 return reloc_type == 8; /* R_SCORE_ABS32. */
11118 return reloc_type == 1; /* R_SH_DIR32. */
11119 case EM_SPARC32PLUS:
11122 return reloc_type == 3 /* R_SPARC_32. */
11123 || reloc_type == 23; /* R_SPARC_UA32. */
11125 return reloc_type == 6; /* R_SPU_ADDR32 */
11127 return reloc_type == 1; /* R_C6000_ABS32. */
11129 return reloc_type == 2; /* R_TILEGX_32. */
11131 return reloc_type == 1; /* R_TILEPRO_32. */
11132 case EM_CYGNUS_V850:
11134 return reloc_type == 6; /* R_V850_ABS32. */
11136 return reloc_type == 0x33; /* R_V810_WORD. */
11138 return reloc_type == 1; /* R_VAX_32. */
11140 return reloc_type == 3; /* R_VISIUM_32. */
11144 return reloc_type == 10; /* R_X86_64_32. */
11147 return reloc_type == 3; /* R_XC16C_ABS_32. */
11149 return reloc_type == 4; /* R_XGATE_32. */
11151 return reloc_type == 1; /* R_XSTROMY16_32. */
11152 case EM_XTENSA_OLD:
11154 return reloc_type == 1; /* R_XTENSA_32. */
11157 static unsigned int prev_warn = 0;
11159 /* Avoid repeating the same warning multiple times. */
11160 if (prev_warn != elf_header.e_machine)
11161 error (_("Missing knowledge of 32-bit reloc types used in DWARF sections of machine number %d\n"),
11162 elf_header.e_machine);
11163 prev_warn = elf_header.e_machine;
11169 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
11170 a 32-bit pc-relative RELA relocation used in DWARF debug sections. */
11173 is_32bit_pcrel_reloc (unsigned int reloc_type)
11175 switch (elf_header.e_machine)
11179 return reloc_type == 2; /* R_386_PC32. */
11181 return reloc_type == 4; /* R_68K_PC32. */
11183 return reloc_type == 261; /* R_AARCH64_PREL32 */
11184 case EM_ADAPTEVA_EPIPHANY:
11185 return reloc_type == 6;
11187 return reloc_type == 10; /* R_ALPHA_SREL32. */
11189 return reloc_type == 3; /* R_ARM_REL32 */
11190 case EM_MICROBLAZE:
11191 return reloc_type == 2; /* R_MICROBLAZE_32_PCREL. */
11193 return reloc_type == 9; /* R_OR1K_32_PCREL. */
11195 return reloc_type == 9; /* R_PARISC_PCREL32. */
11197 return reloc_type == 26; /* R_PPC_REL32. */
11199 return reloc_type == 26; /* R_PPC64_REL32. */
11202 return reloc_type == 5; /* R_390_PC32. */
11204 return reloc_type == 2; /* R_SH_REL32. */
11205 case EM_SPARC32PLUS:
11208 return reloc_type == 6; /* R_SPARC_DISP32. */
11210 return reloc_type == 13; /* R_SPU_REL32. */
11212 return reloc_type == 6; /* R_TILEGX_32_PCREL. */
11214 return reloc_type == 4; /* R_TILEPRO_32_PCREL. */
11216 return reloc_type == 6; /* R_VISIUM_32_PCREL */
11220 return reloc_type == 2; /* R_X86_64_PC32. */
11221 case EM_XTENSA_OLD:
11223 return reloc_type == 14; /* R_XTENSA_32_PCREL. */
11225 /* Do not abort or issue an error message here. Not all targets use
11226 pc-relative 32-bit relocs in their DWARF debug information and we
11227 have already tested for target coverage in is_32bit_abs_reloc. A
11228 more helpful warning message will be generated by apply_relocations
11229 anyway, so just return. */
11234 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
11235 a 64-bit absolute RELA relocation used in DWARF debug sections. */
11238 is_64bit_abs_reloc (unsigned int reloc_type)
11240 switch (elf_header.e_machine)
11243 return reloc_type == 257; /* R_AARCH64_ABS64. */
11245 return reloc_type == 2; /* R_ALPHA_REFQUAD. */
11247 return reloc_type == 0x27; /* R_IA64_DIR64LSB. */
11249 return reloc_type == 80; /* R_PARISC_DIR64. */
11251 return reloc_type == 38; /* R_PPC64_ADDR64. */
11252 case EM_SPARC32PLUS:
11255 return reloc_type == 54; /* R_SPARC_UA64. */
11259 return reloc_type == 1; /* R_X86_64_64. */
11262 return reloc_type == 22; /* R_S390_64. */
11264 return reloc_type == 1; /* R_TILEGX_64. */
11266 return reloc_type == 18; /* R_MIPS_64. */
11272 /* Like is_32bit_pcrel_reloc except that it returns TRUE iff RELOC_TYPE is
11273 a 64-bit pc-relative RELA relocation used in DWARF debug sections. */
11276 is_64bit_pcrel_reloc (unsigned int reloc_type)
11278 switch (elf_header.e_machine)
11281 return reloc_type == 260; /* R_AARCH64_PREL64. */
11283 return reloc_type == 11; /* R_ALPHA_SREL64. */
11285 return reloc_type == 0x4f; /* R_IA64_PCREL64LSB. */
11287 return reloc_type == 72; /* R_PARISC_PCREL64. */
11289 return reloc_type == 44; /* R_PPC64_REL64. */
11290 case EM_SPARC32PLUS:
11293 return reloc_type == 46; /* R_SPARC_DISP64. */
11297 return reloc_type == 24; /* R_X86_64_PC64. */
11300 return reloc_type == 23; /* R_S390_PC64. */
11302 return reloc_type == 5; /* R_TILEGX_64_PCREL. */
11308 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
11309 a 24-bit absolute RELA relocation used in DWARF debug sections. */
11312 is_24bit_abs_reloc (unsigned int reloc_type)
11314 switch (elf_header.e_machine)
11316 case EM_CYGNUS_MN10200:
11318 return reloc_type == 4; /* R_MN10200_24. */
11324 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
11325 a 16-bit absolute RELA relocation used in DWARF debug sections. */
11328 is_16bit_abs_reloc (unsigned int reloc_type)
11330 switch (elf_header.e_machine)
11334 return reloc_type == 4; /* R_AVR_16. */
11335 case EM_ADAPTEVA_EPIPHANY:
11336 return reloc_type == 5;
11337 case EM_CYGNUS_D10V:
11339 return reloc_type == 3; /* R_D10V_16. */
11343 return reloc_type == R_H8_DIR16;
11346 return reloc_type == 1; /* R_IP2K_16. */
11349 return reloc_type == 1; /* R_M32C_16 */
11351 if (uses_msp430x_relocs ())
11352 return reloc_type == 2; /* R_MSP430_ABS16. */
11353 case EM_MSP430_OLD:
11354 return reloc_type == 5; /* R_MSP430_16_BYTE. */
11356 return reloc_type == 19; /* R_NDS32_RELA. */
11357 case EM_ALTERA_NIOS2:
11358 return reloc_type == 13; /* R_NIOS2_BFD_RELOC_16. */
11360 return reloc_type == 9; /* R_NIOS_16. */
11362 return reloc_type == 2; /* R_OR1K_16. */
11364 return reloc_type == 2; /* R_C6000_ABS16. */
11367 return reloc_type == 2; /* R_XC16C_ABS_16. */
11368 case EM_CYGNUS_MN10200:
11370 return reloc_type == 2; /* R_MN10200_16. */
11371 case EM_CYGNUS_MN10300:
11373 return reloc_type == 2; /* R_MN10300_16. */
11375 return reloc_type == 2; /* R_VISIUM_16. */
11377 return reloc_type == 3; /* R_XGATE_16. */
11383 /* Returns TRUE iff RELOC_TYPE is a NONE relocation used for discarded
11384 relocation entries (possibly formerly used for SHT_GROUP sections). */
11387 is_none_reloc (unsigned int reloc_type)
11389 switch (elf_header.e_machine)
11391 case EM_68K: /* R_68K_NONE. */
11392 case EM_386: /* R_386_NONE. */
11393 case EM_SPARC32PLUS:
11395 case EM_SPARC: /* R_SPARC_NONE. */
11396 case EM_MIPS: /* R_MIPS_NONE. */
11397 case EM_PARISC: /* R_PARISC_NONE. */
11398 case EM_ALPHA: /* R_ALPHA_NONE. */
11399 case EM_ADAPTEVA_EPIPHANY:
11400 case EM_PPC: /* R_PPC_NONE. */
11401 case EM_PPC64: /* R_PPC64_NONE. */
11402 case EM_ARM: /* R_ARM_NONE. */
11403 case EM_IA_64: /* R_IA64_NONE. */
11404 case EM_SH: /* R_SH_NONE. */
11406 case EM_S390: /* R_390_NONE. */
11407 case EM_CRIS: /* R_CRIS_NONE. */
11408 case EM_X86_64: /* R_X86_64_NONE. */
11409 case EM_L1OM: /* R_X86_64_NONE. */
11410 case EM_K1OM: /* R_X86_64_NONE. */
11411 case EM_MN10300: /* R_MN10300_NONE. */
11412 case EM_FT32: /* R_FT32_NONE. */
11413 case EM_MOXIE: /* R_MOXIE_NONE. */
11414 case EM_M32R: /* R_M32R_NONE. */
11415 case EM_TI_C6000:/* R_C6000_NONE. */
11416 case EM_TILEGX: /* R_TILEGX_NONE. */
11417 case EM_TILEPRO: /* R_TILEPRO_NONE. */
11419 case EM_C166: /* R_XC16X_NONE. */
11420 case EM_ALTERA_NIOS2: /* R_NIOS2_NONE. */
11421 case EM_NIOS32: /* R_NIOS_NONE. */
11422 case EM_OR1K: /* R_OR1K_NONE. */
11423 return reloc_type == 0;
11425 return reloc_type == 0 || reloc_type == 256;
11427 return (reloc_type == 0 /* R_XTENSA_NONE. */
11428 || reloc_type == 204 /* R_NDS32_DIFF8. */
11429 || reloc_type == 205 /* R_NDS32_DIFF16. */
11430 || reloc_type == 206 /* R_NDS32_DIFF32. */
11431 || reloc_type == 207 /* R_NDS32_ULEB128. */);
11432 case EM_XTENSA_OLD:
11434 return (reloc_type == 0 /* R_XTENSA_NONE. */
11435 || reloc_type == 17 /* R_XTENSA_DIFF8. */
11436 || reloc_type == 18 /* R_XTENSA_DIFF16. */
11437 || reloc_type == 19 /* R_XTENSA_DIFF32. */);
11439 return reloc_type == 3; /* R_METAG_NONE. */
11444 /* Apply relocations to a section.
11445 Note: So far support has been added only for those relocations
11446 which can be found in debug sections.
11447 FIXME: Add support for more relocations ? */
11450 apply_relocations (void * file,
11451 Elf_Internal_Shdr * section,
11452 unsigned char * start)
11454 Elf_Internal_Shdr * relsec;
11455 unsigned char * end = start + section->sh_size;
11457 if (elf_header.e_type != ET_REL)
11460 /* Find the reloc section associated with the section. */
11461 for (relsec = section_headers;
11462 relsec < section_headers + elf_header.e_shnum;
11465 bfd_boolean is_rela;
11466 unsigned long num_relocs;
11467 Elf_Internal_Rela * relocs;
11468 Elf_Internal_Rela * rp;
11469 Elf_Internal_Shdr * symsec;
11470 Elf_Internal_Sym * symtab;
11471 unsigned long num_syms;
11472 Elf_Internal_Sym * sym;
11474 if ((relsec->sh_type != SHT_RELA && relsec->sh_type != SHT_REL)
11475 || relsec->sh_info >= elf_header.e_shnum
11476 || section_headers + relsec->sh_info != section
11477 || relsec->sh_size == 0
11478 || relsec->sh_link >= elf_header.e_shnum)
11481 is_rela = relsec->sh_type == SHT_RELA;
11485 if (!slurp_rela_relocs ((FILE *) file, relsec->sh_offset,
11486 relsec->sh_size, & relocs, & num_relocs))
11491 if (!slurp_rel_relocs ((FILE *) file, relsec->sh_offset,
11492 relsec->sh_size, & relocs, & num_relocs))
11496 /* SH uses RELA but uses in place value instead of the addend field. */
11497 if (elf_header.e_machine == EM_SH)
11500 symsec = section_headers + relsec->sh_link;
11501 symtab = GET_ELF_SYMBOLS ((FILE *) file, symsec, & num_syms);
11503 for (rp = relocs; rp < relocs + num_relocs; ++rp)
11506 unsigned int reloc_type;
11507 unsigned int reloc_size;
11508 unsigned char * rloc;
11509 unsigned long sym_index;
11511 reloc_type = get_reloc_type (rp->r_info);
11513 if (target_specific_reloc_handling (rp, start, symtab))
11515 else if (is_none_reloc (reloc_type))
11517 else if (is_32bit_abs_reloc (reloc_type)
11518 || is_32bit_pcrel_reloc (reloc_type))
11520 else if (is_64bit_abs_reloc (reloc_type)
11521 || is_64bit_pcrel_reloc (reloc_type))
11523 else if (is_24bit_abs_reloc (reloc_type))
11525 else if (is_16bit_abs_reloc (reloc_type))
11529 static unsigned int prev_reloc = 0;
11530 if (reloc_type != prev_reloc)
11531 warn (_("unable to apply unsupported reloc type %d to section %s\n"),
11532 reloc_type, printable_section_name (section));
11533 prev_reloc = reloc_type;
11537 rloc = start + rp->r_offset;
11538 if ((rloc + reloc_size) > end || (rloc < start))
11540 warn (_("skipping invalid relocation offset 0x%lx in section %s\n"),
11541 (unsigned long) rp->r_offset,
11542 printable_section_name (section));
11546 sym_index = (unsigned long) get_reloc_symindex (rp->r_info);
11547 if (sym_index >= num_syms)
11549 warn (_("skipping invalid relocation symbol index 0x%lx in section %s\n"),
11550 sym_index, printable_section_name (section));
11553 sym = symtab + sym_index;
11555 /* If the reloc has a symbol associated with it,
11556 make sure that it is of an appropriate type.
11558 Relocations against symbols without type can happen.
11559 Gcc -feliminate-dwarf2-dups may generate symbols
11560 without type for debug info.
11562 Icc generates relocations against function symbols
11563 instead of local labels.
11565 Relocations against object symbols can happen, eg when
11566 referencing a global array. For an example of this see
11567 the _clz.o binary in libgcc.a. */
11569 && ELF_ST_TYPE (sym->st_info) > STT_SECTION)
11571 warn (_("skipping unexpected symbol type %s in %ld'th relocation in section %s\n"),
11572 get_symbol_type (ELF_ST_TYPE (sym->st_info)),
11573 (long int)(rp - relocs),
11574 printable_section_name (relsec));
11580 addend += rp->r_addend;
11581 /* R_XTENSA_32, R_PJ_DATA_DIR32 and R_D30V_32_NORMAL are
11582 partial_inplace. */
11584 || (elf_header.e_machine == EM_XTENSA
11585 && reloc_type == 1)
11586 || ((elf_header.e_machine == EM_PJ
11587 || elf_header.e_machine == EM_PJ_OLD)
11588 && reloc_type == 1)
11589 || ((elf_header.e_machine == EM_D30V
11590 || elf_header.e_machine == EM_CYGNUS_D30V)
11591 && reloc_type == 12))
11592 addend += byte_get (rloc, reloc_size);
11594 if (is_32bit_pcrel_reloc (reloc_type)
11595 || is_64bit_pcrel_reloc (reloc_type))
11597 /* On HPPA, all pc-relative relocations are biased by 8. */
11598 if (elf_header.e_machine == EM_PARISC)
11600 byte_put (rloc, (addend + sym->st_value) - rp->r_offset,
11604 byte_put (rloc, addend + sym->st_value, reloc_size);
11613 #ifdef SUPPORT_DISASSEMBLY
11615 disassemble_section (Elf_Internal_Shdr * section, FILE * file)
11617 printf (_("\nAssembly dump of section %s\n"), printable_section_name (section));
11619 /* FIXME: XXX -- to be done --- XXX */
11625 /* Reads in the contents of SECTION from FILE, returning a pointer
11626 to a malloc'ed buffer or NULL if something went wrong. */
11629 get_section_contents (Elf_Internal_Shdr * section, FILE * file)
11631 bfd_size_type num_bytes;
11633 num_bytes = section->sh_size;
11635 if (num_bytes == 0 || section->sh_type == SHT_NOBITS)
11637 printf (_("\nSection '%s' has no data to dump.\n"),
11638 printable_section_name (section));
11642 return (char *) get_data (NULL, file, section->sh_offset, 1, num_bytes,
11643 _("section contents"));
11648 dump_section_as_strings (Elf_Internal_Shdr * section, FILE * file)
11650 Elf_Internal_Shdr * relsec;
11651 bfd_size_type num_bytes;
11655 bfd_boolean some_strings_shown;
11657 start = get_section_contents (section, file);
11661 printf (_("\nString dump of section '%s':\n"), printable_section_name (section));
11663 /* If the section being dumped has relocations against it the user might
11664 be expecting these relocations to have been applied. Check for this
11665 case and issue a warning message in order to avoid confusion.
11666 FIXME: Maybe we ought to have an option that dumps a section with
11667 relocs applied ? */
11668 for (relsec = section_headers;
11669 relsec < section_headers + elf_header.e_shnum;
11672 if ((relsec->sh_type != SHT_RELA && relsec->sh_type != SHT_REL)
11673 || relsec->sh_info >= elf_header.e_shnum
11674 || section_headers + relsec->sh_info != section
11675 || relsec->sh_size == 0
11676 || relsec->sh_link >= elf_header.e_shnum)
11679 printf (_(" Note: This section has relocations against it, but these have NOT been applied to this dump.\n"));
11683 num_bytes = section->sh_size;
11685 end = start + num_bytes;
11686 some_strings_shown = FALSE;
11690 while (!ISPRINT (* data))
11691 if (++ data >= end)
11696 size_t maxlen = end - data;
11699 /* PR 11128: Use two separate invocations in order to work
11700 around bugs in the Solaris 8 implementation of printf. */
11701 printf (" [%6tx] ", data - start);
11703 printf (" [%6Ix] ", (size_t) (data - start));
11707 print_symbol ((int) maxlen, data);
11709 data += strnlen (data, maxlen);
11713 printf (_("<corrupt>\n"));
11716 some_strings_shown = TRUE;
11720 if (! some_strings_shown)
11721 printf (_(" No strings found in this section."));
11729 dump_section_as_bytes (Elf_Internal_Shdr * section,
11731 bfd_boolean relocate)
11733 Elf_Internal_Shdr * relsec;
11734 bfd_size_type bytes;
11736 unsigned char * data;
11737 unsigned char * start;
11739 start = (unsigned char *) get_section_contents (section, file);
11743 printf (_("\nHex dump of section '%s':\n"), printable_section_name (section));
11747 apply_relocations (file, section, start);
11751 /* If the section being dumped has relocations against it the user might
11752 be expecting these relocations to have been applied. Check for this
11753 case and issue a warning message in order to avoid confusion.
11754 FIXME: Maybe we ought to have an option that dumps a section with
11755 relocs applied ? */
11756 for (relsec = section_headers;
11757 relsec < section_headers + elf_header.e_shnum;
11760 if ((relsec->sh_type != SHT_RELA && relsec->sh_type != SHT_REL)
11761 || relsec->sh_info >= elf_header.e_shnum
11762 || section_headers + relsec->sh_info != section
11763 || relsec->sh_size == 0
11764 || relsec->sh_link >= elf_header.e_shnum)
11767 printf (_(" NOTE: This section has relocations against it, but these have NOT been applied to this dump.\n"));
11772 addr = section->sh_addr;
11773 bytes = section->sh_size;
11782 lbytes = (bytes > 16 ? 16 : bytes);
11784 printf (" 0x%8.8lx ", (unsigned long) addr);
11786 for (j = 0; j < 16; j++)
11789 printf ("%2.2x", data[j]);
11797 for (j = 0; j < lbytes; j++)
11800 if (k >= ' ' && k < 0x7f)
11818 /* Uncompresses a section that was compressed using zlib, in place. */
11821 uncompress_section_contents (unsigned char **buffer ATTRIBUTE_UNUSED,
11822 dwarf_size_type *size ATTRIBUTE_UNUSED)
11824 #ifndef HAVE_ZLIB_H
11827 dwarf_size_type compressed_size = *size;
11828 unsigned char * compressed_buffer = *buffer;
11829 dwarf_size_type uncompressed_size;
11830 unsigned char * uncompressed_buffer;
11833 dwarf_size_type header_size = 12;
11835 /* Read the zlib header. In this case, it should be "ZLIB" followed
11836 by the uncompressed section size, 8 bytes in big-endian order. */
11837 if (compressed_size < header_size
11838 || ! streq ((char *) compressed_buffer, "ZLIB"))
11841 uncompressed_size = compressed_buffer[4]; uncompressed_size <<= 8;
11842 uncompressed_size += compressed_buffer[5]; uncompressed_size <<= 8;
11843 uncompressed_size += compressed_buffer[6]; uncompressed_size <<= 8;
11844 uncompressed_size += compressed_buffer[7]; uncompressed_size <<= 8;
11845 uncompressed_size += compressed_buffer[8]; uncompressed_size <<= 8;
11846 uncompressed_size += compressed_buffer[9]; uncompressed_size <<= 8;
11847 uncompressed_size += compressed_buffer[10]; uncompressed_size <<= 8;
11848 uncompressed_size += compressed_buffer[11];
11850 /* It is possible the section consists of several compressed
11851 buffers concatenated together, so we uncompress in a loop. */
11852 strm.zalloc = NULL;
11854 strm.opaque = NULL;
11855 strm.avail_in = compressed_size - header_size;
11856 strm.next_in = (Bytef *) compressed_buffer + header_size;
11857 strm.avail_out = uncompressed_size;
11858 uncompressed_buffer = (unsigned char *) xmalloc (uncompressed_size);
11860 rc = inflateInit (& strm);
11861 while (strm.avail_in > 0)
11865 strm.next_out = ((Bytef *) uncompressed_buffer
11866 + (uncompressed_size - strm.avail_out));
11867 rc = inflate (&strm, Z_FINISH);
11868 if (rc != Z_STREAM_END)
11870 rc = inflateReset (& strm);
11872 rc = inflateEnd (& strm);
11874 || strm.avail_out != 0)
11877 free (compressed_buffer);
11878 *buffer = uncompressed_buffer;
11879 *size = uncompressed_size;
11883 free (uncompressed_buffer);
11884 /* Indicate decompression failure. */
11887 #endif /* HAVE_ZLIB_H */
11891 load_specific_debug_section (enum dwarf_section_display_enum debug,
11892 Elf_Internal_Shdr * sec, void * file)
11894 struct dwarf_section * section = &debug_displays [debug].section;
11897 /* If it is already loaded, do nothing. */
11898 if (section->start != NULL)
11901 snprintf (buf, sizeof (buf), _("%s section data"), section->name);
11902 section->address = sec->sh_addr;
11903 section->user_data = NULL;
11904 section->start = (unsigned char *) get_data (NULL, (FILE *) file,
11906 sec->sh_size, buf);
11907 if (section->start == NULL)
11911 section->size = sec->sh_size;
11912 if (uncompress_section_contents (§ion->start, §ion->size))
11913 sec->sh_size = section->size;
11916 if (section->start == NULL)
11919 if (debug_displays [debug].relocate)
11920 apply_relocations ((FILE *) file, sec, section->start);
11925 /* If this is not NULL, load_debug_section will only look for sections
11926 within the list of sections given here. */
11927 unsigned int *section_subset = NULL;
11930 load_debug_section (enum dwarf_section_display_enum debug, void * file)
11932 struct dwarf_section * section = &debug_displays [debug].section;
11933 Elf_Internal_Shdr * sec;
11935 /* Locate the debug section. */
11936 sec = find_section_in_set (section->uncompressed_name, section_subset);
11938 section->name = section->uncompressed_name;
11941 sec = find_section_in_set (section->compressed_name, section_subset);
11943 section->name = section->compressed_name;
11948 /* If we're loading from a subset of sections, and we've loaded
11949 a section matching this name before, it's likely that it's a
11951 if (section_subset != NULL)
11952 free_debug_section (debug);
11954 return load_specific_debug_section (debug, sec, (FILE *) file);
11958 free_debug_section (enum dwarf_section_display_enum debug)
11960 struct dwarf_section * section = &debug_displays [debug].section;
11962 if (section->start == NULL)
11965 free ((char *) section->start);
11966 section->start = NULL;
11967 section->address = 0;
11972 display_debug_section (int shndx, Elf_Internal_Shdr * section, FILE * file)
11974 char * name = SECTION_NAME (section);
11975 const char * print_name = printable_section_name (section);
11976 bfd_size_type length;
11980 length = section->sh_size;
11983 printf (_("\nSection '%s' has no debugging data.\n"), print_name);
11986 if (section->sh_type == SHT_NOBITS)
11988 /* There is no point in dumping the contents of a debugging section
11989 which has the NOBITS type - the bits in the file will be random.
11990 This can happen when a file containing a .eh_frame section is
11991 stripped with the --only-keep-debug command line option. */
11992 printf (_("section '%s' has the NOBITS type - its contents are unreliable.\n"),
11997 if (const_strneq (name, ".gnu.linkonce.wi."))
11998 name = ".debug_info";
12000 /* See if we know how to display the contents of this section. */
12001 for (i = 0; i < max; i++)
12002 if (streq (debug_displays[i].section.uncompressed_name, name)
12003 || (i == line && const_strneq (name, ".debug_line."))
12004 || streq (debug_displays[i].section.compressed_name, name))
12006 struct dwarf_section * sec = &debug_displays [i].section;
12007 int secondary = (section != find_section (name));
12010 free_debug_section ((enum dwarf_section_display_enum) i);
12012 if (i == line && const_strneq (name, ".debug_line."))
12014 else if (streq (sec->uncompressed_name, name))
12015 sec->name = sec->uncompressed_name;
12017 sec->name = sec->compressed_name;
12018 if (load_specific_debug_section ((enum dwarf_section_display_enum) i,
12021 /* If this debug section is part of a CU/TU set in a .dwp file,
12022 restrict load_debug_section to the sections in that set. */
12023 section_subset = find_cu_tu_set (file, shndx);
12025 result &= debug_displays[i].display (sec, file);
12027 section_subset = NULL;
12029 if (secondary || (i != info && i != abbrev))
12030 free_debug_section ((enum dwarf_section_display_enum) i);
12038 printf (_("Unrecognized debug section: %s\n"), print_name);
12045 /* Set DUMP_SECTS for all sections where dumps were requested
12046 based on section name. */
12049 initialise_dumps_byname (void)
12051 struct dump_list_entry * cur;
12053 for (cur = dump_sects_byname; cur; cur = cur->next)
12058 for (i = 0, any = 0; i < elf_header.e_shnum; i++)
12059 if (streq (SECTION_NAME (section_headers + i), cur->name))
12061 request_dump_bynumber (i, cur->type);
12066 warn (_("Section '%s' was not dumped because it does not exist!\n"),
12072 process_section_contents (FILE * file)
12074 Elf_Internal_Shdr * section;
12080 initialise_dumps_byname ();
12082 for (i = 0, section = section_headers;
12083 i < elf_header.e_shnum && i < num_dump_sects;
12086 #ifdef SUPPORT_DISASSEMBLY
12087 if (dump_sects[i] & DISASS_DUMP)
12088 disassemble_section (section, file);
12090 if (dump_sects[i] & HEX_DUMP)
12091 dump_section_as_bytes (section, file, FALSE);
12093 if (dump_sects[i] & RELOC_DUMP)
12094 dump_section_as_bytes (section, file, TRUE);
12096 if (dump_sects[i] & STRING_DUMP)
12097 dump_section_as_strings (section, file);
12099 if (dump_sects[i] & DEBUG_DUMP)
12100 display_debug_section (i, section, file);
12103 /* Check to see if the user requested a
12104 dump of a section that does not exist. */
12105 while (i++ < num_dump_sects)
12107 warn (_("Section %d was not dumped because it does not exist!\n"), i);
12111 process_mips_fpe_exception (int mask)
12116 if (mask & OEX_FPU_INEX)
12117 fputs ("INEX", stdout), first = 0;
12118 if (mask & OEX_FPU_UFLO)
12119 printf ("%sUFLO", first ? "" : "|"), first = 0;
12120 if (mask & OEX_FPU_OFLO)
12121 printf ("%sOFLO", first ? "" : "|"), first = 0;
12122 if (mask & OEX_FPU_DIV0)
12123 printf ("%sDIV0", first ? "" : "|"), first = 0;
12124 if (mask & OEX_FPU_INVAL)
12125 printf ("%sINVAL", first ? "" : "|");
12128 fputs ("0", stdout);
12131 /* Display's the value of TAG at location P. If TAG is
12132 greater than 0 it is assumed to be an unknown tag, and
12133 a message is printed to this effect. Otherwise it is
12134 assumed that a message has already been printed.
12136 If the bottom bit of TAG is set it assumed to have a
12137 string value, otherwise it is assumed to have an integer
12140 Returns an updated P pointing to the first unread byte
12141 beyond the end of TAG's value.
12143 Reads at or beyond END will not be made. */
12145 static unsigned char *
12146 display_tag_value (int tag,
12148 const unsigned char * const end)
12153 printf (" Tag_unknown_%d: ", tag);
12157 warn (_("<corrupt tag>\n"));
12161 /* PR 17531 file: 027-19978-0.004. */
12162 size_t maxlen = (end - p) - 1;
12167 print_symbol ((int) maxlen, (const char *) p);
12168 p += strnlen ((char *) p, maxlen) + 1;
12172 printf (_("<corrupt string tag>"));
12173 p = (unsigned char *) end;
12181 val = read_uleb128 (p, &len, end);
12183 printf ("%ld (0x%lx)\n", val, val);
12190 /* ARM EABI attributes section. */
12195 /* 0 = special, 1 = string, 2 = uleb123, > 0x80 == table lookup. */
12197 const char ** table;
12198 } arm_attr_public_tag;
12200 static const char * arm_attr_tag_CPU_arch[] =
12201 {"Pre-v4", "v4", "v4T", "v5T", "v5TE", "v5TEJ", "v6", "v6KZ", "v6T2",
12202 "v6K", "v7", "v6-M", "v6S-M", "v7E-M", "v8"};
12203 static const char * arm_attr_tag_ARM_ISA_use[] = {"No", "Yes"};
12204 static const char * arm_attr_tag_THUMB_ISA_use[] =
12205 {"No", "Thumb-1", "Thumb-2"};
12206 static const char * arm_attr_tag_FP_arch[] =
12207 {"No", "VFPv1", "VFPv2", "VFPv3", "VFPv3-D16", "VFPv4", "VFPv4-D16",
12208 "FP for ARMv8", "FPv5/FP-D16 for ARMv8"};
12209 static const char * arm_attr_tag_WMMX_arch[] = {"No", "WMMXv1", "WMMXv2"};
12210 static const char * arm_attr_tag_Advanced_SIMD_arch[] =
12211 {"No", "NEONv1", "NEONv1 with Fused-MAC", "NEON for ARMv8"};
12212 static const char * arm_attr_tag_PCS_config[] =
12213 {"None", "Bare platform", "Linux application", "Linux DSO", "PalmOS 2004",
12214 "PalmOS (reserved)", "SymbianOS 2004", "SymbianOS (reserved)"};
12215 static const char * arm_attr_tag_ABI_PCS_R9_use[] =
12216 {"V6", "SB", "TLS", "Unused"};
12217 static const char * arm_attr_tag_ABI_PCS_RW_data[] =
12218 {"Absolute", "PC-relative", "SB-relative", "None"};
12219 static const char * arm_attr_tag_ABI_PCS_RO_data[] =
12220 {"Absolute", "PC-relative", "None"};
12221 static const char * arm_attr_tag_ABI_PCS_GOT_use[] =
12222 {"None", "direct", "GOT-indirect"};
12223 static const char * arm_attr_tag_ABI_PCS_wchar_t[] =
12224 {"None", "??? 1", "2", "??? 3", "4"};
12225 static const char * arm_attr_tag_ABI_FP_rounding[] = {"Unused", "Needed"};
12226 static const char * arm_attr_tag_ABI_FP_denormal[] =
12227 {"Unused", "Needed", "Sign only"};
12228 static const char * arm_attr_tag_ABI_FP_exceptions[] = {"Unused", "Needed"};
12229 static const char * arm_attr_tag_ABI_FP_user_exceptions[] = {"Unused", "Needed"};
12230 static const char * arm_attr_tag_ABI_FP_number_model[] =
12231 {"Unused", "Finite", "RTABI", "IEEE 754"};
12232 static const char * arm_attr_tag_ABI_enum_size[] =
12233 {"Unused", "small", "int", "forced to int"};
12234 static const char * arm_attr_tag_ABI_HardFP_use[] =
12235 {"As Tag_FP_arch", "SP only", "DP only", "SP and DP"};
12236 static const char * arm_attr_tag_ABI_VFP_args[] =
12237 {"AAPCS", "VFP registers", "custom", "compatible"};
12238 static const char * arm_attr_tag_ABI_WMMX_args[] =
12239 {"AAPCS", "WMMX registers", "custom"};
12240 static const char * arm_attr_tag_ABI_optimization_goals[] =
12241 {"None", "Prefer Speed", "Aggressive Speed", "Prefer Size",
12242 "Aggressive Size", "Prefer Debug", "Aggressive Debug"};
12243 static const char * arm_attr_tag_ABI_FP_optimization_goals[] =
12244 {"None", "Prefer Speed", "Aggressive Speed", "Prefer Size",
12245 "Aggressive Size", "Prefer Accuracy", "Aggressive Accuracy"};
12246 static const char * arm_attr_tag_CPU_unaligned_access[] = {"None", "v6"};
12247 static const char * arm_attr_tag_FP_HP_extension[] =
12248 {"Not Allowed", "Allowed"};
12249 static const char * arm_attr_tag_ABI_FP_16bit_format[] =
12250 {"None", "IEEE 754", "Alternative Format"};
12251 static const char * arm_attr_tag_MPextension_use[] =
12252 {"Not Allowed", "Allowed"};
12253 static const char * arm_attr_tag_DIV_use[] =
12254 {"Allowed in Thumb-ISA, v7-R or v7-M", "Not allowed",
12255 "Allowed in v7-A with integer division extension"};
12256 static const char * arm_attr_tag_T2EE_use[] = {"Not Allowed", "Allowed"};
12257 static const char * arm_attr_tag_Virtualization_use[] =
12258 {"Not Allowed", "TrustZone", "Virtualization Extensions",
12259 "TrustZone and Virtualization Extensions"};
12260 static const char * arm_attr_tag_MPextension_use_legacy[] =
12261 {"Not Allowed", "Allowed"};
12263 #define LOOKUP(id, name) \
12264 {id, #name, 0x80 | ARRAY_SIZE(arm_attr_tag_##name), arm_attr_tag_##name}
12265 static arm_attr_public_tag arm_attr_public_tags[] =
12267 {4, "CPU_raw_name", 1, NULL},
12268 {5, "CPU_name", 1, NULL},
12269 LOOKUP(6, CPU_arch),
12270 {7, "CPU_arch_profile", 0, NULL},
12271 LOOKUP(8, ARM_ISA_use),
12272 LOOKUP(9, THUMB_ISA_use),
12273 LOOKUP(10, FP_arch),
12274 LOOKUP(11, WMMX_arch),
12275 LOOKUP(12, Advanced_SIMD_arch),
12276 LOOKUP(13, PCS_config),
12277 LOOKUP(14, ABI_PCS_R9_use),
12278 LOOKUP(15, ABI_PCS_RW_data),
12279 LOOKUP(16, ABI_PCS_RO_data),
12280 LOOKUP(17, ABI_PCS_GOT_use),
12281 LOOKUP(18, ABI_PCS_wchar_t),
12282 LOOKUP(19, ABI_FP_rounding),
12283 LOOKUP(20, ABI_FP_denormal),
12284 LOOKUP(21, ABI_FP_exceptions),
12285 LOOKUP(22, ABI_FP_user_exceptions),
12286 LOOKUP(23, ABI_FP_number_model),
12287 {24, "ABI_align_needed", 0, NULL},
12288 {25, "ABI_align_preserved", 0, NULL},
12289 LOOKUP(26, ABI_enum_size),
12290 LOOKUP(27, ABI_HardFP_use),
12291 LOOKUP(28, ABI_VFP_args),
12292 LOOKUP(29, ABI_WMMX_args),
12293 LOOKUP(30, ABI_optimization_goals),
12294 LOOKUP(31, ABI_FP_optimization_goals),
12295 {32, "compatibility", 0, NULL},
12296 LOOKUP(34, CPU_unaligned_access),
12297 LOOKUP(36, FP_HP_extension),
12298 LOOKUP(38, ABI_FP_16bit_format),
12299 LOOKUP(42, MPextension_use),
12300 LOOKUP(44, DIV_use),
12301 {64, "nodefaults", 0, NULL},
12302 {65, "also_compatible_with", 0, NULL},
12303 LOOKUP(66, T2EE_use),
12304 {67, "conformance", 1, NULL},
12305 LOOKUP(68, Virtualization_use),
12306 LOOKUP(70, MPextension_use_legacy)
12310 static unsigned char *
12311 display_arm_attribute (unsigned char * p,
12312 const unsigned char * const end)
12317 arm_attr_public_tag * attr;
12321 tag = read_uleb128 (p, &len, end);
12324 for (i = 0; i < ARRAY_SIZE (arm_attr_public_tags); i++)
12326 if (arm_attr_public_tags[i].tag == tag)
12328 attr = &arm_attr_public_tags[i];
12335 printf (" Tag_%s: ", attr->name);
12336 switch (attr->type)
12341 case 7: /* Tag_CPU_arch_profile. */
12342 val = read_uleb128 (p, &len, end);
12346 case 0: printf (_("None\n")); break;
12347 case 'A': printf (_("Application\n")); break;
12348 case 'R': printf (_("Realtime\n")); break;
12349 case 'M': printf (_("Microcontroller\n")); break;
12350 case 'S': printf (_("Application or Realtime\n")); break;
12351 default: printf ("??? (%d)\n", val); break;
12355 case 24: /* Tag_align_needed. */
12356 val = read_uleb128 (p, &len, end);
12360 case 0: printf (_("None\n")); break;
12361 case 1: printf (_("8-byte\n")); break;
12362 case 2: printf (_("4-byte\n")); break;
12363 case 3: printf ("??? 3\n"); break;
12366 printf (_("8-byte and up to %d-byte extended\n"),
12369 printf ("??? (%d)\n", val);
12374 case 25: /* Tag_align_preserved. */
12375 val = read_uleb128 (p, &len, end);
12379 case 0: printf (_("None\n")); break;
12380 case 1: printf (_("8-byte, except leaf SP\n")); break;
12381 case 2: printf (_("8-byte\n")); break;
12382 case 3: printf ("??? 3\n"); break;
12385 printf (_("8-byte and up to %d-byte extended\n"),
12388 printf ("??? (%d)\n", val);
12393 case 32: /* Tag_compatibility. */
12395 val = read_uleb128 (p, &len, end);
12397 printf (_("flag = %d, vendor = "), val);
12400 size_t maxlen = (end - p) - 1;
12402 print_symbol ((int) maxlen, (const char *) p);
12403 p += strnlen ((char *) p, maxlen) + 1;
12407 printf (_("<corrupt>"));
12408 p = (unsigned char *) end;
12414 case 64: /* Tag_nodefaults. */
12415 /* PR 17531: file: 001-505008-0.01. */
12418 printf (_("True\n"));
12421 case 65: /* Tag_also_compatible_with. */
12422 val = read_uleb128 (p, &len, end);
12424 if (val == 6 /* Tag_CPU_arch. */)
12426 val = read_uleb128 (p, &len, end);
12428 if ((unsigned int) val >= ARRAY_SIZE (arm_attr_tag_CPU_arch))
12429 printf ("??? (%d)\n", val);
12431 printf ("%s\n", arm_attr_tag_CPU_arch[val]);
12435 while (p < end && *(p++) != '\0' /* NUL terminator. */)
12440 printf (_("<unknown: %d>\n"), tag);
12446 return display_tag_value (-1, p, end);
12448 return display_tag_value (0, p, end);
12451 assert (attr->type & 0x80);
12452 val = read_uleb128 (p, &len, end);
12454 type = attr->type & 0x7f;
12456 printf ("??? (%d)\n", val);
12458 printf ("%s\n", attr->table[val]);
12463 return display_tag_value (tag, p, end);
12466 static unsigned char *
12467 display_gnu_attribute (unsigned char * p,
12468 unsigned char * (* display_proc_gnu_attribute) (unsigned char *, int, const unsigned char * const),
12469 const unsigned char * const end)
12475 tag = read_uleb128 (p, &len, end);
12478 /* Tag_compatibility is the only generic GNU attribute defined at
12482 val = read_uleb128 (p, &len, end);
12485 printf (_("flag = %d, vendor = "), val);
12488 printf (_("<corrupt>\n"));
12489 warn (_("corrupt vendor attribute\n"));
12495 size_t maxlen = (end - p) - 1;
12497 print_symbol ((int) maxlen, (const char *) p);
12498 p += strnlen ((char *) p, maxlen) + 1;
12502 printf (_("<corrupt>"));
12503 p = (unsigned char *) end;
12510 if ((tag & 2) == 0 && display_proc_gnu_attribute)
12511 return display_proc_gnu_attribute (p, tag, end);
12513 return display_tag_value (tag, p, end);
12516 static unsigned char *
12517 display_power_gnu_attribute (unsigned char * p,
12519 const unsigned char * const end)
12524 if (tag == Tag_GNU_Power_ABI_FP)
12526 val = read_uleb128 (p, &len, end);
12528 printf (" Tag_GNU_Power_ABI_FP: ");
12533 printf (_("Hard or soft float\n"));
12536 printf (_("Hard float\n"));
12539 printf (_("Soft float\n"));
12542 printf (_("Single-precision hard float\n"));
12545 printf ("??? (%d)\n", val);
12551 if (tag == Tag_GNU_Power_ABI_Vector)
12553 val = read_uleb128 (p, &len, end);
12555 printf (" Tag_GNU_Power_ABI_Vector: ");
12559 printf (_("Any\n"));
12562 printf (_("Generic\n"));
12565 printf ("AltiVec\n");
12571 printf ("??? (%d)\n", val);
12577 if (tag == Tag_GNU_Power_ABI_Struct_Return)
12581 warn (_("corrupt Tag_GNU_Power_ABI_Struct_Return\n"));
12585 val = read_uleb128 (p, &len, end);
12587 printf (" Tag_GNU_Power_ABI_Struct_Return: ");
12591 printf (_("Any\n"));
12594 printf ("r3/r4\n");
12597 printf (_("Memory\n"));
12600 printf ("??? (%d)\n", val);
12606 return display_tag_value (tag & 1, p, end);
12610 display_sparc_hwcaps (int mask)
12616 if (mask & ELF_SPARC_HWCAP_MUL32)
12617 fputs ("mul32", stdout), first = 0;
12618 if (mask & ELF_SPARC_HWCAP_DIV32)
12619 printf ("%sdiv32", first ? "" : "|"), first = 0;
12620 if (mask & ELF_SPARC_HWCAP_FSMULD)
12621 printf ("%sfsmuld", first ? "" : "|"), first = 0;
12622 if (mask & ELF_SPARC_HWCAP_V8PLUS)
12623 printf ("%sv8plus", first ? "" : "|"), first = 0;
12624 if (mask & ELF_SPARC_HWCAP_POPC)
12625 printf ("%spopc", first ? "" : "|"), first = 0;
12626 if (mask & ELF_SPARC_HWCAP_VIS)
12627 printf ("%svis", first ? "" : "|"), first = 0;
12628 if (mask & ELF_SPARC_HWCAP_VIS2)
12629 printf ("%svis2", first ? "" : "|"), first = 0;
12630 if (mask & ELF_SPARC_HWCAP_ASI_BLK_INIT)
12631 printf ("%sASIBlkInit", first ? "" : "|"), first = 0;
12632 if (mask & ELF_SPARC_HWCAP_FMAF)
12633 printf ("%sfmaf", first ? "" : "|"), first = 0;
12634 if (mask & ELF_SPARC_HWCAP_VIS3)
12635 printf ("%svis3", first ? "" : "|"), first = 0;
12636 if (mask & ELF_SPARC_HWCAP_HPC)
12637 printf ("%shpc", first ? "" : "|"), first = 0;
12638 if (mask & ELF_SPARC_HWCAP_RANDOM)
12639 printf ("%srandom", first ? "" : "|"), first = 0;
12640 if (mask & ELF_SPARC_HWCAP_TRANS)
12641 printf ("%strans", first ? "" : "|"), first = 0;
12642 if (mask & ELF_SPARC_HWCAP_FJFMAU)
12643 printf ("%sfjfmau", first ? "" : "|"), first = 0;
12644 if (mask & ELF_SPARC_HWCAP_IMA)
12645 printf ("%sima", first ? "" : "|"), first = 0;
12646 if (mask & ELF_SPARC_HWCAP_ASI_CACHE_SPARING)
12647 printf ("%scspare", first ? "" : "|"), first = 0;
12650 fputc ('0', stdout);
12651 fputc ('\n', stdout);
12655 display_sparc_hwcaps2 (int mask)
12661 if (mask & ELF_SPARC_HWCAP2_FJATHPLUS)
12662 fputs ("fjathplus", stdout), first = 0;
12663 if (mask & ELF_SPARC_HWCAP2_VIS3B)
12664 printf ("%svis3b", first ? "" : "|"), first = 0;
12665 if (mask & ELF_SPARC_HWCAP2_ADP)
12666 printf ("%sadp", first ? "" : "|"), first = 0;
12667 if (mask & ELF_SPARC_HWCAP2_SPARC5)
12668 printf ("%ssparc5", first ? "" : "|"), first = 0;
12669 if (mask & ELF_SPARC_HWCAP2_MWAIT)
12670 printf ("%smwait", first ? "" : "|"), first = 0;
12671 if (mask & ELF_SPARC_HWCAP2_XMPMUL)
12672 printf ("%sxmpmul", first ? "" : "|"), first = 0;
12673 if (mask & ELF_SPARC_HWCAP2_XMONT)
12674 printf ("%sxmont2", first ? "" : "|"), first = 0;
12675 if (mask & ELF_SPARC_HWCAP2_NSEC)
12676 printf ("%snsec", first ? "" : "|"), first = 0;
12677 if (mask & ELF_SPARC_HWCAP2_FJATHHPC)
12678 printf ("%sfjathhpc", first ? "" : "|"), first = 0;
12679 if (mask & ELF_SPARC_HWCAP2_FJDES)
12680 printf ("%sfjdes", first ? "" : "|"), first = 0;
12681 if (mask & ELF_SPARC_HWCAP2_FJAES)
12682 printf ("%sfjaes", first ? "" : "|"), first = 0;
12685 fputc ('0', stdout);
12686 fputc ('\n', stdout);
12689 static unsigned char *
12690 display_sparc_gnu_attribute (unsigned char * p,
12692 const unsigned char * const end)
12697 if (tag == Tag_GNU_Sparc_HWCAPS)
12699 val = read_uleb128 (p, &len, end);
12701 printf (" Tag_GNU_Sparc_HWCAPS: ");
12702 display_sparc_hwcaps (val);
12705 if (tag == Tag_GNU_Sparc_HWCAPS2)
12707 val = read_uleb128 (p, &len, end);
12709 printf (" Tag_GNU_Sparc_HWCAPS2: ");
12710 display_sparc_hwcaps2 (val);
12714 return display_tag_value (tag, p, end);
12718 print_mips_fp_abi_value (int val)
12722 case Val_GNU_MIPS_ABI_FP_ANY:
12723 printf (_("Hard or soft float\n"));
12725 case Val_GNU_MIPS_ABI_FP_DOUBLE:
12726 printf (_("Hard float (double precision)\n"));
12728 case Val_GNU_MIPS_ABI_FP_SINGLE:
12729 printf (_("Hard float (single precision)\n"));
12731 case Val_GNU_MIPS_ABI_FP_SOFT:
12732 printf (_("Soft float\n"));
12734 case Val_GNU_MIPS_ABI_FP_OLD_64:
12735 printf (_("Hard float (MIPS32r2 64-bit FPU 12 callee-saved)\n"));
12737 case Val_GNU_MIPS_ABI_FP_XX:
12738 printf (_("Hard float (32-bit CPU, Any FPU)\n"));
12740 case Val_GNU_MIPS_ABI_FP_64:
12741 printf (_("Hard float (32-bit CPU, 64-bit FPU)\n"));
12743 case Val_GNU_MIPS_ABI_FP_64A:
12744 printf (_("Hard float compat (32-bit CPU, 64-bit FPU)\n"));
12747 printf ("??? (%d)\n", val);
12752 static unsigned char *
12753 display_mips_gnu_attribute (unsigned char * p,
12755 const unsigned char * const end)
12757 if (tag == Tag_GNU_MIPS_ABI_FP)
12762 val = read_uleb128 (p, &len, end);
12764 printf (" Tag_GNU_MIPS_ABI_FP: ");
12766 print_mips_fp_abi_value (val);
12771 if (tag == Tag_GNU_MIPS_ABI_MSA)
12776 val = read_uleb128 (p, &len, end);
12778 printf (" Tag_GNU_MIPS_ABI_MSA: ");
12782 case Val_GNU_MIPS_ABI_MSA_ANY:
12783 printf (_("Any MSA or not\n"));
12785 case Val_GNU_MIPS_ABI_MSA_128:
12786 printf (_("128-bit MSA\n"));
12789 printf ("??? (%d)\n", val);
12795 return display_tag_value (tag & 1, p, end);
12798 static unsigned char *
12799 display_tic6x_attribute (unsigned char * p,
12800 const unsigned char * const end)
12806 tag = read_uleb128 (p, &len, end);
12812 val = read_uleb128 (p, &len, end);
12814 printf (" Tag_ISA: ");
12818 case C6XABI_Tag_ISA_none:
12819 printf (_("None\n"));
12821 case C6XABI_Tag_ISA_C62X:
12824 case C6XABI_Tag_ISA_C67X:
12827 case C6XABI_Tag_ISA_C67XP:
12828 printf ("C67x+\n");
12830 case C6XABI_Tag_ISA_C64X:
12833 case C6XABI_Tag_ISA_C64XP:
12834 printf ("C64x+\n");
12836 case C6XABI_Tag_ISA_C674X:
12837 printf ("C674x\n");
12840 printf ("??? (%d)\n", val);
12845 case Tag_ABI_wchar_t:
12846 val = read_uleb128 (p, &len, end);
12848 printf (" Tag_ABI_wchar_t: ");
12852 printf (_("Not used\n"));
12855 printf (_("2 bytes\n"));
12858 printf (_("4 bytes\n"));
12861 printf ("??? (%d)\n", val);
12866 case Tag_ABI_stack_align_needed:
12867 val = read_uleb128 (p, &len, end);
12869 printf (" Tag_ABI_stack_align_needed: ");
12873 printf (_("8-byte\n"));
12876 printf (_("16-byte\n"));
12879 printf ("??? (%d)\n", val);
12884 case Tag_ABI_stack_align_preserved:
12885 val = read_uleb128 (p, &len, end);
12887 printf (" Tag_ABI_stack_align_preserved: ");
12891 printf (_("8-byte\n"));
12894 printf (_("16-byte\n"));
12897 printf ("??? (%d)\n", val);
12903 val = read_uleb128 (p, &len, end);
12905 printf (" Tag_ABI_DSBT: ");
12909 printf (_("DSBT addressing not used\n"));
12912 printf (_("DSBT addressing used\n"));
12915 printf ("??? (%d)\n", val);
12921 val = read_uleb128 (p, &len, end);
12923 printf (" Tag_ABI_PID: ");
12927 printf (_("Data addressing position-dependent\n"));
12930 printf (_("Data addressing position-independent, GOT near DP\n"));
12933 printf (_("Data addressing position-independent, GOT far from DP\n"));
12936 printf ("??? (%d)\n", val);
12942 val = read_uleb128 (p, &len, end);
12944 printf (" Tag_ABI_PIC: ");
12948 printf (_("Code addressing position-dependent\n"));
12951 printf (_("Code addressing position-independent\n"));
12954 printf ("??? (%d)\n", val);
12959 case Tag_ABI_array_object_alignment:
12960 val = read_uleb128 (p, &len, end);
12962 printf (" Tag_ABI_array_object_alignment: ");
12966 printf (_("8-byte\n"));
12969 printf (_("4-byte\n"));
12972 printf (_("16-byte\n"));
12975 printf ("??? (%d)\n", val);
12980 case Tag_ABI_array_object_align_expected:
12981 val = read_uleb128 (p, &len, end);
12983 printf (" Tag_ABI_array_object_align_expected: ");
12987 printf (_("8-byte\n"));
12990 printf (_("4-byte\n"));
12993 printf (_("16-byte\n"));
12996 printf ("??? (%d)\n", val);
13001 case Tag_ABI_compatibility:
13003 val = read_uleb128 (p, &len, end);
13005 printf (" Tag_ABI_compatibility: ");
13006 printf (_("flag = %d, vendor = "), val);
13009 size_t maxlen = (end - p) - 1;
13011 print_symbol ((int) maxlen, (const char *) p);
13012 p += strnlen ((char *) p, maxlen) + 1;
13016 printf (_("<corrupt>"));
13017 p = (unsigned char *) end;
13023 case Tag_ABI_conformance:
13025 printf (" Tag_ABI_conformance: \"");
13028 size_t maxlen = (end - p) - 1;
13030 print_symbol ((int) maxlen, (const char *) p);
13031 p += strnlen ((char *) p, maxlen) + 1;
13035 printf (_("<corrupt>"));
13036 p = (unsigned char *) end;
13043 return display_tag_value (tag, p, end);
13047 display_raw_attribute (unsigned char * p, unsigned char * end)
13049 unsigned long addr = 0;
13050 size_t bytes = end - p;
13057 int lbytes = (bytes > 16 ? 16 : bytes);
13059 printf (" 0x%8.8lx ", addr);
13061 for (j = 0; j < 16; j++)
13064 printf ("%2.2x", p[j]);
13072 for (j = 0; j < lbytes; j++)
13075 if (k >= ' ' && k < 0x7f)
13091 static unsigned char *
13092 display_msp430x_attribute (unsigned char * p,
13093 const unsigned char * const end)
13099 tag = read_uleb128 (p, & len, end);
13104 case OFBA_MSPABI_Tag_ISA:
13105 val = read_uleb128 (p, &len, end);
13107 printf (" Tag_ISA: ");
13110 case 0: printf (_("None\n")); break;
13111 case 1: printf (_("MSP430\n")); break;
13112 case 2: printf (_("MSP430X\n")); break;
13113 default: printf ("??? (%d)\n", val); break;
13117 case OFBA_MSPABI_Tag_Code_Model:
13118 val = read_uleb128 (p, &len, end);
13120 printf (" Tag_Code_Model: ");
13123 case 0: printf (_("None\n")); break;
13124 case 1: printf (_("Small\n")); break;
13125 case 2: printf (_("Large\n")); break;
13126 default: printf ("??? (%d)\n", val); break;
13130 case OFBA_MSPABI_Tag_Data_Model:
13131 val = read_uleb128 (p, &len, end);
13133 printf (" Tag_Data_Model: ");
13136 case 0: printf (_("None\n")); break;
13137 case 1: printf (_("Small\n")); break;
13138 case 2: printf (_("Large\n")); break;
13139 case 3: printf (_("Restricted Large\n")); break;
13140 default: printf ("??? (%d)\n", val); break;
13145 printf (_(" <unknown tag %d>: "), tag);
13152 size_t maxlen = (end - p) - 1;
13154 print_symbol ((int) maxlen, (const char *) p);
13155 p += strnlen ((char *) p, maxlen) + 1;
13159 printf (_("<corrupt>"));
13160 p = (unsigned char *) end;
13166 val = read_uleb128 (p, &len, end);
13168 printf ("%d (0x%x)\n", val, val);
13178 process_attributes (FILE * file,
13179 const char * public_name,
13180 unsigned int proc_type,
13181 unsigned char * (* display_pub_attribute) (unsigned char *, const unsigned char * const),
13182 unsigned char * (* display_proc_gnu_attribute) (unsigned char *, int, const unsigned char * const))
13184 Elf_Internal_Shdr * sect;
13187 /* Find the section header so that we get the size. */
13188 for (i = 0, sect = section_headers;
13189 i < elf_header.e_shnum;
13192 unsigned char * contents;
13195 if (sect->sh_type != proc_type && sect->sh_type != SHT_GNU_ATTRIBUTES)
13198 contents = (unsigned char *) get_data (NULL, file, sect->sh_offset, 1,
13199 sect->sh_size, _("attributes"));
13200 if (contents == NULL)
13206 bfd_vma section_len;
13208 section_len = sect->sh_size - 1;
13211 while (section_len > 0)
13214 unsigned int namelen;
13215 bfd_boolean public_section;
13216 bfd_boolean gnu_section;
13218 if (section_len <= 4)
13220 error (_("Tag section ends prematurely\n"));
13223 attr_len = byte_get (p, 4);
13226 if (attr_len > section_len)
13228 error (_("Bad attribute length (%u > %u)\n"),
13229 (unsigned) attr_len, (unsigned) section_len);
13230 attr_len = section_len;
13232 /* PR 17531: file: 001-101425-0.004 */
13233 else if (attr_len < 5)
13235 error (_("Attribute length of %u is too small\n"), (unsigned) attr_len);
13239 section_len -= attr_len;
13242 namelen = strnlen ((char *) p, attr_len) + 1;
13243 if (namelen == 0 || namelen >= attr_len)
13245 error (_("Corrupt attribute section name\n"));
13249 printf (_("Attribute Section: "));
13250 print_symbol (INT_MAX, (const char *) p);
13253 if (public_name && streq ((char *) p, public_name))
13254 public_section = TRUE;
13256 public_section = FALSE;
13258 if (streq ((char *) p, "gnu"))
13259 gnu_section = TRUE;
13261 gnu_section = FALSE;
13264 attr_len -= namelen;
13266 while (attr_len > 0 && p < contents + sect->sh_size)
13271 unsigned char * end;
13273 /* PR binutils/17531: Safe handling of corrupt files. */
13276 error (_("Unused bytes at end of section\n"));
13282 size = byte_get (p, 4);
13283 if (size > attr_len)
13285 error (_("Bad subsection length (%u > %u)\n"),
13286 (unsigned) size, (unsigned) attr_len);
13289 /* PR binutils/17531: Safe handling of corrupt files. */
13292 error (_("Bad subsection length (%u < 6)\n"),
13299 end = p + size - 1;
13300 assert (end <= contents + sect->sh_size);
13306 printf (_("File Attributes\n"));
13309 printf (_("Section Attributes:"));
13312 printf (_("Symbol Attributes:"));
13318 val = read_uleb128 (p, &j, end);
13322 printf (" %d", val);
13327 printf (_("Unknown tag: %d\n"), tag);
13328 public_section = FALSE;
13332 if (public_section && display_pub_attribute != NULL)
13335 p = display_pub_attribute (p, end);
13338 else if (gnu_section && display_proc_gnu_attribute != NULL)
13341 p = display_gnu_attribute (p,
13342 display_proc_gnu_attribute,
13348 printf (_(" Unknown attribute:\n"));
13349 display_raw_attribute (p, end);
13358 printf (_("Unknown format '%c' (%d)\n"), *p, *p);
13366 process_arm_specific (FILE * file)
13368 return process_attributes (file, "aeabi", SHT_ARM_ATTRIBUTES,
13369 display_arm_attribute, NULL);
13373 process_power_specific (FILE * file)
13375 return process_attributes (file, NULL, SHT_GNU_ATTRIBUTES, NULL,
13376 display_power_gnu_attribute);
13380 process_sparc_specific (FILE * file)
13382 return process_attributes (file, NULL, SHT_GNU_ATTRIBUTES, NULL,
13383 display_sparc_gnu_attribute);
13387 process_tic6x_specific (FILE * file)
13389 return process_attributes (file, "c6xabi", SHT_C6000_ATTRIBUTES,
13390 display_tic6x_attribute, NULL);
13394 process_msp430x_specific (FILE * file)
13396 return process_attributes (file, "mspabi", SHT_MSP430_ATTRIBUTES,
13397 display_msp430x_attribute, NULL);
13400 /* DATA points to the contents of a MIPS GOT that starts at VMA PLTGOT.
13401 Print the Address, Access and Initial fields of an entry at VMA ADDR
13402 and return the VMA of the next entry, or -1 if there was a problem.
13403 Does not read from DATA_END or beyond. */
13406 print_mips_got_entry (unsigned char * data, bfd_vma pltgot, bfd_vma addr,
13407 unsigned char * data_end)
13410 print_vma (addr, LONG_HEX);
13412 if (addr < pltgot + 0xfff0)
13413 printf ("%6d(gp)", (int) (addr - pltgot - 0x7ff0));
13415 printf ("%10s", "");
13418 printf ("%*s", is_32bit_elf ? 8 : 16, _("<unknown>"));
13422 unsigned char * from = data + addr - pltgot;
13424 if (from + (is_32bit_elf ? 4 : 8) > data_end)
13426 warn (_("MIPS GOT entry extends beyond the end of available data\n"));
13427 printf ("%*s", is_32bit_elf ? 8 : 16, _("<corrupt>"));
13428 return (bfd_vma) -1;
13432 entry = byte_get (data + addr - pltgot, is_32bit_elf ? 4 : 8);
13433 print_vma (entry, LONG_HEX);
13436 return addr + (is_32bit_elf ? 4 : 8);
13439 /* DATA points to the contents of a MIPS PLT GOT that starts at VMA
13440 PLTGOT. Print the Address and Initial fields of an entry at VMA
13441 ADDR and return the VMA of the next entry. */
13444 print_mips_pltgot_entry (unsigned char * data, bfd_vma pltgot, bfd_vma addr)
13447 print_vma (addr, LONG_HEX);
13450 printf ("%*s", is_32bit_elf ? 8 : 16, _("<unknown>"));
13455 entry = byte_get (data + addr - pltgot, is_32bit_elf ? 4 : 8);
13456 print_vma (entry, LONG_HEX);
13458 return addr + (is_32bit_elf ? 4 : 8);
13462 print_mips_ases (unsigned int mask)
13464 if (mask & AFL_ASE_DSP)
13465 fputs ("\n\tDSP ASE", stdout);
13466 if (mask & AFL_ASE_DSPR2)
13467 fputs ("\n\tDSP R2 ASE", stdout);
13468 if (mask & AFL_ASE_EVA)
13469 fputs ("\n\tEnhanced VA Scheme", stdout);
13470 if (mask & AFL_ASE_MCU)
13471 fputs ("\n\tMCU (MicroController) ASE", stdout);
13472 if (mask & AFL_ASE_MDMX)
13473 fputs ("\n\tMDMX ASE", stdout);
13474 if (mask & AFL_ASE_MIPS3D)
13475 fputs ("\n\tMIPS-3D ASE", stdout);
13476 if (mask & AFL_ASE_MT)
13477 fputs ("\n\tMT ASE", stdout);
13478 if (mask & AFL_ASE_SMARTMIPS)
13479 fputs ("\n\tSmartMIPS ASE", stdout);
13480 if (mask & AFL_ASE_VIRT)
13481 fputs ("\n\tVZ ASE", stdout);
13482 if (mask & AFL_ASE_MSA)
13483 fputs ("\n\tMSA ASE", stdout);
13484 if (mask & AFL_ASE_MIPS16)
13485 fputs ("\n\tMIPS16 ASE", stdout);
13486 if (mask & AFL_ASE_MICROMIPS)
13487 fputs ("\n\tMICROMIPS ASE", stdout);
13488 if (mask & AFL_ASE_XPA)
13489 fputs ("\n\tXPA ASE", stdout);
13491 fprintf (stdout, "\n\t%s", _("None"));
13492 else if ((mask & ~AFL_ASE_MASK) != 0)
13493 fprintf (stdout, "\n\t%s (%x)", _("Unknown"), mask & ~AFL_ASE_MASK);
13497 print_mips_isa_ext (unsigned int isa_ext)
13502 fputs (_("None"), stdout);
13505 fputs ("RMI XLR", stdout);
13507 case AFL_EXT_OCTEON3:
13508 fputs ("Cavium Networks Octeon3", stdout);
13510 case AFL_EXT_OCTEON2:
13511 fputs ("Cavium Networks Octeon2", stdout);
13513 case AFL_EXT_OCTEONP:
13514 fputs ("Cavium Networks OcteonP", stdout);
13516 case AFL_EXT_LOONGSON_3A:
13517 fputs ("Loongson 3A", stdout);
13519 case AFL_EXT_OCTEON:
13520 fputs ("Cavium Networks Octeon", stdout);
13523 fputs ("Toshiba R5900", stdout);
13526 fputs ("MIPS R4650", stdout);
13529 fputs ("LSI R4010", stdout);
13532 fputs ("NEC VR4100", stdout);
13535 fputs ("Toshiba R3900", stdout);
13537 case AFL_EXT_10000:
13538 fputs ("MIPS R10000", stdout);
13541 fputs ("Broadcom SB-1", stdout);
13544 fputs ("NEC VR4111/VR4181", stdout);
13547 fputs ("NEC VR4120", stdout);
13550 fputs ("NEC VR5400", stdout);
13553 fputs ("NEC VR5500", stdout);
13555 case AFL_EXT_LOONGSON_2E:
13556 fputs ("ST Microelectronics Loongson 2E", stdout);
13558 case AFL_EXT_LOONGSON_2F:
13559 fputs ("ST Microelectronics Loongson 2F", stdout);
13562 fprintf (stdout, "%s (%d)", _("Unknown"), isa_ext);
13567 get_mips_reg_size (int reg_size)
13569 return (reg_size == AFL_REG_NONE) ? 0
13570 : (reg_size == AFL_REG_32) ? 32
13571 : (reg_size == AFL_REG_64) ? 64
13572 : (reg_size == AFL_REG_128) ? 128
13577 process_mips_specific (FILE * file)
13579 Elf_Internal_Dyn * entry;
13580 Elf_Internal_Shdr *sect = NULL;
13581 size_t liblist_offset = 0;
13582 size_t liblistno = 0;
13583 size_t conflictsno = 0;
13584 size_t options_offset = 0;
13585 size_t conflicts_offset = 0;
13586 size_t pltrelsz = 0;
13588 bfd_vma pltgot = 0;
13589 bfd_vma mips_pltgot = 0;
13590 bfd_vma jmprel = 0;
13591 bfd_vma local_gotno = 0;
13592 bfd_vma gotsym = 0;
13593 bfd_vma symtabno = 0;
13595 process_attributes (file, NULL, SHT_GNU_ATTRIBUTES, NULL,
13596 display_mips_gnu_attribute);
13598 sect = find_section (".MIPS.abiflags");
13602 Elf_External_ABIFlags_v0 *abiflags_ext;
13603 Elf_Internal_ABIFlags_v0 abiflags_in;
13605 if (sizeof (Elf_External_ABIFlags_v0) != sect->sh_size)
13606 fputs ("\nCorrupt ABI Flags section.\n", stdout);
13609 abiflags_ext = get_data (NULL, file, sect->sh_offset, 1,
13610 sect->sh_size, _("MIPS ABI Flags section"));
13613 abiflags_in.version = BYTE_GET (abiflags_ext->version);
13614 abiflags_in.isa_level = BYTE_GET (abiflags_ext->isa_level);
13615 abiflags_in.isa_rev = BYTE_GET (abiflags_ext->isa_rev);
13616 abiflags_in.gpr_size = BYTE_GET (abiflags_ext->gpr_size);
13617 abiflags_in.cpr1_size = BYTE_GET (abiflags_ext->cpr1_size);
13618 abiflags_in.cpr2_size = BYTE_GET (abiflags_ext->cpr2_size);
13619 abiflags_in.fp_abi = BYTE_GET (abiflags_ext->fp_abi);
13620 abiflags_in.isa_ext = BYTE_GET (abiflags_ext->isa_ext);
13621 abiflags_in.ases = BYTE_GET (abiflags_ext->ases);
13622 abiflags_in.flags1 = BYTE_GET (abiflags_ext->flags1);
13623 abiflags_in.flags2 = BYTE_GET (abiflags_ext->flags2);
13625 printf ("\nMIPS ABI Flags Version: %d\n", abiflags_in.version);
13626 printf ("\nISA: MIPS%d", abiflags_in.isa_level);
13627 if (abiflags_in.isa_rev > 1)
13628 printf ("r%d", abiflags_in.isa_rev);
13629 printf ("\nGPR size: %d",
13630 get_mips_reg_size (abiflags_in.gpr_size));
13631 printf ("\nCPR1 size: %d",
13632 get_mips_reg_size (abiflags_in.cpr1_size));
13633 printf ("\nCPR2 size: %d",
13634 get_mips_reg_size (abiflags_in.cpr2_size));
13635 fputs ("\nFP ABI: ", stdout);
13636 print_mips_fp_abi_value (abiflags_in.fp_abi);
13637 fputs ("ISA Extension: ", stdout);
13638 print_mips_isa_ext (abiflags_in.isa_ext);
13639 fputs ("\nASEs:", stdout);
13640 print_mips_ases (abiflags_in.ases);
13641 printf ("\nFLAGS 1: %8.8lx", abiflags_in.flags1);
13642 printf ("\nFLAGS 2: %8.8lx", abiflags_in.flags2);
13643 fputc ('\n', stdout);
13644 free (abiflags_ext);
13649 /* We have a lot of special sections. Thanks SGI! */
13650 if (dynamic_section == NULL)
13651 /* No information available. */
13654 for (entry = dynamic_section;
13655 /* PR 17531 file: 012-50589-0.004. */
13656 entry < dynamic_section + dynamic_nent && entry->d_tag != DT_NULL;
13658 switch (entry->d_tag)
13660 case DT_MIPS_LIBLIST:
13662 = offset_from_vma (file, entry->d_un.d_val,
13663 liblistno * sizeof (Elf32_External_Lib));
13665 case DT_MIPS_LIBLISTNO:
13666 liblistno = entry->d_un.d_val;
13668 case DT_MIPS_OPTIONS:
13669 options_offset = offset_from_vma (file, entry->d_un.d_val, 0);
13671 case DT_MIPS_CONFLICT:
13673 = offset_from_vma (file, entry->d_un.d_val,
13674 conflictsno * sizeof (Elf32_External_Conflict));
13676 case DT_MIPS_CONFLICTNO:
13677 conflictsno = entry->d_un.d_val;
13680 pltgot = entry->d_un.d_ptr;
13682 case DT_MIPS_LOCAL_GOTNO:
13683 local_gotno = entry->d_un.d_val;
13685 case DT_MIPS_GOTSYM:
13686 gotsym = entry->d_un.d_val;
13688 case DT_MIPS_SYMTABNO:
13689 symtabno = entry->d_un.d_val;
13691 case DT_MIPS_PLTGOT:
13692 mips_pltgot = entry->d_un.d_ptr;
13695 pltrel = entry->d_un.d_val;
13698 pltrelsz = entry->d_un.d_val;
13701 jmprel = entry->d_un.d_ptr;
13707 if (liblist_offset != 0 && liblistno != 0 && do_dynamic)
13709 Elf32_External_Lib * elib;
13712 elib = (Elf32_External_Lib *) get_data (NULL, file, liblist_offset,
13714 sizeof (Elf32_External_Lib),
13715 _("liblist section data"));
13718 printf (_("\nSection '.liblist' contains %lu entries:\n"),
13719 (unsigned long) liblistno);
13720 fputs (_(" Library Time Stamp Checksum Version Flags\n"),
13723 for (cnt = 0; cnt < liblistno; ++cnt)
13730 liblist.l_name = BYTE_GET (elib[cnt].l_name);
13731 atime = BYTE_GET (elib[cnt].l_time_stamp);
13732 liblist.l_checksum = BYTE_GET (elib[cnt].l_checksum);
13733 liblist.l_version = BYTE_GET (elib[cnt].l_version);
13734 liblist.l_flags = BYTE_GET (elib[cnt].l_flags);
13736 tmp = gmtime (&atime);
13737 snprintf (timebuf, sizeof (timebuf),
13738 "%04u-%02u-%02uT%02u:%02u:%02u",
13739 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
13740 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
13742 printf ("%3lu: ", (unsigned long) cnt);
13743 if (VALID_DYNAMIC_NAME (liblist.l_name))
13744 print_symbol (20, GET_DYNAMIC_NAME (liblist.l_name));
13746 printf (_("<corrupt: %9ld>"), liblist.l_name);
13747 printf (" %s %#10lx %-7ld", timebuf, liblist.l_checksum,
13748 liblist.l_version);
13750 if (liblist.l_flags == 0)
13754 static const struct
13761 { " EXACT_MATCH", LL_EXACT_MATCH },
13762 { " IGNORE_INT_VER", LL_IGNORE_INT_VER },
13763 { " REQUIRE_MINOR", LL_REQUIRE_MINOR },
13764 { " EXPORTS", LL_EXPORTS },
13765 { " DELAY_LOAD", LL_DELAY_LOAD },
13766 { " DELTA", LL_DELTA }
13768 int flags = liblist.l_flags;
13771 for (fcnt = 0; fcnt < ARRAY_SIZE (l_flags_vals); ++fcnt)
13772 if ((flags & l_flags_vals[fcnt].bit) != 0)
13774 fputs (l_flags_vals[fcnt].name, stdout);
13775 flags ^= l_flags_vals[fcnt].bit;
13778 printf (" %#x", (unsigned int) flags);
13788 if (options_offset != 0)
13790 Elf_External_Options * eopt;
13791 Elf_Internal_Options * iopt;
13792 Elf_Internal_Options * option;
13795 sect = section_headers;
13797 /* Find the section header so that we get the size. */
13798 sect = find_section_by_type (SHT_MIPS_OPTIONS);
13799 /* PR 17533 file: 012-277276-0.004. */
13802 error (_("No MIPS_OPTIONS header found\n"));
13806 eopt = (Elf_External_Options *) get_data (NULL, file, options_offset, 1,
13807 sect->sh_size, _("options"));
13810 iopt = (Elf_Internal_Options *)
13811 cmalloc ((sect->sh_size / sizeof (eopt)), sizeof (* iopt));
13814 error (_("Out of memory allocatinf space for MIPS options\n"));
13821 while (offset <= sect->sh_size - sizeof (* eopt))
13823 Elf_External_Options * eoption;
13825 eoption = (Elf_External_Options *) ((char *) eopt + offset);
13827 option->kind = BYTE_GET (eoption->kind);
13828 option->size = BYTE_GET (eoption->size);
13829 option->section = BYTE_GET (eoption->section);
13830 option->info = BYTE_GET (eoption->info);
13832 /* PR 17531: file: ffa0fa3b. */
13833 if (option->size < sizeof (* eopt)
13834 || offset + option->size > sect->sh_size)
13836 warn (_("Invalid size (%u) for MIPS option\n"), option->size);
13837 option->size = sizeof (* eopt);
13840 offset += option->size;
13846 printf (_("\nSection '%s' contains %d entries:\n"),
13847 printable_section_name (sect), cnt);
13856 switch (option->kind)
13859 /* This shouldn't happen. */
13860 printf (" NULL %d %lx", option->section, option->info);
13863 printf (" REGINFO ");
13864 if (elf_header.e_machine == EM_MIPS)
13867 Elf32_External_RegInfo * ereg;
13868 Elf32_RegInfo reginfo;
13870 ereg = (Elf32_External_RegInfo *) (option + 1);
13871 reginfo.ri_gprmask = BYTE_GET (ereg->ri_gprmask);
13872 reginfo.ri_cprmask[0] = BYTE_GET (ereg->ri_cprmask[0]);
13873 reginfo.ri_cprmask[1] = BYTE_GET (ereg->ri_cprmask[1]);
13874 reginfo.ri_cprmask[2] = BYTE_GET (ereg->ri_cprmask[2]);
13875 reginfo.ri_cprmask[3] = BYTE_GET (ereg->ri_cprmask[3]);
13876 reginfo.ri_gp_value = BYTE_GET (ereg->ri_gp_value);
13878 printf ("GPR %08lx GP 0x%lx\n",
13879 reginfo.ri_gprmask,
13880 (unsigned long) reginfo.ri_gp_value);
13881 printf (" CPR0 %08lx CPR1 %08lx CPR2 %08lx CPR3 %08lx\n",
13882 reginfo.ri_cprmask[0], reginfo.ri_cprmask[1],
13883 reginfo.ri_cprmask[2], reginfo.ri_cprmask[3]);
13888 Elf64_External_RegInfo * ereg;
13889 Elf64_Internal_RegInfo reginfo;
13891 ereg = (Elf64_External_RegInfo *) (option + 1);
13892 reginfo.ri_gprmask = BYTE_GET (ereg->ri_gprmask);
13893 reginfo.ri_cprmask[0] = BYTE_GET (ereg->ri_cprmask[0]);
13894 reginfo.ri_cprmask[1] = BYTE_GET (ereg->ri_cprmask[1]);
13895 reginfo.ri_cprmask[2] = BYTE_GET (ereg->ri_cprmask[2]);
13896 reginfo.ri_cprmask[3] = BYTE_GET (ereg->ri_cprmask[3]);
13897 reginfo.ri_gp_value = BYTE_GET (ereg->ri_gp_value);
13899 printf ("GPR %08lx GP 0x",
13900 reginfo.ri_gprmask);
13901 printf_vma (reginfo.ri_gp_value);
13904 printf (" CPR0 %08lx CPR1 %08lx CPR2 %08lx CPR3 %08lx\n",
13905 reginfo.ri_cprmask[0], reginfo.ri_cprmask[1],
13906 reginfo.ri_cprmask[2], reginfo.ri_cprmask[3]);
13910 case ODK_EXCEPTIONS:
13911 fputs (" EXCEPTIONS fpe_min(", stdout);
13912 process_mips_fpe_exception (option->info & OEX_FPU_MIN);
13913 fputs (") fpe_max(", stdout);
13914 process_mips_fpe_exception ((option->info & OEX_FPU_MAX) >> 8);
13915 fputs (")", stdout);
13917 if (option->info & OEX_PAGE0)
13918 fputs (" PAGE0", stdout);
13919 if (option->info & OEX_SMM)
13920 fputs (" SMM", stdout);
13921 if (option->info & OEX_FPDBUG)
13922 fputs (" FPDBUG", stdout);
13923 if (option->info & OEX_DISMISS)
13924 fputs (" DISMISS", stdout);
13927 fputs (" PAD ", stdout);
13928 if (option->info & OPAD_PREFIX)
13929 fputs (" PREFIX", stdout);
13930 if (option->info & OPAD_POSTFIX)
13931 fputs (" POSTFIX", stdout);
13932 if (option->info & OPAD_SYMBOL)
13933 fputs (" SYMBOL", stdout);
13936 fputs (" HWPATCH ", stdout);
13937 if (option->info & OHW_R4KEOP)
13938 fputs (" R4KEOP", stdout);
13939 if (option->info & OHW_R8KPFETCH)
13940 fputs (" R8KPFETCH", stdout);
13941 if (option->info & OHW_R5KEOP)
13942 fputs (" R5KEOP", stdout);
13943 if (option->info & OHW_R5KCVTL)
13944 fputs (" R5KCVTL", stdout);
13947 fputs (" FILL ", stdout);
13948 /* XXX Print content of info word? */
13951 fputs (" TAGS ", stdout);
13952 /* XXX Print content of info word? */
13955 fputs (" HWAND ", stdout);
13956 if (option->info & OHWA0_R4KEOP_CHECKED)
13957 fputs (" R4KEOP_CHECKED", stdout);
13958 if (option->info & OHWA0_R4KEOP_CLEAN)
13959 fputs (" R4KEOP_CLEAN", stdout);
13962 fputs (" HWOR ", stdout);
13963 if (option->info & OHWA0_R4KEOP_CHECKED)
13964 fputs (" R4KEOP_CHECKED", stdout);
13965 if (option->info & OHWA0_R4KEOP_CLEAN)
13966 fputs (" R4KEOP_CLEAN", stdout);
13969 printf (" GP_GROUP %#06lx self-contained %#06lx",
13970 option->info & OGP_GROUP,
13971 (option->info & OGP_SELF) >> 16);
13974 printf (" IDENT %#06lx self-contained %#06lx",
13975 option->info & OGP_GROUP,
13976 (option->info & OGP_SELF) >> 16);
13979 /* This shouldn't happen. */
13980 printf (" %3d ??? %d %lx",
13981 option->kind, option->section, option->info);
13985 len = sizeof (* eopt);
13986 while (len < option->size)
13988 char datum = * ((char *) eopt + offset + len);
13990 if (ISPRINT (datum))
13991 printf ("%c", datum);
13993 printf ("\\%03o", datum);
13996 fputs ("\n", stdout);
13998 offset += option->size;
14006 if (conflicts_offset != 0 && conflictsno != 0)
14008 Elf32_Conflict * iconf;
14011 if (dynamic_symbols == NULL)
14013 error (_("conflict list found without a dynamic symbol table\n"));
14017 iconf = (Elf32_Conflict *) cmalloc (conflictsno, sizeof (* iconf));
14020 error (_("Out of memory allocating space for dynamic conflicts\n"));
14026 Elf32_External_Conflict * econf32;
14028 econf32 = (Elf32_External_Conflict *)
14029 get_data (NULL, file, conflicts_offset, conflictsno,
14030 sizeof (* econf32), _("conflict"));
14034 for (cnt = 0; cnt < conflictsno; ++cnt)
14035 iconf[cnt] = BYTE_GET (econf32[cnt]);
14041 Elf64_External_Conflict * econf64;
14043 econf64 = (Elf64_External_Conflict *)
14044 get_data (NULL, file, conflicts_offset, conflictsno,
14045 sizeof (* econf64), _("conflict"));
14049 for (cnt = 0; cnt < conflictsno; ++cnt)
14050 iconf[cnt] = BYTE_GET (econf64[cnt]);
14055 printf (_("\nSection '.conflict' contains %lu entries:\n"),
14056 (unsigned long) conflictsno);
14057 puts (_(" Num: Index Value Name"));
14059 for (cnt = 0; cnt < conflictsno; ++cnt)
14061 printf ("%5lu: %8lu ", (unsigned long) cnt, iconf[cnt]);
14063 if (iconf[cnt] >= num_dynamic_syms)
14064 printf (_("<corrupt symbol index>"));
14067 Elf_Internal_Sym * psym;
14069 psym = & dynamic_symbols[iconf[cnt]];
14070 print_vma (psym->st_value, FULL_HEX);
14072 if (VALID_DYNAMIC_NAME (psym->st_name))
14073 print_symbol (25, GET_DYNAMIC_NAME (psym->st_name));
14075 printf (_("<corrupt: %14ld>"), psym->st_name);
14083 if (pltgot != 0 && local_gotno != 0)
14085 bfd_vma ent, local_end, global_end;
14087 unsigned char * data;
14088 unsigned char * data_end;
14092 addr_size = (is_32bit_elf ? 4 : 8);
14093 local_end = pltgot + local_gotno * addr_size;
14095 /* PR binutils/17533 file: 012-111227-0.004 */
14096 if (symtabno < gotsym)
14098 error (_("The GOT symbol offset (%lu) is greater than the symbol table size (%lu)\n"),
14099 (unsigned long) gotsym, (unsigned long) symtabno);
14103 global_end = local_end + (symtabno - gotsym) * addr_size;
14104 /* PR 17531: file: 54c91a34. */
14105 if (global_end < local_end)
14107 error (_("Too many GOT symbols: %lu\n"), (unsigned long) symtabno);
14111 offset = offset_from_vma (file, pltgot, global_end - pltgot);
14112 data = (unsigned char *) get_data (NULL, file, offset,
14113 global_end - pltgot, 1,
14114 _("Global Offset Table data"));
14117 data_end = data + (global_end - pltgot);
14119 printf (_("\nPrimary GOT:\n"));
14120 printf (_(" Canonical gp value: "));
14121 print_vma (pltgot + 0x7ff0, LONG_HEX);
14124 printf (_(" Reserved entries:\n"));
14125 printf (_(" %*s %10s %*s Purpose\n"),
14126 addr_size * 2, _("Address"), _("Access"),
14127 addr_size * 2, _("Initial"));
14128 ent = print_mips_got_entry (data, pltgot, ent, data_end);
14129 printf (_(" Lazy resolver\n"));
14130 if (ent == (bfd_vma) -1)
14131 goto got_print_fail;
14133 && (byte_get (data + ent - pltgot, addr_size)
14134 >> (addr_size * 8 - 1)) != 0)
14136 ent = print_mips_got_entry (data, pltgot, ent, data_end);
14137 printf (_(" Module pointer (GNU extension)\n"));
14138 if (ent == (bfd_vma) -1)
14139 goto got_print_fail;
14143 if (ent < local_end)
14145 printf (_(" Local entries:\n"));
14146 printf (" %*s %10s %*s\n",
14147 addr_size * 2, _("Address"), _("Access"),
14148 addr_size * 2, _("Initial"));
14149 while (ent < local_end)
14151 ent = print_mips_got_entry (data, pltgot, ent, data_end);
14153 if (ent == (bfd_vma) -1)
14154 goto got_print_fail;
14159 if (gotsym < symtabno)
14163 printf (_(" Global entries:\n"));
14164 printf (" %*s %10s %*s %*s %-7s %3s %s\n",
14165 addr_size * 2, _("Address"),
14167 addr_size * 2, _("Initial"),
14168 addr_size * 2, _("Sym.Val."),
14170 /* Note for translators: "Ndx" = abbreviated form of "Index". */
14171 _("Ndx"), _("Name"));
14173 sym_width = (is_32bit_elf ? 80 : 160) - 28 - addr_size * 6 - 1;
14175 for (i = gotsym; i < symtabno; i++)
14177 ent = print_mips_got_entry (data, pltgot, ent, data_end);
14180 if (dynamic_symbols == NULL)
14181 printf (_("<no dynamic symbols>"));
14182 else if (i < num_dynamic_syms)
14184 Elf_Internal_Sym * psym = dynamic_symbols + i;
14186 print_vma (psym->st_value, LONG_HEX);
14187 printf (" %-7s %3s ",
14188 get_symbol_type (ELF_ST_TYPE (psym->st_info)),
14189 get_symbol_index_type (psym->st_shndx));
14191 if (VALID_DYNAMIC_NAME (psym->st_name))
14192 print_symbol (sym_width, GET_DYNAMIC_NAME (psym->st_name));
14194 printf (_("<corrupt: %14ld>"), psym->st_name);
14197 printf (_("<symbol index %lu exceeds number of dynamic symbols>"),
14198 (unsigned long) i);
14201 if (ent == (bfd_vma) -1)
14212 if (mips_pltgot != 0 && jmprel != 0 && pltrel != 0 && pltrelsz != 0)
14215 size_t offset, rel_offset;
14216 unsigned long count, i;
14217 unsigned char * data;
14218 int addr_size, sym_width;
14219 Elf_Internal_Rela * rels;
14221 rel_offset = offset_from_vma (file, jmprel, pltrelsz);
14222 if (pltrel == DT_RELA)
14224 if (!slurp_rela_relocs (file, rel_offset, pltrelsz, &rels, &count))
14229 if (!slurp_rel_relocs (file, rel_offset, pltrelsz, &rels, &count))
14234 addr_size = (is_32bit_elf ? 4 : 8);
14235 end = mips_pltgot + (2 + count) * addr_size;
14237 offset = offset_from_vma (file, mips_pltgot, end - mips_pltgot);
14238 data = (unsigned char *) get_data (NULL, file, offset, end - mips_pltgot,
14239 1, _("Procedure Linkage Table data"));
14243 printf ("\nPLT GOT:\n\n");
14244 printf (_(" Reserved entries:\n"));
14245 printf (_(" %*s %*s Purpose\n"),
14246 addr_size * 2, _("Address"), addr_size * 2, _("Initial"));
14247 ent = print_mips_pltgot_entry (data, mips_pltgot, ent);
14248 printf (_(" PLT lazy resolver\n"));
14249 ent = print_mips_pltgot_entry (data, mips_pltgot, ent);
14250 printf (_(" Module pointer\n"));
14253 printf (_(" Entries:\n"));
14254 printf (" %*s %*s %*s %-7s %3s %s\n",
14255 addr_size * 2, _("Address"),
14256 addr_size * 2, _("Initial"),
14257 addr_size * 2, _("Sym.Val."), _("Type"), _("Ndx"), _("Name"));
14258 sym_width = (is_32bit_elf ? 80 : 160) - 17 - addr_size * 6 - 1;
14259 for (i = 0; i < count; i++)
14261 unsigned long idx = get_reloc_symindex (rels[i].r_info);
14263 ent = print_mips_pltgot_entry (data, mips_pltgot, ent);
14266 if (idx >= num_dynamic_syms)
14267 printf (_("<corrupt symbol index: %lu>"), idx);
14270 Elf_Internal_Sym * psym = dynamic_symbols + idx;
14272 print_vma (psym->st_value, LONG_HEX);
14273 printf (" %-7s %3s ",
14274 get_symbol_type (ELF_ST_TYPE (psym->st_info)),
14275 get_symbol_index_type (psym->st_shndx));
14276 if (VALID_DYNAMIC_NAME (psym->st_name))
14277 print_symbol (sym_width, GET_DYNAMIC_NAME (psym->st_name));
14279 printf (_("<corrupt: %14ld>"), psym->st_name);
14294 process_nds32_specific (FILE * file)
14296 Elf_Internal_Shdr *sect = NULL;
14298 sect = find_section (".nds32_e_flags");
14301 unsigned int *flag;
14303 printf ("\nNDS32 elf flags section:\n");
14304 flag = get_data (NULL, file, sect->sh_offset, 1,
14305 sect->sh_size, _("NDS32 elf flags section"));
14307 switch ((*flag) & 0x3)
14310 printf ("(VEC_SIZE):\tNo entry.\n");
14313 printf ("(VEC_SIZE):\t4 bytes\n");
14316 printf ("(VEC_SIZE):\t16 bytes\n");
14319 printf ("(VEC_SIZE):\treserved\n");
14328 process_gnu_liblist (FILE * file)
14330 Elf_Internal_Shdr * section;
14331 Elf_Internal_Shdr * string_sec;
14332 Elf32_External_Lib * elib;
14334 size_t strtab_size;
14341 for (i = 0, section = section_headers;
14342 i < elf_header.e_shnum;
14345 switch (section->sh_type)
14347 case SHT_GNU_LIBLIST:
14348 if (section->sh_link >= elf_header.e_shnum)
14351 elib = (Elf32_External_Lib *)
14352 get_data (NULL, file, section->sh_offset, 1, section->sh_size,
14353 _("liblist section data"));
14357 string_sec = section_headers + section->sh_link;
14359 strtab = (char *) get_data (NULL, file, string_sec->sh_offset, 1,
14360 string_sec->sh_size,
14361 _("liblist string table"));
14363 || section->sh_entsize != sizeof (Elf32_External_Lib))
14369 strtab_size = string_sec->sh_size;
14371 printf (_("\nLibrary list section '%s' contains %lu entries:\n"),
14372 printable_section_name (section),
14373 (unsigned long) (section->sh_size / sizeof (Elf32_External_Lib)));
14375 puts (_(" Library Time Stamp Checksum Version Flags"));
14377 for (cnt = 0; cnt < section->sh_size / sizeof (Elf32_External_Lib);
14385 liblist.l_name = BYTE_GET (elib[cnt].l_name);
14386 atime = BYTE_GET (elib[cnt].l_time_stamp);
14387 liblist.l_checksum = BYTE_GET (elib[cnt].l_checksum);
14388 liblist.l_version = BYTE_GET (elib[cnt].l_version);
14389 liblist.l_flags = BYTE_GET (elib[cnt].l_flags);
14391 tmp = gmtime (&atime);
14392 snprintf (timebuf, sizeof (timebuf),
14393 "%04u-%02u-%02uT%02u:%02u:%02u",
14394 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
14395 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
14397 printf ("%3lu: ", (unsigned long) cnt);
14399 printf ("%-20s", liblist.l_name < strtab_size
14400 ? strtab + liblist.l_name : _("<corrupt>"));
14402 printf ("%-20.20s", liblist.l_name < strtab_size
14403 ? strtab + liblist.l_name : _("<corrupt>"));
14404 printf (" %s %#010lx %-7ld %-7ld\n", timebuf, liblist.l_checksum,
14405 liblist.l_version, liblist.l_flags);
14416 static const char *
14417 get_note_type (unsigned e_type)
14419 static char buff[64];
14421 if (elf_header.e_type == ET_CORE)
14425 return _("NT_AUXV (auxiliary vector)");
14427 return _("NT_PRSTATUS (prstatus structure)");
14429 return _("NT_FPREGSET (floating point registers)");
14431 return _("NT_PRPSINFO (prpsinfo structure)");
14432 case NT_TASKSTRUCT:
14433 return _("NT_TASKSTRUCT (task structure)");
14435 return _("NT_PRXFPREG (user_xfpregs structure)");
14437 return _("NT_PPC_VMX (ppc Altivec registers)");
14439 return _("NT_PPC_VSX (ppc VSX registers)");
14441 return _("NT_386_TLS (x86 TLS information)");
14442 case NT_386_IOPERM:
14443 return _("NT_386_IOPERM (x86 I/O permissions)");
14444 case NT_X86_XSTATE:
14445 return _("NT_X86_XSTATE (x86 XSAVE extended state)");
14446 case NT_S390_HIGH_GPRS:
14447 return _("NT_S390_HIGH_GPRS (s390 upper register halves)");
14448 case NT_S390_TIMER:
14449 return _("NT_S390_TIMER (s390 timer register)");
14450 case NT_S390_TODCMP:
14451 return _("NT_S390_TODCMP (s390 TOD comparator register)");
14452 case NT_S390_TODPREG:
14453 return _("NT_S390_TODPREG (s390 TOD programmable register)");
14455 return _("NT_S390_CTRS (s390 control registers)");
14456 case NT_S390_PREFIX:
14457 return _("NT_S390_PREFIX (s390 prefix register)");
14458 case NT_S390_LAST_BREAK:
14459 return _("NT_S390_LAST_BREAK (s390 last breaking event address)");
14460 case NT_S390_SYSTEM_CALL:
14461 return _("NT_S390_SYSTEM_CALL (s390 system call restart data)");
14463 return _("NT_S390_TDB (s390 transaction diagnostic block)");
14465 return _("NT_ARM_VFP (arm VFP registers)");
14467 return _("NT_ARM_TLS (AArch TLS registers)");
14468 case NT_ARM_HW_BREAK:
14469 return _("NT_ARM_HW_BREAK (AArch hardware breakpoint registers)");
14470 case NT_ARM_HW_WATCH:
14471 return _("NT_ARM_HW_WATCH (AArch hardware watchpoint registers)");
14473 return _("NT_PSTATUS (pstatus structure)");
14475 return _("NT_FPREGS (floating point registers)");
14477 return _("NT_PSINFO (psinfo structure)");
14479 return _("NT_LWPSTATUS (lwpstatus_t structure)");
14481 return _("NT_LWPSINFO (lwpsinfo_t structure)");
14482 case NT_WIN32PSTATUS:
14483 return _("NT_WIN32PSTATUS (win32_pstatus structure)");
14485 return _("NT_SIGINFO (siginfo_t data)");
14487 return _("NT_FILE (mapped files)");
14495 return _("NT_VERSION (version)");
14497 return _("NT_ARCH (architecture)");
14502 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
14507 print_core_note (Elf_Internal_Note *pnote)
14509 unsigned int addr_size = is_32bit_elf ? 4 : 8;
14510 bfd_vma count, page_size;
14511 unsigned char *descdata, *filenames, *descend;
14513 if (pnote->type != NT_FILE)
14519 printf (_(" Cannot decode 64-bit note in 32-bit build\n"));
14520 /* Still "successful". */
14525 if (pnote->descsz < 2 * addr_size)
14527 printf (_(" Malformed note - too short for header\n"));
14531 descdata = (unsigned char *) pnote->descdata;
14532 descend = descdata + pnote->descsz;
14534 if (descdata[pnote->descsz - 1] != '\0')
14536 printf (_(" Malformed note - does not end with \\0\n"));
14540 count = byte_get (descdata, addr_size);
14541 descdata += addr_size;
14543 page_size = byte_get (descdata, addr_size);
14544 descdata += addr_size;
14546 if (pnote->descsz < 2 * addr_size + count * 3 * addr_size)
14548 printf (_(" Malformed note - too short for supplied file count\n"));
14552 printf (_(" Page size: "));
14553 print_vma (page_size, DEC);
14556 printf (_(" %*s%*s%*s\n"),
14557 (int) (2 + 2 * addr_size), _("Start"),
14558 (int) (4 + 2 * addr_size), _("End"),
14559 (int) (4 + 2 * addr_size), _("Page Offset"));
14560 filenames = descdata + count * 3 * addr_size;
14561 while (--count > 0)
14563 bfd_vma start, end, file_ofs;
14565 if (filenames == descend)
14567 printf (_(" Malformed note - filenames end too early\n"));
14571 start = byte_get (descdata, addr_size);
14572 descdata += addr_size;
14573 end = byte_get (descdata, addr_size);
14574 descdata += addr_size;
14575 file_ofs = byte_get (descdata, addr_size);
14576 descdata += addr_size;
14579 print_vma (start, FULL_HEX);
14581 print_vma (end, FULL_HEX);
14583 print_vma (file_ofs, FULL_HEX);
14584 printf ("\n %s\n", filenames);
14586 filenames += 1 + strlen ((char *) filenames);
14592 static const char *
14593 get_gnu_elf_note_type (unsigned e_type)
14595 static char buff[64];
14599 case NT_GNU_ABI_TAG:
14600 return _("NT_GNU_ABI_TAG (ABI version tag)");
14602 return _("NT_GNU_HWCAP (DSO-supplied software HWCAP info)");
14603 case NT_GNU_BUILD_ID:
14604 return _("NT_GNU_BUILD_ID (unique build ID bitstring)");
14605 case NT_GNU_GOLD_VERSION:
14606 return _("NT_GNU_GOLD_VERSION (gold version)");
14611 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
14616 print_gnu_note (Elf_Internal_Note *pnote)
14618 switch (pnote->type)
14620 case NT_GNU_BUILD_ID:
14624 printf (_(" Build ID: "));
14625 for (i = 0; i < pnote->descsz; ++i)
14626 printf ("%02x", pnote->descdata[i] & 0xff);
14631 case NT_GNU_ABI_TAG:
14633 unsigned long os, major, minor, subminor;
14634 const char *osname;
14636 /* PR 17531: file: 030-599401-0.004. */
14637 if (pnote->descsz < 16)
14639 printf (_(" <corrupt GNU_ABI_TAG>\n"));
14643 os = byte_get ((unsigned char *) pnote->descdata, 4);
14644 major = byte_get ((unsigned char *) pnote->descdata + 4, 4);
14645 minor = byte_get ((unsigned char *) pnote->descdata + 8, 4);
14646 subminor = byte_get ((unsigned char *) pnote->descdata + 12, 4);
14650 case GNU_ABI_TAG_LINUX:
14653 case GNU_ABI_TAG_HURD:
14656 case GNU_ABI_TAG_SOLARIS:
14657 osname = "Solaris";
14659 case GNU_ABI_TAG_FREEBSD:
14660 osname = "FreeBSD";
14662 case GNU_ABI_TAG_NETBSD:
14666 osname = "Unknown";
14670 printf (_(" OS: %s, ABI: %ld.%ld.%ld\n"), osname,
14671 major, minor, subminor);
14675 case NT_GNU_GOLD_VERSION:
14679 printf (_(" Version: "));
14680 for (i = 0; i < pnote->descsz && pnote->descdata[i] != '\0'; ++i)
14681 printf ("%c", pnote->descdata[i]);
14690 static const char *
14691 get_netbsd_elfcore_note_type (unsigned e_type)
14693 static char buff[64];
14695 if (e_type == NT_NETBSDCORE_PROCINFO)
14697 /* NetBSD core "procinfo" structure. */
14698 return _("NetBSD procinfo structure");
14701 /* As of Jan 2002 there are no other machine-independent notes
14702 defined for NetBSD core files. If the note type is less
14703 than the start of the machine-dependent note types, we don't
14706 if (e_type < NT_NETBSDCORE_FIRSTMACH)
14708 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
14712 switch (elf_header.e_machine)
14714 /* On the Alpha, SPARC (32-bit and 64-bit), PT_GETREGS == mach+0
14715 and PT_GETFPREGS == mach+2. */
14720 case EM_SPARC32PLUS:
14724 case NT_NETBSDCORE_FIRSTMACH + 0:
14725 return _("PT_GETREGS (reg structure)");
14726 case NT_NETBSDCORE_FIRSTMACH + 2:
14727 return _("PT_GETFPREGS (fpreg structure)");
14733 /* On all other arch's, PT_GETREGS == mach+1 and
14734 PT_GETFPREGS == mach+3. */
14738 case NT_NETBSDCORE_FIRSTMACH + 1:
14739 return _("PT_GETREGS (reg structure)");
14740 case NT_NETBSDCORE_FIRSTMACH + 3:
14741 return _("PT_GETFPREGS (fpreg structure)");
14747 snprintf (buff, sizeof (buff), "PT_FIRSTMACH+%d",
14748 e_type - NT_NETBSDCORE_FIRSTMACH);
14752 static const char *
14753 get_stapsdt_note_type (unsigned e_type)
14755 static char buff[64];
14760 return _("NT_STAPSDT (SystemTap probe descriptors)");
14766 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
14771 print_stapsdt_note (Elf_Internal_Note *pnote)
14773 int addr_size = is_32bit_elf ? 4 : 8;
14774 char *data = pnote->descdata;
14775 char *data_end = pnote->descdata + pnote->descsz;
14776 bfd_vma pc, base_addr, semaphore;
14777 char *provider, *probe, *arg_fmt;
14779 pc = byte_get ((unsigned char *) data, addr_size);
14781 base_addr = byte_get ((unsigned char *) data, addr_size);
14783 semaphore = byte_get ((unsigned char *) data, addr_size);
14787 data += strlen (data) + 1;
14789 data += strlen (data) + 1;
14791 data += strlen (data) + 1;
14793 printf (_(" Provider: %s\n"), provider);
14794 printf (_(" Name: %s\n"), probe);
14795 printf (_(" Location: "));
14796 print_vma (pc, FULL_HEX);
14797 printf (_(", Base: "));
14798 print_vma (base_addr, FULL_HEX);
14799 printf (_(", Semaphore: "));
14800 print_vma (semaphore, FULL_HEX);
14802 printf (_(" Arguments: %s\n"), arg_fmt);
14804 return data == data_end;
14807 static const char *
14808 get_ia64_vms_note_type (unsigned e_type)
14810 static char buff[64];
14815 return _("NT_VMS_MHD (module header)");
14817 return _("NT_VMS_LNM (language name)");
14819 return _("NT_VMS_SRC (source files)");
14821 return "NT_VMS_TITLE";
14823 return _("NT_VMS_EIDC (consistency check)");
14824 case NT_VMS_FPMODE:
14825 return _("NT_VMS_FPMODE (FP mode)");
14826 case NT_VMS_LINKTIME:
14827 return "NT_VMS_LINKTIME";
14828 case NT_VMS_IMGNAM:
14829 return _("NT_VMS_IMGNAM (image name)");
14831 return _("NT_VMS_IMGID (image id)");
14832 case NT_VMS_LINKID:
14833 return _("NT_VMS_LINKID (link id)");
14834 case NT_VMS_IMGBID:
14835 return _("NT_VMS_IMGBID (build id)");
14836 case NT_VMS_GSTNAM:
14837 return _("NT_VMS_GSTNAM (sym table name)");
14838 case NT_VMS_ORIG_DYN:
14839 return "NT_VMS_ORIG_DYN";
14840 case NT_VMS_PATCHTIME:
14841 return "NT_VMS_PATCHTIME";
14843 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
14849 print_ia64_vms_note (Elf_Internal_Note * pnote)
14851 switch (pnote->type)
14854 if (pnote->descsz > 36)
14856 size_t l = strlen (pnote->descdata + 34);
14857 printf (_(" Creation date : %.17s\n"), pnote->descdata);
14858 printf (_(" Last patch date: %.17s\n"), pnote->descdata + 17);
14859 printf (_(" Module name : %s\n"), pnote->descdata + 34);
14860 printf (_(" Module version : %s\n"), pnote->descdata + 34 + l + 1);
14863 printf (_(" Invalid size\n"));
14866 printf (_(" Language: %s\n"), pnote->descdata);
14869 case NT_VMS_FPMODE:
14870 printf (_(" Floating Point mode: "));
14871 printf ("0x%016" BFD_VMA_FMT "x\n",
14872 (bfd_vma)byte_get ((unsigned char *)pnote->descdata, 8));
14874 case NT_VMS_LINKTIME:
14875 printf (_(" Link time: "));
14877 ((bfd_int64_t) byte_get ((unsigned char *)pnote->descdata, 8));
14880 case NT_VMS_PATCHTIME:
14881 printf (_(" Patch time: "));
14883 ((bfd_int64_t) byte_get ((unsigned char *)pnote->descdata, 8));
14886 case NT_VMS_ORIG_DYN:
14887 printf (_(" Major id: %u, minor id: %u\n"),
14888 (unsigned) byte_get ((unsigned char *)pnote->descdata, 4),
14889 (unsigned) byte_get ((unsigned char *)pnote->descdata + 4, 4));
14890 printf (_(" Last modified : "));
14892 ((bfd_int64_t) byte_get ((unsigned char *)pnote->descdata + 8, 8));
14893 printf (_("\n Link flags : "));
14894 printf ("0x%016" BFD_VMA_FMT "x\n",
14895 (bfd_vma)byte_get ((unsigned char *)pnote->descdata + 16, 8));
14896 printf (_(" Header flags: 0x%08x\n"),
14897 (unsigned)byte_get ((unsigned char *)pnote->descdata + 24, 4));
14898 printf (_(" Image id : %s\n"), pnote->descdata + 32);
14901 case NT_VMS_IMGNAM:
14902 printf (_(" Image name: %s\n"), pnote->descdata);
14904 case NT_VMS_GSTNAM:
14905 printf (_(" Global symbol table name: %s\n"), pnote->descdata);
14908 printf (_(" Image id: %s\n"), pnote->descdata);
14910 case NT_VMS_LINKID:
14911 printf (_(" Linker id: %s\n"), pnote->descdata);
14919 /* Note that by the ELF standard, the name field is already null byte
14920 terminated, and namesz includes the terminating null byte.
14921 I.E. the value of namesz for the name "FSF" is 4.
14923 If the value of namesz is zero, there is no name present. */
14925 process_note (Elf_Internal_Note * pnote)
14927 const char * name = pnote->namesz ? pnote->namedata : "(NONE)";
14930 if (pnote->namesz == 0)
14931 /* If there is no note name, then use the default set of
14932 note type strings. */
14933 nt = get_note_type (pnote->type);
14935 else if (const_strneq (pnote->namedata, "GNU"))
14936 /* GNU-specific object file notes. */
14937 nt = get_gnu_elf_note_type (pnote->type);
14939 else if (const_strneq (pnote->namedata, "NetBSD-CORE"))
14940 /* NetBSD-specific core file notes. */
14941 nt = get_netbsd_elfcore_note_type (pnote->type);
14943 else if (strneq (pnote->namedata, "SPU/", 4))
14945 /* SPU-specific core file notes. */
14946 nt = pnote->namedata + 4;
14950 else if (const_strneq (pnote->namedata, "IPF/VMS"))
14951 /* VMS/ia64-specific file notes. */
14952 nt = get_ia64_vms_note_type (pnote->type);
14954 else if (const_strneq (pnote->namedata, "stapsdt"))
14955 nt = get_stapsdt_note_type (pnote->type);
14958 /* Don't recognize this note name; just use the default set of
14959 note type strings. */
14960 nt = get_note_type (pnote->type);
14962 printf (" %-20s 0x%08lx\t%s\n", name, pnote->descsz, nt);
14964 if (const_strneq (pnote->namedata, "IPF/VMS"))
14965 return print_ia64_vms_note (pnote);
14966 else if (const_strneq (pnote->namedata, "GNU"))
14967 return print_gnu_note (pnote);
14968 else if (const_strneq (pnote->namedata, "stapsdt"))
14969 return print_stapsdt_note (pnote);
14970 else if (const_strneq (pnote->namedata, "CORE"))
14971 return print_core_note (pnote);
14978 process_corefile_note_segment (FILE * file, bfd_vma offset, bfd_vma length)
14980 Elf_External_Note * pnotes;
14981 Elf_External_Note * external;
14987 pnotes = (Elf_External_Note *) get_data (NULL, file, offset, 1, length,
14989 if (pnotes == NULL)
14994 printf (_("\nDisplaying notes found at file offset 0x%08lx with length 0x%08lx:\n"),
14995 (unsigned long) offset, (unsigned long) length);
14996 printf (_(" %-20s %10s\tDescription\n"), _("Owner"), _("Data size"));
14998 while ((char *) external < (char *) pnotes + length)
15000 Elf_Internal_Note inote;
15003 char * temp = NULL;
15004 size_t data_remaining = ((char *) pnotes + length) - (char *) external;
15006 if (!is_ia64_vms ())
15008 /* PR binutils/15191
15009 Make sure that there is enough data to read. */
15010 min_notesz = offsetof (Elf_External_Note, name);
15011 if (data_remaining < min_notesz)
15013 warn (_("Corrupt note: only %d bytes remain, not enough for a full note\n"),
15014 (int) data_remaining);
15017 inote.type = BYTE_GET (external->type);
15018 inote.namesz = BYTE_GET (external->namesz);
15019 inote.namedata = external->name;
15020 inote.descsz = BYTE_GET (external->descsz);
15021 inote.descdata = inote.namedata + align_power (inote.namesz, 2);
15022 inote.descpos = offset + (inote.descdata - (char *) pnotes);
15023 next = inote.descdata + align_power (inote.descsz, 2);
15027 Elf64_External_VMS_Note *vms_external;
15029 /* PR binutils/15191
15030 Make sure that there is enough data to read. */
15031 min_notesz = offsetof (Elf64_External_VMS_Note, name);
15032 if (data_remaining < min_notesz)
15034 warn (_("Corrupt note: only %d bytes remain, not enough for a full note\n"),
15035 (int) data_remaining);
15039 vms_external = (Elf64_External_VMS_Note *) external;
15040 inote.type = BYTE_GET (vms_external->type);
15041 inote.namesz = BYTE_GET (vms_external->namesz);
15042 inote.namedata = vms_external->name;
15043 inote.descsz = BYTE_GET (vms_external->descsz);
15044 inote.descdata = inote.namedata + align_power (inote.namesz, 3);
15045 inote.descpos = offset + (inote.descdata - (char *) pnotes);
15046 next = inote.descdata + align_power (inote.descsz, 3);
15049 if (inote.descdata < (char *) external + min_notesz
15050 || next < (char *) external + min_notesz
15051 /* PR binutils/17531: file: id:000000,sig:11,src:006986,op:havoc,rep:4. */
15052 || inote.namedata + inote.namesz < inote.namedata
15053 || inote.descdata + inote.descsz < inote.descdata
15054 || data_remaining < (size_t)(next - (char *) external))
15056 warn (_("note with invalid namesz and/or descsz found at offset 0x%lx\n"),
15057 (unsigned long) ((char *) external - (char *) pnotes));
15058 warn (_(" type: 0x%lx, namesize: 0x%08lx, descsize: 0x%08lx\n"),
15059 inote.type, inote.namesz, inote.descsz);
15063 external = (Elf_External_Note *) next;
15065 /* Verify that name is null terminated. It appears that at least
15066 one version of Linux (RedHat 6.0) generates corefiles that don't
15067 comply with the ELF spec by failing to include the null byte in
15069 if (inote.namedata[inote.namesz - 1] != '\0')
15071 temp = (char *) malloc (inote.namesz + 1);
15074 error (_("Out of memory allocating space for inote name\n"));
15079 strncpy (temp, inote.namedata, inote.namesz);
15080 temp[inote.namesz] = 0;
15082 /* warn (_("'%s' NOTE name not properly null terminated\n"), temp); */
15083 inote.namedata = temp;
15086 res &= process_note (& inote);
15101 process_corefile_note_segments (FILE * file)
15103 Elf_Internal_Phdr * segment;
15107 if (! get_program_headers (file))
15110 for (i = 0, segment = program_headers;
15111 i < elf_header.e_phnum;
15114 if (segment->p_type == PT_NOTE)
15115 res &= process_corefile_note_segment (file,
15116 (bfd_vma) segment->p_offset,
15117 (bfd_vma) segment->p_filesz);
15124 process_note_sections (FILE * file)
15126 Elf_Internal_Shdr * section;
15131 for (i = 0, section = section_headers;
15132 i < elf_header.e_shnum && section != NULL;
15134 if (section->sh_type == SHT_NOTE)
15136 res &= process_corefile_note_segment (file,
15137 (bfd_vma) section->sh_offset,
15138 (bfd_vma) section->sh_size);
15143 /* Try processing NOTE segments instead. */
15144 return process_corefile_note_segments (file);
15150 process_notes (FILE * file)
15152 /* If we have not been asked to display the notes then do nothing. */
15156 if (elf_header.e_type != ET_CORE)
15157 return process_note_sections (file);
15159 /* No program headers means no NOTE segment. */
15160 if (elf_header.e_phnum > 0)
15161 return process_corefile_note_segments (file);
15163 printf (_("No note segments present in the core file.\n"));
15168 process_arch_specific (FILE * file)
15173 switch (elf_header.e_machine)
15176 return process_arm_specific (file);
15178 case EM_MIPS_RS3_LE:
15179 return process_mips_specific (file);
15182 return process_nds32_specific (file);
15185 return process_power_specific (file);
15188 case EM_SPARC32PLUS:
15190 return process_sparc_specific (file);
15193 return process_tic6x_specific (file);
15196 return process_msp430x_specific (file);
15204 get_file_header (FILE * file)
15206 /* Read in the identity array. */
15207 if (fread (elf_header.e_ident, EI_NIDENT, 1, file) != 1)
15210 /* Determine how to read the rest of the header. */
15211 switch (elf_header.e_ident[EI_DATA])
15213 default: /* fall through */
15214 case ELFDATANONE: /* fall through */
15216 byte_get = byte_get_little_endian;
15217 byte_put = byte_put_little_endian;
15220 byte_get = byte_get_big_endian;
15221 byte_put = byte_put_big_endian;
15225 /* For now we only support 32 bit and 64 bit ELF files. */
15226 is_32bit_elf = (elf_header.e_ident[EI_CLASS] != ELFCLASS64);
15228 /* Read in the rest of the header. */
15231 Elf32_External_Ehdr ehdr32;
15233 if (fread (ehdr32.e_type, sizeof (ehdr32) - EI_NIDENT, 1, file) != 1)
15236 elf_header.e_type = BYTE_GET (ehdr32.e_type);
15237 elf_header.e_machine = BYTE_GET (ehdr32.e_machine);
15238 elf_header.e_version = BYTE_GET (ehdr32.e_version);
15239 elf_header.e_entry = BYTE_GET (ehdr32.e_entry);
15240 elf_header.e_phoff = BYTE_GET (ehdr32.e_phoff);
15241 elf_header.e_shoff = BYTE_GET (ehdr32.e_shoff);
15242 elf_header.e_flags = BYTE_GET (ehdr32.e_flags);
15243 elf_header.e_ehsize = BYTE_GET (ehdr32.e_ehsize);
15244 elf_header.e_phentsize = BYTE_GET (ehdr32.e_phentsize);
15245 elf_header.e_phnum = BYTE_GET (ehdr32.e_phnum);
15246 elf_header.e_shentsize = BYTE_GET (ehdr32.e_shentsize);
15247 elf_header.e_shnum = BYTE_GET (ehdr32.e_shnum);
15248 elf_header.e_shstrndx = BYTE_GET (ehdr32.e_shstrndx);
15252 Elf64_External_Ehdr ehdr64;
15254 /* If we have been compiled with sizeof (bfd_vma) == 4, then
15255 we will not be able to cope with the 64bit data found in
15256 64 ELF files. Detect this now and abort before we start
15257 overwriting things. */
15258 if (sizeof (bfd_vma) < 8)
15260 error (_("This instance of readelf has been built without support for a\n\
15261 64 bit data type and so it cannot read 64 bit ELF files.\n"));
15265 if (fread (ehdr64.e_type, sizeof (ehdr64) - EI_NIDENT, 1, file) != 1)
15268 elf_header.e_type = BYTE_GET (ehdr64.e_type);
15269 elf_header.e_machine = BYTE_GET (ehdr64.e_machine);
15270 elf_header.e_version = BYTE_GET (ehdr64.e_version);
15271 elf_header.e_entry = BYTE_GET (ehdr64.e_entry);
15272 elf_header.e_phoff = BYTE_GET (ehdr64.e_phoff);
15273 elf_header.e_shoff = BYTE_GET (ehdr64.e_shoff);
15274 elf_header.e_flags = BYTE_GET (ehdr64.e_flags);
15275 elf_header.e_ehsize = BYTE_GET (ehdr64.e_ehsize);
15276 elf_header.e_phentsize = BYTE_GET (ehdr64.e_phentsize);
15277 elf_header.e_phnum = BYTE_GET (ehdr64.e_phnum);
15278 elf_header.e_shentsize = BYTE_GET (ehdr64.e_shentsize);
15279 elf_header.e_shnum = BYTE_GET (ehdr64.e_shnum);
15280 elf_header.e_shstrndx = BYTE_GET (ehdr64.e_shstrndx);
15283 if (elf_header.e_shoff)
15285 /* There may be some extensions in the first section header. Don't
15286 bomb if we can't read it. */
15288 get_32bit_section_headers (file, TRUE);
15290 get_64bit_section_headers (file, TRUE);
15296 /* Process one ELF object file according to the command line options.
15297 This file may actually be stored in an archive. The file is
15298 positioned at the start of the ELF object. */
15301 process_object (char * file_name, FILE * file)
15305 if (! get_file_header (file))
15307 error (_("%s: Failed to read file header\n"), file_name);
15311 /* Initialise per file variables. */
15312 for (i = ARRAY_SIZE (version_info); i--;)
15313 version_info[i] = 0;
15315 for (i = ARRAY_SIZE (dynamic_info); i--;)
15316 dynamic_info[i] = 0;
15317 dynamic_info_DT_GNU_HASH = 0;
15319 /* Process the file. */
15321 printf (_("\nFile: %s\n"), file_name);
15323 /* Initialise the dump_sects array from the cmdline_dump_sects array.
15324 Note we do this even if cmdline_dump_sects is empty because we
15325 must make sure that the dump_sets array is zeroed out before each
15326 object file is processed. */
15327 if (num_dump_sects > num_cmdline_dump_sects)
15328 memset (dump_sects, 0, num_dump_sects * sizeof (* dump_sects));
15330 if (num_cmdline_dump_sects > 0)
15332 if (num_dump_sects == 0)
15333 /* A sneaky way of allocating the dump_sects array. */
15334 request_dump_bynumber (num_cmdline_dump_sects, 0);
15336 assert (num_dump_sects >= num_cmdline_dump_sects);
15337 memcpy (dump_sects, cmdline_dump_sects,
15338 num_cmdline_dump_sects * sizeof (* dump_sects));
15341 if (! process_file_header ())
15344 if (! process_section_headers (file))
15346 /* Without loaded section headers we cannot process lots of
15348 do_unwind = do_version = do_dump = do_arch = 0;
15350 if (! do_using_dynamic)
15351 do_syms = do_dyn_syms = do_reloc = 0;
15354 if (! process_section_groups (file))
15356 /* Without loaded section groups we cannot process unwind. */
15360 if (process_program_headers (file))
15361 process_dynamic_section (file);
15363 process_relocs (file);
15365 process_unwind (file);
15367 process_symbol_table (file);
15369 process_syminfo (file);
15371 process_version_sections (file);
15373 process_section_contents (file);
15375 process_notes (file);
15377 process_gnu_liblist (file);
15379 process_arch_specific (file);
15381 if (program_headers)
15383 free (program_headers);
15384 program_headers = NULL;
15387 if (section_headers)
15389 free (section_headers);
15390 section_headers = NULL;
15395 free (string_table);
15396 string_table = NULL;
15397 string_table_length = 0;
15400 if (dynamic_strings)
15402 free (dynamic_strings);
15403 dynamic_strings = NULL;
15404 dynamic_strings_length = 0;
15407 if (dynamic_symbols)
15409 free (dynamic_symbols);
15410 dynamic_symbols = NULL;
15411 num_dynamic_syms = 0;
15414 if (dynamic_syminfo)
15416 free (dynamic_syminfo);
15417 dynamic_syminfo = NULL;
15420 if (dynamic_section)
15422 free (dynamic_section);
15423 dynamic_section = NULL;
15426 if (section_headers_groups)
15428 free (section_headers_groups);
15429 section_headers_groups = NULL;
15432 if (section_groups)
15434 struct group_list * g;
15435 struct group_list * next;
15437 for (i = 0; i < group_count; i++)
15439 for (g = section_groups [i].root; g != NULL; g = next)
15446 free (section_groups);
15447 section_groups = NULL;
15450 free_debug_memory ();
15455 /* Process an ELF archive.
15456 On entry the file is positioned just after the ARMAG string. */
15459 process_archive (char * file_name, FILE * file, bfd_boolean is_thin_archive)
15461 struct archive_info arch;
15462 struct archive_info nested_arch;
15468 /* The ARCH structure is used to hold information about this archive. */
15469 arch.file_name = NULL;
15471 arch.index_array = NULL;
15472 arch.sym_table = NULL;
15473 arch.longnames = NULL;
15475 /* The NESTED_ARCH structure is used as a single-item cache of information
15476 about a nested archive (when members of a thin archive reside within
15477 another regular archive file). */
15478 nested_arch.file_name = NULL;
15479 nested_arch.file = NULL;
15480 nested_arch.index_array = NULL;
15481 nested_arch.sym_table = NULL;
15482 nested_arch.longnames = NULL;
15484 if (setup_archive (&arch, file_name, file, is_thin_archive, do_archive_index) != 0)
15490 if (do_archive_index)
15492 if (arch.sym_table == NULL)
15493 error (_("%s: unable to dump the index as none was found\n"), file_name);
15496 unsigned long i, l;
15497 unsigned long current_pos;
15499 printf (_("Index of archive %s: (%lu entries, 0x%lx bytes in the symbol table)\n"),
15500 file_name, (unsigned long) arch.index_num, arch.sym_size);
15501 current_pos = ftell (file);
15503 for (i = l = 0; i < arch.index_num; i++)
15505 if ((i == 0) || ((i > 0) && (arch.index_array[i] != arch.index_array[i - 1])))
15507 char * member_name;
15509 member_name = get_archive_member_name_at (&arch, arch.index_array[i], &nested_arch);
15511 if (member_name != NULL)
15513 char * qualified_name = make_qualified_name (&arch, &nested_arch, member_name);
15515 if (qualified_name != NULL)
15517 printf (_("Contents of binary %s at offset "), qualified_name);
15518 (void) print_vma (arch.index_array[i], PREFIX_HEX);
15520 free (qualified_name);
15525 if (l >= arch.sym_size)
15527 error (_("%s: end of the symbol table reached before the end of the index\n"),
15531 /* PR 17531: file: 0b6630b2. */
15532 printf ("\t%.*s\n", (int) (arch.sym_size - l), arch.sym_table + l);
15533 l += strnlen (arch.sym_table + l, arch.sym_size - l) + 1;
15536 if (arch.uses_64bit_indicies)
15541 if (l < arch.sym_size)
15542 error (_("%s: %ld bytes remain in the symbol table, but without corresponding entries in the index table\n"),
15543 file_name, arch.sym_size - l);
15545 if (fseek (file, current_pos, SEEK_SET) != 0)
15547 error (_("%s: failed to seek back to start of object files in the archive\n"), file_name);
15553 if (!do_dynamic && !do_syms && !do_reloc && !do_unwind && !do_sections
15554 && !do_segments && !do_header && !do_dump && !do_version
15555 && !do_histogram && !do_debugging && !do_arch && !do_notes
15556 && !do_section_groups && !do_dyn_syms)
15558 ret = 0; /* Archive index only. */
15569 char * qualified_name;
15571 /* Read the next archive header. */
15572 if (fseek (file, arch.next_arhdr_offset, SEEK_SET) != 0)
15574 error (_("%s: failed to seek to next archive header\n"), file_name);
15577 got = fread (&arch.arhdr, 1, sizeof arch.arhdr, file);
15578 if (got != sizeof arch.arhdr)
15582 error (_("%s: failed to read archive header\n"), file_name);
15586 if (memcmp (arch.arhdr.ar_fmag, ARFMAG, 2) != 0)
15588 error (_("%s: did not find a valid archive header\n"), arch.file_name);
15593 arch.next_arhdr_offset += sizeof arch.arhdr;
15595 archive_file_size = strtoul (arch.arhdr.ar_size, NULL, 10);
15596 if (archive_file_size & 01)
15597 ++archive_file_size;
15599 name = get_archive_member_name (&arch, &nested_arch);
15602 error (_("%s: bad archive file name\n"), file_name);
15606 namelen = strlen (name);
15608 qualified_name = make_qualified_name (&arch, &nested_arch, name);
15609 if (qualified_name == NULL)
15611 error (_("%s: bad archive file name\n"), file_name);
15616 if (is_thin_archive && arch.nested_member_origin == 0)
15618 /* This is a proxy for an external member of a thin archive. */
15619 FILE * member_file;
15620 char * member_file_name = adjust_relative_path (file_name, name, namelen);
15621 if (member_file_name == NULL)
15627 member_file = fopen (member_file_name, "rb");
15628 if (member_file == NULL)
15630 error (_("Input file '%s' is not readable.\n"), member_file_name);
15631 free (member_file_name);
15636 archive_file_offset = arch.nested_member_origin;
15638 ret |= process_object (qualified_name, member_file);
15640 fclose (member_file);
15641 free (member_file_name);
15643 else if (is_thin_archive)
15645 /* PR 15140: Allow for corrupt thin archives. */
15646 if (nested_arch.file == NULL)
15648 error (_("%s: contains corrupt thin archive: %s\n"),
15654 /* This is a proxy for a member of a nested archive. */
15655 archive_file_offset = arch.nested_member_origin + sizeof arch.arhdr;
15657 /* The nested archive file will have been opened and setup by
15658 get_archive_member_name. */
15659 if (fseek (nested_arch.file, archive_file_offset, SEEK_SET) != 0)
15661 error (_("%s: failed to seek to archive member.\n"), nested_arch.file_name);
15666 ret |= process_object (qualified_name, nested_arch.file);
15670 archive_file_offset = arch.next_arhdr_offset;
15671 arch.next_arhdr_offset += archive_file_size;
15673 ret |= process_object (qualified_name, file);
15676 if (dump_sects != NULL)
15680 num_dump_sects = 0;
15683 free (qualified_name);
15687 if (nested_arch.file != NULL)
15688 fclose (nested_arch.file);
15689 release_archive (&nested_arch);
15690 release_archive (&arch);
15696 process_file (char * file_name)
15699 struct stat statbuf;
15700 char armag[SARMAG];
15703 if (stat (file_name, &statbuf) < 0)
15705 if (errno == ENOENT)
15706 error (_("'%s': No such file\n"), file_name);
15708 error (_("Could not locate '%s'. System error message: %s\n"),
15709 file_name, strerror (errno));
15713 if (! S_ISREG (statbuf.st_mode))
15715 error (_("'%s' is not an ordinary file\n"), file_name);
15719 file = fopen (file_name, "rb");
15722 error (_("Input file '%s' is not readable.\n"), file_name);
15726 if (fread (armag, SARMAG, 1, file) != 1)
15728 error (_("%s: Failed to read file's magic number\n"), file_name);
15733 current_file_size = (bfd_size_type) statbuf.st_size;
15735 if (memcmp (armag, ARMAG, SARMAG) == 0)
15736 ret = process_archive (file_name, file, FALSE);
15737 else if (memcmp (armag, ARMAGT, SARMAG) == 0)
15738 ret = process_archive (file_name, file, TRUE);
15741 if (do_archive_index)
15742 error (_("File %s is not an archive so its index cannot be displayed.\n"),
15746 archive_file_size = archive_file_offset = 0;
15747 ret = process_object (file_name, file);
15752 current_file_size = 0;
15756 #ifdef SUPPORT_DISASSEMBLY
15757 /* Needed by the i386 disassembler. For extra credit, someone could
15758 fix this so that we insert symbolic addresses here, esp for GOT/PLT
15762 print_address (unsigned int addr, FILE * outfile)
15764 fprintf (outfile,"0x%8.8x", addr);
15767 /* Needed by the i386 disassembler. */
15769 db_task_printsym (unsigned int addr)
15771 print_address (addr, stderr);
15776 main (int argc, char ** argv)
15780 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
15781 setlocale (LC_MESSAGES, "");
15783 #if defined (HAVE_SETLOCALE)
15784 setlocale (LC_CTYPE, "");
15786 bindtextdomain (PACKAGE, LOCALEDIR);
15787 textdomain (PACKAGE);
15789 expandargv (&argc, &argv);
15791 parse_args (argc, argv);
15793 if (num_dump_sects > 0)
15795 /* Make a copy of the dump_sects array. */
15796 cmdline_dump_sects = (dump_type *)
15797 malloc (num_dump_sects * sizeof (* dump_sects));
15798 if (cmdline_dump_sects == NULL)
15799 error (_("Out of memory allocating dump request table.\n"));
15802 memcpy (cmdline_dump_sects, dump_sects,
15803 num_dump_sects * sizeof (* dump_sects));
15804 num_cmdline_dump_sects = num_dump_sects;
15808 if (optind < (argc - 1))
15812 while (optind < argc)
15813 err |= process_file (argv[optind++]);
15815 if (dump_sects != NULL)
15817 if (cmdline_dump_sects != NULL)
15818 free (cmdline_dump_sects);