1 /* readelf.c -- display contents of an ELF format file
2 Copyright (C) 1998-2019 Free Software Foundation, Inc.
4 Originally developed by Eric Youngdale <eric@andante.jic.com>
5 Modifications by Nick Clifton <nickc@redhat.com>
7 This file is part of GNU Binutils.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
24 /* The difference between readelf and objdump:
26 Both programs are capable of displaying the contents of ELF format files,
27 so why does the binutils project have two file dumpers ?
29 The reason is that objdump sees an ELF file through a BFD filter of the
30 world; if BFD has a bug where, say, it disagrees about a machine constant
31 in e_flags, then the odds are good that it will remain internally
32 consistent. The linker sees it the BFD way, objdump sees it the BFD way,
33 GAS sees it the BFD way. There was need for a tool to go find out what
34 the file actually says.
36 This is why the readelf program does not link against the BFD library - it
37 exists as an independent program to help verify the correct working of BFD.
39 There is also the case that readelf can provide more information about an
40 ELF file than is provided by objdump. In particular it can display DWARF
41 debugging information which (at the moment) objdump cannot. */
52 /* Define BFD64 here, even if our default architecture is 32 bit ELF
53 as this will allow us to read in and parse 64bit and 32bit ELF files.
54 Only do this if we believe that the compiler can support a 64 bit
55 data type. For now we only rely on GCC being able to do this. */
67 #include "elf/common.h"
68 #include "elf/external.h"
69 #include "elf/internal.h"
72 /* Included here, before RELOC_MACROS_GEN_FUNC is defined, so that
73 we can obtain the H8 reloc numbers. We need these for the
74 get_reloc_size() function. We include h8.h again after defining
75 RELOC_MACROS_GEN_FUNC so that we get the naming function as well. */
80 /* Undo the effects of #including reloc-macros.h. */
82 #undef START_RELOC_NUMBERS
86 #undef END_RELOC_NUMBERS
87 #undef _RELOC_MACROS_H
89 /* The following headers use the elf/reloc-macros.h file to
90 automatically generate relocation recognition functions
91 such as elf_mips_reloc_type() */
93 #define RELOC_MACROS_GEN_FUNC
95 #include "elf/aarch64.h"
96 #include "elf/alpha.h"
100 #include "elf/bfin.h"
101 #include "elf/cr16.h"
102 #include "elf/cris.h"
104 #include "elf/csky.h"
105 #include "elf/d10v.h"
106 #include "elf/d30v.h"
109 #include "elf/epiphany.h"
110 #include "elf/fr30.h"
112 #include "elf/ft32.h"
114 #include "elf/hppa.h"
115 #include "elf/i386.h"
116 #include "elf/i370.h"
117 #include "elf/i860.h"
118 #include "elf/i960.h"
119 #include "elf/ia64.h"
120 #include "elf/ip2k.h"
121 #include "elf/lm32.h"
122 #include "elf/iq2000.h"
123 #include "elf/m32c.h"
124 #include "elf/m32r.h"
125 #include "elf/m68k.h"
126 #include "elf/m68hc11.h"
127 #include "elf/s12z.h"
128 #include "elf/mcore.h"
130 #include "elf/metag.h"
131 #include "elf/microblaze.h"
132 #include "elf/mips.h"
133 #include "elf/mmix.h"
134 #include "elf/mn10200.h"
135 #include "elf/mn10300.h"
136 #include "elf/moxie.h"
138 #include "elf/msp430.h"
139 #include "elf/nds32.h"
141 #include "elf/nios2.h"
142 #include "elf/or1k.h"
145 #include "elf/ppc64.h"
147 #include "elf/riscv.h"
148 #include "elf/rl78.h"
150 #include "elf/s390.h"
151 #include "elf/score.h"
153 #include "elf/sparc.h"
155 #include "elf/tic6x.h"
156 #include "elf/tilegx.h"
157 #include "elf/tilepro.h"
158 #include "elf/v850.h"
160 #include "elf/visium.h"
161 #include "elf/wasm32.h"
162 #include "elf/x86-64.h"
163 #include "elf/xc16x.h"
164 #include "elf/xgate.h"
165 #include "elf/xstormy16.h"
166 #include "elf/xtensa.h"
169 #include "libiberty.h"
170 #include "safe-ctype.h"
171 #include "filenames.h"
174 #define offsetof(TYPE, MEMBER) ((size_t) &(((TYPE *) 0)->MEMBER))
177 typedef struct elf_section_list
179 Elf_Internal_Shdr * hdr;
180 struct elf_section_list * next;
183 /* Flag bits indicating particular types of dump. */
184 #define HEX_DUMP (1 << 0) /* The -x command line switch. */
185 #define DISASS_DUMP (1 << 1) /* The -i command line switch. */
186 #define DEBUG_DUMP (1 << 2) /* The -w command line switch. */
187 #define STRING_DUMP (1 << 3) /* The -p command line switch. */
188 #define RELOC_DUMP (1 << 4) /* The -R command line switch. */
190 #define CTF_DUMP (1 << 5) /* The --ctf command line switch. */
193 typedef unsigned char dump_type;
195 /* A linked list of the section names for which dumps were requested. */
196 struct dump_list_entry
200 struct dump_list_entry * next;
203 typedef struct filedata
205 const char * file_name;
207 bfd_size_type file_size;
208 Elf_Internal_Ehdr file_header;
209 Elf_Internal_Shdr * section_headers;
210 Elf_Internal_Phdr * program_headers;
212 unsigned long string_table_length;
213 /* A dynamic array of flags indicating for which sections a dump of
214 some kind has been requested. It is reset on a per-object file
215 basis and then initialised from the cmdline_dump_sects array,
216 the results of interpreting the -w switch, and the
217 dump_sects_byname list. */
218 dump_type * dump_sects;
219 unsigned int num_dump_sects;
222 char * program_name = "readelf";
224 static unsigned long archive_file_offset;
225 static unsigned long archive_file_size;
226 static unsigned long dynamic_addr;
227 static bfd_size_type dynamic_size;
228 static size_t dynamic_nent;
229 static char * dynamic_strings;
230 static unsigned long dynamic_strings_length;
231 static unsigned long num_dynamic_syms;
232 static Elf_Internal_Sym * dynamic_symbols;
233 static Elf_Internal_Syminfo * dynamic_syminfo;
234 static unsigned long dynamic_syminfo_offset;
235 static unsigned int dynamic_syminfo_nent;
236 static char program_interpreter[PATH_MAX];
237 static bfd_vma dynamic_info[DT_ENCODING];
238 static bfd_vma dynamic_info_DT_GNU_HASH;
239 static bfd_vma version_info[16];
240 static Elf_Internal_Dyn * dynamic_section;
241 static elf_section_list * symtab_shndx_list;
242 static bfd_boolean show_name = FALSE;
243 static bfd_boolean do_dynamic = FALSE;
244 static bfd_boolean do_syms = FALSE;
245 static bfd_boolean do_dyn_syms = FALSE;
246 static bfd_boolean do_reloc = FALSE;
247 static bfd_boolean do_sections = FALSE;
248 static bfd_boolean do_section_groups = FALSE;
249 static bfd_boolean do_section_details = FALSE;
250 static bfd_boolean do_segments = FALSE;
251 static bfd_boolean do_unwind = FALSE;
252 static bfd_boolean do_using_dynamic = FALSE;
253 static bfd_boolean do_header = FALSE;
254 static bfd_boolean do_dump = FALSE;
255 static bfd_boolean do_version = FALSE;
256 static bfd_boolean do_histogram = FALSE;
257 static bfd_boolean do_debugging = FALSE;
259 static bfd_boolean do_ctf = FALSE;
261 static bfd_boolean do_arch = FALSE;
262 static bfd_boolean do_notes = FALSE;
263 static bfd_boolean do_archive_index = FALSE;
264 static bfd_boolean is_32bit_elf = FALSE;
265 static bfd_boolean decompress_dumps = FALSE;
268 static char *dump_ctf_parent_name;
269 static char *dump_ctf_symtab_name;
270 static char *dump_ctf_strtab_name;
275 struct group_list * next;
276 unsigned int section_index;
281 struct group_list * root;
282 unsigned int group_index;
285 static size_t group_count;
286 static struct group * section_groups;
287 static struct group ** section_headers_groups;
289 /* A dynamic array of flags indicating for which sections a dump
290 has been requested via command line switches. */
291 static Filedata cmdline;
293 static struct dump_list_entry * dump_sects_byname;
295 /* How to print a vma value. */
296 typedef enum print_mode
308 /* Versioned symbol info. */
309 enum versioned_symbol_info
316 static const char * get_symbol_version_string
317 (Filedata *, bfd_boolean, const char *, unsigned long, unsigned,
318 Elf_Internal_Sym *, enum versioned_symbol_info *, unsigned short *);
322 #define SECTION_NAME(X) \
323 ((X) == NULL ? _("<none>") \
324 : filedata->string_table == NULL ? _("<no-strings>") \
325 : ((X)->sh_name >= filedata->string_table_length ? _("<corrupt>") \
326 : filedata->string_table + (X)->sh_name))
328 #define DT_VERSIONTAGIDX(tag) (DT_VERNEEDNUM - (tag)) /* Reverse order! */
330 #define GET_ELF_SYMBOLS(file, section, sym_count) \
331 (is_32bit_elf ? get_32bit_elf_symbols (file, section, sym_count) \
332 : get_64bit_elf_symbols (file, section, sym_count))
334 #define VALID_DYNAMIC_NAME(offset) ((dynamic_strings != NULL) && (offset < dynamic_strings_length))
335 /* GET_DYNAMIC_NAME asssumes that VALID_DYNAMIC_NAME has
336 already been called and verified that the string exists. */
337 #define GET_DYNAMIC_NAME(offset) (dynamic_strings + offset)
339 #define REMOVE_ARCH_BITS(ADDR) \
342 if (filedata->file_header.e_machine == EM_ARM) \
347 /* Print a BFD_VMA to an internal buffer, for use in error messages.
348 BFD_FMA_FMT can't be used in translated strings. */
351 bfd_vmatoa (char *fmtch, bfd_vma value)
353 /* bfd_vmatoa is used more then once in a printf call for output.
354 Cycle through an array of buffers. */
355 static int buf_pos = 0;
356 static struct bfd_vmatoa_buf
363 ret = buf[buf_pos++].place;
364 buf_pos %= ARRAY_SIZE (buf);
366 sprintf (fmt, "%%%s%s", BFD_VMA_FMT, fmtch);
367 snprintf (ret, sizeof (buf[0].place), fmt, value);
371 /* Retrieve NMEMB structures, each SIZE bytes long from FILEDATA starting at
372 OFFSET + the offset of the current archive member, if we are examining an
373 archive. Put the retrieved data into VAR, if it is not NULL. Otherwise
374 allocate a buffer using malloc and fill that. In either case return the
375 pointer to the start of the retrieved data or NULL if something went wrong.
376 If something does go wrong and REASON is not NULL then emit an error
377 message using REASON as part of the context. */
380 get_data (void * var,
382 unsigned long offset,
388 bfd_size_type amt = size * nmemb;
390 if (size == 0 || nmemb == 0)
393 /* If the size_t type is smaller than the bfd_size_type, eg because
394 you are building a 32-bit tool on a 64-bit host, then make sure
395 that when the sizes are cast to (size_t) no information is lost. */
396 if (sizeof (size_t) < sizeof (bfd_size_type)
397 && ( (bfd_size_type) ((size_t) size) != size
398 || (bfd_size_type) ((size_t) nmemb) != nmemb))
401 error (_("Size truncation prevents reading %s"
402 " elements of size %s for %s\n"),
403 bfd_vmatoa ("u", nmemb), bfd_vmatoa ("u", size), reason);
407 /* Check for size overflow. */
411 error (_("Size overflow prevents reading %s"
412 " elements of size %s for %s\n"),
413 bfd_vmatoa ("u", nmemb), bfd_vmatoa ("u", size), reason);
417 /* Be kind to memory checkers (eg valgrind, address sanitizer) by not
418 attempting to allocate memory when the read is bound to fail. */
419 if (archive_file_offset > filedata->file_size
420 || offset > filedata->file_size - archive_file_offset
421 || amt > filedata->file_size - archive_file_offset - offset)
424 error (_("Reading %s bytes extends past end of file for %s\n"),
425 bfd_vmatoa ("u", amt), reason);
429 if (fseek (filedata->handle, archive_file_offset + offset, SEEK_SET))
432 error (_("Unable to seek to 0x%lx for %s\n"),
433 archive_file_offset + offset, reason);
440 /* Check for overflow. */
441 if (nmemb < (~(bfd_size_type) 0 - 1) / size)
442 /* + 1 so that we can '\0' terminate invalid string table sections. */
443 mvar = malloc ((size_t) amt + 1);
448 error (_("Out of memory allocating %s bytes for %s\n"),
449 bfd_vmatoa ("u", amt), reason);
453 ((char *) mvar)[amt] = '\0';
456 if (fread (mvar, (size_t) size, (size_t) nmemb, filedata->handle) != nmemb)
459 error (_("Unable to read in %s bytes of %s\n"),
460 bfd_vmatoa ("u", amt), reason);
469 /* Print a VMA value in the MODE specified.
470 Returns the number of characters displayed. */
473 print_vma (bfd_vma vma, print_mode mode)
485 return nc + printf ("%8.8" BFD_VMA_FMT "x", vma);
492 return printf ("%5" BFD_VMA_FMT "d", vma);
498 return nc + printf ("%" BFD_VMA_FMT "x", vma);
501 return printf ("%" BFD_VMA_FMT "d", vma);
504 return printf ("%" BFD_VMA_FMT "u", vma);
507 /* FIXME: Report unrecognised mode ? */
512 /* Display a symbol on stdout. Handles the display of control characters and
513 multibye characters (assuming the host environment supports them).
515 Display at most abs(WIDTH) characters, truncating as necessary, unless do_wide is true.
517 If WIDTH is negative then ensure that the output is at least (- WIDTH) characters,
518 padding as necessary.
520 Returns the number of emitted characters. */
523 print_symbol (signed int width, const char *symbol)
525 bfd_boolean extra_padding = FALSE;
526 signed int num_printed = 0;
527 #ifdef HAVE_MBSTATE_T
530 unsigned int width_remaining;
534 /* Keep the width positive. This helps the code below. */
536 extra_padding = TRUE;
542 /* Set the remaining width to a very large value.
543 This simplifies the code below. */
544 width_remaining = INT_MAX;
546 width_remaining = width;
548 #ifdef HAVE_MBSTATE_T
549 /* Initialise the multibyte conversion state. */
550 memset (& state, 0, sizeof (state));
553 while (width_remaining)
556 const char c = *symbol++;
561 /* Do not print control characters directly as they can affect terminal
562 settings. Such characters usually appear in the names generated
563 by the assembler for local labels. */
566 if (width_remaining < 2)
569 printf ("^%c", c + 0x40);
570 width_remaining -= 2;
573 else if (ISPRINT (c))
581 #ifdef HAVE_MBSTATE_T
584 /* Let printf do the hard work of displaying multibyte characters. */
585 printf ("%.1s", symbol - 1);
589 #ifdef HAVE_MBSTATE_T
590 /* Try to find out how many bytes made up the character that was
591 just printed. Advance the symbol pointer past the bytes that
593 n = mbrtowc (& w, symbol - 1, MB_CUR_MAX, & state);
597 if (n != (size_t) -1 && n != (size_t) -2 && n > 0)
602 if (extra_padding && num_printed < width)
604 /* Fill in the remaining spaces. */
605 printf ("%-*s", width - num_printed, " ");
612 /* Returns a pointer to a static buffer containing a printable version of
613 the given section's name. Like print_symbol, except that it does not try
614 to print multibyte characters, it just interprets them as hex values. */
617 printable_section_name (Filedata * filedata, const Elf_Internal_Shdr * sec)
619 #define MAX_PRINT_SEC_NAME_LEN 128
620 static char sec_name_buf [MAX_PRINT_SEC_NAME_LEN + 1];
621 const char * name = SECTION_NAME (sec);
622 char * buf = sec_name_buf;
624 unsigned int remaining = MAX_PRINT_SEC_NAME_LEN;
626 while ((c = * name ++) != 0)
637 else if (ISPRINT (c))
644 static char hex[17] = "0123456789ABCDEF";
649 * buf ++ = hex[(c & 0xf0) >> 4];
650 * buf ++ = hex[c & 0x0f];
664 printable_section_name_from_index (Filedata * filedata, unsigned long ndx)
666 if (ndx >= filedata->file_header.e_shnum)
667 return _("<corrupt>");
669 return printable_section_name (filedata, filedata->section_headers + ndx);
672 /* Return a pointer to section NAME, or NULL if no such section exists. */
674 static Elf_Internal_Shdr *
675 find_section (Filedata * filedata, const char * name)
679 if (filedata->section_headers == NULL)
682 for (i = 0; i < filedata->file_header.e_shnum; i++)
683 if (streq (SECTION_NAME (filedata->section_headers + i), name))
684 return filedata->section_headers + i;
689 /* Return a pointer to a section containing ADDR, or NULL if no such
692 static Elf_Internal_Shdr *
693 find_section_by_address (Filedata * filedata, bfd_vma addr)
697 if (filedata->section_headers == NULL)
700 for (i = 0; i < filedata->file_header.e_shnum; i++)
702 Elf_Internal_Shdr *sec = filedata->section_headers + i;
704 if (addr >= sec->sh_addr && addr < sec->sh_addr + sec->sh_size)
711 static Elf_Internal_Shdr *
712 find_section_by_type (Filedata * filedata, unsigned int type)
716 if (filedata->section_headers == NULL)
719 for (i = 0; i < filedata->file_header.e_shnum; i++)
721 Elf_Internal_Shdr *sec = filedata->section_headers + i;
723 if (sec->sh_type == type)
730 /* Return a pointer to section NAME, or NULL if no such section exists,
731 restricted to the list of sections given in SET. */
733 static Elf_Internal_Shdr *
734 find_section_in_set (Filedata * filedata, const char * name, unsigned int * set)
738 if (filedata->section_headers == NULL)
743 while ((i = *set++) > 0)
745 /* See PR 21156 for a reproducer. */
746 if (i >= filedata->file_header.e_shnum)
747 continue; /* FIXME: Should we issue an error message ? */
749 if (streq (SECTION_NAME (filedata->section_headers + i), name))
750 return filedata->section_headers + i;
754 return find_section (filedata, name);
757 /* Read an unsigned LEB128 encoded value from DATA.
758 Set *LENGTH_RETURN to the number of bytes read. */
760 static inline unsigned long
761 read_uleb128 (unsigned char * data,
762 unsigned int * length_return,
763 const unsigned char * const end)
765 return read_leb128 (data, length_return, FALSE, end);
768 /* Return TRUE if the current file is for IA-64 machine and OpenVMS ABI.
769 This OS has so many departures from the ELF standard that we test it at
772 static inline bfd_boolean
773 is_ia64_vms (Filedata * filedata)
775 return filedata->file_header.e_machine == EM_IA_64
776 && filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_OPENVMS;
779 /* Guess the relocation size commonly used by the specific machines. */
782 guess_is_rela (unsigned int e_machine)
786 /* Targets that use REL relocations. */
803 /* Targets that use RELA relocations. */
807 case EM_ADAPTEVA_EPIPHANY:
809 case EM_ALTERA_NIOS2:
812 case EM_ARC_COMPACT2:
833 case EM_LATTICEMICO32:
842 case EM_CYGNUS_MN10200:
844 case EM_CYGNUS_MN10300:
880 case EM_MICROBLAZE_OLD:
902 warn (_("Don't know about relocations on this machine architecture\n"));
907 /* Load RELA type relocations from FILEDATA at REL_OFFSET extending for REL_SIZE bytes.
908 Returns TRUE upon success, FALSE otherwise. If successful then a
909 pointer to a malloc'ed buffer containing the relocs is placed in *RELASP,
910 and the number of relocs loaded is placed in *NRELASP. It is the caller's
911 responsibility to free the allocated buffer. */
914 slurp_rela_relocs (Filedata * filedata,
915 unsigned long rel_offset,
916 unsigned long rel_size,
917 Elf_Internal_Rela ** relasp,
918 unsigned long * nrelasp)
920 Elf_Internal_Rela * relas;
926 Elf32_External_Rela * erelas;
928 erelas = (Elf32_External_Rela *) get_data (NULL, filedata, rel_offset, 1,
929 rel_size, _("32-bit relocation data"));
933 nrelas = rel_size / sizeof (Elf32_External_Rela);
935 relas = (Elf_Internal_Rela *) cmalloc (nrelas,
936 sizeof (Elf_Internal_Rela));
941 error (_("out of memory parsing relocs\n"));
945 for (i = 0; i < nrelas; i++)
947 relas[i].r_offset = BYTE_GET (erelas[i].r_offset);
948 relas[i].r_info = BYTE_GET (erelas[i].r_info);
949 relas[i].r_addend = BYTE_GET_SIGNED (erelas[i].r_addend);
956 Elf64_External_Rela * erelas;
958 erelas = (Elf64_External_Rela *) get_data (NULL, filedata, rel_offset, 1,
959 rel_size, _("64-bit relocation data"));
963 nrelas = rel_size / sizeof (Elf64_External_Rela);
965 relas = (Elf_Internal_Rela *) cmalloc (nrelas,
966 sizeof (Elf_Internal_Rela));
971 error (_("out of memory parsing relocs\n"));
975 for (i = 0; i < nrelas; i++)
977 relas[i].r_offset = BYTE_GET (erelas[i].r_offset);
978 relas[i].r_info = BYTE_GET (erelas[i].r_info);
979 relas[i].r_addend = BYTE_GET_SIGNED (erelas[i].r_addend);
981 /* The #ifdef BFD64 below is to prevent a compile time
982 warning. We know that if we do not have a 64 bit data
983 type that we will never execute this code anyway. */
985 if (filedata->file_header.e_machine == EM_MIPS
986 && filedata->file_header.e_ident[EI_DATA] != ELFDATA2MSB)
988 /* In little-endian objects, r_info isn't really a
989 64-bit little-endian value: it has a 32-bit
990 little-endian symbol index followed by four
991 individual byte fields. Reorder INFO
993 bfd_vma inf = relas[i].r_info;
994 inf = (((inf & 0xffffffff) << 32)
995 | ((inf >> 56) & 0xff)
996 | ((inf >> 40) & 0xff00)
997 | ((inf >> 24) & 0xff0000)
998 | ((inf >> 8) & 0xff000000));
999 relas[i].r_info = inf;
1012 /* Load REL type relocations from FILEDATA at REL_OFFSET extending for REL_SIZE bytes.
1013 Returns TRUE upon success, FALSE otherwise. If successful then a
1014 pointer to a malloc'ed buffer containing the relocs is placed in *RELSP,
1015 and the number of relocs loaded is placed in *NRELSP. It is the caller's
1016 responsibility to free the allocated buffer. */
1019 slurp_rel_relocs (Filedata * filedata,
1020 unsigned long rel_offset,
1021 unsigned long rel_size,
1022 Elf_Internal_Rela ** relsp,
1023 unsigned long * nrelsp)
1025 Elf_Internal_Rela * rels;
1031 Elf32_External_Rel * erels;
1033 erels = (Elf32_External_Rel *) get_data (NULL, filedata, rel_offset, 1,
1034 rel_size, _("32-bit relocation data"));
1038 nrels = rel_size / sizeof (Elf32_External_Rel);
1040 rels = (Elf_Internal_Rela *) cmalloc (nrels, sizeof (Elf_Internal_Rela));
1045 error (_("out of memory parsing relocs\n"));
1049 for (i = 0; i < nrels; i++)
1051 rels[i].r_offset = BYTE_GET (erels[i].r_offset);
1052 rels[i].r_info = BYTE_GET (erels[i].r_info);
1053 rels[i].r_addend = 0;
1060 Elf64_External_Rel * erels;
1062 erels = (Elf64_External_Rel *) get_data (NULL, filedata, rel_offset, 1,
1063 rel_size, _("64-bit relocation data"));
1067 nrels = rel_size / sizeof (Elf64_External_Rel);
1069 rels = (Elf_Internal_Rela *) cmalloc (nrels, sizeof (Elf_Internal_Rela));
1074 error (_("out of memory parsing relocs\n"));
1078 for (i = 0; i < nrels; i++)
1080 rels[i].r_offset = BYTE_GET (erels[i].r_offset);
1081 rels[i].r_info = BYTE_GET (erels[i].r_info);
1082 rels[i].r_addend = 0;
1084 /* The #ifdef BFD64 below is to prevent a compile time
1085 warning. We know that if we do not have a 64 bit data
1086 type that we will never execute this code anyway. */
1088 if (filedata->file_header.e_machine == EM_MIPS
1089 && filedata->file_header.e_ident[EI_DATA] != ELFDATA2MSB)
1091 /* In little-endian objects, r_info isn't really a
1092 64-bit little-endian value: it has a 32-bit
1093 little-endian symbol index followed by four
1094 individual byte fields. Reorder INFO
1096 bfd_vma inf = rels[i].r_info;
1097 inf = (((inf & 0xffffffff) << 32)
1098 | ((inf >> 56) & 0xff)
1099 | ((inf >> 40) & 0xff00)
1100 | ((inf >> 24) & 0xff0000)
1101 | ((inf >> 8) & 0xff000000));
1102 rels[i].r_info = inf;
1115 /* Returns the reloc type extracted from the reloc info field. */
1118 get_reloc_type (Filedata * filedata, bfd_vma reloc_info)
1121 return ELF32_R_TYPE (reloc_info);
1123 switch (filedata->file_header.e_machine)
1126 /* Note: We assume that reloc_info has already been adjusted for us. */
1127 return ELF64_MIPS_R_TYPE (reloc_info);
1130 return ELF64_R_TYPE_ID (reloc_info);
1133 return ELF64_R_TYPE (reloc_info);
1137 /* Return the symbol index extracted from the reloc info field. */
1140 get_reloc_symindex (bfd_vma reloc_info)
1142 return is_32bit_elf ? ELF32_R_SYM (reloc_info) : ELF64_R_SYM (reloc_info);
1145 static inline bfd_boolean
1146 uses_msp430x_relocs (Filedata * filedata)
1149 filedata->file_header.e_machine == EM_MSP430 /* Paranoia. */
1150 /* GCC uses osabi == ELFOSBI_STANDALONE. */
1151 && (((filedata->file_header.e_flags & EF_MSP430_MACH) == E_MSP430_MACH_MSP430X)
1152 /* TI compiler uses ELFOSABI_NONE. */
1153 || (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_NONE));
1156 /* Display the contents of the relocation data found at the specified
1160 dump_relocations (Filedata * filedata,
1161 unsigned long rel_offset,
1162 unsigned long rel_size,
1163 Elf_Internal_Sym * symtab,
1164 unsigned long nsyms,
1166 unsigned long strtablen,
1168 bfd_boolean is_dynsym)
1171 Elf_Internal_Rela * rels;
1172 bfd_boolean res = TRUE;
1174 if (is_rela == UNKNOWN)
1175 is_rela = guess_is_rela (filedata->file_header.e_machine);
1179 if (!slurp_rela_relocs (filedata, rel_offset, rel_size, &rels, &rel_size))
1184 if (!slurp_rel_relocs (filedata, rel_offset, rel_size, &rels, &rel_size))
1193 printf (_(" Offset Info Type Sym. Value Symbol's Name + Addend\n"));
1195 printf (_(" Offset Info Type Sym.Value Sym. Name + Addend\n"));
1200 printf (_(" Offset Info Type Sym. Value Symbol's Name\n"));
1202 printf (_(" Offset Info Type Sym.Value Sym. Name\n"));
1210 printf (_(" Offset Info Type Symbol's Value Symbol's Name + Addend\n"));
1212 printf (_(" Offset Info Type Sym. Value Sym. Name + Addend\n"));
1217 printf (_(" Offset Info Type Symbol's Value Symbol's Name\n"));
1219 printf (_(" Offset Info Type Sym. Value Sym. Name\n"));
1223 for (i = 0; i < rel_size; i++)
1228 bfd_vma symtab_index;
1231 offset = rels[i].r_offset;
1232 inf = rels[i].r_info;
1234 type = get_reloc_type (filedata, inf);
1235 symtab_index = get_reloc_symindex (inf);
1239 printf ("%8.8lx %8.8lx ",
1240 (unsigned long) offset & 0xffffffff,
1241 (unsigned long) inf & 0xffffffff);
1245 #if BFD_HOST_64BIT_LONG
1247 ? "%16.16lx %16.16lx "
1248 : "%12.12lx %12.12lx ",
1250 #elif BFD_HOST_64BIT_LONG_LONG
1253 ? "%16.16llx %16.16llx "
1254 : "%12.12llx %12.12llx ",
1258 ? "%16.16I64x %16.16I64x "
1259 : "%12.12I64x %12.12I64x ",
1264 ? "%8.8lx%8.8lx %8.8lx%8.8lx "
1265 : "%4.4lx%8.8lx %4.4lx%8.8lx ",
1266 _bfd_int64_high (offset),
1267 _bfd_int64_low (offset),
1268 _bfd_int64_high (inf),
1269 _bfd_int64_low (inf));
1273 switch (filedata->file_header.e_machine)
1280 rtype = elf_aarch64_reloc_type (type);
1284 case EM_CYGNUS_M32R:
1285 rtype = elf_m32r_reloc_type (type);
1290 rtype = elf_i386_reloc_type (type);
1295 rtype = elf_m68hc11_reloc_type (type);
1299 rtype = elf_s12z_reloc_type (type);
1303 rtype = elf_m68k_reloc_type (type);
1307 rtype = elf_i960_reloc_type (type);
1312 rtype = elf_avr_reloc_type (type);
1315 case EM_OLD_SPARCV9:
1316 case EM_SPARC32PLUS:
1319 rtype = elf_sparc_reloc_type (type);
1323 rtype = elf_spu_reloc_type (type);
1327 rtype = v800_reloc_type (type);
1330 case EM_CYGNUS_V850:
1331 rtype = v850_reloc_type (type);
1335 case EM_CYGNUS_D10V:
1336 rtype = elf_d10v_reloc_type (type);
1340 case EM_CYGNUS_D30V:
1341 rtype = elf_d30v_reloc_type (type);
1345 rtype = elf_dlx_reloc_type (type);
1349 rtype = elf_sh_reloc_type (type);
1353 case EM_CYGNUS_MN10300:
1354 rtype = elf_mn10300_reloc_type (type);
1358 case EM_CYGNUS_MN10200:
1359 rtype = elf_mn10200_reloc_type (type);
1363 case EM_CYGNUS_FR30:
1364 rtype = elf_fr30_reloc_type (type);
1368 rtype = elf_frv_reloc_type (type);
1372 rtype = elf_csky_reloc_type (type);
1376 rtype = elf_ft32_reloc_type (type);
1380 rtype = elf_mcore_reloc_type (type);
1384 rtype = elf_mmix_reloc_type (type);
1388 rtype = elf_moxie_reloc_type (type);
1392 if (uses_msp430x_relocs (filedata))
1394 rtype = elf_msp430x_reloc_type (type);
1399 rtype = elf_msp430_reloc_type (type);
1403 rtype = elf_nds32_reloc_type (type);
1407 rtype = elf_ppc_reloc_type (type);
1411 rtype = elf_ppc64_reloc_type (type);
1415 case EM_MIPS_RS3_LE:
1416 rtype = elf_mips_reloc_type (type);
1420 rtype = elf_riscv_reloc_type (type);
1424 rtype = elf_alpha_reloc_type (type);
1428 rtype = elf_arm_reloc_type (type);
1432 case EM_ARC_COMPACT:
1433 case EM_ARC_COMPACT2:
1434 rtype = elf_arc_reloc_type (type);
1438 rtype = elf_hppa_reloc_type (type);
1444 rtype = elf_h8_reloc_type (type);
1448 rtype = elf_or1k_reloc_type (type);
1453 rtype = elf_pj_reloc_type (type);
1456 rtype = elf_ia64_reloc_type (type);
1460 rtype = elf_cris_reloc_type (type);
1464 rtype = elf_i860_reloc_type (type);
1470 rtype = elf_x86_64_reloc_type (type);
1474 rtype = i370_reloc_type (type);
1479 rtype = elf_s390_reloc_type (type);
1483 rtype = elf_score_reloc_type (type);
1487 rtype = elf_xstormy16_reloc_type (type);
1491 rtype = elf_crx_reloc_type (type);
1495 rtype = elf_vax_reloc_type (type);
1499 rtype = elf_visium_reloc_type (type);
1503 rtype = elf_bpf_reloc_type (type);
1506 case EM_ADAPTEVA_EPIPHANY:
1507 rtype = elf_epiphany_reloc_type (type);
1512 rtype = elf_ip2k_reloc_type (type);
1516 rtype = elf_iq2000_reloc_type (type);
1521 rtype = elf_xtensa_reloc_type (type);
1524 case EM_LATTICEMICO32:
1525 rtype = elf_lm32_reloc_type (type);
1530 rtype = elf_m32c_reloc_type (type);
1534 rtype = elf_mt_reloc_type (type);
1538 rtype = elf_bfin_reloc_type (type);
1542 rtype = elf_mep_reloc_type (type);
1546 rtype = elf_cr16_reloc_type (type);
1550 case EM_MICROBLAZE_OLD:
1551 rtype = elf_microblaze_reloc_type (type);
1555 rtype = elf_rl78_reloc_type (type);
1559 rtype = elf_rx_reloc_type (type);
1563 rtype = elf_metag_reloc_type (type);
1568 rtype = elf_xc16x_reloc_type (type);
1572 rtype = elf_tic6x_reloc_type (type);
1576 rtype = elf_tilegx_reloc_type (type);
1580 rtype = elf_tilepro_reloc_type (type);
1583 case EM_WEBASSEMBLY:
1584 rtype = elf_wasm32_reloc_type (type);
1588 rtype = elf_xgate_reloc_type (type);
1591 case EM_ALTERA_NIOS2:
1592 rtype = elf_nios2_reloc_type (type);
1596 rtype = elf_pru_reloc_type (type);
1600 if (EF_NFP_MACH (filedata->file_header.e_flags) == E_NFP_MACH_3200)
1601 rtype = elf_nfp3200_reloc_type (type);
1603 rtype = elf_nfp_reloc_type (type);
1608 printf (_("unrecognized: %-7lx"), (unsigned long) type & 0xffffffff);
1610 printf (do_wide ? "%-22s" : "%-17.17s", rtype);
1612 if (filedata->file_header.e_machine == EM_ALPHA
1614 && streq (rtype, "R_ALPHA_LITUSE")
1617 switch (rels[i].r_addend)
1619 case LITUSE_ALPHA_ADDR: rtype = "ADDR"; break;
1620 case LITUSE_ALPHA_BASE: rtype = "BASE"; break;
1621 case LITUSE_ALPHA_BYTOFF: rtype = "BYTOFF"; break;
1622 case LITUSE_ALPHA_JSR: rtype = "JSR"; break;
1623 case LITUSE_ALPHA_TLSGD: rtype = "TLSGD"; break;
1624 case LITUSE_ALPHA_TLSLDM: rtype = "TLSLDM"; break;
1625 case LITUSE_ALPHA_JSRDIRECT: rtype = "JSRDIRECT"; break;
1626 default: rtype = NULL;
1630 printf (" (%s)", rtype);
1634 printf (_("<unknown addend: %lx>"),
1635 (unsigned long) rels[i].r_addend);
1639 else if (symtab_index)
1641 if (symtab == NULL || symtab_index >= nsyms)
1643 error (_(" bad symbol index: %08lx in reloc"), (unsigned long) symtab_index);
1648 Elf_Internal_Sym * psym;
1649 const char * version_string;
1650 enum versioned_symbol_info sym_info;
1651 unsigned short vna_other;
1653 psym = symtab + symtab_index;
1656 = get_symbol_version_string (filedata, is_dynsym,
1665 if (ELF_ST_TYPE (psym->st_info) == STT_GNU_IFUNC)
1669 unsigned int width = is_32bit_elf ? 8 : 14;
1671 /* Relocations against GNU_IFUNC symbols do not use the value
1672 of the symbol as the address to relocate against. Instead
1673 they invoke the function named by the symbol and use its
1674 result as the address for relocation.
1676 To indicate this to the user, do not display the value of
1677 the symbol in the "Symbols's Value" field. Instead show
1678 its name followed by () as a hint that the symbol is
1682 || psym->st_name == 0
1683 || psym->st_name >= strtablen)
1686 name = strtab + psym->st_name;
1688 len = print_symbol (width, name);
1690 printf (sym_info == symbol_public ? "@@%s" : "@%s",
1692 printf ("()%-*s", len <= width ? (width + 1) - len : 1, " ");
1696 print_vma (psym->st_value, LONG_HEX);
1698 printf (is_32bit_elf ? " " : " ");
1701 if (psym->st_name == 0)
1703 const char * sec_name = "<null>";
1706 if (ELF_ST_TYPE (psym->st_info) == STT_SECTION)
1708 if (psym->st_shndx < filedata->file_header.e_shnum)
1709 sec_name = SECTION_NAME (filedata->section_headers + psym->st_shndx);
1710 else if (psym->st_shndx == SHN_ABS)
1712 else if (psym->st_shndx == SHN_COMMON)
1713 sec_name = "COMMON";
1714 else if ((filedata->file_header.e_machine == EM_MIPS
1715 && psym->st_shndx == SHN_MIPS_SCOMMON)
1716 || (filedata->file_header.e_machine == EM_TI_C6000
1717 && psym->st_shndx == SHN_TIC6X_SCOMMON))
1718 sec_name = "SCOMMON";
1719 else if (filedata->file_header.e_machine == EM_MIPS
1720 && psym->st_shndx == SHN_MIPS_SUNDEFINED)
1721 sec_name = "SUNDEF";
1722 else if ((filedata->file_header.e_machine == EM_X86_64
1723 || filedata->file_header.e_machine == EM_L1OM
1724 || filedata->file_header.e_machine == EM_K1OM)
1725 && psym->st_shndx == SHN_X86_64_LCOMMON)
1726 sec_name = "LARGE_COMMON";
1727 else if (filedata->file_header.e_machine == EM_IA_64
1728 && filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_HPUX
1729 && psym->st_shndx == SHN_IA_64_ANSI_COMMON)
1730 sec_name = "ANSI_COM";
1731 else if (is_ia64_vms (filedata)
1732 && psym->st_shndx == SHN_IA_64_VMS_SYMVEC)
1733 sec_name = "VMS_SYMVEC";
1736 sprintf (name_buf, "<section 0x%x>",
1737 (unsigned int) psym->st_shndx);
1738 sec_name = name_buf;
1741 print_symbol (22, sec_name);
1743 else if (strtab == NULL)
1744 printf (_("<string table index: %3ld>"), psym->st_name);
1745 else if (psym->st_name >= strtablen)
1747 error (_("<corrupt string table index: %3ld>"), psym->st_name);
1752 print_symbol (22, strtab + psym->st_name);
1754 printf (sym_info == symbol_public ? "@@%s" : "@%s",
1760 bfd_vma off = rels[i].r_addend;
1762 if ((bfd_signed_vma) off < 0)
1763 printf (" - %" BFD_VMA_FMT "x", - off);
1765 printf (" + %" BFD_VMA_FMT "x", off);
1771 bfd_vma off = rels[i].r_addend;
1773 printf ("%*c", is_32bit_elf ? 12 : 20, ' ');
1774 if ((bfd_signed_vma) off < 0)
1775 printf ("-%" BFD_VMA_FMT "x", - off);
1777 printf ("%" BFD_VMA_FMT "x", off);
1780 if (filedata->file_header.e_machine == EM_SPARCV9
1782 && streq (rtype, "R_SPARC_OLO10"))
1783 printf (" + %lx", (unsigned long) ELF64_R_TYPE_DATA (inf));
1788 if (! is_32bit_elf && filedata->file_header.e_machine == EM_MIPS)
1790 bfd_vma type2 = ELF64_MIPS_R_TYPE2 (inf);
1791 bfd_vma type3 = ELF64_MIPS_R_TYPE3 (inf);
1792 const char * rtype2 = elf_mips_reloc_type (type2);
1793 const char * rtype3 = elf_mips_reloc_type (type3);
1795 printf (" Type2: ");
1798 printf (_("unrecognized: %-7lx"),
1799 (unsigned long) type2 & 0xffffffff);
1801 printf ("%-17.17s", rtype2);
1803 printf ("\n Type3: ");
1806 printf (_("unrecognized: %-7lx"),
1807 (unsigned long) type3 & 0xffffffff);
1809 printf ("%-17.17s", rtype3);
1822 get_aarch64_dynamic_type (unsigned long type)
1826 case DT_AARCH64_BTI_PLT: return "AARCH64_BTI_PLT";
1827 case DT_AARCH64_PAC_PLT: return "AARCH64_PAC_PLT";
1828 case DT_AARCH64_VARIANT_PCS: return "AARCH64_VARIANT_PCS";
1835 get_mips_dynamic_type (unsigned long type)
1839 case DT_MIPS_RLD_VERSION: return "MIPS_RLD_VERSION";
1840 case DT_MIPS_TIME_STAMP: return "MIPS_TIME_STAMP";
1841 case DT_MIPS_ICHECKSUM: return "MIPS_ICHECKSUM";
1842 case DT_MIPS_IVERSION: return "MIPS_IVERSION";
1843 case DT_MIPS_FLAGS: return "MIPS_FLAGS";
1844 case DT_MIPS_BASE_ADDRESS: return "MIPS_BASE_ADDRESS";
1845 case DT_MIPS_MSYM: return "MIPS_MSYM";
1846 case DT_MIPS_CONFLICT: return "MIPS_CONFLICT";
1847 case DT_MIPS_LIBLIST: return "MIPS_LIBLIST";
1848 case DT_MIPS_LOCAL_GOTNO: return "MIPS_LOCAL_GOTNO";
1849 case DT_MIPS_CONFLICTNO: return "MIPS_CONFLICTNO";
1850 case DT_MIPS_LIBLISTNO: return "MIPS_LIBLISTNO";
1851 case DT_MIPS_SYMTABNO: return "MIPS_SYMTABNO";
1852 case DT_MIPS_UNREFEXTNO: return "MIPS_UNREFEXTNO";
1853 case DT_MIPS_GOTSYM: return "MIPS_GOTSYM";
1854 case DT_MIPS_HIPAGENO: return "MIPS_HIPAGENO";
1855 case DT_MIPS_RLD_MAP: return "MIPS_RLD_MAP";
1856 case DT_MIPS_RLD_MAP_REL: return "MIPS_RLD_MAP_REL";
1857 case DT_MIPS_DELTA_CLASS: return "MIPS_DELTA_CLASS";
1858 case DT_MIPS_DELTA_CLASS_NO: return "MIPS_DELTA_CLASS_NO";
1859 case DT_MIPS_DELTA_INSTANCE: return "MIPS_DELTA_INSTANCE";
1860 case DT_MIPS_DELTA_INSTANCE_NO: return "MIPS_DELTA_INSTANCE_NO";
1861 case DT_MIPS_DELTA_RELOC: return "MIPS_DELTA_RELOC";
1862 case DT_MIPS_DELTA_RELOC_NO: return "MIPS_DELTA_RELOC_NO";
1863 case DT_MIPS_DELTA_SYM: return "MIPS_DELTA_SYM";
1864 case DT_MIPS_DELTA_SYM_NO: return "MIPS_DELTA_SYM_NO";
1865 case DT_MIPS_DELTA_CLASSSYM: return "MIPS_DELTA_CLASSSYM";
1866 case DT_MIPS_DELTA_CLASSSYM_NO: return "MIPS_DELTA_CLASSSYM_NO";
1867 case DT_MIPS_CXX_FLAGS: return "MIPS_CXX_FLAGS";
1868 case DT_MIPS_PIXIE_INIT: return "MIPS_PIXIE_INIT";
1869 case DT_MIPS_SYMBOL_LIB: return "MIPS_SYMBOL_LIB";
1870 case DT_MIPS_LOCALPAGE_GOTIDX: return "MIPS_LOCALPAGE_GOTIDX";
1871 case DT_MIPS_LOCAL_GOTIDX: return "MIPS_LOCAL_GOTIDX";
1872 case DT_MIPS_HIDDEN_GOTIDX: return "MIPS_HIDDEN_GOTIDX";
1873 case DT_MIPS_PROTECTED_GOTIDX: return "MIPS_PROTECTED_GOTIDX";
1874 case DT_MIPS_OPTIONS: return "MIPS_OPTIONS";
1875 case DT_MIPS_INTERFACE: return "MIPS_INTERFACE";
1876 case DT_MIPS_DYNSTR_ALIGN: return "MIPS_DYNSTR_ALIGN";
1877 case DT_MIPS_INTERFACE_SIZE: return "MIPS_INTERFACE_SIZE";
1878 case DT_MIPS_RLD_TEXT_RESOLVE_ADDR: return "MIPS_RLD_TEXT_RESOLVE_ADDR";
1879 case DT_MIPS_PERF_SUFFIX: return "MIPS_PERF_SUFFIX";
1880 case DT_MIPS_COMPACT_SIZE: return "MIPS_COMPACT_SIZE";
1881 case DT_MIPS_GP_VALUE: return "MIPS_GP_VALUE";
1882 case DT_MIPS_AUX_DYNAMIC: return "MIPS_AUX_DYNAMIC";
1883 case DT_MIPS_PLTGOT: return "MIPS_PLTGOT";
1884 case DT_MIPS_RWPLT: return "MIPS_RWPLT";
1891 get_sparc64_dynamic_type (unsigned long type)
1895 case DT_SPARC_REGISTER: return "SPARC_REGISTER";
1902 get_ppc_dynamic_type (unsigned long type)
1906 case DT_PPC_GOT: return "PPC_GOT";
1907 case DT_PPC_OPT: return "PPC_OPT";
1914 get_ppc64_dynamic_type (unsigned long type)
1918 case DT_PPC64_GLINK: return "PPC64_GLINK";
1919 case DT_PPC64_OPD: return "PPC64_OPD";
1920 case DT_PPC64_OPDSZ: return "PPC64_OPDSZ";
1921 case DT_PPC64_OPT: return "PPC64_OPT";
1928 get_parisc_dynamic_type (unsigned long type)
1932 case DT_HP_LOAD_MAP: return "HP_LOAD_MAP";
1933 case DT_HP_DLD_FLAGS: return "HP_DLD_FLAGS";
1934 case DT_HP_DLD_HOOK: return "HP_DLD_HOOK";
1935 case DT_HP_UX10_INIT: return "HP_UX10_INIT";
1936 case DT_HP_UX10_INITSZ: return "HP_UX10_INITSZ";
1937 case DT_HP_PREINIT: return "HP_PREINIT";
1938 case DT_HP_PREINITSZ: return "HP_PREINITSZ";
1939 case DT_HP_NEEDED: return "HP_NEEDED";
1940 case DT_HP_TIME_STAMP: return "HP_TIME_STAMP";
1941 case DT_HP_CHECKSUM: return "HP_CHECKSUM";
1942 case DT_HP_GST_SIZE: return "HP_GST_SIZE";
1943 case DT_HP_GST_VERSION: return "HP_GST_VERSION";
1944 case DT_HP_GST_HASHVAL: return "HP_GST_HASHVAL";
1945 case DT_HP_EPLTREL: return "HP_GST_EPLTREL";
1946 case DT_HP_EPLTRELSZ: return "HP_GST_EPLTRELSZ";
1947 case DT_HP_FILTERED: return "HP_FILTERED";
1948 case DT_HP_FILTER_TLS: return "HP_FILTER_TLS";
1949 case DT_HP_COMPAT_FILTERED: return "HP_COMPAT_FILTERED";
1950 case DT_HP_LAZYLOAD: return "HP_LAZYLOAD";
1951 case DT_HP_BIND_NOW_COUNT: return "HP_BIND_NOW_COUNT";
1952 case DT_PLT: return "PLT";
1953 case DT_PLT_SIZE: return "PLT_SIZE";
1954 case DT_DLT: return "DLT";
1955 case DT_DLT_SIZE: return "DLT_SIZE";
1962 get_ia64_dynamic_type (unsigned long type)
1966 case DT_IA_64_PLT_RESERVE: return "IA_64_PLT_RESERVE";
1967 case DT_IA_64_VMS_SUBTYPE: return "VMS_SUBTYPE";
1968 case DT_IA_64_VMS_IMGIOCNT: return "VMS_IMGIOCNT";
1969 case DT_IA_64_VMS_LNKFLAGS: return "VMS_LNKFLAGS";
1970 case DT_IA_64_VMS_VIR_MEM_BLK_SIZ: return "VMS_VIR_MEM_BLK_SIZ";
1971 case DT_IA_64_VMS_IDENT: return "VMS_IDENT";
1972 case DT_IA_64_VMS_NEEDED_IDENT: return "VMS_NEEDED_IDENT";
1973 case DT_IA_64_VMS_IMG_RELA_CNT: return "VMS_IMG_RELA_CNT";
1974 case DT_IA_64_VMS_SEG_RELA_CNT: return "VMS_SEG_RELA_CNT";
1975 case DT_IA_64_VMS_FIXUP_RELA_CNT: return "VMS_FIXUP_RELA_CNT";
1976 case DT_IA_64_VMS_FIXUP_NEEDED: return "VMS_FIXUP_NEEDED";
1977 case DT_IA_64_VMS_SYMVEC_CNT: return "VMS_SYMVEC_CNT";
1978 case DT_IA_64_VMS_XLATED: return "VMS_XLATED";
1979 case DT_IA_64_VMS_STACKSIZE: return "VMS_STACKSIZE";
1980 case DT_IA_64_VMS_UNWINDSZ: return "VMS_UNWINDSZ";
1981 case DT_IA_64_VMS_UNWIND_CODSEG: return "VMS_UNWIND_CODSEG";
1982 case DT_IA_64_VMS_UNWIND_INFOSEG: return "VMS_UNWIND_INFOSEG";
1983 case DT_IA_64_VMS_LINKTIME: return "VMS_LINKTIME";
1984 case DT_IA_64_VMS_SEG_NO: return "VMS_SEG_NO";
1985 case DT_IA_64_VMS_SYMVEC_OFFSET: return "VMS_SYMVEC_OFFSET";
1986 case DT_IA_64_VMS_SYMVEC_SEG: return "VMS_SYMVEC_SEG";
1987 case DT_IA_64_VMS_UNWIND_OFFSET: return "VMS_UNWIND_OFFSET";
1988 case DT_IA_64_VMS_UNWIND_SEG: return "VMS_UNWIND_SEG";
1989 case DT_IA_64_VMS_STRTAB_OFFSET: return "VMS_STRTAB_OFFSET";
1990 case DT_IA_64_VMS_SYSVER_OFFSET: return "VMS_SYSVER_OFFSET";
1991 case DT_IA_64_VMS_IMG_RELA_OFF: return "VMS_IMG_RELA_OFF";
1992 case DT_IA_64_VMS_SEG_RELA_OFF: return "VMS_SEG_RELA_OFF";
1993 case DT_IA_64_VMS_FIXUP_RELA_OFF: return "VMS_FIXUP_RELA_OFF";
1994 case DT_IA_64_VMS_PLTGOT_OFFSET: return "VMS_PLTGOT_OFFSET";
1995 case DT_IA_64_VMS_PLTGOT_SEG: return "VMS_PLTGOT_SEG";
1996 case DT_IA_64_VMS_FPMODE: return "VMS_FPMODE";
2003 get_solaris_section_type (unsigned long type)
2007 case 0x6fffffee: return "SUNW_ancillary";
2008 case 0x6fffffef: return "SUNW_capchain";
2009 case 0x6ffffff0: return "SUNW_capinfo";
2010 case 0x6ffffff1: return "SUNW_symsort";
2011 case 0x6ffffff2: return "SUNW_tlssort";
2012 case 0x6ffffff3: return "SUNW_LDYNSYM";
2013 case 0x6ffffff4: return "SUNW_dof";
2014 case 0x6ffffff5: return "SUNW_cap";
2015 case 0x6ffffff6: return "SUNW_SIGNATURE";
2016 case 0x6ffffff7: return "SUNW_ANNOTATE";
2017 case 0x6ffffff8: return "SUNW_DEBUGSTR";
2018 case 0x6ffffff9: return "SUNW_DEBUG";
2019 case 0x6ffffffa: return "SUNW_move";
2020 case 0x6ffffffb: return "SUNW_COMDAT";
2021 case 0x6ffffffc: return "SUNW_syminfo";
2022 case 0x6ffffffd: return "SUNW_verdef";
2023 case 0x6ffffffe: return "SUNW_verneed";
2024 case 0x6fffffff: return "SUNW_versym";
2025 case 0x70000000: return "SPARC_GOTDATA";
2026 default: return NULL;
2031 get_alpha_dynamic_type (unsigned long type)
2035 case DT_ALPHA_PLTRO: return "ALPHA_PLTRO";
2036 default: return NULL;
2041 get_score_dynamic_type (unsigned long type)
2045 case DT_SCORE_BASE_ADDRESS: return "SCORE_BASE_ADDRESS";
2046 case DT_SCORE_LOCAL_GOTNO: return "SCORE_LOCAL_GOTNO";
2047 case DT_SCORE_SYMTABNO: return "SCORE_SYMTABNO";
2048 case DT_SCORE_GOTSYM: return "SCORE_GOTSYM";
2049 case DT_SCORE_UNREFEXTNO: return "SCORE_UNREFEXTNO";
2050 case DT_SCORE_HIPAGENO: return "SCORE_HIPAGENO";
2051 default: return NULL;
2056 get_tic6x_dynamic_type (unsigned long type)
2060 case DT_C6000_GSYM_OFFSET: return "C6000_GSYM_OFFSET";
2061 case DT_C6000_GSTR_OFFSET: return "C6000_GSTR_OFFSET";
2062 case DT_C6000_DSBT_BASE: return "C6000_DSBT_BASE";
2063 case DT_C6000_DSBT_SIZE: return "C6000_DSBT_SIZE";
2064 case DT_C6000_PREEMPTMAP: return "C6000_PREEMPTMAP";
2065 case DT_C6000_DSBT_INDEX: return "C6000_DSBT_INDEX";
2066 default: return NULL;
2071 get_nios2_dynamic_type (unsigned long type)
2075 case DT_NIOS2_GP: return "NIOS2_GP";
2076 default: return NULL;
2081 get_solaris_dynamic_type (unsigned long type)
2085 case 0x6000000d: return "SUNW_AUXILIARY";
2086 case 0x6000000e: return "SUNW_RTLDINF";
2087 case 0x6000000f: return "SUNW_FILTER";
2088 case 0x60000010: return "SUNW_CAP";
2089 case 0x60000011: return "SUNW_SYMTAB";
2090 case 0x60000012: return "SUNW_SYMSZ";
2091 case 0x60000013: return "SUNW_SORTENT";
2092 case 0x60000014: return "SUNW_SYMSORT";
2093 case 0x60000015: return "SUNW_SYMSORTSZ";
2094 case 0x60000016: return "SUNW_TLSSORT";
2095 case 0x60000017: return "SUNW_TLSSORTSZ";
2096 case 0x60000018: return "SUNW_CAPINFO";
2097 case 0x60000019: return "SUNW_STRPAD";
2098 case 0x6000001a: return "SUNW_CAPCHAIN";
2099 case 0x6000001b: return "SUNW_LDMACH";
2100 case 0x6000001d: return "SUNW_CAPCHAINENT";
2101 case 0x6000001f: return "SUNW_CAPCHAINSZ";
2102 case 0x60000021: return "SUNW_PARENT";
2103 case 0x60000023: return "SUNW_ASLR";
2104 case 0x60000025: return "SUNW_RELAX";
2105 case 0x60000029: return "SUNW_NXHEAP";
2106 case 0x6000002b: return "SUNW_NXSTACK";
2108 case 0x70000001: return "SPARC_REGISTER";
2109 case 0x7ffffffd: return "AUXILIARY";
2110 case 0x7ffffffe: return "USED";
2111 case 0x7fffffff: return "FILTER";
2113 default: return NULL;
2118 get_dynamic_type (Filedata * filedata, unsigned long type)
2120 static char buff[64];
2124 case DT_NULL: return "NULL";
2125 case DT_NEEDED: return "NEEDED";
2126 case DT_PLTRELSZ: return "PLTRELSZ";
2127 case DT_PLTGOT: return "PLTGOT";
2128 case DT_HASH: return "HASH";
2129 case DT_STRTAB: return "STRTAB";
2130 case DT_SYMTAB: return "SYMTAB";
2131 case DT_RELA: return "RELA";
2132 case DT_RELASZ: return "RELASZ";
2133 case DT_RELAENT: return "RELAENT";
2134 case DT_STRSZ: return "STRSZ";
2135 case DT_SYMENT: return "SYMENT";
2136 case DT_INIT: return "INIT";
2137 case DT_FINI: return "FINI";
2138 case DT_SONAME: return "SONAME";
2139 case DT_RPATH: return "RPATH";
2140 case DT_SYMBOLIC: return "SYMBOLIC";
2141 case DT_REL: return "REL";
2142 case DT_RELSZ: return "RELSZ";
2143 case DT_RELENT: return "RELENT";
2144 case DT_PLTREL: return "PLTREL";
2145 case DT_DEBUG: return "DEBUG";
2146 case DT_TEXTREL: return "TEXTREL";
2147 case DT_JMPREL: return "JMPREL";
2148 case DT_BIND_NOW: return "BIND_NOW";
2149 case DT_INIT_ARRAY: return "INIT_ARRAY";
2150 case DT_FINI_ARRAY: return "FINI_ARRAY";
2151 case DT_INIT_ARRAYSZ: return "INIT_ARRAYSZ";
2152 case DT_FINI_ARRAYSZ: return "FINI_ARRAYSZ";
2153 case DT_RUNPATH: return "RUNPATH";
2154 case DT_FLAGS: return "FLAGS";
2156 case DT_PREINIT_ARRAY: return "PREINIT_ARRAY";
2157 case DT_PREINIT_ARRAYSZ: return "PREINIT_ARRAYSZ";
2158 case DT_SYMTAB_SHNDX: return "SYMTAB_SHNDX";
2160 case DT_CHECKSUM: return "CHECKSUM";
2161 case DT_PLTPADSZ: return "PLTPADSZ";
2162 case DT_MOVEENT: return "MOVEENT";
2163 case DT_MOVESZ: return "MOVESZ";
2164 case DT_FEATURE: return "FEATURE";
2165 case DT_POSFLAG_1: return "POSFLAG_1";
2166 case DT_SYMINSZ: return "SYMINSZ";
2167 case DT_SYMINENT: return "SYMINENT"; /* aka VALRNGHI */
2169 case DT_ADDRRNGLO: return "ADDRRNGLO";
2170 case DT_CONFIG: return "CONFIG";
2171 case DT_DEPAUDIT: return "DEPAUDIT";
2172 case DT_AUDIT: return "AUDIT";
2173 case DT_PLTPAD: return "PLTPAD";
2174 case DT_MOVETAB: return "MOVETAB";
2175 case DT_SYMINFO: return "SYMINFO"; /* aka ADDRRNGHI */
2177 case DT_VERSYM: return "VERSYM";
2179 case DT_TLSDESC_GOT: return "TLSDESC_GOT";
2180 case DT_TLSDESC_PLT: return "TLSDESC_PLT";
2181 case DT_RELACOUNT: return "RELACOUNT";
2182 case DT_RELCOUNT: return "RELCOUNT";
2183 case DT_FLAGS_1: return "FLAGS_1";
2184 case DT_VERDEF: return "VERDEF";
2185 case DT_VERDEFNUM: return "VERDEFNUM";
2186 case DT_VERNEED: return "VERNEED";
2187 case DT_VERNEEDNUM: return "VERNEEDNUM";
2189 case DT_AUXILIARY: return "AUXILIARY";
2190 case DT_USED: return "USED";
2191 case DT_FILTER: return "FILTER";
2193 case DT_GNU_PRELINKED: return "GNU_PRELINKED";
2194 case DT_GNU_CONFLICT: return "GNU_CONFLICT";
2195 case DT_GNU_CONFLICTSZ: return "GNU_CONFLICTSZ";
2196 case DT_GNU_LIBLIST: return "GNU_LIBLIST";
2197 case DT_GNU_LIBLISTSZ: return "GNU_LIBLISTSZ";
2198 case DT_GNU_HASH: return "GNU_HASH";
2201 if ((type >= DT_LOPROC) && (type <= DT_HIPROC))
2203 const char * result;
2205 switch (filedata->file_header.e_machine)
2208 result = get_aarch64_dynamic_type (type);
2211 case EM_MIPS_RS3_LE:
2212 result = get_mips_dynamic_type (type);
2215 result = get_sparc64_dynamic_type (type);
2218 result = get_ppc_dynamic_type (type);
2221 result = get_ppc64_dynamic_type (type);
2224 result = get_ia64_dynamic_type (type);
2227 result = get_alpha_dynamic_type (type);
2230 result = get_score_dynamic_type (type);
2233 result = get_tic6x_dynamic_type (type);
2235 case EM_ALTERA_NIOS2:
2236 result = get_nios2_dynamic_type (type);
2239 if (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_SOLARIS)
2240 result = get_solaris_dynamic_type (type);
2249 snprintf (buff, sizeof (buff), _("Processor Specific: %lx"), type);
2251 else if (((type >= DT_LOOS) && (type <= DT_HIOS))
2252 || (filedata->file_header.e_machine == EM_PARISC
2253 && (type >= OLD_DT_LOOS) && (type <= OLD_DT_HIOS)))
2255 const char * result;
2257 switch (filedata->file_header.e_machine)
2260 result = get_parisc_dynamic_type (type);
2263 result = get_ia64_dynamic_type (type);
2266 if (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_SOLARIS)
2267 result = get_solaris_dynamic_type (type);
2276 snprintf (buff, sizeof (buff), _("Operating System specific: %lx"),
2280 snprintf (buff, sizeof (buff), _("<unknown>: %lx"), type);
2287 get_file_type (unsigned e_type)
2289 static char buff[32];
2293 case ET_NONE: return _("NONE (None)");
2294 case ET_REL: return _("REL (Relocatable file)");
2295 case ET_EXEC: return _("EXEC (Executable file)");
2296 case ET_DYN: return _("DYN (Shared object file)");
2297 case ET_CORE: return _("CORE (Core file)");
2300 if ((e_type >= ET_LOPROC) && (e_type <= ET_HIPROC))
2301 snprintf (buff, sizeof (buff), _("Processor Specific: (%x)"), e_type);
2302 else if ((e_type >= ET_LOOS) && (e_type <= ET_HIOS))
2303 snprintf (buff, sizeof (buff), _("OS Specific: (%x)"), e_type);
2305 snprintf (buff, sizeof (buff), _("<unknown>: %x"), e_type);
2311 get_machine_name (unsigned e_machine)
2313 static char buff[64]; /* XXX */
2317 /* Please keep this switch table sorted by increasing EM_ value. */
2319 case EM_NONE: return _("None");
2320 case EM_M32: return "WE32100";
2321 case EM_SPARC: return "Sparc";
2322 case EM_386: return "Intel 80386";
2323 case EM_68K: return "MC68000";
2324 case EM_88K: return "MC88000";
2325 case EM_IAMCU: return "Intel MCU";
2326 case EM_860: return "Intel 80860";
2327 case EM_MIPS: return "MIPS R3000";
2328 case EM_S370: return "IBM System/370";
2330 case EM_MIPS_RS3_LE: return "MIPS R4000 big-endian";
2331 case EM_OLD_SPARCV9: return "Sparc v9 (old)";
2332 case EM_PARISC: return "HPPA";
2333 case EM_VPP550: return "Fujitsu VPP500";
2334 case EM_SPARC32PLUS: return "Sparc v8+" ;
2335 case EM_960: return "Intel 80960";
2336 case EM_PPC: return "PowerPC";
2338 case EM_PPC64: return "PowerPC64";
2340 case EM_S390: return "IBM S/390";
2341 case EM_SPU: return "SPU";
2343 case EM_V800: return "Renesas V850 (using RH850 ABI)";
2344 case EM_FR20: return "Fujitsu FR20";
2345 case EM_RH32: return "TRW RH32";
2346 case EM_MCORE: return "MCORE";
2348 case EM_ARM: return "ARM";
2349 case EM_OLD_ALPHA: return "Digital Alpha (old)";
2350 case EM_SH: return "Renesas / SuperH SH";
2351 case EM_SPARCV9: return "Sparc v9";
2352 case EM_TRICORE: return "Siemens Tricore";
2353 case EM_ARC: return "ARC";
2354 case EM_H8_300: return "Renesas H8/300";
2355 case EM_H8_300H: return "Renesas H8/300H";
2356 case EM_H8S: return "Renesas H8S";
2357 case EM_H8_500: return "Renesas H8/500";
2359 case EM_IA_64: return "Intel IA-64";
2360 case EM_MIPS_X: return "Stanford MIPS-X";
2361 case EM_COLDFIRE: return "Motorola Coldfire";
2362 case EM_68HC12: return "Motorola MC68HC12 Microcontroller";
2363 case EM_MMA: return "Fujitsu Multimedia Accelerator";
2364 case EM_PCP: return "Siemens PCP";
2365 case EM_NCPU: return "Sony nCPU embedded RISC processor";
2366 case EM_NDR1: return "Denso NDR1 microprocesspr";
2367 case EM_STARCORE: return "Motorola Star*Core processor";
2368 case EM_ME16: return "Toyota ME16 processor";
2370 case EM_ST100: return "STMicroelectronics ST100 processor";
2371 case EM_TINYJ: return "Advanced Logic Corp. TinyJ embedded processor";
2372 case EM_X86_64: return "Advanced Micro Devices X86-64";
2373 case EM_PDSP: return "Sony DSP processor";
2374 case EM_PDP10: return "Digital Equipment Corp. PDP-10";
2375 case EM_PDP11: return "Digital Equipment Corp. PDP-11";
2376 case EM_FX66: return "Siemens FX66 microcontroller";
2377 case EM_ST9PLUS: return "STMicroelectronics ST9+ 8/16 bit microcontroller";
2378 case EM_ST7: return "STMicroelectronics ST7 8-bit microcontroller";
2379 case EM_68HC16: return "Motorola MC68HC16 Microcontroller";
2381 case EM_68HC11: return "Motorola MC68HC11 Microcontroller";
2382 case EM_68HC08: return "Motorola MC68HC08 Microcontroller";
2383 case EM_68HC05: return "Motorola MC68HC05 Microcontroller";
2384 case EM_SVX: return "Silicon Graphics SVx";
2385 case EM_ST19: return "STMicroelectronics ST19 8-bit microcontroller";
2386 case EM_VAX: return "Digital VAX";
2387 case EM_CRIS: return "Axis Communications 32-bit embedded processor";
2388 case EM_JAVELIN: return "Infineon Technologies 32-bit embedded cpu";
2389 case EM_FIREPATH: return "Element 14 64-bit DSP processor";
2390 case EM_ZSP: return "LSI Logic's 16-bit DSP processor";
2392 case EM_MMIX: return "Donald Knuth's educational 64-bit processor";
2393 case EM_HUANY: return "Harvard Universitys's machine-independent object format";
2394 case EM_PRISM: return "Vitesse Prism";
2396 case EM_AVR: return "Atmel AVR 8-bit microcontroller";
2397 case EM_CYGNUS_FR30:
2398 case EM_FR30: return "Fujitsu FR30";
2399 case EM_CYGNUS_D10V:
2400 case EM_D10V: return "d10v";
2401 case EM_CYGNUS_D30V:
2402 case EM_D30V: return "d30v";
2403 case EM_CYGNUS_V850:
2404 case EM_V850: return "Renesas V850";
2405 case EM_CYGNUS_M32R:
2406 case EM_M32R: return "Renesas M32R (formerly Mitsubishi M32r)";
2407 case EM_CYGNUS_MN10300:
2408 case EM_MN10300: return "mn10300";
2410 case EM_CYGNUS_MN10200:
2411 case EM_MN10200: return "mn10200";
2412 case EM_PJ: return "picoJava";
2413 case EM_OR1K: return "OpenRISC 1000";
2414 case EM_ARC_COMPACT: return "ARCompact";
2416 case EM_XTENSA: return "Tensilica Xtensa Processor";
2417 case EM_VIDEOCORE: return "Alphamosaic VideoCore processor";
2418 case EM_TMM_GPP: return "Thompson Multimedia General Purpose Processor";
2419 case EM_NS32K: return "National Semiconductor 32000 series";
2420 case EM_TPC: return "Tenor Network TPC processor";
2421 case EM_SNP1K: return "Trebia SNP 1000 processor";
2423 case EM_ST200: return "STMicroelectronics ST200 microcontroller";
2425 case EM_IP2K: return "Ubicom IP2xxx 8-bit microcontrollers";
2426 case EM_MAX: return "MAX Processor";
2427 case EM_CR: return "National Semiconductor CompactRISC";
2428 case EM_F2MC16: return "Fujitsu F2MC16";
2429 case EM_MSP430: return "Texas Instruments msp430 microcontroller";
2430 case EM_BLACKFIN: return "Analog Devices Blackfin";
2431 case EM_SE_C33: return "S1C33 Family of Seiko Epson processors";
2432 case EM_SEP: return "Sharp embedded microprocessor";
2433 case EM_ARCA: return "Arca RISC microprocessor";
2435 case EM_UNICORE: return "Unicore";
2436 case EM_EXCESS: return "eXcess 16/32/64-bit configurable embedded CPU";
2437 case EM_DXP: return "Icera Semiconductor Inc. Deep Execution Processor";
2438 case EM_ALTERA_NIOS2: return "Altera Nios II";
2439 case EM_CRX: return "National Semiconductor CRX microprocessor";
2440 case EM_XGATE: return "Motorola XGATE embedded processor";
2442 case EM_XC16X: return "Infineon Technologies xc16x";
2443 case EM_M16C: return "Renesas M16C series microprocessors";
2444 case EM_DSPIC30F: return "Microchip Technology dsPIC30F Digital Signal Controller";
2445 case EM_CE: return "Freescale Communication Engine RISC core";
2447 case EM_M32C: return "Renesas M32c";
2449 case EM_TSK3000: return "Altium TSK3000 core";
2450 case EM_RS08: return "Freescale RS08 embedded processor";
2451 case EM_ECOG2: return "Cyan Technology eCOG2 microprocessor";
2452 case EM_SCORE: return "SUNPLUS S+Core";
2453 case EM_DSP24: return "New Japan Radio (NJR) 24-bit DSP Processor";
2454 case EM_VIDEOCORE3: return "Broadcom VideoCore III processor";
2455 case EM_LATTICEMICO32: return "Lattice Mico32";
2456 case EM_SE_C17: return "Seiko Epson C17 family";
2458 case EM_TI_C6000: return "Texas Instruments TMS320C6000 DSP family";
2459 case EM_TI_C2000: return "Texas Instruments TMS320C2000 DSP family";
2460 case EM_TI_C5500: return "Texas Instruments TMS320C55x DSP family";
2461 case EM_TI_PRU: return "TI PRU I/O processor";
2463 case EM_MMDSP_PLUS: return "STMicroelectronics 64bit VLIW Data Signal Processor";
2464 case EM_CYPRESS_M8C: return "Cypress M8C microprocessor";
2465 case EM_R32C: return "Renesas R32C series microprocessors";
2466 case EM_TRIMEDIA: return "NXP Semiconductors TriMedia architecture family";
2467 case EM_QDSP6: return "QUALCOMM DSP6 Processor";
2468 case EM_8051: return "Intel 8051 and variants";
2469 case EM_STXP7X: return "STMicroelectronics STxP7x family";
2470 case EM_NDS32: return "Andes Technology compact code size embedded RISC processor family";
2471 case EM_ECOG1X: return "Cyan Technology eCOG1X family";
2472 case EM_MAXQ30: return "Dallas Semiconductor MAXQ30 Core microcontrollers";
2474 case EM_XIMO16: return "New Japan Radio (NJR) 16-bit DSP Processor";
2475 case EM_MANIK: return "M2000 Reconfigurable RISC Microprocessor";
2476 case EM_CRAYNV2: return "Cray Inc. NV2 vector architecture";
2477 case EM_RX: return "Renesas RX";
2478 case EM_METAG: return "Imagination Technologies Meta processor architecture";
2479 case EM_MCST_ELBRUS: return "MCST Elbrus general purpose hardware architecture";
2480 case EM_ECOG16: return "Cyan Technology eCOG16 family";
2483 case EM_MICROBLAZE_OLD: return "Xilinx MicroBlaze";
2484 case EM_ETPU: return "Freescale Extended Time Processing Unit";
2485 case EM_SLE9X: return "Infineon Technologies SLE9X core";
2487 case EM_L1OM: return "Intel L1OM";
2488 case EM_K1OM: return "Intel K1OM";
2489 case EM_INTEL182: return "Intel (reserved)";
2490 case EM_AARCH64: return "AArch64";
2491 case EM_ARM184: return "ARM (reserved)";
2492 case EM_AVR32: return "Atmel Corporation 32-bit microprocessor";
2493 case EM_STM8: return "STMicroeletronics STM8 8-bit microcontroller";
2494 case EM_TILE64: return "Tilera TILE64 multicore architecture family";
2495 case EM_TILEPRO: return "Tilera TILEPro multicore architecture family";
2497 case EM_CUDA: return "NVIDIA CUDA architecture";
2498 case EM_TILEGX: return "Tilera TILE-Gx multicore architecture family";
2499 case EM_CLOUDSHIELD: return "CloudShield architecture family";
2500 case EM_COREA_1ST: return "KIPO-KAIST Core-A 1st generation processor family";
2501 case EM_COREA_2ND: return "KIPO-KAIST Core-A 2nd generation processor family";
2502 case EM_ARC_COMPACT2: return "ARCv2";
2503 case EM_OPEN8: return "Open8 8-bit RISC soft processor core";
2504 case EM_RL78: return "Renesas RL78";
2505 case EM_VIDEOCORE5: return "Broadcom VideoCore V processor";
2506 case EM_78K0R: return "Renesas 78K0R";
2508 case EM_56800EX: return "Freescale 56800EX Digital Signal Controller (DSC)";
2509 case EM_BA1: return "Beyond BA1 CPU architecture";
2510 case EM_BA2: return "Beyond BA2 CPU architecture";
2511 case EM_XCORE: return "XMOS xCORE processor family";
2512 case EM_MCHP_PIC: return "Microchip 8-bit PIC(r) family";
2514 case EM_KM32: return "KM211 KM32 32-bit processor";
2515 case EM_KMX32: return "KM211 KMX32 32-bit processor";
2516 case EM_KMX16: return "KM211 KMX16 16-bit processor";
2517 case EM_KMX8: return "KM211 KMX8 8-bit processor";
2518 case EM_KVARC: return "KM211 KVARC processor";
2519 case EM_CDP: return "Paneve CDP architecture family";
2520 case EM_COGE: return "Cognitive Smart Memory Processor";
2521 case EM_COOL: return "Bluechip Systems CoolEngine";
2522 case EM_NORC: return "Nanoradio Optimized RISC";
2523 case EM_CSR_KALIMBA: return "CSR Kalimba architecture family";
2525 case EM_Z80: return "Zilog Z80";
2526 case EM_VISIUM: return "CDS VISIUMcore processor";
2527 case EM_FT32: return "FTDI Chip FT32";
2528 case EM_MOXIE: return "Moxie";
2529 case EM_AMDGPU: return "AMD GPU";
2530 case EM_RISCV: return "RISC-V";
2531 case EM_LANAI: return "Lanai 32-bit processor";
2532 case EM_BPF: return "Linux BPF";
2533 case EM_NFP: return "Netronome Flow Processor";
2535 /* Large numbers... */
2536 case EM_MT: return "Morpho Techologies MT processor";
2537 case EM_ALPHA: return "Alpha";
2538 case EM_WEBASSEMBLY: return "Web Assembly";
2539 case EM_DLX: return "OpenDLX";
2540 case EM_XSTORMY16: return "Sanyo XStormy16 CPU core";
2541 case EM_IQ2000: return "Vitesse IQ2000";
2543 case EM_NIOS32: return "Altera Nios";
2544 case EM_CYGNUS_MEP: return "Toshiba MeP Media Engine";
2545 case EM_ADAPTEVA_EPIPHANY: return "Adapteva EPIPHANY";
2546 case EM_CYGNUS_FRV: return "Fujitsu FR-V";
2547 case EM_S12Z: return "Freescale S12Z";
2548 case EM_CSKY: return "C-SKY";
2551 snprintf (buff, sizeof (buff), _("<unknown>: 0x%x"), e_machine);
2557 decode_ARC_machine_flags (unsigned e_flags, unsigned e_machine, char buf[])
2559 /* ARC has two machine types EM_ARC_COMPACT and EM_ARC_COMPACT2. Some
2560 other compilers don't a specific architecture type in the e_flags, and
2561 instead use EM_ARC_COMPACT for old ARC600, ARC601, and ARC700
2562 architectures, and switch to EM_ARC_COMPACT2 for newer ARCEM and ARCHS
2565 Th GNU tools follows this use of EM_ARC_COMPACT and EM_ARC_COMPACT2,
2566 but also sets a specific architecture type in the e_flags field.
2568 However, when decoding the flags we don't worry if we see an
2569 unexpected pairing, for example EM_ARC_COMPACT machine type, with
2570 ARCEM architecture type. */
2572 switch (e_flags & EF_ARC_MACH_MSK)
2574 /* We only expect these to occur for EM_ARC_COMPACT2. */
2575 case EF_ARC_CPU_ARCV2EM:
2576 strcat (buf, ", ARC EM");
2578 case EF_ARC_CPU_ARCV2HS:
2579 strcat (buf, ", ARC HS");
2582 /* We only expect these to occur for EM_ARC_COMPACT. */
2583 case E_ARC_MACH_ARC600:
2584 strcat (buf, ", ARC600");
2586 case E_ARC_MACH_ARC601:
2587 strcat (buf, ", ARC601");
2589 case E_ARC_MACH_ARC700:
2590 strcat (buf, ", ARC700");
2593 /* The only times we should end up here are (a) A corrupt ELF, (b) A
2594 new ELF with new architecture being read by an old version of
2595 readelf, or (c) An ELF built with non-GNU compiler that does not
2596 set the architecture in the e_flags. */
2598 if (e_machine == EM_ARC_COMPACT)
2599 strcat (buf, ", Unknown ARCompact");
2601 strcat (buf, ", Unknown ARC");
2605 switch (e_flags & EF_ARC_OSABI_MSK)
2607 case E_ARC_OSABI_ORIG:
2608 strcat (buf, ", (ABI:legacy)");
2610 case E_ARC_OSABI_V2:
2611 strcat (buf, ", (ABI:v2)");
2613 /* Only upstream 3.9+ kernels will support ARCv2 ISA. */
2614 case E_ARC_OSABI_V3:
2615 strcat (buf, ", v3 no-legacy-syscalls ABI");
2617 case E_ARC_OSABI_V4:
2618 strcat (buf, ", v4 ABI");
2621 strcat (buf, ", unrecognised ARC OSABI flag");
2627 decode_ARM_machine_flags (unsigned e_flags, char buf[])
2630 bfd_boolean unknown = FALSE;
2632 eabi = EF_ARM_EABI_VERSION (e_flags);
2633 e_flags &= ~ EF_ARM_EABIMASK;
2635 /* Handle "generic" ARM flags. */
2636 if (e_flags & EF_ARM_RELEXEC)
2638 strcat (buf, ", relocatable executable");
2639 e_flags &= ~ EF_ARM_RELEXEC;
2642 if (e_flags & EF_ARM_PIC)
2644 strcat (buf, ", position independent");
2645 e_flags &= ~ EF_ARM_PIC;
2648 /* Now handle EABI specific flags. */
2652 strcat (buf, ", <unrecognized EABI>");
2657 case EF_ARM_EABI_VER1:
2658 strcat (buf, ", Version1 EABI");
2663 /* Process flags one bit at a time. */
2664 flag = e_flags & - e_flags;
2669 case EF_ARM_SYMSARESORTED: /* Conflicts with EF_ARM_INTERWORK. */
2670 strcat (buf, ", sorted symbol tables");
2680 case EF_ARM_EABI_VER2:
2681 strcat (buf, ", Version2 EABI");
2686 /* Process flags one bit at a time. */
2687 flag = e_flags & - e_flags;
2692 case EF_ARM_SYMSARESORTED: /* Conflicts with EF_ARM_INTERWORK. */
2693 strcat (buf, ", sorted symbol tables");
2696 case EF_ARM_DYNSYMSUSESEGIDX:
2697 strcat (buf, ", dynamic symbols use segment index");
2700 case EF_ARM_MAPSYMSFIRST:
2701 strcat (buf, ", mapping symbols precede others");
2711 case EF_ARM_EABI_VER3:
2712 strcat (buf, ", Version3 EABI");
2715 case EF_ARM_EABI_VER4:
2716 strcat (buf, ", Version4 EABI");
2721 /* Process flags one bit at a time. */
2722 flag = e_flags & - e_flags;
2728 strcat (buf, ", BE8");
2732 strcat (buf, ", LE8");
2742 case EF_ARM_EABI_VER5:
2743 strcat (buf, ", Version5 EABI");
2748 /* Process flags one bit at a time. */
2749 flag = e_flags & - e_flags;
2755 strcat (buf, ", BE8");
2759 strcat (buf, ", LE8");
2762 case EF_ARM_ABI_FLOAT_SOFT: /* Conflicts with EF_ARM_SOFT_FLOAT. */
2763 strcat (buf, ", soft-float ABI");
2766 case EF_ARM_ABI_FLOAT_HARD: /* Conflicts with EF_ARM_VFP_FLOAT. */
2767 strcat (buf, ", hard-float ABI");
2777 case EF_ARM_EABI_UNKNOWN:
2778 strcat (buf, ", GNU EABI");
2783 /* Process flags one bit at a time. */
2784 flag = e_flags & - e_flags;
2789 case EF_ARM_INTERWORK:
2790 strcat (buf, ", interworking enabled");
2793 case EF_ARM_APCS_26:
2794 strcat (buf, ", uses APCS/26");
2797 case EF_ARM_APCS_FLOAT:
2798 strcat (buf, ", uses APCS/float");
2802 strcat (buf, ", position independent");
2806 strcat (buf, ", 8 bit structure alignment");
2809 case EF_ARM_NEW_ABI:
2810 strcat (buf, ", uses new ABI");
2813 case EF_ARM_OLD_ABI:
2814 strcat (buf, ", uses old ABI");
2817 case EF_ARM_SOFT_FLOAT:
2818 strcat (buf, ", software FP");
2821 case EF_ARM_VFP_FLOAT:
2822 strcat (buf, ", VFP");
2825 case EF_ARM_MAVERICK_FLOAT:
2826 strcat (buf, ", Maverick FP");
2837 strcat (buf,_(", <unknown>"));
2841 decode_AVR_machine_flags (unsigned e_flags, char buf[], size_t size)
2843 --size; /* Leave space for null terminator. */
2845 switch (e_flags & EF_AVR_MACH)
2847 case E_AVR_MACH_AVR1:
2848 strncat (buf, ", avr:1", size);
2850 case E_AVR_MACH_AVR2:
2851 strncat (buf, ", avr:2", size);
2853 case E_AVR_MACH_AVR25:
2854 strncat (buf, ", avr:25", size);
2856 case E_AVR_MACH_AVR3:
2857 strncat (buf, ", avr:3", size);
2859 case E_AVR_MACH_AVR31:
2860 strncat (buf, ", avr:31", size);
2862 case E_AVR_MACH_AVR35:
2863 strncat (buf, ", avr:35", size);
2865 case E_AVR_MACH_AVR4:
2866 strncat (buf, ", avr:4", size);
2868 case E_AVR_MACH_AVR5:
2869 strncat (buf, ", avr:5", size);
2871 case E_AVR_MACH_AVR51:
2872 strncat (buf, ", avr:51", size);
2874 case E_AVR_MACH_AVR6:
2875 strncat (buf, ", avr:6", size);
2877 case E_AVR_MACH_AVRTINY:
2878 strncat (buf, ", avr:100", size);
2880 case E_AVR_MACH_XMEGA1:
2881 strncat (buf, ", avr:101", size);
2883 case E_AVR_MACH_XMEGA2:
2884 strncat (buf, ", avr:102", size);
2886 case E_AVR_MACH_XMEGA3:
2887 strncat (buf, ", avr:103", size);
2889 case E_AVR_MACH_XMEGA4:
2890 strncat (buf, ", avr:104", size);
2892 case E_AVR_MACH_XMEGA5:
2893 strncat (buf, ", avr:105", size);
2895 case E_AVR_MACH_XMEGA6:
2896 strncat (buf, ", avr:106", size);
2898 case E_AVR_MACH_XMEGA7:
2899 strncat (buf, ", avr:107", size);
2902 strncat (buf, ", avr:<unknown>", size);
2906 size -= strlen (buf);
2907 if (e_flags & EF_AVR_LINKRELAX_PREPARED)
2908 strncat (buf, ", link-relax", size);
2912 decode_NDS32_machine_flags (unsigned e_flags, char buf[], size_t size)
2918 bfd_boolean has_fpu = FALSE;
2921 static const char *ABI_STRINGS[] =
2923 "ABI v0", /* use r5 as return register; only used in N1213HC */
2924 "ABI v1", /* use r0 as return register */
2925 "ABI v2", /* use r0 as return register and don't reserve 24 bytes for arguments */
2926 "ABI v2fp", /* for FPU */
2930 static const char *VER_STRINGS[] =
2932 "Andes ELF V1.3 or older",
2936 static const char *ARCH_STRINGS[] =
2945 abi = EF_NDS_ABI & e_flags;
2946 arch = EF_NDS_ARCH & e_flags;
2947 config = EF_NDS_INST & e_flags;
2948 version = EF_NDS32_ELF_VERSION & e_flags;
2950 memset (buf, 0, size);
2957 case E_NDS_ABI_V2FP:
2958 case E_NDS_ABI_AABI:
2959 case E_NDS_ABI_V2FP_PLUS:
2960 /* In case there are holes in the array. */
2961 r += snprintf (buf + r, size - r, ", %s", ABI_STRINGS[abi >> EF_NDS_ABI_SHIFT]);
2965 r += snprintf (buf + r, size - r, ", <unrecognized ABI>");
2971 case E_NDS32_ELF_VER_1_2:
2972 case E_NDS32_ELF_VER_1_3:
2973 case E_NDS32_ELF_VER_1_4:
2974 r += snprintf (buf + r, size - r, ", %s", VER_STRINGS[version >> EF_NDS32_ELF_VERSION_SHIFT]);
2978 r += snprintf (buf + r, size - r, ", <unrecognized ELF version number>");
2982 if (E_NDS_ABI_V0 == abi)
2984 /* OLD ABI; only used in N1213HC, has performance extension 1. */
2985 r += snprintf (buf + r, size - r, ", Andes Star v1.0, N1213HC, MAC, PERF1");
2986 if (arch == E_NDS_ARCH_STAR_V1_0)
2987 r += snprintf (buf + r, size -r, ", 16b"); /* has 16-bit instructions */
2993 case E_NDS_ARCH_STAR_V1_0:
2994 case E_NDS_ARCH_STAR_V2_0:
2995 case E_NDS_ARCH_STAR_V3_0:
2996 case E_NDS_ARCH_STAR_V3_M:
2997 r += snprintf (buf + r, size - r, ", %s", ARCH_STRINGS[arch >> EF_NDS_ARCH_SHIFT]);
3001 r += snprintf (buf + r, size - r, ", <unrecognized architecture>");
3002 /* ARCH version determines how the e_flags are interpreted.
3003 If it is unknown, we cannot proceed. */
3007 /* Newer ABI; Now handle architecture specific flags. */
3008 if (arch == E_NDS_ARCH_STAR_V1_0)
3010 if (config & E_NDS32_HAS_MFUSR_PC_INST)
3011 r += snprintf (buf + r, size -r, ", MFUSR_PC");
3013 if (!(config & E_NDS32_HAS_NO_MAC_INST))
3014 r += snprintf (buf + r, size -r, ", MAC");
3016 if (config & E_NDS32_HAS_DIV_INST)
3017 r += snprintf (buf + r, size -r, ", DIV");
3019 if (config & E_NDS32_HAS_16BIT_INST)
3020 r += snprintf (buf + r, size -r, ", 16b");
3024 if (config & E_NDS32_HAS_MFUSR_PC_INST)
3026 if (version <= E_NDS32_ELF_VER_1_3)
3027 r += snprintf (buf + r, size -r, ", [B8]");
3029 r += snprintf (buf + r, size -r, ", EX9");
3032 if (config & E_NDS32_HAS_MAC_DX_INST)
3033 r += snprintf (buf + r, size -r, ", MAC_DX");
3035 if (config & E_NDS32_HAS_DIV_DX_INST)
3036 r += snprintf (buf + r, size -r, ", DIV_DX");
3038 if (config & E_NDS32_HAS_16BIT_INST)
3040 if (version <= E_NDS32_ELF_VER_1_3)
3041 r += snprintf (buf + r, size -r, ", 16b");
3043 r += snprintf (buf + r, size -r, ", IFC");
3047 if (config & E_NDS32_HAS_EXT_INST)
3048 r += snprintf (buf + r, size -r, ", PERF1");
3050 if (config & E_NDS32_HAS_EXT2_INST)
3051 r += snprintf (buf + r, size -r, ", PERF2");
3053 if (config & E_NDS32_HAS_FPU_INST)
3056 r += snprintf (buf + r, size -r, ", FPU_SP");
3059 if (config & E_NDS32_HAS_FPU_DP_INST)
3062 r += snprintf (buf + r, size -r, ", FPU_DP");
3065 if (config & E_NDS32_HAS_FPU_MAC_INST)
3068 r += snprintf (buf + r, size -r, ", FPU_MAC");
3073 switch ((config & E_NDS32_FPU_REG_CONF) >> E_NDS32_FPU_REG_CONF_SHIFT)
3075 case E_NDS32_FPU_REG_8SP_4DP:
3076 r += snprintf (buf + r, size -r, ", FPU_REG:8/4");
3078 case E_NDS32_FPU_REG_16SP_8DP:
3079 r += snprintf (buf + r, size -r, ", FPU_REG:16/8");
3081 case E_NDS32_FPU_REG_32SP_16DP:
3082 r += snprintf (buf + r, size -r, ", FPU_REG:32/16");
3084 case E_NDS32_FPU_REG_32SP_32DP:
3085 r += snprintf (buf + r, size -r, ", FPU_REG:32/32");
3090 if (config & E_NDS32_HAS_AUDIO_INST)
3091 r += snprintf (buf + r, size -r, ", AUDIO");
3093 if (config & E_NDS32_HAS_STRING_INST)
3094 r += snprintf (buf + r, size -r, ", STR");
3096 if (config & E_NDS32_HAS_REDUCED_REGS)
3097 r += snprintf (buf + r, size -r, ", 16REG");
3099 if (config & E_NDS32_HAS_VIDEO_INST)
3101 if (version <= E_NDS32_ELF_VER_1_3)
3102 r += snprintf (buf + r, size -r, ", VIDEO");
3104 r += snprintf (buf + r, size -r, ", SATURATION");
3107 if (config & E_NDS32_HAS_ENCRIPT_INST)
3108 r += snprintf (buf + r, size -r, ", ENCRP");
3110 if (config & E_NDS32_HAS_L2C_INST)
3111 r += snprintf (buf + r, size -r, ", L2C");
3115 get_machine_flags (Filedata * filedata, unsigned e_flags, unsigned e_machine)
3117 static char buf[1024];
3128 case EM_ARC_COMPACT2:
3129 case EM_ARC_COMPACT:
3130 decode_ARC_machine_flags (e_flags, e_machine, buf);
3134 decode_ARM_machine_flags (e_flags, buf);
3138 decode_AVR_machine_flags (e_flags, buf, sizeof buf);
3142 if (e_flags & EF_BFIN_PIC)
3143 strcat (buf, ", PIC");
3145 if (e_flags & EF_BFIN_FDPIC)
3146 strcat (buf, ", FDPIC");
3148 if (e_flags & EF_BFIN_CODE_IN_L1)
3149 strcat (buf, ", code in L1");
3151 if (e_flags & EF_BFIN_DATA_IN_L1)
3152 strcat (buf, ", data in L1");
3157 switch (e_flags & EF_FRV_CPU_MASK)
3159 case EF_FRV_CPU_GENERIC:
3163 strcat (buf, ", fr???");
3166 case EF_FRV_CPU_FR300:
3167 strcat (buf, ", fr300");
3170 case EF_FRV_CPU_FR400:
3171 strcat (buf, ", fr400");
3173 case EF_FRV_CPU_FR405:
3174 strcat (buf, ", fr405");
3177 case EF_FRV_CPU_FR450:
3178 strcat (buf, ", fr450");
3181 case EF_FRV_CPU_FR500:
3182 strcat (buf, ", fr500");
3184 case EF_FRV_CPU_FR550:
3185 strcat (buf, ", fr550");
3188 case EF_FRV_CPU_SIMPLE:
3189 strcat (buf, ", simple");
3191 case EF_FRV_CPU_TOMCAT:
3192 strcat (buf, ", tomcat");
3198 if ((e_flags & EF_M68K_ARCH_MASK) == EF_M68K_M68000)
3199 strcat (buf, ", m68000");
3200 else if ((e_flags & EF_M68K_ARCH_MASK) == EF_M68K_CPU32)
3201 strcat (buf, ", cpu32");
3202 else if ((e_flags & EF_M68K_ARCH_MASK) == EF_M68K_FIDO)
3203 strcat (buf, ", fido_a");
3206 char const * isa = _("unknown");
3207 char const * mac = _("unknown mac");
3208 char const * additional = NULL;
3210 switch (e_flags & EF_M68K_CF_ISA_MASK)
3212 case EF_M68K_CF_ISA_A_NODIV:
3214 additional = ", nodiv";
3216 case EF_M68K_CF_ISA_A:
3219 case EF_M68K_CF_ISA_A_PLUS:
3222 case EF_M68K_CF_ISA_B_NOUSP:
3224 additional = ", nousp";
3226 case EF_M68K_CF_ISA_B:
3229 case EF_M68K_CF_ISA_C:
3232 case EF_M68K_CF_ISA_C_NODIV:
3234 additional = ", nodiv";
3237 strcat (buf, ", cf, isa ");
3240 strcat (buf, additional);
3241 if (e_flags & EF_M68K_CF_FLOAT)
3242 strcat (buf, ", float");
3243 switch (e_flags & EF_M68K_CF_MAC_MASK)
3248 case EF_M68K_CF_MAC:
3251 case EF_M68K_CF_EMAC:
3254 case EF_M68K_CF_EMAC_B:
3267 switch (e_flags & EF_MEP_CPU_MASK)
3269 case EF_MEP_CPU_MEP: strcat (buf, ", generic MeP"); break;
3270 case EF_MEP_CPU_C2: strcat (buf, ", MeP C2"); break;
3271 case EF_MEP_CPU_C3: strcat (buf, ", MeP C3"); break;
3272 case EF_MEP_CPU_C4: strcat (buf, ", MeP C4"); break;
3273 case EF_MEP_CPU_C5: strcat (buf, ", MeP C5"); break;
3274 case EF_MEP_CPU_H1: strcat (buf, ", MeP H1"); break;
3275 default: strcat (buf, _(", <unknown MeP cpu type>")); break;
3278 switch (e_flags & EF_MEP_COP_MASK)
3280 case EF_MEP_COP_NONE: break;
3281 case EF_MEP_COP_AVC: strcat (buf, ", AVC coprocessor"); break;
3282 case EF_MEP_COP_AVC2: strcat (buf, ", AVC2 coprocessor"); break;
3283 case EF_MEP_COP_FMAX: strcat (buf, ", FMAX coprocessor"); break;
3284 case EF_MEP_COP_IVC2: strcat (buf, ", IVC2 coprocessor"); break;
3285 default: strcat (buf, _("<unknown MeP copro type>")); break;
3288 if (e_flags & EF_MEP_LIBRARY)
3289 strcat (buf, ", Built for Library");
3291 if (e_flags & EF_MEP_INDEX_MASK)
3292 sprintf (buf + strlen (buf), ", Configuration Index: %#x",
3293 e_flags & EF_MEP_INDEX_MASK);
3295 if (e_flags & ~ EF_MEP_ALL_FLAGS)
3296 sprintf (buf + strlen (buf), _(", unknown flags bits: %#x"),
3297 e_flags & ~ EF_MEP_ALL_FLAGS);
3301 if (e_flags & EF_PPC_EMB)
3302 strcat (buf, ", emb");
3304 if (e_flags & EF_PPC_RELOCATABLE)
3305 strcat (buf, _(", relocatable"));
3307 if (e_flags & EF_PPC_RELOCATABLE_LIB)
3308 strcat (buf, _(", relocatable-lib"));
3312 if (e_flags & EF_PPC64_ABI)
3314 char abi[] = ", abiv0";
3316 abi[6] += e_flags & EF_PPC64_ABI;
3322 if ((e_flags & EF_RH850_ABI) == EF_RH850_ABI)
3323 strcat (buf, ", RH850 ABI");
3325 if (e_flags & EF_V800_850E3)
3326 strcat (buf, ", V3 architecture");
3328 if ((e_flags & (EF_RH850_FPU_DOUBLE | EF_RH850_FPU_SINGLE)) == 0)
3329 strcat (buf, ", FPU not used");
3331 if ((e_flags & (EF_RH850_REGMODE22 | EF_RH850_REGMODE32)) == 0)
3332 strcat (buf, ", regmode: COMMON");
3334 if ((e_flags & (EF_RH850_GP_FIX | EF_RH850_GP_NOFIX)) == 0)
3335 strcat (buf, ", r4 not used");
3337 if ((e_flags & (EF_RH850_EP_FIX | EF_RH850_EP_NOFIX)) == 0)
3338 strcat (buf, ", r30 not used");
3340 if ((e_flags & (EF_RH850_TP_FIX | EF_RH850_TP_NOFIX)) == 0)
3341 strcat (buf, ", r5 not used");
3343 if ((e_flags & (EF_RH850_REG2_RESERVE | EF_RH850_REG2_NORESERVE)) == 0)
3344 strcat (buf, ", r2 not used");
3346 for (e_flags &= 0xFFFF; e_flags; e_flags &= ~ (e_flags & - e_flags))
3348 switch (e_flags & - e_flags)
3350 case EF_RH850_FPU_DOUBLE: strcat (buf, ", double precision FPU"); break;
3351 case EF_RH850_FPU_SINGLE: strcat (buf, ", single precision FPU"); break;
3352 case EF_RH850_REGMODE22: strcat (buf, ", regmode:22"); break;
3353 case EF_RH850_REGMODE32: strcat (buf, ", regmode:23"); break;
3354 case EF_RH850_GP_FIX: strcat (buf, ", r4 fixed"); break;
3355 case EF_RH850_GP_NOFIX: strcat (buf, ", r4 free"); break;
3356 case EF_RH850_EP_FIX: strcat (buf, ", r30 fixed"); break;
3357 case EF_RH850_EP_NOFIX: strcat (buf, ", r30 free"); break;
3358 case EF_RH850_TP_FIX: strcat (buf, ", r5 fixed"); break;
3359 case EF_RH850_TP_NOFIX: strcat (buf, ", r5 free"); break;
3360 case EF_RH850_REG2_RESERVE: strcat (buf, ", r2 fixed"); break;
3361 case EF_RH850_REG2_NORESERVE: strcat (buf, ", r2 free"); break;
3368 case EM_CYGNUS_V850:
3369 switch (e_flags & EF_V850_ARCH)
3371 case E_V850E3V5_ARCH:
3372 strcat (buf, ", v850e3v5");
3374 case E_V850E2V3_ARCH:
3375 strcat (buf, ", v850e2v3");
3378 strcat (buf, ", v850e2");
3381 strcat (buf, ", v850e1");
3384 strcat (buf, ", v850e");
3387 strcat (buf, ", v850");
3390 strcat (buf, _(", unknown v850 architecture variant"));
3396 case EM_CYGNUS_M32R:
3397 if ((e_flags & EF_M32R_ARCH) == E_M32R_ARCH)
3398 strcat (buf, ", m32r");
3402 case EM_MIPS_RS3_LE:
3403 if (e_flags & EF_MIPS_NOREORDER)
3404 strcat (buf, ", noreorder");
3406 if (e_flags & EF_MIPS_PIC)
3407 strcat (buf, ", pic");
3409 if (e_flags & EF_MIPS_CPIC)
3410 strcat (buf, ", cpic");
3412 if (e_flags & EF_MIPS_UCODE)
3413 strcat (buf, ", ugen_reserved");
3415 if (e_flags & EF_MIPS_ABI2)
3416 strcat (buf, ", abi2");
3418 if (e_flags & EF_MIPS_OPTIONS_FIRST)
3419 strcat (buf, ", odk first");
3421 if (e_flags & EF_MIPS_32BITMODE)
3422 strcat (buf, ", 32bitmode");
3424 if (e_flags & EF_MIPS_NAN2008)
3425 strcat (buf, ", nan2008");
3427 if (e_flags & EF_MIPS_FP64)
3428 strcat (buf, ", fp64");
3430 switch ((e_flags & EF_MIPS_MACH))
3432 case E_MIPS_MACH_3900: strcat (buf, ", 3900"); break;
3433 case E_MIPS_MACH_4010: strcat (buf, ", 4010"); break;
3434 case E_MIPS_MACH_4100: strcat (buf, ", 4100"); break;
3435 case E_MIPS_MACH_4111: strcat (buf, ", 4111"); break;
3436 case E_MIPS_MACH_4120: strcat (buf, ", 4120"); break;
3437 case E_MIPS_MACH_4650: strcat (buf, ", 4650"); break;
3438 case E_MIPS_MACH_5400: strcat (buf, ", 5400"); break;
3439 case E_MIPS_MACH_5500: strcat (buf, ", 5500"); break;
3440 case E_MIPS_MACH_5900: strcat (buf, ", 5900"); break;
3441 case E_MIPS_MACH_SB1: strcat (buf, ", sb1"); break;
3442 case E_MIPS_MACH_9000: strcat (buf, ", 9000"); break;
3443 case E_MIPS_MACH_LS2E: strcat (buf, ", loongson-2e"); break;
3444 case E_MIPS_MACH_LS2F: strcat (buf, ", loongson-2f"); break;
3445 case E_MIPS_MACH_GS464: strcat (buf, ", gs464"); break;
3446 case E_MIPS_MACH_GS464E: strcat (buf, ", gs464e"); break;
3447 case E_MIPS_MACH_GS264E: strcat (buf, ", gs264e"); break;
3448 case E_MIPS_MACH_OCTEON: strcat (buf, ", octeon"); break;
3449 case E_MIPS_MACH_OCTEON2: strcat (buf, ", octeon2"); break;
3450 case E_MIPS_MACH_OCTEON3: strcat (buf, ", octeon3"); break;
3451 case E_MIPS_MACH_XLR: strcat (buf, ", xlr"); break;
3452 case E_MIPS_MACH_IAMR2: strcat (buf, ", interaptiv-mr2"); break;
3454 /* We simply ignore the field in this case to avoid confusion:
3455 MIPS ELF does not specify EF_MIPS_MACH, it is a GNU
3458 default: strcat (buf, _(", unknown CPU")); break;
3461 switch ((e_flags & EF_MIPS_ABI))
3463 case E_MIPS_ABI_O32: strcat (buf, ", o32"); break;
3464 case E_MIPS_ABI_O64: strcat (buf, ", o64"); break;
3465 case E_MIPS_ABI_EABI32: strcat (buf, ", eabi32"); break;
3466 case E_MIPS_ABI_EABI64: strcat (buf, ", eabi64"); break;
3468 /* We simply ignore the field in this case to avoid confusion:
3469 MIPS ELF does not specify EF_MIPS_ABI, it is a GNU extension.
3470 This means it is likely to be an o32 file, but not for
3473 default: strcat (buf, _(", unknown ABI")); break;
3476 if (e_flags & EF_MIPS_ARCH_ASE_MDMX)
3477 strcat (buf, ", mdmx");
3479 if (e_flags & EF_MIPS_ARCH_ASE_M16)
3480 strcat (buf, ", mips16");
3482 if (e_flags & EF_MIPS_ARCH_ASE_MICROMIPS)
3483 strcat (buf, ", micromips");
3485 switch ((e_flags & EF_MIPS_ARCH))
3487 case E_MIPS_ARCH_1: strcat (buf, ", mips1"); break;
3488 case E_MIPS_ARCH_2: strcat (buf, ", mips2"); break;
3489 case E_MIPS_ARCH_3: strcat (buf, ", mips3"); break;
3490 case E_MIPS_ARCH_4: strcat (buf, ", mips4"); break;
3491 case E_MIPS_ARCH_5: strcat (buf, ", mips5"); break;
3492 case E_MIPS_ARCH_32: strcat (buf, ", mips32"); break;
3493 case E_MIPS_ARCH_32R2: strcat (buf, ", mips32r2"); break;
3494 case E_MIPS_ARCH_32R6: strcat (buf, ", mips32r6"); break;
3495 case E_MIPS_ARCH_64: strcat (buf, ", mips64"); break;
3496 case E_MIPS_ARCH_64R2: strcat (buf, ", mips64r2"); break;
3497 case E_MIPS_ARCH_64R6: strcat (buf, ", mips64r6"); break;
3498 default: strcat (buf, _(", unknown ISA")); break;
3503 decode_NDS32_machine_flags (e_flags, buf, sizeof buf);
3507 switch (EF_NFP_MACH (e_flags))
3509 case E_NFP_MACH_3200:
3510 strcat (buf, ", NFP-32xx");
3512 case E_NFP_MACH_6000:
3513 strcat (buf, ", NFP-6xxx");
3519 if (e_flags & EF_RISCV_RVC)
3520 strcat (buf, ", RVC");
3522 if (e_flags & EF_RISCV_RVE)
3523 strcat (buf, ", RVE");
3525 switch (e_flags & EF_RISCV_FLOAT_ABI)
3527 case EF_RISCV_FLOAT_ABI_SOFT:
3528 strcat (buf, ", soft-float ABI");
3531 case EF_RISCV_FLOAT_ABI_SINGLE:
3532 strcat (buf, ", single-float ABI");
3535 case EF_RISCV_FLOAT_ABI_DOUBLE:
3536 strcat (buf, ", double-float ABI");
3539 case EF_RISCV_FLOAT_ABI_QUAD:
3540 strcat (buf, ", quad-float ABI");
3546 switch ((e_flags & EF_SH_MACH_MASK))
3548 case EF_SH1: strcat (buf, ", sh1"); break;
3549 case EF_SH2: strcat (buf, ", sh2"); break;
3550 case EF_SH3: strcat (buf, ", sh3"); break;
3551 case EF_SH_DSP: strcat (buf, ", sh-dsp"); break;
3552 case EF_SH3_DSP: strcat (buf, ", sh3-dsp"); break;
3553 case EF_SH4AL_DSP: strcat (buf, ", sh4al-dsp"); break;
3554 case EF_SH3E: strcat (buf, ", sh3e"); break;
3555 case EF_SH4: strcat (buf, ", sh4"); break;
3556 case EF_SH5: strcat (buf, ", sh5"); break;
3557 case EF_SH2E: strcat (buf, ", sh2e"); break;
3558 case EF_SH4A: strcat (buf, ", sh4a"); break;
3559 case EF_SH2A: strcat (buf, ", sh2a"); break;
3560 case EF_SH4_NOFPU: strcat (buf, ", sh4-nofpu"); break;
3561 case EF_SH4A_NOFPU: strcat (buf, ", sh4a-nofpu"); break;
3562 case EF_SH2A_NOFPU: strcat (buf, ", sh2a-nofpu"); break;
3563 case EF_SH3_NOMMU: strcat (buf, ", sh3-nommu"); break;
3564 case EF_SH4_NOMMU_NOFPU: strcat (buf, ", sh4-nommu-nofpu"); break;
3565 case EF_SH2A_SH4_NOFPU: strcat (buf, ", sh2a-nofpu-or-sh4-nommu-nofpu"); break;
3566 case EF_SH2A_SH3_NOFPU: strcat (buf, ", sh2a-nofpu-or-sh3-nommu"); break;
3567 case EF_SH2A_SH4: strcat (buf, ", sh2a-or-sh4"); break;
3568 case EF_SH2A_SH3E: strcat (buf, ", sh2a-or-sh3e"); break;
3569 default: strcat (buf, _(", unknown ISA")); break;
3572 if (e_flags & EF_SH_PIC)
3573 strcat (buf, ", pic");
3575 if (e_flags & EF_SH_FDPIC)
3576 strcat (buf, ", fdpic");
3580 if (e_flags & EF_OR1K_NODELAY)
3581 strcat (buf, ", no delay");
3585 if (e_flags & EF_SPARC_32PLUS)
3586 strcat (buf, ", v8+");
3588 if (e_flags & EF_SPARC_SUN_US1)
3589 strcat (buf, ", ultrasparcI");
3591 if (e_flags & EF_SPARC_SUN_US3)
3592 strcat (buf, ", ultrasparcIII");
3594 if (e_flags & EF_SPARC_HAL_R1)
3595 strcat (buf, ", halr1");
3597 if (e_flags & EF_SPARC_LEDATA)
3598 strcat (buf, ", ledata");
3600 if ((e_flags & EF_SPARCV9_MM) == EF_SPARCV9_TSO)
3601 strcat (buf, ", tso");
3603 if ((e_flags & EF_SPARCV9_MM) == EF_SPARCV9_PSO)
3604 strcat (buf, ", pso");
3606 if ((e_flags & EF_SPARCV9_MM) == EF_SPARCV9_RMO)
3607 strcat (buf, ", rmo");
3611 switch (e_flags & EF_PARISC_ARCH)
3613 case EFA_PARISC_1_0:
3614 strcpy (buf, ", PA-RISC 1.0");
3616 case EFA_PARISC_1_1:
3617 strcpy (buf, ", PA-RISC 1.1");
3619 case EFA_PARISC_2_0:
3620 strcpy (buf, ", PA-RISC 2.0");
3625 if (e_flags & EF_PARISC_TRAPNIL)
3626 strcat (buf, ", trapnil");
3627 if (e_flags & EF_PARISC_EXT)
3628 strcat (buf, ", ext");
3629 if (e_flags & EF_PARISC_LSB)
3630 strcat (buf, ", lsb");
3631 if (e_flags & EF_PARISC_WIDE)
3632 strcat (buf, ", wide");
3633 if (e_flags & EF_PARISC_NO_KABP)
3634 strcat (buf, ", no kabp");
3635 if (e_flags & EF_PARISC_LAZYSWAP)
3636 strcat (buf, ", lazyswap");
3641 if ((e_flags & EF_PICOJAVA_NEWCALLS) == EF_PICOJAVA_NEWCALLS)
3642 strcat (buf, ", new calling convention");
3644 if ((e_flags & EF_PICOJAVA_GNUCALLS) == EF_PICOJAVA_GNUCALLS)
3645 strcat (buf, ", gnu calling convention");
3649 if ((e_flags & EF_IA_64_ABI64))
3650 strcat (buf, ", 64-bit");
3652 strcat (buf, ", 32-bit");
3653 if ((e_flags & EF_IA_64_REDUCEDFP))
3654 strcat (buf, ", reduced fp model");
3655 if ((e_flags & EF_IA_64_NOFUNCDESC_CONS_GP))
3656 strcat (buf, ", no function descriptors, constant gp");
3657 else if ((e_flags & EF_IA_64_CONS_GP))
3658 strcat (buf, ", constant gp");
3659 if ((e_flags & EF_IA_64_ABSOLUTE))
3660 strcat (buf, ", absolute");
3661 if (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_OPENVMS)
3663 if ((e_flags & EF_IA_64_VMS_LINKAGES))
3664 strcat (buf, ", vms_linkages");
3665 switch ((e_flags & EF_IA_64_VMS_COMCOD))
3667 case EF_IA_64_VMS_COMCOD_SUCCESS:
3669 case EF_IA_64_VMS_COMCOD_WARNING:
3670 strcat (buf, ", warning");
3672 case EF_IA_64_VMS_COMCOD_ERROR:
3673 strcat (buf, ", error");
3675 case EF_IA_64_VMS_COMCOD_ABORT:
3676 strcat (buf, ", abort");
3679 warn (_("Unrecognised IA64 VMS Command Code: %x\n"),
3680 e_flags & EF_IA_64_VMS_COMCOD);
3681 strcat (buf, ", <unknown>");
3687 if ((e_flags & EF_VAX_NONPIC))
3688 strcat (buf, ", non-PIC");
3689 if ((e_flags & EF_VAX_DFLOAT))
3690 strcat (buf, ", D-Float");
3691 if ((e_flags & EF_VAX_GFLOAT))
3692 strcat (buf, ", G-Float");
3696 if (e_flags & EF_VISIUM_ARCH_MCM)
3697 strcat (buf, ", mcm");
3698 else if (e_flags & EF_VISIUM_ARCH_MCM24)
3699 strcat (buf, ", mcm24");
3700 if (e_flags & EF_VISIUM_ARCH_GR6)
3701 strcat (buf, ", gr6");
3705 switch (e_flags & E_FLAG_RL78_CPU_MASK)
3707 case E_FLAG_RL78_ANY_CPU: break;
3708 case E_FLAG_RL78_G10: strcat (buf, ", G10"); break;
3709 case E_FLAG_RL78_G13: strcat (buf, ", G13"); break;
3710 case E_FLAG_RL78_G14: strcat (buf, ", G14"); break;
3712 if (e_flags & E_FLAG_RL78_64BIT_DOUBLES)
3713 strcat (buf, ", 64-bit doubles");
3717 if (e_flags & E_FLAG_RX_64BIT_DOUBLES)
3718 strcat (buf, ", 64-bit doubles");
3719 if (e_flags & E_FLAG_RX_DSP)
3720 strcat (buf, ", dsp");
3721 if (e_flags & E_FLAG_RX_PID)
3722 strcat (buf, ", pid");
3723 if (e_flags & E_FLAG_RX_ABI)
3724 strcat (buf, ", RX ABI");
3725 if (e_flags & E_FLAG_RX_SINSNS_SET)
3726 strcat (buf, e_flags & E_FLAG_RX_SINSNS_YES
3727 ? ", uses String instructions" : ", bans String instructions");
3728 if (e_flags & E_FLAG_RX_V2)
3729 strcat (buf, ", V2");
3730 if (e_flags & E_FLAG_RX_V3)
3731 strcat (buf, ", V3");
3735 if (e_flags & EF_S390_HIGH_GPRS)
3736 strcat (buf, ", highgprs");
3740 if ((e_flags & EF_C6000_REL))
3741 strcat (buf, ", relocatable module");
3745 strcat (buf, _(": architecture variant: "));
3746 switch (e_flags & EF_MSP430_MACH)
3748 case E_MSP430_MACH_MSP430x11: strcat (buf, "MSP430x11"); break;
3749 case E_MSP430_MACH_MSP430x11x1 : strcat (buf, "MSP430x11x1 "); break;
3750 case E_MSP430_MACH_MSP430x12: strcat (buf, "MSP430x12"); break;
3751 case E_MSP430_MACH_MSP430x13: strcat (buf, "MSP430x13"); break;
3752 case E_MSP430_MACH_MSP430x14: strcat (buf, "MSP430x14"); break;
3753 case E_MSP430_MACH_MSP430x15: strcat (buf, "MSP430x15"); break;
3754 case E_MSP430_MACH_MSP430x16: strcat (buf, "MSP430x16"); break;
3755 case E_MSP430_MACH_MSP430x31: strcat (buf, "MSP430x31"); break;
3756 case E_MSP430_MACH_MSP430x32: strcat (buf, "MSP430x32"); break;
3757 case E_MSP430_MACH_MSP430x33: strcat (buf, "MSP430x33"); break;
3758 case E_MSP430_MACH_MSP430x41: strcat (buf, "MSP430x41"); break;
3759 case E_MSP430_MACH_MSP430x42: strcat (buf, "MSP430x42"); break;
3760 case E_MSP430_MACH_MSP430x43: strcat (buf, "MSP430x43"); break;
3761 case E_MSP430_MACH_MSP430x44: strcat (buf, "MSP430x44"); break;
3762 case E_MSP430_MACH_MSP430X : strcat (buf, "MSP430X"); break;
3764 strcat (buf, _(": unknown")); break;
3767 if (e_flags & ~ EF_MSP430_MACH)
3768 strcat (buf, _(": unknown extra flag bits also present"));
3776 get_osabi_name (Filedata * filedata, unsigned int osabi)
3778 static char buff[32];
3782 case ELFOSABI_NONE: return "UNIX - System V";
3783 case ELFOSABI_HPUX: return "UNIX - HP-UX";
3784 case ELFOSABI_NETBSD: return "UNIX - NetBSD";
3785 case ELFOSABI_GNU: return "UNIX - GNU";
3786 case ELFOSABI_SOLARIS: return "UNIX - Solaris";
3787 case ELFOSABI_AIX: return "UNIX - AIX";
3788 case ELFOSABI_IRIX: return "UNIX - IRIX";
3789 case ELFOSABI_FREEBSD: return "UNIX - FreeBSD";
3790 case ELFOSABI_TRU64: return "UNIX - TRU64";
3791 case ELFOSABI_MODESTO: return "Novell - Modesto";
3792 case ELFOSABI_OPENBSD: return "UNIX - OpenBSD";
3793 case ELFOSABI_OPENVMS: return "VMS - OpenVMS";
3794 case ELFOSABI_NSK: return "HP - Non-Stop Kernel";
3795 case ELFOSABI_AROS: return "AROS";
3796 case ELFOSABI_FENIXOS: return "FenixOS";
3797 case ELFOSABI_CLOUDABI: return "Nuxi CloudABI";
3798 case ELFOSABI_OPENVOS: return "Stratus Technologies OpenVOS";
3801 switch (filedata->file_header.e_machine)
3806 case ELFOSABI_ARM: return "ARM";
3807 case ELFOSABI_ARM_FDPIC: return "ARM FDPIC";
3818 case ELFOSABI_STANDALONE: return _("Standalone App");
3827 case ELFOSABI_C6000_ELFABI: return _("Bare-metal C6000");
3828 case ELFOSABI_C6000_LINUX: return "Linux C6000";
3837 snprintf (buff, sizeof (buff), _("<unknown: %x>"), osabi);
3843 get_aarch64_segment_type (unsigned long type)
3847 case PT_AARCH64_ARCHEXT: return "AARCH64_ARCHEXT";
3848 default: return NULL;
3853 get_arm_segment_type (unsigned long type)
3857 case PT_ARM_EXIDX: return "EXIDX";
3858 default: return NULL;
3863 get_s390_segment_type (unsigned long type)
3867 case PT_S390_PGSTE: return "S390_PGSTE";
3868 default: return NULL;
3873 get_mips_segment_type (unsigned long type)
3877 case PT_MIPS_REGINFO: return "REGINFO";
3878 case PT_MIPS_RTPROC: return "RTPROC";
3879 case PT_MIPS_OPTIONS: return "OPTIONS";
3880 case PT_MIPS_ABIFLAGS: return "ABIFLAGS";
3881 default: return NULL;
3886 get_parisc_segment_type (unsigned long type)
3890 case PT_HP_TLS: return "HP_TLS";
3891 case PT_HP_CORE_NONE: return "HP_CORE_NONE";
3892 case PT_HP_CORE_VERSION: return "HP_CORE_VERSION";
3893 case PT_HP_CORE_KERNEL: return "HP_CORE_KERNEL";
3894 case PT_HP_CORE_COMM: return "HP_CORE_COMM";
3895 case PT_HP_CORE_PROC: return "HP_CORE_PROC";
3896 case PT_HP_CORE_LOADABLE: return "HP_CORE_LOADABLE";
3897 case PT_HP_CORE_STACK: return "HP_CORE_STACK";
3898 case PT_HP_CORE_SHM: return "HP_CORE_SHM";
3899 case PT_HP_CORE_MMF: return "HP_CORE_MMF";
3900 case PT_HP_PARALLEL: return "HP_PARALLEL";
3901 case PT_HP_FASTBIND: return "HP_FASTBIND";
3902 case PT_HP_OPT_ANNOT: return "HP_OPT_ANNOT";
3903 case PT_HP_HSL_ANNOT: return "HP_HSL_ANNOT";
3904 case PT_HP_STACK: return "HP_STACK";
3905 case PT_HP_CORE_UTSNAME: return "HP_CORE_UTSNAME";
3906 case PT_PARISC_ARCHEXT: return "PARISC_ARCHEXT";
3907 case PT_PARISC_UNWIND: return "PARISC_UNWIND";
3908 case PT_PARISC_WEAKORDER: return "PARISC_WEAKORDER";
3909 default: return NULL;
3914 get_ia64_segment_type (unsigned long type)
3918 case PT_IA_64_ARCHEXT: return "IA_64_ARCHEXT";
3919 case PT_IA_64_UNWIND: return "IA_64_UNWIND";
3920 case PT_HP_TLS: return "HP_TLS";
3921 case PT_IA_64_HP_OPT_ANOT: return "HP_OPT_ANNOT";
3922 case PT_IA_64_HP_HSL_ANOT: return "HP_HSL_ANNOT";
3923 case PT_IA_64_HP_STACK: return "HP_STACK";
3924 default: return NULL;
3929 get_tic6x_segment_type (unsigned long type)
3933 case PT_C6000_PHATTR: return "C6000_PHATTR";
3934 default: return NULL;
3939 get_solaris_segment_type (unsigned long type)
3943 case 0x6464e550: return "PT_SUNW_UNWIND";
3944 case 0x6474e550: return "PT_SUNW_EH_FRAME";
3945 case 0x6ffffff7: return "PT_LOSUNW";
3946 case 0x6ffffffa: return "PT_SUNWBSS";
3947 case 0x6ffffffb: return "PT_SUNWSTACK";
3948 case 0x6ffffffc: return "PT_SUNWDTRACE";
3949 case 0x6ffffffd: return "PT_SUNWCAP";
3950 case 0x6fffffff: return "PT_HISUNW";
3951 default: return NULL;
3956 get_segment_type (Filedata * filedata, unsigned long p_type)
3958 static char buff[32];
3962 case PT_NULL: return "NULL";
3963 case PT_LOAD: return "LOAD";
3964 case PT_DYNAMIC: return "DYNAMIC";
3965 case PT_INTERP: return "INTERP";
3966 case PT_NOTE: return "NOTE";
3967 case PT_SHLIB: return "SHLIB";
3968 case PT_PHDR: return "PHDR";
3969 case PT_TLS: return "TLS";
3970 case PT_GNU_EH_FRAME: return "GNU_EH_FRAME";
3971 case PT_GNU_STACK: return "GNU_STACK";
3972 case PT_GNU_RELRO: return "GNU_RELRO";
3973 case PT_GNU_PROPERTY: return "GNU_PROPERTY";
3976 if (p_type >= PT_GNU_MBIND_LO && p_type <= PT_GNU_MBIND_HI)
3978 sprintf (buff, "GNU_MBIND+%#lx",
3979 p_type - PT_GNU_MBIND_LO);
3981 else if ((p_type >= PT_LOPROC) && (p_type <= PT_HIPROC))
3983 const char * result;
3985 switch (filedata->file_header.e_machine)
3988 result = get_aarch64_segment_type (p_type);
3991 result = get_arm_segment_type (p_type);
3994 case EM_MIPS_RS3_LE:
3995 result = get_mips_segment_type (p_type);
3998 result = get_parisc_segment_type (p_type);
4001 result = get_ia64_segment_type (p_type);
4004 result = get_tic6x_segment_type (p_type);
4008 result = get_s390_segment_type (p_type);
4018 sprintf (buff, "LOPROC+%#lx", p_type - PT_LOPROC);
4020 else if ((p_type >= PT_LOOS) && (p_type <= PT_HIOS))
4022 const char * result;
4024 switch (filedata->file_header.e_machine)
4027 result = get_parisc_segment_type (p_type);
4030 result = get_ia64_segment_type (p_type);
4033 if (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_SOLARIS)
4034 result = get_solaris_segment_type (p_type);
4043 sprintf (buff, "LOOS+%#lx", p_type - PT_LOOS);
4046 snprintf (buff, sizeof (buff), _("<unknown>: %lx"), p_type);
4053 get_arc_section_type_name (unsigned int sh_type)
4057 case SHT_ARC_ATTRIBUTES: return "ARC_ATTRIBUTES";
4065 get_mips_section_type_name (unsigned int sh_type)
4069 case SHT_MIPS_LIBLIST: return "MIPS_LIBLIST";
4070 case SHT_MIPS_MSYM: return "MIPS_MSYM";
4071 case SHT_MIPS_CONFLICT: return "MIPS_CONFLICT";
4072 case SHT_MIPS_GPTAB: return "MIPS_GPTAB";
4073 case SHT_MIPS_UCODE: return "MIPS_UCODE";
4074 case SHT_MIPS_DEBUG: return "MIPS_DEBUG";
4075 case SHT_MIPS_REGINFO: return "MIPS_REGINFO";
4076 case SHT_MIPS_PACKAGE: return "MIPS_PACKAGE";
4077 case SHT_MIPS_PACKSYM: return "MIPS_PACKSYM";
4078 case SHT_MIPS_RELD: return "MIPS_RELD";
4079 case SHT_MIPS_IFACE: return "MIPS_IFACE";
4080 case SHT_MIPS_CONTENT: return "MIPS_CONTENT";
4081 case SHT_MIPS_OPTIONS: return "MIPS_OPTIONS";
4082 case SHT_MIPS_SHDR: return "MIPS_SHDR";
4083 case SHT_MIPS_FDESC: return "MIPS_FDESC";
4084 case SHT_MIPS_EXTSYM: return "MIPS_EXTSYM";
4085 case SHT_MIPS_DENSE: return "MIPS_DENSE";
4086 case SHT_MIPS_PDESC: return "MIPS_PDESC";
4087 case SHT_MIPS_LOCSYM: return "MIPS_LOCSYM";
4088 case SHT_MIPS_AUXSYM: return "MIPS_AUXSYM";
4089 case SHT_MIPS_OPTSYM: return "MIPS_OPTSYM";
4090 case SHT_MIPS_LOCSTR: return "MIPS_LOCSTR";
4091 case SHT_MIPS_LINE: return "MIPS_LINE";
4092 case SHT_MIPS_RFDESC: return "MIPS_RFDESC";
4093 case SHT_MIPS_DELTASYM: return "MIPS_DELTASYM";
4094 case SHT_MIPS_DELTAINST: return "MIPS_DELTAINST";
4095 case SHT_MIPS_DELTACLASS: return "MIPS_DELTACLASS";
4096 case SHT_MIPS_DWARF: return "MIPS_DWARF";
4097 case SHT_MIPS_DELTADECL: return "MIPS_DELTADECL";
4098 case SHT_MIPS_SYMBOL_LIB: return "MIPS_SYMBOL_LIB";
4099 case SHT_MIPS_EVENTS: return "MIPS_EVENTS";
4100 case SHT_MIPS_TRANSLATE: return "MIPS_TRANSLATE";
4101 case SHT_MIPS_PIXIE: return "MIPS_PIXIE";
4102 case SHT_MIPS_XLATE: return "MIPS_XLATE";
4103 case SHT_MIPS_XLATE_DEBUG: return "MIPS_XLATE_DEBUG";
4104 case SHT_MIPS_WHIRL: return "MIPS_WHIRL";
4105 case SHT_MIPS_EH_REGION: return "MIPS_EH_REGION";
4106 case SHT_MIPS_XLATE_OLD: return "MIPS_XLATE_OLD";
4107 case SHT_MIPS_PDR_EXCEPTION: return "MIPS_PDR_EXCEPTION";
4108 case SHT_MIPS_ABIFLAGS: return "MIPS_ABIFLAGS";
4116 get_parisc_section_type_name (unsigned int sh_type)
4120 case SHT_PARISC_EXT: return "PARISC_EXT";
4121 case SHT_PARISC_UNWIND: return "PARISC_UNWIND";
4122 case SHT_PARISC_DOC: return "PARISC_DOC";
4123 case SHT_PARISC_ANNOT: return "PARISC_ANNOT";
4124 case SHT_PARISC_SYMEXTN: return "PARISC_SYMEXTN";
4125 case SHT_PARISC_STUBS: return "PARISC_STUBS";
4126 case SHT_PARISC_DLKM: return "PARISC_DLKM";
4127 default: return NULL;
4132 get_ia64_section_type_name (Filedata * filedata, unsigned int sh_type)
4134 /* If the top 8 bits are 0x78 the next 8 are the os/abi ID. */
4135 if ((sh_type & 0xFF000000) == SHT_IA_64_LOPSREG)
4136 return get_osabi_name (filedata, (sh_type & 0x00FF0000) >> 16);
4140 case SHT_IA_64_EXT: return "IA_64_EXT";
4141 case SHT_IA_64_UNWIND: return "IA_64_UNWIND";
4142 case SHT_IA_64_PRIORITY_INIT: return "IA_64_PRIORITY_INIT";
4143 case SHT_IA_64_VMS_TRACE: return "VMS_TRACE";
4144 case SHT_IA_64_VMS_TIE_SIGNATURES: return "VMS_TIE_SIGNATURES";
4145 case SHT_IA_64_VMS_DEBUG: return "VMS_DEBUG";
4146 case SHT_IA_64_VMS_DEBUG_STR: return "VMS_DEBUG_STR";
4147 case SHT_IA_64_VMS_LINKAGES: return "VMS_LINKAGES";
4148 case SHT_IA_64_VMS_SYMBOL_VECTOR: return "VMS_SYMBOL_VECTOR";
4149 case SHT_IA_64_VMS_FIXUP: return "VMS_FIXUP";
4157 get_x86_64_section_type_name (unsigned int sh_type)
4161 case SHT_X86_64_UNWIND: return "X86_64_UNWIND";
4162 default: return NULL;
4167 get_aarch64_section_type_name (unsigned int sh_type)
4171 case SHT_AARCH64_ATTRIBUTES: return "AARCH64_ATTRIBUTES";
4172 default: return NULL;
4177 get_arm_section_type_name (unsigned int sh_type)
4181 case SHT_ARM_EXIDX: return "ARM_EXIDX";
4182 case SHT_ARM_PREEMPTMAP: return "ARM_PREEMPTMAP";
4183 case SHT_ARM_ATTRIBUTES: return "ARM_ATTRIBUTES";
4184 case SHT_ARM_DEBUGOVERLAY: return "ARM_DEBUGOVERLAY";
4185 case SHT_ARM_OVERLAYSECTION: return "ARM_OVERLAYSECTION";
4186 default: return NULL;
4191 get_tic6x_section_type_name (unsigned int sh_type)
4195 case SHT_C6000_UNWIND: return "C6000_UNWIND";
4196 case SHT_C6000_PREEMPTMAP: return "C6000_PREEMPTMAP";
4197 case SHT_C6000_ATTRIBUTES: return "C6000_ATTRIBUTES";
4198 case SHT_TI_ICODE: return "TI_ICODE";
4199 case SHT_TI_XREF: return "TI_XREF";
4200 case SHT_TI_HANDLER: return "TI_HANDLER";
4201 case SHT_TI_INITINFO: return "TI_INITINFO";
4202 case SHT_TI_PHATTRS: return "TI_PHATTRS";
4203 default: return NULL;
4208 get_msp430x_section_type_name (unsigned int sh_type)
4212 case SHT_MSP430_SEC_FLAGS: return "MSP430_SEC_FLAGS";
4213 case SHT_MSP430_SYM_ALIASES: return "MSP430_SYM_ALIASES";
4214 case SHT_MSP430_ATTRIBUTES: return "MSP430_ATTRIBUTES";
4215 default: return NULL;
4220 get_nfp_section_type_name (unsigned int sh_type)
4224 case SHT_NFP_MECONFIG: return "NFP_MECONFIG";
4225 case SHT_NFP_INITREG: return "NFP_INITREG";
4226 case SHT_NFP_UDEBUG: return "NFP_UDEBUG";
4227 default: return NULL;
4232 get_v850_section_type_name (unsigned int sh_type)
4236 case SHT_V850_SCOMMON: return "V850 Small Common";
4237 case SHT_V850_TCOMMON: return "V850 Tiny Common";
4238 case SHT_V850_ZCOMMON: return "V850 Zero Common";
4239 case SHT_RENESAS_IOP: return "RENESAS IOP";
4240 case SHT_RENESAS_INFO: return "RENESAS INFO";
4241 default: return NULL;
4246 get_riscv_section_type_name (unsigned int sh_type)
4250 case SHT_RISCV_ATTRIBUTES: return "RISCV_ATTRIBUTES";
4251 default: return NULL;
4256 get_section_type_name (Filedata * filedata, unsigned int sh_type)
4258 static char buff[32];
4259 const char * result;
4263 case SHT_NULL: return "NULL";
4264 case SHT_PROGBITS: return "PROGBITS";
4265 case SHT_SYMTAB: return "SYMTAB";
4266 case SHT_STRTAB: return "STRTAB";
4267 case SHT_RELA: return "RELA";
4268 case SHT_HASH: return "HASH";
4269 case SHT_DYNAMIC: return "DYNAMIC";
4270 case SHT_NOTE: return "NOTE";
4271 case SHT_NOBITS: return "NOBITS";
4272 case SHT_REL: return "REL";
4273 case SHT_SHLIB: return "SHLIB";
4274 case SHT_DYNSYM: return "DYNSYM";
4275 case SHT_INIT_ARRAY: return "INIT_ARRAY";
4276 case SHT_FINI_ARRAY: return "FINI_ARRAY";
4277 case SHT_PREINIT_ARRAY: return "PREINIT_ARRAY";
4278 case SHT_GNU_HASH: return "GNU_HASH";
4279 case SHT_GROUP: return "GROUP";
4280 case SHT_SYMTAB_SHNDX: return "SYMTAB SECTION INDICES";
4281 case SHT_GNU_verdef: return "VERDEF";
4282 case SHT_GNU_verneed: return "VERNEED";
4283 case SHT_GNU_versym: return "VERSYM";
4284 case 0x6ffffff0: return "VERSYM";
4285 case 0x6ffffffc: return "VERDEF";
4286 case 0x7ffffffd: return "AUXILIARY";
4287 case 0x7fffffff: return "FILTER";
4288 case SHT_GNU_LIBLIST: return "GNU_LIBLIST";
4291 if ((sh_type >= SHT_LOPROC) && (sh_type <= SHT_HIPROC))
4293 switch (filedata->file_header.e_machine)
4296 case EM_ARC_COMPACT:
4297 case EM_ARC_COMPACT2:
4298 result = get_arc_section_type_name (sh_type);
4301 case EM_MIPS_RS3_LE:
4302 result = get_mips_section_type_name (sh_type);
4305 result = get_parisc_section_type_name (sh_type);
4308 result = get_ia64_section_type_name (filedata, sh_type);
4313 result = get_x86_64_section_type_name (sh_type);
4316 result = get_aarch64_section_type_name (sh_type);
4319 result = get_arm_section_type_name (sh_type);
4322 result = get_tic6x_section_type_name (sh_type);
4325 result = get_msp430x_section_type_name (sh_type);
4328 result = get_nfp_section_type_name (sh_type);
4332 case EM_CYGNUS_V850:
4333 result = get_v850_section_type_name (sh_type);
4336 result = get_riscv_section_type_name (sh_type);
4346 sprintf (buff, "LOPROC+%#x", sh_type - SHT_LOPROC);
4348 else if ((sh_type >= SHT_LOOS) && (sh_type <= SHT_HIOS))
4350 switch (filedata->file_header.e_machine)
4353 result = get_ia64_section_type_name (filedata, sh_type);
4356 if (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_SOLARIS)
4357 result = get_solaris_section_type (sh_type);
4362 case SHT_GNU_INCREMENTAL_INPUTS: result = "GNU_INCREMENTAL_INPUTS"; break;
4363 case SHT_GNU_ATTRIBUTES: result = "GNU_ATTRIBUTES"; break;
4364 case SHT_GNU_HASH: result = "GNU_HASH"; break;
4365 case SHT_GNU_LIBLIST: result = "GNU_LIBLIST"; break;
4377 sprintf (buff, "LOOS+%#x", sh_type - SHT_LOOS);
4379 else if ((sh_type >= SHT_LOUSER) && (sh_type <= SHT_HIUSER))
4381 switch (filedata->file_header.e_machine)
4385 case EM_CYGNUS_V850:
4386 result = get_v850_section_type_name (sh_type);
4396 sprintf (buff, "LOUSER+%#x", sh_type - SHT_LOUSER);
4399 /* This message is probably going to be displayed in a 15
4400 character wide field, so put the hex value first. */
4401 snprintf (buff, sizeof (buff), _("%08x: <unknown>"), sh_type);
4407 #define OPTION_DEBUG_DUMP 512
4408 #define OPTION_DYN_SYMS 513
4409 #define OPTION_DWARF_DEPTH 514
4410 #define OPTION_DWARF_START 515
4411 #define OPTION_DWARF_CHECK 516
4413 #define OPTION_CTF_DUMP 517
4414 #define OPTION_CTF_PARENT 518
4415 #define OPTION_CTF_SYMBOLS 519
4416 #define OPTION_CTF_STRINGS 520
4419 static struct option options[] =
4421 {"all", no_argument, 0, 'a'},
4422 {"file-header", no_argument, 0, 'h'},
4423 {"program-headers", no_argument, 0, 'l'},
4424 {"headers", no_argument, 0, 'e'},
4425 {"histogram", no_argument, 0, 'I'},
4426 {"segments", no_argument, 0, 'l'},
4427 {"sections", no_argument, 0, 'S'},
4428 {"section-headers", no_argument, 0, 'S'},
4429 {"section-groups", no_argument, 0, 'g'},
4430 {"section-details", no_argument, 0, 't'},
4431 {"full-section-name",no_argument, 0, 'N'},
4432 {"symbols", no_argument, 0, 's'},
4433 {"syms", no_argument, 0, 's'},
4434 {"dyn-syms", no_argument, 0, OPTION_DYN_SYMS},
4435 {"relocs", no_argument, 0, 'r'},
4436 {"notes", no_argument, 0, 'n'},
4437 {"dynamic", no_argument, 0, 'd'},
4438 {"arch-specific", no_argument, 0, 'A'},
4439 {"version-info", no_argument, 0, 'V'},
4440 {"use-dynamic", no_argument, 0, 'D'},
4441 {"unwind", no_argument, 0, 'u'},
4442 {"archive-index", no_argument, 0, 'c'},
4443 {"hex-dump", required_argument, 0, 'x'},
4444 {"relocated-dump", required_argument, 0, 'R'},
4445 {"string-dump", required_argument, 0, 'p'},
4446 {"decompress", no_argument, 0, 'z'},
4447 #ifdef SUPPORT_DISASSEMBLY
4448 {"instruction-dump", required_argument, 0, 'i'},
4450 {"debug-dump", optional_argument, 0, OPTION_DEBUG_DUMP},
4452 {"dwarf-depth", required_argument, 0, OPTION_DWARF_DEPTH},
4453 {"dwarf-start", required_argument, 0, OPTION_DWARF_START},
4454 {"dwarf-check", no_argument, 0, OPTION_DWARF_CHECK},
4457 {"ctf", required_argument, 0, OPTION_CTF_DUMP},
4459 {"ctf-symbols", required_argument, 0, OPTION_CTF_SYMBOLS},
4460 {"ctf-strings", required_argument, 0, OPTION_CTF_STRINGS},
4461 {"ctf-parent", required_argument, 0, OPTION_CTF_PARENT},
4464 {"version", no_argument, 0, 'v'},
4465 {"wide", no_argument, 0, 'W'},
4466 {"help", no_argument, 0, 'H'},
4467 {0, no_argument, 0, 0}
4471 usage (FILE * stream)
4473 fprintf (stream, _("Usage: readelf <option(s)> elf-file(s)\n"));
4474 fprintf (stream, _(" Display information about the contents of ELF format files\n"));
4475 fprintf (stream, _(" Options are:\n\
4476 -a --all Equivalent to: -h -l -S -s -r -d -V -A -I\n\
4477 -h --file-header Display the ELF file header\n\
4478 -l --program-headers Display the program headers\n\
4479 --segments An alias for --program-headers\n\
4480 -S --section-headers Display the sections' header\n\
4481 --sections An alias for --section-headers\n\
4482 -g --section-groups Display the section groups\n\
4483 -t --section-details Display the section details\n\
4484 -e --headers Equivalent to: -h -l -S\n\
4485 -s --syms Display the symbol table\n\
4486 --symbols An alias for --syms\n\
4487 --dyn-syms Display the dynamic symbol table\n\
4488 -n --notes Display the core notes (if present)\n\
4489 -r --relocs Display the relocations (if present)\n\
4490 -u --unwind Display the unwind info (if present)\n\
4491 -d --dynamic Display the dynamic section (if present)\n\
4492 -V --version-info Display the version sections (if present)\n\
4493 -A --arch-specific Display architecture specific information (if any)\n\
4494 -c --archive-index Display the symbol/file index in an archive\n\
4495 -D --use-dynamic Use the dynamic section info when displaying symbols\n\
4496 -x --hex-dump=<number|name>\n\
4497 Dump the contents of section <number|name> as bytes\n\
4498 -p --string-dump=<number|name>\n\
4499 Dump the contents of section <number|name> as strings\n\
4500 -R --relocated-dump=<number|name>\n\
4501 Dump the contents of section <number|name> as relocated bytes\n\
4502 -z --decompress Decompress section before dumping it\n\
4503 -w[lLiaprmfFsoRtUuTgAckK] or\n\
4504 --debug-dump[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,\n\
4505 =frames-interp,=str,=loc,=Ranges,=pubtypes,\n\
4506 =gdb_index,=trace_info,=trace_abbrev,=trace_aranges,\n\
4507 =addr,=cu_index,=links,=follow-links]\n\
4508 Display the contents of DWARF debug sections\n"));
4509 fprintf (stream, _("\
4510 --dwarf-depth=N Do not display DIEs at depth N or greater\n\
4511 --dwarf-start=N Display DIEs starting with N, at the same depth\n\
4514 fprintf (stream, _("\
4515 --ctf=<number|name> Display CTF info from section <number|name>\n\
4516 --ctf-parent=<number|name>\n\
4517 Use section <number|name> as the CTF parent\n\n\
4518 --ctf-symbols=<number|name>\n\
4519 Use section <number|name> as the CTF external symtab\n\n\
4520 --ctf-strings=<number|name>\n\
4521 Use section <number|name> as the CTF external strtab\n\n"));
4524 #ifdef SUPPORT_DISASSEMBLY
4525 fprintf (stream, _("\
4526 -i --instruction-dump=<number|name>\n\
4527 Disassemble the contents of section <number|name>\n"));
4529 fprintf (stream, _("\
4530 -I --histogram Display histogram of bucket list lengths\n\
4531 -W --wide Allow output width to exceed 80 characters\n\
4532 @<file> Read options from <file>\n\
4533 -H --help Display this information\n\
4534 -v --version Display the version number of readelf\n"));
4536 if (REPORT_BUGS_TO[0] && stream == stdout)
4537 fprintf (stdout, _("Report bugs to %s\n"), REPORT_BUGS_TO);
4539 exit (stream == stdout ? 0 : 1);
4542 /* Record the fact that the user wants the contents of section number
4543 SECTION to be displayed using the method(s) encoded as flags bits
4544 in TYPE. Note, TYPE can be zero if we are creating the array for
4548 request_dump_bynumber (Filedata * filedata, unsigned int section, dump_type type)
4550 if (section >= filedata->num_dump_sects)
4552 dump_type * new_dump_sects;
4554 new_dump_sects = (dump_type *) calloc (section + 1,
4555 sizeof (* new_dump_sects));
4557 if (new_dump_sects == NULL)
4558 error (_("Out of memory allocating dump request table.\n"));
4561 if (filedata->dump_sects)
4563 /* Copy current flag settings. */
4564 memcpy (new_dump_sects, filedata->dump_sects,
4565 filedata->num_dump_sects * sizeof (* new_dump_sects));
4567 free (filedata->dump_sects);
4570 filedata->dump_sects = new_dump_sects;
4571 filedata->num_dump_sects = section + 1;
4575 if (filedata->dump_sects)
4576 filedata->dump_sects[section] |= type;
4579 /* Request a dump by section name. */
4582 request_dump_byname (const char * section, dump_type type)
4584 struct dump_list_entry * new_request;
4586 new_request = (struct dump_list_entry *)
4587 malloc (sizeof (struct dump_list_entry));
4589 error (_("Out of memory allocating dump request table.\n"));
4591 new_request->name = strdup (section);
4592 if (!new_request->name)
4593 error (_("Out of memory allocating dump request table.\n"));
4595 new_request->type = type;
4597 new_request->next = dump_sects_byname;
4598 dump_sects_byname = new_request;
4602 request_dump (Filedata * filedata, dump_type type)
4608 section = strtoul (optarg, & cp, 0);
4610 if (! *cp && section >= 0)
4611 request_dump_bynumber (filedata, section, type);
4613 request_dump_byname (optarg, type);
4617 parse_args (Filedata * filedata, int argc, char ** argv)
4624 while ((c = getopt_long
4625 (argc, argv, "ADHINR:SVWacdeghi:lnp:rstuvw::x:z", options, NULL)) != EOF)
4643 do_section_groups = TRUE;
4646 do_histogram = TRUE;
4651 do_section_groups = TRUE;
4656 do_section_details = TRUE;
4667 do_using_dynamic = TRUE;
4691 do_histogram = TRUE;
4697 do_archive_index = TRUE;
4700 request_dump (filedata, HEX_DUMP);
4703 request_dump (filedata, STRING_DUMP);
4706 request_dump (filedata, RELOC_DUMP);
4709 decompress_dumps = TRUE;
4715 do_debugging = TRUE;
4716 dwarf_select_sections_all ();
4720 do_debugging = FALSE;
4721 dwarf_select_sections_by_letters (optarg);
4724 case OPTION_DEBUG_DUMP:
4727 do_debugging = TRUE;
4730 do_debugging = FALSE;
4731 dwarf_select_sections_by_names (optarg);
4734 case OPTION_DWARF_DEPTH:
4738 dwarf_cutoff_level = strtoul (optarg, & cp, 0);
4741 case OPTION_DWARF_START:
4745 dwarf_start_die = strtoul (optarg, & cp, 0);
4748 case OPTION_DWARF_CHECK:
4752 case OPTION_CTF_DUMP:
4754 request_dump (filedata, CTF_DUMP);
4756 case OPTION_CTF_SYMBOLS:
4757 dump_ctf_symtab_name = strdup (optarg);
4759 case OPTION_CTF_STRINGS:
4760 dump_ctf_strtab_name = strdup (optarg);
4762 case OPTION_CTF_PARENT:
4763 dump_ctf_parent_name = strdup (optarg);
4766 case OPTION_DYN_SYMS:
4769 #ifdef SUPPORT_DISASSEMBLY
4771 request_dump (filedata, DISASS_DUMP);
4775 print_version (program_name);
4784 /* xgettext:c-format */
4785 error (_("Invalid option '-%c'\n"), c);
4792 if (!do_dynamic && !do_syms && !do_reloc && !do_unwind && !do_sections
4793 && !do_segments && !do_header && !do_dump && !do_version
4794 && !do_histogram && !do_debugging && !do_arch && !do_notes
4795 && !do_section_groups && !do_archive_index
4801 get_elf_class (unsigned int elf_class)
4803 static char buff[32];
4807 case ELFCLASSNONE: return _("none");
4808 case ELFCLASS32: return "ELF32";
4809 case ELFCLASS64: return "ELF64";
4811 snprintf (buff, sizeof (buff), _("<unknown: %x>"), elf_class);
4817 get_data_encoding (unsigned int encoding)
4819 static char buff[32];
4823 case ELFDATANONE: return _("none");
4824 case ELFDATA2LSB: return _("2's complement, little endian");
4825 case ELFDATA2MSB: return _("2's complement, big endian");
4827 snprintf (buff, sizeof (buff), _("<unknown: %x>"), encoding);
4832 /* Decode the data held in 'filedata->file_header'. */
4835 process_file_header (Filedata * filedata)
4837 Elf_Internal_Ehdr * header = & filedata->file_header;
4839 if ( header->e_ident[EI_MAG0] != ELFMAG0
4840 || header->e_ident[EI_MAG1] != ELFMAG1
4841 || header->e_ident[EI_MAG2] != ELFMAG2
4842 || header->e_ident[EI_MAG3] != ELFMAG3)
4845 (_("Not an ELF file - it has the wrong magic bytes at the start\n"));
4849 init_dwarf_regnames (header->e_machine);
4855 printf (_("ELF Header:\n"));
4856 printf (_(" Magic: "));
4857 for (i = 0; i < EI_NIDENT; i++)
4858 printf ("%2.2x ", header->e_ident[i]);
4860 printf (_(" Class: %s\n"),
4861 get_elf_class (header->e_ident[EI_CLASS]));
4862 printf (_(" Data: %s\n"),
4863 get_data_encoding (header->e_ident[EI_DATA]));
4864 printf (_(" Version: %d%s\n"),
4865 header->e_ident[EI_VERSION],
4866 (header->e_ident[EI_VERSION] == EV_CURRENT
4868 : (header->e_ident[EI_VERSION] != EV_NONE
4871 printf (_(" OS/ABI: %s\n"),
4872 get_osabi_name (filedata, header->e_ident[EI_OSABI]));
4873 printf (_(" ABI Version: %d\n"),
4874 header->e_ident[EI_ABIVERSION]);
4875 printf (_(" Type: %s\n"),
4876 get_file_type (header->e_type));
4877 printf (_(" Machine: %s\n"),
4878 get_machine_name (header->e_machine));
4879 printf (_(" Version: 0x%lx\n"),
4882 printf (_(" Entry point address: "));
4883 print_vma (header->e_entry, PREFIX_HEX);
4884 printf (_("\n Start of program headers: "));
4885 print_vma (header->e_phoff, DEC);
4886 printf (_(" (bytes into file)\n Start of section headers: "));
4887 print_vma (header->e_shoff, DEC);
4888 printf (_(" (bytes into file)\n"));
4890 printf (_(" Flags: 0x%lx%s\n"),
4892 get_machine_flags (filedata, header->e_flags, header->e_machine));
4893 printf (_(" Size of this header: %u (bytes)\n"),
4895 printf (_(" Size of program headers: %u (bytes)\n"),
4896 header->e_phentsize);
4897 printf (_(" Number of program headers: %u"),
4899 if (filedata->section_headers != NULL
4900 && header->e_phnum == PN_XNUM
4901 && filedata->section_headers[0].sh_info != 0)
4903 header->e_phnum = filedata->section_headers[0].sh_info;
4904 printf (" (%u)", header->e_phnum);
4906 putc ('\n', stdout);
4907 printf (_(" Size of section headers: %u (bytes)\n"),
4908 header->e_shentsize);
4909 printf (_(" Number of section headers: %u"),
4911 if (filedata->section_headers != NULL && header->e_shnum == SHN_UNDEF)
4913 header->e_shnum = filedata->section_headers[0].sh_size;
4914 printf (" (%u)", header->e_shnum);
4916 putc ('\n', stdout);
4917 printf (_(" Section header string table index: %u"),
4918 header->e_shstrndx);
4919 if (filedata->section_headers != NULL
4920 && header->e_shstrndx == (SHN_XINDEX & 0xffff))
4922 header->e_shstrndx = filedata->section_headers[0].sh_link;
4923 printf (" (%u)", header->e_shstrndx);
4925 if (header->e_shstrndx != SHN_UNDEF
4926 && header->e_shstrndx >= header->e_shnum)
4928 header->e_shstrndx = SHN_UNDEF;
4929 printf (_(" <corrupt: out of range>"));
4931 putc ('\n', stdout);
4934 if (filedata->section_headers != NULL)
4936 if (header->e_phnum == PN_XNUM
4937 && filedata->section_headers[0].sh_info != 0)
4938 header->e_phnum = filedata->section_headers[0].sh_info;
4939 if (header->e_shnum == SHN_UNDEF)
4940 header->e_shnum = filedata->section_headers[0].sh_size;
4941 if (header->e_shstrndx == (SHN_XINDEX & 0xffff))
4942 header->e_shstrndx = filedata->section_headers[0].sh_link;
4943 if (header->e_shstrndx >= header->e_shnum)
4944 header->e_shstrndx = SHN_UNDEF;
4945 free (filedata->section_headers);
4946 filedata->section_headers = NULL;
4952 /* Read in the program headers from FILEDATA and store them in PHEADERS.
4953 Returns TRUE upon success, FALSE otherwise. Loads 32-bit headers. */
4956 get_32bit_program_headers (Filedata * filedata, Elf_Internal_Phdr * pheaders)
4958 Elf32_External_Phdr * phdrs;
4959 Elf32_External_Phdr * external;
4960 Elf_Internal_Phdr * internal;
4962 unsigned int size = filedata->file_header.e_phentsize;
4963 unsigned int num = filedata->file_header.e_phnum;
4965 /* PR binutils/17531: Cope with unexpected section header sizes. */
4966 if (size == 0 || num == 0)
4968 if (size < sizeof * phdrs)
4970 error (_("The e_phentsize field in the ELF header is less than the size of an ELF program header\n"));
4973 if (size > sizeof * phdrs)
4974 warn (_("The e_phentsize field in the ELF header is larger than the size of an ELF program header\n"));
4976 phdrs = (Elf32_External_Phdr *) get_data (NULL, filedata, filedata->file_header.e_phoff,
4977 size, num, _("program headers"));
4981 for (i = 0, internal = pheaders, external = phdrs;
4982 i < filedata->file_header.e_phnum;
4983 i++, internal++, external++)
4985 internal->p_type = BYTE_GET (external->p_type);
4986 internal->p_offset = BYTE_GET (external->p_offset);
4987 internal->p_vaddr = BYTE_GET (external->p_vaddr);
4988 internal->p_paddr = BYTE_GET (external->p_paddr);
4989 internal->p_filesz = BYTE_GET (external->p_filesz);
4990 internal->p_memsz = BYTE_GET (external->p_memsz);
4991 internal->p_flags = BYTE_GET (external->p_flags);
4992 internal->p_align = BYTE_GET (external->p_align);
4999 /* Read in the program headers from FILEDATA and store them in PHEADERS.
5000 Returns TRUE upon success, FALSE otherwise. Loads 64-bit headers. */
5003 get_64bit_program_headers (Filedata * filedata, Elf_Internal_Phdr * pheaders)
5005 Elf64_External_Phdr * phdrs;
5006 Elf64_External_Phdr * external;
5007 Elf_Internal_Phdr * internal;
5009 unsigned int size = filedata->file_header.e_phentsize;
5010 unsigned int num = filedata->file_header.e_phnum;
5012 /* PR binutils/17531: Cope with unexpected section header sizes. */
5013 if (size == 0 || num == 0)
5015 if (size < sizeof * phdrs)
5017 error (_("The e_phentsize field in the ELF header is less than the size of an ELF program header\n"));
5020 if (size > sizeof * phdrs)
5021 warn (_("The e_phentsize field in the ELF header is larger than the size of an ELF program header\n"));
5023 phdrs = (Elf64_External_Phdr *) get_data (NULL, filedata, filedata->file_header.e_phoff,
5024 size, num, _("program headers"));
5028 for (i = 0, internal = pheaders, external = phdrs;
5029 i < filedata->file_header.e_phnum;
5030 i++, internal++, external++)
5032 internal->p_type = BYTE_GET (external->p_type);
5033 internal->p_flags = BYTE_GET (external->p_flags);
5034 internal->p_offset = BYTE_GET (external->p_offset);
5035 internal->p_vaddr = BYTE_GET (external->p_vaddr);
5036 internal->p_paddr = BYTE_GET (external->p_paddr);
5037 internal->p_filesz = BYTE_GET (external->p_filesz);
5038 internal->p_memsz = BYTE_GET (external->p_memsz);
5039 internal->p_align = BYTE_GET (external->p_align);
5046 /* Returns TRUE if the program headers were read into `program_headers'. */
5049 get_program_headers (Filedata * filedata)
5051 Elf_Internal_Phdr * phdrs;
5053 /* Check cache of prior read. */
5054 if (filedata->program_headers != NULL)
5057 /* Be kind to memory checkers by looking for
5058 e_phnum values which we know must be invalid. */
5059 if (filedata->file_header.e_phnum
5060 * (is_32bit_elf ? sizeof (Elf32_External_Phdr) : sizeof (Elf64_External_Phdr))
5061 >= filedata->file_size)
5063 error (_("Too many program headers - %#x - the file is not that big\n"),
5064 filedata->file_header.e_phnum);
5068 phdrs = (Elf_Internal_Phdr *) cmalloc (filedata->file_header.e_phnum,
5069 sizeof (Elf_Internal_Phdr));
5072 error (_("Out of memory reading %u program headers\n"),
5073 filedata->file_header.e_phnum);
5078 ? get_32bit_program_headers (filedata, phdrs)
5079 : get_64bit_program_headers (filedata, phdrs))
5081 filedata->program_headers = phdrs;
5089 /* Returns TRUE if the program headers were loaded. */
5092 process_program_headers (Filedata * filedata)
5094 Elf_Internal_Phdr * segment;
5096 Elf_Internal_Phdr * previous_load = NULL;
5098 if (filedata->file_header.e_phnum == 0)
5100 /* PR binutils/12467. */
5101 if (filedata->file_header.e_phoff != 0)
5103 warn (_("possibly corrupt ELF header - it has a non-zero program"
5104 " header offset, but no program headers\n"));
5107 else if (do_segments)
5108 printf (_("\nThere are no program headers in this file.\n"));
5112 if (do_segments && !do_header)
5114 printf (_("\nElf file type is %s\n"), get_file_type (filedata->file_header.e_type));
5115 printf (_("Entry point 0x%s\n"), bfd_vmatoa ("x", filedata->file_header.e_entry));
5116 printf (ngettext ("There is %d program header, starting at offset %s\n",
5117 "There are %d program headers, starting at offset %s\n",
5118 filedata->file_header.e_phnum),
5119 filedata->file_header.e_phnum,
5120 bfd_vmatoa ("u", filedata->file_header.e_phoff));
5123 if (! get_program_headers (filedata))
5128 if (filedata->file_header.e_phnum > 1)
5129 printf (_("\nProgram Headers:\n"));
5131 printf (_("\nProgram Headers:\n"));
5135 (_(" Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align\n"));
5138 (_(" Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align\n"));
5142 (_(" Type Offset VirtAddr PhysAddr\n"));
5144 (_(" FileSiz MemSiz Flags Align\n"));
5151 for (i = 0, segment = filedata->program_headers;
5152 i < filedata->file_header.e_phnum;
5157 printf (" %-14.14s ", get_segment_type (filedata, segment->p_type));
5161 printf ("0x%6.6lx ", (unsigned long) segment->p_offset);
5162 printf ("0x%8.8lx ", (unsigned long) segment->p_vaddr);
5163 printf ("0x%8.8lx ", (unsigned long) segment->p_paddr);
5164 printf ("0x%5.5lx ", (unsigned long) segment->p_filesz);
5165 printf ("0x%5.5lx ", (unsigned long) segment->p_memsz);
5167 (segment->p_flags & PF_R ? 'R' : ' '),
5168 (segment->p_flags & PF_W ? 'W' : ' '),
5169 (segment->p_flags & PF_X ? 'E' : ' '));
5170 printf ("%#lx", (unsigned long) segment->p_align);
5174 if ((unsigned long) segment->p_offset == segment->p_offset)
5175 printf ("0x%6.6lx ", (unsigned long) segment->p_offset);
5178 print_vma (segment->p_offset, FULL_HEX);
5182 print_vma (segment->p_vaddr, FULL_HEX);
5184 print_vma (segment->p_paddr, FULL_HEX);
5187 if ((unsigned long) segment->p_filesz == segment->p_filesz)
5188 printf ("0x%6.6lx ", (unsigned long) segment->p_filesz);
5191 print_vma (segment->p_filesz, FULL_HEX);
5195 if ((unsigned long) segment->p_memsz == segment->p_memsz)
5196 printf ("0x%6.6lx", (unsigned long) segment->p_memsz);
5199 print_vma (segment->p_memsz, FULL_HEX);
5203 (segment->p_flags & PF_R ? 'R' : ' '),
5204 (segment->p_flags & PF_W ? 'W' : ' '),
5205 (segment->p_flags & PF_X ? 'E' : ' '));
5207 if ((unsigned long) segment->p_align == segment->p_align)
5208 printf ("%#lx", (unsigned long) segment->p_align);
5211 print_vma (segment->p_align, PREFIX_HEX);
5216 print_vma (segment->p_offset, FULL_HEX);
5218 print_vma (segment->p_vaddr, FULL_HEX);
5220 print_vma (segment->p_paddr, FULL_HEX);
5222 print_vma (segment->p_filesz, FULL_HEX);
5224 print_vma (segment->p_memsz, FULL_HEX);
5226 (segment->p_flags & PF_R ? 'R' : ' '),
5227 (segment->p_flags & PF_W ? 'W' : ' '),
5228 (segment->p_flags & PF_X ? 'E' : ' '));
5229 print_vma (segment->p_align, PREFIX_HEX);
5232 putc ('\n', stdout);
5235 switch (segment->p_type)
5238 #if 0 /* Do not warn about out of order PT_LOAD segments. Although officially
5239 required by the ELF standard, several programs, including the Linux
5240 kernel, make use of non-ordered segments. */
5242 && previous_load->p_vaddr > segment->p_vaddr)
5243 error (_("LOAD segments must be sorted in order of increasing VirtAddr\n"));
5245 if (segment->p_memsz < segment->p_filesz)
5246 error (_("the segment's file size is larger than its memory size\n"));
5247 previous_load = segment;
5251 /* PR 20815 - Verify that the program header is loaded into memory. */
5252 if (i > 0 && previous_load != NULL)
5253 error (_("the PHDR segment must occur before any LOAD segment\n"));
5254 if (filedata->file_header.e_machine != EM_PARISC)
5258 for (j = 1; j < filedata->file_header.e_phnum; j++)
5259 if (filedata->program_headers[j].p_vaddr <= segment->p_vaddr
5260 && (filedata->program_headers[j].p_vaddr
5261 + filedata->program_headers[j].p_memsz)
5262 >= (segment->p_vaddr + segment->p_filesz))
5264 if (j == filedata->file_header.e_phnum)
5265 error (_("the PHDR segment is not covered by a LOAD segment\n"));
5271 error (_("more than one dynamic segment\n"));
5273 /* By default, assume that the .dynamic section is the first
5274 section in the DYNAMIC segment. */
5275 dynamic_addr = segment->p_offset;
5276 dynamic_size = segment->p_filesz;
5278 /* Try to locate the .dynamic section. If there is
5279 a section header table, we can easily locate it. */
5280 if (filedata->section_headers != NULL)
5282 Elf_Internal_Shdr * sec;
5284 sec = find_section (filedata, ".dynamic");
5285 if (sec == NULL || sec->sh_size == 0)
5287 /* A corresponding .dynamic section is expected, but on
5288 IA-64/OpenVMS it is OK for it to be missing. */
5289 if (!is_ia64_vms (filedata))
5290 error (_("no .dynamic section in the dynamic segment\n"));
5294 if (sec->sh_type == SHT_NOBITS)
5300 dynamic_addr = sec->sh_offset;
5301 dynamic_size = sec->sh_size;
5303 if (dynamic_addr < segment->p_offset
5304 || dynamic_addr > segment->p_offset + segment->p_filesz)
5305 warn (_("the .dynamic section is not contained"
5306 " within the dynamic segment\n"));
5307 else if (dynamic_addr > segment->p_offset)
5308 warn (_("the .dynamic section is not the first section"
5309 " in the dynamic segment.\n"));
5312 /* PR binutils/17512: Avoid corrupt dynamic section info in the
5313 segment. Check this after matching against the section headers
5314 so we don't warn on debuginfo file (which have NOBITS .dynamic
5316 if (dynamic_addr > filedata->file_size
5317 || dynamic_size > filedata->file_size - dynamic_addr)
5319 error (_("the dynamic segment offset + size exceeds the size of the file\n"));
5320 dynamic_addr = dynamic_size = 0;
5325 if (fseek (filedata->handle, archive_file_offset + (long) segment->p_offset,
5327 error (_("Unable to find program interpreter name\n"));
5331 int ret = snprintf (fmt, sizeof (fmt), "%%%ds", PATH_MAX - 1);
5333 if (ret >= (int) sizeof (fmt) || ret < 0)
5334 error (_("Internal error: failed to create format string to display program interpreter\n"));
5336 program_interpreter[0] = 0;
5337 if (fscanf (filedata->handle, fmt, program_interpreter) <= 0)
5338 error (_("Unable to read program interpreter name\n"));
5341 printf (_(" [Requesting program interpreter: %s]\n"),
5342 program_interpreter);
5349 && filedata->section_headers != NULL
5350 && filedata->string_table != NULL)
5352 printf (_("\n Section to Segment mapping:\n"));
5353 printf (_(" Segment Sections...\n"));
5355 for (i = 0; i < filedata->file_header.e_phnum; i++)
5358 Elf_Internal_Shdr * section;
5360 segment = filedata->program_headers + i;
5361 section = filedata->section_headers + 1;
5363 printf (" %2.2d ", i);
5365 for (j = 1; j < filedata->file_header.e_shnum; j++, section++)
5367 if (!ELF_TBSS_SPECIAL (section, segment)
5368 && ELF_SECTION_IN_SEGMENT_STRICT (section, segment))
5369 printf ("%s ", printable_section_name (filedata, section));
5380 /* Find the file offset corresponding to VMA by using the program headers. */
5383 offset_from_vma (Filedata * filedata, bfd_vma vma, bfd_size_type size)
5385 Elf_Internal_Phdr * seg;
5387 if (! get_program_headers (filedata))
5389 warn (_("Cannot interpret virtual addresses without program headers.\n"));
5393 for (seg = filedata->program_headers;
5394 seg < filedata->program_headers + filedata->file_header.e_phnum;
5397 if (seg->p_type != PT_LOAD)
5400 if (vma >= (seg->p_vaddr & -seg->p_align)
5401 && vma + size <= seg->p_vaddr + seg->p_filesz)
5402 return vma - seg->p_vaddr + seg->p_offset;
5405 warn (_("Virtual address 0x%lx not located in any PT_LOAD segment.\n"),
5406 (unsigned long) vma);
5411 /* Allocate memory and load the sections headers into FILEDATA->filedata->section_headers.
5412 If PROBE is true, this is just a probe and we do not generate any error
5413 messages if the load fails. */
5416 get_32bit_section_headers (Filedata * filedata, bfd_boolean probe)
5418 Elf32_External_Shdr * shdrs;
5419 Elf_Internal_Shdr * internal;
5421 unsigned int size = filedata->file_header.e_shentsize;
5422 unsigned int num = probe ? 1 : filedata->file_header.e_shnum;
5424 /* PR binutils/17531: Cope with unexpected section header sizes. */
5425 if (size == 0 || num == 0)
5427 if (size < sizeof * shdrs)
5430 error (_("The e_shentsize field in the ELF header is less than the size of an ELF section header\n"));
5433 if (!probe && size > sizeof * shdrs)
5434 warn (_("The e_shentsize field in the ELF header is larger than the size of an ELF section header\n"));
5436 shdrs = (Elf32_External_Shdr *) get_data (NULL, filedata, filedata->file_header.e_shoff,
5438 probe ? NULL : _("section headers"));
5442 free (filedata->section_headers);
5443 filedata->section_headers = (Elf_Internal_Shdr *)
5444 cmalloc (num, sizeof (Elf_Internal_Shdr));
5445 if (filedata->section_headers == NULL)
5448 error (_("Out of memory reading %u section headers\n"), num);
5453 for (i = 0, internal = filedata->section_headers;
5457 internal->sh_name = BYTE_GET (shdrs[i].sh_name);
5458 internal->sh_type = BYTE_GET (shdrs[i].sh_type);
5459 internal->sh_flags = BYTE_GET (shdrs[i].sh_flags);
5460 internal->sh_addr = BYTE_GET (shdrs[i].sh_addr);
5461 internal->sh_offset = BYTE_GET (shdrs[i].sh_offset);
5462 internal->sh_size = BYTE_GET (shdrs[i].sh_size);
5463 internal->sh_link = BYTE_GET (shdrs[i].sh_link);
5464 internal->sh_info = BYTE_GET (shdrs[i].sh_info);
5465 internal->sh_addralign = BYTE_GET (shdrs[i].sh_addralign);
5466 internal->sh_entsize = BYTE_GET (shdrs[i].sh_entsize);
5467 if (!probe && internal->sh_link > num)
5468 warn (_("Section %u has an out of range sh_link value of %u\n"), i, internal->sh_link);
5469 if (!probe && internal->sh_flags & SHF_INFO_LINK && internal->sh_info > num)
5470 warn (_("Section %u has an out of range sh_info value of %u\n"), i, internal->sh_info);
5477 /* Like get_32bit_section_headers, except that it fetches 64-bit headers. */
5480 get_64bit_section_headers (Filedata * filedata, bfd_boolean probe)
5482 Elf64_External_Shdr * shdrs;
5483 Elf_Internal_Shdr * internal;
5485 unsigned int size = filedata->file_header.e_shentsize;
5486 unsigned int num = probe ? 1 : filedata->file_header.e_shnum;
5488 /* PR binutils/17531: Cope with unexpected section header sizes. */
5489 if (size == 0 || num == 0)
5492 if (size < sizeof * shdrs)
5495 error (_("The e_shentsize field in the ELF header is less than the size of an ELF section header\n"));
5499 if (! probe && size > sizeof * shdrs)
5500 warn (_("The e_shentsize field in the ELF header is larger than the size of an ELF section header\n"));
5502 shdrs = (Elf64_External_Shdr *) get_data (NULL, filedata,
5503 filedata->file_header.e_shoff,
5505 probe ? NULL : _("section headers"));
5509 free (filedata->section_headers);
5510 filedata->section_headers = (Elf_Internal_Shdr *)
5511 cmalloc (num, sizeof (Elf_Internal_Shdr));
5512 if (filedata->section_headers == NULL)
5515 error (_("Out of memory reading %u section headers\n"), num);
5520 for (i = 0, internal = filedata->section_headers;
5524 internal->sh_name = BYTE_GET (shdrs[i].sh_name);
5525 internal->sh_type = BYTE_GET (shdrs[i].sh_type);
5526 internal->sh_flags = BYTE_GET (shdrs[i].sh_flags);
5527 internal->sh_addr = BYTE_GET (shdrs[i].sh_addr);
5528 internal->sh_size = BYTE_GET (shdrs[i].sh_size);
5529 internal->sh_entsize = BYTE_GET (shdrs[i].sh_entsize);
5530 internal->sh_link = BYTE_GET (shdrs[i].sh_link);
5531 internal->sh_info = BYTE_GET (shdrs[i].sh_info);
5532 internal->sh_offset = BYTE_GET (shdrs[i].sh_offset);
5533 internal->sh_addralign = BYTE_GET (shdrs[i].sh_addralign);
5534 if (!probe && internal->sh_link > num)
5535 warn (_("Section %u has an out of range sh_link value of %u\n"), i, internal->sh_link);
5536 if (!probe && internal->sh_flags & SHF_INFO_LINK && internal->sh_info > num)
5537 warn (_("Section %u has an out of range sh_info value of %u\n"), i, internal->sh_info);
5544 static Elf_Internal_Sym *
5545 get_32bit_elf_symbols (Filedata * filedata,
5546 Elf_Internal_Shdr * section,
5547 unsigned long * num_syms_return)
5549 unsigned long number = 0;
5550 Elf32_External_Sym * esyms = NULL;
5551 Elf_External_Sym_Shndx * shndx = NULL;
5552 Elf_Internal_Sym * isyms = NULL;
5553 Elf_Internal_Sym * psym;
5555 elf_section_list * entry;
5557 if (section->sh_size == 0)
5559 if (num_syms_return != NULL)
5560 * num_syms_return = 0;
5564 /* Run some sanity checks first. */
5565 if (section->sh_entsize == 0 || section->sh_entsize > section->sh_size)
5567 error (_("Section %s has an invalid sh_entsize of 0x%lx\n"),
5568 printable_section_name (filedata, section),
5569 (unsigned long) section->sh_entsize);
5573 if (section->sh_size > filedata->file_size)
5575 error (_("Section %s has an invalid sh_size of 0x%lx\n"),
5576 printable_section_name (filedata, section),
5577 (unsigned long) section->sh_size);
5581 number = section->sh_size / section->sh_entsize;
5583 if (number * sizeof (Elf32_External_Sym) > section->sh_size + 1)
5585 error (_("Size (0x%lx) of section %s is not a multiple of its sh_entsize (0x%lx)\n"),
5586 (unsigned long) section->sh_size,
5587 printable_section_name (filedata, section),
5588 (unsigned long) section->sh_entsize);
5592 esyms = (Elf32_External_Sym *) get_data (NULL, filedata, section->sh_offset, 1,
5593 section->sh_size, _("symbols"));
5598 for (entry = symtab_shndx_list; entry != NULL; entry = entry->next)
5600 if (entry->hdr->sh_link != (unsigned long) (section - filedata->section_headers))
5605 error (_("Multiple symbol table index sections associated with the same symbol section\n"));
5609 shndx = (Elf_External_Sym_Shndx *) get_data (NULL, filedata,
5610 entry->hdr->sh_offset,
5611 1, entry->hdr->sh_size,
5612 _("symbol table section indices"));
5616 /* PR17531: file: heap-buffer-overflow */
5617 if (entry->hdr->sh_size / sizeof (Elf_External_Sym_Shndx) < number)
5619 error (_("Index section %s has an sh_size of 0x%lx - expected 0x%lx\n"),
5620 printable_section_name (filedata, entry->hdr),
5621 (unsigned long) entry->hdr->sh_size,
5622 (unsigned long) section->sh_size);
5627 isyms = (Elf_Internal_Sym *) cmalloc (number, sizeof (Elf_Internal_Sym));
5631 error (_("Out of memory reading %lu symbols\n"),
5632 (unsigned long) number);
5636 for (j = 0, psym = isyms; j < number; j++, psym++)
5638 psym->st_name = BYTE_GET (esyms[j].st_name);
5639 psym->st_value = BYTE_GET (esyms[j].st_value);
5640 psym->st_size = BYTE_GET (esyms[j].st_size);
5641 psym->st_shndx = BYTE_GET (esyms[j].st_shndx);
5642 if (psym->st_shndx == (SHN_XINDEX & 0xffff) && shndx != NULL)
5644 = byte_get ((unsigned char *) &shndx[j], sizeof (shndx[j]));
5645 else if (psym->st_shndx >= (SHN_LORESERVE & 0xffff))
5646 psym->st_shndx += SHN_LORESERVE - (SHN_LORESERVE & 0xffff);
5647 psym->st_info = BYTE_GET (esyms[j].st_info);
5648 psym->st_other = BYTE_GET (esyms[j].st_other);
5655 if (num_syms_return != NULL)
5656 * num_syms_return = isyms == NULL ? 0 : number;
5661 static Elf_Internal_Sym *
5662 get_64bit_elf_symbols (Filedata * filedata,
5663 Elf_Internal_Shdr * section,
5664 unsigned long * num_syms_return)
5666 unsigned long number = 0;
5667 Elf64_External_Sym * esyms = NULL;
5668 Elf_External_Sym_Shndx * shndx = NULL;
5669 Elf_Internal_Sym * isyms = NULL;
5670 Elf_Internal_Sym * psym;
5672 elf_section_list * entry;
5674 if (section->sh_size == 0)
5676 if (num_syms_return != NULL)
5677 * num_syms_return = 0;
5681 /* Run some sanity checks first. */
5682 if (section->sh_entsize == 0 || section->sh_entsize > section->sh_size)
5684 error (_("Section %s has an invalid sh_entsize of 0x%lx\n"),
5685 printable_section_name (filedata, section),
5686 (unsigned long) section->sh_entsize);
5690 if (section->sh_size > filedata->file_size)
5692 error (_("Section %s has an invalid sh_size of 0x%lx\n"),
5693 printable_section_name (filedata, section),
5694 (unsigned long) section->sh_size);
5698 number = section->sh_size / section->sh_entsize;
5700 if (number * sizeof (Elf64_External_Sym) > section->sh_size + 1)
5702 error (_("Size (0x%lx) of section %s is not a multiple of its sh_entsize (0x%lx)\n"),
5703 (unsigned long) section->sh_size,
5704 printable_section_name (filedata, section),
5705 (unsigned long) section->sh_entsize);
5709 esyms = (Elf64_External_Sym *) get_data (NULL, filedata, section->sh_offset, 1,
5710 section->sh_size, _("symbols"));
5715 for (entry = symtab_shndx_list; entry != NULL; entry = entry->next)
5717 if (entry->hdr->sh_link != (unsigned long) (section - filedata->section_headers))
5722 error (_("Multiple symbol table index sections associated with the same symbol section\n"));
5726 shndx = (Elf_External_Sym_Shndx *) get_data (NULL, filedata,
5727 entry->hdr->sh_offset,
5728 1, entry->hdr->sh_size,
5729 _("symbol table section indices"));
5733 /* PR17531: file: heap-buffer-overflow */
5734 if (entry->hdr->sh_size / sizeof (Elf_External_Sym_Shndx) < number)
5736 error (_("Index section %s has an sh_size of 0x%lx - expected 0x%lx\n"),
5737 printable_section_name (filedata, entry->hdr),
5738 (unsigned long) entry->hdr->sh_size,
5739 (unsigned long) section->sh_size);
5744 isyms = (Elf_Internal_Sym *) cmalloc (number, sizeof (Elf_Internal_Sym));
5748 error (_("Out of memory reading %lu symbols\n"),
5749 (unsigned long) number);
5753 for (j = 0, psym = isyms; j < number; j++, psym++)
5755 psym->st_name = BYTE_GET (esyms[j].st_name);
5756 psym->st_info = BYTE_GET (esyms[j].st_info);
5757 psym->st_other = BYTE_GET (esyms[j].st_other);
5758 psym->st_shndx = BYTE_GET (esyms[j].st_shndx);
5760 if (psym->st_shndx == (SHN_XINDEX & 0xffff) && shndx != NULL)
5762 = byte_get ((unsigned char *) &shndx[j], sizeof (shndx[j]));
5763 else if (psym->st_shndx >= (SHN_LORESERVE & 0xffff))
5764 psym->st_shndx += SHN_LORESERVE - (SHN_LORESERVE & 0xffff);
5766 psym->st_value = BYTE_GET (esyms[j].st_value);
5767 psym->st_size = BYTE_GET (esyms[j].st_size);
5774 if (num_syms_return != NULL)
5775 * num_syms_return = isyms == NULL ? 0 : number;
5781 get_elf_section_flags (Filedata * filedata, bfd_vma sh_flags)
5783 static char buff[1024];
5785 unsigned int field_size = is_32bit_elf ? 8 : 16;
5787 unsigned int size = sizeof (buff) - (field_size + 4 + 1);
5788 bfd_vma os_flags = 0;
5789 bfd_vma proc_flags = 0;
5790 bfd_vma unknown_flags = 0;
5798 /* 0 */ { STRING_COMMA_LEN ("WRITE") },
5799 /* 1 */ { STRING_COMMA_LEN ("ALLOC") },
5800 /* 2 */ { STRING_COMMA_LEN ("EXEC") },
5801 /* 3 */ { STRING_COMMA_LEN ("MERGE") },
5802 /* 4 */ { STRING_COMMA_LEN ("STRINGS") },
5803 /* 5 */ { STRING_COMMA_LEN ("INFO LINK") },
5804 /* 6 */ { STRING_COMMA_LEN ("LINK ORDER") },
5805 /* 7 */ { STRING_COMMA_LEN ("OS NONCONF") },
5806 /* 8 */ { STRING_COMMA_LEN ("GROUP") },
5807 /* 9 */ { STRING_COMMA_LEN ("TLS") },
5808 /* IA-64 specific. */
5809 /* 10 */ { STRING_COMMA_LEN ("SHORT") },
5810 /* 11 */ { STRING_COMMA_LEN ("NORECOV") },
5811 /* IA-64 OpenVMS specific. */
5812 /* 12 */ { STRING_COMMA_LEN ("VMS_GLOBAL") },
5813 /* 13 */ { STRING_COMMA_LEN ("VMS_OVERLAID") },
5814 /* 14 */ { STRING_COMMA_LEN ("VMS_SHARED") },
5815 /* 15 */ { STRING_COMMA_LEN ("VMS_VECTOR") },
5816 /* 16 */ { STRING_COMMA_LEN ("VMS_ALLOC_64BIT") },
5817 /* 17 */ { STRING_COMMA_LEN ("VMS_PROTECTED") },
5819 /* 18 */ { STRING_COMMA_LEN ("EXCLUDE") },
5820 /* SPARC specific. */
5821 /* 19 */ { STRING_COMMA_LEN ("ORDERED") },
5822 /* 20 */ { STRING_COMMA_LEN ("COMPRESSED") },
5824 /* 21 */ { STRING_COMMA_LEN ("ENTRYSECT") },
5825 /* 22 */ { STRING_COMMA_LEN ("ARM_PURECODE") },
5826 /* 23 */ { STRING_COMMA_LEN ("COMDEF") },
5828 /* 24 */ { STRING_COMMA_LEN ("GNU_MBIND") },
5830 /* 25 */ { STRING_COMMA_LEN ("VLE") },
5833 if (do_section_details)
5835 sprintf (buff, "[%*.*lx]: ",
5836 field_size, field_size, (unsigned long) sh_flags);
5837 p += field_size + 4;
5844 flag = sh_flags & - sh_flags;
5847 if (do_section_details)
5851 case SHF_WRITE: sindex = 0; break;
5852 case SHF_ALLOC: sindex = 1; break;
5853 case SHF_EXECINSTR: sindex = 2; break;
5854 case SHF_MERGE: sindex = 3; break;
5855 case SHF_STRINGS: sindex = 4; break;
5856 case SHF_INFO_LINK: sindex = 5; break;
5857 case SHF_LINK_ORDER: sindex = 6; break;
5858 case SHF_OS_NONCONFORMING: sindex = 7; break;
5859 case SHF_GROUP: sindex = 8; break;
5860 case SHF_TLS: sindex = 9; break;
5861 case SHF_EXCLUDE: sindex = 18; break;
5862 case SHF_COMPRESSED: sindex = 20; break;
5863 case SHF_GNU_MBIND: sindex = 24; break;
5867 switch (filedata->file_header.e_machine)
5870 if (flag == SHF_IA_64_SHORT)
5872 else if (flag == SHF_IA_64_NORECOV)
5875 else if (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_OPENVMS)
5878 case SHF_IA_64_VMS_GLOBAL: sindex = 12; break;
5879 case SHF_IA_64_VMS_OVERLAID: sindex = 13; break;
5880 case SHF_IA_64_VMS_SHARED: sindex = 14; break;
5881 case SHF_IA_64_VMS_VECTOR: sindex = 15; break;
5882 case SHF_IA_64_VMS_ALLOC_64BIT: sindex = 16; break;
5883 case SHF_IA_64_VMS_PROTECTED: sindex = 17; break;
5894 case EM_OLD_SPARCV9:
5895 case EM_SPARC32PLUS:
5898 if (flag == SHF_ORDERED)
5905 case SHF_ENTRYSECT: sindex = 21; break;
5906 case SHF_ARM_PURECODE: sindex = 22; break;
5907 case SHF_COMDEF: sindex = 23; break;
5912 if (flag == SHF_PPC_VLE)
5923 if (p != buff + field_size + 4)
5925 if (size < (10 + 2))
5927 warn (_("Internal error: not enough buffer room for section flag info"));
5928 return _("<unknown>");
5935 size -= flags [sindex].len;
5936 p = stpcpy (p, flags [sindex].str);
5938 else if (flag & SHF_MASKOS)
5940 else if (flag & SHF_MASKPROC)
5943 unknown_flags |= flag;
5949 case SHF_WRITE: *p = 'W'; break;
5950 case SHF_ALLOC: *p = 'A'; break;
5951 case SHF_EXECINSTR: *p = 'X'; break;
5952 case SHF_MERGE: *p = 'M'; break;
5953 case SHF_STRINGS: *p = 'S'; break;
5954 case SHF_INFO_LINK: *p = 'I'; break;
5955 case SHF_LINK_ORDER: *p = 'L'; break;
5956 case SHF_OS_NONCONFORMING: *p = 'O'; break;
5957 case SHF_GROUP: *p = 'G'; break;
5958 case SHF_TLS: *p = 'T'; break;
5959 case SHF_EXCLUDE: *p = 'E'; break;
5960 case SHF_COMPRESSED: *p = 'C'; break;
5961 case SHF_GNU_MBIND: *p = 'D'; break;
5964 if ((filedata->file_header.e_machine == EM_X86_64
5965 || filedata->file_header.e_machine == EM_L1OM
5966 || filedata->file_header.e_machine == EM_K1OM)
5967 && flag == SHF_X86_64_LARGE)
5969 else if (filedata->file_header.e_machine == EM_ARM
5970 && flag == SHF_ARM_PURECODE)
5972 else if (filedata->file_header.e_machine == EM_PPC
5973 && flag == SHF_PPC_VLE)
5975 else if (flag & SHF_MASKOS)
5978 sh_flags &= ~ SHF_MASKOS;
5980 else if (flag & SHF_MASKPROC)
5983 sh_flags &= ~ SHF_MASKPROC;
5993 if (do_section_details)
5997 size -= 5 + field_size;
5998 if (p != buff + field_size + 4)
6002 warn (_("Internal error: not enough buffer room for section flag info"));
6003 return _("<unknown>");
6009 sprintf (p, "OS (%*.*lx)", field_size, field_size,
6010 (unsigned long) os_flags);
6011 p += 5 + field_size;
6015 size -= 7 + field_size;
6016 if (p != buff + field_size + 4)
6020 warn (_("Internal error: not enough buffer room for section flag info"));
6021 return _("<unknown>");
6027 sprintf (p, "PROC (%*.*lx)", field_size, field_size,
6028 (unsigned long) proc_flags);
6029 p += 7 + field_size;
6033 size -= 10 + field_size;
6034 if (p != buff + field_size + 4)
6038 warn (_("Internal error: not enough buffer room for section flag info"));
6039 return _("<unknown>");
6045 sprintf (p, _("UNKNOWN (%*.*lx)"), field_size, field_size,
6046 (unsigned long) unknown_flags);
6047 p += 10 + field_size;
6056 get_compression_header (Elf_Internal_Chdr *chdr, unsigned char *buf, bfd_size_type size)
6060 Elf32_External_Chdr *echdr = (Elf32_External_Chdr *) buf;
6062 if (size < sizeof (* echdr))
6064 error (_("Compressed section is too small even for a compression header\n"));
6068 chdr->ch_type = BYTE_GET (echdr->ch_type);
6069 chdr->ch_size = BYTE_GET (echdr->ch_size);
6070 chdr->ch_addralign = BYTE_GET (echdr->ch_addralign);
6071 return sizeof (*echdr);
6075 Elf64_External_Chdr *echdr = (Elf64_External_Chdr *) buf;
6077 if (size < sizeof (* echdr))
6079 error (_("Compressed section is too small even for a compression header\n"));
6083 chdr->ch_type = BYTE_GET (echdr->ch_type);
6084 chdr->ch_size = BYTE_GET (echdr->ch_size);
6085 chdr->ch_addralign = BYTE_GET (echdr->ch_addralign);
6086 return sizeof (*echdr);
6091 process_section_headers (Filedata * filedata)
6093 Elf_Internal_Shdr * section;
6096 filedata->section_headers = NULL;
6098 if (filedata->file_header.e_shnum == 0)
6100 /* PR binutils/12467. */
6101 if (filedata->file_header.e_shoff != 0)
6103 warn (_("possibly corrupt ELF file header - it has a non-zero"
6104 " section header offset, but no section headers\n"));
6107 else if (do_sections)
6108 printf (_("\nThere are no sections in this file.\n"));
6113 if (do_sections && !do_header)
6114 printf (ngettext ("There is %d section header, "
6115 "starting at offset 0x%lx:\n",
6116 "There are %d section headers, "
6117 "starting at offset 0x%lx:\n",
6118 filedata->file_header.e_shnum),
6119 filedata->file_header.e_shnum,
6120 (unsigned long) filedata->file_header.e_shoff);
6124 if (! get_32bit_section_headers (filedata, FALSE))
6129 if (! get_64bit_section_headers (filedata, FALSE))
6133 /* Read in the string table, so that we have names to display. */
6134 if (filedata->file_header.e_shstrndx != SHN_UNDEF
6135 && filedata->file_header.e_shstrndx < filedata->file_header.e_shnum)
6137 section = filedata->section_headers + filedata->file_header.e_shstrndx;
6139 if (section->sh_size != 0)
6141 filedata->string_table = (char *) get_data (NULL, filedata, section->sh_offset,
6142 1, section->sh_size,
6145 filedata->string_table_length = filedata->string_table != NULL ? section->sh_size : 0;
6149 /* Scan the sections for the dynamic symbol table
6150 and dynamic string table and debug sections. */
6151 dynamic_symbols = NULL;
6152 dynamic_strings = NULL;
6153 dynamic_syminfo = NULL;
6154 symtab_shndx_list = NULL;
6156 eh_addr_size = is_32bit_elf ? 4 : 8;
6157 switch (filedata->file_header.e_machine)
6160 case EM_MIPS_RS3_LE:
6161 /* The 64-bit MIPS EABI uses a combination of 32-bit ELF and 64-bit
6162 FDE addresses. However, the ABI also has a semi-official ILP32
6163 variant for which the normal FDE address size rules apply.
6165 GCC 4.0 marks EABI64 objects with a dummy .gcc_compiled_longXX
6166 section, where XX is the size of longs in bits. Unfortunately,
6167 earlier compilers provided no way of distinguishing ILP32 objects
6168 from LP64 objects, so if there's any doubt, we should assume that
6169 the official LP64 form is being used. */
6170 if ((filedata->file_header.e_flags & EF_MIPS_ABI) == E_MIPS_ABI_EABI64
6171 && find_section (filedata, ".gcc_compiled_long32") == NULL)
6177 switch (filedata->file_header.e_flags & EF_H8_MACH)
6179 case E_H8_MACH_H8300:
6180 case E_H8_MACH_H8300HN:
6181 case E_H8_MACH_H8300SN:
6182 case E_H8_MACH_H8300SXN:
6185 case E_H8_MACH_H8300H:
6186 case E_H8_MACH_H8300S:
6187 case E_H8_MACH_H8300SX:
6195 switch (filedata->file_header.e_flags & EF_M32C_CPU_MASK)
6197 case EF_M32C_CPU_M16C:
6204 #define CHECK_ENTSIZE_VALUES(section, i, size32, size64) \
6207 bfd_size_type expected_entsize = is_32bit_elf ? size32 : size64; \
6208 if (section->sh_entsize != expected_entsize) \
6211 sprintf_vma (buf, section->sh_entsize); \
6212 /* Note: coded this way so that there is a single string for \
6214 error (_("Section %d has invalid sh_entsize of %s\n"), i, buf); \
6215 error (_("(Using the expected size of %u for the rest of this dump)\n"), \
6216 (unsigned) expected_entsize); \
6217 section->sh_entsize = expected_entsize; \
6222 #define CHECK_ENTSIZE(section, i, type) \
6223 CHECK_ENTSIZE_VALUES (section, i, sizeof (Elf32_External_##type), \
6224 sizeof (Elf64_External_##type))
6226 for (i = 0, section = filedata->section_headers;
6227 i < filedata->file_header.e_shnum;
6230 char * name = SECTION_NAME (section);
6232 if (section->sh_type == SHT_DYNSYM)
6234 if (dynamic_symbols != NULL)
6236 error (_("File contains multiple dynamic symbol tables\n"));
6240 CHECK_ENTSIZE (section, i, Sym);
6241 dynamic_symbols = GET_ELF_SYMBOLS (filedata, section, & num_dynamic_syms);
6243 else if (section->sh_type == SHT_STRTAB
6244 && streq (name, ".dynstr"))
6246 if (dynamic_strings != NULL)
6248 error (_("File contains multiple dynamic string tables\n"));
6252 dynamic_strings = (char *) get_data (NULL, filedata, section->sh_offset,
6253 1, section->sh_size,
6254 _("dynamic strings"));
6255 dynamic_strings_length = dynamic_strings == NULL ? 0 : section->sh_size;
6257 else if (section->sh_type == SHT_SYMTAB_SHNDX)
6259 elf_section_list * entry = xmalloc (sizeof * entry);
6261 entry->hdr = section;
6262 entry->next = symtab_shndx_list;
6263 symtab_shndx_list = entry;
6265 else if (section->sh_type == SHT_SYMTAB)
6266 CHECK_ENTSIZE (section, i, Sym);
6267 else if (section->sh_type == SHT_GROUP)
6268 CHECK_ENTSIZE_VALUES (section, i, GRP_ENTRY_SIZE, GRP_ENTRY_SIZE);
6269 else if (section->sh_type == SHT_REL)
6270 CHECK_ENTSIZE (section, i, Rel);
6271 else if (section->sh_type == SHT_RELA)
6272 CHECK_ENTSIZE (section, i, Rela);
6273 else if ((do_debugging || do_debug_info || do_debug_abbrevs
6274 || do_debug_lines || do_debug_pubnames || do_debug_pubtypes
6275 || do_debug_aranges || do_debug_frames || do_debug_macinfo
6276 || do_debug_str || do_debug_loc || do_debug_ranges
6277 || do_debug_addr || do_debug_cu_index || do_debug_links)
6278 && (const_strneq (name, ".debug_")
6279 || const_strneq (name, ".zdebug_")))
6282 name += sizeof (".zdebug_") - 1;
6284 name += sizeof (".debug_") - 1;
6287 || (do_debug_info && const_strneq (name, "info"))
6288 || (do_debug_info && const_strneq (name, "types"))
6289 || (do_debug_abbrevs && const_strneq (name, "abbrev"))
6290 || (do_debug_lines && strcmp (name, "line") == 0)
6291 || (do_debug_lines && const_strneq (name, "line."))
6292 || (do_debug_pubnames && const_strneq (name, "pubnames"))
6293 || (do_debug_pubtypes && const_strneq (name, "pubtypes"))
6294 || (do_debug_pubnames && const_strneq (name, "gnu_pubnames"))
6295 || (do_debug_pubtypes && const_strneq (name, "gnu_pubtypes"))
6296 || (do_debug_aranges && const_strneq (name, "aranges"))
6297 || (do_debug_ranges && const_strneq (name, "ranges"))
6298 || (do_debug_ranges && const_strneq (name, "rnglists"))
6299 || (do_debug_frames && const_strneq (name, "frame"))
6300 || (do_debug_macinfo && const_strneq (name, "macinfo"))
6301 || (do_debug_macinfo && const_strneq (name, "macro"))
6302 || (do_debug_str && const_strneq (name, "str"))
6303 || (do_debug_loc && const_strneq (name, "loc"))
6304 || (do_debug_loc && const_strneq (name, "loclists"))
6305 || (do_debug_addr && const_strneq (name, "addr"))
6306 || (do_debug_cu_index && const_strneq (name, "cu_index"))
6307 || (do_debug_cu_index && const_strneq (name, "tu_index"))
6309 request_dump_bynumber (filedata, i, DEBUG_DUMP);
6311 /* Linkonce section to be combined with .debug_info at link time. */
6312 else if ((do_debugging || do_debug_info)
6313 && const_strneq (name, ".gnu.linkonce.wi."))
6314 request_dump_bynumber (filedata, i, DEBUG_DUMP);
6315 else if (do_debug_frames && streq (name, ".eh_frame"))
6316 request_dump_bynumber (filedata, i, DEBUG_DUMP);
6317 else if (do_gdb_index && (streq (name, ".gdb_index")
6318 || streq (name, ".debug_names")))
6319 request_dump_bynumber (filedata, i, DEBUG_DUMP);
6320 /* Trace sections for Itanium VMS. */
6321 else if ((do_debugging || do_trace_info || do_trace_abbrevs
6322 || do_trace_aranges)
6323 && const_strneq (name, ".trace_"))
6325 name += sizeof (".trace_") - 1;
6328 || (do_trace_info && streq (name, "info"))
6329 || (do_trace_abbrevs && streq (name, "abbrev"))
6330 || (do_trace_aranges && streq (name, "aranges"))
6332 request_dump_bynumber (filedata, i, DEBUG_DUMP);
6334 else if ((do_debugging || do_debug_links)
6335 && (const_strneq (name, ".gnu_debuglink")
6336 || const_strneq (name, ".gnu_debugaltlink")))
6337 request_dump_bynumber (filedata, i, DEBUG_DUMP);
6343 if (filedata->file_header.e_shnum > 1)
6344 printf (_("\nSection Headers:\n"));
6346 printf (_("\nSection Header:\n"));
6350 if (do_section_details)
6352 printf (_(" [Nr] Name\n"));
6353 printf (_(" Type Addr Off Size ES Lk Inf Al\n"));
6357 (_(" [Nr] Name Type Addr Off Size ES Flg Lk Inf Al\n"));
6361 if (do_section_details)
6363 printf (_(" [Nr] Name\n"));
6364 printf (_(" Type Address Off Size ES Lk Inf Al\n"));
6368 (_(" [Nr] Name Type Address Off Size ES Flg Lk Inf Al\n"));
6372 if (do_section_details)
6374 printf (_(" [Nr] Name\n"));
6375 printf (_(" Type Address Offset Link\n"));
6376 printf (_(" Size EntSize Info Align\n"));
6380 printf (_(" [Nr] Name Type Address Offset\n"));
6381 printf (_(" Size EntSize Flags Link Info Align\n"));
6385 if (do_section_details)
6386 printf (_(" Flags\n"));
6388 for (i = 0, section = filedata->section_headers;
6389 i < filedata->file_header.e_shnum;
6392 /* Run some sanity checks on the section header. */
6394 /* Check the sh_link field. */
6395 switch (section->sh_type)
6399 if (section->sh_link == 0
6400 && (filedata->file_header.e_type == ET_EXEC
6401 || filedata->file_header.e_type == ET_DYN))
6402 /* A dynamic relocation section where all entries use a
6403 zero symbol index need not specify a symtab section. */
6406 case SHT_SYMTAB_SHNDX:
6410 case SHT_GNU_versym:
6411 if (section->sh_link == 0
6412 || section->sh_link >= filedata->file_header.e_shnum
6413 || (filedata->section_headers[section->sh_link].sh_type != SHT_SYMTAB
6414 && filedata->section_headers[section->sh_link].sh_type != SHT_DYNSYM))
6415 warn (_("[%2u]: Link field (%u) should index a symtab section.\n"),
6416 i, section->sh_link);
6422 case SHT_GNU_verneed:
6423 case SHT_GNU_verdef:
6424 case SHT_GNU_LIBLIST:
6425 if (section->sh_link == 0
6426 || section->sh_link >= filedata->file_header.e_shnum
6427 || filedata->section_headers[section->sh_link].sh_type != SHT_STRTAB)
6428 warn (_("[%2u]: Link field (%u) should index a string section.\n"),
6429 i, section->sh_link);
6432 case SHT_INIT_ARRAY:
6433 case SHT_FINI_ARRAY:
6434 case SHT_PREINIT_ARRAY:
6435 if (section->sh_type < SHT_LOOS && section->sh_link != 0)
6436 warn (_("[%2u]: Unexpected value (%u) in link field.\n"),
6437 i, section->sh_link);
6441 /* FIXME: Add support for target specific section types. */
6442 #if 0 /* Currently we do not check other section types as there are too
6443 many special cases. Stab sections for example have a type
6444 of SHT_PROGBITS but an sh_link field that links to the .stabstr
6446 if (section->sh_type < SHT_LOOS && section->sh_link != 0)
6447 warn (_("[%2u]: Unexpected value (%u) in link field.\n"),
6448 i, section->sh_link);
6453 /* Check the sh_info field. */
6454 switch (section->sh_type)
6458 if (section->sh_info == 0
6459 && (filedata->file_header.e_type == ET_EXEC
6460 || filedata->file_header.e_type == ET_DYN))
6461 /* Dynamic relocations apply to segments, so they do not
6462 need to specify the section they relocate. */
6464 if (section->sh_info == 0
6465 || section->sh_info >= filedata->file_header.e_shnum
6466 || (filedata->section_headers[section->sh_info].sh_type != SHT_PROGBITS
6467 && filedata->section_headers[section->sh_info].sh_type != SHT_NOBITS
6468 && filedata->section_headers[section->sh_info].sh_type != SHT_NOTE
6469 && filedata->section_headers[section->sh_info].sh_type != SHT_INIT_ARRAY
6470 && filedata->section_headers[section->sh_info].sh_type != SHT_FINI_ARRAY
6471 && filedata->section_headers[section->sh_info].sh_type != SHT_PREINIT_ARRAY
6472 /* FIXME: Are other section types valid ? */
6473 && filedata->section_headers[section->sh_info].sh_type < SHT_LOOS))
6474 warn (_("[%2u]: Info field (%u) should index a relocatable section.\n"),
6475 i, section->sh_info);
6480 case SHT_SYMTAB_SHNDX:
6481 case SHT_INIT_ARRAY:
6482 case SHT_FINI_ARRAY:
6483 case SHT_PREINIT_ARRAY:
6484 if (section->sh_info != 0)
6485 warn (_("[%2u]: Unexpected value (%u) in info field.\n"),
6486 i, section->sh_info);
6492 /* A symbol index - we assume that it is valid. */
6496 /* FIXME: Add support for target specific section types. */
6497 if (section->sh_type == SHT_NOBITS)
6498 /* NOBITS section headers with non-zero sh_info fields can be
6499 created when a binary is stripped of everything but its debug
6500 information. The stripped sections have their headers
6501 preserved but their types set to SHT_NOBITS. So do not check
6502 this type of section. */
6504 else if (section->sh_flags & SHF_INFO_LINK)
6506 if (section->sh_info < 1 || section->sh_info >= filedata->file_header.e_shnum)
6507 warn (_("[%2u]: Expected link to another section in info field"), i);
6509 else if (section->sh_type < SHT_LOOS
6510 && (section->sh_flags & SHF_GNU_MBIND) == 0
6511 && section->sh_info != 0)
6512 warn (_("[%2u]: Unexpected value (%u) in info field.\n"),
6513 i, section->sh_info);
6517 /* Check the sh_size field. */
6518 if (section->sh_size > filedata->file_size
6519 && section->sh_type != SHT_NOBITS
6520 && section->sh_type != SHT_NULL
6521 && section->sh_type < SHT_LOOS)
6522 warn (_("Size of section %u is larger than the entire file!\n"), i);
6524 printf (" [%2u] ", i);
6525 if (do_section_details)
6526 printf ("%s\n ", printable_section_name (filedata, section));
6528 print_symbol (-17, SECTION_NAME (section));
6530 printf (do_wide ? " %-15s " : " %-15.15s ",
6531 get_section_type_name (filedata, section->sh_type));
6535 const char * link_too_big = NULL;
6537 print_vma (section->sh_addr, LONG_HEX);
6539 printf ( " %6.6lx %6.6lx %2.2lx",
6540 (unsigned long) section->sh_offset,
6541 (unsigned long) section->sh_size,
6542 (unsigned long) section->sh_entsize);
6544 if (do_section_details)
6545 fputs (" ", stdout);
6547 printf (" %3s ", get_elf_section_flags (filedata, section->sh_flags));
6549 if (section->sh_link >= filedata->file_header.e_shnum)
6552 /* The sh_link value is out of range. Normally this indicates
6553 an error but it can have special values in Solaris binaries. */
6554 switch (filedata->file_header.e_machine)
6561 case EM_OLD_SPARCV9:
6562 case EM_SPARC32PLUS:
6565 if (section->sh_link == (SHN_BEFORE & 0xffff))
6566 link_too_big = "BEFORE";
6567 else if (section->sh_link == (SHN_AFTER & 0xffff))
6568 link_too_big = "AFTER";
6575 if (do_section_details)
6577 if (link_too_big != NULL && * link_too_big)
6578 printf ("<%s> ", link_too_big);
6580 printf ("%2u ", section->sh_link);
6581 printf ("%3u %2lu\n", section->sh_info,
6582 (unsigned long) section->sh_addralign);
6585 printf ("%2u %3u %2lu\n",
6588 (unsigned long) section->sh_addralign);
6590 if (link_too_big && ! * link_too_big)
6591 warn (_("section %u: sh_link value of %u is larger than the number of sections\n"),
6592 i, section->sh_link);
6596 print_vma (section->sh_addr, LONG_HEX);
6598 if ((long) section->sh_offset == section->sh_offset)
6599 printf (" %6.6lx", (unsigned long) section->sh_offset);
6603 print_vma (section->sh_offset, LONG_HEX);
6606 if ((unsigned long) section->sh_size == section->sh_size)
6607 printf (" %6.6lx", (unsigned long) section->sh_size);
6611 print_vma (section->sh_size, LONG_HEX);
6614 if ((unsigned long) section->sh_entsize == section->sh_entsize)
6615 printf (" %2.2lx", (unsigned long) section->sh_entsize);
6619 print_vma (section->sh_entsize, LONG_HEX);
6622 if (do_section_details)
6623 fputs (" ", stdout);
6625 printf (" %3s ", get_elf_section_flags (filedata, section->sh_flags));
6627 printf ("%2u %3u ", section->sh_link, section->sh_info);
6629 if ((unsigned long) section->sh_addralign == section->sh_addralign)
6630 printf ("%2lu\n", (unsigned long) section->sh_addralign);
6633 print_vma (section->sh_addralign, DEC);
6637 else if (do_section_details)
6640 print_vma (section->sh_addr, LONG_HEX);
6641 if ((long) section->sh_offset == section->sh_offset)
6642 printf (" %16.16lx", (unsigned long) section->sh_offset);
6646 print_vma (section->sh_offset, LONG_HEX);
6648 printf (" %u\n ", section->sh_link);
6649 print_vma (section->sh_size, LONG_HEX);
6651 print_vma (section->sh_entsize, LONG_HEX);
6653 printf (" %-16u %lu\n",
6655 (unsigned long) section->sh_addralign);
6660 print_vma (section->sh_addr, LONG_HEX);
6661 if ((long) section->sh_offset == section->sh_offset)
6662 printf (" %8.8lx", (unsigned long) section->sh_offset);
6666 print_vma (section->sh_offset, LONG_HEX);
6669 print_vma (section->sh_size, LONG_HEX);
6671 print_vma (section->sh_entsize, LONG_HEX);
6673 printf (" %3s ", get_elf_section_flags (filedata, section->sh_flags));
6675 printf (" %2u %3u %lu\n",
6678 (unsigned long) section->sh_addralign);
6681 if (do_section_details)
6683 printf (" %s\n", get_elf_section_flags (filedata, section->sh_flags));
6684 if ((section->sh_flags & SHF_COMPRESSED) != 0)
6686 /* Minimum section size is 12 bytes for 32-bit compression
6687 header + 12 bytes for compressed data header. */
6688 unsigned char buf[24];
6690 assert (sizeof (buf) >= sizeof (Elf64_External_Chdr));
6691 if (get_data (&buf, filedata, section->sh_offset, 1,
6692 sizeof (buf), _("compression header")))
6694 Elf_Internal_Chdr chdr;
6696 (void) get_compression_header (&chdr, buf, sizeof (buf));
6698 if (chdr.ch_type == ELFCOMPRESS_ZLIB)
6701 printf (_(" [<unknown>: 0x%x], "),
6703 print_vma (chdr.ch_size, LONG_HEX);
6704 printf (", %lu\n", (unsigned long) chdr.ch_addralign);
6710 if (!do_section_details)
6712 /* The ordering of the letters shown here matches the ordering of the
6713 corresponding SHF_xxx values, and hence the order in which these
6714 letters will be displayed to the user. */
6715 printf (_("Key to Flags:\n\
6716 W (write), A (alloc), X (execute), M (merge), S (strings), I (info),\n\
6717 L (link order), O (extra OS processing required), G (group), T (TLS),\n\
6718 C (compressed), x (unknown), o (OS specific), E (exclude),\n "));
6719 if (filedata->file_header.e_machine == EM_X86_64
6720 || filedata->file_header.e_machine == EM_L1OM
6721 || filedata->file_header.e_machine == EM_K1OM)
6722 printf (_("l (large), "));
6723 else if (filedata->file_header.e_machine == EM_ARM)
6724 printf (_("y (purecode), "));
6725 else if (filedata->file_header.e_machine == EM_PPC)
6726 printf (_("v (VLE), "));
6727 printf ("p (processor specific)\n");
6734 get_group_flags (unsigned int flags)
6736 static char buff[128];
6740 else if (flags == GRP_COMDAT)
6743 snprintf (buff, 14, _("[0x%x: "), flags);
6745 flags &= ~ GRP_COMDAT;
6746 if (flags & GRP_MASKOS)
6748 strcat (buff, "<OS specific>");
6749 flags &= ~ GRP_MASKOS;
6752 if (flags & GRP_MASKPROC)
6754 strcat (buff, "<PROC specific>");
6755 flags &= ~ GRP_MASKPROC;
6759 strcat (buff, "<unknown>");
6766 process_section_groups (Filedata * filedata)
6768 Elf_Internal_Shdr * section;
6770 struct group * group;
6771 Elf_Internal_Shdr * symtab_sec;
6772 Elf_Internal_Shdr * strtab_sec;
6773 Elf_Internal_Sym * symtab;
6774 unsigned long num_syms;
6778 /* Don't process section groups unless needed. */
6779 if (!do_unwind && !do_section_groups)
6782 if (filedata->file_header.e_shnum == 0)
6784 if (do_section_groups)
6785 printf (_("\nThere are no sections to group in this file.\n"));
6790 if (filedata->section_headers == NULL)
6792 error (_("Section headers are not available!\n"));
6793 /* PR 13622: This can happen with a corrupt ELF header. */
6797 section_headers_groups = (struct group **) calloc (filedata->file_header.e_shnum,
6798 sizeof (struct group *));
6800 if (section_headers_groups == NULL)
6802 error (_("Out of memory reading %u section group headers\n"),
6803 filedata->file_header.e_shnum);
6807 /* Scan the sections for the group section. */
6809 for (i = 0, section = filedata->section_headers;
6810 i < filedata->file_header.e_shnum;
6812 if (section->sh_type == SHT_GROUP)
6815 if (group_count == 0)
6817 if (do_section_groups)
6818 printf (_("\nThere are no section groups in this file.\n"));
6823 section_groups = (struct group *) calloc (group_count, sizeof (struct group));
6825 if (section_groups == NULL)
6827 error (_("Out of memory reading %lu groups\n"),
6828 (unsigned long) group_count);
6838 for (i = 0, section = filedata->section_headers, group = section_groups;
6839 i < filedata->file_header.e_shnum;
6842 if (section->sh_type == SHT_GROUP)
6844 const char * name = printable_section_name (filedata, section);
6845 const char * group_name;
6846 unsigned char * start;
6847 unsigned char * indices;
6848 unsigned int entry, j, size;
6849 Elf_Internal_Shdr * sec;
6850 Elf_Internal_Sym * sym;
6852 /* Get the symbol table. */
6853 if (section->sh_link >= filedata->file_header.e_shnum
6854 || ((sec = filedata->section_headers + section->sh_link)->sh_type
6857 error (_("Bad sh_link in group section `%s'\n"), name);
6861 if (symtab_sec != sec)
6866 symtab = GET_ELF_SYMBOLS (filedata, symtab_sec, & num_syms);
6871 error (_("Corrupt header in group section `%s'\n"), name);
6875 if (section->sh_info >= num_syms)
6877 error (_("Bad sh_info in group section `%s'\n"), name);
6881 sym = symtab + section->sh_info;
6883 if (ELF_ST_TYPE (sym->st_info) == STT_SECTION)
6885 if (sym->st_shndx == 0
6886 || sym->st_shndx >= filedata->file_header.e_shnum)
6888 error (_("Bad sh_info in group section `%s'\n"), name);
6892 group_name = SECTION_NAME (filedata->section_headers + sym->st_shndx);
6901 /* Get the string table. */
6902 if (symtab_sec->sh_link >= filedata->file_header.e_shnum)
6911 != (sec = filedata->section_headers + symtab_sec->sh_link))
6917 strtab = (char *) get_data (NULL, filedata, strtab_sec->sh_offset,
6918 1, strtab_sec->sh_size,
6920 strtab_size = strtab != NULL ? strtab_sec->sh_size : 0;
6922 group_name = sym->st_name < strtab_size
6923 ? strtab + sym->st_name : _("<corrupt>");
6926 /* PR 17531: file: loop. */
6927 if (section->sh_entsize > section->sh_size)
6929 error (_("Section %s has sh_entsize (0x%lx) which is larger than its size (0x%lx)\n"),
6930 printable_section_name (filedata, section),
6931 (unsigned long) section->sh_entsize,
6932 (unsigned long) section->sh_size);
6936 start = (unsigned char *) get_data (NULL, filedata, section->sh_offset,
6937 1, section->sh_size,
6943 size = (section->sh_size / section->sh_entsize) - 1;
6944 entry = byte_get (indices, 4);
6947 if (do_section_groups)
6949 printf (_("\n%sgroup section [%5u] `%s' [%s] contains %u sections:\n"),
6950 get_group_flags (entry), i, name, group_name, size);
6952 printf (_(" [Index] Name\n"));
6955 group->group_index = i;
6957 for (j = 0; j < size; j++)
6959 struct group_list * g;
6961 entry = byte_get (indices, 4);
6964 if (entry >= filedata->file_header.e_shnum)
6966 static unsigned num_group_errors = 0;
6968 if (num_group_errors ++ < 10)
6970 error (_("section [%5u] in group section [%5u] > maximum section [%5u]\n"),
6971 entry, i, filedata->file_header.e_shnum - 1);
6972 if (num_group_errors == 10)
6973 warn (_("Further error messages about overlarge group section indices suppressed\n"));
6978 if (section_headers_groups [entry] != NULL)
6982 static unsigned num_errs = 0;
6984 if (num_errs ++ < 10)
6986 error (_("section [%5u] in group section [%5u] already in group section [%5u]\n"),
6988 section_headers_groups [entry]->group_index);
6990 warn (_("Further error messages about already contained group sections suppressed\n"));
6996 /* Intel C/C++ compiler may put section 0 in a
6997 section group. We just warn it the first time
6998 and ignore it afterwards. */
6999 static bfd_boolean warned = FALSE;
7002 error (_("section 0 in group section [%5u]\n"),
7003 section_headers_groups [entry]->group_index);
7009 section_headers_groups [entry] = group;
7011 if (do_section_groups)
7013 sec = filedata->section_headers + entry;
7014 printf (" [%5u] %s\n", entry, printable_section_name (filedata, sec));
7017 g = (struct group_list *) xmalloc (sizeof (struct group_list));
7018 g->section_index = entry;
7019 g->next = group->root;
7037 /* Data used to display dynamic fixups. */
7039 struct ia64_vms_dynfixup
7041 bfd_vma needed_ident; /* Library ident number. */
7042 bfd_vma needed; /* Index in the dstrtab of the library name. */
7043 bfd_vma fixup_needed; /* Index of the library. */
7044 bfd_vma fixup_rela_cnt; /* Number of fixups. */
7045 bfd_vma fixup_rela_off; /* Fixups offset in the dynamic segment. */
7048 /* Data used to display dynamic relocations. */
7050 struct ia64_vms_dynimgrela
7052 bfd_vma img_rela_cnt; /* Number of relocations. */
7053 bfd_vma img_rela_off; /* Reloc offset in the dynamic segment. */
7056 /* Display IA-64 OpenVMS dynamic fixups (used to dynamically link a shared
7060 dump_ia64_vms_dynamic_fixups (Filedata * filedata,
7061 struct ia64_vms_dynfixup * fixup,
7062 const char * strtab,
7063 unsigned int strtab_sz)
7065 Elf64_External_VMS_IMAGE_FIXUP * imfs;
7067 const char * lib_name;
7069 imfs = get_data (NULL, filedata, dynamic_addr + fixup->fixup_rela_off,
7070 1, fixup->fixup_rela_cnt * sizeof (*imfs),
7071 _("dynamic section image fixups"));
7075 if (fixup->needed < strtab_sz)
7076 lib_name = strtab + fixup->needed;
7079 warn (_("corrupt library name index of 0x%lx found in dynamic entry"),
7080 (unsigned long) fixup->needed);
7083 printf (_("\nImage fixups for needed library #%d: %s - ident: %lx\n"),
7084 (int) fixup->fixup_needed, lib_name, (long) fixup->needed_ident);
7086 (_("Seg Offset Type SymVec DataType\n"));
7088 for (i = 0; i < (long) fixup->fixup_rela_cnt; i++)
7093 printf ("%3u ", (unsigned) BYTE_GET (imfs [i].fixup_seg));
7094 printf_vma ((bfd_vma) BYTE_GET (imfs [i].fixup_offset));
7095 type = BYTE_GET (imfs [i].type);
7096 rtype = elf_ia64_reloc_type (type);
7098 printf (" 0x%08x ", type);
7100 printf (" %-32s ", rtype);
7101 printf ("%6u ", (unsigned) BYTE_GET (imfs [i].symvec_index));
7102 printf ("0x%08x\n", (unsigned) BYTE_GET (imfs [i].data_type));
7109 /* Display IA-64 OpenVMS dynamic relocations (used to relocate an image). */
7112 dump_ia64_vms_dynamic_relocs (Filedata * filedata, struct ia64_vms_dynimgrela *imgrela)
7114 Elf64_External_VMS_IMAGE_RELA *imrs;
7117 imrs = get_data (NULL, filedata, dynamic_addr + imgrela->img_rela_off,
7118 1, imgrela->img_rela_cnt * sizeof (*imrs),
7119 _("dynamic section image relocations"));
7123 printf (_("\nImage relocs\n"));
7125 (_("Seg Offset Type Addend Seg Sym Off\n"));
7127 for (i = 0; i < (long) imgrela->img_rela_cnt; i++)
7132 printf ("%3u ", (unsigned) BYTE_GET (imrs [i].rela_seg));
7133 printf ("%08" BFD_VMA_FMT "x ",
7134 (bfd_vma) BYTE_GET (imrs [i].rela_offset));
7135 type = BYTE_GET (imrs [i].type);
7136 rtype = elf_ia64_reloc_type (type);
7138 printf ("0x%08x ", type);
7140 printf ("%-31s ", rtype);
7141 print_vma (BYTE_GET (imrs [i].addend), FULL_HEX);
7142 printf ("%3u ", (unsigned) BYTE_GET (imrs [i].sym_seg));
7143 printf ("%08" BFD_VMA_FMT "x\n",
7144 (bfd_vma) BYTE_GET (imrs [i].sym_offset));
7151 /* Display IA-64 OpenVMS dynamic relocations and fixups. */
7154 process_ia64_vms_dynamic_relocs (Filedata * filedata)
7156 struct ia64_vms_dynfixup fixup;
7157 struct ia64_vms_dynimgrela imgrela;
7158 Elf_Internal_Dyn *entry;
7159 bfd_vma strtab_off = 0;
7160 bfd_vma strtab_sz = 0;
7161 char *strtab = NULL;
7162 bfd_boolean res = TRUE;
7164 memset (&fixup, 0, sizeof (fixup));
7165 memset (&imgrela, 0, sizeof (imgrela));
7167 /* Note: the order of the entries is specified by the OpenVMS specs. */
7168 for (entry = dynamic_section;
7169 entry < dynamic_section + dynamic_nent;
7172 switch (entry->d_tag)
7174 case DT_IA_64_VMS_STRTAB_OFFSET:
7175 strtab_off = entry->d_un.d_val;
7178 strtab_sz = entry->d_un.d_val;
7180 strtab = get_data (NULL, filedata, dynamic_addr + strtab_off,
7181 1, strtab_sz, _("dynamic string section"));
7184 case DT_IA_64_VMS_NEEDED_IDENT:
7185 fixup.needed_ident = entry->d_un.d_val;
7188 fixup.needed = entry->d_un.d_val;
7190 case DT_IA_64_VMS_FIXUP_NEEDED:
7191 fixup.fixup_needed = entry->d_un.d_val;
7193 case DT_IA_64_VMS_FIXUP_RELA_CNT:
7194 fixup.fixup_rela_cnt = entry->d_un.d_val;
7196 case DT_IA_64_VMS_FIXUP_RELA_OFF:
7197 fixup.fixup_rela_off = entry->d_un.d_val;
7198 if (! dump_ia64_vms_dynamic_fixups (filedata, &fixup, strtab, strtab_sz))
7201 case DT_IA_64_VMS_IMG_RELA_CNT:
7202 imgrela.img_rela_cnt = entry->d_un.d_val;
7204 case DT_IA_64_VMS_IMG_RELA_OFF:
7205 imgrela.img_rela_off = entry->d_un.d_val;
7206 if (! dump_ia64_vms_dynamic_relocs (filedata, &imgrela))
7228 dynamic_relocations [] =
7230 { "REL", DT_REL, DT_RELSZ, FALSE },
7231 { "RELA", DT_RELA, DT_RELASZ, TRUE },
7232 { "PLT", DT_JMPREL, DT_PLTRELSZ, UNKNOWN }
7235 /* Process the reloc section. */
7238 process_relocs (Filedata * filedata)
7240 unsigned long rel_size;
7241 unsigned long rel_offset;
7246 if (do_using_dynamic)
7250 bfd_boolean has_dynamic_reloc;
7253 has_dynamic_reloc = FALSE;
7255 for (i = 0; i < ARRAY_SIZE (dynamic_relocations); i++)
7257 is_rela = dynamic_relocations [i].rela;
7258 name = dynamic_relocations [i].name;
7259 rel_size = dynamic_info [dynamic_relocations [i].size];
7260 rel_offset = dynamic_info [dynamic_relocations [i].reloc];
7263 has_dynamic_reloc = TRUE;
7265 if (is_rela == UNKNOWN)
7267 if (dynamic_relocations [i].reloc == DT_JMPREL)
7268 switch (dynamic_info[DT_PLTREL])
7282 (_("\n'%s' relocation section at offset 0x%lx contains %ld bytes:\n"),
7283 name, rel_offset, rel_size);
7285 dump_relocations (filedata,
7286 offset_from_vma (filedata, rel_offset, rel_size),
7288 dynamic_symbols, num_dynamic_syms,
7289 dynamic_strings, dynamic_strings_length,
7290 is_rela, TRUE /* is_dynamic */);
7294 if (is_ia64_vms (filedata))
7295 if (process_ia64_vms_dynamic_relocs (filedata))
7296 has_dynamic_reloc = TRUE;
7298 if (! has_dynamic_reloc)
7299 printf (_("\nThere are no dynamic relocations in this file.\n"));
7303 Elf_Internal_Shdr * section;
7305 bfd_boolean found = FALSE;
7307 for (i = 0, section = filedata->section_headers;
7308 i < filedata->file_header.e_shnum;
7311 if ( section->sh_type != SHT_RELA
7312 && section->sh_type != SHT_REL)
7315 rel_offset = section->sh_offset;
7316 rel_size = section->sh_size;
7320 Elf_Internal_Shdr * strsec;
7322 unsigned long num_rela;
7324 printf (_("\nRelocation section "));
7326 if (filedata->string_table == NULL)
7327 printf ("%d", section->sh_name);
7329 printf ("'%s'", printable_section_name (filedata, section));
7331 num_rela = rel_size / section->sh_entsize;
7332 printf (ngettext (" at offset 0x%lx contains %lu entry:\n",
7333 " at offset 0x%lx contains %lu entries:\n",
7335 rel_offset, num_rela);
7337 is_rela = section->sh_type == SHT_RELA;
7339 if (section->sh_link != 0
7340 && section->sh_link < filedata->file_header.e_shnum)
7342 Elf_Internal_Shdr * symsec;
7343 Elf_Internal_Sym * symtab;
7344 unsigned long nsyms;
7345 unsigned long strtablen = 0;
7346 char * strtab = NULL;
7348 symsec = filedata->section_headers + section->sh_link;
7349 if (symsec->sh_type != SHT_SYMTAB
7350 && symsec->sh_type != SHT_DYNSYM)
7353 symtab = GET_ELF_SYMBOLS (filedata, symsec, & nsyms);
7358 if (symsec->sh_link != 0
7359 && symsec->sh_link < filedata->file_header.e_shnum)
7361 strsec = filedata->section_headers + symsec->sh_link;
7363 strtab = (char *) get_data (NULL, filedata, strsec->sh_offset,
7366 strtablen = strtab == NULL ? 0 : strsec->sh_size;
7369 dump_relocations (filedata, rel_offset, rel_size,
7370 symtab, nsyms, strtab, strtablen,
7372 symsec->sh_type == SHT_DYNSYM);
7378 dump_relocations (filedata, rel_offset, rel_size,
7379 NULL, 0, NULL, 0, is_rela,
7380 FALSE /* is_dynamic */);
7388 /* Users sometimes forget the -D option, so try to be helpful. */
7389 for (i = 0; i < ARRAY_SIZE (dynamic_relocations); i++)
7391 if (dynamic_info [dynamic_relocations [i].size])
7393 printf (_("\nThere are no static relocations in this file."));
7394 printf (_("\nTo see the dynamic relocations add --use-dynamic to the command line.\n"));
7399 if (i == ARRAY_SIZE (dynamic_relocations))
7400 printf (_("\nThere are no relocations in this file.\n"));
7407 /* An absolute address consists of a section and an offset. If the
7408 section is NULL, the offset itself is the address, otherwise, the
7409 address equals to LOAD_ADDRESS(section) + offset. */
7413 unsigned short section;
7417 #define ABSADDR(a) \
7419 ? filedata->section_headers [(a).section].sh_addr + (a).offset \
7422 /* Find the nearest symbol at or below ADDR. Returns the symbol
7423 name, if found, and the offset from the symbol to ADDR. */
7426 find_symbol_for_address (Filedata * filedata,
7427 Elf_Internal_Sym * symtab,
7428 unsigned long nsyms,
7429 const char * strtab,
7430 unsigned long strtab_size,
7431 struct absaddr addr,
7432 const char ** symname,
7435 bfd_vma dist = 0x100000;
7436 Elf_Internal_Sym * sym;
7437 Elf_Internal_Sym * beg;
7438 Elf_Internal_Sym * end;
7439 Elf_Internal_Sym * best = NULL;
7441 REMOVE_ARCH_BITS (addr.offset);
7443 end = symtab + nsyms;
7449 sym = beg + (end - beg) / 2;
7451 value = sym->st_value;
7452 REMOVE_ARCH_BITS (value);
7454 if (sym->st_name != 0
7455 && (addr.section == SHN_UNDEF || addr.section == sym->st_shndx)
7456 && addr.offset >= value
7457 && addr.offset - value < dist)
7460 dist = addr.offset - value;
7465 if (addr.offset < value)
7473 *symname = (best->st_name >= strtab_size
7474 ? _("<corrupt>") : strtab + best->st_name);
7480 *offset = addr.offset;
7483 static /* signed */ int
7484 symcmp (const void *p, const void *q)
7486 Elf_Internal_Sym *sp = (Elf_Internal_Sym *) p;
7487 Elf_Internal_Sym *sq = (Elf_Internal_Sym *) q;
7489 return sp->st_value > sq->st_value ? 1 : (sp->st_value < sq->st_value ? -1 : 0);
7492 /* Process the unwind section. */
7494 #include "unwind-ia64.h"
7496 struct ia64_unw_table_entry
7498 struct absaddr start;
7500 struct absaddr info;
7503 struct ia64_unw_aux_info
7505 struct ia64_unw_table_entry * table; /* Unwind table. */
7506 unsigned long table_len; /* Length of unwind table. */
7507 unsigned char * info; /* Unwind info. */
7508 unsigned long info_size; /* Size of unwind info. */
7509 bfd_vma info_addr; /* Starting address of unwind info. */
7510 bfd_vma seg_base; /* Starting address of segment. */
7511 Elf_Internal_Sym * symtab; /* The symbol table. */
7512 unsigned long nsyms; /* Number of symbols. */
7513 Elf_Internal_Sym * funtab; /* Sorted table of STT_FUNC symbols. */
7514 unsigned long nfuns; /* Number of entries in funtab. */
7515 char * strtab; /* The string table. */
7516 unsigned long strtab_size; /* Size of string table. */
7520 dump_ia64_unwind (Filedata * filedata, struct ia64_unw_aux_info * aux)
7522 struct ia64_unw_table_entry * tp;
7523 unsigned long j, nfuns;
7525 bfd_boolean res = TRUE;
7527 aux->funtab = xmalloc (aux->nsyms * sizeof (Elf_Internal_Sym));
7528 for (nfuns = 0, j = 0; j < aux->nsyms; j++)
7529 if (aux->symtab[j].st_value && ELF_ST_TYPE (aux->symtab[j].st_info) == STT_FUNC)
7530 aux->funtab[nfuns++] = aux->symtab[j];
7532 qsort (aux->funtab, aux->nfuns, sizeof (Elf_Internal_Sym), symcmp);
7534 for (tp = aux->table; tp < aux->table + aux->table_len; ++tp)
7538 const unsigned char * dp;
7539 const unsigned char * head;
7540 const unsigned char * end;
7541 const char * procname;
7543 find_symbol_for_address (filedata, aux->funtab, aux->nfuns, aux->strtab,
7544 aux->strtab_size, tp->start, &procname, &offset);
7546 fputs ("\n<", stdout);
7550 fputs (procname, stdout);
7553 printf ("+%lx", (unsigned long) offset);
7556 fputs (">: [", stdout);
7557 print_vma (tp->start.offset, PREFIX_HEX);
7558 fputc ('-', stdout);
7559 print_vma (tp->end.offset, PREFIX_HEX);
7560 printf ("], info at +0x%lx\n",
7561 (unsigned long) (tp->info.offset - aux->seg_base));
7563 /* PR 17531: file: 86232b32. */
7564 if (aux->info == NULL)
7567 /* PR 17531: file: 0997b4d1. */
7568 if ((ABSADDR (tp->info) - aux->info_addr) >= aux->info_size)
7570 warn (_("Invalid offset %lx in table entry %ld\n"),
7571 (long) tp->info.offset, (long) (tp - aux->table));
7576 head = aux->info + (ABSADDR (tp->info) - aux->info_addr);
7577 stamp = byte_get ((unsigned char *) head, sizeof (stamp));
7579 printf (" v%u, flags=0x%lx (%s%s), len=%lu bytes\n",
7580 (unsigned) UNW_VER (stamp),
7581 (unsigned long) ((stamp & UNW_FLAG_MASK) >> 32),
7582 UNW_FLAG_EHANDLER (stamp) ? " ehandler" : "",
7583 UNW_FLAG_UHANDLER (stamp) ? " uhandler" : "",
7584 (unsigned long) (eh_addr_size * UNW_LENGTH (stamp)));
7586 if (UNW_VER (stamp) != 1)
7588 printf (_("\tUnknown version.\n"));
7593 end = head + 8 + eh_addr_size * UNW_LENGTH (stamp);
7594 /* PR 17531: file: 16ceda89. */
7595 if (end > aux->info + aux->info_size)
7596 end = aux->info + aux->info_size;
7597 for (dp = head + 8; dp < end;)
7598 dp = unw_decode (dp, in_body, & in_body, end);
7607 slurp_ia64_unwind_table (Filedata * filedata,
7608 struct ia64_unw_aux_info * aux,
7609 Elf_Internal_Shdr * sec)
7611 unsigned long size, nrelas, i;
7612 Elf_Internal_Phdr * seg;
7613 struct ia64_unw_table_entry * tep;
7614 Elf_Internal_Shdr * relsec;
7615 Elf_Internal_Rela * rela;
7616 Elf_Internal_Rela * rp;
7617 unsigned char * table;
7619 Elf_Internal_Sym * sym;
7620 const char * relname;
7624 /* First, find the starting address of the segment that includes
7627 if (filedata->file_header.e_phnum)
7629 if (! get_program_headers (filedata))
7632 for (seg = filedata->program_headers;
7633 seg < filedata->program_headers + filedata->file_header.e_phnum;
7636 if (seg->p_type != PT_LOAD)
7639 if (sec->sh_addr >= seg->p_vaddr
7640 && (sec->sh_addr + sec->sh_size <= seg->p_vaddr + seg->p_memsz))
7642 aux->seg_base = seg->p_vaddr;
7648 /* Second, build the unwind table from the contents of the unwind section: */
7649 size = sec->sh_size;
7650 table = (unsigned char *) get_data (NULL, filedata, sec->sh_offset, 1, size,
7655 aux->table_len = size / (3 * eh_addr_size);
7656 aux->table = (struct ia64_unw_table_entry *)
7657 xcmalloc (aux->table_len, sizeof (aux->table[0]));
7660 for (tp = table; tp <= table + size - (3 * eh_addr_size); ++tep)
7662 tep->start.section = SHN_UNDEF;
7663 tep->end.section = SHN_UNDEF;
7664 tep->info.section = SHN_UNDEF;
7665 tep->start.offset = byte_get (tp, eh_addr_size); tp += eh_addr_size;
7666 tep->end.offset = byte_get (tp, eh_addr_size); tp += eh_addr_size;
7667 tep->info.offset = byte_get (tp, eh_addr_size); tp += eh_addr_size;
7668 tep->start.offset += aux->seg_base;
7669 tep->end.offset += aux->seg_base;
7670 tep->info.offset += aux->seg_base;
7674 /* Third, apply any relocations to the unwind table: */
7675 for (relsec = filedata->section_headers;
7676 relsec < filedata->section_headers + filedata->file_header.e_shnum;
7679 if (relsec->sh_type != SHT_RELA
7680 || relsec->sh_info >= filedata->file_header.e_shnum
7681 || filedata->section_headers + relsec->sh_info != sec)
7684 if (!slurp_rela_relocs (filedata, relsec->sh_offset, relsec->sh_size,
7693 for (rp = rela; rp < rela + nrelas; ++rp)
7695 unsigned int sym_ndx;
7696 unsigned int r_type = get_reloc_type (filedata, rp->r_info);
7697 relname = elf_ia64_reloc_type (r_type);
7699 /* PR 17531: file: 9fa67536. */
7700 if (relname == NULL)
7702 warn (_("Skipping unknown relocation type: %u\n"), r_type);
7706 if (! const_strneq (relname, "R_IA64_SEGREL"))
7708 warn (_("Skipping unexpected relocation type: %s\n"), relname);
7712 i = rp->r_offset / (3 * eh_addr_size);
7714 /* PR 17531: file: 5bc8d9bf. */
7715 if (i >= aux->table_len)
7717 warn (_("Skipping reloc with overlarge offset: %lx\n"), i);
7721 sym_ndx = get_reloc_symindex (rp->r_info);
7722 if (sym_ndx >= aux->nsyms)
7724 warn (_("Skipping reloc with invalid symbol index: %u\n"),
7728 sym = aux->symtab + sym_ndx;
7730 switch (rp->r_offset / eh_addr_size % 3)
7733 aux->table[i].start.section = sym->st_shndx;
7734 aux->table[i].start.offset = rp->r_addend + sym->st_value;
7737 aux->table[i].end.section = sym->st_shndx;
7738 aux->table[i].end.offset = rp->r_addend + sym->st_value;
7741 aux->table[i].info.section = sym->st_shndx;
7742 aux->table[i].info.offset = rp->r_addend + sym->st_value;
7756 ia64_process_unwind (Filedata * filedata)
7758 Elf_Internal_Shdr * sec;
7759 Elf_Internal_Shdr * unwsec = NULL;
7760 Elf_Internal_Shdr * strsec;
7761 unsigned long i, unwcount = 0, unwstart = 0;
7762 struct ia64_unw_aux_info aux;
7763 bfd_boolean res = TRUE;
7765 memset (& aux, 0, sizeof (aux));
7767 for (i = 0, sec = filedata->section_headers; i < filedata->file_header.e_shnum; ++i, ++sec)
7769 if (sec->sh_type == SHT_SYMTAB
7770 && sec->sh_link < filedata->file_header.e_shnum)
7772 aux.symtab = GET_ELF_SYMBOLS (filedata, sec, & aux.nsyms);
7774 strsec = filedata->section_headers + sec->sh_link;
7775 if (aux.strtab != NULL)
7777 error (_("Multiple auxillary string tables encountered\n"));
7781 aux.strtab = (char *) get_data (NULL, filedata, strsec->sh_offset,
7784 aux.strtab_size = aux.strtab != NULL ? strsec->sh_size : 0;
7786 else if (sec->sh_type == SHT_IA_64_UNWIND)
7791 printf (_("\nThere are no unwind sections in this file.\n"));
7793 while (unwcount-- > 0)
7798 for (i = unwstart, sec = filedata->section_headers + unwstart, unwsec = NULL;
7799 i < filedata->file_header.e_shnum; ++i, ++sec)
7800 if (sec->sh_type == SHT_IA_64_UNWIND)
7805 /* We have already counted the number of SHT_IA64_UNWIND
7806 sections so the loop above should never fail. */
7807 assert (unwsec != NULL);
7810 len = sizeof (ELF_STRING_ia64_unwind_once) - 1;
7812 if ((unwsec->sh_flags & SHF_GROUP) != 0)
7814 /* We need to find which section group it is in. */
7815 struct group_list * g;
7817 if (section_headers_groups == NULL
7818 || section_headers_groups [i] == NULL)
7819 i = filedata->file_header.e_shnum;
7822 g = section_headers_groups [i]->root;
7824 for (; g != NULL; g = g->next)
7826 sec = filedata->section_headers + g->section_index;
7828 if (streq (SECTION_NAME (sec), ELF_STRING_ia64_unwind_info))
7833 i = filedata->file_header.e_shnum;
7836 else if (strneq (SECTION_NAME (unwsec), ELF_STRING_ia64_unwind_once, len))
7838 /* .gnu.linkonce.ia64unw.FOO -> .gnu.linkonce.ia64unwi.FOO. */
7839 len2 = sizeof (ELF_STRING_ia64_unwind_info_once) - 1;
7840 suffix = SECTION_NAME (unwsec) + len;
7841 for (i = 0, sec = filedata->section_headers; i < filedata->file_header.e_shnum;
7843 if (strneq (SECTION_NAME (sec), ELF_STRING_ia64_unwind_info_once, len2)
7844 && streq (SECTION_NAME (sec) + len2, suffix))
7849 /* .IA_64.unwindFOO -> .IA_64.unwind_infoFOO
7850 .IA_64.unwind or BAR -> .IA_64.unwind_info. */
7851 len = sizeof (ELF_STRING_ia64_unwind) - 1;
7852 len2 = sizeof (ELF_STRING_ia64_unwind_info) - 1;
7854 if (strneq (SECTION_NAME (unwsec), ELF_STRING_ia64_unwind, len))
7855 suffix = SECTION_NAME (unwsec) + len;
7856 for (i = 0, sec = filedata->section_headers; i < filedata->file_header.e_shnum;
7858 if (strneq (SECTION_NAME (sec), ELF_STRING_ia64_unwind_info, len2)
7859 && streq (SECTION_NAME (sec) + len2, suffix))
7863 if (i == filedata->file_header.e_shnum)
7865 printf (_("\nCould not find unwind info section for "));
7867 if (filedata->string_table == NULL)
7868 printf ("%d", unwsec->sh_name);
7870 printf ("'%s'", printable_section_name (filedata, unwsec));
7874 aux.info_addr = sec->sh_addr;
7875 aux.info = (unsigned char *) get_data (NULL, filedata, sec->sh_offset, 1,
7878 aux.info_size = aux.info == NULL ? 0 : sec->sh_size;
7880 printf (_("\nUnwind section "));
7882 if (filedata->string_table == NULL)
7883 printf ("%d", unwsec->sh_name);
7885 printf ("'%s'", printable_section_name (filedata, unwsec));
7887 printf (_(" at offset 0x%lx contains %lu entries:\n"),
7888 (unsigned long) unwsec->sh_offset,
7889 (unsigned long) (unwsec->sh_size / (3 * eh_addr_size)));
7891 if (slurp_ia64_unwind_table (filedata, & aux, unwsec)
7892 && aux.table_len > 0)
7893 dump_ia64_unwind (filedata, & aux);
7896 free ((char *) aux.table);
7898 free ((char *) aux.info);
7907 free ((char *) aux.strtab);
7912 struct hppa_unw_table_entry
7914 struct absaddr start;
7916 unsigned int Cannot_unwind:1; /* 0 */
7917 unsigned int Millicode:1; /* 1 */
7918 unsigned int Millicode_save_sr0:1; /* 2 */
7919 unsigned int Region_description:2; /* 3..4 */
7920 unsigned int reserved1:1; /* 5 */
7921 unsigned int Entry_SR:1; /* 6 */
7922 unsigned int Entry_FR:4; /* Number saved 7..10 */
7923 unsigned int Entry_GR:5; /* Number saved 11..15 */
7924 unsigned int Args_stored:1; /* 16 */
7925 unsigned int Variable_Frame:1; /* 17 */
7926 unsigned int Separate_Package_Body:1; /* 18 */
7927 unsigned int Frame_Extension_Millicode:1; /* 19 */
7928 unsigned int Stack_Overflow_Check:1; /* 20 */
7929 unsigned int Two_Instruction_SP_Increment:1; /* 21 */
7930 unsigned int Ada_Region:1; /* 22 */
7931 unsigned int cxx_info:1; /* 23 */
7932 unsigned int cxx_try_catch:1; /* 24 */
7933 unsigned int sched_entry_seq:1; /* 25 */
7934 unsigned int reserved2:1; /* 26 */
7935 unsigned int Save_SP:1; /* 27 */
7936 unsigned int Save_RP:1; /* 28 */
7937 unsigned int Save_MRP_in_frame:1; /* 29 */
7938 unsigned int extn_ptr_defined:1; /* 30 */
7939 unsigned int Cleanup_defined:1; /* 31 */
7941 unsigned int MPE_XL_interrupt_marker:1; /* 0 */
7942 unsigned int HP_UX_interrupt_marker:1; /* 1 */
7943 unsigned int Large_frame:1; /* 2 */
7944 unsigned int Pseudo_SP_Set:1; /* 3 */
7945 unsigned int reserved4:1; /* 4 */
7946 unsigned int Total_frame_size:27; /* 5..31 */
7949 struct hppa_unw_aux_info
7951 struct hppa_unw_table_entry * table; /* Unwind table. */
7952 unsigned long table_len; /* Length of unwind table. */
7953 bfd_vma seg_base; /* Starting address of segment. */
7954 Elf_Internal_Sym * symtab; /* The symbol table. */
7955 unsigned long nsyms; /* Number of symbols. */
7956 Elf_Internal_Sym * funtab; /* Sorted table of STT_FUNC symbols. */
7957 unsigned long nfuns; /* Number of entries in funtab. */
7958 char * strtab; /* The string table. */
7959 unsigned long strtab_size; /* Size of string table. */
7963 dump_hppa_unwind (Filedata * filedata, struct hppa_unw_aux_info * aux)
7965 struct hppa_unw_table_entry * tp;
7966 unsigned long j, nfuns;
7967 bfd_boolean res = TRUE;
7969 aux->funtab = xmalloc (aux->nsyms * sizeof (Elf_Internal_Sym));
7970 for (nfuns = 0, j = 0; j < aux->nsyms; j++)
7971 if (aux->symtab[j].st_value && ELF_ST_TYPE (aux->symtab[j].st_info) == STT_FUNC)
7972 aux->funtab[nfuns++] = aux->symtab[j];
7974 qsort (aux->funtab, aux->nfuns, sizeof (Elf_Internal_Sym), symcmp);
7976 for (tp = aux->table; tp < aux->table + aux->table_len; ++tp)
7979 const char * procname;
7981 find_symbol_for_address (filedata, aux->funtab, aux->nfuns, aux->strtab,
7982 aux->strtab_size, tp->start, &procname,
7985 fputs ("\n<", stdout);
7989 fputs (procname, stdout);
7992 printf ("+%lx", (unsigned long) offset);
7995 fputs (">: [", stdout);
7996 print_vma (tp->start.offset, PREFIX_HEX);
7997 fputc ('-', stdout);
7998 print_vma (tp->end.offset, PREFIX_HEX);
8001 #define PF(_m) if (tp->_m) printf (#_m " ");
8002 #define PV(_m) if (tp->_m) printf (#_m "=%d ", tp->_m);
8005 PF(Millicode_save_sr0);
8006 /* PV(Region_description); */
8012 PF(Separate_Package_Body);
8013 PF(Frame_Extension_Millicode);
8014 PF(Stack_Overflow_Check);
8015 PF(Two_Instruction_SP_Increment);
8019 PF(sched_entry_seq);
8022 PF(Save_MRP_in_frame);
8023 PF(extn_ptr_defined);
8024 PF(Cleanup_defined);
8025 PF(MPE_XL_interrupt_marker);
8026 PF(HP_UX_interrupt_marker);
8029 PV(Total_frame_size);
8042 slurp_hppa_unwind_table (Filedata * filedata,
8043 struct hppa_unw_aux_info * aux,
8044 Elf_Internal_Shdr * sec)
8046 unsigned long size, unw_ent_size, nentries, nrelas, i;
8047 Elf_Internal_Phdr * seg;
8048 struct hppa_unw_table_entry * tep;
8049 Elf_Internal_Shdr * relsec;
8050 Elf_Internal_Rela * rela;
8051 Elf_Internal_Rela * rp;
8052 unsigned char * table;
8054 Elf_Internal_Sym * sym;
8055 const char * relname;
8057 /* First, find the starting address of the segment that includes
8059 if (filedata->file_header.e_phnum)
8061 if (! get_program_headers (filedata))
8064 for (seg = filedata->program_headers;
8065 seg < filedata->program_headers + filedata->file_header.e_phnum;
8068 if (seg->p_type != PT_LOAD)
8071 if (sec->sh_addr >= seg->p_vaddr
8072 && (sec->sh_addr + sec->sh_size <= seg->p_vaddr + seg->p_memsz))
8074 aux->seg_base = seg->p_vaddr;
8080 /* Second, build the unwind table from the contents of the unwind
8082 size = sec->sh_size;
8083 table = (unsigned char *) get_data (NULL, filedata, sec->sh_offset, 1, size,
8089 nentries = size / unw_ent_size;
8090 size = unw_ent_size * nentries;
8092 tep = aux->table = (struct hppa_unw_table_entry *)
8093 xcmalloc (nentries, sizeof (aux->table[0]));
8095 for (tp = table; tp < table + size; tp += unw_ent_size, ++tep)
8097 unsigned int tmp1, tmp2;
8099 tep->start.section = SHN_UNDEF;
8100 tep->end.section = SHN_UNDEF;
8102 tep->start.offset = byte_get ((unsigned char *) tp + 0, 4);
8103 tep->end.offset = byte_get ((unsigned char *) tp + 4, 4);
8104 tmp1 = byte_get ((unsigned char *) tp + 8, 4);
8105 tmp2 = byte_get ((unsigned char *) tp + 12, 4);
8107 tep->start.offset += aux->seg_base;
8108 tep->end.offset += aux->seg_base;
8110 tep->Cannot_unwind = (tmp1 >> 31) & 0x1;
8111 tep->Millicode = (tmp1 >> 30) & 0x1;
8112 tep->Millicode_save_sr0 = (tmp1 >> 29) & 0x1;
8113 tep->Region_description = (tmp1 >> 27) & 0x3;
8114 tep->reserved1 = (tmp1 >> 26) & 0x1;
8115 tep->Entry_SR = (tmp1 >> 25) & 0x1;
8116 tep->Entry_FR = (tmp1 >> 21) & 0xf;
8117 tep->Entry_GR = (tmp1 >> 16) & 0x1f;
8118 tep->Args_stored = (tmp1 >> 15) & 0x1;
8119 tep->Variable_Frame = (tmp1 >> 14) & 0x1;
8120 tep->Separate_Package_Body = (tmp1 >> 13) & 0x1;
8121 tep->Frame_Extension_Millicode = (tmp1 >> 12) & 0x1;
8122 tep->Stack_Overflow_Check = (tmp1 >> 11) & 0x1;
8123 tep->Two_Instruction_SP_Increment = (tmp1 >> 10) & 0x1;
8124 tep->Ada_Region = (tmp1 >> 9) & 0x1;
8125 tep->cxx_info = (tmp1 >> 8) & 0x1;
8126 tep->cxx_try_catch = (tmp1 >> 7) & 0x1;
8127 tep->sched_entry_seq = (tmp1 >> 6) & 0x1;
8128 tep->reserved2 = (tmp1 >> 5) & 0x1;
8129 tep->Save_SP = (tmp1 >> 4) & 0x1;
8130 tep->Save_RP = (tmp1 >> 3) & 0x1;
8131 tep->Save_MRP_in_frame = (tmp1 >> 2) & 0x1;
8132 tep->extn_ptr_defined = (tmp1 >> 1) & 0x1;
8133 tep->Cleanup_defined = tmp1 & 0x1;
8135 tep->MPE_XL_interrupt_marker = (tmp2 >> 31) & 0x1;
8136 tep->HP_UX_interrupt_marker = (tmp2 >> 30) & 0x1;
8137 tep->Large_frame = (tmp2 >> 29) & 0x1;
8138 tep->Pseudo_SP_Set = (tmp2 >> 28) & 0x1;
8139 tep->reserved4 = (tmp2 >> 27) & 0x1;
8140 tep->Total_frame_size = tmp2 & 0x7ffffff;
8144 /* Third, apply any relocations to the unwind table. */
8145 for (relsec = filedata->section_headers;
8146 relsec < filedata->section_headers + filedata->file_header.e_shnum;
8149 if (relsec->sh_type != SHT_RELA
8150 || relsec->sh_info >= filedata->file_header.e_shnum
8151 || filedata->section_headers + relsec->sh_info != sec)
8154 if (!slurp_rela_relocs (filedata, relsec->sh_offset, relsec->sh_size,
8158 for (rp = rela; rp < rela + nrelas; ++rp)
8160 unsigned int sym_ndx;
8161 unsigned int r_type = get_reloc_type (filedata, rp->r_info);
8162 relname = elf_hppa_reloc_type (r_type);
8164 if (relname == NULL)
8166 warn (_("Skipping unknown relocation type: %u\n"), r_type);
8170 /* R_PARISC_SEGREL32 or R_PARISC_SEGREL64. */
8171 if (! const_strneq (relname, "R_PARISC_SEGREL"))
8173 warn (_("Skipping unexpected relocation type: %s\n"), relname);
8177 i = rp->r_offset / unw_ent_size;
8178 if (i >= aux->table_len)
8180 warn (_("Skipping reloc with overlarge offset: %lx\n"), i);
8184 sym_ndx = get_reloc_symindex (rp->r_info);
8185 if (sym_ndx >= aux->nsyms)
8187 warn (_("Skipping reloc with invalid symbol index: %u\n"),
8191 sym = aux->symtab + sym_ndx;
8193 switch ((rp->r_offset % unw_ent_size) / 4)
8196 aux->table[i].start.section = sym->st_shndx;
8197 aux->table[i].start.offset = sym->st_value + rp->r_addend;
8200 aux->table[i].end.section = sym->st_shndx;
8201 aux->table[i].end.offset = sym->st_value + rp->r_addend;
8211 aux->table_len = nentries;
8217 hppa_process_unwind (Filedata * filedata)
8219 struct hppa_unw_aux_info aux;
8220 Elf_Internal_Shdr * unwsec = NULL;
8221 Elf_Internal_Shdr * strsec;
8222 Elf_Internal_Shdr * sec;
8224 bfd_boolean res = TRUE;
8226 if (filedata->string_table == NULL)
8229 memset (& aux, 0, sizeof (aux));
8231 for (i = 0, sec = filedata->section_headers; i < filedata->file_header.e_shnum; ++i, ++sec)
8233 if (sec->sh_type == SHT_SYMTAB
8234 && sec->sh_link < filedata->file_header.e_shnum)
8236 aux.symtab = GET_ELF_SYMBOLS (filedata, sec, & aux.nsyms);
8238 strsec = filedata->section_headers + sec->sh_link;
8239 if (aux.strtab != NULL)
8241 error (_("Multiple auxillary string tables encountered\n"));
8245 aux.strtab = (char *) get_data (NULL, filedata, strsec->sh_offset,
8248 aux.strtab_size = aux.strtab != NULL ? strsec->sh_size : 0;
8250 else if (streq (SECTION_NAME (sec), ".PARISC.unwind"))
8255 printf (_("\nThere are no unwind sections in this file.\n"));
8257 for (i = 0, sec = filedata->section_headers; i < filedata->file_header.e_shnum; ++i, ++sec)
8259 if (streq (SECTION_NAME (sec), ".PARISC.unwind"))
8261 unsigned long num_unwind = sec->sh_size / 16;
8263 printf (ngettext ("\nUnwind section '%s' at offset 0x%lx "
8264 "contains %lu entry:\n",
8265 "\nUnwind section '%s' at offset 0x%lx "
8266 "contains %lu entries:\n",
8268 printable_section_name (filedata, sec),
8269 (unsigned long) sec->sh_offset,
8272 if (! slurp_hppa_unwind_table (filedata, &aux, sec))
8275 if (res && aux.table_len > 0)
8277 if (! dump_hppa_unwind (filedata, &aux))
8282 free ((char *) aux.table);
8290 free ((char *) aux.strtab);
8297 unsigned char * data; /* The unwind data. */
8298 Elf_Internal_Shdr * sec; /* The cached unwind section header. */
8299 Elf_Internal_Rela * rela; /* The cached relocations for this section. */
8300 unsigned long nrelas; /* The number of relocations. */
8301 unsigned int rel_type; /* REL or RELA ? */
8302 Elf_Internal_Rela * next_rela; /* Cyclic pointer to the next reloc to process. */
8305 struct arm_unw_aux_info
8307 Filedata * filedata; /* The file containing the unwind sections. */
8308 Elf_Internal_Sym * symtab; /* The file's symbol table. */
8309 unsigned long nsyms; /* Number of symbols. */
8310 Elf_Internal_Sym * funtab; /* Sorted table of STT_FUNC symbols. */
8311 unsigned long nfuns; /* Number of these symbols. */
8312 char * strtab; /* The file's string table. */
8313 unsigned long strtab_size; /* Size of string table. */
8317 arm_print_vma_and_name (Filedata * filedata,
8318 struct arm_unw_aux_info * aux,
8320 struct absaddr addr)
8322 const char *procname;
8325 if (addr.section == SHN_UNDEF)
8328 find_symbol_for_address (filedata, aux->funtab, aux->nfuns, aux->strtab,
8329 aux->strtab_size, addr, &procname,
8332 print_vma (fn, PREFIX_HEX);
8336 fputs (" <", stdout);
8337 fputs (procname, stdout);
8340 printf ("+0x%lx", (unsigned long) sym_offset);
8341 fputc ('>', stdout);
8348 arm_free_section (struct arm_section *arm_sec)
8350 if (arm_sec->data != NULL)
8351 free (arm_sec->data);
8353 if (arm_sec->rela != NULL)
8354 free (arm_sec->rela);
8357 /* 1) If SEC does not match the one cached in ARM_SEC, then free the current
8358 cached section and install SEC instead.
8359 2) Locate the 32-bit word at WORD_OFFSET in unwind section SEC
8360 and return its valued in * WORDP, relocating if necessary.
8361 3) Update the NEXT_RELA field in ARM_SEC and store the section index and
8362 relocation's offset in ADDR.
8363 4) If SYM_NAME is non-NULL and a relocation was applied, record the offset
8364 into the string table of the symbol associated with the reloc. If no
8365 reloc was applied store -1 there.
8366 5) Return TRUE upon success, FALSE otherwise. */
8369 get_unwind_section_word (Filedata * filedata,
8370 struct arm_unw_aux_info * aux,
8371 struct arm_section * arm_sec,
8372 Elf_Internal_Shdr * sec,
8373 bfd_vma word_offset,
8374 unsigned int * wordp,
8375 struct absaddr * addr,
8378 Elf_Internal_Rela *rp;
8379 Elf_Internal_Sym *sym;
8380 const char * relname;
8382 bfd_boolean wrapped;
8384 if (sec == NULL || arm_sec == NULL)
8387 addr->section = SHN_UNDEF;
8390 if (sym_name != NULL)
8391 *sym_name = (bfd_vma) -1;
8393 /* If necessary, update the section cache. */
8394 if (sec != arm_sec->sec)
8396 Elf_Internal_Shdr *relsec;
8398 arm_free_section (arm_sec);
8401 arm_sec->data = get_data (NULL, aux->filedata, sec->sh_offset, 1,
8402 sec->sh_size, _("unwind data"));
8403 arm_sec->rela = NULL;
8404 arm_sec->nrelas = 0;
8406 for (relsec = filedata->section_headers;
8407 relsec < filedata->section_headers + filedata->file_header.e_shnum;
8410 if (relsec->sh_info >= filedata->file_header.e_shnum
8411 || filedata->section_headers + relsec->sh_info != sec
8412 /* PR 15745: Check the section type as well. */
8413 || (relsec->sh_type != SHT_REL
8414 && relsec->sh_type != SHT_RELA))
8417 arm_sec->rel_type = relsec->sh_type;
8418 if (relsec->sh_type == SHT_REL)
8420 if (!slurp_rel_relocs (aux->filedata, relsec->sh_offset,
8422 & arm_sec->rela, & arm_sec->nrelas))
8425 else /* relsec->sh_type == SHT_RELA */
8427 if (!slurp_rela_relocs (aux->filedata, relsec->sh_offset,
8429 & arm_sec->rela, & arm_sec->nrelas))
8435 arm_sec->next_rela = arm_sec->rela;
8438 /* If there is no unwind data we can do nothing. */
8439 if (arm_sec->data == NULL)
8442 /* If the offset is invalid then fail. */
8443 if (/* PR 21343 *//* PR 18879 */
8445 || word_offset > (sec->sh_size - 4)
8446 || ((bfd_signed_vma) word_offset) < 0)
8449 /* Get the word at the required offset. */
8450 word = byte_get (arm_sec->data + word_offset, 4);
8452 /* PR 17531: file: id:000001,src:001266+003044,op:splice,rep:128. */
8453 if (arm_sec->rela == NULL)
8459 /* Look through the relocs to find the one that applies to the provided offset. */
8461 for (rp = arm_sec->next_rela; rp != arm_sec->rela + arm_sec->nrelas; rp++)
8463 bfd_vma prelval, offset;
8465 if (rp->r_offset > word_offset && !wrapped)
8470 if (rp->r_offset > word_offset)
8473 if (rp->r_offset & 3)
8475 warn (_("Skipping unexpected relocation at offset 0x%lx\n"),
8476 (unsigned long) rp->r_offset);
8480 if (rp->r_offset < word_offset)
8483 /* PR 17531: file: 027-161405-0.004 */
8484 if (aux->symtab == NULL)
8487 if (arm_sec->rel_type == SHT_REL)
8489 offset = word & 0x7fffffff;
8490 if (offset & 0x40000000)
8491 offset |= ~ (bfd_vma) 0x7fffffff;
8493 else if (arm_sec->rel_type == SHT_RELA)
8494 offset = rp->r_addend;
8497 error (_("Unknown section relocation type %d encountered\n"),
8502 /* PR 17531 file: 027-1241568-0.004. */
8503 if (ELF32_R_SYM (rp->r_info) >= aux->nsyms)
8505 error (_("Bad symbol index in unwind relocation (%lu > %lu)\n"),
8506 (unsigned long) ELF32_R_SYM (rp->r_info), aux->nsyms);
8510 sym = aux->symtab + ELF32_R_SYM (rp->r_info);
8511 offset += sym->st_value;
8512 prelval = offset - (arm_sec->sec->sh_addr + rp->r_offset);
8514 /* Check that we are processing the expected reloc type. */
8515 if (filedata->file_header.e_machine == EM_ARM)
8517 relname = elf_arm_reloc_type (ELF32_R_TYPE (rp->r_info));
8518 if (relname == NULL)
8520 warn (_("Skipping unknown ARM relocation type: %d\n"),
8521 (int) ELF32_R_TYPE (rp->r_info));
8525 if (streq (relname, "R_ARM_NONE"))
8528 if (! streq (relname, "R_ARM_PREL31"))
8530 warn (_("Skipping unexpected ARM relocation type %s\n"), relname);
8534 else if (filedata->file_header.e_machine == EM_TI_C6000)
8536 relname = elf_tic6x_reloc_type (ELF32_R_TYPE (rp->r_info));
8537 if (relname == NULL)
8539 warn (_("Skipping unknown C6000 relocation type: %d\n"),
8540 (int) ELF32_R_TYPE (rp->r_info));
8544 if (streq (relname, "R_C6000_NONE"))
8547 if (! streq (relname, "R_C6000_PREL31"))
8549 warn (_("Skipping unexpected C6000 relocation type %s\n"), relname);
8557 /* This function currently only supports ARM and TI unwinders. */
8558 warn (_("Only TI and ARM unwinders are currently supported\n"));
8562 word = (word & ~ (bfd_vma) 0x7fffffff) | (prelval & 0x7fffffff);
8563 addr->section = sym->st_shndx;
8564 addr->offset = offset;
8567 * sym_name = sym->st_name;
8572 arm_sec->next_rela = rp;
8577 static const char *tic6x_unwind_regnames[16] =
8579 "A15", "B15", "B14", "B13", "B12", "B11", "B10", "B3",
8580 "A14", "A13", "A12", "A11", "A10",
8581 "[invalid reg 13]", "[invalid reg 14]", "[invalid reg 15]"
8585 decode_tic6x_unwind_regmask (unsigned int mask)
8589 for (i = 12; mask; mask >>= 1, i--)
8593 fputs (tic6x_unwind_regnames[i], stdout);
8595 fputs (", ", stdout);
8601 if (remaining == 0 && more_words) \
8604 if (! get_unwind_section_word (filedata, aux, data_arm_sec, data_sec, \
8605 data_offset, & word, & addr, NULL)) \
8611 #define GET_OP(OP) \
8616 (OP) = word >> 24; \
8621 printf (_("[Truncated opcode]\n")); \
8624 printf ("0x%02x ", OP)
8627 decode_arm_unwind_bytecode (Filedata * filedata,
8628 struct arm_unw_aux_info * aux,
8630 unsigned int remaining,
8631 unsigned int more_words,
8632 bfd_vma data_offset,
8633 Elf_Internal_Shdr * data_sec,
8634 struct arm_section * data_arm_sec)
8636 struct absaddr addr;
8637 bfd_boolean res = TRUE;
8639 /* Decode the unwinding instructions. */
8642 unsigned int op, op2;
8651 printf (" 0x%02x ", op);
8653 if ((op & 0xc0) == 0x00)
8655 int offset = ((op & 0x3f) << 2) + 4;
8657 printf (" vsp = vsp + %d", offset);
8659 else if ((op & 0xc0) == 0x40)
8661 int offset = ((op & 0x3f) << 2) + 4;
8663 printf (" vsp = vsp - %d", offset);
8665 else if ((op & 0xf0) == 0x80)
8668 if (op == 0x80 && op2 == 0)
8669 printf (_("Refuse to unwind"));
8672 unsigned int mask = ((op & 0x0f) << 8) | op2;
8673 bfd_boolean first = TRUE;
8677 for (i = 0; i < 12; i++)
8678 if (mask & (1 << i))
8684 printf ("r%d", 4 + i);
8689 else if ((op & 0xf0) == 0x90)
8691 if (op == 0x9d || op == 0x9f)
8692 printf (_(" [Reserved]"));
8694 printf (" vsp = r%d", op & 0x0f);
8696 else if ((op & 0xf0) == 0xa0)
8698 int end = 4 + (op & 0x07);
8699 bfd_boolean first = TRUE;
8703 for (i = 4; i <= end; i++)
8719 else if (op == 0xb0)
8720 printf (_(" finish"));
8721 else if (op == 0xb1)
8724 if (op2 == 0 || (op2 & 0xf0) != 0)
8725 printf (_("[Spare]"));
8728 unsigned int mask = op2 & 0x0f;
8729 bfd_boolean first = TRUE;
8733 for (i = 0; i < 12; i++)
8734 if (mask & (1 << i))
8745 else if (op == 0xb2)
8747 unsigned char buf[9];
8748 unsigned int i, len;
8749 unsigned long offset;
8751 for (i = 0; i < sizeof (buf); i++)
8754 if ((buf[i] & 0x80) == 0)
8757 if (i == sizeof (buf))
8759 error (_("corrupt change to vsp"));
8764 offset = read_uleb128 (buf, &len, buf + i + 1);
8765 assert (len == i + 1);
8766 offset = offset * 4 + 0x204;
8767 printf ("vsp = vsp + %ld", offset);
8770 else if (op == 0xb3 || op == 0xc8 || op == 0xc9)
8772 unsigned int first, last;
8779 printf ("pop {D%d", first);
8781 printf ("-D%d", first + last);
8784 else if ((op & 0xf8) == 0xb8 || (op & 0xf8) == 0xd0)
8786 unsigned int count = op & 0x07;
8790 printf ("-D%d", 8 + count);
8793 else if (op >= 0xc0 && op <= 0xc5)
8795 unsigned int count = op & 0x07;
8797 printf (" pop {wR10");
8799 printf ("-wR%d", 10 + count);
8802 else if (op == 0xc6)
8804 unsigned int first, last;
8809 printf ("pop {wR%d", first);
8811 printf ("-wR%d", first + last);
8814 else if (op == 0xc7)
8817 if (op2 == 0 || (op2 & 0xf0) != 0)
8818 printf (_("[Spare]"));
8821 unsigned int mask = op2 & 0x0f;
8822 bfd_boolean first = TRUE;
8826 for (i = 0; i < 4; i++)
8827 if (mask & (1 << i))
8833 printf ("wCGR%d", i);
8840 printf (_(" [unsupported opcode]"));
8851 decode_tic6x_unwind_bytecode (Filedata * filedata,
8852 struct arm_unw_aux_info * aux,
8854 unsigned int remaining,
8855 unsigned int more_words,
8856 bfd_vma data_offset,
8857 Elf_Internal_Shdr * data_sec,
8858 struct arm_section * data_arm_sec)
8860 struct absaddr addr;
8862 /* Decode the unwinding instructions. */
8865 unsigned int op, op2;
8874 printf (" 0x%02x ", op);
8876 if ((op & 0xc0) == 0x00)
8878 int offset = ((op & 0x3f) << 3) + 8;
8879 printf (" sp = sp + %d", offset);
8881 else if ((op & 0xc0) == 0x80)
8884 if (op == 0x80 && op2 == 0)
8885 printf (_("Refuse to unwind"));
8888 unsigned int mask = ((op & 0x1f) << 8) | op2;
8890 printf ("pop compact {");
8894 decode_tic6x_unwind_regmask (mask);
8898 else if ((op & 0xf0) == 0xc0)
8906 unsigned int offset;
8910 /* Scan entire instruction first so that GET_OP output is not
8911 interleaved with disassembly. */
8913 for (i = 0; nregs < (op & 0xf); i++)
8919 regpos[nregs].offset = i * 2;
8920 regpos[nregs].reg = reg;
8927 regpos[nregs].offset = i * 2 + 1;
8928 regpos[nregs].reg = reg;
8933 printf (_("pop frame {"));
8936 printf (_("*corrupt* - no registers specified"));
8941 for (i = i * 2; i > 0; i--)
8943 if (regpos[reg].offset == i - 1)
8945 name = tic6x_unwind_regnames[regpos[reg].reg];
8952 fputs (name, stdout);
8960 else if (op == 0xd0)
8961 printf (" MOV FP, SP");
8962 else if (op == 0xd1)
8963 printf (" __c6xabi_pop_rts");
8964 else if (op == 0xd2)
8966 unsigned char buf[9];
8967 unsigned int i, len;
8968 unsigned long offset;
8970 for (i = 0; i < sizeof (buf); i++)
8973 if ((buf[i] & 0x80) == 0)
8976 /* PR 17531: file: id:000001,src:001906+004739,op:splice,rep:2. */
8977 if (i == sizeof (buf))
8979 warn (_("Corrupt stack pointer adjustment detected\n"));
8983 offset = read_uleb128 (buf, &len, buf + i + 1);
8984 assert (len == i + 1);
8985 offset = offset * 8 + 0x408;
8986 printf (_("sp = sp + %ld"), offset);
8988 else if ((op & 0xf0) == 0xe0)
8990 if ((op & 0x0f) == 7)
8993 printf (" MV %s, B3", tic6x_unwind_regnames[op & 0x0f]);
8997 printf (_(" [unsupported opcode]"));
9006 arm_expand_prel31 (Filedata * filedata, bfd_vma word, bfd_vma where)
9010 offset = word & 0x7fffffff;
9011 if (offset & 0x40000000)
9012 offset |= ~ (bfd_vma) 0x7fffffff;
9014 if (filedata->file_header.e_machine == EM_TI_C6000)
9017 return offset + where;
9021 decode_arm_unwind (Filedata * filedata,
9022 struct arm_unw_aux_info * aux,
9024 unsigned int remaining,
9025 bfd_vma data_offset,
9026 Elf_Internal_Shdr * data_sec,
9027 struct arm_section * data_arm_sec)
9030 unsigned int more_words = 0;
9031 struct absaddr addr;
9032 bfd_vma sym_name = (bfd_vma) -1;
9033 bfd_boolean res = TRUE;
9037 /* Fetch the first word.
9038 Note - when decoding an object file the address extracted
9039 here will always be 0. So we also pass in the sym_name
9040 parameter so that we can find the symbol associated with
9041 the personality routine. */
9042 if (! get_unwind_section_word (filedata, aux, data_arm_sec, data_sec, data_offset,
9043 & word, & addr, & sym_name))
9049 if ((word & 0x80000000) == 0)
9051 /* Expand prel31 for personality routine. */
9053 const char *procname;
9055 fn = arm_expand_prel31 (filedata, word, data_sec->sh_addr + data_offset);
9056 printf (_(" Personality routine: "));
9058 && addr.section == SHN_UNDEF && addr.offset == 0
9059 && sym_name != (bfd_vma) -1 && sym_name < aux->strtab_size)
9061 procname = aux->strtab + sym_name;
9062 print_vma (fn, PREFIX_HEX);
9065 fputs (" <", stdout);
9066 fputs (procname, stdout);
9067 fputc ('>', stdout);
9071 procname = arm_print_vma_and_name (filedata, aux, fn, addr);
9072 fputc ('\n', stdout);
9074 /* The GCC personality routines use the standard compact
9075 encoding, starting with one byte giving the number of
9077 if (procname != NULL
9078 && (const_strneq (procname, "__gcc_personality_v0")
9079 || const_strneq (procname, "__gxx_personality_v0")
9080 || const_strneq (procname, "__gcj_personality_v0")
9081 || const_strneq (procname, "__gnu_objc_personality_v0")))
9088 printf (_(" [Truncated data]\n"));
9091 more_words = word >> 24;
9101 /* ARM EHABI Section 6.3:
9103 An exception-handling table entry for the compact model looks like:
9107 1 0 index Data for personalityRoutine[index] */
9109 if (filedata->file_header.e_machine == EM_ARM
9110 && (word & 0x70000000))
9112 warn (_("Corrupt ARM compact model table entry: %x \n"), word);
9116 per_index = (word >> 24) & 0x7f;
9117 printf (_(" Compact model index: %d\n"), per_index);
9124 else if (per_index < 3)
9126 more_words = (word >> 16) & 0xff;
9132 switch (filedata->file_header.e_machine)
9137 if (! decode_arm_unwind_bytecode (filedata, aux, word, remaining, more_words,
9138 data_offset, data_sec, data_arm_sec))
9143 warn (_("Unknown ARM compact model index encountered\n"));
9144 printf (_(" [reserved]\n"));
9152 if (! decode_tic6x_unwind_bytecode (filedata, aux, word, remaining, more_words,
9153 data_offset, data_sec, data_arm_sec))
9156 else if (per_index < 5)
9158 if (((word >> 17) & 0x7f) == 0x7f)
9159 printf (_(" Restore stack from frame pointer\n"));
9161 printf (_(" Stack increment %d\n"), (word >> 14) & 0x1fc);
9162 printf (_(" Registers restored: "));
9164 printf (" (compact) ");
9165 decode_tic6x_unwind_regmask ((word >> 4) & 0x1fff);
9167 printf (_(" Return register: %s\n"),
9168 tic6x_unwind_regnames[word & 0xf]);
9171 printf (_(" [reserved (%d)]\n"), per_index);
9175 error (_("Unsupported architecture type %d encountered when decoding unwind table\n"),
9176 filedata->file_header.e_machine);
9180 /* Decode the descriptors. Not implemented. */
9186 dump_arm_unwind (Filedata * filedata,
9187 struct arm_unw_aux_info * aux,
9188 Elf_Internal_Shdr * exidx_sec)
9190 struct arm_section exidx_arm_sec, extab_arm_sec;
9191 unsigned int i, exidx_len;
9192 unsigned long j, nfuns;
9193 bfd_boolean res = TRUE;
9195 memset (&exidx_arm_sec, 0, sizeof (exidx_arm_sec));
9196 memset (&extab_arm_sec, 0, sizeof (extab_arm_sec));
9197 exidx_len = exidx_sec->sh_size / 8;
9199 aux->funtab = xmalloc (aux->nsyms * sizeof (Elf_Internal_Sym));
9200 for (nfuns = 0, j = 0; j < aux->nsyms; j++)
9201 if (aux->symtab[j].st_value && ELF_ST_TYPE (aux->symtab[j].st_info) == STT_FUNC)
9202 aux->funtab[nfuns++] = aux->symtab[j];
9204 qsort (aux->funtab, aux->nfuns, sizeof (Elf_Internal_Sym), symcmp);
9206 for (i = 0; i < exidx_len; i++)
9208 unsigned int exidx_fn, exidx_entry;
9209 struct absaddr fn_addr, entry_addr;
9212 fputc ('\n', stdout);
9214 if (! get_unwind_section_word (filedata, aux, & exidx_arm_sec, exidx_sec,
9215 8 * i, & exidx_fn, & fn_addr, NULL)
9216 || ! get_unwind_section_word (filedata, aux, & exidx_arm_sec, exidx_sec,
9217 8 * i + 4, & exidx_entry, & entry_addr, NULL))
9220 arm_free_section (& exidx_arm_sec);
9221 arm_free_section (& extab_arm_sec);
9225 /* ARM EHABI, Section 5:
9226 An index table entry consists of 2 words.
9227 The first word contains a prel31 offset to the start of a function, with bit 31 clear. */
9228 if (exidx_fn & 0x80000000)
9230 warn (_("corrupt index table entry: %x\n"), exidx_fn);
9234 fn = arm_expand_prel31 (filedata, exidx_fn, exidx_sec->sh_addr + 8 * i);
9236 arm_print_vma_and_name (filedata, aux, fn, fn_addr);
9237 fputs (": ", stdout);
9239 if (exidx_entry == 1)
9241 print_vma (exidx_entry, PREFIX_HEX);
9242 fputs (" [cantunwind]\n", stdout);
9244 else if (exidx_entry & 0x80000000)
9246 print_vma (exidx_entry, PREFIX_HEX);
9247 fputc ('\n', stdout);
9248 decode_arm_unwind (filedata, aux, exidx_entry, 4, 0, NULL, NULL);
9252 bfd_vma table, table_offset = 0;
9253 Elf_Internal_Shdr *table_sec;
9255 fputs ("@", stdout);
9256 table = arm_expand_prel31 (filedata, exidx_entry, exidx_sec->sh_addr + 8 * i + 4);
9257 print_vma (table, PREFIX_HEX);
9260 /* Locate the matching .ARM.extab. */
9261 if (entry_addr.section != SHN_UNDEF
9262 && entry_addr.section < filedata->file_header.e_shnum)
9264 table_sec = filedata->section_headers + entry_addr.section;
9265 table_offset = entry_addr.offset;
9267 if (table_offset > table_sec->sh_size
9268 || ((bfd_signed_vma) table_offset) < 0)
9270 warn (_("Unwind entry contains corrupt offset (0x%lx) into section %s\n"),
9271 (unsigned long) table_offset,
9272 printable_section_name (filedata, table_sec));
9279 table_sec = find_section_by_address (filedata, table);
9280 if (table_sec != NULL)
9281 table_offset = table - table_sec->sh_addr;
9284 if (table_sec == NULL)
9286 warn (_("Could not locate .ARM.extab section containing 0x%lx.\n"),
9287 (unsigned long) table);
9292 if (! decode_arm_unwind (filedata, aux, 0, 0, table_offset, table_sec,
9301 arm_free_section (&exidx_arm_sec);
9302 arm_free_section (&extab_arm_sec);
9307 /* Used for both ARM and C6X unwinding tables. */
9310 arm_process_unwind (Filedata * filedata)
9312 struct arm_unw_aux_info aux;
9313 Elf_Internal_Shdr *unwsec = NULL;
9314 Elf_Internal_Shdr *strsec;
9315 Elf_Internal_Shdr *sec;
9317 unsigned int sec_type;
9318 bfd_boolean res = TRUE;
9320 switch (filedata->file_header.e_machine)
9323 sec_type = SHT_ARM_EXIDX;
9327 sec_type = SHT_C6000_UNWIND;
9331 error (_("Unsupported architecture type %d encountered when processing unwind table\n"),
9332 filedata->file_header.e_machine);
9336 if (filedata->string_table == NULL)
9339 memset (& aux, 0, sizeof (aux));
9340 aux.filedata = filedata;
9342 for (i = 0, sec = filedata->section_headers; i < filedata->file_header.e_shnum; ++i, ++sec)
9344 if (sec->sh_type == SHT_SYMTAB && sec->sh_link < filedata->file_header.e_shnum)
9346 aux.symtab = GET_ELF_SYMBOLS (filedata, sec, & aux.nsyms);
9348 strsec = filedata->section_headers + sec->sh_link;
9350 /* PR binutils/17531 file: 011-12666-0.004. */
9351 if (aux.strtab != NULL)
9353 error (_("Multiple string tables found in file.\n"));
9357 aux.strtab = get_data (NULL, filedata, strsec->sh_offset,
9358 1, strsec->sh_size, _("string table"));
9359 aux.strtab_size = aux.strtab != NULL ? strsec->sh_size : 0;
9361 else if (sec->sh_type == sec_type)
9366 printf (_("\nThere are no unwind sections in this file.\n"));
9368 for (i = 0, sec = filedata->section_headers; i < filedata->file_header.e_shnum; ++i, ++sec)
9370 if (sec->sh_type == sec_type)
9372 unsigned long num_unwind = sec->sh_size / (2 * eh_addr_size);
9373 printf (ngettext ("\nUnwind section '%s' at offset 0x%lx "
9374 "contains %lu entry:\n",
9375 "\nUnwind section '%s' at offset 0x%lx "
9376 "contains %lu entries:\n",
9378 printable_section_name (filedata, sec),
9379 (unsigned long) sec->sh_offset,
9382 if (! dump_arm_unwind (filedata, &aux, sec))
9390 free ((char *) aux.strtab);
9396 process_unwind (Filedata * filedata)
9398 struct unwind_handler
9400 unsigned int machtype;
9401 bfd_boolean (* handler)(Filedata *);
9404 { EM_ARM, arm_process_unwind },
9405 { EM_IA_64, ia64_process_unwind },
9406 { EM_PARISC, hppa_process_unwind },
9407 { EM_TI_C6000, arm_process_unwind },
9415 for (i = 0; handlers[i].handler != NULL; i++)
9416 if (filedata->file_header.e_machine == handlers[i].machtype)
9417 return handlers[i].handler (filedata);
9419 printf (_("\nThe decoding of unwind sections for machine type %s is not currently supported.\n"),
9420 get_machine_name (filedata->file_header.e_machine));
9425 dynamic_section_aarch64_val (Elf_Internal_Dyn * entry)
9427 switch (entry->d_tag)
9429 case DT_AARCH64_BTI_PLT:
9430 case DT_AARCH64_PAC_PLT:
9433 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
9440 dynamic_section_mips_val (Elf_Internal_Dyn * entry)
9442 switch (entry->d_tag)
9445 if (entry->d_un.d_val == 0)
9449 static const char * opts[] =
9451 "QUICKSTART", "NOTPOT", "NO_LIBRARY_REPLACEMENT",
9452 "NO_MOVE", "SGI_ONLY", "GUARANTEE_INIT", "DELTA_C_PLUS_PLUS",
9453 "GUARANTEE_START_INIT", "PIXIE", "DEFAULT_DELAY_LOAD",
9454 "REQUICKSTART", "REQUICKSTARTED", "CORD", "NO_UNRES_UNDEF",
9458 bfd_boolean first = TRUE;
9460 for (cnt = 0; cnt < ARRAY_SIZE (opts); ++cnt)
9461 if (entry->d_un.d_val & (1 << cnt))
9463 printf ("%s%s", first ? "" : " ", opts[cnt]);
9469 case DT_MIPS_IVERSION:
9470 if (VALID_DYNAMIC_NAME (entry->d_un.d_val))
9471 printf (_("Interface Version: %s"), GET_DYNAMIC_NAME (entry->d_un.d_val));
9475 sprintf_vma (buf, entry->d_un.d_ptr);
9476 /* Note: coded this way so that there is a single string for translation. */
9477 printf (_("<corrupt: %s>"), buf);
9481 case DT_MIPS_TIME_STAMP:
9485 time_t atime = entry->d_un.d_val;
9487 tmp = gmtime (&atime);
9488 /* PR 17531: file: 6accc532. */
9490 snprintf (timebuf, sizeof (timebuf), _("<corrupt>"));
9492 snprintf (timebuf, sizeof (timebuf), "%04u-%02u-%02uT%02u:%02u:%02u",
9493 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
9494 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
9495 printf (_("Time Stamp: %s"), timebuf);
9499 case DT_MIPS_RLD_VERSION:
9500 case DT_MIPS_LOCAL_GOTNO:
9501 case DT_MIPS_CONFLICTNO:
9502 case DT_MIPS_LIBLISTNO:
9503 case DT_MIPS_SYMTABNO:
9504 case DT_MIPS_UNREFEXTNO:
9505 case DT_MIPS_HIPAGENO:
9506 case DT_MIPS_DELTA_CLASS_NO:
9507 case DT_MIPS_DELTA_INSTANCE_NO:
9508 case DT_MIPS_DELTA_RELOC_NO:
9509 case DT_MIPS_DELTA_SYM_NO:
9510 case DT_MIPS_DELTA_CLASSSYM_NO:
9511 case DT_MIPS_COMPACT_SIZE:
9512 print_vma (entry->d_un.d_val, DEC);
9516 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
9522 dynamic_section_parisc_val (Elf_Internal_Dyn * entry)
9524 switch (entry->d_tag)
9526 case DT_HP_DLD_FLAGS:
9535 { DT_HP_DEBUG_PRIVATE, "HP_DEBUG_PRIVATE" },
9536 { DT_HP_DEBUG_CALLBACK, "HP_DEBUG_CALLBACK" },
9537 { DT_HP_DEBUG_CALLBACK_BOR, "HP_DEBUG_CALLBACK_BOR" },
9538 { DT_HP_NO_ENVVAR, "HP_NO_ENVVAR" },
9539 { DT_HP_BIND_NOW, "HP_BIND_NOW" },
9540 { DT_HP_BIND_NONFATAL, "HP_BIND_NONFATAL" },
9541 { DT_HP_BIND_VERBOSE, "HP_BIND_VERBOSE" },
9542 { DT_HP_BIND_RESTRICTED, "HP_BIND_RESTRICTED" },
9543 { DT_HP_BIND_SYMBOLIC, "HP_BIND_SYMBOLIC" },
9544 { DT_HP_RPATH_FIRST, "HP_RPATH_FIRST" },
9545 { DT_HP_BIND_DEPTH_FIRST, "HP_BIND_DEPTH_FIRST" },
9546 { DT_HP_GST, "HP_GST" },
9547 { DT_HP_SHLIB_FIXED, "HP_SHLIB_FIXED" },
9548 { DT_HP_MERGE_SHLIB_SEG, "HP_MERGE_SHLIB_SEG" },
9549 { DT_HP_NODELETE, "HP_NODELETE" },
9550 { DT_HP_GROUP, "HP_GROUP" },
9551 { DT_HP_PROTECT_LINKAGE_TABLE, "HP_PROTECT_LINKAGE_TABLE" }
9553 bfd_boolean first = TRUE;
9555 bfd_vma val = entry->d_un.d_val;
9557 for (cnt = 0; cnt < ARRAY_SIZE (flags); ++cnt)
9558 if (val & flags[cnt].bit)
9562 fputs (flags[cnt].str, stdout);
9564 val ^= flags[cnt].bit;
9567 if (val != 0 || first)
9571 print_vma (val, HEX);
9577 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
9585 /* VMS vs Unix time offset and factor. */
9587 #define VMS_EPOCH_OFFSET 35067168000000000LL
9588 #define VMS_GRANULARITY_FACTOR 10000000
9590 /* Display a VMS time in a human readable format. */
9593 print_vms_time (bfd_int64_t vmstime)
9598 unxtime = (vmstime - VMS_EPOCH_OFFSET) / VMS_GRANULARITY_FACTOR;
9599 tm = gmtime (&unxtime);
9600 printf ("%04u-%02u-%02uT%02u:%02u:%02u",
9601 tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
9602 tm->tm_hour, tm->tm_min, tm->tm_sec);
9607 dynamic_section_ia64_val (Elf_Internal_Dyn * entry)
9609 switch (entry->d_tag)
9611 case DT_IA_64_PLT_RESERVE:
9612 /* First 3 slots reserved. */
9613 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
9615 print_vma (entry->d_un.d_ptr + (3 * 8), PREFIX_HEX);
9618 case DT_IA_64_VMS_LINKTIME:
9620 print_vms_time (entry->d_un.d_val);
9624 case DT_IA_64_VMS_LNKFLAGS:
9625 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
9626 if (entry->d_un.d_val & VMS_LF_CALL_DEBUG)
9627 printf (" CALL_DEBUG");
9628 if (entry->d_un.d_val & VMS_LF_NOP0BUFS)
9629 printf (" NOP0BUFS");
9630 if (entry->d_un.d_val & VMS_LF_P0IMAGE)
9631 printf (" P0IMAGE");
9632 if (entry->d_un.d_val & VMS_LF_MKTHREADS)
9633 printf (" MKTHREADS");
9634 if (entry->d_un.d_val & VMS_LF_UPCALLS)
9635 printf (" UPCALLS");
9636 if (entry->d_un.d_val & VMS_LF_IMGSTA)
9638 if (entry->d_un.d_val & VMS_LF_INITIALIZE)
9639 printf (" INITIALIZE");
9640 if (entry->d_un.d_val & VMS_LF_MAIN)
9642 if (entry->d_un.d_val & VMS_LF_EXE_INIT)
9643 printf (" EXE_INIT");
9644 if (entry->d_un.d_val & VMS_LF_TBK_IN_IMG)
9645 printf (" TBK_IN_IMG");
9646 if (entry->d_un.d_val & VMS_LF_DBG_IN_IMG)
9647 printf (" DBG_IN_IMG");
9648 if (entry->d_un.d_val & VMS_LF_TBK_IN_DSF)
9649 printf (" TBK_IN_DSF");
9650 if (entry->d_un.d_val & VMS_LF_DBG_IN_DSF)
9651 printf (" DBG_IN_DSF");
9652 if (entry->d_un.d_val & VMS_LF_SIGNATURES)
9653 printf (" SIGNATURES");
9654 if (entry->d_un.d_val & VMS_LF_REL_SEG_OFF)
9655 printf (" REL_SEG_OFF");
9659 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
9666 get_32bit_dynamic_section (Filedata * filedata)
9668 Elf32_External_Dyn * edyn;
9669 Elf32_External_Dyn * ext;
9670 Elf_Internal_Dyn * entry;
9672 edyn = (Elf32_External_Dyn *) get_data (NULL, filedata, dynamic_addr, 1,
9673 dynamic_size, _("dynamic section"));
9677 /* SGI's ELF has more than one section in the DYNAMIC segment, and we
9678 might not have the luxury of section headers. Look for the DT_NULL
9679 terminator to determine the number of entries. */
9680 for (ext = edyn, dynamic_nent = 0;
9681 (char *) (ext + 1) <= (char *) edyn + dynamic_size;
9685 if (BYTE_GET (ext->d_tag) == DT_NULL)
9689 dynamic_section = (Elf_Internal_Dyn *) cmalloc (dynamic_nent,
9691 if (dynamic_section == NULL)
9693 error (_("Out of memory allocating space for %lu dynamic entries\n"),
9694 (unsigned long) dynamic_nent);
9699 for (ext = edyn, entry = dynamic_section;
9700 entry < dynamic_section + dynamic_nent;
9703 entry->d_tag = BYTE_GET (ext->d_tag);
9704 entry->d_un.d_val = BYTE_GET (ext->d_un.d_val);
9713 get_64bit_dynamic_section (Filedata * filedata)
9715 Elf64_External_Dyn * edyn;
9716 Elf64_External_Dyn * ext;
9717 Elf_Internal_Dyn * entry;
9719 /* Read in the data. */
9720 edyn = (Elf64_External_Dyn *) get_data (NULL, filedata, dynamic_addr, 1,
9721 dynamic_size, _("dynamic section"));
9725 /* SGI's ELF has more than one section in the DYNAMIC segment, and we
9726 might not have the luxury of section headers. Look for the DT_NULL
9727 terminator to determine the number of entries. */
9728 for (ext = edyn, dynamic_nent = 0;
9729 /* PR 17533 file: 033-67080-0.004 - do not read past end of buffer. */
9730 (char *) (ext + 1) <= (char *) edyn + dynamic_size;
9734 if (BYTE_GET (ext->d_tag) == DT_NULL)
9738 dynamic_section = (Elf_Internal_Dyn *) cmalloc (dynamic_nent,
9740 if (dynamic_section == NULL)
9742 error (_("Out of memory allocating space for %lu dynamic entries\n"),
9743 (unsigned long) dynamic_nent);
9748 /* Convert from external to internal formats. */
9749 for (ext = edyn, entry = dynamic_section;
9750 entry < dynamic_section + dynamic_nent;
9753 entry->d_tag = BYTE_GET (ext->d_tag);
9754 entry->d_un.d_val = BYTE_GET (ext->d_un.d_val);
9763 print_dynamic_flags (bfd_vma flags)
9765 bfd_boolean first = TRUE;
9771 flag = flags & - flags;
9781 case DF_ORIGIN: fputs ("ORIGIN", stdout); break;
9782 case DF_SYMBOLIC: fputs ("SYMBOLIC", stdout); break;
9783 case DF_TEXTREL: fputs ("TEXTREL", stdout); break;
9784 case DF_BIND_NOW: fputs ("BIND_NOW", stdout); break;
9785 case DF_STATIC_TLS: fputs ("STATIC_TLS", stdout); break;
9786 default: fputs (_("unknown"), stdout); break;
9792 /* Parse and display the contents of the dynamic section. */
9795 process_dynamic_section (Filedata * filedata)
9797 Elf_Internal_Dyn * entry;
9799 if (dynamic_size == 0)
9802 printf (_("\nThere is no dynamic section in this file.\n"));
9809 if (! get_32bit_dynamic_section (filedata))
9814 if (! get_64bit_dynamic_section (filedata))
9818 /* Find the appropriate symbol table. */
9819 if (dynamic_symbols == NULL)
9821 for (entry = dynamic_section;
9822 entry < dynamic_section + dynamic_nent;
9825 Elf_Internal_Shdr section;
9827 if (entry->d_tag != DT_SYMTAB)
9830 dynamic_info[DT_SYMTAB] = entry->d_un.d_val;
9832 /* Since we do not know how big the symbol table is,
9833 we default to reading in the entire file (!) and
9834 processing that. This is overkill, I know, but it
9836 section.sh_offset = offset_from_vma (filedata, entry->d_un.d_val, 0);
9837 if ((bfd_size_type) section.sh_offset > filedata->file_size)
9839 /* See PR 21379 for a reproducer. */
9840 error (_("Invalid DT_SYMTAB entry: %lx"), (long) section.sh_offset);
9844 if (archive_file_offset != 0)
9845 section.sh_size = archive_file_size - section.sh_offset;
9847 section.sh_size = filedata->file_size - section.sh_offset;
9850 section.sh_entsize = sizeof (Elf32_External_Sym);
9852 section.sh_entsize = sizeof (Elf64_External_Sym);
9853 section.sh_name = filedata->string_table_length;
9855 if (dynamic_symbols != NULL)
9857 error (_("Multiple dynamic symbol table sections found\n"));
9858 free (dynamic_symbols);
9860 dynamic_symbols = GET_ELF_SYMBOLS (filedata, §ion, & num_dynamic_syms);
9861 if (num_dynamic_syms < 1)
9863 error (_("Unable to determine the number of symbols to load\n"));
9869 /* Similarly find a string table. */
9870 if (dynamic_strings == NULL)
9872 for (entry = dynamic_section;
9873 entry < dynamic_section + dynamic_nent;
9876 unsigned long offset;
9879 if (entry->d_tag != DT_STRTAB)
9882 dynamic_info[DT_STRTAB] = entry->d_un.d_val;
9884 /* Since we do not know how big the string table is,
9885 we default to reading in the entire file (!) and
9886 processing that. This is overkill, I know, but it
9889 offset = offset_from_vma (filedata, entry->d_un.d_val, 0);
9891 if (archive_file_offset != 0)
9892 str_tab_len = archive_file_size - offset;
9894 str_tab_len = filedata->file_size - offset;
9896 if (str_tab_len < 1)
9899 (_("Unable to determine the length of the dynamic string table\n"));
9903 if (dynamic_strings != NULL)
9905 error (_("Multiple dynamic string tables found\n"));
9906 free (dynamic_strings);
9909 dynamic_strings = (char *) get_data (NULL, filedata, offset, 1,
9911 _("dynamic string table"));
9912 dynamic_strings_length = dynamic_strings == NULL ? 0 : str_tab_len;
9916 /* And find the syminfo section if available. */
9917 if (dynamic_syminfo == NULL)
9919 unsigned long syminsz = 0;
9921 for (entry = dynamic_section;
9922 entry < dynamic_section + dynamic_nent;
9925 if (entry->d_tag == DT_SYMINENT)
9927 /* Note: these braces are necessary to avoid a syntax
9928 error from the SunOS4 C compiler. */
9929 /* PR binutils/17531: A corrupt file can trigger this test.
9930 So do not use an assert, instead generate an error message. */
9931 if (sizeof (Elf_External_Syminfo) != entry->d_un.d_val)
9932 error (_("Bad value (%d) for SYMINENT entry\n"),
9933 (int) entry->d_un.d_val);
9935 else if (entry->d_tag == DT_SYMINSZ)
9936 syminsz = entry->d_un.d_val;
9937 else if (entry->d_tag == DT_SYMINFO)
9938 dynamic_syminfo_offset = offset_from_vma (filedata, entry->d_un.d_val,
9942 if (dynamic_syminfo_offset != 0 && syminsz != 0)
9944 Elf_External_Syminfo * extsyminfo;
9945 Elf_External_Syminfo * extsym;
9946 Elf_Internal_Syminfo * syminfo;
9948 /* There is a syminfo section. Read the data. */
9949 extsyminfo = (Elf_External_Syminfo *)
9950 get_data (NULL, filedata, dynamic_syminfo_offset, 1, syminsz,
9951 _("symbol information"));
9955 if (dynamic_syminfo != NULL)
9957 error (_("Multiple dynamic symbol information sections found\n"));
9958 free (dynamic_syminfo);
9960 dynamic_syminfo = (Elf_Internal_Syminfo *) malloc (syminsz);
9961 if (dynamic_syminfo == NULL)
9963 error (_("Out of memory allocating %lu byte for dynamic symbol info\n"),
9964 (unsigned long) syminsz);
9968 dynamic_syminfo_nent = syminsz / sizeof (Elf_External_Syminfo);
9969 for (syminfo = dynamic_syminfo, extsym = extsyminfo;
9970 syminfo < dynamic_syminfo + dynamic_syminfo_nent;
9971 ++syminfo, ++extsym)
9973 syminfo->si_boundto = BYTE_GET (extsym->si_boundto);
9974 syminfo->si_flags = BYTE_GET (extsym->si_flags);
9981 if (do_dynamic && dynamic_addr)
9982 printf (ngettext ("\nDynamic section at offset 0x%lx "
9983 "contains %lu entry:\n",
9984 "\nDynamic section at offset 0x%lx "
9985 "contains %lu entries:\n",
9987 dynamic_addr, (unsigned long) dynamic_nent);
9989 printf (_(" Tag Type Name/Value\n"));
9991 for (entry = dynamic_section;
9992 entry < dynamic_section + dynamic_nent;
10000 print_vma (entry->d_tag, FULL_HEX);
10001 dtype = get_dynamic_type (filedata, entry->d_tag);
10002 printf (" (%s)%*s", dtype,
10003 ((is_32bit_elf ? 27 : 19) - (int) strlen (dtype)), " ");
10006 switch (entry->d_tag)
10010 print_dynamic_flags (entry->d_un.d_val);
10020 switch (entry->d_tag)
10023 printf (_("Auxiliary library"));
10027 printf (_("Filter library"));
10031 printf (_("Configuration file"));
10035 printf (_("Dependency audit library"));
10039 printf (_("Audit library"));
10043 if (VALID_DYNAMIC_NAME (entry->d_un.d_val))
10044 printf (": [%s]\n", GET_DYNAMIC_NAME (entry->d_un.d_val));
10048 print_vma (entry->d_un.d_val, PREFIX_HEX);
10057 printf (_("Flags:"));
10059 if (entry->d_un.d_val == 0)
10060 printf (_(" None\n"));
10063 unsigned long int val = entry->d_un.d_val;
10065 if (val & DTF_1_PARINIT)
10067 printf (" PARINIT");
10068 val ^= DTF_1_PARINIT;
10070 if (val & DTF_1_CONFEXP)
10072 printf (" CONFEXP");
10073 val ^= DTF_1_CONFEXP;
10076 printf (" %lx", val);
10085 printf (_("Flags:"));
10087 if (entry->d_un.d_val == 0)
10088 printf (_(" None\n"));
10091 unsigned long int val = entry->d_un.d_val;
10093 if (val & DF_P1_LAZYLOAD)
10095 printf (" LAZYLOAD");
10096 val ^= DF_P1_LAZYLOAD;
10098 if (val & DF_P1_GROUPPERM)
10100 printf (" GROUPPERM");
10101 val ^= DF_P1_GROUPPERM;
10104 printf (" %lx", val);
10113 printf (_("Flags:"));
10114 if (entry->d_un.d_val == 0)
10115 printf (_(" None\n"));
10118 unsigned long int val = entry->d_un.d_val;
10120 if (val & DF_1_NOW)
10125 if (val & DF_1_GLOBAL)
10127 printf (" GLOBAL");
10128 val ^= DF_1_GLOBAL;
10130 if (val & DF_1_GROUP)
10135 if (val & DF_1_NODELETE)
10137 printf (" NODELETE");
10138 val ^= DF_1_NODELETE;
10140 if (val & DF_1_LOADFLTR)
10142 printf (" LOADFLTR");
10143 val ^= DF_1_LOADFLTR;
10145 if (val & DF_1_INITFIRST)
10147 printf (" INITFIRST");
10148 val ^= DF_1_INITFIRST;
10150 if (val & DF_1_NOOPEN)
10152 printf (" NOOPEN");
10153 val ^= DF_1_NOOPEN;
10155 if (val & DF_1_ORIGIN)
10157 printf (" ORIGIN");
10158 val ^= DF_1_ORIGIN;
10160 if (val & DF_1_DIRECT)
10162 printf (" DIRECT");
10163 val ^= DF_1_DIRECT;
10165 if (val & DF_1_TRANS)
10170 if (val & DF_1_INTERPOSE)
10172 printf (" INTERPOSE");
10173 val ^= DF_1_INTERPOSE;
10175 if (val & DF_1_NODEFLIB)
10177 printf (" NODEFLIB");
10178 val ^= DF_1_NODEFLIB;
10180 if (val & DF_1_NODUMP)
10182 printf (" NODUMP");
10183 val ^= DF_1_NODUMP;
10185 if (val & DF_1_CONFALT)
10187 printf (" CONFALT");
10188 val ^= DF_1_CONFALT;
10190 if (val & DF_1_ENDFILTEE)
10192 printf (" ENDFILTEE");
10193 val ^= DF_1_ENDFILTEE;
10195 if (val & DF_1_DISPRELDNE)
10197 printf (" DISPRELDNE");
10198 val ^= DF_1_DISPRELDNE;
10200 if (val & DF_1_DISPRELPND)
10202 printf (" DISPRELPND");
10203 val ^= DF_1_DISPRELPND;
10205 if (val & DF_1_NODIRECT)
10207 printf (" NODIRECT");
10208 val ^= DF_1_NODIRECT;
10210 if (val & DF_1_IGNMULDEF)
10212 printf (" IGNMULDEF");
10213 val ^= DF_1_IGNMULDEF;
10215 if (val & DF_1_NOKSYMS)
10217 printf (" NOKSYMS");
10218 val ^= DF_1_NOKSYMS;
10220 if (val & DF_1_NOHDR)
10225 if (val & DF_1_EDITED)
10227 printf (" EDITED");
10228 val ^= DF_1_EDITED;
10230 if (val & DF_1_NORELOC)
10232 printf (" NORELOC");
10233 val ^= DF_1_NORELOC;
10235 if (val & DF_1_SYMINTPOSE)
10237 printf (" SYMINTPOSE");
10238 val ^= DF_1_SYMINTPOSE;
10240 if (val & DF_1_GLOBAUDIT)
10242 printf (" GLOBAUDIT");
10243 val ^= DF_1_GLOBAUDIT;
10245 if (val & DF_1_SINGLETON)
10247 printf (" SINGLETON");
10248 val ^= DF_1_SINGLETON;
10250 if (val & DF_1_STUB)
10255 if (val & DF_1_PIE)
10260 if (val & DF_1_KMOD)
10265 if (val & DF_1_WEAKFILTER)
10267 printf (" WEAKFILTER");
10268 val ^= DF_1_WEAKFILTER;
10270 if (val & DF_1_NOCOMMON)
10272 printf (" NOCOMMON");
10273 val ^= DF_1_NOCOMMON;
10276 printf (" %lx", val);
10283 dynamic_info[entry->d_tag] = entry->d_un.d_val;
10285 puts (get_dynamic_type (filedata, entry->d_un.d_val));
10305 dynamic_info[entry->d_tag] = entry->d_un.d_val;
10311 if (VALID_DYNAMIC_NAME (entry->d_un.d_val))
10312 name = GET_DYNAMIC_NAME (entry->d_un.d_val);
10318 switch (entry->d_tag)
10321 printf (_("Shared library: [%s]"), name);
10323 if (streq (name, program_interpreter))
10324 printf (_(" program interpreter"));
10328 printf (_("Library soname: [%s]"), name);
10332 printf (_("Library rpath: [%s]"), name);
10336 printf (_("Library runpath: [%s]"), name);
10340 print_vma (entry->d_un.d_val, PREFIX_HEX);
10345 print_vma (entry->d_un.d_val, PREFIX_HEX);
10358 dynamic_info[entry->d_tag] = entry->d_un.d_val;
10359 /* Fall through. */
10363 case DT_INIT_ARRAYSZ:
10364 case DT_FINI_ARRAYSZ:
10365 case DT_GNU_CONFLICTSZ:
10366 case DT_GNU_LIBLISTSZ:
10369 print_vma (entry->d_un.d_val, UNSIGNED);
10370 printf (_(" (bytes)\n"));
10375 case DT_VERNEEDNUM:
10380 print_vma (entry->d_un.d_val, UNSIGNED);
10389 case DT_INIT_ARRAY:
10390 case DT_FINI_ARRAY:
10393 if (entry->d_tag == DT_USED
10394 && VALID_DYNAMIC_NAME (entry->d_un.d_val))
10396 char * name = GET_DYNAMIC_NAME (entry->d_un.d_val);
10400 printf (_("Not needed object: [%s]\n"), name);
10405 print_vma (entry->d_un.d_val, PREFIX_HEX);
10411 /* The value of this entry is ignored. */
10416 case DT_GNU_PRELINKED:
10420 time_t atime = entry->d_un.d_val;
10422 tmp = gmtime (&atime);
10423 /* PR 17533 file: 041-1244816-0.004. */
10425 printf (_("<corrupt time val: %lx"),
10426 (unsigned long) atime);
10428 printf ("%04u-%02u-%02uT%02u:%02u:%02u\n",
10429 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
10430 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
10436 dynamic_info_DT_GNU_HASH = entry->d_un.d_val;
10439 print_vma (entry->d_un.d_val, PREFIX_HEX);
10445 if ((entry->d_tag >= DT_VERSYM) && (entry->d_tag <= DT_VERNEEDNUM))
10446 version_info[DT_VERSIONTAGIDX (entry->d_tag)] =
10451 switch (filedata->file_header.e_machine)
10454 dynamic_section_aarch64_val (entry);
10457 case EM_MIPS_RS3_LE:
10458 dynamic_section_mips_val (entry);
10461 dynamic_section_parisc_val (entry);
10464 dynamic_section_ia64_val (entry);
10467 print_vma (entry->d_un.d_val, PREFIX_HEX);
10479 get_ver_flags (unsigned int flags)
10481 static char buff[128];
10488 if (flags & VER_FLG_BASE)
10489 strcat (buff, "BASE");
10491 if (flags & VER_FLG_WEAK)
10493 if (flags & VER_FLG_BASE)
10494 strcat (buff, " | ");
10496 strcat (buff, "WEAK");
10499 if (flags & VER_FLG_INFO)
10501 if (flags & (VER_FLG_BASE|VER_FLG_WEAK))
10502 strcat (buff, " | ");
10504 strcat (buff, "INFO");
10507 if (flags & ~(VER_FLG_BASE | VER_FLG_WEAK | VER_FLG_INFO))
10509 if (flags & (VER_FLG_BASE | VER_FLG_WEAK | VER_FLG_INFO))
10510 strcat (buff, " | ");
10512 strcat (buff, _("<unknown>"));
10518 /* Display the contents of the version sections. */
10521 process_version_sections (Filedata * filedata)
10523 Elf_Internal_Shdr * section;
10525 bfd_boolean found = FALSE;
10530 for (i = 0, section = filedata->section_headers;
10531 i < filedata->file_header.e_shnum;
10534 switch (section->sh_type)
10536 case SHT_GNU_verdef:
10538 Elf_External_Verdef * edefs;
10545 printf (ngettext ("\nVersion definition section '%s' "
10546 "contains %u entry:\n",
10547 "\nVersion definition section '%s' "
10548 "contains %u entries:\n",
10550 printable_section_name (filedata, section),
10553 printf (_(" Addr: 0x"));
10554 printf_vma (section->sh_addr);
10555 printf (_(" Offset: %#08lx Link: %u (%s)\n"),
10556 (unsigned long) section->sh_offset, section->sh_link,
10557 printable_section_name_from_index (filedata, section->sh_link));
10559 edefs = (Elf_External_Verdef *)
10560 get_data (NULL, filedata, section->sh_offset, 1,section->sh_size,
10561 _("version definition section"));
10564 endbuf = (char *) edefs + section->sh_size;
10566 for (idx = cnt = 0; cnt < section->sh_info; ++cnt)
10569 Elf_External_Verdef * edef;
10570 Elf_Internal_Verdef ent;
10571 Elf_External_Verdaux * eaux;
10572 Elf_Internal_Verdaux aux;
10573 unsigned long isum;
10576 vstart = ((char *) edefs) + idx;
10577 if (vstart + sizeof (*edef) > endbuf)
10580 edef = (Elf_External_Verdef *) vstart;
10582 ent.vd_version = BYTE_GET (edef->vd_version);
10583 ent.vd_flags = BYTE_GET (edef->vd_flags);
10584 ent.vd_ndx = BYTE_GET (edef->vd_ndx);
10585 ent.vd_cnt = BYTE_GET (edef->vd_cnt);
10586 ent.vd_hash = BYTE_GET (edef->vd_hash);
10587 ent.vd_aux = BYTE_GET (edef->vd_aux);
10588 ent.vd_next = BYTE_GET (edef->vd_next);
10590 printf (_(" %#06lx: Rev: %d Flags: %s"),
10591 idx, ent.vd_version, get_ver_flags (ent.vd_flags));
10593 printf (_(" Index: %d Cnt: %d "),
10594 ent.vd_ndx, ent.vd_cnt);
10596 /* Check for overflow. */
10597 if (ent.vd_aux > (size_t) (endbuf - vstart))
10600 vstart += ent.vd_aux;
10602 if (vstart + sizeof (*eaux) > endbuf)
10604 eaux = (Elf_External_Verdaux *) vstart;
10606 aux.vda_name = BYTE_GET (eaux->vda_name);
10607 aux.vda_next = BYTE_GET (eaux->vda_next);
10609 if (VALID_DYNAMIC_NAME (aux.vda_name))
10610 printf (_("Name: %s\n"), GET_DYNAMIC_NAME (aux.vda_name));
10612 printf (_("Name index: %ld\n"), aux.vda_name);
10614 isum = idx + ent.vd_aux;
10616 for (j = 1; j < ent.vd_cnt; j++)
10618 if (aux.vda_next < sizeof (*eaux)
10619 && !(j == ent.vd_cnt - 1 && aux.vda_next == 0))
10621 warn (_("Invalid vda_next field of %lx\n"),
10626 /* Check for overflow. */
10627 if (aux.vda_next > (size_t) (endbuf - vstart))
10630 isum += aux.vda_next;
10631 vstart += aux.vda_next;
10633 if (vstart + sizeof (*eaux) > endbuf)
10635 eaux = (Elf_External_Verdaux *) vstart;
10637 aux.vda_name = BYTE_GET (eaux->vda_name);
10638 aux.vda_next = BYTE_GET (eaux->vda_next);
10640 if (VALID_DYNAMIC_NAME (aux.vda_name))
10641 printf (_(" %#06lx: Parent %d: %s\n"),
10642 isum, j, GET_DYNAMIC_NAME (aux.vda_name));
10644 printf (_(" %#06lx: Parent %d, name index: %ld\n"),
10645 isum, j, aux.vda_name);
10648 if (j < ent.vd_cnt)
10649 printf (_(" Version def aux past end of section\n"));
10652 file: id:000001,src:000172+005151,op:splice,rep:2. */
10653 if (ent.vd_next < sizeof (*edef)
10654 && !(cnt == section->sh_info - 1 && ent.vd_next == 0))
10656 warn (_("Invalid vd_next field of %lx\n"), ent.vd_next);
10657 cnt = section->sh_info;
10660 if (ent.vd_next > (size_t) (endbuf - ((char *) edefs + idx)))
10663 idx += ent.vd_next;
10666 if (cnt < section->sh_info)
10667 printf (_(" Version definition past end of section\n"));
10673 case SHT_GNU_verneed:
10675 Elf_External_Verneed * eneed;
10682 printf (ngettext ("\nVersion needs section '%s' "
10683 "contains %u entry:\n",
10684 "\nVersion needs section '%s' "
10685 "contains %u entries:\n",
10687 printable_section_name (filedata, section), section->sh_info);
10689 printf (_(" Addr: 0x"));
10690 printf_vma (section->sh_addr);
10691 printf (_(" Offset: %#08lx Link: %u (%s)\n"),
10692 (unsigned long) section->sh_offset, section->sh_link,
10693 printable_section_name_from_index (filedata, section->sh_link));
10695 eneed = (Elf_External_Verneed *) get_data (NULL, filedata,
10696 section->sh_offset, 1,
10698 _("Version Needs section"));
10701 endbuf = (char *) eneed + section->sh_size;
10703 for (idx = cnt = 0; cnt < section->sh_info; ++cnt)
10705 Elf_External_Verneed * entry;
10706 Elf_Internal_Verneed ent;
10707 unsigned long isum;
10711 vstart = ((char *) eneed) + idx;
10712 if (vstart + sizeof (*entry) > endbuf)
10715 entry = (Elf_External_Verneed *) vstart;
10717 ent.vn_version = BYTE_GET (entry->vn_version);
10718 ent.vn_cnt = BYTE_GET (entry->vn_cnt);
10719 ent.vn_file = BYTE_GET (entry->vn_file);
10720 ent.vn_aux = BYTE_GET (entry->vn_aux);
10721 ent.vn_next = BYTE_GET (entry->vn_next);
10723 printf (_(" %#06lx: Version: %d"), idx, ent.vn_version);
10725 if (VALID_DYNAMIC_NAME (ent.vn_file))
10726 printf (_(" File: %s"), GET_DYNAMIC_NAME (ent.vn_file));
10728 printf (_(" File: %lx"), ent.vn_file);
10730 printf (_(" Cnt: %d\n"), ent.vn_cnt);
10732 /* Check for overflow. */
10733 if (ent.vn_aux > (size_t) (endbuf - vstart))
10735 vstart += ent.vn_aux;
10737 for (j = 0, isum = idx + ent.vn_aux; j < ent.vn_cnt; ++j)
10739 Elf_External_Vernaux * eaux;
10740 Elf_Internal_Vernaux aux;
10742 if (vstart + sizeof (*eaux) > endbuf)
10744 eaux = (Elf_External_Vernaux *) vstart;
10746 aux.vna_hash = BYTE_GET (eaux->vna_hash);
10747 aux.vna_flags = BYTE_GET (eaux->vna_flags);
10748 aux.vna_other = BYTE_GET (eaux->vna_other);
10749 aux.vna_name = BYTE_GET (eaux->vna_name);
10750 aux.vna_next = BYTE_GET (eaux->vna_next);
10752 if (VALID_DYNAMIC_NAME (aux.vna_name))
10753 printf (_(" %#06lx: Name: %s"),
10754 isum, GET_DYNAMIC_NAME (aux.vna_name));
10756 printf (_(" %#06lx: Name index: %lx"),
10757 isum, aux.vna_name);
10759 printf (_(" Flags: %s Version: %d\n"),
10760 get_ver_flags (aux.vna_flags), aux.vna_other);
10762 if (aux.vna_next < sizeof (*eaux)
10763 && !(j == ent.vn_cnt - 1 && aux.vna_next == 0))
10765 warn (_("Invalid vna_next field of %lx\n"),
10770 /* Check for overflow. */
10771 if (aux.vna_next > (size_t) (endbuf - vstart))
10773 isum += aux.vna_next;
10774 vstart += aux.vna_next;
10777 if (j < ent.vn_cnt)
10778 warn (_("Missing Version Needs auxillary information\n"));
10780 if (ent.vn_next < sizeof (*entry)
10781 && !(cnt == section->sh_info - 1 && ent.vn_next == 0))
10783 warn (_("Invalid vn_next field of %lx\n"), ent.vn_next);
10784 cnt = section->sh_info;
10787 if (ent.vn_next > (size_t) (endbuf - ((char *) eneed + idx)))
10789 idx += ent.vn_next;
10792 if (cnt < section->sh_info)
10793 warn (_("Missing Version Needs information\n"));
10799 case SHT_GNU_versym:
10801 Elf_Internal_Shdr * link_section;
10804 unsigned char * edata;
10805 unsigned short * data;
10807 Elf_Internal_Sym * symbols;
10808 Elf_Internal_Shdr * string_sec;
10809 unsigned long num_syms;
10812 if (section->sh_link >= filedata->file_header.e_shnum)
10815 link_section = filedata->section_headers + section->sh_link;
10816 total = section->sh_size / sizeof (Elf_External_Versym);
10818 if (link_section->sh_link >= filedata->file_header.e_shnum)
10823 symbols = GET_ELF_SYMBOLS (filedata, link_section, & num_syms);
10824 if (symbols == NULL)
10827 string_sec = filedata->section_headers + link_section->sh_link;
10829 strtab = (char *) get_data (NULL, filedata, string_sec->sh_offset, 1,
10830 string_sec->sh_size,
10831 _("version string table"));
10838 printf (ngettext ("\nVersion symbols section '%s' "
10839 "contains %lu entry:\n",
10840 "\nVersion symbols section '%s' "
10841 "contains %lu entries:\n",
10843 printable_section_name (filedata, section), (unsigned long) total);
10845 printf (_(" Addr: 0x"));
10846 printf_vma (section->sh_addr);
10847 printf (_(" Offset: %#08lx Link: %u (%s)\n"),
10848 (unsigned long) section->sh_offset, section->sh_link,
10849 printable_section_name (filedata, link_section));
10851 off = offset_from_vma (filedata,
10852 version_info[DT_VERSIONTAGIDX (DT_VERSYM)],
10853 total * sizeof (short));
10854 edata = (unsigned char *) get_data (NULL, filedata, off, total,
10856 _("version symbol data"));
10864 data = (short unsigned int *) cmalloc (total, sizeof (short));
10866 for (cnt = total; cnt --;)
10867 data[cnt] = byte_get (edata + cnt * sizeof (short),
10872 for (cnt = 0; cnt < total; cnt += 4)
10876 char *invalid = _("*invalid*");
10878 printf (" %03x:", cnt);
10880 for (j = 0; (j < 4) && (cnt + j) < total; ++j)
10881 switch (data[cnt + j])
10884 fputs (_(" 0 (*local*) "), stdout);
10888 fputs (_(" 1 (*global*) "), stdout);
10892 nn = printf ("%4x%c", data[cnt + j] & VERSYM_VERSION,
10893 data[cnt + j] & VERSYM_HIDDEN ? 'h' : ' ');
10895 /* If this index value is greater than the size of the symbols
10896 array, break to avoid an out-of-bounds read. */
10897 if ((unsigned long)(cnt + j) >= num_syms)
10899 warn (_("invalid index into symbol array\n"));
10904 if (version_info[DT_VERSIONTAGIDX (DT_VERNEED)])
10906 Elf_Internal_Verneed ivn;
10907 unsigned long offset;
10909 offset = offset_from_vma
10910 (filedata, version_info[DT_VERSIONTAGIDX (DT_VERNEED)],
10911 sizeof (Elf_External_Verneed));
10915 Elf_Internal_Vernaux ivna;
10916 Elf_External_Verneed evn;
10917 Elf_External_Vernaux evna;
10918 unsigned long a_off;
10920 if (get_data (&evn, filedata, offset, sizeof (evn), 1,
10921 _("version need")) == NULL)
10924 ivn.vn_aux = BYTE_GET (evn.vn_aux);
10925 ivn.vn_next = BYTE_GET (evn.vn_next);
10927 a_off = offset + ivn.vn_aux;
10931 if (get_data (&evna, filedata, a_off, sizeof (evna),
10932 1, _("version need aux (2)")) == NULL)
10935 ivna.vna_other = 0;
10939 ivna.vna_next = BYTE_GET (evna.vna_next);
10940 ivna.vna_other = BYTE_GET (evna.vna_other);
10943 a_off += ivna.vna_next;
10945 while (ivna.vna_other != data[cnt + j]
10946 && ivna.vna_next != 0);
10948 if (ivna.vna_other == data[cnt + j])
10950 ivna.vna_name = BYTE_GET (evna.vna_name);
10952 if (ivna.vna_name >= string_sec->sh_size)
10955 name = strtab + ivna.vna_name;
10959 offset += ivn.vn_next;
10961 while (ivn.vn_next);
10964 if (data[cnt + j] != 0x8001
10965 && version_info[DT_VERSIONTAGIDX (DT_VERDEF)])
10967 Elf_Internal_Verdef ivd;
10968 Elf_External_Verdef evd;
10969 unsigned long offset;
10971 offset = offset_from_vma
10972 (filedata, version_info[DT_VERSIONTAGIDX (DT_VERDEF)],
10977 if (get_data (&evd, filedata, offset, sizeof (evd), 1,
10978 _("version def")) == NULL)
10981 /* PR 17531: file: 046-1082287-0.004. */
10982 ivd.vd_ndx = (data[cnt + j] & VERSYM_VERSION) + 1;
10987 ivd.vd_next = BYTE_GET (evd.vd_next);
10988 ivd.vd_ndx = BYTE_GET (evd.vd_ndx);
10991 offset += ivd.vd_next;
10993 while (ivd.vd_ndx != (data[cnt + j] & VERSYM_VERSION)
10994 && ivd.vd_next != 0);
10996 if (ivd.vd_ndx == (data[cnt + j] & VERSYM_VERSION))
10998 Elf_External_Verdaux evda;
10999 Elf_Internal_Verdaux ivda;
11001 ivd.vd_aux = BYTE_GET (evd.vd_aux);
11003 if (get_data (&evda, filedata,
11004 offset - ivd.vd_next + ivd.vd_aux,
11006 _("version def aux")) == NULL)
11009 ivda.vda_name = BYTE_GET (evda.vda_name);
11011 if (ivda.vda_name >= string_sec->sh_size)
11013 else if (name != NULL && name != invalid)
11014 name = _("*both*");
11016 name = strtab + ivda.vda_name;
11020 nn += printf ("(%s%-*s",
11022 12 - (int) strlen (name),
11026 printf ("%*c", 18 - nn, ' ');
11044 printf (_("\nNo version information found in this file.\n"));
11049 static const char *
11050 get_symbol_binding (Filedata * filedata, unsigned int binding)
11052 static char buff[32];
11056 case STB_LOCAL: return "LOCAL";
11057 case STB_GLOBAL: return "GLOBAL";
11058 case STB_WEAK: return "WEAK";
11060 if (binding >= STB_LOPROC && binding <= STB_HIPROC)
11061 snprintf (buff, sizeof (buff), _("<processor specific>: %d"),
11063 else if (binding >= STB_LOOS && binding <= STB_HIOS)
11065 if (binding == STB_GNU_UNIQUE
11066 && (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_GNU
11067 /* GNU is still using the default value 0. */
11068 || filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_NONE))
11070 snprintf (buff, sizeof (buff), _("<OS specific>: %d"), binding);
11073 snprintf (buff, sizeof (buff), _("<unknown>: %d"), binding);
11078 static const char *
11079 get_symbol_type (Filedata * filedata, unsigned int type)
11081 static char buff[32];
11085 case STT_NOTYPE: return "NOTYPE";
11086 case STT_OBJECT: return "OBJECT";
11087 case STT_FUNC: return "FUNC";
11088 case STT_SECTION: return "SECTION";
11089 case STT_FILE: return "FILE";
11090 case STT_COMMON: return "COMMON";
11091 case STT_TLS: return "TLS";
11092 case STT_RELC: return "RELC";
11093 case STT_SRELC: return "SRELC";
11095 if (type >= STT_LOPROC && type <= STT_HIPROC)
11097 if (filedata->file_header.e_machine == EM_ARM && type == STT_ARM_TFUNC)
11098 return "THUMB_FUNC";
11100 if (filedata->file_header.e_machine == EM_SPARCV9 && type == STT_REGISTER)
11103 if (filedata->file_header.e_machine == EM_PARISC && type == STT_PARISC_MILLI)
11104 return "PARISC_MILLI";
11106 snprintf (buff, sizeof (buff), _("<processor specific>: %d"), type);
11108 else if (type >= STT_LOOS && type <= STT_HIOS)
11110 if (filedata->file_header.e_machine == EM_PARISC)
11112 if (type == STT_HP_OPAQUE)
11113 return "HP_OPAQUE";
11114 if (type == STT_HP_STUB)
11118 if (type == STT_GNU_IFUNC
11119 && (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_GNU
11120 || filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_FREEBSD
11121 /* GNU is still using the default value 0. */
11122 || filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_NONE))
11125 snprintf (buff, sizeof (buff), _("<OS specific>: %d"), type);
11128 snprintf (buff, sizeof (buff), _("<unknown>: %d"), type);
11133 static const char *
11134 get_symbol_visibility (unsigned int visibility)
11136 switch (visibility)
11138 case STV_DEFAULT: return "DEFAULT";
11139 case STV_INTERNAL: return "INTERNAL";
11140 case STV_HIDDEN: return "HIDDEN";
11141 case STV_PROTECTED: return "PROTECTED";
11143 error (_("Unrecognized visibility value: %u"), visibility);
11144 return _("<unknown>");
11148 static const char *
11149 get_solaris_symbol_visibility (unsigned int visibility)
11151 switch (visibility)
11153 case 4: return "EXPORTED";
11154 case 5: return "SINGLETON";
11155 case 6: return "ELIMINATE";
11156 default: return get_symbol_visibility (visibility);
11160 static const char *
11161 get_aarch64_symbol_other (unsigned int other)
11163 static char buf[32];
11165 if (other & STO_AARCH64_VARIANT_PCS)
11167 other &= ~STO_AARCH64_VARIANT_PCS;
11169 return "VARIANT_PCS";
11170 snprintf (buf, sizeof buf, "VARIANT_PCS | %x", other);
11176 static const char *
11177 get_mips_symbol_other (unsigned int other)
11181 case STO_OPTIONAL: return "OPTIONAL";
11182 case STO_MIPS_PLT: return "MIPS PLT";
11183 case STO_MIPS_PIC: return "MIPS PIC";
11184 case STO_MICROMIPS: return "MICROMIPS";
11185 case STO_MICROMIPS | STO_MIPS_PIC: return "MICROMIPS, MIPS PIC";
11186 case STO_MIPS16: return "MIPS16";
11187 default: return NULL;
11191 static const char *
11192 get_ia64_symbol_other (Filedata * filedata, unsigned int other)
11194 if (is_ia64_vms (filedata))
11196 static char res[32];
11200 /* Function types is for images and .STB files only. */
11201 switch (filedata->file_header.e_type)
11205 switch (VMS_ST_FUNC_TYPE (other))
11207 case VMS_SFT_CODE_ADDR:
11208 strcat (res, " CA");
11210 case VMS_SFT_SYMV_IDX:
11211 strcat (res, " VEC");
11214 strcat (res, " FD");
11216 case VMS_SFT_RESERVE:
11217 strcat (res, " RSV");
11220 warn (_("Unrecognized IA64 VMS ST Function type: %d\n"),
11221 VMS_ST_FUNC_TYPE (other));
11222 strcat (res, " <unknown>");
11229 switch (VMS_ST_LINKAGE (other))
11231 case VMS_STL_IGNORE:
11232 strcat (res, " IGN");
11234 case VMS_STL_RESERVE:
11235 strcat (res, " RSV");
11238 strcat (res, " STD");
11241 strcat (res, " LNK");
11244 warn (_("Unrecognized IA64 VMS ST Linkage: %d\n"),
11245 VMS_ST_LINKAGE (other));
11246 strcat (res, " <unknown>");
11258 static const char *
11259 get_ppc64_symbol_other (unsigned int other)
11261 if ((other & ~STO_PPC64_LOCAL_MASK) != 0)
11264 other >>= STO_PPC64_LOCAL_BIT;
11267 static char buf[32];
11269 other = ppc64_decode_local_entry (other);
11270 snprintf (buf, sizeof buf, _("<localentry>: %d"), other);
11276 static const char *
11277 get_symbol_other (Filedata * filedata, unsigned int other)
11279 const char * result = NULL;
11280 static char buff [32];
11285 switch (filedata->file_header.e_machine)
11288 result = get_aarch64_symbol_other (other);
11291 result = get_mips_symbol_other (other);
11294 result = get_ia64_symbol_other (filedata, other);
11297 result = get_ppc64_symbol_other (other);
11307 snprintf (buff, sizeof buff, _("<other>: %x"), other);
11311 static const char *
11312 get_symbol_index_type (Filedata * filedata, unsigned int type)
11314 static char buff[32];
11318 case SHN_UNDEF: return "UND";
11319 case SHN_ABS: return "ABS";
11320 case SHN_COMMON: return "COM";
11322 if (type == SHN_IA_64_ANSI_COMMON
11323 && filedata->file_header.e_machine == EM_IA_64
11324 && filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_HPUX)
11326 else if ((filedata->file_header.e_machine == EM_X86_64
11327 || filedata->file_header.e_machine == EM_L1OM
11328 || filedata->file_header.e_machine == EM_K1OM)
11329 && type == SHN_X86_64_LCOMMON)
11330 return "LARGE_COM";
11331 else if ((type == SHN_MIPS_SCOMMON
11332 && filedata->file_header.e_machine == EM_MIPS)
11333 || (type == SHN_TIC6X_SCOMMON
11334 && filedata->file_header.e_machine == EM_TI_C6000))
11336 else if (type == SHN_MIPS_SUNDEFINED
11337 && filedata->file_header.e_machine == EM_MIPS)
11339 else if (type >= SHN_LOPROC && type <= SHN_HIPROC)
11340 sprintf (buff, "PRC[0x%04x]", type & 0xffff);
11341 else if (type >= SHN_LOOS && type <= SHN_HIOS)
11342 sprintf (buff, "OS [0x%04x]", type & 0xffff);
11343 else if (type >= SHN_LORESERVE)
11344 sprintf (buff, "RSV[0x%04x]", type & 0xffff);
11345 else if (type >= filedata->file_header.e_shnum)
11346 sprintf (buff, _("bad section index[%3d]"), type);
11348 sprintf (buff, "%3d", type);
11356 get_dynamic_data (Filedata * filedata, bfd_size_type number, unsigned int ent_size)
11358 unsigned char * e_data;
11361 /* If the size_t type is smaller than the bfd_size_type, eg because
11362 you are building a 32-bit tool on a 64-bit host, then make sure
11363 that when (number) is cast to (size_t) no information is lost. */
11364 if (sizeof (size_t) < sizeof (bfd_size_type)
11365 && (bfd_size_type) ((size_t) number) != number)
11367 error (_("Size truncation prevents reading %s elements of size %u\n"),
11368 bfd_vmatoa ("u", number), ent_size);
11372 /* Be kind to memory chekers (eg valgrind, address sanitizer) by not
11373 attempting to allocate memory when the read is bound to fail. */
11374 if (ent_size * number > filedata->file_size)
11376 error (_("Invalid number of dynamic entries: %s\n"),
11377 bfd_vmatoa ("u", number));
11381 e_data = (unsigned char *) cmalloc ((size_t) number, ent_size);
11382 if (e_data == NULL)
11384 error (_("Out of memory reading %s dynamic entries\n"),
11385 bfd_vmatoa ("u", number));
11389 if (fread (e_data, ent_size, (size_t) number, filedata->handle) != number)
11391 error (_("Unable to read in %s bytes of dynamic data\n"),
11392 bfd_vmatoa ("u", number * ent_size));
11397 i_data = (bfd_vma *) cmalloc ((size_t) number, sizeof (*i_data));
11398 if (i_data == NULL)
11400 error (_("Out of memory allocating space for %s dynamic entries\n"),
11401 bfd_vmatoa ("u", number));
11407 i_data[number] = byte_get (e_data + number * ent_size, ent_size);
11415 print_dynamic_symbol (Filedata * filedata, bfd_vma si, unsigned long hn)
11417 Elf_Internal_Sym * psym;
11420 n = print_vma (si, DEC_5);
11422 fputs (&" "[n], stdout);
11423 printf (" %3lu: ", hn);
11425 if (dynamic_symbols == NULL || si >= num_dynamic_syms)
11427 printf (_("<No info available for dynamic symbol number %lu>\n"),
11428 (unsigned long) si);
11432 psym = dynamic_symbols + si;
11433 print_vma (psym->st_value, LONG_HEX);
11435 print_vma (psym->st_size, DEC_5);
11437 printf (" %-7s", get_symbol_type (filedata, ELF_ST_TYPE (psym->st_info)));
11438 printf (" %-6s", get_symbol_binding (filedata, ELF_ST_BIND (psym->st_info)));
11440 if (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_SOLARIS)
11441 printf (" %-7s", get_solaris_symbol_visibility (psym->st_other));
11444 unsigned int vis = ELF_ST_VISIBILITY (psym->st_other);
11446 printf (" %-7s", get_symbol_visibility (vis));
11447 /* Check to see if any other bits in the st_other field are set.
11448 Note - displaying this information disrupts the layout of the
11449 table being generated, but for the moment this case is very
11451 if (psym->st_other ^ vis)
11452 printf (" [%s] ", get_symbol_other (filedata, psym->st_other ^ vis));
11455 printf (" %3.3s ", get_symbol_index_type (filedata, psym->st_shndx));
11456 if (VALID_DYNAMIC_NAME (psym->st_name))
11457 print_symbol (25, GET_DYNAMIC_NAME (psym->st_name));
11459 printf (_(" <corrupt: %14ld>"), psym->st_name);
11463 static const char *
11464 get_symbol_version_string (Filedata * filedata,
11465 bfd_boolean is_dynsym,
11466 const char * strtab,
11467 unsigned long int strtab_size,
11469 Elf_Internal_Sym * psym,
11470 enum versioned_symbol_info * sym_info,
11471 unsigned short * vna_other)
11473 unsigned char data[2];
11474 unsigned short vers_data;
11475 unsigned long offset;
11476 unsigned short max_vd_ndx;
11479 || version_info[DT_VERSIONTAGIDX (DT_VERSYM)] == 0)
11482 offset = offset_from_vma (filedata, version_info[DT_VERSIONTAGIDX (DT_VERSYM)],
11483 sizeof data + si * sizeof (vers_data));
11485 if (get_data (&data, filedata, offset + si * sizeof (vers_data),
11486 sizeof (data), 1, _("version data")) == NULL)
11489 vers_data = byte_get (data, 2);
11491 if ((vers_data & VERSYM_HIDDEN) == 0 && vers_data == 0)
11496 /* Usually we'd only see verdef for defined symbols, and verneed for
11497 undefined symbols. However, symbols defined by the linker in
11498 .dynbss for variables copied from a shared library in order to
11499 avoid text relocations are defined yet have verneed. We could
11500 use a heuristic to detect the special case, for example, check
11501 for verneed first on symbols defined in SHT_NOBITS sections, but
11502 it is simpler and more reliable to just look for both verdef and
11503 verneed. .dynbss might not be mapped to a SHT_NOBITS section. */
11505 if (psym->st_shndx != SHN_UNDEF
11506 && vers_data != 0x8001
11507 && version_info[DT_VERSIONTAGIDX (DT_VERDEF)])
11509 Elf_Internal_Verdef ivd;
11510 Elf_Internal_Verdaux ivda;
11511 Elf_External_Verdaux evda;
11514 off = offset_from_vma (filedata,
11515 version_info[DT_VERSIONTAGIDX (DT_VERDEF)],
11516 sizeof (Elf_External_Verdef));
11520 Elf_External_Verdef evd;
11522 if (get_data (&evd, filedata, off, sizeof (evd), 1,
11523 _("version def")) == NULL)
11532 ivd.vd_ndx = BYTE_GET (evd.vd_ndx);
11533 ivd.vd_aux = BYTE_GET (evd.vd_aux);
11534 ivd.vd_next = BYTE_GET (evd.vd_next);
11535 ivd.vd_flags = BYTE_GET (evd.vd_flags);
11538 if ((ivd.vd_ndx & VERSYM_VERSION) > max_vd_ndx)
11539 max_vd_ndx = ivd.vd_ndx & VERSYM_VERSION;
11541 off += ivd.vd_next;
11543 while (ivd.vd_ndx != (vers_data & VERSYM_VERSION) && ivd.vd_next != 0);
11545 if (ivd.vd_ndx == (vers_data & VERSYM_VERSION))
11547 if (ivd.vd_ndx == 1 && ivd.vd_flags == VER_FLG_BASE)
11550 off -= ivd.vd_next;
11553 if (get_data (&evda, filedata, off, sizeof (evda), 1,
11554 _("version def aux")) != NULL)
11556 ivda.vda_name = BYTE_GET (evda.vda_name);
11558 if (psym->st_name != ivda.vda_name)
11560 *sym_info = ((vers_data & VERSYM_HIDDEN) != 0
11561 ? symbol_hidden : symbol_public);
11562 return (ivda.vda_name < strtab_size
11563 ? strtab + ivda.vda_name : _("<corrupt>"));
11569 if (version_info[DT_VERSIONTAGIDX (DT_VERNEED)])
11571 Elf_External_Verneed evn;
11572 Elf_Internal_Verneed ivn;
11573 Elf_Internal_Vernaux ivna;
11575 offset = offset_from_vma (filedata,
11576 version_info[DT_VERSIONTAGIDX (DT_VERNEED)],
11580 unsigned long vna_off;
11582 if (get_data (&evn, filedata, offset, sizeof (evn), 1,
11583 _("version need")) == NULL)
11586 ivna.vna_other = 0;
11591 ivn.vn_aux = BYTE_GET (evn.vn_aux);
11592 ivn.vn_next = BYTE_GET (evn.vn_next);
11594 vna_off = offset + ivn.vn_aux;
11598 Elf_External_Vernaux evna;
11600 if (get_data (&evna, filedata, vna_off, sizeof (evna), 1,
11601 _("version need aux (3)")) == NULL)
11604 ivna.vna_other = 0;
11609 ivna.vna_other = BYTE_GET (evna.vna_other);
11610 ivna.vna_next = BYTE_GET (evna.vna_next);
11611 ivna.vna_name = BYTE_GET (evna.vna_name);
11614 vna_off += ivna.vna_next;
11616 while (ivna.vna_other != vers_data && ivna.vna_next != 0);
11618 if (ivna.vna_other == vers_data)
11621 offset += ivn.vn_next;
11623 while (ivn.vn_next != 0);
11625 if (ivna.vna_other == vers_data)
11627 *sym_info = symbol_undefined;
11628 *vna_other = ivna.vna_other;
11629 return (ivna.vna_name < strtab_size
11630 ? strtab + ivna.vna_name : _("<corrupt>"));
11632 else if ((max_vd_ndx || (vers_data & VERSYM_VERSION) != 1)
11633 && (vers_data & VERSYM_VERSION) > max_vd_ndx)
11634 return _("<corrupt>");
11639 /* Dump the symbol table. */
11641 process_symbol_table (Filedata * filedata)
11643 Elf_Internal_Shdr * section;
11644 bfd_size_type nbuckets = 0;
11645 bfd_size_type nchains = 0;
11646 bfd_vma * buckets = NULL;
11647 bfd_vma * chains = NULL;
11648 bfd_vma ngnubuckets = 0;
11649 bfd_vma * gnubuckets = NULL;
11650 bfd_vma * gnuchains = NULL;
11651 bfd_vma gnusymidx = 0;
11652 bfd_size_type ngnuchains = 0;
11654 if (!do_syms && !do_dyn_syms && !do_histogram)
11657 if (dynamic_info[DT_HASH]
11659 || (do_using_dynamic
11661 && dynamic_strings != NULL)))
11663 unsigned char nb[8];
11664 unsigned char nc[8];
11665 unsigned int hash_ent_size = 4;
11667 if ((filedata->file_header.e_machine == EM_ALPHA
11668 || filedata->file_header.e_machine == EM_S390
11669 || filedata->file_header.e_machine == EM_S390_OLD)
11670 && filedata->file_header.e_ident[EI_CLASS] == ELFCLASS64)
11673 if (fseek (filedata->handle,
11674 (archive_file_offset
11675 + offset_from_vma (filedata, dynamic_info[DT_HASH],
11676 sizeof nb + sizeof nc)),
11679 error (_("Unable to seek to start of dynamic information\n"));
11683 if (fread (nb, hash_ent_size, 1, filedata->handle) != 1)
11685 error (_("Failed to read in number of buckets\n"));
11689 if (fread (nc, hash_ent_size, 1, filedata->handle) != 1)
11691 error (_("Failed to read in number of chains\n"));
11695 nbuckets = byte_get (nb, hash_ent_size);
11696 nchains = byte_get (nc, hash_ent_size);
11698 buckets = get_dynamic_data (filedata, nbuckets, hash_ent_size);
11699 chains = get_dynamic_data (filedata, nchains, hash_ent_size);
11702 if (buckets == NULL || chains == NULL)
11704 if (do_using_dynamic)
11715 if (dynamic_info_DT_GNU_HASH
11717 || (do_using_dynamic
11719 && dynamic_strings != NULL)))
11721 unsigned char nb[16];
11722 bfd_vma i, maxchain = 0xffffffff, bitmaskwords;
11723 bfd_vma buckets_vma;
11725 if (fseek (filedata->handle,
11726 (archive_file_offset
11727 + offset_from_vma (filedata, dynamic_info_DT_GNU_HASH,
11731 error (_("Unable to seek to start of dynamic information\n"));
11735 if (fread (nb, 16, 1, filedata->handle) != 1)
11737 error (_("Failed to read in number of buckets\n"));
11741 ngnubuckets = byte_get (nb, 4);
11742 gnusymidx = byte_get (nb + 4, 4);
11743 bitmaskwords = byte_get (nb + 8, 4);
11744 buckets_vma = dynamic_info_DT_GNU_HASH + 16;
11746 buckets_vma += bitmaskwords * 4;
11748 buckets_vma += bitmaskwords * 8;
11750 if (fseek (filedata->handle,
11751 (archive_file_offset
11752 + offset_from_vma (filedata, buckets_vma, 4)),
11755 error (_("Unable to seek to start of dynamic information\n"));
11759 gnubuckets = get_dynamic_data (filedata, ngnubuckets, 4);
11761 if (gnubuckets == NULL)
11764 for (i = 0; i < ngnubuckets; i++)
11765 if (gnubuckets[i] != 0)
11767 if (gnubuckets[i] < gnusymidx)
11770 if (maxchain == 0xffffffff || gnubuckets[i] > maxchain)
11771 maxchain = gnubuckets[i];
11774 if (maxchain == 0xffffffff)
11777 maxchain -= gnusymidx;
11779 if (fseek (filedata->handle,
11780 (archive_file_offset
11781 + offset_from_vma (filedata, buckets_vma
11782 + 4 * (ngnubuckets + maxchain), 4)),
11785 error (_("Unable to seek to start of dynamic information\n"));
11791 if (fread (nb, 4, 1, filedata->handle) != 1)
11793 error (_("Failed to determine last chain length\n"));
11797 if (maxchain + 1 == 0)
11802 while ((byte_get (nb, 4) & 1) == 0);
11804 if (fseek (filedata->handle,
11805 (archive_file_offset
11806 + offset_from_vma (filedata, buckets_vma + 4 * ngnubuckets, 4)),
11809 error (_("Unable to seek to start of dynamic information\n"));
11813 gnuchains = get_dynamic_data (filedata, maxchain, 4);
11814 ngnuchains = maxchain;
11817 if (gnuchains == NULL)
11822 if (do_using_dynamic)
11827 if ((dynamic_info[DT_HASH] || dynamic_info_DT_GNU_HASH)
11829 && do_using_dynamic
11830 && dynamic_strings != NULL
11831 && dynamic_symbols != NULL)
11835 if (dynamic_info[DT_HASH])
11840 printf (_("\nSymbol table for image:\n"));
11842 printf (_(" Num Buc: Value Size Type Bind Vis Ndx Name\n"));
11844 printf (_(" Num Buc: Value Size Type Bind Vis Ndx Name\n"));
11846 visited = xcmalloc (nchains, 1);
11847 memset (visited, 0, nchains);
11848 for (hn = 0; hn < nbuckets; hn++)
11850 for (si = buckets[hn]; si > 0; si = chains[si])
11852 print_dynamic_symbol (filedata, si, hn);
11853 if (si >= nchains || visited[si])
11855 error (_("histogram chain is corrupt\n"));
11864 if (dynamic_info_DT_GNU_HASH)
11866 printf (_("\nSymbol table of `.gnu.hash' for image:\n"));
11868 printf (_(" Num Buc: Value Size Type Bind Vis Ndx Name\n"));
11870 printf (_(" Num Buc: Value Size Type Bind Vis Ndx Name\n"));
11872 for (hn = 0; hn < ngnubuckets; ++hn)
11873 if (gnubuckets[hn] != 0)
11875 bfd_vma si = gnubuckets[hn];
11876 bfd_vma off = si - gnusymidx;
11880 print_dynamic_symbol (filedata, si, hn);
11883 while (off < ngnuchains && (gnuchains[off++] & 1) == 0);
11887 else if ((do_dyn_syms || (do_syms && !do_using_dynamic))
11888 && filedata->section_headers != NULL)
11892 for (i = 0, section = filedata->section_headers;
11893 i < filedata->file_header.e_shnum;
11897 char * strtab = NULL;
11898 unsigned long int strtab_size = 0;
11899 Elf_Internal_Sym * symtab;
11900 Elf_Internal_Sym * psym;
11901 unsigned long num_syms;
11903 if ((section->sh_type != SHT_SYMTAB
11904 && section->sh_type != SHT_DYNSYM)
11906 && section->sh_type == SHT_SYMTAB))
11909 if (section->sh_entsize == 0)
11911 printf (_("\nSymbol table '%s' has a sh_entsize of zero!\n"),
11912 printable_section_name (filedata, section));
11916 num_syms = section->sh_size / section->sh_entsize;
11917 printf (ngettext ("\nSymbol table '%s' contains %lu entry:\n",
11918 "\nSymbol table '%s' contains %lu entries:\n",
11920 printable_section_name (filedata, section),
11924 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
11926 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
11928 symtab = GET_ELF_SYMBOLS (filedata, section, & num_syms);
11929 if (symtab == NULL)
11932 if (section->sh_link == filedata->file_header.e_shstrndx)
11934 strtab = filedata->string_table;
11935 strtab_size = filedata->string_table_length;
11937 else if (section->sh_link < filedata->file_header.e_shnum)
11939 Elf_Internal_Shdr * string_sec;
11941 string_sec = filedata->section_headers + section->sh_link;
11943 strtab = (char *) get_data (NULL, filedata, string_sec->sh_offset,
11944 1, string_sec->sh_size,
11945 _("string table"));
11946 strtab_size = strtab != NULL ? string_sec->sh_size : 0;
11949 for (si = 0, psym = symtab; si < num_syms; si++, psym++)
11951 const char *version_string;
11952 enum versioned_symbol_info sym_info;
11953 unsigned short vna_other;
11955 printf ("%6d: ", si);
11956 print_vma (psym->st_value, LONG_HEX);
11958 print_vma (psym->st_size, DEC_5);
11959 printf (" %-7s", get_symbol_type (filedata, ELF_ST_TYPE (psym->st_info)));
11960 printf (" %-6s", get_symbol_binding (filedata, ELF_ST_BIND (psym->st_info)));
11961 if (filedata->file_header.e_ident[EI_OSABI] == ELFOSABI_SOLARIS)
11962 printf (" %-7s", get_solaris_symbol_visibility (psym->st_other));
11965 unsigned int vis = ELF_ST_VISIBILITY (psym->st_other);
11967 printf (" %-7s", get_symbol_visibility (vis));
11968 /* Check to see if any other bits in the st_other field are set.
11969 Note - displaying this information disrupts the layout of the
11970 table being generated, but for the moment this case is very rare. */
11971 if (psym->st_other ^ vis)
11972 printf (" [%s] ", get_symbol_other (filedata, psym->st_other ^ vis));
11974 printf (" %4s ", get_symbol_index_type (filedata, psym->st_shndx));
11975 print_symbol (25, psym->st_name < strtab_size
11976 ? strtab + psym->st_name : _("<corrupt>"));
11979 = get_symbol_version_string (filedata,
11980 section->sh_type == SHT_DYNSYM,
11981 strtab, strtab_size, si,
11982 psym, &sym_info, &vna_other);
11983 if (version_string)
11985 if (sym_info == symbol_undefined)
11986 printf ("@%s (%d)", version_string, vna_other);
11988 printf (sym_info == symbol_hidden ? "@%s" : "@@%s",
11994 if (ELF_ST_BIND (psym->st_info) == STB_LOCAL
11995 && si >= section->sh_info
11996 /* Irix 5 and 6 MIPS binaries are known to ignore this requirement. */
11997 && filedata->file_header.e_machine != EM_MIPS
11998 /* Solaris binaries have been found to violate this requirement as
11999 well. Not sure if this is a bug or an ABI requirement. */
12000 && filedata->file_header.e_ident[EI_OSABI] != ELFOSABI_SOLARIS)
12001 warn (_("local symbol %u found at index >= %s's sh_info value of %u\n"),
12002 si, printable_section_name (filedata, section), section->sh_info);
12006 if (strtab != filedata->string_table)
12012 (_("\nDynamic symbol information is not available for displaying symbols.\n"));
12014 if (do_histogram && buckets != NULL)
12016 unsigned long * lengths;
12017 unsigned long * counts;
12020 unsigned long maxlength = 0;
12021 unsigned long nzero_counts = 0;
12022 unsigned long nsyms = 0;
12025 printf (ngettext ("\nHistogram for bucket list length "
12026 "(total of %lu bucket):\n",
12027 "\nHistogram for bucket list length "
12028 "(total of %lu buckets):\n",
12029 (unsigned long) nbuckets),
12030 (unsigned long) nbuckets);
12032 lengths = (unsigned long *) calloc (nbuckets, sizeof (*lengths));
12033 if (lengths == NULL)
12035 error (_("Out of memory allocating space for histogram buckets\n"));
12038 visited = xcmalloc (nchains, 1);
12039 memset (visited, 0, nchains);
12041 printf (_(" Length Number %% of total Coverage\n"));
12042 for (hn = 0; hn < nbuckets; ++hn)
12044 for (si = buckets[hn]; si > 0; si = chains[si])
12047 if (maxlength < ++lengths[hn])
12049 if (si >= nchains || visited[si])
12051 error (_("histogram chain is corrupt\n"));
12059 counts = (unsigned long *) calloc (maxlength + 1, sizeof (*counts));
12060 if (counts == NULL)
12063 error (_("Out of memory allocating space for histogram counts\n"));
12067 for (hn = 0; hn < nbuckets; ++hn)
12068 ++counts[lengths[hn]];
12073 printf (" 0 %-10lu (%5.1f%%)\n",
12074 counts[0], (counts[0] * 100.0) / nbuckets);
12075 for (i = 1; i <= maxlength; ++i)
12077 nzero_counts += counts[i] * i;
12078 printf ("%7lu %-10lu (%5.1f%%) %5.1f%%\n",
12079 i, counts[i], (counts[i] * 100.0) / nbuckets,
12080 (nzero_counts * 100.0) / nsyms);
12088 if (buckets != NULL)
12094 if (do_histogram && gnubuckets != NULL)
12096 unsigned long * lengths;
12097 unsigned long * counts;
12099 unsigned long maxlength = 0;
12100 unsigned long nzero_counts = 0;
12101 unsigned long nsyms = 0;
12103 printf (ngettext ("\nHistogram for `.gnu.hash' bucket list length "
12104 "(total of %lu bucket):\n",
12105 "\nHistogram for `.gnu.hash' bucket list length "
12106 "(total of %lu buckets):\n",
12107 (unsigned long) ngnubuckets),
12108 (unsigned long) ngnubuckets);
12110 lengths = (unsigned long *) calloc (ngnubuckets, sizeof (*lengths));
12111 if (lengths == NULL)
12113 error (_("Out of memory allocating space for gnu histogram buckets\n"));
12117 printf (_(" Length Number %% of total Coverage\n"));
12119 for (hn = 0; hn < ngnubuckets; ++hn)
12120 if (gnubuckets[hn] != 0)
12122 bfd_vma off, length = 1;
12124 for (off = gnubuckets[hn] - gnusymidx;
12125 /* PR 17531 file: 010-77222-0.004. */
12126 off < ngnuchains && (gnuchains[off] & 1) == 0;
12129 lengths[hn] = length;
12130 if (length > maxlength)
12131 maxlength = length;
12135 counts = (unsigned long *) calloc (maxlength + 1, sizeof (*counts));
12136 if (counts == NULL)
12139 error (_("Out of memory allocating space for gnu histogram counts\n"));
12143 for (hn = 0; hn < ngnubuckets; ++hn)
12144 ++counts[lengths[hn]];
12146 if (ngnubuckets > 0)
12149 printf (" 0 %-10lu (%5.1f%%)\n",
12150 counts[0], (counts[0] * 100.0) / ngnubuckets);
12151 for (j = 1; j <= maxlength; ++j)
12153 nzero_counts += counts[j] * j;
12154 printf ("%7lu %-10lu (%5.1f%%) %5.1f%%\n",
12155 j, counts[j], (counts[j] * 100.0) / ngnubuckets,
12156 (nzero_counts * 100.0) / nsyms);
12170 process_syminfo (Filedata * filedata ATTRIBUTE_UNUSED)
12174 if (dynamic_syminfo == NULL
12176 /* No syminfo, this is ok. */
12179 /* There better should be a dynamic symbol section. */
12180 if (dynamic_symbols == NULL || dynamic_strings == NULL)
12184 printf (ngettext ("\nDynamic info segment at offset 0x%lx "
12185 "contains %d entry:\n",
12186 "\nDynamic info segment at offset 0x%lx "
12187 "contains %d entries:\n",
12188 dynamic_syminfo_nent),
12189 dynamic_syminfo_offset, dynamic_syminfo_nent);
12191 printf (_(" Num: Name BoundTo Flags\n"));
12192 for (i = 0; i < dynamic_syminfo_nent; ++i)
12194 unsigned short int flags = dynamic_syminfo[i].si_flags;
12196 printf ("%4d: ", i);
12197 if (i >= num_dynamic_syms)
12198 printf (_("<corrupt index>"));
12199 else if (VALID_DYNAMIC_NAME (dynamic_symbols[i].st_name))
12200 print_symbol (30, GET_DYNAMIC_NAME (dynamic_symbols[i].st_name));
12202 printf (_("<corrupt: %19ld>"), dynamic_symbols[i].st_name);
12205 switch (dynamic_syminfo[i].si_boundto)
12207 case SYMINFO_BT_SELF:
12208 fputs ("SELF ", stdout);
12210 case SYMINFO_BT_PARENT:
12211 fputs ("PARENT ", stdout);
12214 if (dynamic_syminfo[i].si_boundto > 0
12215 && dynamic_syminfo[i].si_boundto < dynamic_nent
12216 && VALID_DYNAMIC_NAME (dynamic_section[dynamic_syminfo[i].si_boundto].d_un.d_val))
12218 print_symbol (10, GET_DYNAMIC_NAME (dynamic_section[dynamic_syminfo[i].si_boundto].d_un.d_val));
12222 printf ("%-10d ", dynamic_syminfo[i].si_boundto);
12226 if (flags & SYMINFO_FLG_DIRECT)
12227 printf (" DIRECT");
12228 if (flags & SYMINFO_FLG_PASSTHRU)
12229 printf (" PASSTHRU");
12230 if (flags & SYMINFO_FLG_COPY)
12232 if (flags & SYMINFO_FLG_LAZYLOAD)
12233 printf (" LAZYLOAD");
12241 #define IN_RANGE(START,END,ADDR,OFF) \
12242 (((ADDR) >= (START)) && ((ADDR) + (OFF) < (END)))
12244 /* Check to see if the given reloc needs to be handled in a target specific
12245 manner. If so then process the reloc and return TRUE otherwise return
12248 If called with reloc == NULL, then this is a signal that reloc processing
12249 for the current section has finished, and any saved state should be
12253 target_specific_reloc_handling (Filedata * filedata,
12254 Elf_Internal_Rela * reloc,
12255 unsigned char * start,
12256 unsigned char * end,
12257 Elf_Internal_Sym * symtab,
12258 unsigned long num_syms)
12260 unsigned int reloc_type = 0;
12261 unsigned long sym_index = 0;
12265 reloc_type = get_reloc_type (filedata, reloc->r_info);
12266 sym_index = get_reloc_symindex (reloc->r_info);
12269 switch (filedata->file_header.e_machine)
12272 case EM_MSP430_OLD:
12274 static Elf_Internal_Sym * saved_sym = NULL;
12282 switch (reloc_type)
12284 case 10: /* R_MSP430_SYM_DIFF */
12285 if (uses_msp430x_relocs (filedata))
12287 /* Fall through. */
12288 case 21: /* R_MSP430X_SYM_DIFF */
12290 if (sym_index >= num_syms)
12291 error (_("MSP430 SYM_DIFF reloc contains invalid symbol index %lu\n"),
12294 saved_sym = symtab + sym_index;
12297 case 1: /* R_MSP430_32 or R_MSP430_ABS32 */
12298 case 3: /* R_MSP430_16 or R_MSP430_ABS8 */
12299 goto handle_sym_diff;
12301 case 5: /* R_MSP430_16_BYTE */
12302 case 9: /* R_MSP430_8 */
12303 if (uses_msp430x_relocs (filedata))
12305 goto handle_sym_diff;
12307 case 2: /* R_MSP430_ABS16 */
12308 case 15: /* R_MSP430X_ABS16 */
12309 if (! uses_msp430x_relocs (filedata))
12311 goto handle_sym_diff;
12314 if (saved_sym != NULL)
12316 int reloc_size = reloc_type == 1 ? 4 : 2;
12319 if (sym_index >= num_syms)
12320 error (_("MSP430 reloc contains invalid symbol index %lu\n"),
12324 value = reloc->r_addend + (symtab[sym_index].st_value
12325 - saved_sym->st_value);
12327 if (IN_RANGE (start, end, start + reloc->r_offset, reloc_size))
12328 byte_put (start + reloc->r_offset, value, reloc_size);
12331 error (_("MSP430 sym diff reloc contains invalid offset: 0x%lx\n"),
12332 (long) reloc->r_offset);
12341 if (saved_sym != NULL)
12342 error (_("Unhandled MSP430 reloc type found after SYM_DIFF reloc\n"));
12349 case EM_CYGNUS_MN10300:
12351 static Elf_Internal_Sym * saved_sym = NULL;
12359 switch (reloc_type)
12361 case 34: /* R_MN10300_ALIGN */
12363 case 33: /* R_MN10300_SYM_DIFF */
12364 if (sym_index >= num_syms)
12365 error (_("MN10300_SYM_DIFF reloc contains invalid symbol index %lu\n"),
12368 saved_sym = symtab + sym_index;
12371 case 1: /* R_MN10300_32 */
12372 case 2: /* R_MN10300_16 */
12373 if (saved_sym != NULL)
12375 int reloc_size = reloc_type == 1 ? 4 : 2;
12378 if (sym_index >= num_syms)
12379 error (_("MN10300 reloc contains invalid symbol index %lu\n"),
12383 value = reloc->r_addend + (symtab[sym_index].st_value
12384 - saved_sym->st_value);
12386 if (IN_RANGE (start, end, start + reloc->r_offset, reloc_size))
12387 byte_put (start + reloc->r_offset, value, reloc_size);
12389 error (_("MN10300 sym diff reloc contains invalid offset: 0x%lx\n"),
12390 (long) reloc->r_offset);
12398 if (saved_sym != NULL)
12399 error (_("Unhandled MN10300 reloc type found after SYM_DIFF reloc\n"));
12407 static bfd_vma saved_sym1 = 0;
12408 static bfd_vma saved_sym2 = 0;
12409 static bfd_vma value;
12413 saved_sym1 = saved_sym2 = 0;
12417 switch (reloc_type)
12419 case 0x80: /* R_RL78_SYM. */
12420 saved_sym1 = saved_sym2;
12421 if (sym_index >= num_syms)
12422 error (_("RL78_SYM reloc contains invalid symbol index %lu\n"),
12426 saved_sym2 = symtab[sym_index].st_value;
12427 saved_sym2 += reloc->r_addend;
12431 case 0x83: /* R_RL78_OPsub. */
12432 value = saved_sym1 - saved_sym2;
12433 saved_sym2 = saved_sym1 = 0;
12437 case 0x41: /* R_RL78_ABS32. */
12438 if (IN_RANGE (start, end, start + reloc->r_offset, 4))
12439 byte_put (start + reloc->r_offset, value, 4);
12441 error (_("RL78 sym diff reloc contains invalid offset: 0x%lx\n"),
12442 (long) reloc->r_offset);
12446 case 0x43: /* R_RL78_ABS16. */
12447 if (IN_RANGE (start, end, start + reloc->r_offset, 2))
12448 byte_put (start + reloc->r_offset, value, 2);
12450 error (_("RL78 sym diff reloc contains invalid offset: 0x%lx\n"),
12451 (long) reloc->r_offset);
12465 /* Returns TRUE iff RELOC_TYPE is a 32-bit absolute RELA relocation used in
12466 DWARF debug sections. This is a target specific test. Note - we do not
12467 go through the whole including-target-headers-multiple-times route, (as
12468 we have already done with <elf/h8.h>) because this would become very
12469 messy and even then this function would have to contain target specific
12470 information (the names of the relocs instead of their numeric values).
12471 FIXME: This is not the correct way to solve this problem. The proper way
12472 is to have target specific reloc sizing and typing functions created by
12473 the reloc-macros.h header, in the same way that it already creates the
12474 reloc naming functions. */
12477 is_32bit_abs_reloc (Filedata * filedata, unsigned int reloc_type)
12479 /* Please keep this table alpha-sorted for ease of visual lookup. */
12480 switch (filedata->file_header.e_machine)
12484 return reloc_type == 1; /* R_386_32. */
12486 return reloc_type == 1; /* R_68K_32. */
12488 return reloc_type == 1; /* R_860_32. */
12490 return reloc_type == 2; /* R_960_32. */
12492 return (reloc_type == 258
12493 || reloc_type == 1); /* R_AARCH64_ABS32 || R_AARCH64_P32_ABS32 */
12495 return reloc_type == 11; /* R_BPF_DATA_32 */
12496 case EM_ADAPTEVA_EPIPHANY:
12497 return reloc_type == 3;
12499 return reloc_type == 1; /* R_ALPHA_REFLONG. */
12501 return reloc_type == 1; /* R_ARC_32. */
12502 case EM_ARC_COMPACT:
12503 case EM_ARC_COMPACT2:
12504 return reloc_type == 4; /* R_ARC_32. */
12506 return reloc_type == 2; /* R_ARM_ABS32 */
12509 return reloc_type == 1;
12511 return reloc_type == 0x12; /* R_byte4_data. */
12513 return reloc_type == 3; /* R_CRIS_32. */
12515 return reloc_type == 3; /* R_CR16_NUM32. */
12517 return reloc_type == 15; /* R_CRX_NUM32. */
12519 return reloc_type == 1; /* R_CKCORE_ADDR32. */
12520 case EM_CYGNUS_FRV:
12521 return reloc_type == 1;
12522 case EM_CYGNUS_D10V:
12524 return reloc_type == 6; /* R_D10V_32. */
12525 case EM_CYGNUS_D30V:
12527 return reloc_type == 12; /* R_D30V_32_NORMAL. */
12529 return reloc_type == 3; /* R_DLX_RELOC_32. */
12530 case EM_CYGNUS_FR30:
12532 return reloc_type == 3; /* R_FR30_32. */
12534 return reloc_type == 1; /* R_FT32_32. */
12538 return reloc_type == 1; /* R_H8_DIR32. */
12540 return (reloc_type == 0x64 /* R_IA64_SECREL32MSB. */
12541 || reloc_type == 0x65 /* R_IA64_SECREL32LSB. */
12542 || reloc_type == 0x24 /* R_IA64_DIR32MSB. */
12543 || reloc_type == 0x25 /* R_IA64_DIR32LSB. */);
12546 return reloc_type == 2; /* R_IP2K_32. */
12548 return reloc_type == 2; /* R_IQ2000_32. */
12549 case EM_LATTICEMICO32:
12550 return reloc_type == 3; /* R_LM32_32. */
12553 return reloc_type == 3; /* R_M32C_32. */
12555 return reloc_type == 34; /* R_M32R_32_RELA. */
12558 return reloc_type == 6; /* R_M68HC11_32. */
12560 return reloc_type == 7 || /* R_S12Z_EXT32 */
12561 reloc_type == 6; /* R_S12Z_CW32. */
12563 return reloc_type == 1; /* R_MCORE_ADDR32. */
12564 case EM_CYGNUS_MEP:
12565 return reloc_type == 4; /* R_MEP_32. */
12567 return reloc_type == 2; /* R_METAG_ADDR32. */
12568 case EM_MICROBLAZE:
12569 return reloc_type == 1; /* R_MICROBLAZE_32. */
12571 return reloc_type == 2; /* R_MIPS_32. */
12573 return reloc_type == 4; /* R_MMIX_32. */
12574 case EM_CYGNUS_MN10200:
12576 return reloc_type == 1; /* R_MN10200_32. */
12577 case EM_CYGNUS_MN10300:
12579 return reloc_type == 1; /* R_MN10300_32. */
12581 return reloc_type == 1; /* R_MOXIE_32. */
12582 case EM_MSP430_OLD:
12584 return reloc_type == 1; /* R_MSP430_32 or R_MSP320_ABS32. */
12586 return reloc_type == 2; /* R_MT_32. */
12588 return reloc_type == 20; /* R_NDS32_RELA. */
12589 case EM_ALTERA_NIOS2:
12590 return reloc_type == 12; /* R_NIOS2_BFD_RELOC_32. */
12592 return reloc_type == 1; /* R_NIOS_32. */
12594 return reloc_type == 1; /* R_OR1K_32. */
12596 return (reloc_type == 1 /* R_PARISC_DIR32. */
12597 || reloc_type == 2 /* R_PARISC_DIR21L. */
12598 || reloc_type == 41); /* R_PARISC_SECREL32. */
12601 return reloc_type == 1; /* R_PJ_DATA_DIR32. */
12603 return reloc_type == 1; /* R_PPC64_ADDR32. */
12605 return reloc_type == 1; /* R_PPC_ADDR32. */
12607 return reloc_type == 11; /* R_PRU_BFD_RELOC_32. */
12609 return reloc_type == 1; /* R_RISCV_32. */
12611 return reloc_type == 1; /* R_RL78_DIR32. */
12613 return reloc_type == 1; /* R_RX_DIR32. */
12615 return reloc_type == 1; /* R_I370_ADDR31. */
12618 return reloc_type == 4; /* R_S390_32. */
12620 return reloc_type == 8; /* R_SCORE_ABS32. */
12622 return reloc_type == 1; /* R_SH_DIR32. */
12623 case EM_SPARC32PLUS:
12626 return reloc_type == 3 /* R_SPARC_32. */
12627 || reloc_type == 23; /* R_SPARC_UA32. */
12629 return reloc_type == 6; /* R_SPU_ADDR32 */
12631 return reloc_type == 1; /* R_C6000_ABS32. */
12633 return reloc_type == 2; /* R_TILEGX_32. */
12635 return reloc_type == 1; /* R_TILEPRO_32. */
12636 case EM_CYGNUS_V850:
12638 return reloc_type == 6; /* R_V850_ABS32. */
12640 return reloc_type == 0x33; /* R_V810_WORD. */
12642 return reloc_type == 1; /* R_VAX_32. */
12644 return reloc_type == 3; /* R_VISIUM_32. */
12645 case EM_WEBASSEMBLY:
12646 return reloc_type == 1; /* R_WASM32_32. */
12650 return reloc_type == 10; /* R_X86_64_32. */
12653 return reloc_type == 3; /* R_XC16C_ABS_32. */
12655 return reloc_type == 4; /* R_XGATE_32. */
12657 return reloc_type == 1; /* R_XSTROMY16_32. */
12658 case EM_XTENSA_OLD:
12660 return reloc_type == 1; /* R_XTENSA_32. */
12663 static unsigned int prev_warn = 0;
12665 /* Avoid repeating the same warning multiple times. */
12666 if (prev_warn != filedata->file_header.e_machine)
12667 error (_("Missing knowledge of 32-bit reloc types used in DWARF sections of machine number %d\n"),
12668 filedata->file_header.e_machine);
12669 prev_warn = filedata->file_header.e_machine;
12675 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
12676 a 32-bit pc-relative RELA relocation used in DWARF debug sections. */
12679 is_32bit_pcrel_reloc (Filedata * filedata, unsigned int reloc_type)
12681 switch (filedata->file_header.e_machine)
12682 /* Please keep this table alpha-sorted for ease of visual lookup. */
12686 return reloc_type == 2; /* R_386_PC32. */
12688 return reloc_type == 4; /* R_68K_PC32. */
12690 return reloc_type == 261; /* R_AARCH64_PREL32 */
12691 case EM_ADAPTEVA_EPIPHANY:
12692 return reloc_type == 6;
12694 return reloc_type == 10; /* R_ALPHA_SREL32. */
12695 case EM_ARC_COMPACT:
12696 case EM_ARC_COMPACT2:
12697 return reloc_type == 49; /* R_ARC_32_PCREL. */
12699 return reloc_type == 3; /* R_ARM_REL32 */
12702 return reloc_type == 36; /* R_AVR_32_PCREL. */
12703 case EM_MICROBLAZE:
12704 return reloc_type == 2; /* R_MICROBLAZE_32_PCREL. */
12706 return reloc_type == 9; /* R_OR1K_32_PCREL. */
12708 return reloc_type == 9; /* R_PARISC_PCREL32. */
12710 return reloc_type == 26; /* R_PPC_REL32. */
12712 return reloc_type == 26; /* R_PPC64_REL32. */
12714 return reloc_type == 57; /* R_RISCV_32_PCREL. */
12717 return reloc_type == 5; /* R_390_PC32. */
12719 return reloc_type == 2; /* R_SH_REL32. */
12720 case EM_SPARC32PLUS:
12723 return reloc_type == 6; /* R_SPARC_DISP32. */
12725 return reloc_type == 13; /* R_SPU_REL32. */
12727 return reloc_type == 6; /* R_TILEGX_32_PCREL. */
12729 return reloc_type == 4; /* R_TILEPRO_32_PCREL. */
12731 return reloc_type == 6; /* R_VISIUM_32_PCREL */
12735 return reloc_type == 2; /* R_X86_64_PC32. */
12736 case EM_XTENSA_OLD:
12738 return reloc_type == 14; /* R_XTENSA_32_PCREL. */
12740 /* Do not abort or issue an error message here. Not all targets use
12741 pc-relative 32-bit relocs in their DWARF debug information and we
12742 have already tested for target coverage in is_32bit_abs_reloc. A
12743 more helpful warning message will be generated by apply_relocations
12744 anyway, so just return. */
12749 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
12750 a 64-bit absolute RELA relocation used in DWARF debug sections. */
12753 is_64bit_abs_reloc (Filedata * filedata, unsigned int reloc_type)
12755 switch (filedata->file_header.e_machine)
12758 return reloc_type == 257; /* R_AARCH64_ABS64. */
12760 return reloc_type == 2; /* R_ALPHA_REFQUAD. */
12762 return (reloc_type == 0x26 /* R_IA64_DIR64MSB. */
12763 || reloc_type == 0x27 /* R_IA64_DIR64LSB. */);
12765 return reloc_type == 80; /* R_PARISC_DIR64. */
12767 return reloc_type == 38; /* R_PPC64_ADDR64. */
12769 return reloc_type == 2; /* R_RISCV_64. */
12770 case EM_SPARC32PLUS:
12773 return reloc_type == 32 /* R_SPARC_64. */
12774 || reloc_type == 54; /* R_SPARC_UA64. */
12778 return reloc_type == 1; /* R_X86_64_64. */
12781 return reloc_type == 22; /* R_S390_64. */
12783 return reloc_type == 1; /* R_TILEGX_64. */
12785 return reloc_type == 18; /* R_MIPS_64. */
12791 /* Like is_32bit_pcrel_reloc except that it returns TRUE iff RELOC_TYPE is
12792 a 64-bit pc-relative RELA relocation used in DWARF debug sections. */
12795 is_64bit_pcrel_reloc (Filedata * filedata, unsigned int reloc_type)
12797 switch (filedata->file_header.e_machine)
12800 return reloc_type == 260; /* R_AARCH64_PREL64. */
12802 return reloc_type == 11; /* R_ALPHA_SREL64. */
12804 return (reloc_type == 0x4e /* R_IA64_PCREL64MSB. */
12805 || reloc_type == 0x4f /* R_IA64_PCREL64LSB. */);
12807 return reloc_type == 72; /* R_PARISC_PCREL64. */
12809 return reloc_type == 44; /* R_PPC64_REL64. */
12810 case EM_SPARC32PLUS:
12813 return reloc_type == 46; /* R_SPARC_DISP64. */
12817 return reloc_type == 24; /* R_X86_64_PC64. */
12820 return reloc_type == 23; /* R_S390_PC64. */
12822 return reloc_type == 5; /* R_TILEGX_64_PCREL. */
12828 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
12829 a 24-bit absolute RELA relocation used in DWARF debug sections. */
12832 is_24bit_abs_reloc (Filedata * filedata, unsigned int reloc_type)
12834 switch (filedata->file_header.e_machine)
12836 case EM_CYGNUS_MN10200:
12838 return reloc_type == 4; /* R_MN10200_24. */
12840 return reloc_type == 5; /* R_FT32_20. */
12846 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
12847 a 16-bit absolute RELA relocation used in DWARF debug sections. */
12850 is_16bit_abs_reloc (Filedata * filedata, unsigned int reloc_type)
12852 /* Please keep this table alpha-sorted for ease of visual lookup. */
12853 switch (filedata->file_header.e_machine)
12856 case EM_ARC_COMPACT:
12857 case EM_ARC_COMPACT2:
12858 return reloc_type == 2; /* R_ARC_16. */
12859 case EM_ADAPTEVA_EPIPHANY:
12860 return reloc_type == 5;
12863 return reloc_type == 4; /* R_AVR_16. */
12864 case EM_CYGNUS_D10V:
12866 return reloc_type == 3; /* R_D10V_16. */
12868 return reloc_type == 2; /* R_FT32_16. */
12872 return reloc_type == R_H8_DIR16;
12875 return reloc_type == 1; /* R_IP2K_16. */
12878 return reloc_type == 1; /* R_M32C_16 */
12879 case EM_CYGNUS_MN10200:
12881 return reloc_type == 2; /* R_MN10200_16. */
12882 case EM_CYGNUS_MN10300:
12884 return reloc_type == 2; /* R_MN10300_16. */
12886 if (uses_msp430x_relocs (filedata))
12887 return reloc_type == 2; /* R_MSP430_ABS16. */
12888 /* Fall through. */
12889 case EM_MSP430_OLD:
12890 return reloc_type == 5; /* R_MSP430_16_BYTE. */
12892 return reloc_type == 19; /* R_NDS32_RELA. */
12893 case EM_ALTERA_NIOS2:
12894 return reloc_type == 13; /* R_NIOS2_BFD_RELOC_16. */
12896 return reloc_type == 9; /* R_NIOS_16. */
12898 return reloc_type == 2; /* R_OR1K_16. */
12900 return reloc_type == 55; /* R_RISCV_SET16. */
12902 return reloc_type == 8; /* R_PRU_BFD_RELOC_16. */
12904 return reloc_type == 2; /* R_C6000_ABS16. */
12906 return reloc_type == 2; /* R_VISIUM_16. */
12909 return reloc_type == 2; /* R_XC16C_ABS_16. */
12911 return reloc_type == 3; /* R_XGATE_16. */
12917 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
12918 a 8-bit absolute RELA relocation used in DWARF debug sections. */
12921 is_8bit_abs_reloc (Filedata * filedata, unsigned int reloc_type)
12923 switch (filedata->file_header.e_machine)
12926 return reloc_type == 54; /* R_RISCV_SET8. */
12932 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
12933 a 6-bit absolute RELA relocation used in DWARF debug sections. */
12936 is_6bit_abs_reloc (Filedata * filedata, unsigned int reloc_type)
12938 switch (filedata->file_header.e_machine)
12941 return reloc_type == 53; /* R_RISCV_SET6. */
12947 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
12948 a 32-bit inplace add RELA relocation used in DWARF debug sections. */
12951 is_32bit_inplace_add_reloc (Filedata * filedata, unsigned int reloc_type)
12953 /* Please keep this table alpha-sorted for ease of visual lookup. */
12954 switch (filedata->file_header.e_machine)
12957 return reloc_type == 35; /* R_RISCV_ADD32. */
12963 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
12964 a 32-bit inplace sub RELA relocation used in DWARF debug sections. */
12967 is_32bit_inplace_sub_reloc (Filedata * filedata, unsigned int reloc_type)
12969 /* Please keep this table alpha-sorted for ease of visual lookup. */
12970 switch (filedata->file_header.e_machine)
12973 return reloc_type == 39; /* R_RISCV_SUB32. */
12979 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
12980 a 64-bit inplace add RELA relocation used in DWARF debug sections. */
12983 is_64bit_inplace_add_reloc (Filedata * filedata, unsigned int reloc_type)
12985 /* Please keep this table alpha-sorted for ease of visual lookup. */
12986 switch (filedata->file_header.e_machine)
12989 return reloc_type == 36; /* R_RISCV_ADD64. */
12995 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
12996 a 64-bit inplace sub RELA relocation used in DWARF debug sections. */
12999 is_64bit_inplace_sub_reloc (Filedata * filedata, unsigned int reloc_type)
13001 /* Please keep this table alpha-sorted for ease of visual lookup. */
13002 switch (filedata->file_header.e_machine)
13005 return reloc_type == 40; /* R_RISCV_SUB64. */
13011 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13012 a 16-bit inplace add RELA relocation used in DWARF debug sections. */
13015 is_16bit_inplace_add_reloc (Filedata * filedata, unsigned int reloc_type)
13017 /* Please keep this table alpha-sorted for ease of visual lookup. */
13018 switch (filedata->file_header.e_machine)
13021 return reloc_type == 34; /* R_RISCV_ADD16. */
13027 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13028 a 16-bit inplace sub RELA relocation used in DWARF debug sections. */
13031 is_16bit_inplace_sub_reloc (Filedata * filedata, unsigned int reloc_type)
13033 /* Please keep this table alpha-sorted for ease of visual lookup. */
13034 switch (filedata->file_header.e_machine)
13037 return reloc_type == 38; /* R_RISCV_SUB16. */
13043 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13044 a 8-bit inplace add RELA relocation used in DWARF debug sections. */
13047 is_8bit_inplace_add_reloc (Filedata * filedata, unsigned int reloc_type)
13049 /* Please keep this table alpha-sorted for ease of visual lookup. */
13050 switch (filedata->file_header.e_machine)
13053 return reloc_type == 33; /* R_RISCV_ADD8. */
13059 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13060 a 8-bit inplace sub RELA relocation used in DWARF debug sections. */
13063 is_8bit_inplace_sub_reloc (Filedata * filedata, unsigned int reloc_type)
13065 /* Please keep this table alpha-sorted for ease of visual lookup. */
13066 switch (filedata->file_header.e_machine)
13069 return reloc_type == 37; /* R_RISCV_SUB8. */
13075 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
13076 a 6-bit inplace sub RELA relocation used in DWARF debug sections. */
13079 is_6bit_inplace_sub_reloc (Filedata * filedata, unsigned int reloc_type)
13081 switch (filedata->file_header.e_machine)
13084 return reloc_type == 52; /* R_RISCV_SUB6. */
13090 /* Returns TRUE iff RELOC_TYPE is a NONE relocation used for discarded
13091 relocation entries (possibly formerly used for SHT_GROUP sections). */
13094 is_none_reloc (Filedata * filedata, unsigned int reloc_type)
13096 switch (filedata->file_header.e_machine)
13098 case EM_386: /* R_386_NONE. */
13099 case EM_68K: /* R_68K_NONE. */
13100 case EM_ADAPTEVA_EPIPHANY:
13101 case EM_ALPHA: /* R_ALPHA_NONE. */
13102 case EM_ALTERA_NIOS2: /* R_NIOS2_NONE. */
13103 case EM_ARC: /* R_ARC_NONE. */
13104 case EM_ARC_COMPACT2: /* R_ARC_NONE. */
13105 case EM_ARC_COMPACT: /* R_ARC_NONE. */
13106 case EM_ARM: /* R_ARM_NONE. */
13107 case EM_C166: /* R_XC16X_NONE. */
13108 case EM_CRIS: /* R_CRIS_NONE. */
13109 case EM_FT32: /* R_FT32_NONE. */
13110 case EM_IA_64: /* R_IA64_NONE. */
13111 case EM_K1OM: /* R_X86_64_NONE. */
13112 case EM_L1OM: /* R_X86_64_NONE. */
13113 case EM_M32R: /* R_M32R_NONE. */
13114 case EM_MIPS: /* R_MIPS_NONE. */
13115 case EM_MN10300: /* R_MN10300_NONE. */
13116 case EM_MOXIE: /* R_MOXIE_NONE. */
13117 case EM_NIOS32: /* R_NIOS_NONE. */
13118 case EM_OR1K: /* R_OR1K_NONE. */
13119 case EM_PARISC: /* R_PARISC_NONE. */
13120 case EM_PPC64: /* R_PPC64_NONE. */
13121 case EM_PPC: /* R_PPC_NONE. */
13122 case EM_RISCV: /* R_RISCV_NONE. */
13123 case EM_S390: /* R_390_NONE. */
13125 case EM_SH: /* R_SH_NONE. */
13126 case EM_SPARC32PLUS:
13127 case EM_SPARC: /* R_SPARC_NONE. */
13129 case EM_TILEGX: /* R_TILEGX_NONE. */
13130 case EM_TILEPRO: /* R_TILEPRO_NONE. */
13131 case EM_TI_C6000:/* R_C6000_NONE. */
13132 case EM_X86_64: /* R_X86_64_NONE. */
13134 case EM_WEBASSEMBLY: /* R_WASM32_NONE. */
13135 return reloc_type == 0;
13138 return reloc_type == 0 || reloc_type == 256;
13141 return (reloc_type == 0 /* R_AVR_NONE. */
13142 || reloc_type == 30 /* R_AVR_DIFF8. */
13143 || reloc_type == 31 /* R_AVR_DIFF16. */
13144 || reloc_type == 32 /* R_AVR_DIFF32. */);
13146 return reloc_type == 3; /* R_METAG_NONE. */
13148 return (reloc_type == 0 /* R_XTENSA_NONE. */
13149 || reloc_type == 204 /* R_NDS32_DIFF8. */
13150 || reloc_type == 205 /* R_NDS32_DIFF16. */
13151 || reloc_type == 206 /* R_NDS32_DIFF32. */
13152 || reloc_type == 207 /* R_NDS32_ULEB128. */);
13154 return (reloc_type == 0 /* R_PRU_NONE. */
13155 || reloc_type == 65 /* R_PRU_DIFF8. */
13156 || reloc_type == 66 /* R_PRU_DIFF16. */
13157 || reloc_type == 67 /* R_PRU_DIFF32. */);
13158 case EM_XTENSA_OLD:
13160 return (reloc_type == 0 /* R_XTENSA_NONE. */
13161 || reloc_type == 17 /* R_XTENSA_DIFF8. */
13162 || reloc_type == 18 /* R_XTENSA_DIFF16. */
13163 || reloc_type == 19 /* R_XTENSA_DIFF32. */);
13168 /* Returns TRUE if there is a relocation against
13169 section NAME at OFFSET bytes. */
13172 reloc_at (struct dwarf_section * dsec, dwarf_vma offset)
13174 Elf_Internal_Rela * relocs;
13175 Elf_Internal_Rela * rp;
13177 if (dsec == NULL || dsec->reloc_info == NULL)
13180 relocs = (Elf_Internal_Rela *) dsec->reloc_info;
13182 for (rp = relocs; rp < relocs + dsec->num_relocs; ++rp)
13183 if (rp->r_offset == offset)
13189 /* Apply relocations to a section.
13190 Returns TRUE upon success, FALSE otherwise.
13191 If RELOCS_RETURN is non-NULL then it is set to point to the loaded relocs.
13192 It is then the caller's responsibility to free them. NUM_RELOCS_RETURN
13193 will be set to the number of relocs loaded.
13195 Note: So far support has been added only for those relocations
13196 which can be found in debug sections. FIXME: Add support for
13197 more relocations ? */
13200 apply_relocations (Filedata * filedata,
13201 const Elf_Internal_Shdr * section,
13202 unsigned char * start,
13203 bfd_size_type size,
13204 void ** relocs_return,
13205 unsigned long * num_relocs_return)
13207 Elf_Internal_Shdr * relsec;
13208 unsigned char * end = start + size;
13210 if (relocs_return != NULL)
13212 * (Elf_Internal_Rela **) relocs_return = NULL;
13213 * num_relocs_return = 0;
13216 if (filedata->file_header.e_type != ET_REL)
13217 /* No relocs to apply. */
13220 /* Find the reloc section associated with the section. */
13221 for (relsec = filedata->section_headers;
13222 relsec < filedata->section_headers + filedata->file_header.e_shnum;
13225 bfd_boolean is_rela;
13226 unsigned long num_relocs;
13227 Elf_Internal_Rela * relocs;
13228 Elf_Internal_Rela * rp;
13229 Elf_Internal_Shdr * symsec;
13230 Elf_Internal_Sym * symtab;
13231 unsigned long num_syms;
13232 Elf_Internal_Sym * sym;
13234 if ((relsec->sh_type != SHT_RELA && relsec->sh_type != SHT_REL)
13235 || relsec->sh_info >= filedata->file_header.e_shnum
13236 || filedata->section_headers + relsec->sh_info != section
13237 || relsec->sh_size == 0
13238 || relsec->sh_link >= filedata->file_header.e_shnum)
13241 is_rela = relsec->sh_type == SHT_RELA;
13245 if (!slurp_rela_relocs (filedata, relsec->sh_offset,
13246 relsec->sh_size, & relocs, & num_relocs))
13251 if (!slurp_rel_relocs (filedata, relsec->sh_offset,
13252 relsec->sh_size, & relocs, & num_relocs))
13256 /* SH uses RELA but uses in place value instead of the addend field. */
13257 if (filedata->file_header.e_machine == EM_SH)
13260 symsec = filedata->section_headers + relsec->sh_link;
13261 if (symsec->sh_type != SHT_SYMTAB
13262 && symsec->sh_type != SHT_DYNSYM)
13264 symtab = GET_ELF_SYMBOLS (filedata, symsec, & num_syms);
13266 for (rp = relocs; rp < relocs + num_relocs; ++rp)
13269 unsigned int reloc_type;
13270 unsigned int reloc_size;
13271 bfd_boolean reloc_inplace = FALSE;
13272 bfd_boolean reloc_subtract = FALSE;
13273 unsigned char * rloc;
13274 unsigned long sym_index;
13276 reloc_type = get_reloc_type (filedata, rp->r_info);
13278 if (target_specific_reloc_handling (filedata, rp, start, end, symtab, num_syms))
13280 else if (is_none_reloc (filedata, reloc_type))
13282 else if (is_32bit_abs_reloc (filedata, reloc_type)
13283 || is_32bit_pcrel_reloc (filedata, reloc_type))
13285 else if (is_64bit_abs_reloc (filedata, reloc_type)
13286 || is_64bit_pcrel_reloc (filedata, reloc_type))
13288 else if (is_24bit_abs_reloc (filedata, reloc_type))
13290 else if (is_16bit_abs_reloc (filedata, reloc_type))
13292 else if (is_8bit_abs_reloc (filedata, reloc_type)
13293 || is_6bit_abs_reloc (filedata, reloc_type))
13295 else if ((reloc_subtract = is_32bit_inplace_sub_reloc (filedata,
13297 || is_32bit_inplace_add_reloc (filedata, reloc_type))
13300 reloc_inplace = TRUE;
13302 else if ((reloc_subtract = is_64bit_inplace_sub_reloc (filedata,
13304 || is_64bit_inplace_add_reloc (filedata, reloc_type))
13307 reloc_inplace = TRUE;
13309 else if ((reloc_subtract = is_16bit_inplace_sub_reloc (filedata,
13311 || is_16bit_inplace_add_reloc (filedata, reloc_type))
13314 reloc_inplace = TRUE;
13316 else if ((reloc_subtract = is_8bit_inplace_sub_reloc (filedata,
13318 || is_8bit_inplace_add_reloc (filedata, reloc_type))
13321 reloc_inplace = TRUE;
13323 else if ((reloc_subtract = is_6bit_inplace_sub_reloc (filedata,
13327 reloc_inplace = TRUE;
13331 static unsigned int prev_reloc = 0;
13333 if (reloc_type != prev_reloc)
13334 warn (_("unable to apply unsupported reloc type %d to section %s\n"),
13335 reloc_type, printable_section_name (filedata, section));
13336 prev_reloc = reloc_type;
13340 rloc = start + rp->r_offset;
13341 if ((rloc + reloc_size) > end || (rloc < start))
13343 warn (_("skipping invalid relocation offset 0x%lx in section %s\n"),
13344 (unsigned long) rp->r_offset,
13345 printable_section_name (filedata, section));
13349 sym_index = (unsigned long) get_reloc_symindex (rp->r_info);
13350 if (sym_index >= num_syms)
13352 warn (_("skipping invalid relocation symbol index 0x%lx in section %s\n"),
13353 sym_index, printable_section_name (filedata, section));
13356 sym = symtab + sym_index;
13358 /* If the reloc has a symbol associated with it,
13359 make sure that it is of an appropriate type.
13361 Relocations against symbols without type can happen.
13362 Gcc -feliminate-dwarf2-dups may generate symbols
13363 without type for debug info.
13365 Icc generates relocations against function symbols
13366 instead of local labels.
13368 Relocations against object symbols can happen, eg when
13369 referencing a global array. For an example of this see
13370 the _clz.o binary in libgcc.a. */
13372 && ELF_ST_TYPE (sym->st_info) != STT_COMMON
13373 && ELF_ST_TYPE (sym->st_info) > STT_SECTION)
13375 warn (_("skipping unexpected symbol type %s in section %s relocation %ld\n"),
13376 get_symbol_type (filedata, ELF_ST_TYPE (sym->st_info)),
13377 printable_section_name (filedata, relsec),
13378 (long int)(rp - relocs));
13384 addend += rp->r_addend;
13385 /* R_XTENSA_32, R_PJ_DATA_DIR32 and R_D30V_32_NORMAL are
13386 partial_inplace. */
13388 || (filedata->file_header.e_machine == EM_XTENSA
13389 && reloc_type == 1)
13390 || ((filedata->file_header.e_machine == EM_PJ
13391 || filedata->file_header.e_machine == EM_PJ_OLD)
13392 && reloc_type == 1)
13393 || ((filedata->file_header.e_machine == EM_D30V
13394 || filedata->file_header.e_machine == EM_CYGNUS_D30V)
13395 && reloc_type == 12)
13398 if (is_6bit_inplace_sub_reloc (filedata, reloc_type))
13399 addend += byte_get (rloc, reloc_size) & 0x3f;
13401 addend += byte_get (rloc, reloc_size);
13404 if (is_32bit_pcrel_reloc (filedata, reloc_type)
13405 || is_64bit_pcrel_reloc (filedata, reloc_type))
13407 /* On HPPA, all pc-relative relocations are biased by 8. */
13408 if (filedata->file_header.e_machine == EM_PARISC)
13410 byte_put (rloc, (addend + sym->st_value) - rp->r_offset,
13413 else if (is_6bit_abs_reloc (filedata, reloc_type)
13414 || is_6bit_inplace_sub_reloc (filedata, reloc_type))
13416 if (reloc_subtract)
13417 addend -= sym->st_value;
13419 addend += sym->st_value;
13420 addend = (addend & 0x3f) | (byte_get (rloc, reloc_size) & 0xc0);
13421 byte_put (rloc, addend, reloc_size);
13423 else if (reloc_subtract)
13424 byte_put (rloc, addend - sym->st_value, reloc_size);
13426 byte_put (rloc, addend + sym->st_value, reloc_size);
13430 /* Let the target specific reloc processing code know that
13431 we have finished with these relocs. */
13432 target_specific_reloc_handling (filedata, NULL, NULL, NULL, NULL, 0);
13436 * (Elf_Internal_Rela **) relocs_return = relocs;
13437 * num_relocs_return = num_relocs;
13448 #ifdef SUPPORT_DISASSEMBLY
13450 disassemble_section (Elf_Internal_Shdr * section, Filedata * filedata)
13452 printf (_("\nAssembly dump of section %s\n"), printable_section_name (filedata, section));
13454 /* FIXME: XXX -- to be done --- XXX */
13460 /* Reads in the contents of SECTION from FILE, returning a pointer
13461 to a malloc'ed buffer or NULL if something went wrong. */
13464 get_section_contents (Elf_Internal_Shdr * section, Filedata * filedata)
13466 bfd_size_type num_bytes = section->sh_size;
13468 if (num_bytes == 0 || section->sh_type == SHT_NOBITS)
13470 printf (_("Section '%s' has no data to dump.\n"),
13471 printable_section_name (filedata, section));
13475 return (char *) get_data (NULL, filedata, section->sh_offset, 1, num_bytes,
13476 _("section contents"));
13479 /* Uncompresses a section that was compressed using zlib, in place. */
13482 uncompress_section_contents (unsigned char ** buffer,
13483 dwarf_size_type uncompressed_size,
13484 dwarf_size_type * size)
13486 dwarf_size_type compressed_size = *size;
13487 unsigned char * compressed_buffer = *buffer;
13488 unsigned char * uncompressed_buffer;
13492 /* It is possible the section consists of several compressed
13493 buffers concatenated together, so we uncompress in a loop. */
13494 /* PR 18313: The state field in the z_stream structure is supposed
13495 to be invisible to the user (ie us), but some compilers will
13496 still complain about it being used without initialisation. So
13497 we first zero the entire z_stream structure and then set the fields
13499 memset (& strm, 0, sizeof strm);
13500 strm.avail_in = compressed_size;
13501 strm.next_in = (Bytef *) compressed_buffer;
13502 strm.avail_out = uncompressed_size;
13503 uncompressed_buffer = (unsigned char *) xmalloc (uncompressed_size);
13505 rc = inflateInit (& strm);
13506 while (strm.avail_in > 0)
13510 strm.next_out = ((Bytef *) uncompressed_buffer
13511 + (uncompressed_size - strm.avail_out));
13512 rc = inflate (&strm, Z_FINISH);
13513 if (rc != Z_STREAM_END)
13515 rc = inflateReset (& strm);
13517 rc = inflateEnd (& strm);
13519 || strm.avail_out != 0)
13522 *buffer = uncompressed_buffer;
13523 *size = uncompressed_size;
13527 free (uncompressed_buffer);
13528 /* Indicate decompression failure. */
13534 dump_section_as_strings (Elf_Internal_Shdr * section, Filedata * filedata)
13536 Elf_Internal_Shdr * relsec;
13537 bfd_size_type num_bytes;
13538 unsigned char * data;
13539 unsigned char * end;
13540 unsigned char * real_start;
13541 unsigned char * start;
13542 bfd_boolean some_strings_shown;
13544 real_start = start = (unsigned char *) get_section_contents (section, filedata);
13546 /* PR 21820: Do not fail if the section was empty. */
13547 return (section->sh_size == 0 || section->sh_type == SHT_NOBITS) ? TRUE : FALSE;
13549 num_bytes = section->sh_size;
13551 printf (_("\nString dump of section '%s':\n"), printable_section_name (filedata, section));
13553 if (decompress_dumps)
13555 dwarf_size_type new_size = num_bytes;
13556 dwarf_size_type uncompressed_size = 0;
13558 if ((section->sh_flags & SHF_COMPRESSED) != 0)
13560 Elf_Internal_Chdr chdr;
13561 unsigned int compression_header_size
13562 = get_compression_header (& chdr, (unsigned char *) start,
13565 if (chdr.ch_type != ELFCOMPRESS_ZLIB)
13567 warn (_("section '%s' has unsupported compress type: %d\n"),
13568 printable_section_name (filedata, section), chdr.ch_type);
13571 uncompressed_size = chdr.ch_size;
13572 start += compression_header_size;
13573 new_size -= compression_header_size;
13575 else if (new_size > 12 && streq ((char *) start, "ZLIB"))
13577 /* Read the zlib header. In this case, it should be "ZLIB"
13578 followed by the uncompressed section size, 8 bytes in
13579 big-endian order. */
13580 uncompressed_size = start[4]; uncompressed_size <<= 8;
13581 uncompressed_size += start[5]; uncompressed_size <<= 8;
13582 uncompressed_size += start[6]; uncompressed_size <<= 8;
13583 uncompressed_size += start[7]; uncompressed_size <<= 8;
13584 uncompressed_size += start[8]; uncompressed_size <<= 8;
13585 uncompressed_size += start[9]; uncompressed_size <<= 8;
13586 uncompressed_size += start[10]; uncompressed_size <<= 8;
13587 uncompressed_size += start[11];
13592 if (uncompressed_size)
13594 if (uncompress_section_contents (& start,
13595 uncompressed_size, & new_size))
13596 num_bytes = new_size;
13599 error (_("Unable to decompress section %s\n"),
13600 printable_section_name (filedata, section));
13605 start = real_start;
13608 /* If the section being dumped has relocations against it the user might
13609 be expecting these relocations to have been applied. Check for this
13610 case and issue a warning message in order to avoid confusion.
13611 FIXME: Maybe we ought to have an option that dumps a section with
13612 relocs applied ? */
13613 for (relsec = filedata->section_headers;
13614 relsec < filedata->section_headers + filedata->file_header.e_shnum;
13617 if ((relsec->sh_type != SHT_RELA && relsec->sh_type != SHT_REL)
13618 || relsec->sh_info >= filedata->file_header.e_shnum
13619 || filedata->section_headers + relsec->sh_info != section
13620 || relsec->sh_size == 0
13621 || relsec->sh_link >= filedata->file_header.e_shnum)
13624 printf (_(" Note: This section has relocations against it, but these have NOT been applied to this dump.\n"));
13629 end = start + num_bytes;
13630 some_strings_shown = FALSE;
13634 while (!ISPRINT (* data))
13635 if (++ data >= end)
13640 size_t maxlen = end - data;
13643 /* PR 11128: Use two separate invocations in order to work
13644 around bugs in the Solaris 8 implementation of printf. */
13645 printf (" [%6tx] ", data - start);
13647 printf (" [%6Ix] ", (size_t) (data - start));
13651 print_symbol ((int) maxlen, (const char *) data);
13653 data += strnlen ((const char *) data, maxlen);
13657 printf (_("<corrupt>\n"));
13660 some_strings_shown = TRUE;
13664 if (! some_strings_shown)
13665 printf (_(" No strings found in this section."));
13674 dump_section_as_bytes (Elf_Internal_Shdr * section,
13675 Filedata * filedata,
13676 bfd_boolean relocate)
13678 Elf_Internal_Shdr * relsec;
13679 bfd_size_type bytes;
13680 bfd_size_type section_size;
13682 unsigned char * data;
13683 unsigned char * real_start;
13684 unsigned char * start;
13686 real_start = start = (unsigned char *) get_section_contents (section, filedata);
13688 /* PR 21820: Do not fail if the section was empty. */
13689 return (section->sh_size == 0 || section->sh_type == SHT_NOBITS) ? TRUE : FALSE;
13691 section_size = section->sh_size;
13693 printf (_("\nHex dump of section '%s':\n"), printable_section_name (filedata, section));
13695 if (decompress_dumps)
13697 dwarf_size_type new_size = section_size;
13698 dwarf_size_type uncompressed_size = 0;
13700 if ((section->sh_flags & SHF_COMPRESSED) != 0)
13702 Elf_Internal_Chdr chdr;
13703 unsigned int compression_header_size
13704 = get_compression_header (& chdr, start, section_size);
13706 if (chdr.ch_type != ELFCOMPRESS_ZLIB)
13708 warn (_("section '%s' has unsupported compress type: %d\n"),
13709 printable_section_name (filedata, section), chdr.ch_type);
13712 uncompressed_size = chdr.ch_size;
13713 start += compression_header_size;
13714 new_size -= compression_header_size;
13716 else if (new_size > 12 && streq ((char *) start, "ZLIB"))
13718 /* Read the zlib header. In this case, it should be "ZLIB"
13719 followed by the uncompressed section size, 8 bytes in
13720 big-endian order. */
13721 uncompressed_size = start[4]; uncompressed_size <<= 8;
13722 uncompressed_size += start[5]; uncompressed_size <<= 8;
13723 uncompressed_size += start[6]; uncompressed_size <<= 8;
13724 uncompressed_size += start[7]; uncompressed_size <<= 8;
13725 uncompressed_size += start[8]; uncompressed_size <<= 8;
13726 uncompressed_size += start[9]; uncompressed_size <<= 8;
13727 uncompressed_size += start[10]; uncompressed_size <<= 8;
13728 uncompressed_size += start[11];
13733 if (uncompressed_size)
13735 if (uncompress_section_contents (& start, uncompressed_size,
13738 section_size = new_size;
13742 error (_("Unable to decompress section %s\n"),
13743 printable_section_name (filedata, section));
13744 /* FIXME: Print the section anyway ? */
13749 start = real_start;
13754 if (! apply_relocations (filedata, section, start, section_size, NULL, NULL))
13759 /* If the section being dumped has relocations against it the user might
13760 be expecting these relocations to have been applied. Check for this
13761 case and issue a warning message in order to avoid confusion.
13762 FIXME: Maybe we ought to have an option that dumps a section with
13763 relocs applied ? */
13764 for (relsec = filedata->section_headers;
13765 relsec < filedata->section_headers + filedata->file_header.e_shnum;
13768 if ((relsec->sh_type != SHT_RELA && relsec->sh_type != SHT_REL)
13769 || relsec->sh_info >= filedata->file_header.e_shnum
13770 || filedata->section_headers + relsec->sh_info != section
13771 || relsec->sh_size == 0
13772 || relsec->sh_link >= filedata->file_header.e_shnum)
13775 printf (_(" NOTE: This section has relocations against it, but these have NOT been applied to this dump.\n"));
13780 addr = section->sh_addr;
13781 bytes = section_size;
13790 lbytes = (bytes > 16 ? 16 : bytes);
13792 printf (" 0x%8.8lx ", (unsigned long) addr);
13794 for (j = 0; j < 16; j++)
13797 printf ("%2.2x", data[j]);
13805 for (j = 0; j < lbytes; j++)
13808 if (k >= ' ' && k < 0x7f)
13828 static ctf_sect_t *
13829 shdr_to_ctf_sect (ctf_sect_t *buf, Elf_Internal_Shdr *shdr, Filedata *filedata)
13831 buf->cts_name = SECTION_NAME (shdr);
13832 buf->cts_size = shdr->sh_size;
13833 buf->cts_entsize = shdr->sh_entsize;
13838 /* Formatting callback function passed to ctf_dump. Returns either the pointer
13839 it is passed, or a pointer to newly-allocated storage, in which case
13840 dump_ctf() will free it when it no longer needs it. */
13842 static char *dump_ctf_indent_lines (ctf_sect_names_t sect ATTRIBUTE_UNUSED,
13843 char *s, void *arg)
13845 char *spaces = arg;
13848 if (asprintf (&new_s, "%s%s", spaces, s) < 0)
13854 dump_section_as_ctf (Elf_Internal_Shdr * section, Filedata * filedata)
13856 Elf_Internal_Shdr * parent_sec = NULL;
13857 Elf_Internal_Shdr * symtab_sec = NULL;
13858 Elf_Internal_Shdr * strtab_sec = NULL;
13859 void * data = NULL;
13860 void * symdata = NULL;
13861 void * strdata = NULL;
13862 void * parentdata = NULL;
13863 ctf_sect_t ctfsect, symsect, strsect, parentsect;
13864 ctf_sect_t * symsectp = NULL;
13865 ctf_sect_t * strsectp = NULL;
13866 ctf_file_t * ctf = NULL;
13867 ctf_file_t * parent = NULL;
13869 const char *things[] = {"Labels", "Data objects", "Function objects",
13870 "Variables", "Types", "Strings", ""};
13871 const char **thing;
13873 bfd_boolean ret = FALSE;
13876 shdr_to_ctf_sect (&ctfsect, section, filedata);
13877 data = get_section_contents (section, filedata);
13878 ctfsect.cts_data = data;
13880 if (dump_ctf_symtab_name)
13882 if ((symtab_sec = find_section (filedata, dump_ctf_symtab_name)) == NULL)
13884 error (_("No symbol section named %s\n"), dump_ctf_symtab_name);
13887 if ((symdata = (void *) get_data (NULL, filedata,
13888 symtab_sec->sh_offset, 1,
13889 symtab_sec->sh_size,
13890 _("symbols"))) == NULL)
13892 symsectp = shdr_to_ctf_sect (&symsect, symtab_sec, filedata);
13893 symsect.cts_data = symdata;
13895 if (dump_ctf_strtab_name)
13897 if ((strtab_sec = find_section (filedata, dump_ctf_strtab_name)) == NULL)
13899 error (_("No string table section named %s\n"),
13900 dump_ctf_strtab_name);
13903 if ((strdata = (void *) get_data (NULL, filedata,
13904 strtab_sec->sh_offset, 1,
13905 strtab_sec->sh_size,
13906 _("strings"))) == NULL)
13908 strsectp = shdr_to_ctf_sect (&strsect, strtab_sec, filedata);
13909 strsect.cts_data = strdata;
13911 if (dump_ctf_parent_name)
13913 if ((parent_sec = find_section (filedata, dump_ctf_parent_name)) == NULL)
13915 error (_("No CTF parent section named %s\n"), dump_ctf_parent_name);
13918 if ((parentdata = (void *) get_data (NULL, filedata,
13919 parent_sec->sh_offset, 1,
13920 parent_sec->sh_size,
13921 _("CTF parent"))) == NULL)
13923 shdr_to_ctf_sect (&parentsect, parent_sec, filedata);
13924 parentsect.cts_data = parentdata;
13927 /* Load the CTF file and dump it. */
13929 if ((ctf = ctf_bufopen (&ctfsect, symsectp, strsectp, &err)) == NULL)
13931 error (_("CTF open failure: %s\n"), ctf_errmsg (err));
13937 if ((parent = ctf_bufopen (&parentsect, symsectp, strsectp, &err)) == NULL)
13939 error (_("CTF open failure: %s\n"), ctf_errmsg (err));
13943 ctf_import (ctf, parent);
13948 printf (_("\nDump of CTF section '%s':\n"),
13949 printable_section_name (filedata, section));
13951 for (i = 1, thing = things; *thing[0]; thing++, i++)
13953 ctf_dump_state_t *s = NULL;
13956 printf ("\n %s:\n", *thing);
13957 while ((item = ctf_dump (ctf, &s, i, dump_ctf_indent_lines,
13958 (void *) " ")) != NULL)
13960 printf ("%s\n", item);
13964 if (ctf_errno (ctf))
13966 error (_("Iteration failed: %s, %s\n"), *thing,
13967 ctf_errmsg (ctf_errno (ctf)));
13973 ctf_file_close (ctf);
13974 ctf_file_close (parent);
13981 #endif /* HAVE_LIBCTF */
13984 load_specific_debug_section (enum dwarf_section_display_enum debug,
13985 const Elf_Internal_Shdr * sec,
13988 struct dwarf_section * section = &debug_displays [debug].section;
13990 Filedata * filedata = (Filedata *) data;
13992 if (section->start != NULL)
13994 /* If it is already loaded, do nothing. */
13995 if (streq (section->filename, filedata->file_name))
13997 free (section->start);
14000 snprintf (buf, sizeof (buf), _("%s section data"), section->name);
14001 section->address = sec->sh_addr;
14002 section->user_data = NULL;
14003 section->filename = filedata->file_name;
14004 section->start = (unsigned char *) get_data (NULL, filedata,
14006 sec->sh_size, buf);
14007 if (section->start == NULL)
14011 unsigned char *start = section->start;
14012 dwarf_size_type size = sec->sh_size;
14013 dwarf_size_type uncompressed_size = 0;
14015 if ((sec->sh_flags & SHF_COMPRESSED) != 0)
14017 Elf_Internal_Chdr chdr;
14018 unsigned int compression_header_size;
14020 if (size < (is_32bit_elf
14021 ? sizeof (Elf32_External_Chdr)
14022 : sizeof (Elf64_External_Chdr)))
14024 warn (_("compressed section %s is too small to contain a compression header"),
14029 compression_header_size = get_compression_header (&chdr, start, size);
14031 if (chdr.ch_type != ELFCOMPRESS_ZLIB)
14033 warn (_("section '%s' has unsupported compress type: %d\n"),
14034 section->name, chdr.ch_type);
14037 uncompressed_size = chdr.ch_size;
14038 start += compression_header_size;
14039 size -= compression_header_size;
14041 else if (size > 12 && streq ((char *) start, "ZLIB"))
14043 /* Read the zlib header. In this case, it should be "ZLIB"
14044 followed by the uncompressed section size, 8 bytes in
14045 big-endian order. */
14046 uncompressed_size = start[4]; uncompressed_size <<= 8;
14047 uncompressed_size += start[5]; uncompressed_size <<= 8;
14048 uncompressed_size += start[6]; uncompressed_size <<= 8;
14049 uncompressed_size += start[7]; uncompressed_size <<= 8;
14050 uncompressed_size += start[8]; uncompressed_size <<= 8;
14051 uncompressed_size += start[9]; uncompressed_size <<= 8;
14052 uncompressed_size += start[10]; uncompressed_size <<= 8;
14053 uncompressed_size += start[11];
14058 if (uncompressed_size)
14060 if (uncompress_section_contents (&start, uncompressed_size,
14063 /* Free the compressed buffer, update the section buffer
14064 and the section size if uncompress is successful. */
14065 free (section->start);
14066 section->start = start;
14070 error (_("Unable to decompress section %s\n"),
14071 printable_section_name (filedata, sec));
14076 section->size = size;
14079 if (section->start == NULL)
14082 if (debug_displays [debug].relocate)
14084 if (! apply_relocations (filedata, sec, section->start, section->size,
14085 & section->reloc_info, & section->num_relocs))
14090 section->reloc_info = NULL;
14091 section->num_relocs = 0;
14097 /* If this is not NULL, load_debug_section will only look for sections
14098 within the list of sections given here. */
14099 static unsigned int * section_subset = NULL;
14102 load_debug_section (enum dwarf_section_display_enum debug, void * data)
14104 struct dwarf_section * section = &debug_displays [debug].section;
14105 Elf_Internal_Shdr * sec;
14106 Filedata * filedata = (Filedata *) data;
14108 /* Without section headers we cannot find any sections. */
14109 if (filedata->section_headers == NULL)
14112 if (filedata->string_table == NULL
14113 && filedata->file_header.e_shstrndx != SHN_UNDEF
14114 && filedata->file_header.e_shstrndx < filedata->file_header.e_shnum)
14116 Elf_Internal_Shdr * strs;
14118 /* Read in the string table, so that we have section names to scan. */
14119 strs = filedata->section_headers + filedata->file_header.e_shstrndx;
14121 if (strs != NULL && strs->sh_size != 0)
14123 filedata->string_table
14124 = (char *) get_data (NULL, filedata, strs->sh_offset,
14125 1, strs->sh_size, _("string table"));
14127 filedata->string_table_length
14128 = filedata->string_table != NULL ? strs->sh_size : 0;
14132 /* Locate the debug section. */
14133 sec = find_section_in_set (filedata, section->uncompressed_name, section_subset);
14135 section->name = section->uncompressed_name;
14138 sec = find_section_in_set (filedata, section->compressed_name, section_subset);
14140 section->name = section->compressed_name;
14145 /* If we're loading from a subset of sections, and we've loaded
14146 a section matching this name before, it's likely that it's a
14148 if (section_subset != NULL)
14149 free_debug_section (debug);
14151 return load_specific_debug_section (debug, sec, data);
14155 free_debug_section (enum dwarf_section_display_enum debug)
14157 struct dwarf_section * section = &debug_displays [debug].section;
14159 if (section->start == NULL)
14162 free ((char *) section->start);
14163 section->start = NULL;
14164 section->address = 0;
14169 display_debug_section (int shndx, Elf_Internal_Shdr * section, Filedata * filedata)
14171 char * name = SECTION_NAME (section);
14172 const char * print_name = printable_section_name (filedata, section);
14173 bfd_size_type length;
14174 bfd_boolean result = TRUE;
14177 length = section->sh_size;
14180 printf (_("\nSection '%s' has no debugging data.\n"), print_name);
14183 if (section->sh_type == SHT_NOBITS)
14185 /* There is no point in dumping the contents of a debugging section
14186 which has the NOBITS type - the bits in the file will be random.
14187 This can happen when a file containing a .eh_frame section is
14188 stripped with the --only-keep-debug command line option. */
14189 printf (_("section '%s' has the NOBITS type - its contents are unreliable.\n"),
14194 if (const_strneq (name, ".gnu.linkonce.wi."))
14195 name = ".debug_info";
14197 /* See if we know how to display the contents of this section. */
14198 for (i = 0; i < max; i++)
14200 enum dwarf_section_display_enum id = (enum dwarf_section_display_enum) i;
14201 struct dwarf_section_display * display = debug_displays + i;
14202 struct dwarf_section * sec = & display->section;
14204 if (streq (sec->uncompressed_name, name)
14205 || (id == line && const_strneq (name, ".debug_line."))
14206 || streq (sec->compressed_name, name))
14208 bfd_boolean secondary = (section != find_section (filedata, name));
14211 free_debug_section (id);
14213 if (i == line && const_strneq (name, ".debug_line."))
14215 else if (streq (sec->uncompressed_name, name))
14216 sec->name = sec->uncompressed_name;
14218 sec->name = sec->compressed_name;
14220 if (load_specific_debug_section (id, section, filedata))
14222 /* If this debug section is part of a CU/TU set in a .dwp file,
14223 restrict load_debug_section to the sections in that set. */
14224 section_subset = find_cu_tu_set (filedata, shndx);
14226 result &= display->display (sec, filedata);
14228 section_subset = NULL;
14230 if (secondary || (id != info && id != abbrev))
14231 free_debug_section (id);
14239 printf (_("Unrecognized debug section: %s\n"), print_name);
14246 /* Set DUMP_SECTS for all sections where dumps were requested
14247 based on section name. */
14250 initialise_dumps_byname (Filedata * filedata)
14252 struct dump_list_entry * cur;
14254 for (cur = dump_sects_byname; cur; cur = cur->next)
14257 bfd_boolean any = FALSE;
14259 for (i = 0; i < filedata->file_header.e_shnum; i++)
14260 if (streq (SECTION_NAME (filedata->section_headers + i), cur->name))
14262 request_dump_bynumber (filedata, i, cur->type);
14267 warn (_("Section '%s' was not dumped because it does not exist!\n"),
14273 process_section_contents (Filedata * filedata)
14275 Elf_Internal_Shdr * section;
14277 bfd_boolean res = TRUE;
14282 initialise_dumps_byname (filedata);
14284 for (i = 0, section = filedata->section_headers;
14285 i < filedata->file_header.e_shnum && i < filedata->num_dump_sects;
14288 dump_type dump = filedata->dump_sects[i];
14290 #ifdef SUPPORT_DISASSEMBLY
14291 if (dump & DISASS_DUMP)
14293 if (! disassemble_section (section, filedata))
14297 if (dump & HEX_DUMP)
14299 if (! dump_section_as_bytes (section, filedata, FALSE))
14303 if (dump & RELOC_DUMP)
14305 if (! dump_section_as_bytes (section, filedata, TRUE))
14309 if (dump & STRING_DUMP)
14311 if (! dump_section_as_strings (section, filedata))
14315 if (dump & DEBUG_DUMP)
14317 if (! display_debug_section (i, section, filedata))
14322 if (dump & CTF_DUMP)
14324 if (! dump_section_as_ctf (section, filedata))
14330 /* Check to see if the user requested a
14331 dump of a section that does not exist. */
14332 while (i < filedata->num_dump_sects)
14334 if (filedata->dump_sects[i])
14336 warn (_("Section %d was not dumped because it does not exist!\n"), i);
14346 process_mips_fpe_exception (int mask)
14350 bfd_boolean first = TRUE;
14352 if (mask & OEX_FPU_INEX)
14353 fputs ("INEX", stdout), first = FALSE;
14354 if (mask & OEX_FPU_UFLO)
14355 printf ("%sUFLO", first ? "" : "|"), first = FALSE;
14356 if (mask & OEX_FPU_OFLO)
14357 printf ("%sOFLO", first ? "" : "|"), first = FALSE;
14358 if (mask & OEX_FPU_DIV0)
14359 printf ("%sDIV0", first ? "" : "|"), first = FALSE;
14360 if (mask & OEX_FPU_INVAL)
14361 printf ("%sINVAL", first ? "" : "|");
14364 fputs ("0", stdout);
14367 /* Display's the value of TAG at location P. If TAG is
14368 greater than 0 it is assumed to be an unknown tag, and
14369 a message is printed to this effect. Otherwise it is
14370 assumed that a message has already been printed.
14372 If the bottom bit of TAG is set it assumed to have a
14373 string value, otherwise it is assumed to have an integer
14376 Returns an updated P pointing to the first unread byte
14377 beyond the end of TAG's value.
14379 Reads at or beyond END will not be made. */
14381 static unsigned char *
14382 display_tag_value (signed int tag,
14384 const unsigned char * const end)
14389 printf (" Tag_unknown_%d: ", tag);
14393 warn (_("<corrupt tag>\n"));
14397 /* PR 17531 file: 027-19978-0.004. */
14398 size_t maxlen = (end - p) - 1;
14403 print_symbol ((int) maxlen, (const char *) p);
14404 p += strnlen ((char *) p, maxlen) + 1;
14408 printf (_("<corrupt string tag>"));
14409 p = (unsigned char *) end;
14417 val = read_uleb128 (p, &len, end);
14419 printf ("%ld (0x%lx)\n", val, val);
14426 /* ARC ABI attributes section. */
14428 static unsigned char *
14429 display_arc_attribute (unsigned char * p,
14430 const unsigned char * const end)
14436 tag = read_uleb128 (p, &len, end);
14441 case Tag_ARC_PCS_config:
14442 val = read_uleb128 (p, &len, end);
14444 printf (" Tag_ARC_PCS_config: ");
14448 printf (_("Absent/Non standard\n"));
14451 printf (_("Bare metal/mwdt\n"));
14454 printf (_("Bare metal/newlib\n"));
14457 printf (_("Linux/uclibc\n"));
14460 printf (_("Linux/glibc\n"));
14463 printf (_("Unknown\n"));
14468 case Tag_ARC_CPU_base:
14469 val = read_uleb128 (p, &len, end);
14471 printf (" Tag_ARC_CPU_base: ");
14476 printf (_("Absent\n"));
14478 case TAG_CPU_ARC6xx:
14479 printf ("ARC6xx\n");
14481 case TAG_CPU_ARC7xx:
14482 printf ("ARC7xx\n");
14484 case TAG_CPU_ARCEM:
14485 printf ("ARCEM\n");
14487 case TAG_CPU_ARCHS:
14488 printf ("ARCHS\n");
14493 case Tag_ARC_CPU_variation:
14494 val = read_uleb128 (p, &len, end);
14496 printf (" Tag_ARC_CPU_variation: ");
14500 if (val > 0 && val < 16)
14501 printf ("Core%d\n", val);
14503 printf ("Unknown\n");
14507 printf (_("Absent\n"));
14512 case Tag_ARC_CPU_name:
14513 printf (" Tag_ARC_CPU_name: ");
14514 p = display_tag_value (-1, p, end);
14517 case Tag_ARC_ABI_rf16:
14518 val = read_uleb128 (p, &len, end);
14520 printf (" Tag_ARC_ABI_rf16: %s\n", val ? _("yes") : _("no"));
14523 case Tag_ARC_ABI_osver:
14524 val = read_uleb128 (p, &len, end);
14526 printf (" Tag_ARC_ABI_osver: v%d\n", val);
14529 case Tag_ARC_ABI_pic:
14530 case Tag_ARC_ABI_sda:
14531 val = read_uleb128 (p, &len, end);
14533 printf (tag == Tag_ARC_ABI_sda ? " Tag_ARC_ABI_sda: "
14534 : " Tag_ARC_ABI_pic: ");
14538 printf (_("Absent\n"));
14547 printf (_("Unknown\n"));
14552 case Tag_ARC_ABI_tls:
14553 val = read_uleb128 (p, &len, end);
14555 printf (" Tag_ARC_ABI_tls: %s\n", val ? "r25": "none");
14558 case Tag_ARC_ABI_enumsize:
14559 val = read_uleb128 (p, &len, end);
14561 printf (" Tag_ARC_ABI_enumsize: %s\n", val ? _("default") :
14565 case Tag_ARC_ABI_exceptions:
14566 val = read_uleb128 (p, &len, end);
14568 printf (" Tag_ARC_ABI_exceptions: %s\n", val ? _("OPTFP")
14572 case Tag_ARC_ABI_double_size:
14573 val = read_uleb128 (p, &len, end);
14575 printf (" Tag_ARC_ABI_double_size: %d\n", val);
14578 case Tag_ARC_ISA_config:
14579 printf (" Tag_ARC_ISA_config: ");
14580 p = display_tag_value (-1, p, end);
14583 case Tag_ARC_ISA_apex:
14584 printf (" Tag_ARC_ISA_apex: ");
14585 p = display_tag_value (-1, p, end);
14588 case Tag_ARC_ISA_mpy_option:
14589 val = read_uleb128 (p, &len, end);
14591 printf (" Tag_ARC_ISA_mpy_option: %d\n", val);
14594 case Tag_ARC_ATR_version:
14595 val = read_uleb128 (p, &len, end);
14597 printf (" Tag_ARC_ATR_version: %d\n", val);
14601 return display_tag_value (tag & 1, p, end);
14607 /* ARM EABI attributes section. */
14612 /* 0 = special, 1 = string, 2 = uleb123, > 0x80 == table lookup. */
14614 const char ** table;
14615 } arm_attr_public_tag;
14617 static const char * arm_attr_tag_CPU_arch[] =
14618 {"Pre-v4", "v4", "v4T", "v5T", "v5TE", "v5TEJ", "v6", "v6KZ", "v6T2",
14619 "v6K", "v7", "v6-M", "v6S-M", "v7E-M", "v8", "v8-R", "v8-M.baseline",
14620 "v8-M.mainline", "", "", "", "v8.1-M.mainline"};
14621 static const char * arm_attr_tag_ARM_ISA_use[] = {"No", "Yes"};
14622 static const char * arm_attr_tag_THUMB_ISA_use[] =
14623 {"No", "Thumb-1", "Thumb-2", "Yes"};
14624 static const char * arm_attr_tag_FP_arch[] =
14625 {"No", "VFPv1", "VFPv2", "VFPv3", "VFPv3-D16", "VFPv4", "VFPv4-D16",
14626 "FP for ARMv8", "FPv5/FP-D16 for ARMv8"};
14627 static const char * arm_attr_tag_WMMX_arch[] = {"No", "WMMXv1", "WMMXv2"};
14628 static const char * arm_attr_tag_Advanced_SIMD_arch[] =
14629 {"No", "NEONv1", "NEONv1 with Fused-MAC", "NEON for ARMv8",
14630 "NEON for ARMv8.1"};
14631 static const char * arm_attr_tag_PCS_config[] =
14632 {"None", "Bare platform", "Linux application", "Linux DSO", "PalmOS 2004",
14633 "PalmOS (reserved)", "SymbianOS 2004", "SymbianOS (reserved)"};
14634 static const char * arm_attr_tag_ABI_PCS_R9_use[] =
14635 {"V6", "SB", "TLS", "Unused"};
14636 static const char * arm_attr_tag_ABI_PCS_RW_data[] =
14637 {"Absolute", "PC-relative", "SB-relative", "None"};
14638 static const char * arm_attr_tag_ABI_PCS_RO_data[] =
14639 {"Absolute", "PC-relative", "None"};
14640 static const char * arm_attr_tag_ABI_PCS_GOT_use[] =
14641 {"None", "direct", "GOT-indirect"};
14642 static const char * arm_attr_tag_ABI_PCS_wchar_t[] =
14643 {"None", "??? 1", "2", "??? 3", "4"};
14644 static const char * arm_attr_tag_ABI_FP_rounding[] = {"Unused", "Needed"};
14645 static const char * arm_attr_tag_ABI_FP_denormal[] =
14646 {"Unused", "Needed", "Sign only"};
14647 static const char * arm_attr_tag_ABI_FP_exceptions[] = {"Unused", "Needed"};
14648 static const char * arm_attr_tag_ABI_FP_user_exceptions[] = {"Unused", "Needed"};
14649 static const char * arm_attr_tag_ABI_FP_number_model[] =
14650 {"Unused", "Finite", "RTABI", "IEEE 754"};
14651 static const char * arm_attr_tag_ABI_enum_size[] =
14652 {"Unused", "small", "int", "forced to int"};
14653 static const char * arm_attr_tag_ABI_HardFP_use[] =
14654 {"As Tag_FP_arch", "SP only", "Reserved", "Deprecated"};
14655 static const char * arm_attr_tag_ABI_VFP_args[] =
14656 {"AAPCS", "VFP registers", "custom", "compatible"};
14657 static const char * arm_attr_tag_ABI_WMMX_args[] =
14658 {"AAPCS", "WMMX registers", "custom"};
14659 static const char * arm_attr_tag_ABI_optimization_goals[] =
14660 {"None", "Prefer Speed", "Aggressive Speed", "Prefer Size",
14661 "Aggressive Size", "Prefer Debug", "Aggressive Debug"};
14662 static const char * arm_attr_tag_ABI_FP_optimization_goals[] =
14663 {"None", "Prefer Speed", "Aggressive Speed", "Prefer Size",
14664 "Aggressive Size", "Prefer Accuracy", "Aggressive Accuracy"};
14665 static const char * arm_attr_tag_CPU_unaligned_access[] = {"None", "v6"};
14666 static const char * arm_attr_tag_FP_HP_extension[] =
14667 {"Not Allowed", "Allowed"};
14668 static const char * arm_attr_tag_ABI_FP_16bit_format[] =
14669 {"None", "IEEE 754", "Alternative Format"};
14670 static const char * arm_attr_tag_DSP_extension[] =
14671 {"Follow architecture", "Allowed"};
14672 static const char * arm_attr_tag_MPextension_use[] =
14673 {"Not Allowed", "Allowed"};
14674 static const char * arm_attr_tag_DIV_use[] =
14675 {"Allowed in Thumb-ISA, v7-R or v7-M", "Not allowed",
14676 "Allowed in v7-A with integer division extension"};
14677 static const char * arm_attr_tag_T2EE_use[] = {"Not Allowed", "Allowed"};
14678 static const char * arm_attr_tag_Virtualization_use[] =
14679 {"Not Allowed", "TrustZone", "Virtualization Extensions",
14680 "TrustZone and Virtualization Extensions"};
14681 static const char * arm_attr_tag_MPextension_use_legacy[] =
14682 {"Not Allowed", "Allowed"};
14684 static const char * arm_attr_tag_MVE_arch[] =
14685 {"No MVE", "MVE Integer only", "MVE Integer and FP"};
14687 #define LOOKUP(id, name) \
14688 {id, #name, 0x80 | ARRAY_SIZE(arm_attr_tag_##name), arm_attr_tag_##name}
14689 static arm_attr_public_tag arm_attr_public_tags[] =
14691 {4, "CPU_raw_name", 1, NULL},
14692 {5, "CPU_name", 1, NULL},
14693 LOOKUP(6, CPU_arch),
14694 {7, "CPU_arch_profile", 0, NULL},
14695 LOOKUP(8, ARM_ISA_use),
14696 LOOKUP(9, THUMB_ISA_use),
14697 LOOKUP(10, FP_arch),
14698 LOOKUP(11, WMMX_arch),
14699 LOOKUP(12, Advanced_SIMD_arch),
14700 LOOKUP(13, PCS_config),
14701 LOOKUP(14, ABI_PCS_R9_use),
14702 LOOKUP(15, ABI_PCS_RW_data),
14703 LOOKUP(16, ABI_PCS_RO_data),
14704 LOOKUP(17, ABI_PCS_GOT_use),
14705 LOOKUP(18, ABI_PCS_wchar_t),
14706 LOOKUP(19, ABI_FP_rounding),
14707 LOOKUP(20, ABI_FP_denormal),
14708 LOOKUP(21, ABI_FP_exceptions),
14709 LOOKUP(22, ABI_FP_user_exceptions),
14710 LOOKUP(23, ABI_FP_number_model),
14711 {24, "ABI_align_needed", 0, NULL},
14712 {25, "ABI_align_preserved", 0, NULL},
14713 LOOKUP(26, ABI_enum_size),
14714 LOOKUP(27, ABI_HardFP_use),
14715 LOOKUP(28, ABI_VFP_args),
14716 LOOKUP(29, ABI_WMMX_args),
14717 LOOKUP(30, ABI_optimization_goals),
14718 LOOKUP(31, ABI_FP_optimization_goals),
14719 {32, "compatibility", 0, NULL},
14720 LOOKUP(34, CPU_unaligned_access),
14721 LOOKUP(36, FP_HP_extension),
14722 LOOKUP(38, ABI_FP_16bit_format),
14723 LOOKUP(42, MPextension_use),
14724 LOOKUP(44, DIV_use),
14725 LOOKUP(46, DSP_extension),
14726 LOOKUP(48, MVE_arch),
14727 {64, "nodefaults", 0, NULL},
14728 {65, "also_compatible_with", 0, NULL},
14729 LOOKUP(66, T2EE_use),
14730 {67, "conformance", 1, NULL},
14731 LOOKUP(68, Virtualization_use),
14732 LOOKUP(70, MPextension_use_legacy)
14736 static unsigned char *
14737 display_arm_attribute (unsigned char * p,
14738 const unsigned char * const end)
14743 arm_attr_public_tag * attr;
14747 tag = read_uleb128 (p, &len, end);
14750 for (i = 0; i < ARRAY_SIZE (arm_attr_public_tags); i++)
14752 if (arm_attr_public_tags[i].tag == tag)
14754 attr = &arm_attr_public_tags[i];
14761 printf (" Tag_%s: ", attr->name);
14762 switch (attr->type)
14767 case 7: /* Tag_CPU_arch_profile. */
14768 val = read_uleb128 (p, &len, end);
14772 case 0: printf (_("None\n")); break;
14773 case 'A': printf (_("Application\n")); break;
14774 case 'R': printf (_("Realtime\n")); break;
14775 case 'M': printf (_("Microcontroller\n")); break;
14776 case 'S': printf (_("Application or Realtime\n")); break;
14777 default: printf ("??? (%d)\n", val); break;
14781 case 24: /* Tag_align_needed. */
14782 val = read_uleb128 (p, &len, end);
14786 case 0: printf (_("None\n")); break;
14787 case 1: printf (_("8-byte\n")); break;
14788 case 2: printf (_("4-byte\n")); break;
14789 case 3: printf ("??? 3\n"); break;
14792 printf (_("8-byte and up to %d-byte extended\n"),
14795 printf ("??? (%d)\n", val);
14800 case 25: /* Tag_align_preserved. */
14801 val = read_uleb128 (p, &len, end);
14805 case 0: printf (_("None\n")); break;
14806 case 1: printf (_("8-byte, except leaf SP\n")); break;
14807 case 2: printf (_("8-byte\n")); break;
14808 case 3: printf ("??? 3\n"); break;
14811 printf (_("8-byte and up to %d-byte extended\n"),
14814 printf ("??? (%d)\n", val);
14819 case 32: /* Tag_compatibility. */
14821 val = read_uleb128 (p, &len, end);
14823 printf (_("flag = %d, vendor = "), val);
14826 size_t maxlen = (end - p) - 1;
14828 print_symbol ((int) maxlen, (const char *) p);
14829 p += strnlen ((char *) p, maxlen) + 1;
14833 printf (_("<corrupt>"));
14834 p = (unsigned char *) end;
14840 case 64: /* Tag_nodefaults. */
14841 /* PR 17531: file: 001-505008-0.01. */
14844 printf (_("True\n"));
14847 case 65: /* Tag_also_compatible_with. */
14848 val = read_uleb128 (p, &len, end);
14850 if (val == 6 /* Tag_CPU_arch. */)
14852 val = read_uleb128 (p, &len, end);
14854 if ((unsigned int) val >= ARRAY_SIZE (arm_attr_tag_CPU_arch))
14855 printf ("??? (%d)\n", val);
14857 printf ("%s\n", arm_attr_tag_CPU_arch[val]);
14861 while (p < end && *(p++) != '\0' /* NUL terminator. */)
14866 printf (_("<unknown: %d>\n"), tag);
14872 return display_tag_value (-1, p, end);
14874 return display_tag_value (0, p, end);
14877 assert (attr->type & 0x80);
14878 val = read_uleb128 (p, &len, end);
14880 type = attr->type & 0x7f;
14882 printf ("??? (%d)\n", val);
14884 printf ("%s\n", attr->table[val]);
14889 return display_tag_value (tag, p, end);
14892 static unsigned char *
14893 display_gnu_attribute (unsigned char * p,
14894 unsigned char * (* display_proc_gnu_attribute) (unsigned char *, unsigned int, const unsigned char * const),
14895 const unsigned char * const end)
14901 tag = read_uleb128 (p, &len, end);
14904 /* Tag_compatibility is the only generic GNU attribute defined at
14908 val = read_uleb128 (p, &len, end);
14911 printf (_("flag = %d, vendor = "), val);
14914 printf (_("<corrupt>\n"));
14915 warn (_("corrupt vendor attribute\n"));
14921 size_t maxlen = (end - p) - 1;
14923 print_symbol ((int) maxlen, (const char *) p);
14924 p += strnlen ((char *) p, maxlen) + 1;
14928 printf (_("<corrupt>"));
14929 p = (unsigned char *) end;
14936 if ((tag & 2) == 0 && display_proc_gnu_attribute)
14937 return display_proc_gnu_attribute (p, tag, end);
14939 return display_tag_value (tag, p, end);
14942 static unsigned char *
14943 display_power_gnu_attribute (unsigned char * p,
14945 const unsigned char * const end)
14950 if (tag == Tag_GNU_Power_ABI_FP)
14952 val = read_uleb128 (p, &len, end);
14954 printf (" Tag_GNU_Power_ABI_FP: ");
14957 printf (_("<corrupt>\n"));
14962 printf ("(%#x), ", val);
14967 printf (_("unspecified hard/soft float, "));
14970 printf (_("hard float, "));
14973 printf (_("soft float, "));
14976 printf (_("single-precision hard float, "));
14983 printf (_("unspecified long double\n"));
14986 printf (_("128-bit IBM long double\n"));
14989 printf (_("64-bit long double\n"));
14992 printf (_("128-bit IEEE long double\n"));
14998 if (tag == Tag_GNU_Power_ABI_Vector)
15000 val = read_uleb128 (p, &len, end);
15002 printf (" Tag_GNU_Power_ABI_Vector: ");
15005 printf (_("<corrupt>\n"));
15010 printf ("(%#x), ", val);
15015 printf (_("unspecified\n"));
15018 printf (_("generic\n"));
15021 printf ("AltiVec\n");
15030 if (tag == Tag_GNU_Power_ABI_Struct_Return)
15032 val = read_uleb128 (p, &len, end);
15034 printf (" Tag_GNU_Power_ABI_Struct_Return: ");
15037 printf (_("<corrupt>\n"));
15042 printf ("(%#x), ", val);
15047 printf (_("unspecified\n"));
15050 printf ("r3/r4\n");
15053 printf (_("memory\n"));
15062 return display_tag_value (tag & 1, p, end);
15065 static unsigned char *
15066 display_s390_gnu_attribute (unsigned char * p,
15068 const unsigned char * const end)
15073 if (tag == Tag_GNU_S390_ABI_Vector)
15075 val = read_uleb128 (p, &len, end);
15077 printf (" Tag_GNU_S390_ABI_Vector: ");
15082 printf (_("any\n"));
15085 printf (_("software\n"));
15088 printf (_("hardware\n"));
15091 printf ("??? (%d)\n", val);
15097 return display_tag_value (tag & 1, p, end);
15101 display_sparc_hwcaps (unsigned int mask)
15105 bfd_boolean first = TRUE;
15107 if (mask & ELF_SPARC_HWCAP_MUL32)
15108 fputs ("mul32", stdout), first = FALSE;
15109 if (mask & ELF_SPARC_HWCAP_DIV32)
15110 printf ("%sdiv32", first ? "" : "|"), first = FALSE;
15111 if (mask & ELF_SPARC_HWCAP_FSMULD)
15112 printf ("%sfsmuld", first ? "" : "|"), first = FALSE;
15113 if (mask & ELF_SPARC_HWCAP_V8PLUS)
15114 printf ("%sv8plus", first ? "" : "|"), first = FALSE;
15115 if (mask & ELF_SPARC_HWCAP_POPC)
15116 printf ("%spopc", first ? "" : "|"), first = FALSE;
15117 if (mask & ELF_SPARC_HWCAP_VIS)
15118 printf ("%svis", first ? "" : "|"), first = FALSE;
15119 if (mask & ELF_SPARC_HWCAP_VIS2)
15120 printf ("%svis2", first ? "" : "|"), first = FALSE;
15121 if (mask & ELF_SPARC_HWCAP_ASI_BLK_INIT)
15122 printf ("%sASIBlkInit", first ? "" : "|"), first = FALSE;
15123 if (mask & ELF_SPARC_HWCAP_FMAF)
15124 printf ("%sfmaf", first ? "" : "|"), first = FALSE;
15125 if (mask & ELF_SPARC_HWCAP_VIS3)
15126 printf ("%svis3", first ? "" : "|"), first = FALSE;
15127 if (mask & ELF_SPARC_HWCAP_HPC)
15128 printf ("%shpc", first ? "" : "|"), first = FALSE;
15129 if (mask & ELF_SPARC_HWCAP_RANDOM)
15130 printf ("%srandom", first ? "" : "|"), first = FALSE;
15131 if (mask & ELF_SPARC_HWCAP_TRANS)
15132 printf ("%strans", first ? "" : "|"), first = FALSE;
15133 if (mask & ELF_SPARC_HWCAP_FJFMAU)
15134 printf ("%sfjfmau", first ? "" : "|"), first = FALSE;
15135 if (mask & ELF_SPARC_HWCAP_IMA)
15136 printf ("%sima", first ? "" : "|"), first = FALSE;
15137 if (mask & ELF_SPARC_HWCAP_ASI_CACHE_SPARING)
15138 printf ("%scspare", first ? "" : "|"), first = FALSE;
15141 fputc ('0', stdout);
15142 fputc ('\n', stdout);
15146 display_sparc_hwcaps2 (unsigned int mask)
15150 bfd_boolean first = TRUE;
15152 if (mask & ELF_SPARC_HWCAP2_FJATHPLUS)
15153 fputs ("fjathplus", stdout), first = FALSE;
15154 if (mask & ELF_SPARC_HWCAP2_VIS3B)
15155 printf ("%svis3b", first ? "" : "|"), first = FALSE;
15156 if (mask & ELF_SPARC_HWCAP2_ADP)
15157 printf ("%sadp", first ? "" : "|"), first = FALSE;
15158 if (mask & ELF_SPARC_HWCAP2_SPARC5)
15159 printf ("%ssparc5", first ? "" : "|"), first = FALSE;
15160 if (mask & ELF_SPARC_HWCAP2_MWAIT)
15161 printf ("%smwait", first ? "" : "|"), first = FALSE;
15162 if (mask & ELF_SPARC_HWCAP2_XMPMUL)
15163 printf ("%sxmpmul", first ? "" : "|"), first = FALSE;
15164 if (mask & ELF_SPARC_HWCAP2_XMONT)
15165 printf ("%sxmont2", first ? "" : "|"), first = FALSE;
15166 if (mask & ELF_SPARC_HWCAP2_NSEC)
15167 printf ("%snsec", first ? "" : "|"), first = FALSE;
15168 if (mask & ELF_SPARC_HWCAP2_FJATHHPC)
15169 printf ("%sfjathhpc", first ? "" : "|"), first = FALSE;
15170 if (mask & ELF_SPARC_HWCAP2_FJDES)
15171 printf ("%sfjdes", first ? "" : "|"), first = FALSE;
15172 if (mask & ELF_SPARC_HWCAP2_FJAES)
15173 printf ("%sfjaes", first ? "" : "|"), first = FALSE;
15176 fputc ('0', stdout);
15177 fputc ('\n', stdout);
15180 static unsigned char *
15181 display_sparc_gnu_attribute (unsigned char * p,
15183 const unsigned char * const end)
15188 if (tag == Tag_GNU_Sparc_HWCAPS)
15190 val = read_uleb128 (p, &len, end);
15192 printf (" Tag_GNU_Sparc_HWCAPS: ");
15193 display_sparc_hwcaps (val);
15196 if (tag == Tag_GNU_Sparc_HWCAPS2)
15198 val = read_uleb128 (p, &len, end);
15200 printf (" Tag_GNU_Sparc_HWCAPS2: ");
15201 display_sparc_hwcaps2 (val);
15205 return display_tag_value (tag, p, end);
15209 print_mips_fp_abi_value (unsigned int val)
15213 case Val_GNU_MIPS_ABI_FP_ANY:
15214 printf (_("Hard or soft float\n"));
15216 case Val_GNU_MIPS_ABI_FP_DOUBLE:
15217 printf (_("Hard float (double precision)\n"));
15219 case Val_GNU_MIPS_ABI_FP_SINGLE:
15220 printf (_("Hard float (single precision)\n"));
15222 case Val_GNU_MIPS_ABI_FP_SOFT:
15223 printf (_("Soft float\n"));
15225 case Val_GNU_MIPS_ABI_FP_OLD_64:
15226 printf (_("Hard float (MIPS32r2 64-bit FPU 12 callee-saved)\n"));
15228 case Val_GNU_MIPS_ABI_FP_XX:
15229 printf (_("Hard float (32-bit CPU, Any FPU)\n"));
15231 case Val_GNU_MIPS_ABI_FP_64:
15232 printf (_("Hard float (32-bit CPU, 64-bit FPU)\n"));
15234 case Val_GNU_MIPS_ABI_FP_64A:
15235 printf (_("Hard float compat (32-bit CPU, 64-bit FPU)\n"));
15237 case Val_GNU_MIPS_ABI_FP_NAN2008:
15238 printf (_("NaN 2008 compatibility\n"));
15241 printf ("??? (%d)\n", val);
15246 static unsigned char *
15247 display_mips_gnu_attribute (unsigned char * p,
15249 const unsigned char * const end)
15251 if (tag == Tag_GNU_MIPS_ABI_FP)
15256 val = read_uleb128 (p, &len, end);
15258 printf (" Tag_GNU_MIPS_ABI_FP: ");
15260 print_mips_fp_abi_value (val);
15265 if (tag == Tag_GNU_MIPS_ABI_MSA)
15270 val = read_uleb128 (p, &len, end);
15272 printf (" Tag_GNU_MIPS_ABI_MSA: ");
15276 case Val_GNU_MIPS_ABI_MSA_ANY:
15277 printf (_("Any MSA or not\n"));
15279 case Val_GNU_MIPS_ABI_MSA_128:
15280 printf (_("128-bit MSA\n"));
15283 printf ("??? (%d)\n", val);
15289 return display_tag_value (tag & 1, p, end);
15292 static unsigned char *
15293 display_tic6x_attribute (unsigned char * p,
15294 const unsigned char * const end)
15300 tag = read_uleb128 (p, &len, end);
15306 val = read_uleb128 (p, &len, end);
15308 printf (" Tag_ISA: ");
15312 case C6XABI_Tag_ISA_none:
15313 printf (_("None\n"));
15315 case C6XABI_Tag_ISA_C62X:
15318 case C6XABI_Tag_ISA_C67X:
15321 case C6XABI_Tag_ISA_C67XP:
15322 printf ("C67x+\n");
15324 case C6XABI_Tag_ISA_C64X:
15327 case C6XABI_Tag_ISA_C64XP:
15328 printf ("C64x+\n");
15330 case C6XABI_Tag_ISA_C674X:
15331 printf ("C674x\n");
15334 printf ("??? (%d)\n", val);
15339 case Tag_ABI_wchar_t:
15340 val = read_uleb128 (p, &len, end);
15342 printf (" Tag_ABI_wchar_t: ");
15346 printf (_("Not used\n"));
15349 printf (_("2 bytes\n"));
15352 printf (_("4 bytes\n"));
15355 printf ("??? (%d)\n", val);
15360 case Tag_ABI_stack_align_needed:
15361 val = read_uleb128 (p, &len, end);
15363 printf (" Tag_ABI_stack_align_needed: ");
15367 printf (_("8-byte\n"));
15370 printf (_("16-byte\n"));
15373 printf ("??? (%d)\n", val);
15378 case Tag_ABI_stack_align_preserved:
15379 val = read_uleb128 (p, &len, end);
15381 printf (" Tag_ABI_stack_align_preserved: ");
15385 printf (_("8-byte\n"));
15388 printf (_("16-byte\n"));
15391 printf ("??? (%d)\n", val);
15397 val = read_uleb128 (p, &len, end);
15399 printf (" Tag_ABI_DSBT: ");
15403 printf (_("DSBT addressing not used\n"));
15406 printf (_("DSBT addressing used\n"));
15409 printf ("??? (%d)\n", val);
15415 val = read_uleb128 (p, &len, end);
15417 printf (" Tag_ABI_PID: ");
15421 printf (_("Data addressing position-dependent\n"));
15424 printf (_("Data addressing position-independent, GOT near DP\n"));
15427 printf (_("Data addressing position-independent, GOT far from DP\n"));
15430 printf ("??? (%d)\n", val);
15436 val = read_uleb128 (p, &len, end);
15438 printf (" Tag_ABI_PIC: ");
15442 printf (_("Code addressing position-dependent\n"));
15445 printf (_("Code addressing position-independent\n"));
15448 printf ("??? (%d)\n", val);
15453 case Tag_ABI_array_object_alignment:
15454 val = read_uleb128 (p, &len, end);
15456 printf (" Tag_ABI_array_object_alignment: ");
15460 printf (_("8-byte\n"));
15463 printf (_("4-byte\n"));
15466 printf (_("16-byte\n"));
15469 printf ("??? (%d)\n", val);
15474 case Tag_ABI_array_object_align_expected:
15475 val = read_uleb128 (p, &len, end);
15477 printf (" Tag_ABI_array_object_align_expected: ");
15481 printf (_("8-byte\n"));
15484 printf (_("4-byte\n"));
15487 printf (_("16-byte\n"));
15490 printf ("??? (%d)\n", val);
15495 case Tag_ABI_compatibility:
15497 val = read_uleb128 (p, &len, end);
15499 printf (" Tag_ABI_compatibility: ");
15500 printf (_("flag = %d, vendor = "), val);
15503 size_t maxlen = (end - p) - 1;
15505 print_symbol ((int) maxlen, (const char *) p);
15506 p += strnlen ((char *) p, maxlen) + 1;
15510 printf (_("<corrupt>"));
15511 p = (unsigned char *) end;
15517 case Tag_ABI_conformance:
15519 printf (" Tag_ABI_conformance: \"");
15522 size_t maxlen = (end - p) - 1;
15524 print_symbol ((int) maxlen, (const char *) p);
15525 p += strnlen ((char *) p, maxlen) + 1;
15529 printf (_("<corrupt>"));
15530 p = (unsigned char *) end;
15537 return display_tag_value (tag, p, end);
15541 display_raw_attribute (unsigned char * p, unsigned char const * const end)
15543 unsigned long addr = 0;
15544 size_t bytes = end - p;
15551 int lbytes = (bytes > 16 ? 16 : bytes);
15553 printf (" 0x%8.8lx ", addr);
15555 for (j = 0; j < 16; j++)
15558 printf ("%2.2x", p[j]);
15566 for (j = 0; j < lbytes; j++)
15569 if (k >= ' ' && k < 0x7f)
15585 static unsigned char *
15586 display_msp430x_attribute (unsigned char * p,
15587 const unsigned char * const end)
15593 tag = read_uleb128 (p, & len, end);
15598 case OFBA_MSPABI_Tag_ISA:
15599 val = read_uleb128 (p, &len, end);
15601 printf (" Tag_ISA: ");
15604 case 0: printf (_("None\n")); break;
15605 case 1: printf (_("MSP430\n")); break;
15606 case 2: printf (_("MSP430X\n")); break;
15607 default: printf ("??? (%d)\n", val); break;
15611 case OFBA_MSPABI_Tag_Code_Model:
15612 val = read_uleb128 (p, &len, end);
15614 printf (" Tag_Code_Model: ");
15617 case 0: printf (_("None\n")); break;
15618 case 1: printf (_("Small\n")); break;
15619 case 2: printf (_("Large\n")); break;
15620 default: printf ("??? (%d)\n", val); break;
15624 case OFBA_MSPABI_Tag_Data_Model:
15625 val = read_uleb128 (p, &len, end);
15627 printf (" Tag_Data_Model: ");
15630 case 0: printf (_("None\n")); break;
15631 case 1: printf (_("Small\n")); break;
15632 case 2: printf (_("Large\n")); break;
15633 case 3: printf (_("Restricted Large\n")); break;
15634 default: printf ("??? (%d)\n", val); break;
15639 printf (_(" <unknown tag %d>: "), tag);
15646 size_t maxlen = (end - p) - 1;
15648 print_symbol ((int) maxlen, (const char *) p);
15649 p += strnlen ((char *) p, maxlen) + 1;
15653 printf (_("<corrupt>"));
15654 p = (unsigned char *) end;
15660 val = read_uleb128 (p, &len, end);
15662 printf ("%d (0x%x)\n", val, val);
15671 struct riscv_attr_tag_t {
15676 static struct riscv_attr_tag_t riscv_attr_tag[] =
15678 #define T(tag) {"Tag_RISCV_" #tag, Tag_RISCV_##tag}
15681 T(priv_spec_minor),
15682 T(priv_spec_revision),
15683 T(unaligned_access),
15688 static unsigned char *
15689 display_riscv_attribute (unsigned char *p,
15690 const unsigned char * const end)
15695 struct riscv_attr_tag_t *attr = NULL;
15698 tag = read_uleb128 (p, &len, end);
15701 /* Find the name of attribute. */
15702 for (i = 0; i < ARRAY_SIZE (riscv_attr_tag); i++)
15704 if (riscv_attr_tag[i].tag == tag)
15706 attr = &riscv_attr_tag[i];
15712 printf (" %s: ", attr->name);
15714 return display_tag_value (tag, p, end);
15718 case Tag_RISCV_priv_spec:
15719 case Tag_RISCV_priv_spec_minor:
15720 case Tag_RISCV_priv_spec_revision:
15721 val = read_uleb128 (p, &len, end);
15723 printf (_("%d\n"), val);
15725 case Tag_RISCV_unaligned_access:
15726 val = read_uleb128 (p, &len, end);
15731 printf (_("No unaligned access\n"));
15734 printf (_("Unaligned access\n"));
15738 case Tag_RISCV_stack_align:
15739 val = read_uleb128 (p, &len, end);
15741 printf (_("%d-bytes\n"), val);
15743 case Tag_RISCV_arch:
15744 p = display_tag_value (-1, p, end);
15747 return display_tag_value (tag, p, end);
15754 process_attributes (Filedata * filedata,
15755 const char * public_name,
15756 unsigned int proc_type,
15757 unsigned char * (* display_pub_attribute) (unsigned char *, const unsigned char * const),
15758 unsigned char * (* display_proc_gnu_attribute) (unsigned char *, unsigned int, const unsigned char * const))
15760 Elf_Internal_Shdr * sect;
15762 bfd_boolean res = TRUE;
15764 /* Find the section header so that we get the size. */
15765 for (i = 0, sect = filedata->section_headers;
15766 i < filedata->file_header.e_shnum;
15769 unsigned char * contents;
15772 if (sect->sh_type != proc_type && sect->sh_type != SHT_GNU_ATTRIBUTES)
15775 contents = (unsigned char *) get_data (NULL, filedata, sect->sh_offset, 1,
15776 sect->sh_size, _("attributes"));
15777 if (contents == NULL)
15784 /* The first character is the version of the attributes.
15785 Currently only version 1, (aka 'A') is recognised here. */
15788 printf (_("Unknown attributes version '%c'(%d) - expecting 'A'\n"), *p, *p);
15793 bfd_vma section_len;
15795 section_len = sect->sh_size - 1;
15798 while (section_len > 0)
15801 unsigned int namelen;
15802 bfd_boolean public_section;
15803 bfd_boolean gnu_section;
15805 if (section_len <= 4)
15807 error (_("Tag section ends prematurely\n"));
15811 attr_len = byte_get (p, 4);
15814 if (attr_len > section_len)
15816 error (_("Bad attribute length (%u > %u)\n"),
15817 (unsigned) attr_len, (unsigned) section_len);
15818 attr_len = section_len;
15821 /* PR 17531: file: 001-101425-0.004 */
15822 else if (attr_len < 5)
15824 error (_("Attribute length of %u is too small\n"), (unsigned) attr_len);
15829 section_len -= attr_len;
15832 namelen = strnlen ((char *) p, attr_len) + 1;
15833 if (namelen == 0 || namelen >= attr_len)
15835 error (_("Corrupt attribute section name\n"));
15840 printf (_("Attribute Section: "));
15841 print_symbol (INT_MAX, (const char *) p);
15844 if (public_name && streq ((char *) p, public_name))
15845 public_section = TRUE;
15847 public_section = FALSE;
15849 if (streq ((char *) p, "gnu"))
15850 gnu_section = TRUE;
15852 gnu_section = FALSE;
15855 attr_len -= namelen;
15857 while (attr_len > 0 && p < contents + sect->sh_size)
15862 unsigned char * end;
15864 /* PR binutils/17531: Safe handling of corrupt files. */
15867 error (_("Unused bytes at end of section\n"));
15874 size = byte_get (p, 4);
15875 if (size > attr_len)
15877 error (_("Bad subsection length (%u > %u)\n"),
15878 (unsigned) size, (unsigned) attr_len);
15882 /* PR binutils/17531: Safe handling of corrupt files. */
15885 error (_("Bad subsection length (%u < 6)\n"),
15893 end = p + size - 1;
15894 assert (end <= contents + sect->sh_size);
15900 printf (_("File Attributes\n"));
15903 printf (_("Section Attributes:"));
15906 printf (_("Symbol Attributes:"));
15907 /* Fall through. */
15913 val = read_uleb128 (p, &j, end);
15917 printf (" %d", val);
15922 printf (_("Unknown tag: %d\n"), tag);
15923 public_section = FALSE;
15927 if (public_section && display_pub_attribute != NULL)
15930 p = display_pub_attribute (p, end);
15933 else if (gnu_section && display_proc_gnu_attribute != NULL)
15936 p = display_gnu_attribute (p,
15937 display_proc_gnu_attribute,
15943 printf (_(" Unknown attribute:\n"));
15944 display_raw_attribute (p, end);
15959 /* DATA points to the contents of a MIPS GOT that starts at VMA PLTGOT.
15960 Print the Address, Access and Initial fields of an entry at VMA ADDR
15961 and return the VMA of the next entry, or -1 if there was a problem.
15962 Does not read from DATA_END or beyond. */
15965 print_mips_got_entry (unsigned char * data, bfd_vma pltgot, bfd_vma addr,
15966 unsigned char * data_end)
15969 print_vma (addr, LONG_HEX);
15971 if (addr < pltgot + 0xfff0)
15972 printf ("%6d(gp)", (int) (addr - pltgot - 0x7ff0));
15974 printf ("%10s", "");
15977 printf ("%*s", is_32bit_elf ? 8 : 16, _("<unknown>"));
15981 unsigned char * from = data + addr - pltgot;
15983 if (from + (is_32bit_elf ? 4 : 8) > data_end)
15985 warn (_("MIPS GOT entry extends beyond the end of available data\n"));
15986 printf ("%*s", is_32bit_elf ? 8 : 16, _("<corrupt>"));
15987 return (bfd_vma) -1;
15991 entry = byte_get (data + addr - pltgot, is_32bit_elf ? 4 : 8);
15992 print_vma (entry, LONG_HEX);
15995 return addr + (is_32bit_elf ? 4 : 8);
15998 /* DATA points to the contents of a MIPS PLT GOT that starts at VMA
15999 PLTGOT. Print the Address and Initial fields of an entry at VMA
16000 ADDR and return the VMA of the next entry. */
16003 print_mips_pltgot_entry (unsigned char * data, bfd_vma pltgot, bfd_vma addr)
16006 print_vma (addr, LONG_HEX);
16009 printf ("%*s", is_32bit_elf ? 8 : 16, _("<unknown>"));
16014 entry = byte_get (data + addr - pltgot, is_32bit_elf ? 4 : 8);
16015 print_vma (entry, LONG_HEX);
16017 return addr + (is_32bit_elf ? 4 : 8);
16021 print_mips_ases (unsigned int mask)
16023 if (mask & AFL_ASE_DSP)
16024 fputs ("\n\tDSP ASE", stdout);
16025 if (mask & AFL_ASE_DSPR2)
16026 fputs ("\n\tDSP R2 ASE", stdout);
16027 if (mask & AFL_ASE_DSPR3)
16028 fputs ("\n\tDSP R3 ASE", stdout);
16029 if (mask & AFL_ASE_EVA)
16030 fputs ("\n\tEnhanced VA Scheme", stdout);
16031 if (mask & AFL_ASE_MCU)
16032 fputs ("\n\tMCU (MicroController) ASE", stdout);
16033 if (mask & AFL_ASE_MDMX)
16034 fputs ("\n\tMDMX ASE", stdout);
16035 if (mask & AFL_ASE_MIPS3D)
16036 fputs ("\n\tMIPS-3D ASE", stdout);
16037 if (mask & AFL_ASE_MT)
16038 fputs ("\n\tMT ASE", stdout);
16039 if (mask & AFL_ASE_SMARTMIPS)
16040 fputs ("\n\tSmartMIPS ASE", stdout);
16041 if (mask & AFL_ASE_VIRT)
16042 fputs ("\n\tVZ ASE", stdout);
16043 if (mask & AFL_ASE_MSA)
16044 fputs ("\n\tMSA ASE", stdout);
16045 if (mask & AFL_ASE_MIPS16)
16046 fputs ("\n\tMIPS16 ASE", stdout);
16047 if (mask & AFL_ASE_MICROMIPS)
16048 fputs ("\n\tMICROMIPS ASE", stdout);
16049 if (mask & AFL_ASE_XPA)
16050 fputs ("\n\tXPA ASE", stdout);
16051 if (mask & AFL_ASE_MIPS16E2)
16052 fputs ("\n\tMIPS16e2 ASE", stdout);
16053 if (mask & AFL_ASE_CRC)
16054 fputs ("\n\tCRC ASE", stdout);
16055 if (mask & AFL_ASE_GINV)
16056 fputs ("\n\tGINV ASE", stdout);
16057 if (mask & AFL_ASE_LOONGSON_MMI)
16058 fputs ("\n\tLoongson MMI ASE", stdout);
16059 if (mask & AFL_ASE_LOONGSON_CAM)
16060 fputs ("\n\tLoongson CAM ASE", stdout);
16061 if (mask & AFL_ASE_LOONGSON_EXT)
16062 fputs ("\n\tLoongson EXT ASE", stdout);
16063 if (mask & AFL_ASE_LOONGSON_EXT2)
16064 fputs ("\n\tLoongson EXT2 ASE", stdout);
16066 fprintf (stdout, "\n\t%s", _("None"));
16067 else if ((mask & ~AFL_ASE_MASK) != 0)
16068 fprintf (stdout, "\n\t%s (%x)", _("Unknown"), mask & ~AFL_ASE_MASK);
16072 print_mips_isa_ext (unsigned int isa_ext)
16077 fputs (_("None"), stdout);
16080 fputs ("RMI XLR", stdout);
16082 case AFL_EXT_OCTEON3:
16083 fputs ("Cavium Networks Octeon3", stdout);
16085 case AFL_EXT_OCTEON2:
16086 fputs ("Cavium Networks Octeon2", stdout);
16088 case AFL_EXT_OCTEONP:
16089 fputs ("Cavium Networks OcteonP", stdout);
16091 case AFL_EXT_OCTEON:
16092 fputs ("Cavium Networks Octeon", stdout);
16095 fputs ("Toshiba R5900", stdout);
16098 fputs ("MIPS R4650", stdout);
16101 fputs ("LSI R4010", stdout);
16104 fputs ("NEC VR4100", stdout);
16107 fputs ("Toshiba R3900", stdout);
16109 case AFL_EXT_10000:
16110 fputs ("MIPS R10000", stdout);
16113 fputs ("Broadcom SB-1", stdout);
16116 fputs ("NEC VR4111/VR4181", stdout);
16119 fputs ("NEC VR4120", stdout);
16122 fputs ("NEC VR5400", stdout);
16125 fputs ("NEC VR5500", stdout);
16127 case AFL_EXT_LOONGSON_2E:
16128 fputs ("ST Microelectronics Loongson 2E", stdout);
16130 case AFL_EXT_LOONGSON_2F:
16131 fputs ("ST Microelectronics Loongson 2F", stdout);
16133 case AFL_EXT_INTERAPTIV_MR2:
16134 fputs ("Imagination interAptiv MR2", stdout);
16137 fprintf (stdout, "%s (%d)", _("Unknown"), isa_ext);
16142 get_mips_reg_size (int reg_size)
16144 return (reg_size == AFL_REG_NONE) ? 0
16145 : (reg_size == AFL_REG_32) ? 32
16146 : (reg_size == AFL_REG_64) ? 64
16147 : (reg_size == AFL_REG_128) ? 128
16152 process_mips_specific (Filedata * filedata)
16154 Elf_Internal_Dyn * entry;
16155 Elf_Internal_Shdr *sect = NULL;
16156 size_t liblist_offset = 0;
16157 size_t liblistno = 0;
16158 size_t conflictsno = 0;
16159 size_t options_offset = 0;
16160 size_t conflicts_offset = 0;
16161 size_t pltrelsz = 0;
16163 bfd_vma pltgot = 0;
16164 bfd_vma mips_pltgot = 0;
16165 bfd_vma jmprel = 0;
16166 bfd_vma local_gotno = 0;
16167 bfd_vma gotsym = 0;
16168 bfd_vma symtabno = 0;
16169 bfd_boolean res = TRUE;
16171 if (! process_attributes (filedata, NULL, SHT_GNU_ATTRIBUTES, NULL,
16172 display_mips_gnu_attribute))
16175 sect = find_section (filedata, ".MIPS.abiflags");
16179 Elf_External_ABIFlags_v0 *abiflags_ext;
16180 Elf_Internal_ABIFlags_v0 abiflags_in;
16182 if (sizeof (Elf_External_ABIFlags_v0) != sect->sh_size)
16184 error (_("Corrupt MIPS ABI Flags section.\n"));
16189 abiflags_ext = get_data (NULL, filedata, sect->sh_offset, 1,
16190 sect->sh_size, _("MIPS ABI Flags section"));
16193 abiflags_in.version = BYTE_GET (abiflags_ext->version);
16194 abiflags_in.isa_level = BYTE_GET (abiflags_ext->isa_level);
16195 abiflags_in.isa_rev = BYTE_GET (abiflags_ext->isa_rev);
16196 abiflags_in.gpr_size = BYTE_GET (abiflags_ext->gpr_size);
16197 abiflags_in.cpr1_size = BYTE_GET (abiflags_ext->cpr1_size);
16198 abiflags_in.cpr2_size = BYTE_GET (abiflags_ext->cpr2_size);
16199 abiflags_in.fp_abi = BYTE_GET (abiflags_ext->fp_abi);
16200 abiflags_in.isa_ext = BYTE_GET (abiflags_ext->isa_ext);
16201 abiflags_in.ases = BYTE_GET (abiflags_ext->ases);
16202 abiflags_in.flags1 = BYTE_GET (abiflags_ext->flags1);
16203 abiflags_in.flags2 = BYTE_GET (abiflags_ext->flags2);
16205 printf ("\nMIPS ABI Flags Version: %d\n", abiflags_in.version);
16206 printf ("\nISA: MIPS%d", abiflags_in.isa_level);
16207 if (abiflags_in.isa_rev > 1)
16208 printf ("r%d", abiflags_in.isa_rev);
16209 printf ("\nGPR size: %d",
16210 get_mips_reg_size (abiflags_in.gpr_size));
16211 printf ("\nCPR1 size: %d",
16212 get_mips_reg_size (abiflags_in.cpr1_size));
16213 printf ("\nCPR2 size: %d",
16214 get_mips_reg_size (abiflags_in.cpr2_size));
16215 fputs ("\nFP ABI: ", stdout);
16216 print_mips_fp_abi_value (abiflags_in.fp_abi);
16217 fputs ("ISA Extension: ", stdout);
16218 print_mips_isa_ext (abiflags_in.isa_ext);
16219 fputs ("\nASEs:", stdout);
16220 print_mips_ases (abiflags_in.ases);
16221 printf ("\nFLAGS 1: %8.8lx", abiflags_in.flags1);
16222 printf ("\nFLAGS 2: %8.8lx", abiflags_in.flags2);
16223 fputc ('\n', stdout);
16224 free (abiflags_ext);
16229 /* We have a lot of special sections. Thanks SGI! */
16230 if (dynamic_section == NULL)
16232 /* No dynamic information available. See if there is static GOT. */
16233 sect = find_section (filedata, ".got");
16236 unsigned char *data_end;
16237 unsigned char *data;
16241 pltgot = sect->sh_addr;
16244 addr_size = (is_32bit_elf ? 4 : 8);
16245 end = pltgot + sect->sh_size;
16247 data = (unsigned char *) get_data (NULL, filedata, sect->sh_offset,
16249 _("Global Offset Table data"));
16250 /* PR 12855: Null data is handled gracefully throughout. */
16251 data_end = data + (end - pltgot);
16253 printf (_("\nStatic GOT:\n"));
16254 printf (_(" Canonical gp value: "));
16255 print_vma (ent + 0x7ff0, LONG_HEX);
16258 /* In a dynamic binary GOT[0] is reserved for the dynamic
16259 loader to store the lazy resolver pointer, however in
16260 a static binary it may well have been omitted and GOT
16261 reduced to a table of addresses.
16262 PR 21344: Check for the entry being fully available
16263 before fetching it. */
16265 && data + ent - pltgot + addr_size <= data_end
16266 && byte_get (data + ent - pltgot, addr_size) == 0)
16268 printf (_(" Reserved entries:\n"));
16269 printf (_(" %*s %10s %*s\n"),
16270 addr_size * 2, _("Address"), _("Access"),
16271 addr_size * 2, _("Value"));
16272 ent = print_mips_got_entry (data, pltgot, ent, data_end);
16274 if (ent == (bfd_vma) -1)
16275 goto sgot_print_fail;
16277 /* Check for the MSB of GOT[1] being set, identifying a
16278 GNU object. This entry will be used by some runtime
16279 loaders, to store the module pointer. Otherwise this
16280 is an ordinary local entry.
16281 PR 21344: Check for the entry being fully available
16282 before fetching it. */
16284 && data + ent - pltgot + addr_size <= data_end
16285 && (byte_get (data + ent - pltgot, addr_size)
16286 >> (addr_size * 8 - 1)) != 0)
16288 ent = print_mips_got_entry (data, pltgot, ent, data_end);
16290 if (ent == (bfd_vma) -1)
16291 goto sgot_print_fail;
16296 if (data != NULL && ent < end)
16298 printf (_(" Local entries:\n"));
16299 printf (" %*s %10s %*s\n",
16300 addr_size * 2, _("Address"), _("Access"),
16301 addr_size * 2, _("Value"));
16304 ent = print_mips_got_entry (data, pltgot, ent, data_end);
16306 if (ent == (bfd_vma) -1)
16307 goto sgot_print_fail;
16319 for (entry = dynamic_section;
16320 /* PR 17531 file: 012-50589-0.004. */
16321 entry < dynamic_section + dynamic_nent && entry->d_tag != DT_NULL;
16323 switch (entry->d_tag)
16325 case DT_MIPS_LIBLIST:
16327 = offset_from_vma (filedata, entry->d_un.d_val,
16328 liblistno * sizeof (Elf32_External_Lib));
16330 case DT_MIPS_LIBLISTNO:
16331 liblistno = entry->d_un.d_val;
16333 case DT_MIPS_OPTIONS:
16334 options_offset = offset_from_vma (filedata, entry->d_un.d_val, 0);
16336 case DT_MIPS_CONFLICT:
16338 = offset_from_vma (filedata, entry->d_un.d_val,
16339 conflictsno * sizeof (Elf32_External_Conflict));
16341 case DT_MIPS_CONFLICTNO:
16342 conflictsno = entry->d_un.d_val;
16345 pltgot = entry->d_un.d_ptr;
16347 case DT_MIPS_LOCAL_GOTNO:
16348 local_gotno = entry->d_un.d_val;
16350 case DT_MIPS_GOTSYM:
16351 gotsym = entry->d_un.d_val;
16353 case DT_MIPS_SYMTABNO:
16354 symtabno = entry->d_un.d_val;
16356 case DT_MIPS_PLTGOT:
16357 mips_pltgot = entry->d_un.d_ptr;
16360 pltrel = entry->d_un.d_val;
16363 pltrelsz = entry->d_un.d_val;
16366 jmprel = entry->d_un.d_ptr;
16372 if (liblist_offset != 0 && liblistno != 0 && do_dynamic)
16374 Elf32_External_Lib * elib;
16377 elib = (Elf32_External_Lib *) get_data (NULL, filedata, liblist_offset,
16379 sizeof (Elf32_External_Lib),
16380 _("liblist section data"));
16383 printf (ngettext ("\nSection '.liblist' contains %lu entry:\n",
16384 "\nSection '.liblist' contains %lu entries:\n",
16385 (unsigned long) liblistno),
16386 (unsigned long) liblistno);
16387 fputs (_(" Library Time Stamp Checksum Version Flags\n"),
16390 for (cnt = 0; cnt < liblistno; ++cnt)
16397 liblist.l_name = BYTE_GET (elib[cnt].l_name);
16398 atime = BYTE_GET (elib[cnt].l_time_stamp);
16399 liblist.l_checksum = BYTE_GET (elib[cnt].l_checksum);
16400 liblist.l_version = BYTE_GET (elib[cnt].l_version);
16401 liblist.l_flags = BYTE_GET (elib[cnt].l_flags);
16403 tmp = gmtime (&atime);
16404 snprintf (timebuf, sizeof (timebuf),
16405 "%04u-%02u-%02uT%02u:%02u:%02u",
16406 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
16407 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
16409 printf ("%3lu: ", (unsigned long) cnt);
16410 if (VALID_DYNAMIC_NAME (liblist.l_name))
16411 print_symbol (20, GET_DYNAMIC_NAME (liblist.l_name));
16413 printf (_("<corrupt: %9ld>"), liblist.l_name);
16414 printf (" %s %#10lx %-7ld", timebuf, liblist.l_checksum,
16415 liblist.l_version);
16417 if (liblist.l_flags == 0)
16421 static const struct
16428 { " EXACT_MATCH", LL_EXACT_MATCH },
16429 { " IGNORE_INT_VER", LL_IGNORE_INT_VER },
16430 { " REQUIRE_MINOR", LL_REQUIRE_MINOR },
16431 { " EXPORTS", LL_EXPORTS },
16432 { " DELAY_LOAD", LL_DELAY_LOAD },
16433 { " DELTA", LL_DELTA }
16435 int flags = liblist.l_flags;
16438 for (fcnt = 0; fcnt < ARRAY_SIZE (l_flags_vals); ++fcnt)
16439 if ((flags & l_flags_vals[fcnt].bit) != 0)
16441 fputs (l_flags_vals[fcnt].name, stdout);
16442 flags ^= l_flags_vals[fcnt].bit;
16445 printf (" %#x", (unsigned int) flags);
16457 if (options_offset != 0)
16459 Elf_External_Options * eopt;
16460 Elf_Internal_Options * iopt;
16461 Elf_Internal_Options * option;
16464 sect = filedata->section_headers;
16466 /* Find the section header so that we get the size. */
16467 sect = find_section_by_type (filedata, SHT_MIPS_OPTIONS);
16468 /* PR 17533 file: 012-277276-0.004. */
16471 error (_("No MIPS_OPTIONS header found\n"));
16475 if (sect->sh_size < sizeof (* eopt))
16477 error (_("The MIPS options section is too small.\n"));
16481 eopt = (Elf_External_Options *) get_data (NULL, filedata, options_offset, 1,
16482 sect->sh_size, _("options"));
16485 iopt = (Elf_Internal_Options *)
16486 cmalloc ((sect->sh_size / sizeof (eopt)), sizeof (* iopt));
16489 error (_("Out of memory allocating space for MIPS options\n"));
16496 while (offset <= sect->sh_size - sizeof (* eopt))
16498 Elf_External_Options * eoption;
16500 eoption = (Elf_External_Options *) ((char *) eopt + offset);
16502 option->kind = BYTE_GET (eoption->kind);
16503 option->size = BYTE_GET (eoption->size);
16504 option->section = BYTE_GET (eoption->section);
16505 option->info = BYTE_GET (eoption->info);
16507 /* PR 17531: file: ffa0fa3b. */
16508 if (option->size < sizeof (* eopt)
16509 || offset + option->size > sect->sh_size)
16511 error (_("Invalid size (%u) for MIPS option\n"), option->size);
16514 offset += option->size;
16520 printf (ngettext ("\nSection '%s' contains %d entry:\n",
16521 "\nSection '%s' contains %d entries:\n",
16523 printable_section_name (filedata, sect), cnt);
16532 switch (option->kind)
16535 /* This shouldn't happen. */
16536 printf (" NULL %d %lx", option->section, option->info);
16539 printf (" REGINFO ");
16540 if (filedata->file_header.e_machine == EM_MIPS)
16543 Elf32_External_RegInfo * ereg;
16544 Elf32_RegInfo reginfo;
16546 ereg = (Elf32_External_RegInfo *) (option + 1);
16547 reginfo.ri_gprmask = BYTE_GET (ereg->ri_gprmask);
16548 reginfo.ri_cprmask[0] = BYTE_GET (ereg->ri_cprmask[0]);
16549 reginfo.ri_cprmask[1] = BYTE_GET (ereg->ri_cprmask[1]);
16550 reginfo.ri_cprmask[2] = BYTE_GET (ereg->ri_cprmask[2]);
16551 reginfo.ri_cprmask[3] = BYTE_GET (ereg->ri_cprmask[3]);
16552 reginfo.ri_gp_value = BYTE_GET (ereg->ri_gp_value);
16554 printf ("GPR %08lx GP 0x%lx\n",
16555 reginfo.ri_gprmask,
16556 (unsigned long) reginfo.ri_gp_value);
16557 printf (" CPR0 %08lx CPR1 %08lx CPR2 %08lx CPR3 %08lx\n",
16558 reginfo.ri_cprmask[0], reginfo.ri_cprmask[1],
16559 reginfo.ri_cprmask[2], reginfo.ri_cprmask[3]);
16564 Elf64_External_RegInfo * ereg;
16565 Elf64_Internal_RegInfo reginfo;
16567 ereg = (Elf64_External_RegInfo *) (option + 1);
16568 reginfo.ri_gprmask = BYTE_GET (ereg->ri_gprmask);
16569 reginfo.ri_cprmask[0] = BYTE_GET (ereg->ri_cprmask[0]);
16570 reginfo.ri_cprmask[1] = BYTE_GET (ereg->ri_cprmask[1]);
16571 reginfo.ri_cprmask[2] = BYTE_GET (ereg->ri_cprmask[2]);
16572 reginfo.ri_cprmask[3] = BYTE_GET (ereg->ri_cprmask[3]);
16573 reginfo.ri_gp_value = BYTE_GET (ereg->ri_gp_value);
16575 printf ("GPR %08lx GP 0x",
16576 reginfo.ri_gprmask);
16577 printf_vma (reginfo.ri_gp_value);
16580 printf (" CPR0 %08lx CPR1 %08lx CPR2 %08lx CPR3 %08lx\n",
16581 reginfo.ri_cprmask[0], reginfo.ri_cprmask[1],
16582 reginfo.ri_cprmask[2], reginfo.ri_cprmask[3]);
16586 case ODK_EXCEPTIONS:
16587 fputs (" EXCEPTIONS fpe_min(", stdout);
16588 process_mips_fpe_exception (option->info & OEX_FPU_MIN);
16589 fputs (") fpe_max(", stdout);
16590 process_mips_fpe_exception ((option->info & OEX_FPU_MAX) >> 8);
16591 fputs (")", stdout);
16593 if (option->info & OEX_PAGE0)
16594 fputs (" PAGE0", stdout);
16595 if (option->info & OEX_SMM)
16596 fputs (" SMM", stdout);
16597 if (option->info & OEX_FPDBUG)
16598 fputs (" FPDBUG", stdout);
16599 if (option->info & OEX_DISMISS)
16600 fputs (" DISMISS", stdout);
16603 fputs (" PAD ", stdout);
16604 if (option->info & OPAD_PREFIX)
16605 fputs (" PREFIX", stdout);
16606 if (option->info & OPAD_POSTFIX)
16607 fputs (" POSTFIX", stdout);
16608 if (option->info & OPAD_SYMBOL)
16609 fputs (" SYMBOL", stdout);
16612 fputs (" HWPATCH ", stdout);
16613 if (option->info & OHW_R4KEOP)
16614 fputs (" R4KEOP", stdout);
16615 if (option->info & OHW_R8KPFETCH)
16616 fputs (" R8KPFETCH", stdout);
16617 if (option->info & OHW_R5KEOP)
16618 fputs (" R5KEOP", stdout);
16619 if (option->info & OHW_R5KCVTL)
16620 fputs (" R5KCVTL", stdout);
16623 fputs (" FILL ", stdout);
16624 /* XXX Print content of info word? */
16627 fputs (" TAGS ", stdout);
16628 /* XXX Print content of info word? */
16631 fputs (" HWAND ", stdout);
16632 if (option->info & OHWA0_R4KEOP_CHECKED)
16633 fputs (" R4KEOP_CHECKED", stdout);
16634 if (option->info & OHWA0_R4KEOP_CLEAN)
16635 fputs (" R4KEOP_CLEAN", stdout);
16638 fputs (" HWOR ", stdout);
16639 if (option->info & OHWA0_R4KEOP_CHECKED)
16640 fputs (" R4KEOP_CHECKED", stdout);
16641 if (option->info & OHWA0_R4KEOP_CLEAN)
16642 fputs (" R4KEOP_CLEAN", stdout);
16645 printf (" GP_GROUP %#06lx self-contained %#06lx",
16646 option->info & OGP_GROUP,
16647 (option->info & OGP_SELF) >> 16);
16650 printf (" IDENT %#06lx self-contained %#06lx",
16651 option->info & OGP_GROUP,
16652 (option->info & OGP_SELF) >> 16);
16655 /* This shouldn't happen. */
16656 printf (" %3d ??? %d %lx",
16657 option->kind, option->section, option->info);
16661 len = sizeof (* eopt);
16662 while (len < option->size)
16664 unsigned char datum = * ((unsigned char *) eopt + offset + len);
16666 if (ISPRINT (datum))
16667 printf ("%c", datum);
16669 printf ("\\%03o", datum);
16672 fputs ("\n", stdout);
16674 offset += option->size;
16684 if (conflicts_offset != 0 && conflictsno != 0)
16686 Elf32_Conflict * iconf;
16689 if (dynamic_symbols == NULL)
16691 error (_("conflict list found without a dynamic symbol table\n"));
16695 /* PR 21345 - print a slightly more helpful error message
16696 if we are sure that the cmalloc will fail. */
16697 if (conflictsno * sizeof (* iconf) > filedata->file_size)
16699 error (_("Overlarge number of conflicts detected: %lx\n"),
16700 (long) conflictsno);
16704 iconf = (Elf32_Conflict *) cmalloc (conflictsno, sizeof (* iconf));
16707 error (_("Out of memory allocating space for dynamic conflicts\n"));
16713 Elf32_External_Conflict * econf32;
16715 econf32 = (Elf32_External_Conflict *)
16716 get_data (NULL, filedata, conflicts_offset, conflictsno,
16717 sizeof (* econf32), _("conflict"));
16721 for (cnt = 0; cnt < conflictsno; ++cnt)
16722 iconf[cnt] = BYTE_GET (econf32[cnt]);
16728 Elf64_External_Conflict * econf64;
16730 econf64 = (Elf64_External_Conflict *)
16731 get_data (NULL, filedata, conflicts_offset, conflictsno,
16732 sizeof (* econf64), _("conflict"));
16736 for (cnt = 0; cnt < conflictsno; ++cnt)
16737 iconf[cnt] = BYTE_GET (econf64[cnt]);
16742 printf (ngettext ("\nSection '.conflict' contains %lu entry:\n",
16743 "\nSection '.conflict' contains %lu entries:\n",
16744 (unsigned long) conflictsno),
16745 (unsigned long) conflictsno);
16746 puts (_(" Num: Index Value Name"));
16748 for (cnt = 0; cnt < conflictsno; ++cnt)
16750 printf ("%5lu: %8lu ", (unsigned long) cnt, iconf[cnt]);
16752 if (iconf[cnt] >= num_dynamic_syms)
16753 printf (_("<corrupt symbol index>"));
16756 Elf_Internal_Sym * psym;
16758 psym = & dynamic_symbols[iconf[cnt]];
16759 print_vma (psym->st_value, FULL_HEX);
16761 if (VALID_DYNAMIC_NAME (psym->st_name))
16762 print_symbol (25, GET_DYNAMIC_NAME (psym->st_name));
16764 printf (_("<corrupt: %14ld>"), psym->st_name);
16772 if (pltgot != 0 && local_gotno != 0)
16774 bfd_vma ent, local_end, global_end;
16776 unsigned char * data;
16777 unsigned char * data_end;
16781 addr_size = (is_32bit_elf ? 4 : 8);
16782 local_end = pltgot + local_gotno * addr_size;
16784 /* PR binutils/17533 file: 012-111227-0.004 */
16785 if (symtabno < gotsym)
16787 error (_("The GOT symbol offset (%lu) is greater than the symbol table size (%lu)\n"),
16788 (unsigned long) gotsym, (unsigned long) symtabno);
16792 global_end = local_end + (symtabno - gotsym) * addr_size;
16793 /* PR 17531: file: 54c91a34. */
16794 if (global_end < local_end)
16796 error (_("Too many GOT symbols: %lu\n"), (unsigned long) symtabno);
16800 offset = offset_from_vma (filedata, pltgot, global_end - pltgot);
16801 data = (unsigned char *) get_data (NULL, filedata, offset,
16802 global_end - pltgot, 1,
16803 _("Global Offset Table data"));
16804 /* PR 12855: Null data is handled gracefully throughout. */
16805 data_end = data + (global_end - pltgot);
16807 printf (_("\nPrimary GOT:\n"));
16808 printf (_(" Canonical gp value: "));
16809 print_vma (pltgot + 0x7ff0, LONG_HEX);
16812 printf (_(" Reserved entries:\n"));
16813 printf (_(" %*s %10s %*s Purpose\n"),
16814 addr_size * 2, _("Address"), _("Access"),
16815 addr_size * 2, _("Initial"));
16816 ent = print_mips_got_entry (data, pltgot, ent, data_end);
16817 printf (_(" Lazy resolver\n"));
16818 if (ent == (bfd_vma) -1)
16819 goto got_print_fail;
16821 /* Check for the MSB of GOT[1] being set, denoting a GNU object.
16822 This entry will be used by some runtime loaders, to store the
16823 module pointer. Otherwise this is an ordinary local entry.
16824 PR 21344: Check for the entry being fully available before
16827 && data + ent - pltgot + addr_size <= data_end
16828 && (byte_get (data + ent - pltgot, addr_size)
16829 >> (addr_size * 8 - 1)) != 0)
16831 ent = print_mips_got_entry (data, pltgot, ent, data_end);
16832 printf (_(" Module pointer (GNU extension)\n"));
16833 if (ent == (bfd_vma) -1)
16834 goto got_print_fail;
16838 if (data != NULL && ent < local_end)
16840 printf (_(" Local entries:\n"));
16841 printf (" %*s %10s %*s\n",
16842 addr_size * 2, _("Address"), _("Access"),
16843 addr_size * 2, _("Initial"));
16844 while (ent < local_end)
16846 ent = print_mips_got_entry (data, pltgot, ent, data_end);
16848 if (ent == (bfd_vma) -1)
16849 goto got_print_fail;
16854 if (data != NULL && gotsym < symtabno)
16858 printf (_(" Global entries:\n"));
16859 printf (" %*s %10s %*s %*s %-7s %3s %s\n",
16860 addr_size * 2, _("Address"),
16862 addr_size * 2, _("Initial"),
16863 addr_size * 2, _("Sym.Val."),
16865 /* Note for translators: "Ndx" = abbreviated form of "Index". */
16866 _("Ndx"), _("Name"));
16868 sym_width = (is_32bit_elf ? 80 : 160) - 28 - addr_size * 6 - 1;
16870 for (i = gotsym; i < symtabno; i++)
16872 ent = print_mips_got_entry (data, pltgot, ent, data_end);
16875 if (dynamic_symbols == NULL)
16876 printf (_("<no dynamic symbols>"));
16877 else if (i < num_dynamic_syms)
16879 Elf_Internal_Sym * psym = dynamic_symbols + i;
16881 print_vma (psym->st_value, LONG_HEX);
16882 printf (" %-7s %3s ",
16883 get_symbol_type (filedata, ELF_ST_TYPE (psym->st_info)),
16884 get_symbol_index_type (filedata, psym->st_shndx));
16886 if (VALID_DYNAMIC_NAME (psym->st_name))
16887 print_symbol (sym_width, GET_DYNAMIC_NAME (psym->st_name));
16889 printf (_("<corrupt: %14ld>"), psym->st_name);
16892 printf (_("<symbol index %lu exceeds number of dynamic symbols>"),
16893 (unsigned long) i);
16896 if (ent == (bfd_vma) -1)
16907 if (mips_pltgot != 0 && jmprel != 0 && pltrel != 0 && pltrelsz != 0)
16910 size_t offset, rel_offset;
16911 unsigned long count, i;
16912 unsigned char * data;
16913 int addr_size, sym_width;
16914 Elf_Internal_Rela * rels;
16916 rel_offset = offset_from_vma (filedata, jmprel, pltrelsz);
16917 if (pltrel == DT_RELA)
16919 if (!slurp_rela_relocs (filedata, rel_offset, pltrelsz, &rels, &count))
16924 if (!slurp_rel_relocs (filedata, rel_offset, pltrelsz, &rels, &count))
16929 addr_size = (is_32bit_elf ? 4 : 8);
16930 end = mips_pltgot + (2 + count) * addr_size;
16932 offset = offset_from_vma (filedata, mips_pltgot, end - mips_pltgot);
16933 data = (unsigned char *) get_data (NULL, filedata, offset, end - mips_pltgot,
16934 1, _("Procedure Linkage Table data"));
16938 printf ("\nPLT GOT:\n\n");
16939 printf (_(" Reserved entries:\n"));
16940 printf (_(" %*s %*s Purpose\n"),
16941 addr_size * 2, _("Address"), addr_size * 2, _("Initial"));
16942 ent = print_mips_pltgot_entry (data, mips_pltgot, ent);
16943 printf (_(" PLT lazy resolver\n"));
16944 ent = print_mips_pltgot_entry (data, mips_pltgot, ent);
16945 printf (_(" Module pointer\n"));
16948 printf (_(" Entries:\n"));
16949 printf (" %*s %*s %*s %-7s %3s %s\n",
16950 addr_size * 2, _("Address"),
16951 addr_size * 2, _("Initial"),
16952 addr_size * 2, _("Sym.Val."), _("Type"), _("Ndx"), _("Name"));
16953 sym_width = (is_32bit_elf ? 80 : 160) - 17 - addr_size * 6 - 1;
16954 for (i = 0; i < count; i++)
16956 unsigned long idx = get_reloc_symindex (rels[i].r_info);
16958 ent = print_mips_pltgot_entry (data, mips_pltgot, ent);
16961 if (idx >= num_dynamic_syms)
16962 printf (_("<corrupt symbol index: %lu>"), idx);
16965 Elf_Internal_Sym * psym = dynamic_symbols + idx;
16967 print_vma (psym->st_value, LONG_HEX);
16968 printf (" %-7s %3s ",
16969 get_symbol_type (filedata, ELF_ST_TYPE (psym->st_info)),
16970 get_symbol_index_type (filedata, psym->st_shndx));
16971 if (VALID_DYNAMIC_NAME (psym->st_name))
16972 print_symbol (sym_width, GET_DYNAMIC_NAME (psym->st_name));
16974 printf (_("<corrupt: %14ld>"), psym->st_name);
16989 process_nds32_specific (Filedata * filedata)
16991 Elf_Internal_Shdr *sect = NULL;
16993 sect = find_section (filedata, ".nds32_e_flags");
16996 unsigned int *flag;
16998 printf ("\nNDS32 elf flags section:\n");
16999 flag = get_data (NULL, filedata, sect->sh_offset, 1,
17000 sect->sh_size, _("NDS32 elf flags section"));
17005 switch ((*flag) & 0x3)
17008 printf ("(VEC_SIZE):\tNo entry.\n");
17011 printf ("(VEC_SIZE):\t4 bytes\n");
17014 printf ("(VEC_SIZE):\t16 bytes\n");
17017 printf ("(VEC_SIZE):\treserved\n");
17026 process_gnu_liblist (Filedata * filedata)
17028 Elf_Internal_Shdr * section;
17029 Elf_Internal_Shdr * string_sec;
17030 Elf32_External_Lib * elib;
17032 size_t strtab_size;
17034 unsigned long num_liblist;
17036 bfd_boolean res = TRUE;
17041 for (i = 0, section = filedata->section_headers;
17042 i < filedata->file_header.e_shnum;
17045 switch (section->sh_type)
17047 case SHT_GNU_LIBLIST:
17048 if (section->sh_link >= filedata->file_header.e_shnum)
17051 elib = (Elf32_External_Lib *)
17052 get_data (NULL, filedata, section->sh_offset, 1, section->sh_size,
17053 _("liblist section data"));
17061 string_sec = filedata->section_headers + section->sh_link;
17062 strtab = (char *) get_data (NULL, filedata, string_sec->sh_offset, 1,
17063 string_sec->sh_size,
17064 _("liblist string table"));
17066 || section->sh_entsize != sizeof (Elf32_External_Lib))
17073 strtab_size = string_sec->sh_size;
17075 num_liblist = section->sh_size / sizeof (Elf32_External_Lib);
17076 printf (ngettext ("\nLibrary list section '%s' contains %lu entries:\n",
17077 "\nLibrary list section '%s' contains %lu entries:\n",
17079 printable_section_name (filedata, section),
17082 puts (_(" Library Time Stamp Checksum Version Flags"));
17084 for (cnt = 0; cnt < section->sh_size / sizeof (Elf32_External_Lib);
17092 liblist.l_name = BYTE_GET (elib[cnt].l_name);
17093 atime = BYTE_GET (elib[cnt].l_time_stamp);
17094 liblist.l_checksum = BYTE_GET (elib[cnt].l_checksum);
17095 liblist.l_version = BYTE_GET (elib[cnt].l_version);
17096 liblist.l_flags = BYTE_GET (elib[cnt].l_flags);
17098 tmp = gmtime (&atime);
17099 snprintf (timebuf, sizeof (timebuf),
17100 "%04u-%02u-%02uT%02u:%02u:%02u",
17101 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
17102 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
17104 printf ("%3lu: ", (unsigned long) cnt);
17106 printf ("%-20s", liblist.l_name < strtab_size
17107 ? strtab + liblist.l_name : _("<corrupt>"));
17109 printf ("%-20.20s", liblist.l_name < strtab_size
17110 ? strtab + liblist.l_name : _("<corrupt>"));
17111 printf (" %s %#010lx %-7ld %-7ld\n", timebuf, liblist.l_checksum,
17112 liblist.l_version, liblist.l_flags);
17123 static const char *
17124 get_note_type (Filedata * filedata, unsigned e_type)
17126 static char buff[64];
17128 if (filedata->file_header.e_type == ET_CORE)
17132 return _("NT_AUXV (auxiliary vector)");
17134 return _("NT_PRSTATUS (prstatus structure)");
17136 return _("NT_FPREGSET (floating point registers)");
17138 return _("NT_PRPSINFO (prpsinfo structure)");
17139 case NT_TASKSTRUCT:
17140 return _("NT_TASKSTRUCT (task structure)");
17142 return _("NT_PRXFPREG (user_xfpregs structure)");
17144 return _("NT_PPC_VMX (ppc Altivec registers)");
17146 return _("NT_PPC_VSX (ppc VSX registers)");
17148 return _("NT_PPC_TAR (ppc TAR register)");
17150 return _("NT_PPC_PPR (ppc PPR register)");
17152 return _("NT_PPC_DSCR (ppc DSCR register)");
17154 return _("NT_PPC_EBB (ppc EBB registers)");
17156 return _("NT_PPC_PMU (ppc PMU registers)");
17157 case NT_PPC_TM_CGPR:
17158 return _("NT_PPC_TM_CGPR (ppc checkpointed GPR registers)");
17159 case NT_PPC_TM_CFPR:
17160 return _("NT_PPC_TM_CFPR (ppc checkpointed floating point registers)");
17161 case NT_PPC_TM_CVMX:
17162 return _("NT_PPC_TM_CVMX (ppc checkpointed Altivec registers)");
17163 case NT_PPC_TM_CVSX:
17164 return _("NT_PPC_TM_CVSX (ppc checkpointed VSX registers)");
17165 case NT_PPC_TM_SPR:
17166 return _("NT_PPC_TM_SPR (ppc TM special purpose registers)");
17167 case NT_PPC_TM_CTAR:
17168 return _("NT_PPC_TM_CTAR (ppc checkpointed TAR register)");
17169 case NT_PPC_TM_CPPR:
17170 return _("NT_PPC_TM_CPPR (ppc checkpointed PPR register)");
17171 case NT_PPC_TM_CDSCR:
17172 return _("NT_PPC_TM_CDSCR (ppc checkpointed DSCR register)");
17174 return _("NT_386_TLS (x86 TLS information)");
17175 case NT_386_IOPERM:
17176 return _("NT_386_IOPERM (x86 I/O permissions)");
17177 case NT_X86_XSTATE:
17178 return _("NT_X86_XSTATE (x86 XSAVE extended state)");
17179 case NT_S390_HIGH_GPRS:
17180 return _("NT_S390_HIGH_GPRS (s390 upper register halves)");
17181 case NT_S390_TIMER:
17182 return _("NT_S390_TIMER (s390 timer register)");
17183 case NT_S390_TODCMP:
17184 return _("NT_S390_TODCMP (s390 TOD comparator register)");
17185 case NT_S390_TODPREG:
17186 return _("NT_S390_TODPREG (s390 TOD programmable register)");
17188 return _("NT_S390_CTRS (s390 control registers)");
17189 case NT_S390_PREFIX:
17190 return _("NT_S390_PREFIX (s390 prefix register)");
17191 case NT_S390_LAST_BREAK:
17192 return _("NT_S390_LAST_BREAK (s390 last breaking event address)");
17193 case NT_S390_SYSTEM_CALL:
17194 return _("NT_S390_SYSTEM_CALL (s390 system call restart data)");
17196 return _("NT_S390_TDB (s390 transaction diagnostic block)");
17197 case NT_S390_VXRS_LOW:
17198 return _("NT_S390_VXRS_LOW (s390 vector registers 0-15 upper half)");
17199 case NT_S390_VXRS_HIGH:
17200 return _("NT_S390_VXRS_HIGH (s390 vector registers 16-31)");
17201 case NT_S390_GS_CB:
17202 return _("NT_S390_GS_CB (s390 guarded-storage registers)");
17203 case NT_S390_GS_BC:
17204 return _("NT_S390_GS_BC (s390 guarded-storage broadcast control)");
17206 return _("NT_ARM_VFP (arm VFP registers)");
17208 return _("NT_ARM_TLS (AArch TLS registers)");
17209 case NT_ARM_HW_BREAK:
17210 return _("NT_ARM_HW_BREAK (AArch hardware breakpoint registers)");
17211 case NT_ARM_HW_WATCH:
17212 return _("NT_ARM_HW_WATCH (AArch hardware watchpoint registers)");
17214 return _("NT_PSTATUS (pstatus structure)");
17216 return _("NT_FPREGS (floating point registers)");
17218 return _("NT_PSINFO (psinfo structure)");
17220 return _("NT_LWPSTATUS (lwpstatus_t structure)");
17222 return _("NT_LWPSINFO (lwpsinfo_t structure)");
17223 case NT_WIN32PSTATUS:
17224 return _("NT_WIN32PSTATUS (win32_pstatus structure)");
17226 return _("NT_SIGINFO (siginfo_t data)");
17228 return _("NT_FILE (mapped files)");
17236 return _("NT_VERSION (version)");
17238 return _("NT_ARCH (architecture)");
17239 case NT_GNU_BUILD_ATTRIBUTE_OPEN:
17241 case NT_GNU_BUILD_ATTRIBUTE_FUNC:
17247 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
17252 print_core_note (Elf_Internal_Note *pnote)
17254 unsigned int addr_size = is_32bit_elf ? 4 : 8;
17255 bfd_vma count, page_size;
17256 unsigned char *descdata, *filenames, *descend;
17258 if (pnote->type != NT_FILE)
17268 printf (_(" Cannot decode 64-bit note in 32-bit build\n"));
17269 /* Still "successful". */
17274 if (pnote->descsz < 2 * addr_size)
17276 error (_(" Malformed note - too short for header\n"));
17280 descdata = (unsigned char *) pnote->descdata;
17281 descend = descdata + pnote->descsz;
17283 if (descdata[pnote->descsz - 1] != '\0')
17285 error (_(" Malformed note - does not end with \\0\n"));
17289 count = byte_get (descdata, addr_size);
17290 descdata += addr_size;
17292 page_size = byte_get (descdata, addr_size);
17293 descdata += addr_size;
17295 if (count > ((bfd_vma) -1 - 2 * addr_size) / (3 * addr_size)
17296 || pnote->descsz < 2 * addr_size + count * 3 * addr_size)
17298 error (_(" Malformed note - too short for supplied file count\n"));
17302 printf (_(" Page size: "));
17303 print_vma (page_size, DEC);
17306 printf (_(" %*s%*s%*s\n"),
17307 (int) (2 + 2 * addr_size), _("Start"),
17308 (int) (4 + 2 * addr_size), _("End"),
17309 (int) (4 + 2 * addr_size), _("Page Offset"));
17310 filenames = descdata + count * 3 * addr_size;
17311 while (count-- > 0)
17313 bfd_vma start, end, file_ofs;
17315 if (filenames == descend)
17317 error (_(" Malformed note - filenames end too early\n"));
17321 start = byte_get (descdata, addr_size);
17322 descdata += addr_size;
17323 end = byte_get (descdata, addr_size);
17324 descdata += addr_size;
17325 file_ofs = byte_get (descdata, addr_size);
17326 descdata += addr_size;
17329 print_vma (start, FULL_HEX);
17331 print_vma (end, FULL_HEX);
17333 print_vma (file_ofs, FULL_HEX);
17334 printf ("\n %s\n", filenames);
17336 filenames += 1 + strlen ((char *) filenames);
17342 static const char *
17343 get_gnu_elf_note_type (unsigned e_type)
17345 /* NB/ Keep this switch statement in sync with print_gnu_note (). */
17348 case NT_GNU_ABI_TAG:
17349 return _("NT_GNU_ABI_TAG (ABI version tag)");
17351 return _("NT_GNU_HWCAP (DSO-supplied software HWCAP info)");
17352 case NT_GNU_BUILD_ID:
17353 return _("NT_GNU_BUILD_ID (unique build ID bitstring)");
17354 case NT_GNU_GOLD_VERSION:
17355 return _("NT_GNU_GOLD_VERSION (gold version)");
17356 case NT_GNU_PROPERTY_TYPE_0:
17357 return _("NT_GNU_PROPERTY_TYPE_0");
17358 case NT_GNU_BUILD_ATTRIBUTE_OPEN:
17359 return _("NT_GNU_BUILD_ATTRIBUTE_OPEN");
17360 case NT_GNU_BUILD_ATTRIBUTE_FUNC:
17361 return _("NT_GNU_BUILD_ATTRIBUTE_FUNC");
17364 static char buff[64];
17366 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
17373 decode_x86_compat_isa (unsigned int bitmask)
17377 unsigned int bit = bitmask & (- bitmask);
17382 case GNU_PROPERTY_X86_COMPAT_ISA_1_486:
17385 case GNU_PROPERTY_X86_COMPAT_ISA_1_586:
17388 case GNU_PROPERTY_X86_COMPAT_ISA_1_686:
17391 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE:
17394 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE2:
17397 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE3:
17400 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSSE3:
17403 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE4_1:
17406 case GNU_PROPERTY_X86_COMPAT_ISA_1_SSE4_2:
17409 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX:
17412 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX2:
17415 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512F:
17416 printf ("AVX512F");
17418 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512CD:
17419 printf ("AVX512CD");
17421 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512ER:
17422 printf ("AVX512ER");
17424 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512PF:
17425 printf ("AVX512PF");
17427 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512VL:
17428 printf ("AVX512VL");
17430 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512DQ:
17431 printf ("AVX512DQ");
17433 case GNU_PROPERTY_X86_COMPAT_ISA_1_AVX512BW:
17434 printf ("AVX512BW");
17437 printf (_("<unknown: %x>"), bit);
17446 decode_x86_isa (unsigned int bitmask)
17450 printf (_("<None>"));
17456 unsigned int bit = bitmask & (- bitmask);
17461 case GNU_PROPERTY_X86_ISA_1_CMOV:
17464 case GNU_PROPERTY_X86_ISA_1_SSE:
17467 case GNU_PROPERTY_X86_ISA_1_SSE2:
17470 case GNU_PROPERTY_X86_ISA_1_SSE3:
17473 case GNU_PROPERTY_X86_ISA_1_SSSE3:
17476 case GNU_PROPERTY_X86_ISA_1_SSE4_1:
17479 case GNU_PROPERTY_X86_ISA_1_SSE4_2:
17482 case GNU_PROPERTY_X86_ISA_1_AVX:
17485 case GNU_PROPERTY_X86_ISA_1_AVX2:
17488 case GNU_PROPERTY_X86_ISA_1_FMA:
17491 case GNU_PROPERTY_X86_ISA_1_AVX512F:
17492 printf ("AVX512F");
17494 case GNU_PROPERTY_X86_ISA_1_AVX512CD:
17495 printf ("AVX512CD");
17497 case GNU_PROPERTY_X86_ISA_1_AVX512ER:
17498 printf ("AVX512ER");
17500 case GNU_PROPERTY_X86_ISA_1_AVX512PF:
17501 printf ("AVX512PF");
17503 case GNU_PROPERTY_X86_ISA_1_AVX512VL:
17504 printf ("AVX512VL");
17506 case GNU_PROPERTY_X86_ISA_1_AVX512DQ:
17507 printf ("AVX512DQ");
17509 case GNU_PROPERTY_X86_ISA_1_AVX512BW:
17510 printf ("AVX512BW");
17512 case GNU_PROPERTY_X86_ISA_1_AVX512_4FMAPS:
17513 printf ("AVX512_4FMAPS");
17515 case GNU_PROPERTY_X86_ISA_1_AVX512_4VNNIW:
17516 printf ("AVX512_4VNNIW");
17518 case GNU_PROPERTY_X86_ISA_1_AVX512_BITALG:
17519 printf ("AVX512_BITALG");
17521 case GNU_PROPERTY_X86_ISA_1_AVX512_IFMA:
17522 printf ("AVX512_IFMA");
17524 case GNU_PROPERTY_X86_ISA_1_AVX512_VBMI:
17525 printf ("AVX512_VBMI");
17527 case GNU_PROPERTY_X86_ISA_1_AVX512_VBMI2:
17528 printf ("AVX512_VBMI2");
17530 case GNU_PROPERTY_X86_ISA_1_AVX512_VNNI:
17531 printf ("AVX512_VNNI");
17533 case GNU_PROPERTY_X86_ISA_1_AVX512_BF16:
17534 printf ("AVX512_BF16");
17537 printf (_("<unknown: %x>"), bit);
17546 decode_x86_feature_1 (unsigned int bitmask)
17550 printf (_("<None>"));
17556 unsigned int bit = bitmask & (- bitmask);
17561 case GNU_PROPERTY_X86_FEATURE_1_IBT:
17564 case GNU_PROPERTY_X86_FEATURE_1_SHSTK:
17568 printf (_("<unknown: %x>"), bit);
17577 decode_x86_feature_2 (unsigned int bitmask)
17581 printf (_("<None>"));
17587 unsigned int bit = bitmask & (- bitmask);
17592 case GNU_PROPERTY_X86_FEATURE_2_X86:
17595 case GNU_PROPERTY_X86_FEATURE_2_X87:
17598 case GNU_PROPERTY_X86_FEATURE_2_MMX:
17601 case GNU_PROPERTY_X86_FEATURE_2_XMM:
17604 case GNU_PROPERTY_X86_FEATURE_2_YMM:
17607 case GNU_PROPERTY_X86_FEATURE_2_ZMM:
17610 case GNU_PROPERTY_X86_FEATURE_2_FXSR:
17613 case GNU_PROPERTY_X86_FEATURE_2_XSAVE:
17616 case GNU_PROPERTY_X86_FEATURE_2_XSAVEOPT:
17617 printf ("XSAVEOPT");
17619 case GNU_PROPERTY_X86_FEATURE_2_XSAVEC:
17623 printf (_("<unknown: %x>"), bit);
17632 decode_aarch64_feature_1_and (unsigned int bitmask)
17636 unsigned int bit = bitmask & (- bitmask);
17641 case GNU_PROPERTY_AARCH64_FEATURE_1_BTI:
17645 case GNU_PROPERTY_AARCH64_FEATURE_1_PAC:
17650 printf (_("<unknown: %x>"), bit);
17659 print_gnu_property_note (Filedata * filedata, Elf_Internal_Note * pnote)
17661 unsigned char * ptr = (unsigned char *) pnote->descdata;
17662 unsigned char * ptr_end = ptr + pnote->descsz;
17663 unsigned int size = is_32bit_elf ? 4 : 8;
17665 printf (_(" Properties: "));
17667 if (pnote->descsz < 8 || (pnote->descsz % size) != 0)
17669 printf (_("<corrupt GNU_PROPERTY_TYPE, size = %#lx>\n"), pnote->descsz);
17673 while (ptr < ptr_end)
17677 unsigned int datasz;
17679 if ((size_t) (ptr_end - ptr) < 8)
17681 printf (_("<corrupt descsz: %#lx>\n"), pnote->descsz);
17685 type = byte_get (ptr, 4);
17686 datasz = byte_get (ptr + 4, 4);
17690 if (datasz > (size_t) (ptr_end - ptr))
17692 printf (_("<corrupt type (%#x) datasz: %#x>\n"),
17697 if (type >= GNU_PROPERTY_LOPROC && type <= GNU_PROPERTY_HIPROC)
17699 if (filedata->file_header.e_machine == EM_X86_64
17700 || filedata->file_header.e_machine == EM_IAMCU
17701 || filedata->file_header.e_machine == EM_386)
17703 unsigned int bitmask;
17706 bitmask = byte_get (ptr, 4);
17712 case GNU_PROPERTY_X86_ISA_1_USED:
17714 printf (_("x86 ISA used: <corrupt length: %#x> "),
17718 printf ("x86 ISA used: ");
17719 decode_x86_isa (bitmask);
17723 case GNU_PROPERTY_X86_ISA_1_NEEDED:
17725 printf (_("x86 ISA needed: <corrupt length: %#x> "),
17729 printf ("x86 ISA needed: ");
17730 decode_x86_isa (bitmask);
17734 case GNU_PROPERTY_X86_FEATURE_1_AND:
17736 printf (_("x86 feature: <corrupt length: %#x> "),
17740 printf ("x86 feature: ");
17741 decode_x86_feature_1 (bitmask);
17745 case GNU_PROPERTY_X86_FEATURE_2_USED:
17747 printf (_("x86 feature used: <corrupt length: %#x> "),
17751 printf ("x86 feature used: ");
17752 decode_x86_feature_2 (bitmask);
17756 case GNU_PROPERTY_X86_FEATURE_2_NEEDED:
17758 printf (_("x86 feature needed: <corrupt length: %#x> "), datasz);
17761 printf ("x86 feature needed: ");
17762 decode_x86_feature_2 (bitmask);
17766 case GNU_PROPERTY_X86_COMPAT_ISA_1_USED:
17768 printf (_("x86 ISA used: <corrupt length: %#x> "),
17772 printf ("x86 ISA used: ");
17773 decode_x86_compat_isa (bitmask);
17777 case GNU_PROPERTY_X86_COMPAT_ISA_1_NEEDED:
17779 printf (_("x86 ISA needed: <corrupt length: %#x> "),
17783 printf ("x86 ISA needed: ");
17784 decode_x86_compat_isa (bitmask);
17792 else if (filedata->file_header.e_machine == EM_AARCH64)
17794 if (type == GNU_PROPERTY_AARCH64_FEATURE_1_AND)
17796 printf ("AArch64 feature: ");
17798 printf (_("<corrupt length: %#x> "), datasz);
17800 decode_aarch64_feature_1_and (byte_get (ptr, 4));
17809 case GNU_PROPERTY_STACK_SIZE:
17810 printf (_("stack size: "));
17811 if (datasz != size)
17812 printf (_("<corrupt length: %#x> "), datasz);
17814 printf ("%#lx", (unsigned long) byte_get (ptr, size));
17817 case GNU_PROPERTY_NO_COPY_ON_PROTECTED:
17818 printf ("no copy on protected ");
17820 printf (_("<corrupt length: %#x> "), datasz);
17828 if (type < GNU_PROPERTY_LOPROC)
17829 printf (_("<unknown type %#x data: "), type);
17830 else if (type < GNU_PROPERTY_LOUSER)
17831 printf (_("<procesor-specific type %#x data: "), type);
17833 printf (_("<application-specific type %#x data: "), type);
17834 for (j = 0; j < datasz; ++j)
17835 printf ("%02x ", ptr[j] & 0xff);
17839 ptr += ((datasz + (size - 1)) & ~ (size - 1));
17840 if (ptr == ptr_end)
17853 print_gnu_note (Filedata * filedata, Elf_Internal_Note *pnote)
17855 /* NB/ Keep this switch statement in sync with get_gnu_elf_note_type (). */
17856 switch (pnote->type)
17858 case NT_GNU_BUILD_ID:
17862 printf (_(" Build ID: "));
17863 for (i = 0; i < pnote->descsz; ++i)
17864 printf ("%02x", pnote->descdata[i] & 0xff);
17869 case NT_GNU_ABI_TAG:
17871 unsigned long os, major, minor, subminor;
17872 const char *osname;
17874 /* PR 17531: file: 030-599401-0.004. */
17875 if (pnote->descsz < 16)
17877 printf (_(" <corrupt GNU_ABI_TAG>\n"));
17881 os = byte_get ((unsigned char *) pnote->descdata, 4);
17882 major = byte_get ((unsigned char *) pnote->descdata + 4, 4);
17883 minor = byte_get ((unsigned char *) pnote->descdata + 8, 4);
17884 subminor = byte_get ((unsigned char *) pnote->descdata + 12, 4);
17888 case GNU_ABI_TAG_LINUX:
17891 case GNU_ABI_TAG_HURD:
17894 case GNU_ABI_TAG_SOLARIS:
17895 osname = "Solaris";
17897 case GNU_ABI_TAG_FREEBSD:
17898 osname = "FreeBSD";
17900 case GNU_ABI_TAG_NETBSD:
17903 case GNU_ABI_TAG_SYLLABLE:
17904 osname = "Syllable";
17906 case GNU_ABI_TAG_NACL:
17910 osname = "Unknown";
17914 printf (_(" OS: %s, ABI: %ld.%ld.%ld\n"), osname,
17915 major, minor, subminor);
17919 case NT_GNU_GOLD_VERSION:
17923 printf (_(" Version: "));
17924 for (i = 0; i < pnote->descsz && pnote->descdata[i] != '\0'; ++i)
17925 printf ("%c", pnote->descdata[i]);
17932 unsigned long num_entries, mask;
17934 /* Hardware capabilities information. Word 0 is the number of entries.
17935 Word 1 is a bitmask of enabled entries. The rest of the descriptor
17936 is a series of entries, where each entry is a single byte followed
17937 by a nul terminated string. The byte gives the bit number to test
17938 if enabled in the bitmask. */
17939 printf (_(" Hardware Capabilities: "));
17940 if (pnote->descsz < 8)
17942 error (_("<corrupt GNU_HWCAP>\n"));
17945 num_entries = byte_get ((unsigned char *) pnote->descdata, 4);
17946 mask = byte_get ((unsigned char *) pnote->descdata + 4, 4);
17947 printf (_("num entries: %ld, enabled mask: %lx\n"), num_entries, mask);
17948 /* FIXME: Add code to display the entries... */
17952 case NT_GNU_PROPERTY_TYPE_0:
17953 print_gnu_property_note (filedata, pnote);
17957 /* Handle unrecognised types. An error message should have already been
17958 created by get_gnu_elf_note_type(), so all that we need to do is to
17959 display the data. */
17963 printf (_(" Description data: "));
17964 for (i = 0; i < pnote->descsz; ++i)
17965 printf ("%02x ", pnote->descdata[i] & 0xff);
17974 static const char *
17975 get_v850_elf_note_type (enum v850_notes n_type)
17977 static char buff[64];
17981 case V850_NOTE_ALIGNMENT: return _("Alignment of 8-byte objects");
17982 case V850_NOTE_DATA_SIZE: return _("Sizeof double and long double");
17983 case V850_NOTE_FPU_INFO: return _("Type of FPU support needed");
17984 case V850_NOTE_SIMD_INFO: return _("Use of SIMD instructions");
17985 case V850_NOTE_CACHE_INFO: return _("Use of cache");
17986 case V850_NOTE_MMU_INFO: return _("Use of MMU");
17988 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), n_type);
17994 print_v850_note (Elf_Internal_Note * pnote)
17998 if (pnote->descsz != 4)
18001 val = byte_get ((unsigned char *) pnote->descdata, pnote->descsz);
18005 printf (_("not set\n"));
18009 switch (pnote->type)
18011 case V850_NOTE_ALIGNMENT:
18014 case EF_RH850_DATA_ALIGN4: printf (_("4-byte\n")); return TRUE;
18015 case EF_RH850_DATA_ALIGN8: printf (_("8-byte\n")); return TRUE;
18019 case V850_NOTE_DATA_SIZE:
18022 case EF_RH850_DOUBLE32: printf (_("4-bytes\n")); return TRUE;
18023 case EF_RH850_DOUBLE64: printf (_("8-bytes\n")); return TRUE;
18027 case V850_NOTE_FPU_INFO:
18030 case EF_RH850_FPU20: printf (_("FPU-2.0\n")); return TRUE;
18031 case EF_RH850_FPU30: printf (_("FPU-3.0\n")); return TRUE;
18035 case V850_NOTE_MMU_INFO:
18036 case V850_NOTE_CACHE_INFO:
18037 case V850_NOTE_SIMD_INFO:
18038 if (val == EF_RH850_SIMD)
18040 printf (_("yes\n"));
18046 /* An 'unknown note type' message will already have been displayed. */
18050 printf (_("unknown value: %x\n"), val);
18055 process_netbsd_elf_note (Elf_Internal_Note * pnote)
18057 unsigned int version;
18059 switch (pnote->type)
18061 case NT_NETBSD_IDENT:
18062 version = byte_get ((unsigned char *) pnote->descdata, sizeof (version));
18063 if ((version / 10000) % 100)
18064 printf (" NetBSD\t\t0x%08lx\tIDENT %u (%u.%u%s%c)\n", pnote->descsz,
18065 version, version / 100000000, (version / 1000000) % 100,
18066 (version / 10000) % 100 > 26 ? "Z" : "",
18067 'A' + (version / 10000) % 26);
18069 printf (" NetBSD\t\t0x%08lx\tIDENT %u (%u.%u.%u)\n", pnote->descsz,
18070 version, version / 100000000, (version / 1000000) % 100,
18071 (version / 100) % 100);
18074 case NT_NETBSD_MARCH:
18075 printf (" NetBSD\t0x%08lx\tMARCH <%s>\n", pnote->descsz,
18080 printf (" NetBSD\t0x%08lx\tUnknown note type: (0x%08lx)\n", pnote->descsz,
18086 static const char *
18087 get_freebsd_elfcore_note_type (Filedata * filedata, unsigned e_type)
18091 case NT_FREEBSD_THRMISC:
18092 return _("NT_THRMISC (thrmisc structure)");
18093 case NT_FREEBSD_PROCSTAT_PROC:
18094 return _("NT_PROCSTAT_PROC (proc data)");
18095 case NT_FREEBSD_PROCSTAT_FILES:
18096 return _("NT_PROCSTAT_FILES (files data)");
18097 case NT_FREEBSD_PROCSTAT_VMMAP:
18098 return _("NT_PROCSTAT_VMMAP (vmmap data)");
18099 case NT_FREEBSD_PROCSTAT_GROUPS:
18100 return _("NT_PROCSTAT_GROUPS (groups data)");
18101 case NT_FREEBSD_PROCSTAT_UMASK:
18102 return _("NT_PROCSTAT_UMASK (umask data)");
18103 case NT_FREEBSD_PROCSTAT_RLIMIT:
18104 return _("NT_PROCSTAT_RLIMIT (rlimit data)");
18105 case NT_FREEBSD_PROCSTAT_OSREL:
18106 return _("NT_PROCSTAT_OSREL (osreldate data)");
18107 case NT_FREEBSD_PROCSTAT_PSSTRINGS:
18108 return _("NT_PROCSTAT_PSSTRINGS (ps_strings data)");
18109 case NT_FREEBSD_PROCSTAT_AUXV:
18110 return _("NT_PROCSTAT_AUXV (auxv data)");
18111 case NT_FREEBSD_PTLWPINFO:
18112 return _("NT_PTLWPINFO (ptrace_lwpinfo structure)");
18114 return get_note_type (filedata, e_type);
18117 static const char *
18118 get_netbsd_elfcore_note_type (Filedata * filedata, unsigned e_type)
18120 static char buff[64];
18122 if (e_type == NT_NETBSDCORE_PROCINFO)
18123 return _("NetBSD procinfo structure");
18125 /* As of Jan 2002 there are no other machine-independent notes
18126 defined for NetBSD core files. If the note type is less
18127 than the start of the machine-dependent note types, we don't
18130 if (e_type < NT_NETBSDCORE_FIRSTMACH)
18132 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
18136 switch (filedata->file_header.e_machine)
18138 /* On the Alpha, SPARC (32-bit and 64-bit), PT_GETREGS == mach+0
18139 and PT_GETFPREGS == mach+2. */
18144 case EM_SPARC32PLUS:
18148 case NT_NETBSDCORE_FIRSTMACH + 0:
18149 return _("PT_GETREGS (reg structure)");
18150 case NT_NETBSDCORE_FIRSTMACH + 2:
18151 return _("PT_GETFPREGS (fpreg structure)");
18157 /* On all other arch's, PT_GETREGS == mach+1 and
18158 PT_GETFPREGS == mach+3. */
18162 case NT_NETBSDCORE_FIRSTMACH + 1:
18163 return _("PT_GETREGS (reg structure)");
18164 case NT_NETBSDCORE_FIRSTMACH + 3:
18165 return _("PT_GETFPREGS (fpreg structure)");
18171 snprintf (buff, sizeof (buff), "PT_FIRSTMACH+%d",
18172 e_type - NT_NETBSDCORE_FIRSTMACH);
18176 static const char *
18177 get_stapsdt_note_type (unsigned e_type)
18179 static char buff[64];
18184 return _("NT_STAPSDT (SystemTap probe descriptors)");
18190 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
18195 print_stapsdt_note (Elf_Internal_Note *pnote)
18197 size_t len, maxlen;
18198 unsigned long addr_size = is_32bit_elf ? 4 : 8;
18199 char *data = pnote->descdata;
18200 char *data_end = pnote->descdata + pnote->descsz;
18201 bfd_vma pc, base_addr, semaphore;
18202 char *provider, *probe, *arg_fmt;
18204 if (pnote->descsz < (addr_size * 3))
18205 goto stapdt_note_too_small;
18207 pc = byte_get ((unsigned char *) data, addr_size);
18210 base_addr = byte_get ((unsigned char *) data, addr_size);
18213 semaphore = byte_get ((unsigned char *) data, addr_size);
18216 if (data >= data_end)
18217 goto stapdt_note_too_small;
18218 maxlen = data_end - data;
18219 len = strnlen (data, maxlen);
18226 goto stapdt_note_too_small;
18228 if (data >= data_end)
18229 goto stapdt_note_too_small;
18230 maxlen = data_end - data;
18231 len = strnlen (data, maxlen);
18238 goto stapdt_note_too_small;
18240 if (data >= data_end)
18241 goto stapdt_note_too_small;
18242 maxlen = data_end - data;
18243 len = strnlen (data, maxlen);
18250 goto stapdt_note_too_small;
18252 printf (_(" Provider: %s\n"), provider);
18253 printf (_(" Name: %s\n"), probe);
18254 printf (_(" Location: "));
18255 print_vma (pc, FULL_HEX);
18256 printf (_(", Base: "));
18257 print_vma (base_addr, FULL_HEX);
18258 printf (_(", Semaphore: "));
18259 print_vma (semaphore, FULL_HEX);
18261 printf (_(" Arguments: %s\n"), arg_fmt);
18263 return data == data_end;
18265 stapdt_note_too_small:
18266 printf (_(" <corrupt - note is too small>\n"));
18267 error (_("corrupt stapdt note - the data size is too small\n"));
18271 static const char *
18272 get_ia64_vms_note_type (unsigned e_type)
18274 static char buff[64];
18279 return _("NT_VMS_MHD (module header)");
18281 return _("NT_VMS_LNM (language name)");
18283 return _("NT_VMS_SRC (source files)");
18285 return "NT_VMS_TITLE";
18287 return _("NT_VMS_EIDC (consistency check)");
18288 case NT_VMS_FPMODE:
18289 return _("NT_VMS_FPMODE (FP mode)");
18290 case NT_VMS_LINKTIME:
18291 return "NT_VMS_LINKTIME";
18292 case NT_VMS_IMGNAM:
18293 return _("NT_VMS_IMGNAM (image name)");
18295 return _("NT_VMS_IMGID (image id)");
18296 case NT_VMS_LINKID:
18297 return _("NT_VMS_LINKID (link id)");
18298 case NT_VMS_IMGBID:
18299 return _("NT_VMS_IMGBID (build id)");
18300 case NT_VMS_GSTNAM:
18301 return _("NT_VMS_GSTNAM (sym table name)");
18302 case NT_VMS_ORIG_DYN:
18303 return "NT_VMS_ORIG_DYN";
18304 case NT_VMS_PATCHTIME:
18305 return "NT_VMS_PATCHTIME";
18307 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
18313 print_ia64_vms_note (Elf_Internal_Note * pnote)
18315 int maxlen = pnote->descsz;
18317 if (maxlen < 2 || (unsigned long) maxlen != pnote->descsz)
18318 goto desc_size_fail;
18320 switch (pnote->type)
18324 goto desc_size_fail;
18326 int l = (int) strnlen (pnote->descdata + 34, maxlen - 34);
18328 printf (_(" Creation date : %.17s\n"), pnote->descdata);
18329 printf (_(" Last patch date: %.17s\n"), pnote->descdata + 17);
18330 if (l + 34 < maxlen)
18332 printf (_(" Module name : %s\n"), pnote->descdata + 34);
18333 if (l + 35 < maxlen)
18334 printf (_(" Module version : %s\n"), pnote->descdata + 34 + l + 1);
18336 printf (_(" Module version : <missing>\n"));
18340 printf (_(" Module name : <missing>\n"));
18341 printf (_(" Module version : <missing>\n"));
18346 printf (_(" Language: %.*s\n"), maxlen, pnote->descdata);
18350 case NT_VMS_FPMODE:
18351 printf (_(" Floating Point mode: "));
18353 goto desc_size_fail;
18354 /* FIXME: Generate an error if descsz > 8 ? */
18356 printf ("0x%016" BFD_VMA_FMT "x\n",
18357 (bfd_vma) byte_get ((unsigned char *)pnote->descdata, 8));
18360 case NT_VMS_LINKTIME:
18361 printf (_(" Link time: "));
18363 goto desc_size_fail;
18364 /* FIXME: Generate an error if descsz > 8 ? */
18367 ((bfd_int64_t) byte_get ((unsigned char *)pnote->descdata, 8));
18371 case NT_VMS_PATCHTIME:
18372 printf (_(" Patch time: "));
18374 goto desc_size_fail;
18375 /* FIXME: Generate an error if descsz > 8 ? */
18378 ((bfd_int64_t) byte_get ((unsigned char *)pnote->descdata, 8));
18382 case NT_VMS_ORIG_DYN:
18384 goto desc_size_fail;
18386 printf (_(" Major id: %u, minor id: %u\n"),
18387 (unsigned) byte_get ((unsigned char *)pnote->descdata, 4),
18388 (unsigned) byte_get ((unsigned char *)pnote->descdata + 4, 4));
18389 printf (_(" Last modified : "));
18391 ((bfd_int64_t) byte_get ((unsigned char *)pnote->descdata + 8, 8));
18392 printf (_("\n Link flags : "));
18393 printf ("0x%016" BFD_VMA_FMT "x\n",
18394 (bfd_vma) byte_get ((unsigned char *)pnote->descdata + 16, 8));
18395 printf (_(" Header flags: 0x%08x\n"),
18396 (unsigned) byte_get ((unsigned char *)pnote->descdata + 24, 4));
18397 printf (_(" Image id : %.*s\n"), maxlen - 32, pnote->descdata + 32);
18401 case NT_VMS_IMGNAM:
18402 printf (_(" Image name: %.*s\n"), maxlen, pnote->descdata);
18405 case NT_VMS_GSTNAM:
18406 printf (_(" Global symbol table name: %.*s\n"), maxlen, pnote->descdata);
18410 printf (_(" Image id: %.*s\n"), maxlen, pnote->descdata);
18413 case NT_VMS_LINKID:
18414 printf (_(" Linker id: %.*s\n"), maxlen, pnote->descdata);
18424 printf (_(" <corrupt - data size is too small>\n"));
18425 error (_("corrupt IA64 note: data size is too small\n"));
18429 /* Find the symbol associated with a build attribute that is attached
18430 to address OFFSET. If PNAME is non-NULL then store the name of
18431 the symbol (if found) in the provided pointer, Returns NULL if a
18432 symbol could not be found. */
18434 static Elf_Internal_Sym *
18435 get_symbol_for_build_attribute (Filedata * filedata,
18436 unsigned long offset,
18437 bfd_boolean is_open_attr,
18438 const char ** pname)
18440 static Filedata * saved_filedata = NULL;
18441 static char * strtab;
18442 static unsigned long strtablen;
18443 static Elf_Internal_Sym * symtab;
18444 static unsigned long nsyms;
18445 Elf_Internal_Sym * saved_sym = NULL;
18446 Elf_Internal_Sym * sym;
18448 if (filedata->section_headers != NULL
18449 && (saved_filedata == NULL || filedata != saved_filedata))
18451 Elf_Internal_Shdr * symsec;
18453 /* Load the symbol and string sections. */
18454 for (symsec = filedata->section_headers;
18455 symsec < filedata->section_headers + filedata->file_header.e_shnum;
18458 if (symsec->sh_type == SHT_SYMTAB)
18460 symtab = GET_ELF_SYMBOLS (filedata, symsec, & nsyms);
18462 if (symsec->sh_link < filedata->file_header.e_shnum)
18464 Elf_Internal_Shdr * strtab_sec = filedata->section_headers + symsec->sh_link;
18466 strtab = (char *) get_data (NULL, filedata, strtab_sec->sh_offset,
18467 1, strtab_sec->sh_size,
18468 _("string table"));
18469 strtablen = strtab != NULL ? strtab_sec->sh_size : 0;
18473 saved_filedata = filedata;
18476 if (symtab == NULL || strtab == NULL)
18479 /* Find a symbol whose value matches offset. */
18480 for (sym = symtab; sym < symtab + nsyms; sym ++)
18481 if (sym->st_value == offset)
18483 if (sym->st_name >= strtablen)
18484 /* Huh ? This should not happen. */
18487 if (strtab[sym->st_name] == 0)
18490 /* The AArch64 and ARM architectures define mapping symbols
18491 (eg $d, $x, $t) which we want to ignore. */
18492 if (strtab[sym->st_name] == '$'
18493 && strtab[sym->st_name + 1] != 0
18494 && strtab[sym->st_name + 2] == 0)
18499 /* For OPEN attributes we prefer GLOBAL over LOCAL symbols
18500 and FILE or OBJECT symbols over NOTYPE symbols. We skip
18501 FUNC symbols entirely. */
18502 switch (ELF_ST_TYPE (sym->st_info))
18509 /* If the symbol has a size associated
18510 with it then we can stop searching. */
18511 sym = symtab + nsyms;
18516 /* Ignore function symbols. */
18523 switch (ELF_ST_BIND (sym->st_info))
18526 if (saved_sym == NULL
18527 || ELF_ST_TYPE (saved_sym->st_info) != STT_OBJECT)
18532 if (saved_sym == NULL)
18542 if (ELF_ST_TYPE (sym->st_info) != STT_FUNC)
18550 if (saved_sym && pname)
18551 * pname = strtab + saved_sym->st_name;
18556 /* Returns true iff addr1 and addr2 are in the same section. */
18559 same_section (Filedata * filedata, unsigned long addr1, unsigned long addr2)
18561 Elf_Internal_Shdr * a1;
18562 Elf_Internal_Shdr * a2;
18564 a1 = find_section_by_address (filedata, addr1);
18565 a2 = find_section_by_address (filedata, addr2);
18567 return a1 == a2 && a1 != NULL;
18571 print_gnu_build_attribute_description (Elf_Internal_Note * pnote,
18572 Filedata * filedata)
18574 static unsigned long global_offset = 0;
18575 static unsigned long global_end = 0;
18576 static unsigned long func_offset = 0;
18577 static unsigned long func_end = 0;
18579 Elf_Internal_Sym * sym;
18581 unsigned long start;
18583 bfd_boolean is_open_attr = pnote->type == NT_GNU_BUILD_ATTRIBUTE_OPEN;
18585 switch (pnote->descsz)
18588 /* A zero-length description means that the range of
18589 the previous note of the same type should be used. */
18592 if (global_end > global_offset)
18593 printf (_(" Applies to region from %#lx to %#lx\n"),
18594 global_offset, global_end);
18596 printf (_(" Applies to region from %#lx\n"), global_offset);
18600 if (func_end > func_offset)
18601 printf (_(" Applies to region from %#lx to %#lx\n"), func_offset, func_end);
18603 printf (_(" Applies to region from %#lx\n"), func_offset);
18608 start = byte_get ((unsigned char *) pnote->descdata, 4);
18615 /* FIXME: We should check that version 3+ notes are being used here... */
18616 start = byte_get ((unsigned char *) pnote->descdata, 4);
18617 end = byte_get ((unsigned char *) pnote->descdata + 4, 4);
18621 start = byte_get ((unsigned char *) pnote->descdata, 8);
18627 start = byte_get ((unsigned char *) pnote->descdata, 8);
18628 end = byte_get ((unsigned char *) pnote->descdata + 8, 8);
18632 error (_(" <invalid description size: %lx>\n"), pnote->descsz);
18633 printf (_(" <invalid descsz>"));
18638 sym = get_symbol_for_build_attribute (filedata, start, is_open_attr, & name);
18639 /* As of version 5 of the annobin plugin, filename symbols are biased by 2
18640 in order to avoid them being confused with the start address of the
18641 first function in the file... */
18642 if (sym == NULL && is_open_attr)
18643 sym = get_symbol_for_build_attribute (filedata, start + 2, is_open_attr,
18646 if (end == 0 && sym != NULL && sym->st_size > 0)
18647 end = start + sym->st_size;
18651 /* FIXME: Need to properly allow for section alignment.
18652 16 is just the alignment used on x86_64. */
18654 && start > BFD_ALIGN (global_end, 16)
18655 /* Build notes are not guaranteed to be organised in order of
18656 increasing address, but we should find the all of the notes
18657 for one section in the same place. */
18658 && same_section (filedata, start, global_end))
18659 warn (_("Gap in build notes detected from %#lx to %#lx\n"),
18660 global_end + 1, start - 1);
18662 printf (_(" Applies to region from %#lx"), start);
18663 global_offset = start;
18667 printf (_(" to %#lx"), end);
18673 printf (_(" Applies to region from %#lx"), start);
18674 func_offset = start;
18678 printf (_(" to %#lx"), end);
18684 printf (_(" (%s)"), name);
18691 print_gnu_build_attribute_name (Elf_Internal_Note * pnote)
18693 static const char string_expected [2] = { GNU_BUILD_ATTRIBUTE_TYPE_STRING, 0 };
18694 static const char number_expected [2] = { GNU_BUILD_ATTRIBUTE_TYPE_NUMERIC, 0 };
18695 static const char bool_expected [3] = { GNU_BUILD_ATTRIBUTE_TYPE_BOOL_TRUE, GNU_BUILD_ATTRIBUTE_TYPE_BOOL_FALSE, 0 };
18697 char name_attribute;
18698 const char * expected_types;
18699 const char * name = pnote->namedata;
18703 if (name == NULL || pnote->namesz < 2)
18705 error (_("corrupt name field in GNU build attribute note: size = %ld\n"), pnote->namesz);
18706 print_symbol (-20, _(" <corrupt name>"));
18715 /* Version 2 of the spec adds a "GA" prefix to the name field. */
18716 if (name[0] == 'G' && name[1] == 'A')
18718 if (pnote->namesz < 4)
18720 error (_("corrupt name field in GNU build attribute note: size = %ld\n"), pnote->namesz);
18721 print_symbol (-20, _(" <corrupt name>"));
18730 switch ((name_type = * name))
18732 case GNU_BUILD_ATTRIBUTE_TYPE_NUMERIC:
18733 case GNU_BUILD_ATTRIBUTE_TYPE_STRING:
18734 case GNU_BUILD_ATTRIBUTE_TYPE_BOOL_TRUE:
18735 case GNU_BUILD_ATTRIBUTE_TYPE_BOOL_FALSE:
18736 printf ("%c", * name);
18740 error (_("unrecognised attribute type in name field: %d\n"), name_type);
18741 print_symbol (-20, _("<unknown name type>"));
18748 switch ((name_attribute = * name))
18750 case GNU_BUILD_ATTRIBUTE_VERSION:
18751 text = _("<version>");
18752 expected_types = string_expected;
18755 case GNU_BUILD_ATTRIBUTE_STACK_PROT:
18756 text = _("<stack prot>");
18757 expected_types = "!+*";
18760 case GNU_BUILD_ATTRIBUTE_RELRO:
18761 text = _("<relro>");
18762 expected_types = bool_expected;
18765 case GNU_BUILD_ATTRIBUTE_STACK_SIZE:
18766 text = _("<stack size>");
18767 expected_types = number_expected;
18770 case GNU_BUILD_ATTRIBUTE_TOOL:
18771 text = _("<tool>");
18772 expected_types = string_expected;
18775 case GNU_BUILD_ATTRIBUTE_ABI:
18777 expected_types = "$*";
18780 case GNU_BUILD_ATTRIBUTE_PIC:
18782 expected_types = number_expected;
18785 case GNU_BUILD_ATTRIBUTE_SHORT_ENUM:
18786 text = _("<short enum>");
18787 expected_types = bool_expected;
18791 if (ISPRINT (* name))
18793 int len = strnlen (name, pnote->namesz - (name - pnote->namedata)) + 1;
18795 if (len > left && ! do_wide)
18797 printf ("%.*s:", len, name);
18803 static char tmpbuf [128];
18805 error (_("unrecognised byte in name field: %d\n"), * name);
18806 sprintf (tmpbuf, _("<unknown:_%d>"), * name);
18810 expected_types = "*$!+";
18815 left -= printf ("%s", text);
18817 if (strchr (expected_types, name_type) == NULL)
18818 warn (_("attribute does not have an expected type (%c)\n"), name_type);
18820 if ((unsigned long)(name - pnote->namedata) > pnote->namesz)
18822 error (_("corrupt name field: namesz: %lu but parsing gets to %ld\n"),
18823 (unsigned long) pnote->namesz,
18824 (long) (name - pnote->namedata));
18828 if (left < 1 && ! do_wide)
18833 case GNU_BUILD_ATTRIBUTE_TYPE_NUMERIC:
18835 unsigned int bytes;
18836 unsigned long long val = 0;
18837 unsigned int shift = 0;
18838 char * decoded = NULL;
18840 bytes = pnote->namesz - (name - pnote->namedata);
18842 /* The -1 is because the name field is always 0 terminated, and we
18843 want to be able to ensure that the shift in the while loop below
18844 will not overflow. */
18847 if (bytes > sizeof (val))
18849 error (_("corrupt numeric name field: too many bytes in the value: %x\n"),
18851 bytes = sizeof (val);
18853 /* We do not bother to warn if bytes == 0 as this can
18854 happen with some early versions of the gcc plugin. */
18858 unsigned long byte = (* name ++) & 0xff;
18860 val |= byte << shift;
18864 switch (name_attribute)
18866 case GNU_BUILD_ATTRIBUTE_PIC:
18869 case 0: decoded = "static"; break;
18870 case 1: decoded = "pic"; break;
18871 case 2: decoded = "PIC"; break;
18872 case 3: decoded = "pie"; break;
18873 case 4: decoded = "PIE"; break;
18877 case GNU_BUILD_ATTRIBUTE_STACK_PROT:
18880 /* Based upon the SPCT_FLAG_xxx enum values in gcc/cfgexpand.c. */
18881 case 0: decoded = "off"; break;
18882 case 1: decoded = "on"; break;
18883 case 2: decoded = "all"; break;
18884 case 3: decoded = "strong"; break;
18885 case 4: decoded = "explicit"; break;
18893 if (decoded != NULL)
18895 print_symbol (-left, decoded);
18906 left -= printf ("0x%llx", val);
18908 left -= printf ("0x%-.*llx", left, val);
18912 case GNU_BUILD_ATTRIBUTE_TYPE_STRING:
18913 left -= print_symbol (- left, name);
18915 case GNU_BUILD_ATTRIBUTE_TYPE_BOOL_TRUE:
18916 left -= print_symbol (- left, "true");
18918 case GNU_BUILD_ATTRIBUTE_TYPE_BOOL_FALSE:
18919 left -= print_symbol (- left, "false");
18923 if (do_wide && left > 0)
18924 printf ("%-*s", left, " ");
18929 /* Note that by the ELF standard, the name field is already null byte
18930 terminated, and namesz includes the terminating null byte.
18931 I.E. the value of namesz for the name "FSF" is 4.
18933 If the value of namesz is zero, there is no name present. */
18936 process_note (Elf_Internal_Note * pnote,
18937 Filedata * filedata)
18939 const char * name = pnote->namesz ? pnote->namedata : "(NONE)";
18942 if (pnote->namesz == 0)
18943 /* If there is no note name, then use the default set of
18944 note type strings. */
18945 nt = get_note_type (filedata, pnote->type);
18947 else if (const_strneq (pnote->namedata, "GNU"))
18948 /* GNU-specific object file notes. */
18949 nt = get_gnu_elf_note_type (pnote->type);
18951 else if (const_strneq (pnote->namedata, "FreeBSD"))
18952 /* FreeBSD-specific core file notes. */
18953 nt = get_freebsd_elfcore_note_type (filedata, pnote->type);
18955 else if (const_strneq (pnote->namedata, "NetBSD-CORE"))
18956 /* NetBSD-specific core file notes. */
18957 nt = get_netbsd_elfcore_note_type (filedata, pnote->type);
18959 else if (const_strneq (pnote->namedata, "NetBSD"))
18960 /* NetBSD-specific core file notes. */
18961 return process_netbsd_elf_note (pnote);
18963 else if (strneq (pnote->namedata, "SPU/", 4))
18965 /* SPU-specific core file notes. */
18966 nt = pnote->namedata + 4;
18970 else if (const_strneq (pnote->namedata, "IPF/VMS"))
18971 /* VMS/ia64-specific file notes. */
18972 nt = get_ia64_vms_note_type (pnote->type);
18974 else if (const_strneq (pnote->namedata, "stapsdt"))
18975 nt = get_stapsdt_note_type (pnote->type);
18978 /* Don't recognize this note name; just use the default set of
18979 note type strings. */
18980 nt = get_note_type (filedata, pnote->type);
18984 if (((const_strneq (pnote->namedata, "GA")
18985 && strchr ("*$!+", pnote->namedata[2]) != NULL)
18986 || strchr ("*$!+", pnote->namedata[0]) != NULL)
18987 && (pnote->type == NT_GNU_BUILD_ATTRIBUTE_OPEN
18988 || pnote->type == NT_GNU_BUILD_ATTRIBUTE_FUNC))
18989 print_gnu_build_attribute_name (pnote);
18991 print_symbol (-20, name);
18994 printf (" 0x%08lx\t%s\t", pnote->descsz, nt);
18996 printf (" 0x%08lx\t%s\n", pnote->descsz, nt);
18998 if (const_strneq (pnote->namedata, "IPF/VMS"))
18999 return print_ia64_vms_note (pnote);
19000 else if (const_strneq (pnote->namedata, "GNU"))
19001 return print_gnu_note (filedata, pnote);
19002 else if (const_strneq (pnote->namedata, "stapsdt"))
19003 return print_stapsdt_note (pnote);
19004 else if (const_strneq (pnote->namedata, "CORE"))
19005 return print_core_note (pnote);
19006 else if (((const_strneq (pnote->namedata, "GA")
19007 && strchr ("*$!+", pnote->namedata[2]) != NULL)
19008 || strchr ("*$!+", pnote->namedata[0]) != NULL)
19009 && (pnote->type == NT_GNU_BUILD_ATTRIBUTE_OPEN
19010 || pnote->type == NT_GNU_BUILD_ATTRIBUTE_FUNC))
19011 return print_gnu_build_attribute_description (pnote, filedata);
19017 printf (_(" description data: "));
19018 for (i = 0; i < pnote->descsz; i++)
19019 printf ("%02x ", pnote->descdata[i]);
19031 process_notes_at (Filedata * filedata,
19032 Elf_Internal_Shdr * section,
19037 Elf_External_Note * pnotes;
19038 Elf_External_Note * external;
19040 bfd_boolean res = TRUE;
19047 pnotes = (Elf_External_Note *) get_section_contents (section, filedata);
19050 if (! apply_relocations (filedata, section, (unsigned char *) pnotes, length, NULL, NULL))
19055 pnotes = (Elf_External_Note *) get_data (NULL, filedata, offset, 1, length,
19058 if (pnotes == NULL)
19064 printf (_("\nDisplaying notes found in: %s\n"), printable_section_name (filedata, section));
19066 printf (_("\nDisplaying notes found at file offset 0x%08lx with length 0x%08lx:\n"),
19067 (unsigned long) offset, (unsigned long) length);
19069 /* NB: Some note sections may have alignment value of 0 or 1. gABI
19070 specifies that notes should be aligned to 4 bytes in 32-bit
19071 objects and to 8 bytes in 64-bit objects. As a Linux extension,
19072 we also support 4 byte alignment in 64-bit objects. If section
19073 alignment is less than 4, we treate alignment as 4 bytes. */
19076 else if (align != 4 && align != 8)
19078 warn (_("Corrupt note: alignment %ld, expecting 4 or 8\n"),
19083 printf (_(" %-20s %10s\tDescription\n"), _("Owner"), _("Data size"));
19085 end = (char *) pnotes + length;
19086 while ((char *) external < end)
19088 Elf_Internal_Note inote;
19091 char * temp = NULL;
19092 size_t data_remaining = end - (char *) external;
19094 if (!is_ia64_vms (filedata))
19096 /* PR binutils/15191
19097 Make sure that there is enough data to read. */
19098 min_notesz = offsetof (Elf_External_Note, name);
19099 if (data_remaining < min_notesz)
19101 warn (ngettext ("Corrupt note: only %ld byte remains, "
19102 "not enough for a full note\n",
19103 "Corrupt note: only %ld bytes remain, "
19104 "not enough for a full note\n",
19106 (long) data_remaining);
19109 data_remaining -= min_notesz;
19111 inote.type = BYTE_GET (external->type);
19112 inote.namesz = BYTE_GET (external->namesz);
19113 inote.namedata = external->name;
19114 inote.descsz = BYTE_GET (external->descsz);
19115 inote.descdata = ((char *) external
19116 + ELF_NOTE_DESC_OFFSET (inote.namesz, align));
19117 inote.descpos = offset + (inote.descdata - (char *) pnotes);
19118 next = ((char *) external
19119 + ELF_NOTE_NEXT_OFFSET (inote.namesz, inote.descsz, align));
19123 Elf64_External_VMS_Note *vms_external;
19125 /* PR binutils/15191
19126 Make sure that there is enough data to read. */
19127 min_notesz = offsetof (Elf64_External_VMS_Note, name);
19128 if (data_remaining < min_notesz)
19130 warn (ngettext ("Corrupt note: only %ld byte remains, "
19131 "not enough for a full note\n",
19132 "Corrupt note: only %ld bytes remain, "
19133 "not enough for a full note\n",
19135 (long) data_remaining);
19138 data_remaining -= min_notesz;
19140 vms_external = (Elf64_External_VMS_Note *) external;
19141 inote.type = BYTE_GET (vms_external->type);
19142 inote.namesz = BYTE_GET (vms_external->namesz);
19143 inote.namedata = vms_external->name;
19144 inote.descsz = BYTE_GET (vms_external->descsz);
19145 inote.descdata = inote.namedata + align_power (inote.namesz, 3);
19146 inote.descpos = offset + (inote.descdata - (char *) pnotes);
19147 next = inote.descdata + align_power (inote.descsz, 3);
19150 /* PR 17531: file: 3443835e. */
19151 /* PR 17531: file: id:000000,sig:11,src:006986,op:havoc,rep:4. */
19152 if ((size_t) (inote.descdata - inote.namedata) < inote.namesz
19153 || (size_t) (inote.descdata - inote.namedata) > data_remaining
19154 || (size_t) (next - inote.descdata) < inote.descsz
19155 || ((size_t) (next - inote.descdata)
19156 > data_remaining - (size_t) (inote.descdata - inote.namedata)))
19158 warn (_("note with invalid namesz and/or descsz found at offset 0x%lx\n"),
19159 (unsigned long) ((char *) external - (char *) pnotes));
19160 warn (_(" type: 0x%lx, namesize: 0x%08lx, descsize: 0x%08lx, alignment: %u\n"),
19161 inote.type, inote.namesz, inote.descsz, (int) align);
19165 external = (Elf_External_Note *) next;
19167 /* Verify that name is null terminated. It appears that at least
19168 one version of Linux (RedHat 6.0) generates corefiles that don't
19169 comply with the ELF spec by failing to include the null byte in
19171 if (inote.namesz > 0 && inote.namedata[inote.namesz - 1] != '\0')
19173 if ((size_t) (inote.descdata - inote.namedata) == inote.namesz)
19175 temp = (char *) malloc (inote.namesz + 1);
19178 error (_("Out of memory allocating space for inote name\n"));
19183 memcpy (temp, inote.namedata, inote.namesz);
19184 inote.namedata = temp;
19186 inote.namedata[inote.namesz] = 0;
19189 if (! process_note (& inote, filedata))
19205 process_corefile_note_segments (Filedata * filedata)
19207 Elf_Internal_Phdr * segment;
19209 bfd_boolean res = TRUE;
19211 if (! get_program_headers (filedata))
19214 for (i = 0, segment = filedata->program_headers;
19215 i < filedata->file_header.e_phnum;
19218 if (segment->p_type == PT_NOTE)
19219 if (! process_notes_at (filedata, NULL,
19220 (bfd_vma) segment->p_offset,
19221 (bfd_vma) segment->p_filesz,
19222 (bfd_vma) segment->p_align))
19230 process_v850_notes (Filedata * filedata, bfd_vma offset, bfd_vma length)
19232 Elf_External_Note * pnotes;
19233 Elf_External_Note * external;
19235 bfd_boolean res = TRUE;
19240 pnotes = (Elf_External_Note *) get_data (NULL, filedata, offset, 1, length,
19242 if (pnotes == NULL)
19246 end = (char*) pnotes + length;
19248 printf (_("\nDisplaying contents of Renesas V850 notes section at offset 0x%lx with length 0x%lx:\n"),
19249 (unsigned long) offset, (unsigned long) length);
19251 while ((char *) external + sizeof (Elf_External_Note) < end)
19253 Elf_External_Note * next;
19254 Elf_Internal_Note inote;
19256 inote.type = BYTE_GET (external->type);
19257 inote.namesz = BYTE_GET (external->namesz);
19258 inote.namedata = external->name;
19259 inote.descsz = BYTE_GET (external->descsz);
19260 inote.descdata = inote.namedata + align_power (inote.namesz, 2);
19261 inote.descpos = offset + (inote.descdata - (char *) pnotes);
19263 if (inote.descdata < (char *) pnotes || inote.descdata >= end)
19265 warn (_("Corrupt note: name size is too big: %lx\n"), inote.namesz);
19266 inote.descdata = inote.namedata;
19270 next = (Elf_External_Note *) (inote.descdata + align_power (inote.descsz, 2));
19272 if ( ((char *) next > end)
19273 || ((char *) next < (char *) pnotes))
19275 warn (_("corrupt descsz found in note at offset 0x%lx\n"),
19276 (unsigned long) ((char *) external - (char *) pnotes));
19277 warn (_(" type: 0x%lx, namesize: 0x%lx, descsize: 0x%lx\n"),
19278 inote.type, inote.namesz, inote.descsz);
19284 /* Prevent out-of-bounds indexing. */
19285 if ( inote.namedata + inote.namesz > end
19286 || inote.namedata + inote.namesz < inote.namedata)
19288 warn (_("corrupt namesz found in note at offset 0x%lx\n"),
19289 (unsigned long) ((char *) external - (char *) pnotes));
19290 warn (_(" type: 0x%lx, namesize: 0x%lx, descsize: 0x%lx\n"),
19291 inote.type, inote.namesz, inote.descsz);
19295 printf (" %s: ", get_v850_elf_note_type (inote.type));
19297 if (! print_v850_note (& inote))
19300 printf ("<corrupt sizes: namesz: %lx, descsz: %lx>\n",
19301 inote.namesz, inote.descsz);
19311 process_note_sections (Filedata * filedata)
19313 Elf_Internal_Shdr * section;
19315 unsigned int n = 0;
19316 bfd_boolean res = TRUE;
19318 for (i = 0, section = filedata->section_headers;
19319 i < filedata->file_header.e_shnum && section != NULL;
19322 if (section->sh_type == SHT_NOTE)
19324 if (! process_notes_at (filedata, section,
19325 (bfd_vma) section->sh_offset,
19326 (bfd_vma) section->sh_size,
19327 (bfd_vma) section->sh_addralign))
19332 if (( filedata->file_header.e_machine == EM_V800
19333 || filedata->file_header.e_machine == EM_V850
19334 || filedata->file_header.e_machine == EM_CYGNUS_V850)
19335 && section->sh_type == SHT_RENESAS_INFO)
19337 if (! process_v850_notes (filedata,
19338 (bfd_vma) section->sh_offset,
19339 (bfd_vma) section->sh_size))
19346 /* Try processing NOTE segments instead. */
19347 return process_corefile_note_segments (filedata);
19353 process_notes (Filedata * filedata)
19355 /* If we have not been asked to display the notes then do nothing. */
19359 if (filedata->file_header.e_type != ET_CORE)
19360 return process_note_sections (filedata);
19362 /* No program headers means no NOTE segment. */
19363 if (filedata->file_header.e_phnum > 0)
19364 return process_corefile_note_segments (filedata);
19366 printf (_("No note segments present in the core file.\n"));
19370 static unsigned char *
19371 display_public_gnu_attributes (unsigned char * start,
19372 const unsigned char * const end)
19374 printf (_(" Unknown GNU attribute: %s\n"), start);
19376 start += strnlen ((char *) start, end - start);
19377 display_raw_attribute (start, end);
19379 return (unsigned char *) end;
19382 static unsigned char *
19383 display_generic_attribute (unsigned char * start,
19385 const unsigned char * const end)
19388 return (unsigned char *) end;
19390 return display_tag_value (tag, start, end);
19394 process_arch_specific (Filedata * filedata)
19399 switch (filedata->file_header.e_machine)
19402 case EM_ARC_COMPACT:
19403 case EM_ARC_COMPACT2:
19404 return process_attributes (filedata, "ARC", SHT_ARC_ATTRIBUTES,
19405 display_arc_attribute,
19406 display_generic_attribute);
19408 return process_attributes (filedata, "aeabi", SHT_ARM_ATTRIBUTES,
19409 display_arm_attribute,
19410 display_generic_attribute);
19413 case EM_MIPS_RS3_LE:
19414 return process_mips_specific (filedata);
19417 return process_attributes (filedata, "mspabi", SHT_MSP430_ATTRIBUTES,
19418 display_msp430x_attribute,
19419 display_generic_attribute);
19422 return process_attributes (filedata, "riscv", SHT_RISCV_ATTRIBUTES,
19423 display_riscv_attribute,
19424 display_generic_attribute);
19427 return process_nds32_specific (filedata);
19431 return process_attributes (filedata, NULL, SHT_GNU_ATTRIBUTES, NULL,
19432 display_power_gnu_attribute);
19436 return process_attributes (filedata, NULL, SHT_GNU_ATTRIBUTES, NULL,
19437 display_s390_gnu_attribute);
19440 case EM_SPARC32PLUS:
19442 return process_attributes (filedata, NULL, SHT_GNU_ATTRIBUTES, NULL,
19443 display_sparc_gnu_attribute);
19446 return process_attributes (filedata, "c6xabi", SHT_C6000_ATTRIBUTES,
19447 display_tic6x_attribute,
19448 display_generic_attribute);
19451 return process_attributes (filedata, "gnu", SHT_GNU_ATTRIBUTES,
19452 display_public_gnu_attributes,
19453 display_generic_attribute);
19458 get_file_header (Filedata * filedata)
19460 /* Read in the identity array. */
19461 if (fread (filedata->file_header.e_ident, EI_NIDENT, 1, filedata->handle) != 1)
19464 /* Determine how to read the rest of the header. */
19465 switch (filedata->file_header.e_ident[EI_DATA])
19470 byte_get = byte_get_little_endian;
19471 byte_put = byte_put_little_endian;
19474 byte_get = byte_get_big_endian;
19475 byte_put = byte_put_big_endian;
19479 /* For now we only support 32 bit and 64 bit ELF files. */
19480 is_32bit_elf = (filedata->file_header.e_ident[EI_CLASS] != ELFCLASS64);
19482 /* Read in the rest of the header. */
19485 Elf32_External_Ehdr ehdr32;
19487 if (fread (ehdr32.e_type, sizeof (ehdr32) - EI_NIDENT, 1, filedata->handle) != 1)
19490 filedata->file_header.e_type = BYTE_GET (ehdr32.e_type);
19491 filedata->file_header.e_machine = BYTE_GET (ehdr32.e_machine);
19492 filedata->file_header.e_version = BYTE_GET (ehdr32.e_version);
19493 filedata->file_header.e_entry = BYTE_GET (ehdr32.e_entry);
19494 filedata->file_header.e_phoff = BYTE_GET (ehdr32.e_phoff);
19495 filedata->file_header.e_shoff = BYTE_GET (ehdr32.e_shoff);
19496 filedata->file_header.e_flags = BYTE_GET (ehdr32.e_flags);
19497 filedata->file_header.e_ehsize = BYTE_GET (ehdr32.e_ehsize);
19498 filedata->file_header.e_phentsize = BYTE_GET (ehdr32.e_phentsize);
19499 filedata->file_header.e_phnum = BYTE_GET (ehdr32.e_phnum);
19500 filedata->file_header.e_shentsize = BYTE_GET (ehdr32.e_shentsize);
19501 filedata->file_header.e_shnum = BYTE_GET (ehdr32.e_shnum);
19502 filedata->file_header.e_shstrndx = BYTE_GET (ehdr32.e_shstrndx);
19506 Elf64_External_Ehdr ehdr64;
19508 /* If we have been compiled with sizeof (bfd_vma) == 4, then
19509 we will not be able to cope with the 64bit data found in
19510 64 ELF files. Detect this now and abort before we start
19511 overwriting things. */
19512 if (sizeof (bfd_vma) < 8)
19514 error (_("This instance of readelf has been built without support for a\n\
19515 64 bit data type and so it cannot read 64 bit ELF files.\n"));
19519 if (fread (ehdr64.e_type, sizeof (ehdr64) - EI_NIDENT, 1, filedata->handle) != 1)
19522 filedata->file_header.e_type = BYTE_GET (ehdr64.e_type);
19523 filedata->file_header.e_machine = BYTE_GET (ehdr64.e_machine);
19524 filedata->file_header.e_version = BYTE_GET (ehdr64.e_version);
19525 filedata->file_header.e_entry = BYTE_GET (ehdr64.e_entry);
19526 filedata->file_header.e_phoff = BYTE_GET (ehdr64.e_phoff);
19527 filedata->file_header.e_shoff = BYTE_GET (ehdr64.e_shoff);
19528 filedata->file_header.e_flags = BYTE_GET (ehdr64.e_flags);
19529 filedata->file_header.e_ehsize = BYTE_GET (ehdr64.e_ehsize);
19530 filedata->file_header.e_phentsize = BYTE_GET (ehdr64.e_phentsize);
19531 filedata->file_header.e_phnum = BYTE_GET (ehdr64.e_phnum);
19532 filedata->file_header.e_shentsize = BYTE_GET (ehdr64.e_shentsize);
19533 filedata->file_header.e_shnum = BYTE_GET (ehdr64.e_shnum);
19534 filedata->file_header.e_shstrndx = BYTE_GET (ehdr64.e_shstrndx);
19537 if (filedata->file_header.e_shoff)
19539 /* There may be some extensions in the first section header. Don't
19540 bomb if we can't read it. */
19542 get_32bit_section_headers (filedata, TRUE);
19544 get_64bit_section_headers (filedata, TRUE);
19551 close_file (Filedata * filedata)
19555 if (filedata->handle)
19556 fclose (filedata->handle);
19562 close_debug_file (void * data)
19564 close_file ((Filedata *) data);
19568 open_file (const char * pathname)
19570 struct stat statbuf;
19571 Filedata * filedata = NULL;
19573 if (stat (pathname, & statbuf) < 0
19574 || ! S_ISREG (statbuf.st_mode))
19577 filedata = calloc (1, sizeof * filedata);
19578 if (filedata == NULL)
19581 filedata->handle = fopen (pathname, "rb");
19582 if (filedata->handle == NULL)
19585 filedata->file_size = (bfd_size_type) statbuf.st_size;
19586 filedata->file_name = pathname;
19588 if (! get_file_header (filedata))
19591 if (filedata->file_header.e_shoff)
19595 /* Read the section headers again, this time for real. */
19597 res = get_32bit_section_headers (filedata, FALSE);
19599 res = get_64bit_section_headers (filedata, FALSE);
19610 if (filedata->handle)
19611 fclose (filedata->handle);
19618 open_debug_file (const char * pathname)
19620 return open_file (pathname);
19623 /* Process one ELF object file according to the command line options.
19624 This file may actually be stored in an archive. The file is
19625 positioned at the start of the ELF object. Returns TRUE if no
19626 problems were encountered, FALSE otherwise. */
19629 process_object (Filedata * filedata)
19631 bfd_boolean have_separate_files;
19633 bfd_boolean res = TRUE;
19635 if (! get_file_header (filedata))
19637 error (_("%s: Failed to read file header\n"), filedata->file_name);
19641 /* Initialise per file variables. */
19642 for (i = ARRAY_SIZE (version_info); i--;)
19643 version_info[i] = 0;
19645 for (i = ARRAY_SIZE (dynamic_info); i--;)
19646 dynamic_info[i] = 0;
19647 dynamic_info_DT_GNU_HASH = 0;
19649 /* Process the file. */
19651 printf (_("\nFile: %s\n"), filedata->file_name);
19653 /* Initialise the dump_sects array from the cmdline_dump_sects array.
19654 Note we do this even if cmdline_dump_sects is empty because we
19655 must make sure that the dump_sets array is zeroed out before each
19656 object file is processed. */
19657 if (filedata->num_dump_sects > cmdline.num_dump_sects)
19658 memset (filedata->dump_sects, 0, filedata->num_dump_sects * sizeof (* filedata->dump_sects));
19660 if (cmdline.num_dump_sects > 0)
19662 if (filedata->num_dump_sects == 0)
19663 /* A sneaky way of allocating the dump_sects array. */
19664 request_dump_bynumber (filedata, cmdline.num_dump_sects, 0);
19666 assert (filedata->num_dump_sects >= cmdline.num_dump_sects);
19667 memcpy (filedata->dump_sects, cmdline.dump_sects,
19668 cmdline.num_dump_sects * sizeof (* filedata->dump_sects));
19671 if (! process_file_header (filedata))
19674 if (! process_section_headers (filedata))
19676 /* Without loaded section headers we cannot process lots of things. */
19677 do_unwind = do_version = do_dump = do_arch = FALSE;
19679 if (! do_using_dynamic)
19680 do_syms = do_dyn_syms = do_reloc = FALSE;
19683 if (! process_section_groups (filedata))
19684 /* Without loaded section groups we cannot process unwind. */
19687 if (process_program_headers (filedata))
19688 process_dynamic_section (filedata);
19692 if (! process_relocs (filedata))
19695 if (! process_unwind (filedata))
19698 if (! process_symbol_table (filedata))
19701 if (! process_syminfo (filedata))
19704 if (! process_version_sections (filedata))
19707 if (filedata->file_header.e_shstrndx != SHN_UNDEF)
19708 have_separate_files = load_separate_debug_files (filedata, filedata->file_name);
19710 have_separate_files = FALSE;
19712 if (! process_section_contents (filedata))
19715 if (have_separate_files)
19719 for (d = first_separate_info; d != NULL; d = d->next)
19721 if (! process_section_headers (d->handle))
19723 else if (! process_section_contents (d->handle))
19727 /* The file handles are closed by the call to free_debug_memory() below. */
19730 if (! process_notes (filedata))
19733 if (! process_gnu_liblist (filedata))
19736 if (! process_arch_specific (filedata))
19739 free (filedata->program_headers);
19740 filedata->program_headers = NULL;
19742 free (filedata->section_headers);
19743 filedata->section_headers = NULL;
19745 free (filedata->string_table);
19746 filedata->string_table = NULL;
19747 filedata->string_table_length = 0;
19749 if (dynamic_strings)
19751 free (dynamic_strings);
19752 dynamic_strings = NULL;
19753 dynamic_strings_length = 0;
19756 if (dynamic_symbols)
19758 free (dynamic_symbols);
19759 dynamic_symbols = NULL;
19760 num_dynamic_syms = 0;
19763 if (dynamic_syminfo)
19765 free (dynamic_syminfo);
19766 dynamic_syminfo = NULL;
19769 if (dynamic_section)
19771 free (dynamic_section);
19772 dynamic_section = NULL;
19775 if (section_headers_groups)
19777 free (section_headers_groups);
19778 section_headers_groups = NULL;
19781 if (section_groups)
19783 struct group_list * g;
19784 struct group_list * next;
19786 for (i = 0; i < group_count; i++)
19788 for (g = section_groups [i].root; g != NULL; g = next)
19795 free (section_groups);
19796 section_groups = NULL;
19799 free_debug_memory ();
19804 /* Process an ELF archive.
19805 On entry the file is positioned just after the ARMAG string.
19806 Returns TRUE upon success, FALSE otherwise. */
19809 process_archive (Filedata * filedata, bfd_boolean is_thin_archive)
19811 struct archive_info arch;
19812 struct archive_info nested_arch;
19814 bfd_boolean ret = TRUE;
19818 /* The ARCH structure is used to hold information about this archive. */
19819 arch.file_name = NULL;
19821 arch.index_array = NULL;
19822 arch.sym_table = NULL;
19823 arch.longnames = NULL;
19825 /* The NESTED_ARCH structure is used as a single-item cache of information
19826 about a nested archive (when members of a thin archive reside within
19827 another regular archive file). */
19828 nested_arch.file_name = NULL;
19829 nested_arch.file = NULL;
19830 nested_arch.index_array = NULL;
19831 nested_arch.sym_table = NULL;
19832 nested_arch.longnames = NULL;
19834 if (setup_archive (&arch, filedata->file_name, filedata->handle,
19835 is_thin_archive, do_archive_index) != 0)
19841 if (do_archive_index)
19843 if (arch.sym_table == NULL)
19844 error (_("%s: unable to dump the index as none was found\n"), filedata->file_name);
19847 unsigned long i, l;
19848 unsigned long current_pos;
19850 printf (_("Index of archive %s: (%lu entries, 0x%lx bytes in the symbol table)\n"),
19851 filedata->file_name, (unsigned long) arch.index_num, arch.sym_size);
19853 current_pos = ftell (filedata->handle);
19855 for (i = l = 0; i < arch.index_num; i++)
19857 if ((i == 0) || ((i > 0) && (arch.index_array[i] != arch.index_array[i - 1])))
19859 char * member_name;
19861 member_name = get_archive_member_name_at (&arch, arch.index_array[i], &nested_arch);
19863 if (member_name != NULL)
19865 char * qualified_name = make_qualified_name (&arch, &nested_arch, member_name);
19867 if (qualified_name != NULL)
19869 printf (_("Contents of binary %s at offset "), qualified_name);
19870 (void) print_vma (arch.index_array[i], PREFIX_HEX);
19872 free (qualified_name);
19877 if (l >= arch.sym_size)
19879 error (_("%s: end of the symbol table reached before the end of the index\n"),
19880 filedata->file_name);
19884 /* PR 17531: file: 0b6630b2. */
19885 printf ("\t%.*s\n", (int) (arch.sym_size - l), arch.sym_table + l);
19886 l += strnlen (arch.sym_table + l, arch.sym_size - l) + 1;
19889 if (arch.uses_64bit_indices)
19894 if (l < arch.sym_size)
19896 error (ngettext ("%s: %ld byte remains in the symbol table, "
19897 "but without corresponding entries in "
19898 "the index table\n",
19899 "%s: %ld bytes remain in the symbol table, "
19900 "but without corresponding entries in "
19901 "the index table\n",
19902 arch.sym_size - l),
19903 filedata->file_name, arch.sym_size - l);
19907 if (fseek (filedata->handle, current_pos, SEEK_SET) != 0)
19909 error (_("%s: failed to seek back to start of object files in the archive\n"),
19910 filedata->file_name);
19916 if (!do_dynamic && !do_syms && !do_reloc && !do_unwind && !do_sections
19917 && !do_segments && !do_header && !do_dump && !do_version
19918 && !do_histogram && !do_debugging && !do_arch && !do_notes
19919 && !do_section_groups && !do_dyn_syms)
19921 ret = TRUE; /* Archive index only. */
19930 char * qualified_name;
19932 /* Read the next archive header. */
19933 if (fseek (filedata->handle, arch.next_arhdr_offset, SEEK_SET) != 0)
19935 error (_("%s: failed to seek to next archive header\n"), arch.file_name);
19938 got = fread (&arch.arhdr, 1, sizeof arch.arhdr, filedata->handle);
19939 if (got != sizeof arch.arhdr)
19943 /* PR 24049 - we cannot use filedata->file_name as this will
19944 have already been freed. */
19945 error (_("%s: failed to read archive header\n"), arch.file_name);
19950 if (memcmp (arch.arhdr.ar_fmag, ARFMAG, 2) != 0)
19952 error (_("%s: did not find a valid archive header\n"), arch.file_name);
19957 arch.next_arhdr_offset += sizeof arch.arhdr;
19959 archive_file_size = strtoul (arch.arhdr.ar_size, NULL, 10);
19960 if (archive_file_size & 01)
19961 ++archive_file_size;
19963 name = get_archive_member_name (&arch, &nested_arch);
19966 error (_("%s: bad archive file name\n"), arch.file_name);
19970 namelen = strlen (name);
19972 qualified_name = make_qualified_name (&arch, &nested_arch, name);
19973 if (qualified_name == NULL)
19975 error (_("%s: bad archive file name\n"), arch.file_name);
19980 if (is_thin_archive && arch.nested_member_origin == 0)
19982 /* This is a proxy for an external member of a thin archive. */
19983 Filedata * member_filedata;
19984 char * member_file_name = adjust_relative_path
19985 (filedata->file_name, name, namelen);
19987 if (member_file_name == NULL)
19993 member_filedata = open_file (member_file_name);
19994 if (member_filedata == NULL)
19996 error (_("Input file '%s' is not readable.\n"), member_file_name);
19997 free (member_file_name);
20002 archive_file_offset = arch.nested_member_origin;
20003 member_filedata->file_name = qualified_name;
20005 if (! process_object (member_filedata))
20008 close_file (member_filedata);
20009 free (member_file_name);
20011 else if (is_thin_archive)
20013 Filedata thin_filedata;
20015 memset (&thin_filedata, 0, sizeof (thin_filedata));
20017 /* PR 15140: Allow for corrupt thin archives. */
20018 if (nested_arch.file == NULL)
20020 error (_("%s: contains corrupt thin archive: %s\n"),
20021 qualified_name, name);
20026 /* This is a proxy for a member of a nested archive. */
20027 archive_file_offset = arch.nested_member_origin + sizeof arch.arhdr;
20029 /* The nested archive file will have been opened and setup by
20030 get_archive_member_name. */
20031 if (fseek (nested_arch.file, archive_file_offset, SEEK_SET) != 0)
20033 error (_("%s: failed to seek to archive member.\n"), nested_arch.file_name);
20038 thin_filedata.handle = nested_arch.file;
20039 thin_filedata.file_name = qualified_name;
20041 if (! process_object (& thin_filedata))
20046 archive_file_offset = arch.next_arhdr_offset;
20047 arch.next_arhdr_offset += archive_file_size;
20049 filedata->file_name = qualified_name;
20050 if (! process_object (filedata))
20054 if (filedata->dump_sects != NULL)
20056 free (filedata->dump_sects);
20057 filedata->dump_sects = NULL;
20058 filedata->num_dump_sects = 0;
20061 free (qualified_name);
20065 if (nested_arch.file != NULL)
20066 fclose (nested_arch.file);
20067 release_archive (&nested_arch);
20068 release_archive (&arch);
20074 process_file (char * file_name)
20076 Filedata * filedata = NULL;
20077 struct stat statbuf;
20078 char armag[SARMAG];
20079 bfd_boolean ret = TRUE;
20081 if (stat (file_name, &statbuf) < 0)
20083 if (errno == ENOENT)
20084 error (_("'%s': No such file\n"), file_name);
20086 error (_("Could not locate '%s'. System error message: %s\n"),
20087 file_name, strerror (errno));
20091 if (! S_ISREG (statbuf.st_mode))
20093 error (_("'%s' is not an ordinary file\n"), file_name);
20097 filedata = calloc (1, sizeof * filedata);
20098 if (filedata == NULL)
20100 error (_("Out of memory allocating file data structure\n"));
20104 filedata->file_name = file_name;
20105 filedata->handle = fopen (file_name, "rb");
20106 if (filedata->handle == NULL)
20108 error (_("Input file '%s' is not readable.\n"), file_name);
20113 if (fread (armag, SARMAG, 1, filedata->handle) != 1)
20115 error (_("%s: Failed to read file's magic number\n"), file_name);
20116 fclose (filedata->handle);
20121 filedata->file_size = (bfd_size_type) statbuf.st_size;
20123 if (memcmp (armag, ARMAG, SARMAG) == 0)
20125 if (! process_archive (filedata, FALSE))
20128 else if (memcmp (armag, ARMAGT, SARMAG) == 0)
20130 if ( ! process_archive (filedata, TRUE))
20135 if (do_archive_index)
20136 error (_("File %s is not an archive so its index cannot be displayed.\n"),
20139 rewind (filedata->handle);
20140 archive_file_size = archive_file_offset = 0;
20142 if (! process_object (filedata))
20146 fclose (filedata->handle);
20152 #ifdef SUPPORT_DISASSEMBLY
20153 /* Needed by the i386 disassembler. For extra credit, someone could
20154 fix this so that we insert symbolic addresses here, esp for GOT/PLT
20158 print_address (unsigned int addr, FILE * outfile)
20160 fprintf (outfile,"0x%8.8x", addr);
20163 /* Needed by the i386 disassembler. */
20166 db_task_printsym (unsigned int addr)
20168 print_address (addr, stderr);
20173 main (int argc, char ** argv)
20177 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
20178 setlocale (LC_MESSAGES, "");
20180 #if defined (HAVE_SETLOCALE)
20181 setlocale (LC_CTYPE, "");
20183 bindtextdomain (PACKAGE, LOCALEDIR);
20184 textdomain (PACKAGE);
20186 expandargv (&argc, &argv);
20188 cmdline.file_name = "<cmdline>";
20189 parse_args (& cmdline, argc, argv);
20191 if (optind < (argc - 1))
20193 else if (optind >= argc)
20195 warn (_("Nothing to do.\n"));
20200 while (optind < argc)
20201 if (! process_file (argv[optind++]))
20204 if (cmdline.dump_sects != NULL)
20205 free (cmdline.dump_sects);
20208 free (dump_ctf_symtab_name);
20209 free (dump_ctf_strtab_name);
20210 free (dump_ctf_parent_name);
20213 return err ? EXIT_FAILURE : EXIT_SUCCESS;