Add and use elfcomm.c/elfcomm.h.
[binutils.git] / binutils / readelf.c
blob3f4167b0c20fbf6fb4c3114b745b2bb179280a17
1 /* readelf.c -- display contents of an ELF format file
2 Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
3 2008, 2009, 2010
4 Free Software Foundation, Inc.
6 Originally developed by Eric Youngdale <eric@andante.jic.com>
7 Modifications by Nick Clifton <nickc@redhat.com>
9 This file is part of GNU Binutils.
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 3 of the License, or
14 (at your option) any later version.
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
21 You should have received a copy of the GNU General Public License
22 along with this program; if not, write to the Free Software
23 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
24 02110-1301, USA. */
26 /* The difference between readelf and objdump:
28 Both programs are capable of displaying the contents of ELF format files,
29 so why does the binutils project have two file dumpers ?
31 The reason is that objdump sees an ELF file through a BFD filter of the
32 world; if BFD has a bug where, say, it disagrees about a machine constant
33 in e_flags, then the odds are good that it will remain internally
34 consistent. The linker sees it the BFD way, objdump sees it the BFD way,
35 GAS sees it the BFD way. There was need for a tool to go find out what
36 the file actually says.
38 This is why the readelf program does not link against the BFD library - it
39 exists as an independent program to help verify the correct working of BFD.
41 There is also the case that readelf can provide more information about an
42 ELF file than is provided by objdump. In particular it can display DWARF
43 debugging information which (at the moment) objdump cannot. */
45 #include "config.h"
46 #include "sysdep.h"
47 #include <assert.h>
48 #include <sys/stat.h>
49 #include <time.h>
50 #ifdef HAVE_ZLIB_H
51 #include <zlib.h>
52 #endif
54 #if __GNUC__ >= 2
55 /* Define BFD64 here, even if our default architecture is 32 bit ELF
56 as this will allow us to read in and parse 64bit and 32bit ELF files.
57 Only do this if we believe that the compiler can support a 64 bit
58 data type. For now we only rely on GCC being able to do this. */
59 #define BFD64
60 #endif
62 #include "bfd.h"
63 #include "bucomm.h"
64 #include "elfcomm.h"
65 #include "dwarf.h"
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. */
77 #include "elf/h8.h"
78 #undef _ELF_H8_H
80 /* Undo the effects of #including reloc-macros.h. */
82 #undef START_RELOC_NUMBERS
83 #undef RELOC_NUMBER
84 #undef FAKE_RELOC
85 #undef EMPTY_RELOC
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/alpha.h"
96 #include "elf/arc.h"
97 #include "elf/arm.h"
98 #include "elf/avr.h"
99 #include "elf/bfin.h"
100 #include "elf/cr16.h"
101 #include "elf/cris.h"
102 #include "elf/crx.h"
103 #include "elf/d10v.h"
104 #include "elf/d30v.h"
105 #include "elf/dlx.h"
106 #include "elf/fr30.h"
107 #include "elf/frv.h"
108 #include "elf/h8.h"
109 #include "elf/hppa.h"
110 #include "elf/i386.h"
111 #include "elf/i370.h"
112 #include "elf/i860.h"
113 #include "elf/i960.h"
114 #include "elf/ia64.h"
115 #include "elf/ip2k.h"
116 #include "elf/lm32.h"
117 #include "elf/iq2000.h"
118 #include "elf/m32c.h"
119 #include "elf/m32r.h"
120 #include "elf/m68k.h"
121 #include "elf/m68hc11.h"
122 #include "elf/mcore.h"
123 #include "elf/mep.h"
124 #include "elf/microblaze.h"
125 #include "elf/mips.h"
126 #include "elf/mmix.h"
127 #include "elf/mn10200.h"
128 #include "elf/mn10300.h"
129 #include "elf/moxie.h"
130 #include "elf/mt.h"
131 #include "elf/msp430.h"
132 #include "elf/or32.h"
133 #include "elf/pj.h"
134 #include "elf/ppc.h"
135 #include "elf/ppc64.h"
136 #include "elf/rx.h"
137 #include "elf/s390.h"
138 #include "elf/score.h"
139 #include "elf/sh.h"
140 #include "elf/sparc.h"
141 #include "elf/spu.h"
142 #include "elf/tic6x.h"
143 #include "elf/v850.h"
144 #include "elf/vax.h"
145 #include "elf/x86-64.h"
146 #include "elf/xc16x.h"
147 #include "elf/xstormy16.h"
148 #include "elf/xtensa.h"
150 #include "getopt.h"
151 #include "libiberty.h"
152 #include "safe-ctype.h"
153 #include "filenames.h"
155 char * program_name = "readelf";
156 static long archive_file_offset;
157 static unsigned long archive_file_size;
158 static unsigned long dynamic_addr;
159 static bfd_size_type dynamic_size;
160 static unsigned int dynamic_nent;
161 static char * dynamic_strings;
162 static unsigned long dynamic_strings_length;
163 static char * string_table;
164 static unsigned long string_table_length;
165 static unsigned long num_dynamic_syms;
166 static Elf_Internal_Sym * dynamic_symbols;
167 static Elf_Internal_Syminfo * dynamic_syminfo;
168 static unsigned long dynamic_syminfo_offset;
169 static unsigned int dynamic_syminfo_nent;
170 static char program_interpreter[PATH_MAX];
171 static bfd_vma dynamic_info[DT_ENCODING];
172 static bfd_vma dynamic_info_DT_GNU_HASH;
173 static bfd_vma version_info[16];
174 static Elf_Internal_Ehdr elf_header;
175 static Elf_Internal_Shdr * section_headers;
176 static Elf_Internal_Phdr * program_headers;
177 static Elf_Internal_Dyn * dynamic_section;
178 static Elf_Internal_Shdr * symtab_shndx_hdr;
179 static int show_name;
180 static int do_dynamic;
181 static int do_syms;
182 static int do_dyn_syms;
183 static int do_reloc;
184 static int do_sections;
185 static int do_section_groups;
186 static int do_section_details;
187 static int do_segments;
188 static int do_unwind;
189 static int do_using_dynamic;
190 static int do_header;
191 static int do_dump;
192 static int do_version;
193 static int do_histogram;
194 static int do_debugging;
195 static int do_arch;
196 static int do_notes;
197 static int do_archive_index;
198 static int is_32bit_elf;
200 struct group_list
202 struct group_list * next;
203 unsigned int section_index;
206 struct group
208 struct group_list * root;
209 unsigned int group_index;
212 static size_t group_count;
213 static struct group * section_groups;
214 static struct group ** section_headers_groups;
217 /* Flag bits indicating particular types of dump. */
218 #define HEX_DUMP (1 << 0) /* The -x command line switch. */
219 #define DISASS_DUMP (1 << 1) /* The -i command line switch. */
220 #define DEBUG_DUMP (1 << 2) /* The -w command line switch. */
221 #define STRING_DUMP (1 << 3) /* The -p command line switch. */
222 #define RELOC_DUMP (1 << 4) /* The -R command line switch. */
224 typedef unsigned char dump_type;
226 /* A linked list of the section names for which dumps were requested. */
227 struct dump_list_entry
229 char * name;
230 dump_type type;
231 struct dump_list_entry * next;
233 static struct dump_list_entry * dump_sects_byname;
235 /* A dynamic array of flags indicating for which sections a dump
236 has been requested via command line switches. */
237 static dump_type * cmdline_dump_sects = NULL;
238 static unsigned int num_cmdline_dump_sects = 0;
240 /* A dynamic array of flags indicating for which sections a dump of
241 some kind has been requested. It is reset on a per-object file
242 basis and then initialised from the cmdline_dump_sects array,
243 the results of interpreting the -w switch, and the
244 dump_sects_byname list. */
245 static dump_type * dump_sects = NULL;
246 static unsigned int num_dump_sects = 0;
249 /* How to print a vma value. */
250 typedef enum print_mode
252 HEX,
253 DEC,
254 DEC_5,
255 UNSIGNED,
256 PREFIX_HEX,
257 FULL_HEX,
258 LONG_HEX
260 print_mode;
262 #define UNKNOWN -1
264 #define SECTION_NAME(X) \
265 ((X) == NULL ? _("<none>") \
266 : string_table == NULL ? _("<no-name>") \
267 : ((X)->sh_name >= string_table_length ? _("<corrupt>") \
268 : string_table + (X)->sh_name))
270 #define DT_VERSIONTAGIDX(tag) (DT_VERNEEDNUM - (tag)) /* Reverse order! */
272 #define GET_ELF_SYMBOLS(file, section) \
273 (is_32bit_elf ? get_32bit_elf_symbols (file, section) \
274 : get_64bit_elf_symbols (file, section))
276 #define VALID_DYNAMIC_NAME(offset) ((dynamic_strings != NULL) && (offset < dynamic_strings_length))
277 /* GET_DYNAMIC_NAME asssumes that VALID_DYNAMIC_NAME has
278 already been called and verified that the string exists. */
279 #define GET_DYNAMIC_NAME(offset) (dynamic_strings + offset)
281 #define REMOVE_ARCH_BITS(ADDR) do { \
282 if (elf_header.e_machine == EM_ARM) \
283 (ADDR) &= ~1; \
284 } while (0)
286 static void *
287 get_data (void * var, FILE * file, long offset, size_t size, size_t nmemb,
288 const char * reason)
290 void * mvar;
292 if (size == 0 || nmemb == 0)
293 return NULL;
295 if (fseek (file, archive_file_offset + offset, SEEK_SET))
297 error (_("Unable to seek to 0x%lx for %s\n"),
298 (unsigned long) archive_file_offset + offset, reason);
299 return NULL;
302 mvar = var;
303 if (mvar == NULL)
305 /* Check for overflow. */
306 if (nmemb < (~(size_t) 0 - 1) / size)
307 /* + 1 so that we can '\0' terminate invalid string table sections. */
308 mvar = malloc (size * nmemb + 1);
310 if (mvar == NULL)
312 error (_("Out of memory allocating 0x%lx bytes for %s\n"),
313 (unsigned long)(size * nmemb), reason);
314 return NULL;
317 ((char *) mvar)[size * nmemb] = '\0';
320 if (fread (mvar, size, nmemb, file) != nmemb)
322 error (_("Unable to read in 0x%lx bytes of %s\n"),
323 (unsigned long)(size * nmemb), reason);
324 if (mvar != var)
325 free (mvar);
326 return NULL;
329 return mvar;
332 /* Print a VMA value. */
334 static int
335 print_vma (bfd_vma vma, print_mode mode)
337 int nc = 0;
339 switch (mode)
341 case FULL_HEX:
342 nc = printf ("0x");
343 /* Drop through. */
345 case LONG_HEX:
346 #ifdef BFD64
347 if (is_32bit_elf)
348 return nc + printf ("%8.8" BFD_VMA_FMT "x", vma);
349 #endif
350 printf_vma (vma);
351 return nc + 16;
353 case DEC_5:
354 if (vma <= 99999)
355 return printf ("%5" BFD_VMA_FMT "d", vma);
356 /* Drop through. */
358 case PREFIX_HEX:
359 nc = printf ("0x");
360 /* Drop through. */
362 case HEX:
363 return nc + printf ("%" BFD_VMA_FMT "x", vma);
365 case DEC:
366 return printf ("%" BFD_VMA_FMT "d", vma);
368 case UNSIGNED:
369 return printf ("%" BFD_VMA_FMT "u", vma);
371 return 0;
374 /* Display a symbol on stdout. Handles the display of non-printing characters.
376 If DO_WIDE is not true then format the symbol to be at most WIDTH characters,
377 truncating as necessary. If WIDTH is negative then format the string to be
378 exactly - WIDTH characters, truncating or padding as necessary.
380 Returns the number of emitted characters. */
382 static unsigned int
383 print_symbol (int width, const char * symbol)
385 const char * c;
386 bfd_boolean extra_padding = FALSE;
387 unsigned int num_printed = 0;
389 if (do_wide)
391 /* Set the width to a very large value. This simplifies the code below. */
392 width = INT_MAX;
394 else if (width < 0)
396 /* Keep the width positive. This also helps. */
397 width = - width;
398 extra_padding = TRUE;
401 while (width)
403 int len;
405 c = symbol;
407 /* Look for non-printing symbols inside the symbol's name.
408 This test is triggered in particular by the names generated
409 by the assembler for local labels. */
410 while (ISPRINT (* c))
411 c++;
413 len = c - symbol;
415 if (len)
417 if (len > width)
418 len = width;
420 printf ("%.*s", len, symbol);
422 width -= len;
423 num_printed += len;
426 if (* c == 0 || width == 0)
427 break;
429 /* Now display the non-printing character, if
430 there is room left in which to dipslay it. */
431 if (*c < 32)
433 if (width < 2)
434 break;
436 printf ("^%c", *c + 0x40);
438 width -= 2;
439 num_printed += 2;
441 else
443 if (width < 6)
444 break;
446 printf ("<0x%.2x>", *c);
448 width -= 6;
449 num_printed += 6;
452 symbol = c + 1;
455 if (extra_padding && width > 0)
457 /* Fill in the remaining spaces. */
458 printf ("%-*s", width, " ");
459 num_printed += 2;
462 return num_printed;
465 /* Return a pointer to section NAME, or NULL if no such section exists. */
467 static Elf_Internal_Shdr *
468 find_section (const char * name)
470 unsigned int i;
472 for (i = 0; i < elf_header.e_shnum; i++)
473 if (streq (SECTION_NAME (section_headers + i), name))
474 return section_headers + i;
476 return NULL;
479 /* Return a pointer to a section containing ADDR, or NULL if no such
480 section exists. */
482 static Elf_Internal_Shdr *
483 find_section_by_address (bfd_vma addr)
485 unsigned int i;
487 for (i = 0; i < elf_header.e_shnum; i++)
489 Elf_Internal_Shdr *sec = section_headers + i;
490 if (addr >= sec->sh_addr && addr < sec->sh_addr + sec->sh_size)
491 return sec;
494 return NULL;
497 /* Read an unsigned LEB128 encoded value from p. Set *PLEN to the number of
498 bytes read. */
500 static unsigned long
501 read_uleb128 (unsigned char *data, unsigned int *length_return)
503 return read_leb128 (data, length_return, 0);
506 /* Return true if the current file is for IA-64 machine and OpenVMS ABI.
507 This OS has so many departures from the ELF standard that we test it at
508 many places. */
510 static inline int
511 is_ia64_vms (void)
513 return elf_header.e_machine == EM_IA_64
514 && elf_header.e_ident[EI_OSABI] == ELFOSABI_OPENVMS;
517 /* Guess the relocation size commonly used by the specific machines. */
519 static int
520 guess_is_rela (unsigned int e_machine)
522 switch (e_machine)
524 /* Targets that use REL relocations. */
525 case EM_386:
526 case EM_486:
527 case EM_960:
528 case EM_ARM:
529 case EM_D10V:
530 case EM_CYGNUS_D10V:
531 case EM_DLX:
532 case EM_MIPS:
533 case EM_MIPS_RS3_LE:
534 case EM_CYGNUS_M32R:
535 case EM_OPENRISC:
536 case EM_OR32:
537 case EM_SCORE:
538 return FALSE;
540 /* Targets that use RELA relocations. */
541 case EM_68K:
542 case EM_860:
543 case EM_ALPHA:
544 case EM_ALTERA_NIOS2:
545 case EM_AVR:
546 case EM_AVR_OLD:
547 case EM_BLACKFIN:
548 case EM_CR16:
549 case EM_CR16_OLD:
550 case EM_CRIS:
551 case EM_CRX:
552 case EM_D30V:
553 case EM_CYGNUS_D30V:
554 case EM_FR30:
555 case EM_CYGNUS_FR30:
556 case EM_CYGNUS_FRV:
557 case EM_H8S:
558 case EM_H8_300:
559 case EM_H8_300H:
560 case EM_IA_64:
561 case EM_IP2K:
562 case EM_IP2K_OLD:
563 case EM_IQ2000:
564 case EM_LATTICEMICO32:
565 case EM_M32C_OLD:
566 case EM_M32C:
567 case EM_M32R:
568 case EM_MCORE:
569 case EM_CYGNUS_MEP:
570 case EM_MMIX:
571 case EM_MN10200:
572 case EM_CYGNUS_MN10200:
573 case EM_MN10300:
574 case EM_CYGNUS_MN10300:
575 case EM_MOXIE:
576 case EM_MSP430:
577 case EM_MSP430_OLD:
578 case EM_MT:
579 case EM_NIOS32:
580 case EM_PPC64:
581 case EM_PPC:
582 case EM_RX:
583 case EM_S390:
584 case EM_S390_OLD:
585 case EM_SH:
586 case EM_SPARC:
587 case EM_SPARC32PLUS:
588 case EM_SPARCV9:
589 case EM_SPU:
590 case EM_TI_C6000:
591 case EM_V850:
592 case EM_CYGNUS_V850:
593 case EM_VAX:
594 case EM_X86_64:
595 case EM_L1OM:
596 case EM_XSTORMY16:
597 case EM_XTENSA:
598 case EM_XTENSA_OLD:
599 case EM_MICROBLAZE:
600 case EM_MICROBLAZE_OLD:
601 return TRUE;
603 case EM_68HC05:
604 case EM_68HC08:
605 case EM_68HC11:
606 case EM_68HC16:
607 case EM_FX66:
608 case EM_ME16:
609 case EM_MMA:
610 case EM_NCPU:
611 case EM_NDR1:
612 case EM_PCP:
613 case EM_ST100:
614 case EM_ST19:
615 case EM_ST7:
616 case EM_ST9PLUS:
617 case EM_STARCORE:
618 case EM_SVX:
619 case EM_TINYJ:
620 default:
621 warn (_("Don't know about relocations on this machine architecture\n"));
622 return FALSE;
626 static int
627 slurp_rela_relocs (FILE * file,
628 unsigned long rel_offset,
629 unsigned long rel_size,
630 Elf_Internal_Rela ** relasp,
631 unsigned long * nrelasp)
633 Elf_Internal_Rela * relas;
634 unsigned long nrelas;
635 unsigned int i;
637 if (is_32bit_elf)
639 Elf32_External_Rela * erelas;
641 erelas = (Elf32_External_Rela *) get_data (NULL, file, rel_offset, 1,
642 rel_size, _("relocs"));
643 if (!erelas)
644 return 0;
646 nrelas = rel_size / sizeof (Elf32_External_Rela);
648 relas = (Elf_Internal_Rela *) cmalloc (nrelas,
649 sizeof (Elf_Internal_Rela));
651 if (relas == NULL)
653 free (erelas);
654 error (_("out of memory parsing relocs\n"));
655 return 0;
658 for (i = 0; i < nrelas; i++)
660 relas[i].r_offset = BYTE_GET (erelas[i].r_offset);
661 relas[i].r_info = BYTE_GET (erelas[i].r_info);
662 relas[i].r_addend = BYTE_GET_SIGNED (erelas[i].r_addend);
665 free (erelas);
667 else
669 Elf64_External_Rela * erelas;
671 erelas = (Elf64_External_Rela *) get_data (NULL, file, rel_offset, 1,
672 rel_size, _("relocs"));
673 if (!erelas)
674 return 0;
676 nrelas = rel_size / sizeof (Elf64_External_Rela);
678 relas = (Elf_Internal_Rela *) cmalloc (nrelas,
679 sizeof (Elf_Internal_Rela));
681 if (relas == NULL)
683 free (erelas);
684 error (_("out of memory parsing relocs\n"));
685 return 0;
688 for (i = 0; i < nrelas; i++)
690 relas[i].r_offset = BYTE_GET (erelas[i].r_offset);
691 relas[i].r_info = BYTE_GET (erelas[i].r_info);
692 relas[i].r_addend = BYTE_GET_SIGNED (erelas[i].r_addend);
694 /* The #ifdef BFD64 below is to prevent a compile time
695 warning. We know that if we do not have a 64 bit data
696 type that we will never execute this code anyway. */
697 #ifdef BFD64
698 if (elf_header.e_machine == EM_MIPS
699 && elf_header.e_ident[EI_DATA] != ELFDATA2MSB)
701 /* In little-endian objects, r_info isn't really a
702 64-bit little-endian value: it has a 32-bit
703 little-endian symbol index followed by four
704 individual byte fields. Reorder INFO
705 accordingly. */
706 bfd_vma inf = relas[i].r_info;
707 inf = (((inf & 0xffffffff) << 32)
708 | ((inf >> 56) & 0xff)
709 | ((inf >> 40) & 0xff00)
710 | ((inf >> 24) & 0xff0000)
711 | ((inf >> 8) & 0xff000000));
712 relas[i].r_info = inf;
714 #endif /* BFD64 */
717 free (erelas);
719 *relasp = relas;
720 *nrelasp = nrelas;
721 return 1;
724 static int
725 slurp_rel_relocs (FILE * file,
726 unsigned long rel_offset,
727 unsigned long rel_size,
728 Elf_Internal_Rela ** relsp,
729 unsigned long * nrelsp)
731 Elf_Internal_Rela * rels;
732 unsigned long nrels;
733 unsigned int i;
735 if (is_32bit_elf)
737 Elf32_External_Rel * erels;
739 erels = (Elf32_External_Rel *) get_data (NULL, file, rel_offset, 1,
740 rel_size, _("relocs"));
741 if (!erels)
742 return 0;
744 nrels = rel_size / sizeof (Elf32_External_Rel);
746 rels = (Elf_Internal_Rela *) cmalloc (nrels, sizeof (Elf_Internal_Rela));
748 if (rels == NULL)
750 free (erels);
751 error (_("out of memory parsing relocs\n"));
752 return 0;
755 for (i = 0; i < nrels; i++)
757 rels[i].r_offset = BYTE_GET (erels[i].r_offset);
758 rels[i].r_info = BYTE_GET (erels[i].r_info);
759 rels[i].r_addend = 0;
762 free (erels);
764 else
766 Elf64_External_Rel * erels;
768 erels = (Elf64_External_Rel *) get_data (NULL, file, rel_offset, 1,
769 rel_size, _("relocs"));
770 if (!erels)
771 return 0;
773 nrels = rel_size / sizeof (Elf64_External_Rel);
775 rels = (Elf_Internal_Rela *) cmalloc (nrels, sizeof (Elf_Internal_Rela));
777 if (rels == NULL)
779 free (erels);
780 error (_("out of memory parsing relocs\n"));
781 return 0;
784 for (i = 0; i < nrels; i++)
786 rels[i].r_offset = BYTE_GET (erels[i].r_offset);
787 rels[i].r_info = BYTE_GET (erels[i].r_info);
788 rels[i].r_addend = 0;
790 /* The #ifdef BFD64 below is to prevent a compile time
791 warning. We know that if we do not have a 64 bit data
792 type that we will never execute this code anyway. */
793 #ifdef BFD64
794 if (elf_header.e_machine == EM_MIPS
795 && elf_header.e_ident[EI_DATA] != ELFDATA2MSB)
797 /* In little-endian objects, r_info isn't really a
798 64-bit little-endian value: it has a 32-bit
799 little-endian symbol index followed by four
800 individual byte fields. Reorder INFO
801 accordingly. */
802 bfd_vma inf = rels[i].r_info;
803 inf = (((inf & 0xffffffff) << 32)
804 | ((inf >> 56) & 0xff)
805 | ((inf >> 40) & 0xff00)
806 | ((inf >> 24) & 0xff0000)
807 | ((inf >> 8) & 0xff000000));
808 rels[i].r_info = inf;
810 #endif /* BFD64 */
813 free (erels);
815 *relsp = rels;
816 *nrelsp = nrels;
817 return 1;
820 /* Returns the reloc type extracted from the reloc info field. */
822 static unsigned int
823 get_reloc_type (bfd_vma reloc_info)
825 if (is_32bit_elf)
826 return ELF32_R_TYPE (reloc_info);
828 switch (elf_header.e_machine)
830 case EM_MIPS:
831 /* Note: We assume that reloc_info has already been adjusted for us. */
832 return ELF64_MIPS_R_TYPE (reloc_info);
834 case EM_SPARCV9:
835 return ELF64_R_TYPE_ID (reloc_info);
837 default:
838 return ELF64_R_TYPE (reloc_info);
842 /* Return the symbol index extracted from the reloc info field. */
844 static bfd_vma
845 get_reloc_symindex (bfd_vma reloc_info)
847 return is_32bit_elf ? ELF32_R_SYM (reloc_info) : ELF64_R_SYM (reloc_info);
850 /* Display the contents of the relocation data found at the specified
851 offset. */
853 static void
854 dump_relocations (FILE * file,
855 unsigned long rel_offset,
856 unsigned long rel_size,
857 Elf_Internal_Sym * symtab,
858 unsigned long nsyms,
859 char * strtab,
860 unsigned long strtablen,
861 int is_rela)
863 unsigned int i;
864 Elf_Internal_Rela * rels;
866 if (is_rela == UNKNOWN)
867 is_rela = guess_is_rela (elf_header.e_machine);
869 if (is_rela)
871 if (!slurp_rela_relocs (file, rel_offset, rel_size, &rels, &rel_size))
872 return;
874 else
876 if (!slurp_rel_relocs (file, rel_offset, rel_size, &rels, &rel_size))
877 return;
880 if (is_32bit_elf)
882 if (is_rela)
884 if (do_wide)
885 printf (_(" Offset Info Type Sym. Value Symbol's Name + Addend\n"));
886 else
887 printf (_(" Offset Info Type Sym.Value Sym. Name + Addend\n"));
889 else
891 if (do_wide)
892 printf (_(" Offset Info Type Sym. Value Symbol's Name\n"));
893 else
894 printf (_(" Offset Info Type Sym.Value Sym. Name\n"));
897 else
899 if (is_rela)
901 if (do_wide)
902 printf (_(" Offset Info Type Symbol's Value Symbol's Name + Addend\n"));
903 else
904 printf (_(" Offset Info Type Sym. Value Sym. Name + Addend\n"));
906 else
908 if (do_wide)
909 printf (_(" Offset Info Type Symbol's Value Symbol's Name\n"));
910 else
911 printf (_(" Offset Info Type Sym. Value Sym. Name\n"));
915 for (i = 0; i < rel_size; i++)
917 const char * rtype;
918 bfd_vma offset;
919 bfd_vma inf;
920 bfd_vma symtab_index;
921 bfd_vma type;
923 offset = rels[i].r_offset;
924 inf = rels[i].r_info;
926 type = get_reloc_type (inf);
927 symtab_index = get_reloc_symindex (inf);
929 if (is_32bit_elf)
931 printf ("%8.8lx %8.8lx ",
932 (unsigned long) offset & 0xffffffff,
933 (unsigned long) inf & 0xffffffff);
935 else
937 #if BFD_HOST_64BIT_LONG
938 printf (do_wide
939 ? "%16.16lx %16.16lx "
940 : "%12.12lx %12.12lx ",
941 offset, inf);
942 #elif BFD_HOST_64BIT_LONG_LONG
943 #ifndef __MSVCRT__
944 printf (do_wide
945 ? "%16.16llx %16.16llx "
946 : "%12.12llx %12.12llx ",
947 offset, inf);
948 #else
949 printf (do_wide
950 ? "%16.16I64x %16.16I64x "
951 : "%12.12I64x %12.12I64x ",
952 offset, inf);
953 #endif
954 #else
955 printf (do_wide
956 ? "%8.8lx%8.8lx %8.8lx%8.8lx "
957 : "%4.4lx%8.8lx %4.4lx%8.8lx ",
958 _bfd_int64_high (offset),
959 _bfd_int64_low (offset),
960 _bfd_int64_high (inf),
961 _bfd_int64_low (inf));
962 #endif
965 switch (elf_header.e_machine)
967 default:
968 rtype = NULL;
969 break;
971 case EM_M32R:
972 case EM_CYGNUS_M32R:
973 rtype = elf_m32r_reloc_type (type);
974 break;
976 case EM_386:
977 case EM_486:
978 rtype = elf_i386_reloc_type (type);
979 break;
981 case EM_68HC11:
982 case EM_68HC12:
983 rtype = elf_m68hc11_reloc_type (type);
984 break;
986 case EM_68K:
987 rtype = elf_m68k_reloc_type (type);
988 break;
990 case EM_960:
991 rtype = elf_i960_reloc_type (type);
992 break;
994 case EM_AVR:
995 case EM_AVR_OLD:
996 rtype = elf_avr_reloc_type (type);
997 break;
999 case EM_OLD_SPARCV9:
1000 case EM_SPARC32PLUS:
1001 case EM_SPARCV9:
1002 case EM_SPARC:
1003 rtype = elf_sparc_reloc_type (type);
1004 break;
1006 case EM_SPU:
1007 rtype = elf_spu_reloc_type (type);
1008 break;
1010 case EM_V850:
1011 case EM_CYGNUS_V850:
1012 rtype = v850_reloc_type (type);
1013 break;
1015 case EM_D10V:
1016 case EM_CYGNUS_D10V:
1017 rtype = elf_d10v_reloc_type (type);
1018 break;
1020 case EM_D30V:
1021 case EM_CYGNUS_D30V:
1022 rtype = elf_d30v_reloc_type (type);
1023 break;
1025 case EM_DLX:
1026 rtype = elf_dlx_reloc_type (type);
1027 break;
1029 case EM_SH:
1030 rtype = elf_sh_reloc_type (type);
1031 break;
1033 case EM_MN10300:
1034 case EM_CYGNUS_MN10300:
1035 rtype = elf_mn10300_reloc_type (type);
1036 break;
1038 case EM_MN10200:
1039 case EM_CYGNUS_MN10200:
1040 rtype = elf_mn10200_reloc_type (type);
1041 break;
1043 case EM_FR30:
1044 case EM_CYGNUS_FR30:
1045 rtype = elf_fr30_reloc_type (type);
1046 break;
1048 case EM_CYGNUS_FRV:
1049 rtype = elf_frv_reloc_type (type);
1050 break;
1052 case EM_MCORE:
1053 rtype = elf_mcore_reloc_type (type);
1054 break;
1056 case EM_MMIX:
1057 rtype = elf_mmix_reloc_type (type);
1058 break;
1060 case EM_MOXIE:
1061 rtype = elf_moxie_reloc_type (type);
1062 break;
1064 case EM_MSP430:
1065 case EM_MSP430_OLD:
1066 rtype = elf_msp430_reloc_type (type);
1067 break;
1069 case EM_PPC:
1070 rtype = elf_ppc_reloc_type (type);
1071 break;
1073 case EM_PPC64:
1074 rtype = elf_ppc64_reloc_type (type);
1075 break;
1077 case EM_MIPS:
1078 case EM_MIPS_RS3_LE:
1079 rtype = elf_mips_reloc_type (type);
1080 break;
1082 case EM_ALPHA:
1083 rtype = elf_alpha_reloc_type (type);
1084 break;
1086 case EM_ARM:
1087 rtype = elf_arm_reloc_type (type);
1088 break;
1090 case EM_ARC:
1091 rtype = elf_arc_reloc_type (type);
1092 break;
1094 case EM_PARISC:
1095 rtype = elf_hppa_reloc_type (type);
1096 break;
1098 case EM_H8_300:
1099 case EM_H8_300H:
1100 case EM_H8S:
1101 rtype = elf_h8_reloc_type (type);
1102 break;
1104 case EM_OPENRISC:
1105 case EM_OR32:
1106 rtype = elf_or32_reloc_type (type);
1107 break;
1109 case EM_PJ:
1110 case EM_PJ_OLD:
1111 rtype = elf_pj_reloc_type (type);
1112 break;
1113 case EM_IA_64:
1114 rtype = elf_ia64_reloc_type (type);
1115 break;
1117 case EM_CRIS:
1118 rtype = elf_cris_reloc_type (type);
1119 break;
1121 case EM_860:
1122 rtype = elf_i860_reloc_type (type);
1123 break;
1125 case EM_X86_64:
1126 case EM_L1OM:
1127 rtype = elf_x86_64_reloc_type (type);
1128 break;
1130 case EM_S370:
1131 rtype = i370_reloc_type (type);
1132 break;
1134 case EM_S390_OLD:
1135 case EM_S390:
1136 rtype = elf_s390_reloc_type (type);
1137 break;
1139 case EM_SCORE:
1140 rtype = elf_score_reloc_type (type);
1141 break;
1143 case EM_XSTORMY16:
1144 rtype = elf_xstormy16_reloc_type (type);
1145 break;
1147 case EM_CRX:
1148 rtype = elf_crx_reloc_type (type);
1149 break;
1151 case EM_VAX:
1152 rtype = elf_vax_reloc_type (type);
1153 break;
1155 case EM_IP2K:
1156 case EM_IP2K_OLD:
1157 rtype = elf_ip2k_reloc_type (type);
1158 break;
1160 case EM_IQ2000:
1161 rtype = elf_iq2000_reloc_type (type);
1162 break;
1164 case EM_XTENSA_OLD:
1165 case EM_XTENSA:
1166 rtype = elf_xtensa_reloc_type (type);
1167 break;
1169 case EM_LATTICEMICO32:
1170 rtype = elf_lm32_reloc_type (type);
1171 break;
1173 case EM_M32C_OLD:
1174 case EM_M32C:
1175 rtype = elf_m32c_reloc_type (type);
1176 break;
1178 case EM_MT:
1179 rtype = elf_mt_reloc_type (type);
1180 break;
1182 case EM_BLACKFIN:
1183 rtype = elf_bfin_reloc_type (type);
1184 break;
1186 case EM_CYGNUS_MEP:
1187 rtype = elf_mep_reloc_type (type);
1188 break;
1190 case EM_CR16:
1191 case EM_CR16_OLD:
1192 rtype = elf_cr16_reloc_type (type);
1193 break;
1195 case EM_MICROBLAZE:
1196 case EM_MICROBLAZE_OLD:
1197 rtype = elf_microblaze_reloc_type (type);
1198 break;
1200 case EM_RX:
1201 rtype = elf_rx_reloc_type (type);
1202 break;
1204 case EM_XC16X:
1205 case EM_C166:
1206 rtype = elf_xc16x_reloc_type (type);
1207 break;
1209 case EM_TI_C6000:
1210 rtype = elf_tic6x_reloc_type (type);
1211 break;
1214 if (rtype == NULL)
1215 printf (_("unrecognized: %-7lx"), (unsigned long) type & 0xffffffff);
1216 else
1217 printf (do_wide ? "%-22.22s" : "%-17.17s", rtype);
1219 if (elf_header.e_machine == EM_ALPHA
1220 && rtype != NULL
1221 && streq (rtype, "R_ALPHA_LITUSE")
1222 && is_rela)
1224 switch (rels[i].r_addend)
1226 case LITUSE_ALPHA_ADDR: rtype = "ADDR"; break;
1227 case LITUSE_ALPHA_BASE: rtype = "BASE"; break;
1228 case LITUSE_ALPHA_BYTOFF: rtype = "BYTOFF"; break;
1229 case LITUSE_ALPHA_JSR: rtype = "JSR"; break;
1230 case LITUSE_ALPHA_TLSGD: rtype = "TLSGD"; break;
1231 case LITUSE_ALPHA_TLSLDM: rtype = "TLSLDM"; break;
1232 case LITUSE_ALPHA_JSRDIRECT: rtype = "JSRDIRECT"; break;
1233 default: rtype = NULL;
1235 if (rtype)
1236 printf (" (%s)", rtype);
1237 else
1239 putchar (' ');
1240 printf (_("<unknown addend: %lx>"),
1241 (unsigned long) rels[i].r_addend);
1244 else if (symtab_index)
1246 if (symtab == NULL || symtab_index >= nsyms)
1247 printf (_(" bad symbol index: %08lx"), (unsigned long) symtab_index);
1248 else
1250 Elf_Internal_Sym * psym;
1252 psym = symtab + symtab_index;
1254 printf (" ");
1256 if (ELF_ST_TYPE (psym->st_info) == STT_GNU_IFUNC)
1258 const char * name;
1259 unsigned int len;
1260 unsigned int width = is_32bit_elf ? 8 : 14;
1262 /* Relocations against GNU_IFUNC symbols do not use the value
1263 of the symbol as the address to relocate against. Instead
1264 they invoke the function named by the symbol and use its
1265 result as the address for relocation.
1267 To indicate this to the user, do not display the value of
1268 the symbol in the "Symbols's Value" field. Instead show
1269 its name followed by () as a hint that the symbol is
1270 invoked. */
1272 if (strtab == NULL
1273 || psym->st_name == 0
1274 || psym->st_name >= strtablen)
1275 name = "??";
1276 else
1277 name = strtab + psym->st_name;
1279 len = print_symbol (width, name);
1280 printf ("()%-*s", len <= width ? (width + 1) - len : 1, " ");
1282 else
1284 print_vma (psym->st_value, LONG_HEX);
1286 printf (is_32bit_elf ? " " : " ");
1289 if (psym->st_name == 0)
1291 const char * sec_name = "<null>";
1292 char name_buf[40];
1294 if (ELF_ST_TYPE (psym->st_info) == STT_SECTION)
1296 if (psym->st_shndx < elf_header.e_shnum)
1297 sec_name
1298 = SECTION_NAME (section_headers + psym->st_shndx);
1299 else if (psym->st_shndx == SHN_ABS)
1300 sec_name = "ABS";
1301 else if (psym->st_shndx == SHN_COMMON)
1302 sec_name = "COMMON";
1303 else if (elf_header.e_machine == EM_MIPS
1304 && psym->st_shndx == SHN_MIPS_SCOMMON)
1305 sec_name = "SCOMMON";
1306 else if (elf_header.e_machine == EM_MIPS
1307 && psym->st_shndx == SHN_MIPS_SUNDEFINED)
1308 sec_name = "SUNDEF";
1309 else if ((elf_header.e_machine == EM_X86_64
1310 || elf_header.e_machine == EM_L1OM)
1311 && psym->st_shndx == SHN_X86_64_LCOMMON)
1312 sec_name = "LARGE_COMMON";
1313 else if (elf_header.e_machine == EM_IA_64
1314 && elf_header.e_ident[EI_OSABI] == ELFOSABI_HPUX
1315 && psym->st_shndx == SHN_IA_64_ANSI_COMMON)
1316 sec_name = "ANSI_COM";
1317 else if (is_ia64_vms ()
1318 && psym->st_shndx == SHN_IA_64_VMS_SYMVEC)
1319 sec_name = "VMS_SYMVEC";
1320 else
1322 sprintf (name_buf, "<section 0x%x>",
1323 (unsigned int) psym->st_shndx);
1324 sec_name = name_buf;
1327 print_symbol (22, sec_name);
1329 else if (strtab == NULL)
1330 printf (_("<string table index: %3ld>"), psym->st_name);
1331 else if (psym->st_name >= strtablen)
1332 printf (_("<corrupt string table index: %3ld>"), psym->st_name);
1333 else
1334 print_symbol (22, strtab + psym->st_name);
1336 if (is_rela)
1338 bfd_signed_vma off = rels[i].r_addend;
1340 if (off < 0)
1341 printf (" - %" BFD_VMA_FMT "x", - off);
1342 else
1343 printf (" + %" BFD_VMA_FMT "x", off);
1347 else if (is_rela)
1349 printf ("%*c", is_32bit_elf ?
1350 (do_wide ? 34 : 28) : (do_wide ? 26 : 20), ' ');
1351 print_vma (rels[i].r_addend, LONG_HEX);
1354 if (elf_header.e_machine == EM_SPARCV9
1355 && rtype != NULL
1356 && streq (rtype, "R_SPARC_OLO10"))
1357 printf (" + %lx", (unsigned long) ELF64_R_TYPE_DATA (inf));
1359 putchar ('\n');
1361 #ifdef BFD64
1362 if (! is_32bit_elf && elf_header.e_machine == EM_MIPS)
1364 bfd_vma type2 = ELF64_MIPS_R_TYPE2 (inf);
1365 bfd_vma type3 = ELF64_MIPS_R_TYPE3 (inf);
1366 const char * rtype2 = elf_mips_reloc_type (type2);
1367 const char * rtype3 = elf_mips_reloc_type (type3);
1369 printf (" Type2: ");
1371 if (rtype2 == NULL)
1372 printf (_("unrecognized: %-7lx"),
1373 (unsigned long) type2 & 0xffffffff);
1374 else
1375 printf ("%-17.17s", rtype2);
1377 printf ("\n Type3: ");
1379 if (rtype3 == NULL)
1380 printf (_("unrecognized: %-7lx"),
1381 (unsigned long) type3 & 0xffffffff);
1382 else
1383 printf ("%-17.17s", rtype3);
1385 putchar ('\n');
1387 #endif /* BFD64 */
1390 free (rels);
1393 static const char *
1394 get_mips_dynamic_type (unsigned long type)
1396 switch (type)
1398 case DT_MIPS_RLD_VERSION: return "MIPS_RLD_VERSION";
1399 case DT_MIPS_TIME_STAMP: return "MIPS_TIME_STAMP";
1400 case DT_MIPS_ICHECKSUM: return "MIPS_ICHECKSUM";
1401 case DT_MIPS_IVERSION: return "MIPS_IVERSION";
1402 case DT_MIPS_FLAGS: return "MIPS_FLAGS";
1403 case DT_MIPS_BASE_ADDRESS: return "MIPS_BASE_ADDRESS";
1404 case DT_MIPS_MSYM: return "MIPS_MSYM";
1405 case DT_MIPS_CONFLICT: return "MIPS_CONFLICT";
1406 case DT_MIPS_LIBLIST: return "MIPS_LIBLIST";
1407 case DT_MIPS_LOCAL_GOTNO: return "MIPS_LOCAL_GOTNO";
1408 case DT_MIPS_CONFLICTNO: return "MIPS_CONFLICTNO";
1409 case DT_MIPS_LIBLISTNO: return "MIPS_LIBLISTNO";
1410 case DT_MIPS_SYMTABNO: return "MIPS_SYMTABNO";
1411 case DT_MIPS_UNREFEXTNO: return "MIPS_UNREFEXTNO";
1412 case DT_MIPS_GOTSYM: return "MIPS_GOTSYM";
1413 case DT_MIPS_HIPAGENO: return "MIPS_HIPAGENO";
1414 case DT_MIPS_RLD_MAP: return "MIPS_RLD_MAP";
1415 case DT_MIPS_DELTA_CLASS: return "MIPS_DELTA_CLASS";
1416 case DT_MIPS_DELTA_CLASS_NO: return "MIPS_DELTA_CLASS_NO";
1417 case DT_MIPS_DELTA_INSTANCE: return "MIPS_DELTA_INSTANCE";
1418 case DT_MIPS_DELTA_INSTANCE_NO: return "MIPS_DELTA_INSTANCE_NO";
1419 case DT_MIPS_DELTA_RELOC: return "MIPS_DELTA_RELOC";
1420 case DT_MIPS_DELTA_RELOC_NO: return "MIPS_DELTA_RELOC_NO";
1421 case DT_MIPS_DELTA_SYM: return "MIPS_DELTA_SYM";
1422 case DT_MIPS_DELTA_SYM_NO: return "MIPS_DELTA_SYM_NO";
1423 case DT_MIPS_DELTA_CLASSSYM: return "MIPS_DELTA_CLASSSYM";
1424 case DT_MIPS_DELTA_CLASSSYM_NO: return "MIPS_DELTA_CLASSSYM_NO";
1425 case DT_MIPS_CXX_FLAGS: return "MIPS_CXX_FLAGS";
1426 case DT_MIPS_PIXIE_INIT: return "MIPS_PIXIE_INIT";
1427 case DT_MIPS_SYMBOL_LIB: return "MIPS_SYMBOL_LIB";
1428 case DT_MIPS_LOCALPAGE_GOTIDX: return "MIPS_LOCALPAGE_GOTIDX";
1429 case DT_MIPS_LOCAL_GOTIDX: return "MIPS_LOCAL_GOTIDX";
1430 case DT_MIPS_HIDDEN_GOTIDX: return "MIPS_HIDDEN_GOTIDX";
1431 case DT_MIPS_PROTECTED_GOTIDX: return "MIPS_PROTECTED_GOTIDX";
1432 case DT_MIPS_OPTIONS: return "MIPS_OPTIONS";
1433 case DT_MIPS_INTERFACE: return "MIPS_INTERFACE";
1434 case DT_MIPS_DYNSTR_ALIGN: return "MIPS_DYNSTR_ALIGN";
1435 case DT_MIPS_INTERFACE_SIZE: return "MIPS_INTERFACE_SIZE";
1436 case DT_MIPS_RLD_TEXT_RESOLVE_ADDR: return "MIPS_RLD_TEXT_RESOLVE_ADDR";
1437 case DT_MIPS_PERF_SUFFIX: return "MIPS_PERF_SUFFIX";
1438 case DT_MIPS_COMPACT_SIZE: return "MIPS_COMPACT_SIZE";
1439 case DT_MIPS_GP_VALUE: return "MIPS_GP_VALUE";
1440 case DT_MIPS_AUX_DYNAMIC: return "MIPS_AUX_DYNAMIC";
1441 case DT_MIPS_PLTGOT: return "MIPS_PLTGOT";
1442 case DT_MIPS_RWPLT: return "MIPS_RWPLT";
1443 default:
1444 return NULL;
1448 static const char *
1449 get_sparc64_dynamic_type (unsigned long type)
1451 switch (type)
1453 case DT_SPARC_REGISTER: return "SPARC_REGISTER";
1454 default:
1455 return NULL;
1459 static const char *
1460 get_ppc_dynamic_type (unsigned long type)
1462 switch (type)
1464 case DT_PPC_GOT: return "PPC_GOT";
1465 case DT_PPC_TLSOPT: return "PPC_TLSOPT";
1466 default:
1467 return NULL;
1471 static const char *
1472 get_ppc64_dynamic_type (unsigned long type)
1474 switch (type)
1476 case DT_PPC64_GLINK: return "PPC64_GLINK";
1477 case DT_PPC64_OPD: return "PPC64_OPD";
1478 case DT_PPC64_OPDSZ: return "PPC64_OPDSZ";
1479 case DT_PPC64_TLSOPT: return "PPC64_TLSOPT";
1480 default:
1481 return NULL;
1485 static const char *
1486 get_parisc_dynamic_type (unsigned long type)
1488 switch (type)
1490 case DT_HP_LOAD_MAP: return "HP_LOAD_MAP";
1491 case DT_HP_DLD_FLAGS: return "HP_DLD_FLAGS";
1492 case DT_HP_DLD_HOOK: return "HP_DLD_HOOK";
1493 case DT_HP_UX10_INIT: return "HP_UX10_INIT";
1494 case DT_HP_UX10_INITSZ: return "HP_UX10_INITSZ";
1495 case DT_HP_PREINIT: return "HP_PREINIT";
1496 case DT_HP_PREINITSZ: return "HP_PREINITSZ";
1497 case DT_HP_NEEDED: return "HP_NEEDED";
1498 case DT_HP_TIME_STAMP: return "HP_TIME_STAMP";
1499 case DT_HP_CHECKSUM: return "HP_CHECKSUM";
1500 case DT_HP_GST_SIZE: return "HP_GST_SIZE";
1501 case DT_HP_GST_VERSION: return "HP_GST_VERSION";
1502 case DT_HP_GST_HASHVAL: return "HP_GST_HASHVAL";
1503 case DT_HP_EPLTREL: return "HP_GST_EPLTREL";
1504 case DT_HP_EPLTRELSZ: return "HP_GST_EPLTRELSZ";
1505 case DT_HP_FILTERED: return "HP_FILTERED";
1506 case DT_HP_FILTER_TLS: return "HP_FILTER_TLS";
1507 case DT_HP_COMPAT_FILTERED: return "HP_COMPAT_FILTERED";
1508 case DT_HP_LAZYLOAD: return "HP_LAZYLOAD";
1509 case DT_HP_BIND_NOW_COUNT: return "HP_BIND_NOW_COUNT";
1510 case DT_PLT: return "PLT";
1511 case DT_PLT_SIZE: return "PLT_SIZE";
1512 case DT_DLT: return "DLT";
1513 case DT_DLT_SIZE: return "DLT_SIZE";
1514 default:
1515 return NULL;
1519 static const char *
1520 get_ia64_dynamic_type (unsigned long type)
1522 switch (type)
1524 case DT_IA_64_PLT_RESERVE: return "IA_64_PLT_RESERVE";
1525 case DT_IA_64_VMS_SUBTYPE: return "VMS_SUBTYPE";
1526 case DT_IA_64_VMS_IMGIOCNT: return "VMS_IMGIOCNT";
1527 case DT_IA_64_VMS_LNKFLAGS: return "VMS_LNKFLAGS";
1528 case DT_IA_64_VMS_VIR_MEM_BLK_SIZ: return "VMS_VIR_MEM_BLK_SIZ";
1529 case DT_IA_64_VMS_IDENT: return "VMS_IDENT";
1530 case DT_IA_64_VMS_NEEDED_IDENT: return "VMS_NEEDED_IDENT";
1531 case DT_IA_64_VMS_IMG_RELA_CNT: return "VMS_IMG_RELA_CNT";
1532 case DT_IA_64_VMS_SEG_RELA_CNT: return "VMS_SEG_RELA_CNT";
1533 case DT_IA_64_VMS_FIXUP_RELA_CNT: return "VMS_FIXUP_RELA_CNT";
1534 case DT_IA_64_VMS_FIXUP_NEEDED: return "VMS_FIXUP_NEEDED";
1535 case DT_IA_64_VMS_SYMVEC_CNT: return "VMS_SYMVEC_CNT";
1536 case DT_IA_64_VMS_XLATED: return "VMS_XLATED";
1537 case DT_IA_64_VMS_STACKSIZE: return "VMS_STACKSIZE";
1538 case DT_IA_64_VMS_UNWINDSZ: return "VMS_UNWINDSZ";
1539 case DT_IA_64_VMS_UNWIND_CODSEG: return "VMS_UNWIND_CODSEG";
1540 case DT_IA_64_VMS_UNWIND_INFOSEG: return "VMS_UNWIND_INFOSEG";
1541 case DT_IA_64_VMS_LINKTIME: return "VMS_LINKTIME";
1542 case DT_IA_64_VMS_SEG_NO: return "VMS_SEG_NO";
1543 case DT_IA_64_VMS_SYMVEC_OFFSET: return "VMS_SYMVEC_OFFSET";
1544 case DT_IA_64_VMS_SYMVEC_SEG: return "VMS_SYMVEC_SEG";
1545 case DT_IA_64_VMS_UNWIND_OFFSET: return "VMS_UNWIND_OFFSET";
1546 case DT_IA_64_VMS_UNWIND_SEG: return "VMS_UNWIND_SEG";
1547 case DT_IA_64_VMS_STRTAB_OFFSET: return "VMS_STRTAB_OFFSET";
1548 case DT_IA_64_VMS_SYSVER_OFFSET: return "VMS_SYSVER_OFFSET";
1549 case DT_IA_64_VMS_IMG_RELA_OFF: return "VMS_IMG_RELA_OFF";
1550 case DT_IA_64_VMS_SEG_RELA_OFF: return "VMS_SEG_RELA_OFF";
1551 case DT_IA_64_VMS_FIXUP_RELA_OFF: return "VMS_FIXUP_RELA_OFF";
1552 case DT_IA_64_VMS_PLTGOT_OFFSET: return "VMS_PLTGOT_OFFSET";
1553 case DT_IA_64_VMS_PLTGOT_SEG: return "VMS_PLTGOT_SEG";
1554 case DT_IA_64_VMS_FPMODE: return "VMS_FPMODE";
1555 default:
1556 return NULL;
1560 static const char *
1561 get_alpha_dynamic_type (unsigned long type)
1563 switch (type)
1565 case DT_ALPHA_PLTRO: return "ALPHA_PLTRO";
1566 default:
1567 return NULL;
1571 static const char *
1572 get_score_dynamic_type (unsigned long type)
1574 switch (type)
1576 case DT_SCORE_BASE_ADDRESS: return "SCORE_BASE_ADDRESS";
1577 case DT_SCORE_LOCAL_GOTNO: return "SCORE_LOCAL_GOTNO";
1578 case DT_SCORE_SYMTABNO: return "SCORE_SYMTABNO";
1579 case DT_SCORE_GOTSYM: return "SCORE_GOTSYM";
1580 case DT_SCORE_UNREFEXTNO: return "SCORE_UNREFEXTNO";
1581 case DT_SCORE_HIPAGENO: return "SCORE_HIPAGENO";
1582 default:
1583 return NULL;
1587 static const char *
1588 get_tic6x_dynamic_type (unsigned long type)
1590 switch (type)
1592 case DT_C6000_GSYM_OFFSET: return "C6000_GSYM_OFFSET";
1593 case DT_C6000_GSTR_OFFSET: return "C6000_GSTR_OFFSET";
1594 case DT_C6000_DSBT_BASE: return "C6000_DSBT_BASE";
1595 case DT_C6000_DSBT_SIZE: return "C6000_DSBT_SIZE";
1596 case DT_C6000_PREEMPTMAP: return "C6000_PREEMPTMAP";
1597 case DT_C6000_DSBT_INDEX: return "C6000_DSBT_INDEX";
1598 default:
1599 return NULL;
1603 static const char *
1604 get_dynamic_type (unsigned long type)
1606 static char buff[64];
1608 switch (type)
1610 case DT_NULL: return "NULL";
1611 case DT_NEEDED: return "NEEDED";
1612 case DT_PLTRELSZ: return "PLTRELSZ";
1613 case DT_PLTGOT: return "PLTGOT";
1614 case DT_HASH: return "HASH";
1615 case DT_STRTAB: return "STRTAB";
1616 case DT_SYMTAB: return "SYMTAB";
1617 case DT_RELA: return "RELA";
1618 case DT_RELASZ: return "RELASZ";
1619 case DT_RELAENT: return "RELAENT";
1620 case DT_STRSZ: return "STRSZ";
1621 case DT_SYMENT: return "SYMENT";
1622 case DT_INIT: return "INIT";
1623 case DT_FINI: return "FINI";
1624 case DT_SONAME: return "SONAME";
1625 case DT_RPATH: return "RPATH";
1626 case DT_SYMBOLIC: return "SYMBOLIC";
1627 case DT_REL: return "REL";
1628 case DT_RELSZ: return "RELSZ";
1629 case DT_RELENT: return "RELENT";
1630 case DT_PLTREL: return "PLTREL";
1631 case DT_DEBUG: return "DEBUG";
1632 case DT_TEXTREL: return "TEXTREL";
1633 case DT_JMPREL: return "JMPREL";
1634 case DT_BIND_NOW: return "BIND_NOW";
1635 case DT_INIT_ARRAY: return "INIT_ARRAY";
1636 case DT_FINI_ARRAY: return "FINI_ARRAY";
1637 case DT_INIT_ARRAYSZ: return "INIT_ARRAYSZ";
1638 case DT_FINI_ARRAYSZ: return "FINI_ARRAYSZ";
1639 case DT_RUNPATH: return "RUNPATH";
1640 case DT_FLAGS: return "FLAGS";
1642 case DT_PREINIT_ARRAY: return "PREINIT_ARRAY";
1643 case DT_PREINIT_ARRAYSZ: return "PREINIT_ARRAYSZ";
1645 case DT_CHECKSUM: return "CHECKSUM";
1646 case DT_PLTPADSZ: return "PLTPADSZ";
1647 case DT_MOVEENT: return "MOVEENT";
1648 case DT_MOVESZ: return "MOVESZ";
1649 case DT_FEATURE: return "FEATURE";
1650 case DT_POSFLAG_1: return "POSFLAG_1";
1651 case DT_SYMINSZ: return "SYMINSZ";
1652 case DT_SYMINENT: return "SYMINENT"; /* aka VALRNGHI */
1654 case DT_ADDRRNGLO: return "ADDRRNGLO";
1655 case DT_CONFIG: return "CONFIG";
1656 case DT_DEPAUDIT: return "DEPAUDIT";
1657 case DT_AUDIT: return "AUDIT";
1658 case DT_PLTPAD: return "PLTPAD";
1659 case DT_MOVETAB: return "MOVETAB";
1660 case DT_SYMINFO: return "SYMINFO"; /* aka ADDRRNGHI */
1662 case DT_VERSYM: return "VERSYM";
1664 case DT_TLSDESC_GOT: return "TLSDESC_GOT";
1665 case DT_TLSDESC_PLT: return "TLSDESC_PLT";
1666 case DT_RELACOUNT: return "RELACOUNT";
1667 case DT_RELCOUNT: return "RELCOUNT";
1668 case DT_FLAGS_1: return "FLAGS_1";
1669 case DT_VERDEF: return "VERDEF";
1670 case DT_VERDEFNUM: return "VERDEFNUM";
1671 case DT_VERNEED: return "VERNEED";
1672 case DT_VERNEEDNUM: return "VERNEEDNUM";
1674 case DT_AUXILIARY: return "AUXILIARY";
1675 case DT_USED: return "USED";
1676 case DT_FILTER: return "FILTER";
1678 case DT_GNU_PRELINKED: return "GNU_PRELINKED";
1679 case DT_GNU_CONFLICT: return "GNU_CONFLICT";
1680 case DT_GNU_CONFLICTSZ: return "GNU_CONFLICTSZ";
1681 case DT_GNU_LIBLIST: return "GNU_LIBLIST";
1682 case DT_GNU_LIBLISTSZ: return "GNU_LIBLISTSZ";
1683 case DT_GNU_HASH: return "GNU_HASH";
1685 default:
1686 if ((type >= DT_LOPROC) && (type <= DT_HIPROC))
1688 const char * result;
1690 switch (elf_header.e_machine)
1692 case EM_MIPS:
1693 case EM_MIPS_RS3_LE:
1694 result = get_mips_dynamic_type (type);
1695 break;
1696 case EM_SPARCV9:
1697 result = get_sparc64_dynamic_type (type);
1698 break;
1699 case EM_PPC:
1700 result = get_ppc_dynamic_type (type);
1701 break;
1702 case EM_PPC64:
1703 result = get_ppc64_dynamic_type (type);
1704 break;
1705 case EM_IA_64:
1706 result = get_ia64_dynamic_type (type);
1707 break;
1708 case EM_ALPHA:
1709 result = get_alpha_dynamic_type (type);
1710 break;
1711 case EM_SCORE:
1712 result = get_score_dynamic_type (type);
1713 break;
1714 case EM_TI_C6000:
1715 result = get_tic6x_dynamic_type (type);
1716 break;
1717 default:
1718 result = NULL;
1719 break;
1722 if (result != NULL)
1723 return result;
1725 snprintf (buff, sizeof (buff), _("Processor Specific: %lx"), type);
1727 else if (((type >= DT_LOOS) && (type <= DT_HIOS))
1728 || (elf_header.e_machine == EM_PARISC
1729 && (type >= OLD_DT_LOOS) && (type <= OLD_DT_HIOS)))
1731 const char * result;
1733 switch (elf_header.e_machine)
1735 case EM_PARISC:
1736 result = get_parisc_dynamic_type (type);
1737 break;
1738 case EM_IA_64:
1739 result = get_ia64_dynamic_type (type);
1740 break;
1741 default:
1742 result = NULL;
1743 break;
1746 if (result != NULL)
1747 return result;
1749 snprintf (buff, sizeof (buff), _("Operating System specific: %lx"),
1750 type);
1752 else
1753 snprintf (buff, sizeof (buff), _("<unknown>: %lx"), type);
1755 return buff;
1759 static char *
1760 get_file_type (unsigned e_type)
1762 static char buff[32];
1764 switch (e_type)
1766 case ET_NONE: return _("NONE (None)");
1767 case ET_REL: return _("REL (Relocatable file)");
1768 case ET_EXEC: return _("EXEC (Executable file)");
1769 case ET_DYN: return _("DYN (Shared object file)");
1770 case ET_CORE: return _("CORE (Core file)");
1772 default:
1773 if ((e_type >= ET_LOPROC) && (e_type <= ET_HIPROC))
1774 snprintf (buff, sizeof (buff), _("Processor Specific: (%x)"), e_type);
1775 else if ((e_type >= ET_LOOS) && (e_type <= ET_HIOS))
1776 snprintf (buff, sizeof (buff), _("OS Specific: (%x)"), e_type);
1777 else
1778 snprintf (buff, sizeof (buff), _("<unknown>: %x"), e_type);
1779 return buff;
1783 static char *
1784 get_machine_name (unsigned e_machine)
1786 static char buff[64]; /* XXX */
1788 switch (e_machine)
1790 case EM_NONE: return _("None");
1791 case EM_M32: return "WE32100";
1792 case EM_SPARC: return "Sparc";
1793 case EM_SPU: return "SPU";
1794 case EM_386: return "Intel 80386";
1795 case EM_68K: return "MC68000";
1796 case EM_88K: return "MC88000";
1797 case EM_486: return "Intel 80486";
1798 case EM_860: return "Intel 80860";
1799 case EM_MIPS: return "MIPS R3000";
1800 case EM_S370: return "IBM System/370";
1801 case EM_MIPS_RS3_LE: return "MIPS R4000 big-endian";
1802 case EM_OLD_SPARCV9: return "Sparc v9 (old)";
1803 case EM_PARISC: return "HPPA";
1804 case EM_PPC_OLD: return "Power PC (old)";
1805 case EM_SPARC32PLUS: return "Sparc v8+" ;
1806 case EM_960: return "Intel 90860";
1807 case EM_PPC: return "PowerPC";
1808 case EM_PPC64: return "PowerPC64";
1809 case EM_V800: return "NEC V800";
1810 case EM_FR20: return "Fujitsu FR20";
1811 case EM_RH32: return "TRW RH32";
1812 case EM_MCORE: return "MCORE";
1813 case EM_ARM: return "ARM";
1814 case EM_OLD_ALPHA: return "Digital Alpha (old)";
1815 case EM_SH: return "Renesas / SuperH SH";
1816 case EM_SPARCV9: return "Sparc v9";
1817 case EM_TRICORE: return "Siemens Tricore";
1818 case EM_ARC: return "ARC";
1819 case EM_H8_300: return "Renesas H8/300";
1820 case EM_H8_300H: return "Renesas H8/300H";
1821 case EM_H8S: return "Renesas H8S";
1822 case EM_H8_500: return "Renesas H8/500";
1823 case EM_IA_64: return "Intel IA-64";
1824 case EM_MIPS_X: return "Stanford MIPS-X";
1825 case EM_COLDFIRE: return "Motorola Coldfire";
1826 case EM_68HC12: return "Motorola M68HC12";
1827 case EM_ALPHA: return "Alpha";
1828 case EM_CYGNUS_D10V:
1829 case EM_D10V: return "d10v";
1830 case EM_CYGNUS_D30V:
1831 case EM_D30V: return "d30v";
1832 case EM_CYGNUS_M32R:
1833 case EM_M32R: return "Renesas M32R (formerly Mitsubishi M32r)";
1834 case EM_CYGNUS_V850:
1835 case EM_V850: return "NEC v850";
1836 case EM_CYGNUS_MN10300:
1837 case EM_MN10300: return "mn10300";
1838 case EM_CYGNUS_MN10200:
1839 case EM_MN10200: return "mn10200";
1840 case EM_MOXIE: return "Moxie";
1841 case EM_CYGNUS_FR30:
1842 case EM_FR30: return "Fujitsu FR30";
1843 case EM_CYGNUS_FRV: return "Fujitsu FR-V";
1844 case EM_PJ_OLD:
1845 case EM_PJ: return "picoJava";
1846 case EM_MMA: return "Fujitsu Multimedia Accelerator";
1847 case EM_PCP: return "Siemens PCP";
1848 case EM_NCPU: return "Sony nCPU embedded RISC processor";
1849 case EM_NDR1: return "Denso NDR1 microprocesspr";
1850 case EM_STARCORE: return "Motorola Star*Core processor";
1851 case EM_ME16: return "Toyota ME16 processor";
1852 case EM_ST100: return "STMicroelectronics ST100 processor";
1853 case EM_TINYJ: return "Advanced Logic Corp. TinyJ embedded processor";
1854 case EM_PDSP: return "Sony DSP processor";
1855 case EM_PDP10: return "Digital Equipment Corp. PDP-10";
1856 case EM_PDP11: return "Digital Equipment Corp. PDP-11";
1857 case EM_FX66: return "Siemens FX66 microcontroller";
1858 case EM_ST9PLUS: return "STMicroelectronics ST9+ 8/16 bit microcontroller";
1859 case EM_ST7: return "STMicroelectronics ST7 8-bit microcontroller";
1860 case EM_68HC16: return "Motorola MC68HC16 Microcontroller";
1861 case EM_68HC11: return "Motorola MC68HC11 Microcontroller";
1862 case EM_68HC08: return "Motorola MC68HC08 Microcontroller";
1863 case EM_68HC05: return "Motorola MC68HC05 Microcontroller";
1864 case EM_SVX: return "Silicon Graphics SVx";
1865 case EM_ST19: return "STMicroelectronics ST19 8-bit microcontroller";
1866 case EM_VAX: return "Digital VAX";
1867 case EM_AVR_OLD:
1868 case EM_AVR: return "Atmel AVR 8-bit microcontroller";
1869 case EM_CRIS: return "Axis Communications 32-bit embedded processor";
1870 case EM_JAVELIN: return "Infineon Technologies 32-bit embedded cpu";
1871 case EM_FIREPATH: return "Element 14 64-bit DSP processor";
1872 case EM_ZSP: return "LSI Logic's 16-bit DSP processor";
1873 case EM_MMIX: return "Donald Knuth's educational 64-bit processor";
1874 case EM_HUANY: return "Harvard Universitys's machine-independent object format";
1875 case EM_PRISM: return "Vitesse Prism";
1876 case EM_X86_64: return "Advanced Micro Devices X86-64";
1877 case EM_L1OM: return "Intel L1OM";
1878 case EM_S390_OLD:
1879 case EM_S390: return "IBM S/390";
1880 case EM_SCORE: return "SUNPLUS S+Core";
1881 case EM_XSTORMY16: return "Sanyo Xstormy16 CPU core";
1882 case EM_OPENRISC:
1883 case EM_OR32: return "OpenRISC";
1884 case EM_ARC_A5: return "ARC International ARCompact processor";
1885 case EM_CRX: return "National Semiconductor CRX microprocessor";
1886 case EM_DLX: return "OpenDLX";
1887 case EM_IP2K_OLD:
1888 case EM_IP2K: return "Ubicom IP2xxx 8-bit microcontrollers";
1889 case EM_IQ2000: return "Vitesse IQ2000";
1890 case EM_XTENSA_OLD:
1891 case EM_XTENSA: return "Tensilica Xtensa Processor";
1892 case EM_VIDEOCORE: return "Alphamosaic VideoCore processor";
1893 case EM_TMM_GPP: return "Thompson Multimedia General Purpose Processor";
1894 case EM_NS32K: return "National Semiconductor 32000 series";
1895 case EM_TPC: return "Tenor Network TPC processor";
1896 case EM_ST200: return "STMicroelectronics ST200 microcontroller";
1897 case EM_MAX: return "MAX Processor";
1898 case EM_CR: return "National Semiconductor CompactRISC";
1899 case EM_F2MC16: return "Fujitsu F2MC16";
1900 case EM_MSP430: return "Texas Instruments msp430 microcontroller";
1901 case EM_LATTICEMICO32: return "Lattice Mico32";
1902 case EM_M32C_OLD:
1903 case EM_M32C: return "Renesas M32c";
1904 case EM_MT: return "Morpho Techologies MT processor";
1905 case EM_BLACKFIN: return "Analog Devices Blackfin";
1906 case EM_SE_C33: return "S1C33 Family of Seiko Epson processors";
1907 case EM_SEP: return "Sharp embedded microprocessor";
1908 case EM_ARCA: return "Arca RISC microprocessor";
1909 case EM_UNICORE: return "Unicore";
1910 case EM_EXCESS: return "eXcess 16/32/64-bit configurable embedded CPU";
1911 case EM_DXP: return "Icera Semiconductor Inc. Deep Execution Processor";
1912 case EM_NIOS32: return "Altera Nios";
1913 case EM_ALTERA_NIOS2: return "Altera Nios II";
1914 case EM_C166:
1915 case EM_XC16X: return "Infineon Technologies xc16x";
1916 case EM_M16C: return "Renesas M16C series microprocessors";
1917 case EM_DSPIC30F: return "Microchip Technology dsPIC30F Digital Signal Controller";
1918 case EM_CE: return "Freescale Communication Engine RISC core";
1919 case EM_TSK3000: return "Altium TSK3000 core";
1920 case EM_RS08: return "Freescale RS08 embedded processor";
1921 case EM_ECOG2: return "Cyan Technology eCOG2 microprocessor";
1922 case EM_DSP24: return "New Japan Radio (NJR) 24-bit DSP Processor";
1923 case EM_VIDEOCORE3: return "Broadcom VideoCore III processor";
1924 case EM_SE_C17: return "Seiko Epson C17 family";
1925 case EM_TI_C6000: return "Texas Instruments TMS320C6000 DSP family";
1926 case EM_TI_C2000: return "Texas Instruments TMS320C2000 DSP family";
1927 case EM_TI_C5500: return "Texas Instruments TMS320C55x DSP family";
1928 case EM_MMDSP_PLUS: return "STMicroelectronics 64bit VLIW Data Signal Processor";
1929 case EM_CYPRESS_M8C: return "Cypress M8C microprocessor";
1930 case EM_R32C: return "Renesas R32C series microprocessors";
1931 case EM_TRIMEDIA: return "NXP Semiconductors TriMedia architecture family";
1932 case EM_QDSP6: return "QUALCOMM DSP6 Processor";
1933 case EM_8051: return "Intel 8051 and variants";
1934 case EM_STXP7X: return "STMicroelectronics STxP7x family";
1935 case EM_NDS32: return "Andes Technology compact code size embedded RISC processor family";
1936 case EM_ECOG1X: return "Cyan Technology eCOG1X family";
1937 case EM_MAXQ30: return "Dallas Semiconductor MAXQ30 Core microcontrollers";
1938 case EM_XIMO16: return "New Japan Radio (NJR) 16-bit DSP Processor";
1939 case EM_MANIK: return "M2000 Reconfigurable RISC Microprocessor";
1940 case EM_CRAYNV2: return "Cray Inc. NV2 vector architecture";
1941 case EM_CYGNUS_MEP: return "Toshiba MeP Media Engine";
1942 case EM_CR16:
1943 case EM_CR16_OLD: return "National Semiconductor's CR16";
1944 case EM_MICROBLAZE: return "Xilinx MicroBlaze";
1945 case EM_MICROBLAZE_OLD: return "Xilinx MicroBlaze";
1946 case EM_RX: return "Renesas RX";
1947 case EM_METAG: return "Imagination Technologies META processor architecture";
1948 case EM_MCST_ELBRUS: return "MCST Elbrus general purpose hardware architecture";
1949 case EM_ECOG16: return "Cyan Technology eCOG16 family";
1950 case EM_ETPU: return "Freescale Extended Time Processing Unit";
1951 case EM_SLE9X: return "Infineon Technologies SLE9X core";
1952 case EM_AVR32: return "Atmel Corporation 32-bit microprocessor family";
1953 case EM_STM8: return "STMicroeletronics STM8 8-bit microcontroller";
1954 case EM_TILE64: return "Tilera TILE64 multicore architecture family";
1955 case EM_TILEPRO: return "Tilera TILEPro multicore architecture family";
1956 case EM_CUDA: return "NVIDIA CUDA architecture";
1957 default:
1958 snprintf (buff, sizeof (buff), _("<unknown>: 0x%x"), e_machine);
1959 return buff;
1963 static void
1964 decode_ARM_machine_flags (unsigned e_flags, char buf[])
1966 unsigned eabi;
1967 int unknown = 0;
1969 eabi = EF_ARM_EABI_VERSION (e_flags);
1970 e_flags &= ~ EF_ARM_EABIMASK;
1972 /* Handle "generic" ARM flags. */
1973 if (e_flags & EF_ARM_RELEXEC)
1975 strcat (buf, ", relocatable executable");
1976 e_flags &= ~ EF_ARM_RELEXEC;
1979 if (e_flags & EF_ARM_HASENTRY)
1981 strcat (buf, ", has entry point");
1982 e_flags &= ~ EF_ARM_HASENTRY;
1985 /* Now handle EABI specific flags. */
1986 switch (eabi)
1988 default:
1989 strcat (buf, ", <unrecognized EABI>");
1990 if (e_flags)
1991 unknown = 1;
1992 break;
1994 case EF_ARM_EABI_VER1:
1995 strcat (buf, ", Version1 EABI");
1996 while (e_flags)
1998 unsigned flag;
2000 /* Process flags one bit at a time. */
2001 flag = e_flags & - e_flags;
2002 e_flags &= ~ flag;
2004 switch (flag)
2006 case EF_ARM_SYMSARESORTED: /* Conflicts with EF_ARM_INTERWORK. */
2007 strcat (buf, ", sorted symbol tables");
2008 break;
2010 default:
2011 unknown = 1;
2012 break;
2015 break;
2017 case EF_ARM_EABI_VER2:
2018 strcat (buf, ", Version2 EABI");
2019 while (e_flags)
2021 unsigned flag;
2023 /* Process flags one bit at a time. */
2024 flag = e_flags & - e_flags;
2025 e_flags &= ~ flag;
2027 switch (flag)
2029 case EF_ARM_SYMSARESORTED: /* Conflicts with EF_ARM_INTERWORK. */
2030 strcat (buf, ", sorted symbol tables");
2031 break;
2033 case EF_ARM_DYNSYMSUSESEGIDX:
2034 strcat (buf, ", dynamic symbols use segment index");
2035 break;
2037 case EF_ARM_MAPSYMSFIRST:
2038 strcat (buf, ", mapping symbols precede others");
2039 break;
2041 default:
2042 unknown = 1;
2043 break;
2046 break;
2048 case EF_ARM_EABI_VER3:
2049 strcat (buf, ", Version3 EABI");
2050 break;
2052 case EF_ARM_EABI_VER4:
2053 strcat (buf, ", Version4 EABI");
2054 goto eabi;
2056 case EF_ARM_EABI_VER5:
2057 strcat (buf, ", Version5 EABI");
2058 eabi:
2059 while (e_flags)
2061 unsigned flag;
2063 /* Process flags one bit at a time. */
2064 flag = e_flags & - e_flags;
2065 e_flags &= ~ flag;
2067 switch (flag)
2069 case EF_ARM_BE8:
2070 strcat (buf, ", BE8");
2071 break;
2073 case EF_ARM_LE8:
2074 strcat (buf, ", LE8");
2075 break;
2077 default:
2078 unknown = 1;
2079 break;
2082 break;
2084 case EF_ARM_EABI_UNKNOWN:
2085 strcat (buf, ", GNU EABI");
2086 while (e_flags)
2088 unsigned flag;
2090 /* Process flags one bit at a time. */
2091 flag = e_flags & - e_flags;
2092 e_flags &= ~ flag;
2094 switch (flag)
2096 case EF_ARM_INTERWORK:
2097 strcat (buf, ", interworking enabled");
2098 break;
2100 case EF_ARM_APCS_26:
2101 strcat (buf, ", uses APCS/26");
2102 break;
2104 case EF_ARM_APCS_FLOAT:
2105 strcat (buf, ", uses APCS/float");
2106 break;
2108 case EF_ARM_PIC:
2109 strcat (buf, ", position independent");
2110 break;
2112 case EF_ARM_ALIGN8:
2113 strcat (buf, ", 8 bit structure alignment");
2114 break;
2116 case EF_ARM_NEW_ABI:
2117 strcat (buf, ", uses new ABI");
2118 break;
2120 case EF_ARM_OLD_ABI:
2121 strcat (buf, ", uses old ABI");
2122 break;
2124 case EF_ARM_SOFT_FLOAT:
2125 strcat (buf, ", software FP");
2126 break;
2128 case EF_ARM_VFP_FLOAT:
2129 strcat (buf, ", VFP");
2130 break;
2132 case EF_ARM_MAVERICK_FLOAT:
2133 strcat (buf, ", Maverick FP");
2134 break;
2136 default:
2137 unknown = 1;
2138 break;
2143 if (unknown)
2144 strcat (buf,_(", <unknown>"));
2147 static char *
2148 get_machine_flags (unsigned e_flags, unsigned e_machine)
2150 static char buf[1024];
2152 buf[0] = '\0';
2154 if (e_flags)
2156 switch (e_machine)
2158 default:
2159 break;
2161 case EM_ARM:
2162 decode_ARM_machine_flags (e_flags, buf);
2163 break;
2165 case EM_BLACKFIN:
2166 if (e_flags & EF_BFIN_PIC)
2167 strcat (buf, ", PIC");
2169 if (e_flags & EF_BFIN_FDPIC)
2170 strcat (buf, ", FDPIC");
2172 if (e_flags & EF_BFIN_CODE_IN_L1)
2173 strcat (buf, ", code in L1");
2175 if (e_flags & EF_BFIN_DATA_IN_L1)
2176 strcat (buf, ", data in L1");
2178 break;
2180 case EM_CYGNUS_FRV:
2181 switch (e_flags & EF_FRV_CPU_MASK)
2183 case EF_FRV_CPU_GENERIC:
2184 break;
2186 default:
2187 strcat (buf, ", fr???");
2188 break;
2190 case EF_FRV_CPU_FR300:
2191 strcat (buf, ", fr300");
2192 break;
2194 case EF_FRV_CPU_FR400:
2195 strcat (buf, ", fr400");
2196 break;
2197 case EF_FRV_CPU_FR405:
2198 strcat (buf, ", fr405");
2199 break;
2201 case EF_FRV_CPU_FR450:
2202 strcat (buf, ", fr450");
2203 break;
2205 case EF_FRV_CPU_FR500:
2206 strcat (buf, ", fr500");
2207 break;
2208 case EF_FRV_CPU_FR550:
2209 strcat (buf, ", fr550");
2210 break;
2212 case EF_FRV_CPU_SIMPLE:
2213 strcat (buf, ", simple");
2214 break;
2215 case EF_FRV_CPU_TOMCAT:
2216 strcat (buf, ", tomcat");
2217 break;
2219 break;
2221 case EM_68K:
2222 if ((e_flags & EF_M68K_ARCH_MASK) == EF_M68K_M68000)
2223 strcat (buf, ", m68000");
2224 else if ((e_flags & EF_M68K_ARCH_MASK) == EF_M68K_CPU32)
2225 strcat (buf, ", cpu32");
2226 else if ((e_flags & EF_M68K_ARCH_MASK) == EF_M68K_FIDO)
2227 strcat (buf, ", fido_a");
2228 else
2230 char const * isa = _("unknown");
2231 char const * mac = _("unknown mac");
2232 char const * additional = NULL;
2234 switch (e_flags & EF_M68K_CF_ISA_MASK)
2236 case EF_M68K_CF_ISA_A_NODIV:
2237 isa = "A";
2238 additional = ", nodiv";
2239 break;
2240 case EF_M68K_CF_ISA_A:
2241 isa = "A";
2242 break;
2243 case EF_M68K_CF_ISA_A_PLUS:
2244 isa = "A+";
2245 break;
2246 case EF_M68K_CF_ISA_B_NOUSP:
2247 isa = "B";
2248 additional = ", nousp";
2249 break;
2250 case EF_M68K_CF_ISA_B:
2251 isa = "B";
2252 break;
2253 case EF_M68K_CF_ISA_C:
2254 isa = "C";
2255 break;
2256 case EF_M68K_CF_ISA_C_NODIV:
2257 isa = "C";
2258 additional = ", nodiv";
2259 break;
2261 strcat (buf, ", cf, isa ");
2262 strcat (buf, isa);
2263 if (additional)
2264 strcat (buf, additional);
2265 if (e_flags & EF_M68K_CF_FLOAT)
2266 strcat (buf, ", float");
2267 switch (e_flags & EF_M68K_CF_MAC_MASK)
2269 case 0:
2270 mac = NULL;
2271 break;
2272 case EF_M68K_CF_MAC:
2273 mac = "mac";
2274 break;
2275 case EF_M68K_CF_EMAC:
2276 mac = "emac";
2277 break;
2278 case EF_M68K_CF_EMAC_B:
2279 mac = "emac_b";
2280 break;
2282 if (mac)
2284 strcat (buf, ", ");
2285 strcat (buf, mac);
2288 break;
2290 case EM_PPC:
2291 if (e_flags & EF_PPC_EMB)
2292 strcat (buf, ", emb");
2294 if (e_flags & EF_PPC_RELOCATABLE)
2295 strcat (buf, _(", relocatable"));
2297 if (e_flags & EF_PPC_RELOCATABLE_LIB)
2298 strcat (buf, _(", relocatable-lib"));
2299 break;
2301 case EM_V850:
2302 case EM_CYGNUS_V850:
2303 switch (e_flags & EF_V850_ARCH)
2305 case E_V850E2V3_ARCH:
2306 strcat (buf, ", v850e2v3");
2307 break;
2308 case E_V850E2_ARCH:
2309 strcat (buf, ", v850e2");
2310 break;
2311 case E_V850E1_ARCH:
2312 strcat (buf, ", v850e1");
2313 break;
2314 case E_V850E_ARCH:
2315 strcat (buf, ", v850e");
2316 break;
2317 case E_V850_ARCH:
2318 strcat (buf, ", v850");
2319 break;
2320 default:
2321 strcat (buf, _(", unknown v850 architecture variant"));
2322 break;
2324 break;
2326 case EM_M32R:
2327 case EM_CYGNUS_M32R:
2328 if ((e_flags & EF_M32R_ARCH) == E_M32R_ARCH)
2329 strcat (buf, ", m32r");
2330 break;
2332 case EM_MIPS:
2333 case EM_MIPS_RS3_LE:
2334 if (e_flags & EF_MIPS_NOREORDER)
2335 strcat (buf, ", noreorder");
2337 if (e_flags & EF_MIPS_PIC)
2338 strcat (buf, ", pic");
2340 if (e_flags & EF_MIPS_CPIC)
2341 strcat (buf, ", cpic");
2343 if (e_flags & EF_MIPS_UCODE)
2344 strcat (buf, ", ugen_reserved");
2346 if (e_flags & EF_MIPS_ABI2)
2347 strcat (buf, ", abi2");
2349 if (e_flags & EF_MIPS_OPTIONS_FIRST)
2350 strcat (buf, ", odk first");
2352 if (e_flags & EF_MIPS_32BITMODE)
2353 strcat (buf, ", 32bitmode");
2355 switch ((e_flags & EF_MIPS_MACH))
2357 case E_MIPS_MACH_3900: strcat (buf, ", 3900"); break;
2358 case E_MIPS_MACH_4010: strcat (buf, ", 4010"); break;
2359 case E_MIPS_MACH_4100: strcat (buf, ", 4100"); break;
2360 case E_MIPS_MACH_4111: strcat (buf, ", 4111"); break;
2361 case E_MIPS_MACH_4120: strcat (buf, ", 4120"); break;
2362 case E_MIPS_MACH_4650: strcat (buf, ", 4650"); break;
2363 case E_MIPS_MACH_5400: strcat (buf, ", 5400"); break;
2364 case E_MIPS_MACH_5500: strcat (buf, ", 5500"); break;
2365 case E_MIPS_MACH_SB1: strcat (buf, ", sb1"); break;
2366 case E_MIPS_MACH_9000: strcat (buf, ", 9000"); break;
2367 case E_MIPS_MACH_LS2E: strcat (buf, ", loongson-2e"); break;
2368 case E_MIPS_MACH_LS2F: strcat (buf, ", loongson-2f"); break;
2369 case E_MIPS_MACH_LS3A: strcat (buf, ", loongson-3a"); break;
2370 case E_MIPS_MACH_OCTEON: strcat (buf, ", octeon"); break;
2371 case E_MIPS_MACH_OCTEON2: strcat (buf, ", octeon2"); break;
2372 case E_MIPS_MACH_XLR: strcat (buf, ", xlr"); break;
2373 case 0:
2374 /* We simply ignore the field in this case to avoid confusion:
2375 MIPS ELF does not specify EF_MIPS_MACH, it is a GNU
2376 extension. */
2377 break;
2378 default: strcat (buf, _(", unknown CPU")); break;
2381 switch ((e_flags & EF_MIPS_ABI))
2383 case E_MIPS_ABI_O32: strcat (buf, ", o32"); break;
2384 case E_MIPS_ABI_O64: strcat (buf, ", o64"); break;
2385 case E_MIPS_ABI_EABI32: strcat (buf, ", eabi32"); break;
2386 case E_MIPS_ABI_EABI64: strcat (buf, ", eabi64"); break;
2387 case 0:
2388 /* We simply ignore the field in this case to avoid confusion:
2389 MIPS ELF does not specify EF_MIPS_ABI, it is a GNU extension.
2390 This means it is likely to be an o32 file, but not for
2391 sure. */
2392 break;
2393 default: strcat (buf, _(", unknown ABI")); break;
2396 if (e_flags & EF_MIPS_ARCH_ASE_MDMX)
2397 strcat (buf, ", mdmx");
2399 if (e_flags & EF_MIPS_ARCH_ASE_M16)
2400 strcat (buf, ", mips16");
2402 switch ((e_flags & EF_MIPS_ARCH))
2404 case E_MIPS_ARCH_1: strcat (buf, ", mips1"); break;
2405 case E_MIPS_ARCH_2: strcat (buf, ", mips2"); break;
2406 case E_MIPS_ARCH_3: strcat (buf, ", mips3"); break;
2407 case E_MIPS_ARCH_4: strcat (buf, ", mips4"); break;
2408 case E_MIPS_ARCH_5: strcat (buf, ", mips5"); break;
2409 case E_MIPS_ARCH_32: strcat (buf, ", mips32"); break;
2410 case E_MIPS_ARCH_32R2: strcat (buf, ", mips32r2"); break;
2411 case E_MIPS_ARCH_64: strcat (buf, ", mips64"); break;
2412 case E_MIPS_ARCH_64R2: strcat (buf, ", mips64r2"); break;
2413 default: strcat (buf, _(", unknown ISA")); break;
2416 if (e_flags & EF_SH_PIC)
2417 strcat (buf, ", pic");
2419 if (e_flags & EF_SH_FDPIC)
2420 strcat (buf, ", fdpic");
2421 break;
2423 case EM_SH:
2424 switch ((e_flags & EF_SH_MACH_MASK))
2426 case EF_SH1: strcat (buf, ", sh1"); break;
2427 case EF_SH2: strcat (buf, ", sh2"); break;
2428 case EF_SH3: strcat (buf, ", sh3"); break;
2429 case EF_SH_DSP: strcat (buf, ", sh-dsp"); break;
2430 case EF_SH3_DSP: strcat (buf, ", sh3-dsp"); break;
2431 case EF_SH4AL_DSP: strcat (buf, ", sh4al-dsp"); break;
2432 case EF_SH3E: strcat (buf, ", sh3e"); break;
2433 case EF_SH4: strcat (buf, ", sh4"); break;
2434 case EF_SH5: strcat (buf, ", sh5"); break;
2435 case EF_SH2E: strcat (buf, ", sh2e"); break;
2436 case EF_SH4A: strcat (buf, ", sh4a"); break;
2437 case EF_SH2A: strcat (buf, ", sh2a"); break;
2438 case EF_SH4_NOFPU: strcat (buf, ", sh4-nofpu"); break;
2439 case EF_SH4A_NOFPU: strcat (buf, ", sh4a-nofpu"); break;
2440 case EF_SH2A_NOFPU: strcat (buf, ", sh2a-nofpu"); break;
2441 case EF_SH3_NOMMU: strcat (buf, ", sh3-nommu"); break;
2442 case EF_SH4_NOMMU_NOFPU: strcat (buf, ", sh4-nommu-nofpu"); break;
2443 case EF_SH2A_SH4_NOFPU: strcat (buf, ", sh2a-nofpu-or-sh4-nommu-nofpu"); break;
2444 case EF_SH2A_SH3_NOFPU: strcat (buf, ", sh2a-nofpu-or-sh3-nommu"); break;
2445 case EF_SH2A_SH4: strcat (buf, ", sh2a-or-sh4"); break;
2446 case EF_SH2A_SH3E: strcat (buf, ", sh2a-or-sh3e"); break;
2447 default: strcat (buf, _(", unknown ISA")); break;
2450 break;
2452 case EM_SPARCV9:
2453 if (e_flags & EF_SPARC_32PLUS)
2454 strcat (buf, ", v8+");
2456 if (e_flags & EF_SPARC_SUN_US1)
2457 strcat (buf, ", ultrasparcI");
2459 if (e_flags & EF_SPARC_SUN_US3)
2460 strcat (buf, ", ultrasparcIII");
2462 if (e_flags & EF_SPARC_HAL_R1)
2463 strcat (buf, ", halr1");
2465 if (e_flags & EF_SPARC_LEDATA)
2466 strcat (buf, ", ledata");
2468 if ((e_flags & EF_SPARCV9_MM) == EF_SPARCV9_TSO)
2469 strcat (buf, ", tso");
2471 if ((e_flags & EF_SPARCV9_MM) == EF_SPARCV9_PSO)
2472 strcat (buf, ", pso");
2474 if ((e_flags & EF_SPARCV9_MM) == EF_SPARCV9_RMO)
2475 strcat (buf, ", rmo");
2476 break;
2478 case EM_PARISC:
2479 switch (e_flags & EF_PARISC_ARCH)
2481 case EFA_PARISC_1_0:
2482 strcpy (buf, ", PA-RISC 1.0");
2483 break;
2484 case EFA_PARISC_1_1:
2485 strcpy (buf, ", PA-RISC 1.1");
2486 break;
2487 case EFA_PARISC_2_0:
2488 strcpy (buf, ", PA-RISC 2.0");
2489 break;
2490 default:
2491 break;
2493 if (e_flags & EF_PARISC_TRAPNIL)
2494 strcat (buf, ", trapnil");
2495 if (e_flags & EF_PARISC_EXT)
2496 strcat (buf, ", ext");
2497 if (e_flags & EF_PARISC_LSB)
2498 strcat (buf, ", lsb");
2499 if (e_flags & EF_PARISC_WIDE)
2500 strcat (buf, ", wide");
2501 if (e_flags & EF_PARISC_NO_KABP)
2502 strcat (buf, ", no kabp");
2503 if (e_flags & EF_PARISC_LAZYSWAP)
2504 strcat (buf, ", lazyswap");
2505 break;
2507 case EM_PJ:
2508 case EM_PJ_OLD:
2509 if ((e_flags & EF_PICOJAVA_NEWCALLS) == EF_PICOJAVA_NEWCALLS)
2510 strcat (buf, ", new calling convention");
2512 if ((e_flags & EF_PICOJAVA_GNUCALLS) == EF_PICOJAVA_GNUCALLS)
2513 strcat (buf, ", gnu calling convention");
2514 break;
2516 case EM_IA_64:
2517 if ((e_flags & EF_IA_64_ABI64))
2518 strcat (buf, ", 64-bit");
2519 else
2520 strcat (buf, ", 32-bit");
2521 if ((e_flags & EF_IA_64_REDUCEDFP))
2522 strcat (buf, ", reduced fp model");
2523 if ((e_flags & EF_IA_64_NOFUNCDESC_CONS_GP))
2524 strcat (buf, ", no function descriptors, constant gp");
2525 else if ((e_flags & EF_IA_64_CONS_GP))
2526 strcat (buf, ", constant gp");
2527 if ((e_flags & EF_IA_64_ABSOLUTE))
2528 strcat (buf, ", absolute");
2529 if (elf_header.e_ident[EI_OSABI] == ELFOSABI_OPENVMS)
2531 if ((e_flags & EF_IA_64_VMS_LINKAGES))
2532 strcat (buf, ", vms_linkages");
2533 switch ((e_flags & EF_IA_64_VMS_COMCOD))
2535 case EF_IA_64_VMS_COMCOD_SUCCESS:
2536 break;
2537 case EF_IA_64_VMS_COMCOD_WARNING:
2538 strcat (buf, ", warning");
2539 break;
2540 case EF_IA_64_VMS_COMCOD_ERROR:
2541 strcat (buf, ", error");
2542 break;
2543 case EF_IA_64_VMS_COMCOD_ABORT:
2544 strcat (buf, ", abort");
2545 break;
2546 default:
2547 abort ();
2550 break;
2552 case EM_VAX:
2553 if ((e_flags & EF_VAX_NONPIC))
2554 strcat (buf, ", non-PIC");
2555 if ((e_flags & EF_VAX_DFLOAT))
2556 strcat (buf, ", D-Float");
2557 if ((e_flags & EF_VAX_GFLOAT))
2558 strcat (buf, ", G-Float");
2559 break;
2561 case EM_RX:
2562 if (e_flags & E_FLAG_RX_64BIT_DOUBLES)
2563 strcat (buf, ", 64-bit doubles");
2564 if (e_flags & E_FLAG_RX_DSP)
2565 strcat (buf, ", dsp");
2567 case EM_S390:
2568 if (e_flags & EF_S390_HIGH_GPRS)
2569 strcat (buf, ", highgprs");
2571 case EM_TI_C6000:
2572 if ((e_flags & EF_C6000_REL))
2573 strcat (buf, ", relocatable module");
2577 return buf;
2580 static const char *
2581 get_osabi_name (unsigned int osabi)
2583 static char buff[32];
2585 switch (osabi)
2587 case ELFOSABI_NONE: return "UNIX - System V";
2588 case ELFOSABI_HPUX: return "UNIX - HP-UX";
2589 case ELFOSABI_NETBSD: return "UNIX - NetBSD";
2590 case ELFOSABI_LINUX: return "UNIX - Linux";
2591 case ELFOSABI_HURD: return "GNU/Hurd";
2592 case ELFOSABI_SOLARIS: return "UNIX - Solaris";
2593 case ELFOSABI_AIX: return "UNIX - AIX";
2594 case ELFOSABI_IRIX: return "UNIX - IRIX";
2595 case ELFOSABI_FREEBSD: return "UNIX - FreeBSD";
2596 case ELFOSABI_TRU64: return "UNIX - TRU64";
2597 case ELFOSABI_MODESTO: return "Novell - Modesto";
2598 case ELFOSABI_OPENBSD: return "UNIX - OpenBSD";
2599 case ELFOSABI_OPENVMS: return "VMS - OpenVMS";
2600 case ELFOSABI_NSK: return "HP - Non-Stop Kernel";
2601 case ELFOSABI_AROS: return "AROS";
2602 case ELFOSABI_FENIXOS: return "FenixOS";
2603 default:
2604 if (osabi >= 64)
2605 switch (elf_header.e_machine)
2607 case EM_ARM:
2608 switch (osabi)
2610 case ELFOSABI_ARM: return "ARM";
2611 default:
2612 break;
2614 break;
2616 case EM_MSP430:
2617 case EM_MSP430_OLD:
2618 switch (osabi)
2620 case ELFOSABI_STANDALONE: return _("Standalone App");
2621 default:
2622 break;
2624 break;
2626 case EM_TI_C6000:
2627 switch (osabi)
2629 case ELFOSABI_C6000_ELFABI: return _("Bare-metal C6000");
2630 case ELFOSABI_C6000_LINUX: return "Linux C6000";
2631 default:
2632 break;
2634 break;
2636 default:
2637 break;
2639 snprintf (buff, sizeof (buff), _("<unknown: %x>"), osabi);
2640 return buff;
2644 static const char *
2645 get_arm_segment_type (unsigned long type)
2647 switch (type)
2649 case PT_ARM_EXIDX:
2650 return "EXIDX";
2651 default:
2652 break;
2655 return NULL;
2658 static const char *
2659 get_mips_segment_type (unsigned long type)
2661 switch (type)
2663 case PT_MIPS_REGINFO:
2664 return "REGINFO";
2665 case PT_MIPS_RTPROC:
2666 return "RTPROC";
2667 case PT_MIPS_OPTIONS:
2668 return "OPTIONS";
2669 default:
2670 break;
2673 return NULL;
2676 static const char *
2677 get_parisc_segment_type (unsigned long type)
2679 switch (type)
2681 case PT_HP_TLS: return "HP_TLS";
2682 case PT_HP_CORE_NONE: return "HP_CORE_NONE";
2683 case PT_HP_CORE_VERSION: return "HP_CORE_VERSION";
2684 case PT_HP_CORE_KERNEL: return "HP_CORE_KERNEL";
2685 case PT_HP_CORE_COMM: return "HP_CORE_COMM";
2686 case PT_HP_CORE_PROC: return "HP_CORE_PROC";
2687 case PT_HP_CORE_LOADABLE: return "HP_CORE_LOADABLE";
2688 case PT_HP_CORE_STACK: return "HP_CORE_STACK";
2689 case PT_HP_CORE_SHM: return "HP_CORE_SHM";
2690 case PT_HP_CORE_MMF: return "HP_CORE_MMF";
2691 case PT_HP_PARALLEL: return "HP_PARALLEL";
2692 case PT_HP_FASTBIND: return "HP_FASTBIND";
2693 case PT_HP_OPT_ANNOT: return "HP_OPT_ANNOT";
2694 case PT_HP_HSL_ANNOT: return "HP_HSL_ANNOT";
2695 case PT_HP_STACK: return "HP_STACK";
2696 case PT_HP_CORE_UTSNAME: return "HP_CORE_UTSNAME";
2697 case PT_PARISC_ARCHEXT: return "PARISC_ARCHEXT";
2698 case PT_PARISC_UNWIND: return "PARISC_UNWIND";
2699 case PT_PARISC_WEAKORDER: return "PARISC_WEAKORDER";
2700 default:
2701 break;
2704 return NULL;
2707 static const char *
2708 get_ia64_segment_type (unsigned long type)
2710 switch (type)
2712 case PT_IA_64_ARCHEXT: return "IA_64_ARCHEXT";
2713 case PT_IA_64_UNWIND: return "IA_64_UNWIND";
2714 case PT_HP_TLS: return "HP_TLS";
2715 case PT_IA_64_HP_OPT_ANOT: return "HP_OPT_ANNOT";
2716 case PT_IA_64_HP_HSL_ANOT: return "HP_HSL_ANNOT";
2717 case PT_IA_64_HP_STACK: return "HP_STACK";
2718 default:
2719 break;
2722 return NULL;
2725 static const char *
2726 get_tic6x_segment_type (unsigned long type)
2728 switch (type)
2730 case PT_C6000_PHATTR: return "C6000_PHATTR";
2731 default:
2732 break;
2735 return NULL;
2738 static const char *
2739 get_segment_type (unsigned long p_type)
2741 static char buff[32];
2743 switch (p_type)
2745 case PT_NULL: return "NULL";
2746 case PT_LOAD: return "LOAD";
2747 case PT_DYNAMIC: return "DYNAMIC";
2748 case PT_INTERP: return "INTERP";
2749 case PT_NOTE: return "NOTE";
2750 case PT_SHLIB: return "SHLIB";
2751 case PT_PHDR: return "PHDR";
2752 case PT_TLS: return "TLS";
2754 case PT_GNU_EH_FRAME:
2755 return "GNU_EH_FRAME";
2756 case PT_GNU_STACK: return "GNU_STACK";
2757 case PT_GNU_RELRO: return "GNU_RELRO";
2759 default:
2760 if ((p_type >= PT_LOPROC) && (p_type <= PT_HIPROC))
2762 const char * result;
2764 switch (elf_header.e_machine)
2766 case EM_ARM:
2767 result = get_arm_segment_type (p_type);
2768 break;
2769 case EM_MIPS:
2770 case EM_MIPS_RS3_LE:
2771 result = get_mips_segment_type (p_type);
2772 break;
2773 case EM_PARISC:
2774 result = get_parisc_segment_type (p_type);
2775 break;
2776 case EM_IA_64:
2777 result = get_ia64_segment_type (p_type);
2778 break;
2779 case EM_TI_C6000:
2780 result = get_tic6x_segment_type (p_type);
2781 break;
2782 default:
2783 result = NULL;
2784 break;
2787 if (result != NULL)
2788 return result;
2790 sprintf (buff, "LOPROC+%lx", p_type - PT_LOPROC);
2792 else if ((p_type >= PT_LOOS) && (p_type <= PT_HIOS))
2794 const char * result;
2796 switch (elf_header.e_machine)
2798 case EM_PARISC:
2799 result = get_parisc_segment_type (p_type);
2800 break;
2801 case EM_IA_64:
2802 result = get_ia64_segment_type (p_type);
2803 break;
2804 default:
2805 result = NULL;
2806 break;
2809 if (result != NULL)
2810 return result;
2812 sprintf (buff, "LOOS+%lx", p_type - PT_LOOS);
2814 else
2815 snprintf (buff, sizeof (buff), _("<unknown>: %lx"), p_type);
2817 return buff;
2821 static const char *
2822 get_mips_section_type_name (unsigned int sh_type)
2824 switch (sh_type)
2826 case SHT_MIPS_LIBLIST: return "MIPS_LIBLIST";
2827 case SHT_MIPS_MSYM: return "MIPS_MSYM";
2828 case SHT_MIPS_CONFLICT: return "MIPS_CONFLICT";
2829 case SHT_MIPS_GPTAB: return "MIPS_GPTAB";
2830 case SHT_MIPS_UCODE: return "MIPS_UCODE";
2831 case SHT_MIPS_DEBUG: return "MIPS_DEBUG";
2832 case SHT_MIPS_REGINFO: return "MIPS_REGINFO";
2833 case SHT_MIPS_PACKAGE: return "MIPS_PACKAGE";
2834 case SHT_MIPS_PACKSYM: return "MIPS_PACKSYM";
2835 case SHT_MIPS_RELD: return "MIPS_RELD";
2836 case SHT_MIPS_IFACE: return "MIPS_IFACE";
2837 case SHT_MIPS_CONTENT: return "MIPS_CONTENT";
2838 case SHT_MIPS_OPTIONS: return "MIPS_OPTIONS";
2839 case SHT_MIPS_SHDR: return "MIPS_SHDR";
2840 case SHT_MIPS_FDESC: return "MIPS_FDESC";
2841 case SHT_MIPS_EXTSYM: return "MIPS_EXTSYM";
2842 case SHT_MIPS_DENSE: return "MIPS_DENSE";
2843 case SHT_MIPS_PDESC: return "MIPS_PDESC";
2844 case SHT_MIPS_LOCSYM: return "MIPS_LOCSYM";
2845 case SHT_MIPS_AUXSYM: return "MIPS_AUXSYM";
2846 case SHT_MIPS_OPTSYM: return "MIPS_OPTSYM";
2847 case SHT_MIPS_LOCSTR: return "MIPS_LOCSTR";
2848 case SHT_MIPS_LINE: return "MIPS_LINE";
2849 case SHT_MIPS_RFDESC: return "MIPS_RFDESC";
2850 case SHT_MIPS_DELTASYM: return "MIPS_DELTASYM";
2851 case SHT_MIPS_DELTAINST: return "MIPS_DELTAINST";
2852 case SHT_MIPS_DELTACLASS: return "MIPS_DELTACLASS";
2853 case SHT_MIPS_DWARF: return "MIPS_DWARF";
2854 case SHT_MIPS_DELTADECL: return "MIPS_DELTADECL";
2855 case SHT_MIPS_SYMBOL_LIB: return "MIPS_SYMBOL_LIB";
2856 case SHT_MIPS_EVENTS: return "MIPS_EVENTS";
2857 case SHT_MIPS_TRANSLATE: return "MIPS_TRANSLATE";
2858 case SHT_MIPS_PIXIE: return "MIPS_PIXIE";
2859 case SHT_MIPS_XLATE: return "MIPS_XLATE";
2860 case SHT_MIPS_XLATE_DEBUG: return "MIPS_XLATE_DEBUG";
2861 case SHT_MIPS_WHIRL: return "MIPS_WHIRL";
2862 case SHT_MIPS_EH_REGION: return "MIPS_EH_REGION";
2863 case SHT_MIPS_XLATE_OLD: return "MIPS_XLATE_OLD";
2864 case SHT_MIPS_PDR_EXCEPTION: return "MIPS_PDR_EXCEPTION";
2865 default:
2866 break;
2868 return NULL;
2871 static const char *
2872 get_parisc_section_type_name (unsigned int sh_type)
2874 switch (sh_type)
2876 case SHT_PARISC_EXT: return "PARISC_EXT";
2877 case SHT_PARISC_UNWIND: return "PARISC_UNWIND";
2878 case SHT_PARISC_DOC: return "PARISC_DOC";
2879 case SHT_PARISC_ANNOT: return "PARISC_ANNOT";
2880 case SHT_PARISC_SYMEXTN: return "PARISC_SYMEXTN";
2881 case SHT_PARISC_STUBS: return "PARISC_STUBS";
2882 case SHT_PARISC_DLKM: return "PARISC_DLKM";
2883 default:
2884 break;
2886 return NULL;
2889 static const char *
2890 get_ia64_section_type_name (unsigned int sh_type)
2892 /* If the top 8 bits are 0x78 the next 8 are the os/abi ID. */
2893 if ((sh_type & 0xFF000000) == SHT_IA_64_LOPSREG)
2894 return get_osabi_name ((sh_type & 0x00FF0000) >> 16);
2896 switch (sh_type)
2898 case SHT_IA_64_EXT: return "IA_64_EXT";
2899 case SHT_IA_64_UNWIND: return "IA_64_UNWIND";
2900 case SHT_IA_64_PRIORITY_INIT: return "IA_64_PRIORITY_INIT";
2901 case SHT_IA_64_VMS_TRACE: return "VMS_TRACE";
2902 case SHT_IA_64_VMS_TIE_SIGNATURES: return "VMS_TIE_SIGNATURES";
2903 case SHT_IA_64_VMS_DEBUG: return "VMS_DEBUG";
2904 case SHT_IA_64_VMS_DEBUG_STR: return "VMS_DEBUG_STR";
2905 case SHT_IA_64_VMS_LINKAGES: return "VMS_LINKAGES";
2906 case SHT_IA_64_VMS_SYMBOL_VECTOR: return "VMS_SYMBOL_VECTOR";
2907 case SHT_IA_64_VMS_FIXUP: return "VMS_FIXUP";
2908 default:
2909 break;
2911 return NULL;
2914 static const char *
2915 get_x86_64_section_type_name (unsigned int sh_type)
2917 switch (sh_type)
2919 case SHT_X86_64_UNWIND: return "X86_64_UNWIND";
2920 default:
2921 break;
2923 return NULL;
2926 static const char *
2927 get_arm_section_type_name (unsigned int sh_type)
2929 switch (sh_type)
2931 case SHT_ARM_EXIDX: return "ARM_EXIDX";
2932 case SHT_ARM_PREEMPTMAP: return "ARM_PREEMPTMAP";
2933 case SHT_ARM_ATTRIBUTES: return "ARM_ATTRIBUTES";
2934 case SHT_ARM_DEBUGOVERLAY: return "ARM_DEBUGOVERLAY";
2935 case SHT_ARM_OVERLAYSECTION: return "ARM_OVERLAYSECTION";
2936 default:
2937 break;
2939 return NULL;
2942 static const char *
2943 get_tic6x_section_type_name (unsigned int sh_type)
2945 switch (sh_type)
2947 case SHT_C6000_UNWIND:
2948 return "C6000_UNWIND";
2949 case SHT_C6000_PREEMPTMAP:
2950 return "C6000_PREEMPTMAP";
2951 case SHT_C6000_ATTRIBUTES:
2952 return "C6000_ATTRIBUTES";
2953 case SHT_TI_ICODE:
2954 return "TI_ICODE";
2955 case SHT_TI_XREF:
2956 return "TI_XREF";
2957 case SHT_TI_HANDLER:
2958 return "TI_HANDLER";
2959 case SHT_TI_INITINFO:
2960 return "TI_INITINFO";
2961 case SHT_TI_PHATTRS:
2962 return "TI_PHATTRS";
2963 default:
2964 break;
2966 return NULL;
2969 static const char *
2970 get_section_type_name (unsigned int sh_type)
2972 static char buff[32];
2974 switch (sh_type)
2976 case SHT_NULL: return "NULL";
2977 case SHT_PROGBITS: return "PROGBITS";
2978 case SHT_SYMTAB: return "SYMTAB";
2979 case SHT_STRTAB: return "STRTAB";
2980 case SHT_RELA: return "RELA";
2981 case SHT_HASH: return "HASH";
2982 case SHT_DYNAMIC: return "DYNAMIC";
2983 case SHT_NOTE: return "NOTE";
2984 case SHT_NOBITS: return "NOBITS";
2985 case SHT_REL: return "REL";
2986 case SHT_SHLIB: return "SHLIB";
2987 case SHT_DYNSYM: return "DYNSYM";
2988 case SHT_INIT_ARRAY: return "INIT_ARRAY";
2989 case SHT_FINI_ARRAY: return "FINI_ARRAY";
2990 case SHT_PREINIT_ARRAY: return "PREINIT_ARRAY";
2991 case SHT_GNU_HASH: return "GNU_HASH";
2992 case SHT_GROUP: return "GROUP";
2993 case SHT_SYMTAB_SHNDX: return "SYMTAB SECTION INDICIES";
2994 case SHT_GNU_verdef: return "VERDEF";
2995 case SHT_GNU_verneed: return "VERNEED";
2996 case SHT_GNU_versym: return "VERSYM";
2997 case 0x6ffffff0: return "VERSYM";
2998 case 0x6ffffffc: return "VERDEF";
2999 case 0x7ffffffd: return "AUXILIARY";
3000 case 0x7fffffff: return "FILTER";
3001 case SHT_GNU_LIBLIST: return "GNU_LIBLIST";
3003 default:
3004 if ((sh_type >= SHT_LOPROC) && (sh_type <= SHT_HIPROC))
3006 const char * result;
3008 switch (elf_header.e_machine)
3010 case EM_MIPS:
3011 case EM_MIPS_RS3_LE:
3012 result = get_mips_section_type_name (sh_type);
3013 break;
3014 case EM_PARISC:
3015 result = get_parisc_section_type_name (sh_type);
3016 break;
3017 case EM_IA_64:
3018 result = get_ia64_section_type_name (sh_type);
3019 break;
3020 case EM_X86_64:
3021 case EM_L1OM:
3022 result = get_x86_64_section_type_name (sh_type);
3023 break;
3024 case EM_ARM:
3025 result = get_arm_section_type_name (sh_type);
3026 break;
3027 case EM_TI_C6000:
3028 result = get_tic6x_section_type_name (sh_type);
3029 break;
3030 default:
3031 result = NULL;
3032 break;
3035 if (result != NULL)
3036 return result;
3038 sprintf (buff, "LOPROC+%x", sh_type - SHT_LOPROC);
3040 else if ((sh_type >= SHT_LOOS) && (sh_type <= SHT_HIOS))
3042 const char * result;
3044 switch (elf_header.e_machine)
3046 case EM_IA_64:
3047 result = get_ia64_section_type_name (sh_type);
3048 break;
3049 default:
3050 result = NULL;
3051 break;
3054 if (result != NULL)
3055 return result;
3057 sprintf (buff, "LOOS+%x", sh_type - SHT_LOOS);
3059 else if ((sh_type >= SHT_LOUSER) && (sh_type <= SHT_HIUSER))
3060 sprintf (buff, "LOUSER+%x", sh_type - SHT_LOUSER);
3061 else
3062 snprintf (buff, sizeof (buff), _("<unknown>: %x"), sh_type);
3064 return buff;
3068 #define OPTION_DEBUG_DUMP 512
3069 #define OPTION_DYN_SYMS 513
3071 static struct option options[] =
3073 {"all", no_argument, 0, 'a'},
3074 {"file-header", no_argument, 0, 'h'},
3075 {"program-headers", no_argument, 0, 'l'},
3076 {"headers", no_argument, 0, 'e'},
3077 {"histogram", no_argument, 0, 'I'},
3078 {"segments", no_argument, 0, 'l'},
3079 {"sections", no_argument, 0, 'S'},
3080 {"section-headers", no_argument, 0, 'S'},
3081 {"section-groups", no_argument, 0, 'g'},
3082 {"section-details", no_argument, 0, 't'},
3083 {"full-section-name",no_argument, 0, 'N'},
3084 {"symbols", no_argument, 0, 's'},
3085 {"syms", no_argument, 0, 's'},
3086 {"dyn-syms", no_argument, 0, OPTION_DYN_SYMS},
3087 {"relocs", no_argument, 0, 'r'},
3088 {"notes", no_argument, 0, 'n'},
3089 {"dynamic", no_argument, 0, 'd'},
3090 {"arch-specific", no_argument, 0, 'A'},
3091 {"version-info", no_argument, 0, 'V'},
3092 {"use-dynamic", no_argument, 0, 'D'},
3093 {"unwind", no_argument, 0, 'u'},
3094 {"archive-index", no_argument, 0, 'c'},
3095 {"hex-dump", required_argument, 0, 'x'},
3096 {"relocated-dump", required_argument, 0, 'R'},
3097 {"string-dump", required_argument, 0, 'p'},
3098 #ifdef SUPPORT_DISASSEMBLY
3099 {"instruction-dump", required_argument, 0, 'i'},
3100 #endif
3101 {"debug-dump", optional_argument, 0, OPTION_DEBUG_DUMP},
3103 {"version", no_argument, 0, 'v'},
3104 {"wide", no_argument, 0, 'W'},
3105 {"help", no_argument, 0, 'H'},
3106 {0, no_argument, 0, 0}
3109 static void
3110 usage (FILE * stream)
3112 fprintf (stream, _("Usage: readelf <option(s)> elf-file(s)\n"));
3113 fprintf (stream, _(" Display information about the contents of ELF format files\n"));
3114 fprintf (stream, _(" Options are:\n\
3115 -a --all Equivalent to: -h -l -S -s -r -d -V -A -I\n\
3116 -h --file-header Display the ELF file header\n\
3117 -l --program-headers Display the program headers\n\
3118 --segments An alias for --program-headers\n\
3119 -S --section-headers Display the sections' header\n\
3120 --sections An alias for --section-headers\n\
3121 -g --section-groups Display the section groups\n\
3122 -t --section-details Display the section details\n\
3123 -e --headers Equivalent to: -h -l -S\n\
3124 -s --syms Display the symbol table\n\
3125 --symbols An alias for --syms\n\
3126 --dyn-syms Display the dynamic symbol table\n\
3127 -n --notes Display the core notes (if present)\n\
3128 -r --relocs Display the relocations (if present)\n\
3129 -u --unwind Display the unwind info (if present)\n\
3130 -d --dynamic Display the dynamic section (if present)\n\
3131 -V --version-info Display the version sections (if present)\n\
3132 -A --arch-specific Display architecture specific information (if any).\n\
3133 -c --archive-index Display the symbol/file index in an archive\n\
3134 -D --use-dynamic Use the dynamic section info when displaying symbols\n\
3135 -x --hex-dump=<number|name>\n\
3136 Dump the contents of section <number|name> as bytes\n\
3137 -p --string-dump=<number|name>\n\
3138 Dump the contents of section <number|name> as strings\n\
3139 -R --relocated-dump=<number|name>\n\
3140 Dump the contents of section <number|name> as relocated bytes\n\
3141 -w[lLiaprmfFsoRt] or\n\
3142 --debug-dump[=rawline,=decodedline,=info,=abbrev,=pubnames,=aranges,=macro,=frames,\n\
3143 =frames-interp,=str,=loc,=Ranges,=pubtypes,\n\
3144 =trace_info,=trace_abbrev,=trace_aranges]\n\
3145 Display the contents of DWARF2 debug sections\n"));
3146 #ifdef SUPPORT_DISASSEMBLY
3147 fprintf (stream, _("\
3148 -i --instruction-dump=<number|name>\n\
3149 Disassemble the contents of section <number|name>\n"));
3150 #endif
3151 fprintf (stream, _("\
3152 -I --histogram Display histogram of bucket list lengths\n\
3153 -W --wide Allow output width to exceed 80 characters\n\
3154 @<file> Read options from <file>\n\
3155 -H --help Display this information\n\
3156 -v --version Display the version number of readelf\n"));
3158 if (REPORT_BUGS_TO[0] && stream == stdout)
3159 fprintf (stdout, _("Report bugs to %s\n"), REPORT_BUGS_TO);
3161 exit (stream == stdout ? 0 : 1);
3164 /* Record the fact that the user wants the contents of section number
3165 SECTION to be displayed using the method(s) encoded as flags bits
3166 in TYPE. Note, TYPE can be zero if we are creating the array for
3167 the first time. */
3169 static void
3170 request_dump_bynumber (unsigned int section, dump_type type)
3172 if (section >= num_dump_sects)
3174 dump_type * new_dump_sects;
3176 new_dump_sects = (dump_type *) calloc (section + 1,
3177 sizeof (* dump_sects));
3179 if (new_dump_sects == NULL)
3180 error (_("Out of memory allocating dump request table.\n"));
3181 else
3183 /* Copy current flag settings. */
3184 memcpy (new_dump_sects, dump_sects, num_dump_sects * sizeof (* dump_sects));
3186 free (dump_sects);
3188 dump_sects = new_dump_sects;
3189 num_dump_sects = section + 1;
3193 if (dump_sects)
3194 dump_sects[section] |= type;
3196 return;
3199 /* Request a dump by section name. */
3201 static void
3202 request_dump_byname (const char * section, dump_type type)
3204 struct dump_list_entry * new_request;
3206 new_request = (struct dump_list_entry *)
3207 malloc (sizeof (struct dump_list_entry));
3208 if (!new_request)
3209 error (_("Out of memory allocating dump request table.\n"));
3211 new_request->name = strdup (section);
3212 if (!new_request->name)
3213 error (_("Out of memory allocating dump request table.\n"));
3215 new_request->type = type;
3217 new_request->next = dump_sects_byname;
3218 dump_sects_byname = new_request;
3221 static inline void
3222 request_dump (dump_type type)
3224 int section;
3225 char * cp;
3227 do_dump++;
3228 section = strtoul (optarg, & cp, 0);
3230 if (! *cp && section >= 0)
3231 request_dump_bynumber (section, type);
3232 else
3233 request_dump_byname (optarg, type);
3237 static void
3238 parse_args (int argc, char ** argv)
3240 int c;
3242 if (argc < 2)
3243 usage (stderr);
3245 while ((c = getopt_long
3246 (argc, argv, "ADHINR:SVWacdeghi:lnp:rstuvw::x:", options, NULL)) != EOF)
3248 switch (c)
3250 case 0:
3251 /* Long options. */
3252 break;
3253 case 'H':
3254 usage (stdout);
3255 break;
3257 case 'a':
3258 do_syms++;
3259 do_reloc++;
3260 do_unwind++;
3261 do_dynamic++;
3262 do_header++;
3263 do_sections++;
3264 do_section_groups++;
3265 do_segments++;
3266 do_version++;
3267 do_histogram++;
3268 do_arch++;
3269 do_notes++;
3270 break;
3271 case 'g':
3272 do_section_groups++;
3273 break;
3274 case 't':
3275 case 'N':
3276 do_sections++;
3277 do_section_details++;
3278 break;
3279 case 'e':
3280 do_header++;
3281 do_sections++;
3282 do_segments++;
3283 break;
3284 case 'A':
3285 do_arch++;
3286 break;
3287 case 'D':
3288 do_using_dynamic++;
3289 break;
3290 case 'r':
3291 do_reloc++;
3292 break;
3293 case 'u':
3294 do_unwind++;
3295 break;
3296 case 'h':
3297 do_header++;
3298 break;
3299 case 'l':
3300 do_segments++;
3301 break;
3302 case 's':
3303 do_syms++;
3304 break;
3305 case 'S':
3306 do_sections++;
3307 break;
3308 case 'd':
3309 do_dynamic++;
3310 break;
3311 case 'I':
3312 do_histogram++;
3313 break;
3314 case 'n':
3315 do_notes++;
3316 break;
3317 case 'c':
3318 do_archive_index++;
3319 break;
3320 case 'x':
3321 request_dump (HEX_DUMP);
3322 break;
3323 case 'p':
3324 request_dump (STRING_DUMP);
3325 break;
3326 case 'R':
3327 request_dump (RELOC_DUMP);
3328 break;
3329 case 'w':
3330 do_dump++;
3331 if (optarg == 0)
3333 do_debugging = 1;
3334 dwarf_select_sections_all ();
3336 else
3338 do_debugging = 0;
3339 dwarf_select_sections_by_letters (optarg);
3341 break;
3342 case OPTION_DEBUG_DUMP:
3343 do_dump++;
3344 if (optarg == 0)
3345 do_debugging = 1;
3346 else
3348 do_debugging = 0;
3349 dwarf_select_sections_by_names (optarg);
3351 break;
3352 case OPTION_DYN_SYMS:
3353 do_dyn_syms++;
3354 break;
3355 #ifdef SUPPORT_DISASSEMBLY
3356 case 'i':
3357 request_dump (DISASS_DUMP);
3358 break;
3359 #endif
3360 case 'v':
3361 print_version (program_name);
3362 break;
3363 case 'V':
3364 do_version++;
3365 break;
3366 case 'W':
3367 do_wide++;
3368 break;
3369 default:
3370 /* xgettext:c-format */
3371 error (_("Invalid option '-%c'\n"), c);
3372 /* Drop through. */
3373 case '?':
3374 usage (stderr);
3378 if (!do_dynamic && !do_syms && !do_reloc && !do_unwind && !do_sections
3379 && !do_segments && !do_header && !do_dump && !do_version
3380 && !do_histogram && !do_debugging && !do_arch && !do_notes
3381 && !do_section_groups && !do_archive_index
3382 && !do_dyn_syms)
3383 usage (stderr);
3384 else if (argc < 3)
3386 warn (_("Nothing to do.\n"));
3387 usage (stderr);
3391 static const char *
3392 get_elf_class (unsigned int elf_class)
3394 static char buff[32];
3396 switch (elf_class)
3398 case ELFCLASSNONE: return _("none");
3399 case ELFCLASS32: return "ELF32";
3400 case ELFCLASS64: return "ELF64";
3401 default:
3402 snprintf (buff, sizeof (buff), _("<unknown: %x>"), elf_class);
3403 return buff;
3407 static const char *
3408 get_data_encoding (unsigned int encoding)
3410 static char buff[32];
3412 switch (encoding)
3414 case ELFDATANONE: return _("none");
3415 case ELFDATA2LSB: return _("2's complement, little endian");
3416 case ELFDATA2MSB: return _("2's complement, big endian");
3417 default:
3418 snprintf (buff, sizeof (buff), _("<unknown: %x>"), encoding);
3419 return buff;
3423 /* Decode the data held in 'elf_header'. */
3425 static int
3426 process_file_header (void)
3428 if ( elf_header.e_ident[EI_MAG0] != ELFMAG0
3429 || elf_header.e_ident[EI_MAG1] != ELFMAG1
3430 || elf_header.e_ident[EI_MAG2] != ELFMAG2
3431 || elf_header.e_ident[EI_MAG3] != ELFMAG3)
3433 error
3434 (_("Not an ELF file - it has the wrong magic bytes at the start\n"));
3435 return 0;
3438 init_dwarf_regnames (elf_header.e_machine);
3440 if (do_header)
3442 int i;
3444 printf (_("ELF Header:\n"));
3445 printf (_(" Magic: "));
3446 for (i = 0; i < EI_NIDENT; i++)
3447 printf ("%2.2x ", elf_header.e_ident[i]);
3448 printf ("\n");
3449 printf (_(" Class: %s\n"),
3450 get_elf_class (elf_header.e_ident[EI_CLASS]));
3451 printf (_(" Data: %s\n"),
3452 get_data_encoding (elf_header.e_ident[EI_DATA]));
3453 printf (_(" Version: %d %s\n"),
3454 elf_header.e_ident[EI_VERSION],
3455 (elf_header.e_ident[EI_VERSION] == EV_CURRENT
3456 ? "(current)"
3457 : (elf_header.e_ident[EI_VERSION] != EV_NONE
3458 ? _("<unknown: %lx>")
3459 : "")));
3460 printf (_(" OS/ABI: %s\n"),
3461 get_osabi_name (elf_header.e_ident[EI_OSABI]));
3462 printf (_(" ABI Version: %d\n"),
3463 elf_header.e_ident[EI_ABIVERSION]);
3464 printf (_(" Type: %s\n"),
3465 get_file_type (elf_header.e_type));
3466 printf (_(" Machine: %s\n"),
3467 get_machine_name (elf_header.e_machine));
3468 printf (_(" Version: 0x%lx\n"),
3469 (unsigned long) elf_header.e_version);
3471 printf (_(" Entry point address: "));
3472 print_vma ((bfd_vma) elf_header.e_entry, PREFIX_HEX);
3473 printf (_("\n Start of program headers: "));
3474 print_vma ((bfd_vma) elf_header.e_phoff, DEC);
3475 printf (_(" (bytes into file)\n Start of section headers: "));
3476 print_vma ((bfd_vma) elf_header.e_shoff, DEC);
3477 printf (_(" (bytes into file)\n"));
3479 printf (_(" Flags: 0x%lx%s\n"),
3480 (unsigned long) elf_header.e_flags,
3481 get_machine_flags (elf_header.e_flags, elf_header.e_machine));
3482 printf (_(" Size of this header: %ld (bytes)\n"),
3483 (long) elf_header.e_ehsize);
3484 printf (_(" Size of program headers: %ld (bytes)\n"),
3485 (long) elf_header.e_phentsize);
3486 printf (_(" Number of program headers: %ld"),
3487 (long) elf_header.e_phnum);
3488 if (section_headers != NULL
3489 && elf_header.e_phnum == PN_XNUM
3490 && section_headers[0].sh_info != 0)
3491 printf (" (%ld)", (long) section_headers[0].sh_info);
3492 putc ('\n', stdout);
3493 printf (_(" Size of section headers: %ld (bytes)\n"),
3494 (long) elf_header.e_shentsize);
3495 printf (_(" Number of section headers: %ld"),
3496 (long) elf_header.e_shnum);
3497 if (section_headers != NULL && elf_header.e_shnum == SHN_UNDEF)
3498 printf (" (%ld)", (long) section_headers[0].sh_size);
3499 putc ('\n', stdout);
3500 printf (_(" Section header string table index: %ld"),
3501 (long) elf_header.e_shstrndx);
3502 if (section_headers != NULL
3503 && elf_header.e_shstrndx == (SHN_XINDEX & 0xffff))
3504 printf (" (%u)", section_headers[0].sh_link);
3505 else if (elf_header.e_shstrndx != SHN_UNDEF
3506 && elf_header.e_shstrndx >= elf_header.e_shnum)
3507 printf (_(" <corrupt: out of range>"));
3508 putc ('\n', stdout);
3511 if (section_headers != NULL)
3513 if (elf_header.e_phnum == PN_XNUM
3514 && section_headers[0].sh_info != 0)
3515 elf_header.e_phnum = section_headers[0].sh_info;
3516 if (elf_header.e_shnum == SHN_UNDEF)
3517 elf_header.e_shnum = section_headers[0].sh_size;
3518 if (elf_header.e_shstrndx == (SHN_XINDEX & 0xffff))
3519 elf_header.e_shstrndx = section_headers[0].sh_link;
3520 else if (elf_header.e_shstrndx >= elf_header.e_shnum)
3521 elf_header.e_shstrndx = SHN_UNDEF;
3522 free (section_headers);
3523 section_headers = NULL;
3526 return 1;
3530 static int
3531 get_32bit_program_headers (FILE * file, Elf_Internal_Phdr * pheaders)
3533 Elf32_External_Phdr * phdrs;
3534 Elf32_External_Phdr * external;
3535 Elf_Internal_Phdr * internal;
3536 unsigned int i;
3538 phdrs = (Elf32_External_Phdr *) get_data (NULL, file, elf_header.e_phoff,
3539 elf_header.e_phentsize,
3540 elf_header.e_phnum,
3541 _("program headers"));
3542 if (!phdrs)
3543 return 0;
3545 for (i = 0, internal = pheaders, external = phdrs;
3546 i < elf_header.e_phnum;
3547 i++, internal++, external++)
3549 internal->p_type = BYTE_GET (external->p_type);
3550 internal->p_offset = BYTE_GET (external->p_offset);
3551 internal->p_vaddr = BYTE_GET (external->p_vaddr);
3552 internal->p_paddr = BYTE_GET (external->p_paddr);
3553 internal->p_filesz = BYTE_GET (external->p_filesz);
3554 internal->p_memsz = BYTE_GET (external->p_memsz);
3555 internal->p_flags = BYTE_GET (external->p_flags);
3556 internal->p_align = BYTE_GET (external->p_align);
3559 free (phdrs);
3561 return 1;
3564 static int
3565 get_64bit_program_headers (FILE * file, Elf_Internal_Phdr * pheaders)
3567 Elf64_External_Phdr * phdrs;
3568 Elf64_External_Phdr * external;
3569 Elf_Internal_Phdr * internal;
3570 unsigned int i;
3572 phdrs = (Elf64_External_Phdr *) get_data (NULL, file, elf_header.e_phoff,
3573 elf_header.e_phentsize,
3574 elf_header.e_phnum,
3575 _("program headers"));
3576 if (!phdrs)
3577 return 0;
3579 for (i = 0, internal = pheaders, external = phdrs;
3580 i < elf_header.e_phnum;
3581 i++, internal++, external++)
3583 internal->p_type = BYTE_GET (external->p_type);
3584 internal->p_flags = BYTE_GET (external->p_flags);
3585 internal->p_offset = BYTE_GET (external->p_offset);
3586 internal->p_vaddr = BYTE_GET (external->p_vaddr);
3587 internal->p_paddr = BYTE_GET (external->p_paddr);
3588 internal->p_filesz = BYTE_GET (external->p_filesz);
3589 internal->p_memsz = BYTE_GET (external->p_memsz);
3590 internal->p_align = BYTE_GET (external->p_align);
3593 free (phdrs);
3595 return 1;
3598 /* Returns 1 if the program headers were read into `program_headers'. */
3600 static int
3601 get_program_headers (FILE * file)
3603 Elf_Internal_Phdr * phdrs;
3605 /* Check cache of prior read. */
3606 if (program_headers != NULL)
3607 return 1;
3609 phdrs = (Elf_Internal_Phdr *) cmalloc (elf_header.e_phnum,
3610 sizeof (Elf_Internal_Phdr));
3612 if (phdrs == NULL)
3614 error (_("Out of memory\n"));
3615 return 0;
3618 if (is_32bit_elf
3619 ? get_32bit_program_headers (file, phdrs)
3620 : get_64bit_program_headers (file, phdrs))
3622 program_headers = phdrs;
3623 return 1;
3626 free (phdrs);
3627 return 0;
3630 /* Returns 1 if the program headers were loaded. */
3632 static int
3633 process_program_headers (FILE * file)
3635 Elf_Internal_Phdr * segment;
3636 unsigned int i;
3638 if (elf_header.e_phnum == 0)
3640 if (do_segments)
3641 printf (_("\nThere are no program headers in this file.\n"));
3642 return 0;
3645 if (do_segments && !do_header)
3647 printf (_("\nElf file type is %s\n"), get_file_type (elf_header.e_type));
3648 printf (_("Entry point "));
3649 print_vma ((bfd_vma) elf_header.e_entry, PREFIX_HEX);
3650 printf (_("\nThere are %d program headers, starting at offset "),
3651 elf_header.e_phnum);
3652 print_vma ((bfd_vma) elf_header.e_phoff, DEC);
3653 printf ("\n");
3656 if (! get_program_headers (file))
3657 return 0;
3659 if (do_segments)
3661 if (elf_header.e_phnum > 1)
3662 printf (_("\nProgram Headers:\n"));
3663 else
3664 printf (_("\nProgram Headers:\n"));
3666 if (is_32bit_elf)
3667 printf
3668 (_(" Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align\n"));
3669 else if (do_wide)
3670 printf
3671 (_(" Type Offset VirtAddr PhysAddr FileSiz MemSiz Flg Align\n"));
3672 else
3674 printf
3675 (_(" Type Offset VirtAddr PhysAddr\n"));
3676 printf
3677 (_(" FileSiz MemSiz Flags Align\n"));
3681 dynamic_addr = 0;
3682 dynamic_size = 0;
3684 for (i = 0, segment = program_headers;
3685 i < elf_header.e_phnum;
3686 i++, segment++)
3688 if (do_segments)
3690 printf (" %-14.14s ", get_segment_type (segment->p_type));
3692 if (is_32bit_elf)
3694 printf ("0x%6.6lx ", (unsigned long) segment->p_offset);
3695 printf ("0x%8.8lx ", (unsigned long) segment->p_vaddr);
3696 printf ("0x%8.8lx ", (unsigned long) segment->p_paddr);
3697 printf ("0x%5.5lx ", (unsigned long) segment->p_filesz);
3698 printf ("0x%5.5lx ", (unsigned long) segment->p_memsz);
3699 printf ("%c%c%c ",
3700 (segment->p_flags & PF_R ? 'R' : ' '),
3701 (segment->p_flags & PF_W ? 'W' : ' '),
3702 (segment->p_flags & PF_X ? 'E' : ' '));
3703 printf ("%#lx", (unsigned long) segment->p_align);
3705 else if (do_wide)
3707 if ((unsigned long) segment->p_offset == segment->p_offset)
3708 printf ("0x%6.6lx ", (unsigned long) segment->p_offset);
3709 else
3711 print_vma (segment->p_offset, FULL_HEX);
3712 putchar (' ');
3715 print_vma (segment->p_vaddr, FULL_HEX);
3716 putchar (' ');
3717 print_vma (segment->p_paddr, FULL_HEX);
3718 putchar (' ');
3720 if ((unsigned long) segment->p_filesz == segment->p_filesz)
3721 printf ("0x%6.6lx ", (unsigned long) segment->p_filesz);
3722 else
3724 print_vma (segment->p_filesz, FULL_HEX);
3725 putchar (' ');
3728 if ((unsigned long) segment->p_memsz == segment->p_memsz)
3729 printf ("0x%6.6lx", (unsigned long) segment->p_memsz);
3730 else
3732 print_vma (segment->p_offset, FULL_HEX);
3735 printf (" %c%c%c ",
3736 (segment->p_flags & PF_R ? 'R' : ' '),
3737 (segment->p_flags & PF_W ? 'W' : ' '),
3738 (segment->p_flags & PF_X ? 'E' : ' '));
3740 if ((unsigned long) segment->p_align == segment->p_align)
3741 printf ("%#lx", (unsigned long) segment->p_align);
3742 else
3744 print_vma (segment->p_align, PREFIX_HEX);
3747 else
3749 print_vma (segment->p_offset, FULL_HEX);
3750 putchar (' ');
3751 print_vma (segment->p_vaddr, FULL_HEX);
3752 putchar (' ');
3753 print_vma (segment->p_paddr, FULL_HEX);
3754 printf ("\n ");
3755 print_vma (segment->p_filesz, FULL_HEX);
3756 putchar (' ');
3757 print_vma (segment->p_memsz, FULL_HEX);
3758 printf (" %c%c%c ",
3759 (segment->p_flags & PF_R ? 'R' : ' '),
3760 (segment->p_flags & PF_W ? 'W' : ' '),
3761 (segment->p_flags & PF_X ? 'E' : ' '));
3762 print_vma (segment->p_align, HEX);
3766 switch (segment->p_type)
3768 case PT_DYNAMIC:
3769 if (dynamic_addr)
3770 error (_("more than one dynamic segment\n"));
3772 /* By default, assume that the .dynamic section is the first
3773 section in the DYNAMIC segment. */
3774 dynamic_addr = segment->p_offset;
3775 dynamic_size = segment->p_filesz;
3777 /* Try to locate the .dynamic section. If there is
3778 a section header table, we can easily locate it. */
3779 if (section_headers != NULL)
3781 Elf_Internal_Shdr * sec;
3783 sec = find_section (".dynamic");
3784 if (sec == NULL || sec->sh_size == 0)
3786 /* A corresponding .dynamic section is expected, but on
3787 IA-64/OpenVMS it is OK for it to be missing. */
3788 if (!is_ia64_vms ())
3789 error (_("no .dynamic section in the dynamic segment\n"));
3790 break;
3793 if (sec->sh_type == SHT_NOBITS)
3795 dynamic_size = 0;
3796 break;
3799 dynamic_addr = sec->sh_offset;
3800 dynamic_size = sec->sh_size;
3802 if (dynamic_addr < segment->p_offset
3803 || dynamic_addr > segment->p_offset + segment->p_filesz)
3804 warn (_("the .dynamic section is not contained"
3805 " within the dynamic segment\n"));
3806 else if (dynamic_addr > segment->p_offset)
3807 warn (_("the .dynamic section is not the first section"
3808 " in the dynamic segment.\n"));
3810 break;
3812 case PT_INTERP:
3813 if (fseek (file, archive_file_offset + (long) segment->p_offset,
3814 SEEK_SET))
3815 error (_("Unable to find program interpreter name\n"));
3816 else
3818 char fmt [32];
3819 int ret = snprintf (fmt, sizeof (fmt), "%%%ds", PATH_MAX);
3821 if (ret >= (int) sizeof (fmt) || ret < 0)
3822 error (_("Internal error: failed to create format string to display program interpreter\n"));
3824 program_interpreter[0] = 0;
3825 if (fscanf (file, fmt, program_interpreter) <= 0)
3826 error (_("Unable to read program interpreter name\n"));
3828 if (do_segments)
3829 printf (_("\n [Requesting program interpreter: %s]"),
3830 program_interpreter);
3832 break;
3835 if (do_segments)
3836 putc ('\n', stdout);
3839 if (do_segments && section_headers != NULL && string_table != NULL)
3841 printf (_("\n Section to Segment mapping:\n"));
3842 printf (_(" Segment Sections...\n"));
3844 for (i = 0; i < elf_header.e_phnum; i++)
3846 unsigned int j;
3847 Elf_Internal_Shdr * section;
3849 segment = program_headers + i;
3850 section = section_headers + 1;
3852 printf (" %2.2d ", i);
3854 for (j = 1; j < elf_header.e_shnum; j++, section++)
3856 if (!ELF_TBSS_SPECIAL (section, segment)
3857 && ELF_SECTION_IN_SEGMENT_STRICT (section, segment))
3858 printf ("%s ", SECTION_NAME (section));
3861 putc ('\n',stdout);
3865 return 1;
3869 /* Find the file offset corresponding to VMA by using the program headers. */
3871 static long
3872 offset_from_vma (FILE * file, bfd_vma vma, bfd_size_type size)
3874 Elf_Internal_Phdr * seg;
3876 if (! get_program_headers (file))
3878 warn (_("Cannot interpret virtual addresses without program headers.\n"));
3879 return (long) vma;
3882 for (seg = program_headers;
3883 seg < program_headers + elf_header.e_phnum;
3884 ++seg)
3886 if (seg->p_type != PT_LOAD)
3887 continue;
3889 if (vma >= (seg->p_vaddr & -seg->p_align)
3890 && vma + size <= seg->p_vaddr + seg->p_filesz)
3891 return vma - seg->p_vaddr + seg->p_offset;
3894 warn (_("Virtual address 0x%lx not located in any PT_LOAD segment.\n"),
3895 (unsigned long) vma);
3896 return (long) vma;
3900 static int
3901 get_32bit_section_headers (FILE * file, unsigned int num)
3903 Elf32_External_Shdr * shdrs;
3904 Elf_Internal_Shdr * internal;
3905 unsigned int i;
3907 shdrs = (Elf32_External_Shdr *) get_data (NULL, file, elf_header.e_shoff,
3908 elf_header.e_shentsize, num,
3909 _("section headers"));
3910 if (!shdrs)
3911 return 0;
3913 section_headers = (Elf_Internal_Shdr *) cmalloc (num,
3914 sizeof (Elf_Internal_Shdr));
3916 if (section_headers == NULL)
3918 error (_("Out of memory\n"));
3919 return 0;
3922 for (i = 0, internal = section_headers;
3923 i < num;
3924 i++, internal++)
3926 internal->sh_name = BYTE_GET (shdrs[i].sh_name);
3927 internal->sh_type = BYTE_GET (shdrs[i].sh_type);
3928 internal->sh_flags = BYTE_GET (shdrs[i].sh_flags);
3929 internal->sh_addr = BYTE_GET (shdrs[i].sh_addr);
3930 internal->sh_offset = BYTE_GET (shdrs[i].sh_offset);
3931 internal->sh_size = BYTE_GET (shdrs[i].sh_size);
3932 internal->sh_link = BYTE_GET (shdrs[i].sh_link);
3933 internal->sh_info = BYTE_GET (shdrs[i].sh_info);
3934 internal->sh_addralign = BYTE_GET (shdrs[i].sh_addralign);
3935 internal->sh_entsize = BYTE_GET (shdrs[i].sh_entsize);
3938 free (shdrs);
3940 return 1;
3943 static int
3944 get_64bit_section_headers (FILE * file, unsigned int num)
3946 Elf64_External_Shdr * shdrs;
3947 Elf_Internal_Shdr * internal;
3948 unsigned int i;
3950 shdrs = (Elf64_External_Shdr *) get_data (NULL, file, elf_header.e_shoff,
3951 elf_header.e_shentsize, num,
3952 _("section headers"));
3953 if (!shdrs)
3954 return 0;
3956 section_headers = (Elf_Internal_Shdr *) cmalloc (num,
3957 sizeof (Elf_Internal_Shdr));
3959 if (section_headers == NULL)
3961 error (_("Out of memory\n"));
3962 return 0;
3965 for (i = 0, internal = section_headers;
3966 i < num;
3967 i++, internal++)
3969 internal->sh_name = BYTE_GET (shdrs[i].sh_name);
3970 internal->sh_type = BYTE_GET (shdrs[i].sh_type);
3971 internal->sh_flags = BYTE_GET (shdrs[i].sh_flags);
3972 internal->sh_addr = BYTE_GET (shdrs[i].sh_addr);
3973 internal->sh_size = BYTE_GET (shdrs[i].sh_size);
3974 internal->sh_entsize = BYTE_GET (shdrs[i].sh_entsize);
3975 internal->sh_link = BYTE_GET (shdrs[i].sh_link);
3976 internal->sh_info = BYTE_GET (shdrs[i].sh_info);
3977 internal->sh_offset = BYTE_GET (shdrs[i].sh_offset);
3978 internal->sh_addralign = BYTE_GET (shdrs[i].sh_addralign);
3981 free (shdrs);
3983 return 1;
3986 static Elf_Internal_Sym *
3987 get_32bit_elf_symbols (FILE * file, Elf_Internal_Shdr * section)
3989 unsigned long number;
3990 Elf32_External_Sym * esyms = NULL;
3991 Elf_External_Sym_Shndx * shndx;
3992 Elf_Internal_Sym * isyms = NULL;
3993 Elf_Internal_Sym * psym;
3994 unsigned int j;
3996 /* Run some sanity checks first. */
3997 if (section->sh_entsize == 0)
3999 error (_("sh_entsize is zero\n"));
4000 return NULL;
4003 number = section->sh_size / section->sh_entsize;
4005 if (number * sizeof (Elf32_External_Sym) > section->sh_size + 1)
4007 error (_("Invalid sh_entsize\n"));
4008 return NULL;
4011 esyms = (Elf32_External_Sym *) get_data (NULL, file, section->sh_offset, 1,
4012 section->sh_size, _("symbols"));
4013 if (esyms == NULL)
4014 return NULL;
4016 shndx = NULL;
4017 if (symtab_shndx_hdr != NULL
4018 && (symtab_shndx_hdr->sh_link
4019 == (unsigned long) (section - section_headers)))
4021 shndx = (Elf_External_Sym_Shndx *) get_data (NULL, file,
4022 symtab_shndx_hdr->sh_offset,
4023 1, symtab_shndx_hdr->sh_size,
4024 _("symtab shndx"));
4025 if (shndx == NULL)
4026 goto exit_point;
4029 isyms = (Elf_Internal_Sym *) cmalloc (number, sizeof (Elf_Internal_Sym));
4031 if (isyms == NULL)
4033 error (_("Out of memory\n"));
4034 goto exit_point;
4037 for (j = 0, psym = isyms; j < number; j++, psym++)
4039 psym->st_name = BYTE_GET (esyms[j].st_name);
4040 psym->st_value = BYTE_GET (esyms[j].st_value);
4041 psym->st_size = BYTE_GET (esyms[j].st_size);
4042 psym->st_shndx = BYTE_GET (esyms[j].st_shndx);
4043 if (psym->st_shndx == (SHN_XINDEX & 0xffff) && shndx != NULL)
4044 psym->st_shndx
4045 = byte_get ((unsigned char *) &shndx[j], sizeof (shndx[j]));
4046 else if (psym->st_shndx >= (SHN_LORESERVE & 0xffff))
4047 psym->st_shndx += SHN_LORESERVE - (SHN_LORESERVE & 0xffff);
4048 psym->st_info = BYTE_GET (esyms[j].st_info);
4049 psym->st_other = BYTE_GET (esyms[j].st_other);
4052 exit_point:
4053 if (shndx)
4054 free (shndx);
4055 if (esyms)
4056 free (esyms);
4058 return isyms;
4061 static Elf_Internal_Sym *
4062 get_64bit_elf_symbols (FILE * file, Elf_Internal_Shdr * section)
4064 unsigned long number;
4065 Elf64_External_Sym * esyms;
4066 Elf_External_Sym_Shndx * shndx;
4067 Elf_Internal_Sym * isyms;
4068 Elf_Internal_Sym * psym;
4069 unsigned int j;
4071 /* Run some sanity checks first. */
4072 if (section->sh_entsize == 0)
4074 error (_("sh_entsize is zero\n"));
4075 return NULL;
4078 number = section->sh_size / section->sh_entsize;
4080 if (number * sizeof (Elf64_External_Sym) > section->sh_size + 1)
4082 error (_("Invalid sh_entsize\n"));
4083 return NULL;
4086 esyms = (Elf64_External_Sym *) get_data (NULL, file, section->sh_offset, 1,
4087 section->sh_size, _("symbols"));
4088 if (!esyms)
4089 return NULL;
4091 shndx = NULL;
4092 if (symtab_shndx_hdr != NULL
4093 && (symtab_shndx_hdr->sh_link
4094 == (unsigned long) (section - section_headers)))
4096 shndx = (Elf_External_Sym_Shndx *) get_data (NULL, file,
4097 symtab_shndx_hdr->sh_offset,
4098 1, symtab_shndx_hdr->sh_size,
4099 _("symtab shndx"));
4100 if (!shndx)
4102 free (esyms);
4103 return NULL;
4107 isyms = (Elf_Internal_Sym *) cmalloc (number, sizeof (Elf_Internal_Sym));
4109 if (isyms == NULL)
4111 error (_("Out of memory\n"));
4112 if (shndx)
4113 free (shndx);
4114 free (esyms);
4115 return NULL;
4118 for (j = 0, psym = isyms;
4119 j < number;
4120 j++, psym++)
4122 psym->st_name = BYTE_GET (esyms[j].st_name);
4123 psym->st_info = BYTE_GET (esyms[j].st_info);
4124 psym->st_other = BYTE_GET (esyms[j].st_other);
4125 psym->st_shndx = BYTE_GET (esyms[j].st_shndx);
4126 if (psym->st_shndx == (SHN_XINDEX & 0xffff) && shndx != NULL)
4127 psym->st_shndx
4128 = byte_get ((unsigned char *) &shndx[j], sizeof (shndx[j]));
4129 else if (psym->st_shndx >= (SHN_LORESERVE & 0xffff))
4130 psym->st_shndx += SHN_LORESERVE - (SHN_LORESERVE & 0xffff);
4131 psym->st_value = BYTE_GET (esyms[j].st_value);
4132 psym->st_size = BYTE_GET (esyms[j].st_size);
4135 if (shndx)
4136 free (shndx);
4137 free (esyms);
4139 return isyms;
4142 static const char *
4143 get_elf_section_flags (bfd_vma sh_flags)
4145 static char buff[1024];
4146 char * p = buff;
4147 int field_size = is_32bit_elf ? 8 : 16;
4148 int sindex;
4149 int size = sizeof (buff) - (field_size + 4 + 1);
4150 bfd_vma os_flags = 0;
4151 bfd_vma proc_flags = 0;
4152 bfd_vma unknown_flags = 0;
4153 static const struct
4155 const char * str;
4156 int len;
4158 flags [] =
4160 /* 0 */ { STRING_COMMA_LEN ("WRITE") },
4161 /* 1 */ { STRING_COMMA_LEN ("ALLOC") },
4162 /* 2 */ { STRING_COMMA_LEN ("EXEC") },
4163 /* 3 */ { STRING_COMMA_LEN ("MERGE") },
4164 /* 4 */ { STRING_COMMA_LEN ("STRINGS") },
4165 /* 5 */ { STRING_COMMA_LEN ("INFO LINK") },
4166 /* 6 */ { STRING_COMMA_LEN ("LINK ORDER") },
4167 /* 7 */ { STRING_COMMA_LEN ("OS NONCONF") },
4168 /* 8 */ { STRING_COMMA_LEN ("GROUP") },
4169 /* 9 */ { STRING_COMMA_LEN ("TLS") },
4170 /* IA-64 specific. */
4171 /* 10 */ { STRING_COMMA_LEN ("SHORT") },
4172 /* 11 */ { STRING_COMMA_LEN ("NORECOV") },
4173 /* IA-64 OpenVMS specific. */
4174 /* 12 */ { STRING_COMMA_LEN ("VMS_GLOBAL") },
4175 /* 13 */ { STRING_COMMA_LEN ("VMS_OVERLAID") },
4176 /* 14 */ { STRING_COMMA_LEN ("VMS_SHARED") },
4177 /* 15 */ { STRING_COMMA_LEN ("VMS_VECTOR") },
4178 /* 16 */ { STRING_COMMA_LEN ("VMS_ALLOC_64BIT") },
4179 /* 17 */ { STRING_COMMA_LEN ("VMS_PROTECTED") },
4180 /* Generic. */
4181 /* 18 */ { STRING_COMMA_LEN ("EXCLUDE") },
4182 /* SPARC specific. */
4183 /* 19 */ { STRING_COMMA_LEN ("ORDERED") }
4186 if (do_section_details)
4188 sprintf (buff, "[%*.*lx]: ",
4189 field_size, field_size, (unsigned long) sh_flags);
4190 p += field_size + 4;
4193 while (sh_flags)
4195 bfd_vma flag;
4197 flag = sh_flags & - sh_flags;
4198 sh_flags &= ~ flag;
4200 if (do_section_details)
4202 switch (flag)
4204 case SHF_WRITE: sindex = 0; break;
4205 case SHF_ALLOC: sindex = 1; break;
4206 case SHF_EXECINSTR: sindex = 2; break;
4207 case SHF_MERGE: sindex = 3; break;
4208 case SHF_STRINGS: sindex = 4; break;
4209 case SHF_INFO_LINK: sindex = 5; break;
4210 case SHF_LINK_ORDER: sindex = 6; break;
4211 case SHF_OS_NONCONFORMING: sindex = 7; break;
4212 case SHF_GROUP: sindex = 8; break;
4213 case SHF_TLS: sindex = 9; break;
4214 case SHF_EXCLUDE: sindex = 18; break;
4216 default:
4217 sindex = -1;
4218 switch (elf_header.e_machine)
4220 case EM_IA_64:
4221 if (flag == SHF_IA_64_SHORT)
4222 sindex = 10;
4223 else if (flag == SHF_IA_64_NORECOV)
4224 sindex = 11;
4225 #ifdef BFD64
4226 else if (elf_header.e_ident[EI_OSABI] == ELFOSABI_OPENVMS)
4227 switch (flag)
4229 case SHF_IA_64_VMS_GLOBAL: sindex = 12; break;
4230 case SHF_IA_64_VMS_OVERLAID: sindex = 13; break;
4231 case SHF_IA_64_VMS_SHARED: sindex = 14; break;
4232 case SHF_IA_64_VMS_VECTOR: sindex = 15; break;
4233 case SHF_IA_64_VMS_ALLOC_64BIT: sindex = 16; break;
4234 case SHF_IA_64_VMS_PROTECTED: sindex = 17; break;
4235 default: break;
4237 #endif
4238 break;
4240 case EM_386:
4241 case EM_486:
4242 case EM_X86_64:
4243 case EM_L1OM:
4244 case EM_OLD_SPARCV9:
4245 case EM_SPARC32PLUS:
4246 case EM_SPARCV9:
4247 case EM_SPARC:
4248 if (flag == SHF_ORDERED)
4249 sindex = 19;
4250 break;
4251 default:
4252 break;
4256 if (sindex != -1)
4258 if (p != buff + field_size + 4)
4260 if (size < (10 + 2))
4261 abort ();
4262 size -= 2;
4263 *p++ = ',';
4264 *p++ = ' ';
4267 size -= flags [sindex].len;
4268 p = stpcpy (p, flags [sindex].str);
4270 else if (flag & SHF_MASKOS)
4271 os_flags |= flag;
4272 else if (flag & SHF_MASKPROC)
4273 proc_flags |= flag;
4274 else
4275 unknown_flags |= flag;
4277 else
4279 switch (flag)
4281 case SHF_WRITE: *p = 'W'; break;
4282 case SHF_ALLOC: *p = 'A'; break;
4283 case SHF_EXECINSTR: *p = 'X'; break;
4284 case SHF_MERGE: *p = 'M'; break;
4285 case SHF_STRINGS: *p = 'S'; break;
4286 case SHF_INFO_LINK: *p = 'I'; break;
4287 case SHF_LINK_ORDER: *p = 'L'; break;
4288 case SHF_OS_NONCONFORMING: *p = 'O'; break;
4289 case SHF_GROUP: *p = 'G'; break;
4290 case SHF_TLS: *p = 'T'; break;
4291 case SHF_EXCLUDE: *p = 'E'; break;
4293 default:
4294 if ((elf_header.e_machine == EM_X86_64
4295 || elf_header.e_machine == EM_L1OM)
4296 && flag == SHF_X86_64_LARGE)
4297 *p = 'l';
4298 else if (flag & SHF_MASKOS)
4300 *p = 'o';
4301 sh_flags &= ~ SHF_MASKOS;
4303 else if (flag & SHF_MASKPROC)
4305 *p = 'p';
4306 sh_flags &= ~ SHF_MASKPROC;
4308 else
4309 *p = 'x';
4310 break;
4312 p++;
4316 if (do_section_details)
4318 if (os_flags)
4320 size -= 5 + field_size;
4321 if (p != buff + field_size + 4)
4323 if (size < (2 + 1))
4324 abort ();
4325 size -= 2;
4326 *p++ = ',';
4327 *p++ = ' ';
4329 sprintf (p, "OS (%*.*lx)", field_size, field_size,
4330 (unsigned long) os_flags);
4331 p += 5 + field_size;
4333 if (proc_flags)
4335 size -= 7 + field_size;
4336 if (p != buff + field_size + 4)
4338 if (size < (2 + 1))
4339 abort ();
4340 size -= 2;
4341 *p++ = ',';
4342 *p++ = ' ';
4344 sprintf (p, "PROC (%*.*lx)", field_size, field_size,
4345 (unsigned long) proc_flags);
4346 p += 7 + field_size;
4348 if (unknown_flags)
4350 size -= 10 + field_size;
4351 if (p != buff + field_size + 4)
4353 if (size < (2 + 1))
4354 abort ();
4355 size -= 2;
4356 *p++ = ',';
4357 *p++ = ' ';
4359 sprintf (p, _("UNKNOWN (%*.*lx)"), field_size, field_size,
4360 (unsigned long) unknown_flags);
4361 p += 10 + field_size;
4365 *p = '\0';
4366 return buff;
4369 static int
4370 process_section_headers (FILE * file)
4372 Elf_Internal_Shdr * section;
4373 unsigned int i;
4375 section_headers = NULL;
4377 if (elf_header.e_shnum == 0)
4379 if (do_sections)
4380 printf (_("\nThere are no sections in this file.\n"));
4382 return 1;
4385 if (do_sections && !do_header)
4386 printf (_("There are %d section headers, starting at offset 0x%lx:\n"),
4387 elf_header.e_shnum, (unsigned long) elf_header.e_shoff);
4389 if (is_32bit_elf)
4391 if (! get_32bit_section_headers (file, elf_header.e_shnum))
4392 return 0;
4394 else if (! get_64bit_section_headers (file, elf_header.e_shnum))
4395 return 0;
4397 /* Read in the string table, so that we have names to display. */
4398 if (elf_header.e_shstrndx != SHN_UNDEF
4399 && elf_header.e_shstrndx < elf_header.e_shnum)
4401 section = section_headers + elf_header.e_shstrndx;
4403 if (section->sh_size != 0)
4405 string_table = (char *) get_data (NULL, file, section->sh_offset,
4406 1, section->sh_size,
4407 _("string table"));
4409 string_table_length = string_table != NULL ? section->sh_size : 0;
4413 /* Scan the sections for the dynamic symbol table
4414 and dynamic string table and debug sections. */
4415 dynamic_symbols = NULL;
4416 dynamic_strings = NULL;
4417 dynamic_syminfo = NULL;
4418 symtab_shndx_hdr = NULL;
4420 eh_addr_size = is_32bit_elf ? 4 : 8;
4421 switch (elf_header.e_machine)
4423 case EM_MIPS:
4424 case EM_MIPS_RS3_LE:
4425 /* The 64-bit MIPS EABI uses a combination of 32-bit ELF and 64-bit
4426 FDE addresses. However, the ABI also has a semi-official ILP32
4427 variant for which the normal FDE address size rules apply.
4429 GCC 4.0 marks EABI64 objects with a dummy .gcc_compiled_longXX
4430 section, where XX is the size of longs in bits. Unfortunately,
4431 earlier compilers provided no way of distinguishing ILP32 objects
4432 from LP64 objects, so if there's any doubt, we should assume that
4433 the official LP64 form is being used. */
4434 if ((elf_header.e_flags & EF_MIPS_ABI) == E_MIPS_ABI_EABI64
4435 && find_section (".gcc_compiled_long32") == NULL)
4436 eh_addr_size = 8;
4437 break;
4439 case EM_H8_300:
4440 case EM_H8_300H:
4441 switch (elf_header.e_flags & EF_H8_MACH)
4443 case E_H8_MACH_H8300:
4444 case E_H8_MACH_H8300HN:
4445 case E_H8_MACH_H8300SN:
4446 case E_H8_MACH_H8300SXN:
4447 eh_addr_size = 2;
4448 break;
4449 case E_H8_MACH_H8300H:
4450 case E_H8_MACH_H8300S:
4451 case E_H8_MACH_H8300SX:
4452 eh_addr_size = 4;
4453 break;
4455 break;
4457 case EM_M32C_OLD:
4458 case EM_M32C:
4459 switch (elf_header.e_flags & EF_M32C_CPU_MASK)
4461 case EF_M32C_CPU_M16C:
4462 eh_addr_size = 2;
4463 break;
4465 break;
4468 #define CHECK_ENTSIZE_VALUES(section, i, size32, size64) \
4469 do \
4471 size_t expected_entsize \
4472 = is_32bit_elf ? size32 : size64; \
4473 if (section->sh_entsize != expected_entsize) \
4474 error (_("Section %d has invalid sh_entsize %lx (expected %lx)\n"), \
4475 i, (unsigned long int) section->sh_entsize, \
4476 (unsigned long int) expected_entsize); \
4477 section->sh_entsize = expected_entsize; \
4479 while (0)
4480 #define CHECK_ENTSIZE(section, i, type) \
4481 CHECK_ENTSIZE_VALUES (section, i, sizeof (Elf32_External_##type), \
4482 sizeof (Elf64_External_##type))
4484 for (i = 0, section = section_headers;
4485 i < elf_header.e_shnum;
4486 i++, section++)
4488 char * name = SECTION_NAME (section);
4490 if (section->sh_type == SHT_DYNSYM)
4492 if (dynamic_symbols != NULL)
4494 error (_("File contains multiple dynamic symbol tables\n"));
4495 continue;
4498 CHECK_ENTSIZE (section, i, Sym);
4499 num_dynamic_syms = section->sh_size / section->sh_entsize;
4500 dynamic_symbols = GET_ELF_SYMBOLS (file, section);
4502 else if (section->sh_type == SHT_STRTAB
4503 && streq (name, ".dynstr"))
4505 if (dynamic_strings != NULL)
4507 error (_("File contains multiple dynamic string tables\n"));
4508 continue;
4511 dynamic_strings = (char *) get_data (NULL, file, section->sh_offset,
4512 1, section->sh_size,
4513 _("dynamic strings"));
4514 dynamic_strings_length = section->sh_size;
4516 else if (section->sh_type == SHT_SYMTAB_SHNDX)
4518 if (symtab_shndx_hdr != NULL)
4520 error (_("File contains multiple symtab shndx tables\n"));
4521 continue;
4523 symtab_shndx_hdr = section;
4525 else if (section->sh_type == SHT_SYMTAB)
4526 CHECK_ENTSIZE (section, i, Sym);
4527 else if (section->sh_type == SHT_GROUP)
4528 CHECK_ENTSIZE_VALUES (section, i, GRP_ENTRY_SIZE, GRP_ENTRY_SIZE);
4529 else if (section->sh_type == SHT_REL)
4530 CHECK_ENTSIZE (section, i, Rel);
4531 else if (section->sh_type == SHT_RELA)
4532 CHECK_ENTSIZE (section, i, Rela);
4533 else if ((do_debugging || do_debug_info || do_debug_abbrevs
4534 || do_debug_lines || do_debug_pubnames || do_debug_pubtypes
4535 || do_debug_aranges || do_debug_frames || do_debug_macinfo
4536 || do_debug_str || do_debug_loc || do_debug_ranges)
4537 && (const_strneq (name, ".debug_")
4538 || const_strneq (name, ".zdebug_")))
4540 if (name[1] == 'z')
4541 name += sizeof (".zdebug_") - 1;
4542 else
4543 name += sizeof (".debug_") - 1;
4545 if (do_debugging
4546 || (do_debug_info && streq (name, "info"))
4547 || (do_debug_info && streq (name, "types"))
4548 || (do_debug_abbrevs && streq (name, "abbrev"))
4549 || (do_debug_lines && streq (name, "line"))
4550 || (do_debug_pubnames && streq (name, "pubnames"))
4551 || (do_debug_pubtypes && streq (name, "pubtypes"))
4552 || (do_debug_aranges && streq (name, "aranges"))
4553 || (do_debug_ranges && streq (name, "ranges"))
4554 || (do_debug_frames && streq (name, "frame"))
4555 || (do_debug_macinfo && streq (name, "macinfo"))
4556 || (do_debug_str && streq (name, "str"))
4557 || (do_debug_loc && streq (name, "loc"))
4559 request_dump_bynumber (i, DEBUG_DUMP);
4561 /* Linkonce section to be combined with .debug_info at link time. */
4562 else if ((do_debugging || do_debug_info)
4563 && const_strneq (name, ".gnu.linkonce.wi."))
4564 request_dump_bynumber (i, DEBUG_DUMP);
4565 else if (do_debug_frames && streq (name, ".eh_frame"))
4566 request_dump_bynumber (i, DEBUG_DUMP);
4567 /* Trace sections for Itanium VMS. */
4568 else if ((do_debugging || do_trace_info || do_trace_abbrevs
4569 || do_trace_aranges)
4570 && const_strneq (name, ".trace_"))
4572 name += sizeof (".trace_") - 1;
4574 if (do_debugging
4575 || (do_trace_info && streq (name, "info"))
4576 || (do_trace_abbrevs && streq (name, "abbrev"))
4577 || (do_trace_aranges && streq (name, "aranges"))
4579 request_dump_bynumber (i, DEBUG_DUMP);
4584 if (! do_sections)
4585 return 1;
4587 if (elf_header.e_shnum > 1)
4588 printf (_("\nSection Headers:\n"));
4589 else
4590 printf (_("\nSection Header:\n"));
4592 if (is_32bit_elf)
4594 if (do_section_details)
4596 printf (_(" [Nr] Name\n"));
4597 printf (_(" Type Addr Off Size ES Lk Inf Al\n"));
4599 else
4600 printf
4601 (_(" [Nr] Name Type Addr Off Size ES Flg Lk Inf Al\n"));
4603 else if (do_wide)
4605 if (do_section_details)
4607 printf (_(" [Nr] Name\n"));
4608 printf (_(" Type Address Off Size ES Lk Inf Al\n"));
4610 else
4611 printf
4612 (_(" [Nr] Name Type Address Off Size ES Flg Lk Inf Al\n"));
4614 else
4616 if (do_section_details)
4618 printf (_(" [Nr] Name\n"));
4619 printf (_(" Type Address Offset Link\n"));
4620 printf (_(" Size EntSize Info Align\n"));
4622 else
4624 printf (_(" [Nr] Name Type Address Offset\n"));
4625 printf (_(" Size EntSize Flags Link Info Align\n"));
4629 if (do_section_details)
4630 printf (_(" Flags\n"));
4632 for (i = 0, section = section_headers;
4633 i < elf_header.e_shnum;
4634 i++, section++)
4636 if (do_section_details)
4638 printf (" [%2u] %s\n",
4640 SECTION_NAME (section));
4641 if (is_32bit_elf || do_wide)
4642 printf (" %-15.15s ",
4643 get_section_type_name (section->sh_type));
4645 else
4646 printf ((do_wide ? " [%2u] %-17s %-15s "
4647 : " [%2u] %-17.17s %-15.15s "),
4649 SECTION_NAME (section),
4650 get_section_type_name (section->sh_type));
4652 if (is_32bit_elf)
4654 const char * link_too_big = NULL;
4656 print_vma (section->sh_addr, LONG_HEX);
4658 printf ( " %6.6lx %6.6lx %2.2lx",
4659 (unsigned long) section->sh_offset,
4660 (unsigned long) section->sh_size,
4661 (unsigned long) section->sh_entsize);
4663 if (do_section_details)
4664 fputs (" ", stdout);
4665 else
4666 printf (" %3s ", get_elf_section_flags (section->sh_flags));
4668 if (section->sh_link >= elf_header.e_shnum)
4670 link_too_big = "";
4671 /* The sh_link value is out of range. Normally this indicates
4672 an error but it can have special values in Solaris binaries. */
4673 switch (elf_header.e_machine)
4675 case EM_386:
4676 case EM_486:
4677 case EM_X86_64:
4678 case EM_L1OM:
4679 case EM_OLD_SPARCV9:
4680 case EM_SPARC32PLUS:
4681 case EM_SPARCV9:
4682 case EM_SPARC:
4683 if (section->sh_link == (SHN_BEFORE & 0xffff))
4684 link_too_big = "BEFORE";
4685 else if (section->sh_link == (SHN_AFTER & 0xffff))
4686 link_too_big = "AFTER";
4687 break;
4688 default:
4689 break;
4693 if (do_section_details)
4695 if (link_too_big != NULL && * link_too_big)
4696 printf ("<%s> ", link_too_big);
4697 else
4698 printf ("%2u ", section->sh_link);
4699 printf ("%3u %2lu\n", section->sh_info,
4700 (unsigned long) section->sh_addralign);
4702 else
4703 printf ("%2u %3u %2lu\n",
4704 section->sh_link,
4705 section->sh_info,
4706 (unsigned long) section->sh_addralign);
4708 if (link_too_big && ! * link_too_big)
4709 warn (_("section %u: sh_link value of %u is larger than the number of sections\n"),
4710 i, section->sh_link);
4712 else if (do_wide)
4714 print_vma (section->sh_addr, LONG_HEX);
4716 if ((long) section->sh_offset == section->sh_offset)
4717 printf (" %6.6lx", (unsigned long) section->sh_offset);
4718 else
4720 putchar (' ');
4721 print_vma (section->sh_offset, LONG_HEX);
4724 if ((unsigned long) section->sh_size == section->sh_size)
4725 printf (" %6.6lx", (unsigned long) section->sh_size);
4726 else
4728 putchar (' ');
4729 print_vma (section->sh_size, LONG_HEX);
4732 if ((unsigned long) section->sh_entsize == section->sh_entsize)
4733 printf (" %2.2lx", (unsigned long) section->sh_entsize);
4734 else
4736 putchar (' ');
4737 print_vma (section->sh_entsize, LONG_HEX);
4740 if (do_section_details)
4741 fputs (" ", stdout);
4742 else
4743 printf (" %3s ", get_elf_section_flags (section->sh_flags));
4745 printf ("%2u %3u ", section->sh_link, section->sh_info);
4747 if ((unsigned long) section->sh_addralign == section->sh_addralign)
4748 printf ("%2lu\n", (unsigned long) section->sh_addralign);
4749 else
4751 print_vma (section->sh_addralign, DEC);
4752 putchar ('\n');
4755 else if (do_section_details)
4757 printf (" %-15.15s ",
4758 get_section_type_name (section->sh_type));
4759 print_vma (section->sh_addr, LONG_HEX);
4760 if ((long) section->sh_offset == section->sh_offset)
4761 printf (" %16.16lx", (unsigned long) section->sh_offset);
4762 else
4764 printf (" ");
4765 print_vma (section->sh_offset, LONG_HEX);
4767 printf (" %u\n ", section->sh_link);
4768 print_vma (section->sh_size, LONG_HEX);
4769 putchar (' ');
4770 print_vma (section->sh_entsize, LONG_HEX);
4772 printf (" %-16u %lu\n",
4773 section->sh_info,
4774 (unsigned long) section->sh_addralign);
4776 else
4778 putchar (' ');
4779 print_vma (section->sh_addr, LONG_HEX);
4780 if ((long) section->sh_offset == section->sh_offset)
4781 printf (" %8.8lx", (unsigned long) section->sh_offset);
4782 else
4784 printf (" ");
4785 print_vma (section->sh_offset, LONG_HEX);
4787 printf ("\n ");
4788 print_vma (section->sh_size, LONG_HEX);
4789 printf (" ");
4790 print_vma (section->sh_entsize, LONG_HEX);
4792 printf (" %3s ", get_elf_section_flags (section->sh_flags));
4794 printf (" %2u %3u %lu\n",
4795 section->sh_link,
4796 section->sh_info,
4797 (unsigned long) section->sh_addralign);
4800 if (do_section_details)
4801 printf (" %s\n", get_elf_section_flags (section->sh_flags));
4804 if (!do_section_details)
4806 if (elf_header.e_machine == EM_X86_64
4807 || elf_header.e_machine == EM_L1OM)
4808 printf (_("Key to Flags:\n\
4809 W (write), A (alloc), X (execute), M (merge), S (strings), l (large)\n\
4810 I (info), L (link order), G (group), T (TLS), E (exclude), x (unknown)\n\
4811 O (extra OS processing required) o (OS specific), p (processor specific)\n"));
4812 else
4813 printf (_("Key to Flags:\n\
4814 W (write), A (alloc), X (execute), M (merge), S (strings)\n\
4815 I (info), L (link order), G (group), T (TLS), E (exclude), x (unknown)\n\
4816 O (extra OS processing required) o (OS specific), p (processor specific)\n"));
4819 return 1;
4822 static const char *
4823 get_group_flags (unsigned int flags)
4825 static char buff[32];
4826 switch (flags)
4828 case 0:
4829 return "";
4831 case GRP_COMDAT:
4832 return "COMDAT ";
4834 default:
4835 snprintf (buff, sizeof (buff), _("[<unknown>: 0x%x] "), flags);
4836 break;
4838 return buff;
4841 static int
4842 process_section_groups (FILE * file)
4844 Elf_Internal_Shdr * section;
4845 unsigned int i;
4846 struct group * group;
4847 Elf_Internal_Shdr * symtab_sec;
4848 Elf_Internal_Shdr * strtab_sec;
4849 Elf_Internal_Sym * symtab;
4850 char * strtab;
4851 size_t strtab_size;
4853 /* Don't process section groups unless needed. */
4854 if (!do_unwind && !do_section_groups)
4855 return 1;
4857 if (elf_header.e_shnum == 0)
4859 if (do_section_groups)
4860 printf (_("\nThere are no sections in this file.\n"));
4862 return 1;
4865 if (section_headers == NULL)
4867 error (_("Section headers are not available!\n"));
4868 abort ();
4871 section_headers_groups = (struct group **) calloc (elf_header.e_shnum,
4872 sizeof (struct group *));
4874 if (section_headers_groups == NULL)
4876 error (_("Out of memory\n"));
4877 return 0;
4880 /* Scan the sections for the group section. */
4881 group_count = 0;
4882 for (i = 0, section = section_headers;
4883 i < elf_header.e_shnum;
4884 i++, section++)
4885 if (section->sh_type == SHT_GROUP)
4886 group_count++;
4888 if (group_count == 0)
4890 if (do_section_groups)
4891 printf (_("\nThere are no section groups in this file.\n"));
4893 return 1;
4896 section_groups = (struct group *) calloc (group_count, sizeof (struct group));
4898 if (section_groups == NULL)
4900 error (_("Out of memory\n"));
4901 return 0;
4904 symtab_sec = NULL;
4905 strtab_sec = NULL;
4906 symtab = NULL;
4907 strtab = NULL;
4908 strtab_size = 0;
4909 for (i = 0, section = section_headers, group = section_groups;
4910 i < elf_header.e_shnum;
4911 i++, section++)
4913 if (section->sh_type == SHT_GROUP)
4915 char * name = SECTION_NAME (section);
4916 char * group_name;
4917 unsigned char * start;
4918 unsigned char * indices;
4919 unsigned int entry, j, size;
4920 Elf_Internal_Shdr * sec;
4921 Elf_Internal_Sym * sym;
4923 /* Get the symbol table. */
4924 if (section->sh_link >= elf_header.e_shnum
4925 || ((sec = section_headers + section->sh_link)->sh_type
4926 != SHT_SYMTAB))
4928 error (_("Bad sh_link in group section `%s'\n"), name);
4929 continue;
4932 if (symtab_sec != sec)
4934 symtab_sec = sec;
4935 if (symtab)
4936 free (symtab);
4937 symtab = GET_ELF_SYMBOLS (file, symtab_sec);
4940 if (symtab == NULL)
4942 error (_("Corrupt header in group section `%s'\n"), name);
4943 continue;
4946 sym = symtab + section->sh_info;
4948 if (ELF_ST_TYPE (sym->st_info) == STT_SECTION)
4950 if (sym->st_shndx == 0
4951 || sym->st_shndx >= elf_header.e_shnum)
4953 error (_("Bad sh_info in group section `%s'\n"), name);
4954 continue;
4957 group_name = SECTION_NAME (section_headers + sym->st_shndx);
4958 strtab_sec = NULL;
4959 if (strtab)
4960 free (strtab);
4961 strtab = NULL;
4962 strtab_size = 0;
4964 else
4966 /* Get the string table. */
4967 if (symtab_sec->sh_link >= elf_header.e_shnum)
4969 strtab_sec = NULL;
4970 if (strtab)
4971 free (strtab);
4972 strtab = NULL;
4973 strtab_size = 0;
4975 else if (strtab_sec
4976 != (sec = section_headers + symtab_sec->sh_link))
4978 strtab_sec = sec;
4979 if (strtab)
4980 free (strtab);
4981 strtab = (char *) get_data (NULL, file, strtab_sec->sh_offset,
4982 1, strtab_sec->sh_size,
4983 _("string table"));
4984 strtab_size = strtab != NULL ? strtab_sec->sh_size : 0;
4986 group_name = sym->st_name < strtab_size
4987 ? strtab + sym->st_name : _("<corrupt>");
4990 start = (unsigned char *) get_data (NULL, file, section->sh_offset,
4991 1, section->sh_size,
4992 _("section data"));
4994 indices = start;
4995 size = (section->sh_size / section->sh_entsize) - 1;
4996 entry = byte_get (indices, 4);
4997 indices += 4;
4999 if (do_section_groups)
5001 printf (_("\n%sgroup section [%5u] `%s' [%s] contains %u sections:\n"),
5002 get_group_flags (entry), i, name, group_name, size);
5004 printf (_(" [Index] Name\n"));
5007 group->group_index = i;
5009 for (j = 0; j < size; j++)
5011 struct group_list * g;
5013 entry = byte_get (indices, 4);
5014 indices += 4;
5016 if (entry >= elf_header.e_shnum)
5018 error (_("section [%5u] in group section [%5u] > maximum section [%5u]\n"),
5019 entry, i, elf_header.e_shnum - 1);
5020 continue;
5023 if (section_headers_groups [entry] != NULL)
5025 if (entry)
5027 error (_("section [%5u] in group section [%5u] already in group section [%5u]\n"),
5028 entry, i,
5029 section_headers_groups [entry]->group_index);
5030 continue;
5032 else
5034 /* Intel C/C++ compiler may put section 0 in a
5035 section group. We just warn it the first time
5036 and ignore it afterwards. */
5037 static int warned = 0;
5038 if (!warned)
5040 error (_("section 0 in group section [%5u]\n"),
5041 section_headers_groups [entry]->group_index);
5042 warned++;
5047 section_headers_groups [entry] = group;
5049 if (do_section_groups)
5051 sec = section_headers + entry;
5052 printf (" [%5u] %s\n", entry, SECTION_NAME (sec));
5055 g = (struct group_list *) xmalloc (sizeof (struct group_list));
5056 g->section_index = entry;
5057 g->next = group->root;
5058 group->root = g;
5061 if (start)
5062 free (start);
5064 group++;
5068 if (symtab)
5069 free (symtab);
5070 if (strtab)
5071 free (strtab);
5072 return 1;
5075 /* Data used to display dynamic fixups. */
5077 struct ia64_vms_dynfixup
5079 bfd_vma needed_ident; /* Library ident number. */
5080 bfd_vma needed; /* Index in the dstrtab of the library name. */
5081 bfd_vma fixup_needed; /* Index of the library. */
5082 bfd_vma fixup_rela_cnt; /* Number of fixups. */
5083 bfd_vma fixup_rela_off; /* Fixups offset in the dynamic segment. */
5086 /* Data used to display dynamic relocations. */
5088 struct ia64_vms_dynimgrela
5090 bfd_vma img_rela_cnt; /* Number of relocations. */
5091 bfd_vma img_rela_off; /* Reloc offset in the dynamic segment. */
5094 /* Display IA-64 OpenVMS dynamic fixups (used to dynamically link a shared
5095 library). */
5097 static void
5098 dump_ia64_vms_dynamic_fixups (FILE *file, struct ia64_vms_dynfixup *fixup,
5099 const char *strtab, unsigned int strtab_sz)
5101 Elf64_External_VMS_IMAGE_FIXUP *imfs;
5102 long i;
5103 const char *lib_name;
5105 imfs = get_data (NULL, file, dynamic_addr + fixup->fixup_rela_off,
5106 1, fixup->fixup_rela_cnt * sizeof (*imfs),
5107 _("dynamic section image fixups"));
5108 if (!imfs)
5109 return;
5111 if (fixup->needed < strtab_sz)
5112 lib_name = strtab + fixup->needed;
5113 else
5115 warn ("corrupt library name index of 0x%lx found in dynamic entry",
5116 (unsigned long) fixup->needed);
5117 lib_name = "???";
5119 printf (_("\nImage fixups for needed library #%d: %s - ident: %lx\n"),
5120 (int) fixup->fixup_needed, lib_name, (long) fixup->needed_ident);
5121 printf
5122 (_("Seg Offset Type SymVec DataType\n"));
5124 for (i = 0; i < (long) fixup->fixup_rela_cnt; i++)
5126 unsigned int type;
5127 const char *rtype;
5129 printf ("%3u ", (unsigned) BYTE_GET (imfs [i].fixup_seg));
5130 printf_vma ((bfd_vma) BYTE_GET (imfs [i].fixup_offset));
5131 type = BYTE_GET (imfs [i].type);
5132 rtype = elf_ia64_reloc_type (type);
5133 if (rtype == NULL)
5134 printf (" 0x%08x ", type);
5135 else
5136 printf (" %-32s ", rtype);
5137 printf ("%6u ", (unsigned) BYTE_GET (imfs [i].symvec_index));
5138 printf ("0x%08x\n", (unsigned) BYTE_GET (imfs [i].data_type));
5141 free (imfs);
5144 /* Display IA-64 OpenVMS dynamic relocations (used to relocate an image). */
5146 static void
5147 dump_ia64_vms_dynamic_relocs (FILE *file, struct ia64_vms_dynimgrela *imgrela)
5149 Elf64_External_VMS_IMAGE_RELA *imrs;
5150 long i;
5152 imrs = get_data (NULL, file, dynamic_addr + imgrela->img_rela_off,
5153 1, imgrela->img_rela_cnt * sizeof (*imrs),
5154 _("dynamic section image relas"));
5155 if (!imrs)
5156 return;
5158 printf (_("\nImage relocs\n"));
5159 printf
5160 (_("Seg Offset Type Addend Seg Sym Off\n"));
5162 for (i = 0; i < (long) imgrela->img_rela_cnt; i++)
5164 unsigned int type;
5165 const char *rtype;
5167 printf ("%3u ", (unsigned) BYTE_GET (imrs [i].rela_seg));
5168 printf ("%08" BFD_VMA_FMT "x ",
5169 (bfd_vma) BYTE_GET (imrs [i].rela_offset));
5170 type = BYTE_GET (imrs [i].type);
5171 rtype = elf_ia64_reloc_type (type);
5172 if (rtype == NULL)
5173 printf ("0x%08x ", type);
5174 else
5175 printf ("%-31s ", rtype);
5176 print_vma (BYTE_GET (imrs [i].addend), FULL_HEX);
5177 printf ("%3u ", (unsigned) BYTE_GET (imrs [i].sym_seg));
5178 printf ("%08" BFD_VMA_FMT "x\n",
5179 (bfd_vma) BYTE_GET (imrs [i].sym_offset));
5182 free (imrs);
5185 /* Display IA-64 OpenVMS dynamic relocations and fixups. */
5187 static int
5188 process_ia64_vms_dynamic_relocs (FILE *file)
5190 struct ia64_vms_dynfixup fixup;
5191 struct ia64_vms_dynimgrela imgrela;
5192 Elf_Internal_Dyn *entry;
5193 int res = 0;
5194 bfd_vma strtab_off = 0;
5195 bfd_vma strtab_sz = 0;
5196 char *strtab = NULL;
5198 memset (&fixup, 0, sizeof (fixup));
5199 memset (&imgrela, 0, sizeof (imgrela));
5201 /* Note: the order of the entries is specified by the OpenVMS specs. */
5202 for (entry = dynamic_section;
5203 entry < dynamic_section + dynamic_nent;
5204 entry++)
5206 switch (entry->d_tag)
5208 case DT_IA_64_VMS_STRTAB_OFFSET:
5209 strtab_off = entry->d_un.d_val;
5210 break;
5211 case DT_STRSZ:
5212 strtab_sz = entry->d_un.d_val;
5213 if (strtab == NULL)
5214 strtab = get_data (NULL, file, dynamic_addr + strtab_off,
5215 1, strtab_sz, _("dynamic string section"));
5216 break;
5218 case DT_IA_64_VMS_NEEDED_IDENT:
5219 fixup.needed_ident = entry->d_un.d_val;
5220 break;
5221 case DT_NEEDED:
5222 fixup.needed = entry->d_un.d_val;
5223 break;
5224 case DT_IA_64_VMS_FIXUP_NEEDED:
5225 fixup.fixup_needed = entry->d_un.d_val;
5226 break;
5227 case DT_IA_64_VMS_FIXUP_RELA_CNT:
5228 fixup.fixup_rela_cnt = entry->d_un.d_val;
5229 break;
5230 case DT_IA_64_VMS_FIXUP_RELA_OFF:
5231 fixup.fixup_rela_off = entry->d_un.d_val;
5232 res++;
5233 dump_ia64_vms_dynamic_fixups (file, &fixup, strtab, strtab_sz);
5234 break;
5236 case DT_IA_64_VMS_IMG_RELA_CNT:
5237 imgrela.img_rela_cnt = entry->d_un.d_val;
5238 break;
5239 case DT_IA_64_VMS_IMG_RELA_OFF:
5240 imgrela.img_rela_off = entry->d_un.d_val;
5241 res++;
5242 dump_ia64_vms_dynamic_relocs (file, &imgrela);
5243 break;
5245 default:
5246 break;
5250 if (strtab != NULL)
5251 free (strtab);
5253 return res;
5256 static struct
5258 const char * name;
5259 int reloc;
5260 int size;
5261 int rela;
5262 } dynamic_relocations [] =
5264 { "REL", DT_REL, DT_RELSZ, FALSE },
5265 { "RELA", DT_RELA, DT_RELASZ, TRUE },
5266 { "PLT", DT_JMPREL, DT_PLTRELSZ, UNKNOWN }
5269 /* Process the reloc section. */
5271 static int
5272 process_relocs (FILE * file)
5274 unsigned long rel_size;
5275 unsigned long rel_offset;
5278 if (!do_reloc)
5279 return 1;
5281 if (do_using_dynamic)
5283 int is_rela;
5284 const char * name;
5285 int has_dynamic_reloc;
5286 unsigned int i;
5288 has_dynamic_reloc = 0;
5290 for (i = 0; i < ARRAY_SIZE (dynamic_relocations); i++)
5292 is_rela = dynamic_relocations [i].rela;
5293 name = dynamic_relocations [i].name;
5294 rel_size = dynamic_info [dynamic_relocations [i].size];
5295 rel_offset = dynamic_info [dynamic_relocations [i].reloc];
5297 has_dynamic_reloc |= rel_size;
5299 if (is_rela == UNKNOWN)
5301 if (dynamic_relocations [i].reloc == DT_JMPREL)
5302 switch (dynamic_info[DT_PLTREL])
5304 case DT_REL:
5305 is_rela = FALSE;
5306 break;
5307 case DT_RELA:
5308 is_rela = TRUE;
5309 break;
5313 if (rel_size)
5315 printf
5316 (_("\n'%s' relocation section at offset 0x%lx contains %ld bytes:\n"),
5317 name, rel_offset, rel_size);
5319 dump_relocations (file,
5320 offset_from_vma (file, rel_offset, rel_size),
5321 rel_size,
5322 dynamic_symbols, num_dynamic_syms,
5323 dynamic_strings, dynamic_strings_length, is_rela);
5327 if (is_ia64_vms ())
5328 has_dynamic_reloc |= process_ia64_vms_dynamic_relocs (file);
5330 if (! has_dynamic_reloc)
5331 printf (_("\nThere are no dynamic relocations in this file.\n"));
5333 else
5335 Elf_Internal_Shdr * section;
5336 unsigned long i;
5337 int found = 0;
5339 for (i = 0, section = section_headers;
5340 i < elf_header.e_shnum;
5341 i++, section++)
5343 if ( section->sh_type != SHT_RELA
5344 && section->sh_type != SHT_REL)
5345 continue;
5347 rel_offset = section->sh_offset;
5348 rel_size = section->sh_size;
5350 if (rel_size)
5352 Elf_Internal_Shdr * strsec;
5353 int is_rela;
5355 printf (_("\nRelocation section "));
5357 if (string_table == NULL)
5358 printf ("%d", section->sh_name);
5359 else
5360 printf (_("'%s'"), SECTION_NAME (section));
5362 printf (_(" at offset 0x%lx contains %lu entries:\n"),
5363 rel_offset, (unsigned long) (rel_size / section->sh_entsize));
5365 is_rela = section->sh_type == SHT_RELA;
5367 if (section->sh_link != 0
5368 && section->sh_link < elf_header.e_shnum)
5370 Elf_Internal_Shdr * symsec;
5371 Elf_Internal_Sym * symtab;
5372 unsigned long nsyms;
5373 unsigned long strtablen = 0;
5374 char * strtab = NULL;
5376 symsec = section_headers + section->sh_link;
5377 if (symsec->sh_type != SHT_SYMTAB
5378 && symsec->sh_type != SHT_DYNSYM)
5379 continue;
5381 nsyms = symsec->sh_size / symsec->sh_entsize;
5382 symtab = GET_ELF_SYMBOLS (file, symsec);
5384 if (symtab == NULL)
5385 continue;
5387 if (symsec->sh_link != 0
5388 && symsec->sh_link < elf_header.e_shnum)
5390 strsec = section_headers + symsec->sh_link;
5392 strtab = (char *) get_data (NULL, file, strsec->sh_offset,
5393 1, strsec->sh_size,
5394 _("string table"));
5395 strtablen = strtab == NULL ? 0 : strsec->sh_size;
5398 dump_relocations (file, rel_offset, rel_size,
5399 symtab, nsyms, strtab, strtablen, is_rela);
5400 if (strtab)
5401 free (strtab);
5402 free (symtab);
5404 else
5405 dump_relocations (file, rel_offset, rel_size,
5406 NULL, 0, NULL, 0, is_rela);
5408 found = 1;
5412 if (! found)
5413 printf (_("\nThere are no relocations in this file.\n"));
5416 return 1;
5419 /* Process the unwind section. */
5421 #include "unwind-ia64.h"
5423 /* An absolute address consists of a section and an offset. If the
5424 section is NULL, the offset itself is the address, otherwise, the
5425 address equals to LOAD_ADDRESS(section) + offset. */
5427 struct absaddr
5429 unsigned short section;
5430 bfd_vma offset;
5433 #define ABSADDR(a) \
5434 ((a).section \
5435 ? section_headers [(a).section].sh_addr + (a).offset \
5436 : (a).offset)
5438 struct ia64_unw_table_entry
5440 struct absaddr start;
5441 struct absaddr end;
5442 struct absaddr info;
5445 struct ia64_unw_aux_info
5448 struct ia64_unw_table_entry *table; /* Unwind table. */
5449 unsigned long table_len; /* Length of unwind table. */
5450 unsigned char * info; /* Unwind info. */
5451 unsigned long info_size; /* Size of unwind info. */
5452 bfd_vma info_addr; /* starting address of unwind info. */
5453 bfd_vma seg_base; /* Starting address of segment. */
5454 Elf_Internal_Sym * symtab; /* The symbol table. */
5455 unsigned long nsyms; /* Number of symbols. */
5456 char * strtab; /* The string table. */
5457 unsigned long strtab_size; /* Size of string table. */
5460 static void
5461 find_symbol_for_address (Elf_Internal_Sym * symtab,
5462 unsigned long nsyms,
5463 const char * strtab,
5464 unsigned long strtab_size,
5465 struct absaddr addr,
5466 const char ** symname,
5467 bfd_vma * offset)
5469 bfd_vma dist = 0x100000;
5470 Elf_Internal_Sym * sym;
5471 Elf_Internal_Sym * best = NULL;
5472 unsigned long i;
5474 REMOVE_ARCH_BITS (addr.offset);
5476 for (i = 0, sym = symtab; i < nsyms; ++i, ++sym)
5478 bfd_vma value = sym->st_value;
5480 REMOVE_ARCH_BITS (value);
5482 if (ELF_ST_TYPE (sym->st_info) == STT_FUNC
5483 && sym->st_name != 0
5484 && (addr.section == SHN_UNDEF || addr.section == sym->st_shndx)
5485 && addr.offset >= value
5486 && addr.offset - value < dist)
5488 best = sym;
5489 dist = addr.offset - value;
5490 if (!dist)
5491 break;
5494 if (best)
5496 *symname = (best->st_name >= strtab_size
5497 ? _("<corrupt>") : strtab + best->st_name);
5498 *offset = dist;
5499 return;
5501 *symname = NULL;
5502 *offset = addr.offset;
5505 static void
5506 dump_ia64_unwind (struct ia64_unw_aux_info * aux)
5508 struct ia64_unw_table_entry * tp;
5509 int in_body;
5511 for (tp = aux->table; tp < aux->table + aux->table_len; ++tp)
5513 bfd_vma stamp;
5514 bfd_vma offset;
5515 const unsigned char * dp;
5516 const unsigned char * head;
5517 const char * procname;
5519 find_symbol_for_address (aux->symtab, aux->nsyms, aux->strtab,
5520 aux->strtab_size, tp->start, &procname, &offset);
5522 fputs ("\n<", stdout);
5524 if (procname)
5526 fputs (procname, stdout);
5528 if (offset)
5529 printf ("+%lx", (unsigned long) offset);
5532 fputs (">: [", stdout);
5533 print_vma (tp->start.offset, PREFIX_HEX);
5534 fputc ('-', stdout);
5535 print_vma (tp->end.offset, PREFIX_HEX);
5536 printf ("], info at +0x%lx\n",
5537 (unsigned long) (tp->info.offset - aux->seg_base));
5539 head = aux->info + (ABSADDR (tp->info) - aux->info_addr);
5540 stamp = byte_get ((unsigned char *) head, sizeof (stamp));
5542 printf (" v%u, flags=0x%lx (%s%s), len=%lu bytes\n",
5543 (unsigned) UNW_VER (stamp),
5544 (unsigned long) ((stamp & UNW_FLAG_MASK) >> 32),
5545 UNW_FLAG_EHANDLER (stamp) ? " ehandler" : "",
5546 UNW_FLAG_UHANDLER (stamp) ? " uhandler" : "",
5547 (unsigned long) (eh_addr_size * UNW_LENGTH (stamp)));
5549 if (UNW_VER (stamp) != 1)
5551 printf (_("\tUnknown version.\n"));
5552 continue;
5555 in_body = 0;
5556 for (dp = head + 8; dp < head + 8 + eh_addr_size * UNW_LENGTH (stamp);)
5557 dp = unw_decode (dp, in_body, & in_body);
5561 static int
5562 slurp_ia64_unwind_table (FILE * file,
5563 struct ia64_unw_aux_info * aux,
5564 Elf_Internal_Shdr * sec)
5566 unsigned long size, nrelas, i;
5567 Elf_Internal_Phdr * seg;
5568 struct ia64_unw_table_entry * tep;
5569 Elf_Internal_Shdr * relsec;
5570 Elf_Internal_Rela * rela;
5571 Elf_Internal_Rela * rp;
5572 unsigned char * table;
5573 unsigned char * tp;
5574 Elf_Internal_Sym * sym;
5575 const char * relname;
5577 /* First, find the starting address of the segment that includes
5578 this section: */
5580 if (elf_header.e_phnum)
5582 if (! get_program_headers (file))
5583 return 0;
5585 for (seg = program_headers;
5586 seg < program_headers + elf_header.e_phnum;
5587 ++seg)
5589 if (seg->p_type != PT_LOAD)
5590 continue;
5592 if (sec->sh_addr >= seg->p_vaddr
5593 && (sec->sh_addr + sec->sh_size <= seg->p_vaddr + seg->p_memsz))
5595 aux->seg_base = seg->p_vaddr;
5596 break;
5601 /* Second, build the unwind table from the contents of the unwind section: */
5602 size = sec->sh_size;
5603 table = (unsigned char *) get_data (NULL, file, sec->sh_offset, 1, size,
5604 _("unwind table"));
5605 if (!table)
5606 return 0;
5608 aux->table = (struct ia64_unw_table_entry *)
5609 xcmalloc (size / (3 * eh_addr_size), sizeof (aux->table[0]));
5610 tep = aux->table;
5611 for (tp = table; tp < table + size; ++tep)
5613 tep->start.section = SHN_UNDEF;
5614 tep->end.section = SHN_UNDEF;
5615 tep->info.section = SHN_UNDEF;
5616 tep->start.offset = byte_get (tp, eh_addr_size); tp += eh_addr_size;
5617 tep->end.offset = byte_get (tp, eh_addr_size); tp += eh_addr_size;
5618 tep->info.offset = byte_get (tp, eh_addr_size); tp += eh_addr_size;
5619 tep->start.offset += aux->seg_base;
5620 tep->end.offset += aux->seg_base;
5621 tep->info.offset += aux->seg_base;
5623 free (table);
5625 /* Third, apply any relocations to the unwind table: */
5626 for (relsec = section_headers;
5627 relsec < section_headers + elf_header.e_shnum;
5628 ++relsec)
5630 if (relsec->sh_type != SHT_RELA
5631 || relsec->sh_info >= elf_header.e_shnum
5632 || section_headers + relsec->sh_info != sec)
5633 continue;
5635 if (!slurp_rela_relocs (file, relsec->sh_offset, relsec->sh_size,
5636 & rela, & nrelas))
5637 return 0;
5639 for (rp = rela; rp < rela + nrelas; ++rp)
5641 relname = elf_ia64_reloc_type (get_reloc_type (rp->r_info));
5642 sym = aux->symtab + get_reloc_symindex (rp->r_info);
5644 if (! const_strneq (relname, "R_IA64_SEGREL"))
5646 warn (_("Skipping unexpected relocation type %s\n"), relname);
5647 continue;
5650 i = rp->r_offset / (3 * eh_addr_size);
5652 switch (rp->r_offset/eh_addr_size % 3)
5654 case 0:
5655 aux->table[i].start.section = sym->st_shndx;
5656 aux->table[i].start.offset = rp->r_addend + sym->st_value;
5657 break;
5658 case 1:
5659 aux->table[i].end.section = sym->st_shndx;
5660 aux->table[i].end.offset = rp->r_addend + sym->st_value;
5661 break;
5662 case 2:
5663 aux->table[i].info.section = sym->st_shndx;
5664 aux->table[i].info.offset = rp->r_addend + sym->st_value;
5665 break;
5666 default:
5667 break;
5671 free (rela);
5674 aux->table_len = size / (3 * eh_addr_size);
5675 return 1;
5678 static int
5679 ia64_process_unwind (FILE * file)
5681 Elf_Internal_Shdr * sec;
5682 Elf_Internal_Shdr * unwsec = NULL;
5683 Elf_Internal_Shdr * strsec;
5684 unsigned long i, unwcount = 0, unwstart = 0;
5685 struct ia64_unw_aux_info aux;
5687 memset (& aux, 0, sizeof (aux));
5689 for (i = 0, sec = section_headers; i < elf_header.e_shnum; ++i, ++sec)
5691 if (sec->sh_type == SHT_SYMTAB
5692 && sec->sh_link < elf_header.e_shnum)
5694 aux.nsyms = sec->sh_size / sec->sh_entsize;
5695 aux.symtab = GET_ELF_SYMBOLS (file, sec);
5697 strsec = section_headers + sec->sh_link;
5698 aux.strtab = (char *) get_data (NULL, file, strsec->sh_offset,
5699 1, strsec->sh_size,
5700 _("string table"));
5701 aux.strtab_size = aux.strtab != NULL ? strsec->sh_size : 0;
5703 else if (sec->sh_type == SHT_IA_64_UNWIND)
5704 unwcount++;
5707 if (!unwcount)
5708 printf (_("\nThere are no unwind sections in this file.\n"));
5710 while (unwcount-- > 0)
5712 char * suffix;
5713 size_t len, len2;
5715 for (i = unwstart, sec = section_headers + unwstart;
5716 i < elf_header.e_shnum; ++i, ++sec)
5717 if (sec->sh_type == SHT_IA_64_UNWIND)
5719 unwsec = sec;
5720 break;
5723 unwstart = i + 1;
5724 len = sizeof (ELF_STRING_ia64_unwind_once) - 1;
5726 if ((unwsec->sh_flags & SHF_GROUP) != 0)
5728 /* We need to find which section group it is in. */
5729 struct group_list * g = section_headers_groups [i]->root;
5731 for (; g != NULL; g = g->next)
5733 sec = section_headers + g->section_index;
5735 if (streq (SECTION_NAME (sec), ELF_STRING_ia64_unwind_info))
5736 break;
5739 if (g == NULL)
5740 i = elf_header.e_shnum;
5742 else if (strneq (SECTION_NAME (unwsec), ELF_STRING_ia64_unwind_once, len))
5744 /* .gnu.linkonce.ia64unw.FOO -> .gnu.linkonce.ia64unwi.FOO. */
5745 len2 = sizeof (ELF_STRING_ia64_unwind_info_once) - 1;
5746 suffix = SECTION_NAME (unwsec) + len;
5747 for (i = 0, sec = section_headers; i < elf_header.e_shnum;
5748 ++i, ++sec)
5749 if (strneq (SECTION_NAME (sec), ELF_STRING_ia64_unwind_info_once, len2)
5750 && streq (SECTION_NAME (sec) + len2, suffix))
5751 break;
5753 else
5755 /* .IA_64.unwindFOO -> .IA_64.unwind_infoFOO
5756 .IA_64.unwind or BAR -> .IA_64.unwind_info. */
5757 len = sizeof (ELF_STRING_ia64_unwind) - 1;
5758 len2 = sizeof (ELF_STRING_ia64_unwind_info) - 1;
5759 suffix = "";
5760 if (strneq (SECTION_NAME (unwsec), ELF_STRING_ia64_unwind, len))
5761 suffix = SECTION_NAME (unwsec) + len;
5762 for (i = 0, sec = section_headers; i < elf_header.e_shnum;
5763 ++i, ++sec)
5764 if (strneq (SECTION_NAME (sec), ELF_STRING_ia64_unwind_info, len2)
5765 && streq (SECTION_NAME (sec) + len2, suffix))
5766 break;
5769 if (i == elf_header.e_shnum)
5771 printf (_("\nCould not find unwind info section for "));
5773 if (string_table == NULL)
5774 printf ("%d", unwsec->sh_name);
5775 else
5776 printf (_("'%s'"), SECTION_NAME (unwsec));
5778 else
5780 aux.info_size = sec->sh_size;
5781 aux.info_addr = sec->sh_addr;
5782 aux.info = (unsigned char *) get_data (NULL, file, sec->sh_offset, 1,
5783 aux.info_size,
5784 _("unwind info"));
5786 printf (_("\nUnwind section "));
5788 if (string_table == NULL)
5789 printf ("%d", unwsec->sh_name);
5790 else
5791 printf (_("'%s'"), SECTION_NAME (unwsec));
5793 printf (_(" at offset 0x%lx contains %lu entries:\n"),
5794 (unsigned long) unwsec->sh_offset,
5795 (unsigned long) (unwsec->sh_size / (3 * eh_addr_size)));
5797 (void) slurp_ia64_unwind_table (file, & aux, unwsec);
5799 if (aux.table_len > 0)
5800 dump_ia64_unwind (& aux);
5802 if (aux.table)
5803 free ((char *) aux.table);
5804 if (aux.info)
5805 free ((char *) aux.info);
5806 aux.table = NULL;
5807 aux.info = NULL;
5811 if (aux.symtab)
5812 free (aux.symtab);
5813 if (aux.strtab)
5814 free ((char *) aux.strtab);
5816 return 1;
5819 struct hppa_unw_table_entry
5821 struct absaddr start;
5822 struct absaddr end;
5823 unsigned int Cannot_unwind:1; /* 0 */
5824 unsigned int Millicode:1; /* 1 */
5825 unsigned int Millicode_save_sr0:1; /* 2 */
5826 unsigned int Region_description:2; /* 3..4 */
5827 unsigned int reserved1:1; /* 5 */
5828 unsigned int Entry_SR:1; /* 6 */
5829 unsigned int Entry_FR:4; /* number saved */ /* 7..10 */
5830 unsigned int Entry_GR:5; /* number saved */ /* 11..15 */
5831 unsigned int Args_stored:1; /* 16 */
5832 unsigned int Variable_Frame:1; /* 17 */
5833 unsigned int Separate_Package_Body:1; /* 18 */
5834 unsigned int Frame_Extension_Millicode:1; /* 19 */
5835 unsigned int Stack_Overflow_Check:1; /* 20 */
5836 unsigned int Two_Instruction_SP_Increment:1; /* 21 */
5837 unsigned int Ada_Region:1; /* 22 */
5838 unsigned int cxx_info:1; /* 23 */
5839 unsigned int cxx_try_catch:1; /* 24 */
5840 unsigned int sched_entry_seq:1; /* 25 */
5841 unsigned int reserved2:1; /* 26 */
5842 unsigned int Save_SP:1; /* 27 */
5843 unsigned int Save_RP:1; /* 28 */
5844 unsigned int Save_MRP_in_frame:1; /* 29 */
5845 unsigned int extn_ptr_defined:1; /* 30 */
5846 unsigned int Cleanup_defined:1; /* 31 */
5848 unsigned int MPE_XL_interrupt_marker:1; /* 0 */
5849 unsigned int HP_UX_interrupt_marker:1; /* 1 */
5850 unsigned int Large_frame:1; /* 2 */
5851 unsigned int Pseudo_SP_Set:1; /* 3 */
5852 unsigned int reserved4:1; /* 4 */
5853 unsigned int Total_frame_size:27; /* 5..31 */
5856 struct hppa_unw_aux_info
5858 struct hppa_unw_table_entry *table; /* Unwind table. */
5859 unsigned long table_len; /* Length of unwind table. */
5860 bfd_vma seg_base; /* Starting address of segment. */
5861 Elf_Internal_Sym * symtab; /* The symbol table. */
5862 unsigned long nsyms; /* Number of symbols. */
5863 char * strtab; /* The string table. */
5864 unsigned long strtab_size; /* Size of string table. */
5867 static void
5868 dump_hppa_unwind (struct hppa_unw_aux_info * aux)
5870 struct hppa_unw_table_entry * tp;
5872 for (tp = aux->table; tp < aux->table + aux->table_len; ++tp)
5874 bfd_vma offset;
5875 const char * procname;
5877 find_symbol_for_address (aux->symtab, aux->nsyms, aux->strtab,
5878 aux->strtab_size, tp->start, &procname,
5879 &offset);
5881 fputs ("\n<", stdout);
5883 if (procname)
5885 fputs (procname, stdout);
5887 if (offset)
5888 printf ("+%lx", (unsigned long) offset);
5891 fputs (">: [", stdout);
5892 print_vma (tp->start.offset, PREFIX_HEX);
5893 fputc ('-', stdout);
5894 print_vma (tp->end.offset, PREFIX_HEX);
5895 printf ("]\n\t");
5897 #define PF(_m) if (tp->_m) printf (#_m " ");
5898 #define PV(_m) if (tp->_m) printf (#_m "=%d ", tp->_m);
5899 PF(Cannot_unwind);
5900 PF(Millicode);
5901 PF(Millicode_save_sr0);
5902 /* PV(Region_description); */
5903 PF(Entry_SR);
5904 PV(Entry_FR);
5905 PV(Entry_GR);
5906 PF(Args_stored);
5907 PF(Variable_Frame);
5908 PF(Separate_Package_Body);
5909 PF(Frame_Extension_Millicode);
5910 PF(Stack_Overflow_Check);
5911 PF(Two_Instruction_SP_Increment);
5912 PF(Ada_Region);
5913 PF(cxx_info);
5914 PF(cxx_try_catch);
5915 PF(sched_entry_seq);
5916 PF(Save_SP);
5917 PF(Save_RP);
5918 PF(Save_MRP_in_frame);
5919 PF(extn_ptr_defined);
5920 PF(Cleanup_defined);
5921 PF(MPE_XL_interrupt_marker);
5922 PF(HP_UX_interrupt_marker);
5923 PF(Large_frame);
5924 PF(Pseudo_SP_Set);
5925 PV(Total_frame_size);
5926 #undef PF
5927 #undef PV
5930 printf ("\n");
5933 static int
5934 slurp_hppa_unwind_table (FILE * file,
5935 struct hppa_unw_aux_info * aux,
5936 Elf_Internal_Shdr * sec)
5938 unsigned long size, unw_ent_size, nentries, nrelas, i;
5939 Elf_Internal_Phdr * seg;
5940 struct hppa_unw_table_entry * tep;
5941 Elf_Internal_Shdr * relsec;
5942 Elf_Internal_Rela * rela;
5943 Elf_Internal_Rela * rp;
5944 unsigned char * table;
5945 unsigned char * tp;
5946 Elf_Internal_Sym * sym;
5947 const char * relname;
5949 /* First, find the starting address of the segment that includes
5950 this section. */
5952 if (elf_header.e_phnum)
5954 if (! get_program_headers (file))
5955 return 0;
5957 for (seg = program_headers;
5958 seg < program_headers + elf_header.e_phnum;
5959 ++seg)
5961 if (seg->p_type != PT_LOAD)
5962 continue;
5964 if (sec->sh_addr >= seg->p_vaddr
5965 && (sec->sh_addr + sec->sh_size <= seg->p_vaddr + seg->p_memsz))
5967 aux->seg_base = seg->p_vaddr;
5968 break;
5973 /* Second, build the unwind table from the contents of the unwind
5974 section. */
5975 size = sec->sh_size;
5976 table = (unsigned char *) get_data (NULL, file, sec->sh_offset, 1, size,
5977 _("unwind table"));
5978 if (!table)
5979 return 0;
5981 unw_ent_size = 16;
5982 nentries = size / unw_ent_size;
5983 size = unw_ent_size * nentries;
5985 tep = aux->table = (struct hppa_unw_table_entry *)
5986 xcmalloc (nentries, sizeof (aux->table[0]));
5988 for (tp = table; tp < table + size; tp += unw_ent_size, ++tep)
5990 unsigned int tmp1, tmp2;
5992 tep->start.section = SHN_UNDEF;
5993 tep->end.section = SHN_UNDEF;
5995 tep->start.offset = byte_get ((unsigned char *) tp + 0, 4);
5996 tep->end.offset = byte_get ((unsigned char *) tp + 4, 4);
5997 tmp1 = byte_get ((unsigned char *) tp + 8, 4);
5998 tmp2 = byte_get ((unsigned char *) tp + 12, 4);
6000 tep->start.offset += aux->seg_base;
6001 tep->end.offset += aux->seg_base;
6003 tep->Cannot_unwind = (tmp1 >> 31) & 0x1;
6004 tep->Millicode = (tmp1 >> 30) & 0x1;
6005 tep->Millicode_save_sr0 = (tmp1 >> 29) & 0x1;
6006 tep->Region_description = (tmp1 >> 27) & 0x3;
6007 tep->reserved1 = (tmp1 >> 26) & 0x1;
6008 tep->Entry_SR = (tmp1 >> 25) & 0x1;
6009 tep->Entry_FR = (tmp1 >> 21) & 0xf;
6010 tep->Entry_GR = (tmp1 >> 16) & 0x1f;
6011 tep->Args_stored = (tmp1 >> 15) & 0x1;
6012 tep->Variable_Frame = (tmp1 >> 14) & 0x1;
6013 tep->Separate_Package_Body = (tmp1 >> 13) & 0x1;
6014 tep->Frame_Extension_Millicode = (tmp1 >> 12) & 0x1;
6015 tep->Stack_Overflow_Check = (tmp1 >> 11) & 0x1;
6016 tep->Two_Instruction_SP_Increment = (tmp1 >> 10) & 0x1;
6017 tep->Ada_Region = (tmp1 >> 9) & 0x1;
6018 tep->cxx_info = (tmp1 >> 8) & 0x1;
6019 tep->cxx_try_catch = (tmp1 >> 7) & 0x1;
6020 tep->sched_entry_seq = (tmp1 >> 6) & 0x1;
6021 tep->reserved2 = (tmp1 >> 5) & 0x1;
6022 tep->Save_SP = (tmp1 >> 4) & 0x1;
6023 tep->Save_RP = (tmp1 >> 3) & 0x1;
6024 tep->Save_MRP_in_frame = (tmp1 >> 2) & 0x1;
6025 tep->extn_ptr_defined = (tmp1 >> 1) & 0x1;
6026 tep->Cleanup_defined = tmp1 & 0x1;
6028 tep->MPE_XL_interrupt_marker = (tmp2 >> 31) & 0x1;
6029 tep->HP_UX_interrupt_marker = (tmp2 >> 30) & 0x1;
6030 tep->Large_frame = (tmp2 >> 29) & 0x1;
6031 tep->Pseudo_SP_Set = (tmp2 >> 28) & 0x1;
6032 tep->reserved4 = (tmp2 >> 27) & 0x1;
6033 tep->Total_frame_size = tmp2 & 0x7ffffff;
6035 free (table);
6037 /* Third, apply any relocations to the unwind table. */
6038 for (relsec = section_headers;
6039 relsec < section_headers + elf_header.e_shnum;
6040 ++relsec)
6042 if (relsec->sh_type != SHT_RELA
6043 || relsec->sh_info >= elf_header.e_shnum
6044 || section_headers + relsec->sh_info != sec)
6045 continue;
6047 if (!slurp_rela_relocs (file, relsec->sh_offset, relsec->sh_size,
6048 & rela, & nrelas))
6049 return 0;
6051 for (rp = rela; rp < rela + nrelas; ++rp)
6053 relname = elf_hppa_reloc_type (get_reloc_type (rp->r_info));
6054 sym = aux->symtab + get_reloc_symindex (rp->r_info);
6056 /* R_PARISC_SEGREL32 or R_PARISC_SEGREL64. */
6057 if (! const_strneq (relname, "R_PARISC_SEGREL"))
6059 warn (_("Skipping unexpected relocation type %s\n"), relname);
6060 continue;
6063 i = rp->r_offset / unw_ent_size;
6065 switch ((rp->r_offset % unw_ent_size) / eh_addr_size)
6067 case 0:
6068 aux->table[i].start.section = sym->st_shndx;
6069 aux->table[i].start.offset = sym->st_value + rp->r_addend;
6070 break;
6071 case 1:
6072 aux->table[i].end.section = sym->st_shndx;
6073 aux->table[i].end.offset = sym->st_value + rp->r_addend;
6074 break;
6075 default:
6076 break;
6080 free (rela);
6083 aux->table_len = nentries;
6085 return 1;
6088 static int
6089 hppa_process_unwind (FILE * file)
6091 struct hppa_unw_aux_info aux;
6092 Elf_Internal_Shdr * unwsec = NULL;
6093 Elf_Internal_Shdr * strsec;
6094 Elf_Internal_Shdr * sec;
6095 unsigned long i;
6097 memset (& aux, 0, sizeof (aux));
6099 if (string_table == NULL)
6100 return 1;
6102 for (i = 0, sec = section_headers; i < elf_header.e_shnum; ++i, ++sec)
6104 if (sec->sh_type == SHT_SYMTAB
6105 && sec->sh_link < elf_header.e_shnum)
6107 aux.nsyms = sec->sh_size / sec->sh_entsize;
6108 aux.symtab = GET_ELF_SYMBOLS (file, sec);
6110 strsec = section_headers + sec->sh_link;
6111 aux.strtab = (char *) get_data (NULL, file, strsec->sh_offset,
6112 1, strsec->sh_size,
6113 _("string table"));
6114 aux.strtab_size = aux.strtab != NULL ? strsec->sh_size : 0;
6116 else if (streq (SECTION_NAME (sec), ".PARISC.unwind"))
6117 unwsec = sec;
6120 if (!unwsec)
6121 printf (_("\nThere are no unwind sections in this file.\n"));
6123 for (i = 0, sec = section_headers; i < elf_header.e_shnum; ++i, ++sec)
6125 if (streq (SECTION_NAME (sec), ".PARISC.unwind"))
6127 printf (_("\nUnwind section "));
6128 printf (_("'%s'"), SECTION_NAME (sec));
6130 printf (_(" at offset 0x%lx contains %lu entries:\n"),
6131 (unsigned long) sec->sh_offset,
6132 (unsigned long) (sec->sh_size / (2 * eh_addr_size + 8)));
6134 slurp_hppa_unwind_table (file, &aux, sec);
6135 if (aux.table_len > 0)
6136 dump_hppa_unwind (&aux);
6138 if (aux.table)
6139 free ((char *) aux.table);
6140 aux.table = NULL;
6144 if (aux.symtab)
6145 free (aux.symtab);
6146 if (aux.strtab)
6147 free ((char *) aux.strtab);
6149 return 1;
6152 struct arm_section
6154 unsigned char *data;
6156 Elf_Internal_Shdr *sec;
6157 Elf_Internal_Rela *rela;
6158 unsigned long nrelas;
6159 unsigned int rel_type;
6161 Elf_Internal_Rela *next_rela;
6164 struct arm_unw_aux_info
6166 FILE *file;
6168 Elf_Internal_Sym *symtab; /* The symbol table. */
6169 unsigned long nsyms; /* Number of symbols. */
6170 char *strtab; /* The string table. */
6171 unsigned long strtab_size; /* Size of string table. */
6174 static const char *
6175 arm_print_vma_and_name (struct arm_unw_aux_info *aux,
6176 bfd_vma fn, struct absaddr addr)
6178 const char *procname;
6179 bfd_vma sym_offset;
6181 if (addr.section == SHN_UNDEF)
6182 addr.offset = fn;
6184 find_symbol_for_address (aux->symtab, aux->nsyms, aux->strtab,
6185 aux->strtab_size, addr, &procname,
6186 &sym_offset);
6188 print_vma (fn, PREFIX_HEX);
6190 if (procname)
6192 fputs (" <", stdout);
6193 fputs (procname, stdout);
6195 if (sym_offset)
6196 printf ("+0x%lx", (unsigned long) sym_offset);
6197 fputc ('>', stdout);
6200 return procname;
6203 static void
6204 arm_free_section (struct arm_section *arm_sec)
6206 if (arm_sec->data != NULL)
6207 free (arm_sec->data);
6209 if (arm_sec->rela != NULL)
6210 free (arm_sec->rela);
6213 static int
6214 arm_section_get_word (struct arm_unw_aux_info *aux,
6215 struct arm_section *arm_sec,
6216 Elf_Internal_Shdr *sec, bfd_vma word_offset,
6217 unsigned int *wordp, struct absaddr *addr)
6219 Elf_Internal_Rela *rp;
6220 Elf_Internal_Sym *sym;
6221 const char * relname;
6222 unsigned int word;
6223 bfd_boolean wrapped;
6225 addr->section = SHN_UNDEF;
6226 addr->offset = 0;
6228 if (sec != arm_sec->sec)
6230 Elf_Internal_Shdr *relsec;
6232 arm_free_section (arm_sec);
6234 arm_sec->sec = sec;
6235 arm_sec->data = get_data (NULL, aux->file, sec->sh_offset, 1,
6236 sec->sh_size, _("unwind data"));
6238 arm_sec->rela = NULL;
6239 arm_sec->nrelas = 0;
6241 for (relsec = section_headers;
6242 relsec < section_headers + elf_header.e_shnum;
6243 ++relsec)
6245 if (relsec->sh_info >= elf_header.e_shnum
6246 || section_headers + relsec->sh_info != sec)
6247 continue;
6249 if (relsec->sh_type == SHT_REL)
6251 if (!slurp_rel_relocs (aux->file, relsec->sh_offset,
6252 relsec->sh_size,
6253 & arm_sec->rela, & arm_sec->nrelas))
6254 return 0;
6255 break;
6257 else if (relsec->sh_type == SHT_RELA)
6259 if (!slurp_rela_relocs (aux->file, relsec->sh_offset,
6260 relsec->sh_size,
6261 & arm_sec->rela, & arm_sec->nrelas))
6262 return 0;
6263 break;
6267 arm_sec->next_rela = arm_sec->rela;
6270 if (arm_sec->data == NULL)
6271 return 0;
6273 word = byte_get (arm_sec->data + word_offset, 4);
6275 wrapped = FALSE;
6276 for (rp = arm_sec->next_rela; rp != arm_sec->rela + arm_sec->nrelas; rp++)
6278 bfd_vma prelval, offset;
6280 if (rp->r_offset > word_offset && !wrapped)
6282 rp = arm_sec->rela;
6283 wrapped = TRUE;
6285 if (rp->r_offset > word_offset)
6286 break;
6288 if (rp->r_offset & 3)
6290 warn (_("Skipping unexpected relocation at offset 0x%lx\n"),
6291 (unsigned long) rp->r_offset);
6292 continue;
6295 if (rp->r_offset < word_offset)
6296 continue;
6298 relname = elf_arm_reloc_type (ELF32_R_TYPE (rp->r_info));
6300 if (streq (relname, "R_ARM_NONE"))
6301 continue;
6303 if (! streq (relname, "R_ARM_PREL31"))
6305 warn (_("Skipping unexpected relocation type %s\n"), relname);
6306 continue;
6309 sym = aux->symtab + ELF32_R_SYM (rp->r_info);
6311 if (arm_sec->rel_type == SHT_REL)
6313 offset = word & 0x7fffffff;
6314 if (offset & 0x40000000)
6315 offset |= ~ (bfd_vma) 0x7fffffff;
6317 else
6318 offset = rp->r_addend;
6320 offset += sym->st_value;
6321 prelval = offset - (arm_sec->sec->sh_addr + rp->r_offset);
6323 word = (word & ~ (bfd_vma) 0x7fffffff) | (prelval & 0x7fffffff);
6324 addr->section = sym->st_shndx;
6325 addr->offset = offset;
6326 break;
6329 *wordp = word;
6330 arm_sec->next_rela = rp;
6332 return 1;
6335 static void
6336 decode_arm_unwind (struct arm_unw_aux_info *aux,
6337 unsigned int word, unsigned int remaining,
6338 bfd_vma data_offset, Elf_Internal_Shdr *data_sec,
6339 struct arm_section *data_arm_sec)
6341 int per_index;
6342 unsigned int more_words;
6343 struct absaddr addr;
6345 #define ADVANCE \
6346 if (remaining == 0 && more_words) \
6348 data_offset += 4; \
6349 if (!arm_section_get_word (aux, data_arm_sec, data_sec, \
6350 data_offset, &word, &addr)) \
6351 return; \
6352 remaining = 4; \
6353 more_words--; \
6356 #define GET_OP(OP) \
6357 ADVANCE; \
6358 if (remaining) \
6360 remaining--; \
6361 (OP) = word >> 24; \
6362 word <<= 8; \
6364 else \
6366 printf (_("[Truncated opcode]\n")); \
6367 return; \
6369 printf ("0x%02x ", OP)
6371 if (remaining == 0)
6373 /* Fetch the first word. */
6374 if (!arm_section_get_word (aux, data_arm_sec, data_sec, data_offset,
6375 &word, &addr))
6376 return;
6377 remaining = 4;
6380 if ((word & 0x80000000) == 0)
6382 /* Expand prel31 for personality routine. */
6383 bfd_vma fn;
6384 const char *procname;
6386 fn = word;
6387 if (fn & 0x40000000)
6388 fn |= ~ (bfd_vma) 0x7fffffff;
6389 fn = fn + data_sec->sh_addr + data_offset;
6391 printf (_(" Personality routine: "));
6392 procname = arm_print_vma_and_name (aux, fn, addr);
6393 fputc ('\n', stdout);
6395 /* The GCC personality routines use the standard compact
6396 encoding, starting with one byte giving the number of
6397 words. */
6398 if (procname != NULL
6399 && (const_strneq (procname, "__gcc_personality_v0")
6400 || const_strneq (procname, "__gxx_personality_v0")
6401 || const_strneq (procname, "__gcj_personality_v0")
6402 || const_strneq (procname, "__gnu_objc_personality_v0")))
6404 remaining = 0;
6405 more_words = 1;
6406 ADVANCE;
6407 if (!remaining)
6409 printf (_(" [Truncated data]\n"));
6410 return;
6412 more_words = word >> 24;
6413 word <<= 8;
6414 remaining--;
6416 else
6417 return;
6419 else
6421 per_index = (word >> 24) & 0x7f;
6422 if (per_index != 0 && per_index != 1 && per_index != 2)
6424 printf (_(" [reserved compact index %d]\n"), per_index);
6425 return;
6428 printf (_(" Compact model %d\n"), per_index);
6429 if (per_index == 0)
6431 more_words = 0;
6432 word <<= 8;
6433 remaining--;
6435 else
6437 more_words = (word >> 16) & 0xff;
6438 word <<= 16;
6439 remaining -= 2;
6443 /* Decode the unwinding instructions. */
6444 while (1)
6446 unsigned int op, op2;
6448 ADVANCE;
6449 if (remaining == 0)
6450 break;
6451 remaining--;
6452 op = word >> 24;
6453 word <<= 8;
6455 printf (" 0x%02x ", op);
6457 if ((op & 0xc0) == 0x00)
6459 int offset = ((op & 0x3f) << 2) + 4;
6460 printf (" vsp = vsp + %d", offset);
6462 else if ((op & 0xc0) == 0x40)
6464 int offset = ((op & 0x3f) << 2) + 4;
6465 printf (" vsp = vsp - %d", offset);
6467 else if ((op & 0xf0) == 0x80)
6469 GET_OP (op2);
6470 if (op == 0x80 && op2 == 0)
6471 printf (_("Refuse to unwind"));
6472 else
6474 unsigned int mask = ((op & 0x0f) << 8) | op2;
6475 int first = 1;
6476 int i;
6478 printf ("pop {");
6479 for (i = 0; i < 12; i++)
6480 if (mask & (1 << i))
6482 if (first)
6483 first = 0;
6484 else
6485 printf (", ");
6486 printf ("r%d", 4 + i);
6488 printf ("}");
6491 else if ((op & 0xf0) == 0x90)
6493 if (op == 0x9d || op == 0x9f)
6494 printf (_(" [Reserved]"));
6495 else
6496 printf (" vsp = r%d", op & 0x0f);
6498 else if ((op & 0xf0) == 0xa0)
6500 int end = 4 + (op & 0x07);
6501 int first = 1;
6502 int i;
6503 printf (" pop {");
6504 for (i = 4; i <= end; i++)
6506 if (first)
6507 first = 0;
6508 else
6509 printf (", ");
6510 printf ("r%d", i);
6512 if (op & 0x08)
6514 if (first)
6515 printf (", ");
6516 printf ("r14");
6518 printf ("}");
6520 else if (op == 0xb0)
6521 printf (_(" finish"));
6522 else if (op == 0xb1)
6524 GET_OP (op2);
6525 if (op2 == 0 || (op2 & 0xf0) != 0)
6526 printf (_("[Spare]"));
6527 else
6529 unsigned int mask = op2 & 0x0f;
6530 int first = 1;
6531 int i;
6532 printf ("pop {");
6533 for (i = 0; i < 12; i++)
6534 if (mask & (1 << i))
6536 if (first)
6537 first = 0;
6538 else
6539 printf (", ");
6540 printf ("r%d", i);
6542 printf ("}");
6545 else if (op == 0xb2)
6547 unsigned char buf[9];
6548 unsigned int i, len;
6549 unsigned long offset;
6550 for (i = 0; i < sizeof (buf); i++)
6552 GET_OP (buf[i]);
6553 if ((buf[i] & 0x80) == 0)
6554 break;
6556 assert (i < sizeof (buf));
6557 offset = read_uleb128 (buf, &len);
6558 assert (len == i + 1);
6559 offset = offset * 4 + 0x204;
6560 printf ("vsp = vsp + %ld", offset);
6562 else
6564 if (op == 0xb3 || op == 0xc6 || op == 0xc7 || op == 0xc8 || op == 0xc9)
6566 GET_OP (op2);
6567 printf (_("[unsupported two-byte opcode]"));
6569 else
6571 printf (_(" [unsupported opcode]"));
6574 printf ("\n");
6577 /* Decode the descriptors. Not implemented. */
6580 static void
6581 dump_arm_unwind (struct arm_unw_aux_info *aux, Elf_Internal_Shdr *exidx_sec)
6583 struct arm_section exidx_arm_sec, extab_arm_sec;
6584 unsigned int i, exidx_len;
6586 memset (&exidx_arm_sec, 0, sizeof (exidx_arm_sec));
6587 memset (&extab_arm_sec, 0, sizeof (extab_arm_sec));
6588 exidx_len = exidx_sec->sh_size / 8;
6590 for (i = 0; i < exidx_len; i++)
6592 unsigned int exidx_fn, exidx_entry;
6593 struct absaddr fn_addr, entry_addr;
6594 bfd_vma fn;
6596 fputc ('\n', stdout);
6598 if (!arm_section_get_word (aux, &exidx_arm_sec, exidx_sec,
6599 8 * i, &exidx_fn, &fn_addr)
6600 || !arm_section_get_word (aux, &exidx_arm_sec, exidx_sec,
6601 8 * i + 4, &exidx_entry, &entry_addr))
6603 arm_free_section (&exidx_arm_sec);
6604 arm_free_section (&extab_arm_sec);
6605 return;
6608 fn = exidx_fn & 0x7fffffff;
6609 if (fn & 0x40000000)
6610 fn |= ~ (bfd_vma) 0x7fffffff;
6611 fn = fn + exidx_sec->sh_addr + 8 * i;
6613 arm_print_vma_and_name (aux, fn, entry_addr);
6614 fputs (": ", stdout);
6616 if (exidx_entry == 1)
6618 print_vma (exidx_entry, PREFIX_HEX);
6619 fputs (" [cantunwind]\n", stdout);
6621 else if (exidx_entry & 0x80000000)
6623 print_vma (exidx_entry, PREFIX_HEX);
6624 fputc ('\n', stdout);
6625 decode_arm_unwind (aux, exidx_entry, 4, 0, NULL, NULL);
6627 else
6629 bfd_vma table, table_offset = 0;
6630 Elf_Internal_Shdr *table_sec;
6632 fputs ("@", stdout);
6633 table = exidx_entry;
6634 if (table & 0x40000000)
6635 table |= ~ (bfd_vma) 0x7fffffff;
6636 table = table + exidx_sec->sh_addr + 8 * i + 4;
6637 print_vma (table, PREFIX_HEX);
6638 printf ("\n");
6640 /* Locate the matching .ARM.extab. */
6641 if (entry_addr.section != SHN_UNDEF
6642 && entry_addr.section < elf_header.e_shnum)
6644 table_sec = section_headers + entry_addr.section;
6645 table_offset = entry_addr.offset;
6647 else
6649 table_sec = find_section_by_address (table);
6650 if (table_sec != NULL)
6651 table_offset = table - table_sec->sh_addr;
6653 if (table_sec == NULL)
6655 warn (_("Could not locate .ARM.extab section containing 0x%lx.\n"),
6656 (unsigned long) table);
6657 continue;
6659 decode_arm_unwind (aux, 0, 0, table_offset, table_sec,
6660 &extab_arm_sec);
6664 printf ("\n");
6666 arm_free_section (&exidx_arm_sec);
6667 arm_free_section (&extab_arm_sec);
6670 static int
6671 arm_process_unwind (FILE *file)
6673 struct arm_unw_aux_info aux;
6674 Elf_Internal_Shdr *unwsec = NULL;
6675 Elf_Internal_Shdr *strsec;
6676 Elf_Internal_Shdr *sec;
6677 unsigned long i;
6679 memset (& aux, 0, sizeof (aux));
6680 aux.file = file;
6682 if (string_table == NULL)
6683 return 1;
6685 for (i = 0, sec = section_headers; i < elf_header.e_shnum; ++i, ++sec)
6687 if (sec->sh_type == SHT_SYMTAB && sec->sh_link < elf_header.e_shnum)
6689 aux.nsyms = sec->sh_size / sec->sh_entsize;
6690 aux.symtab = GET_ELF_SYMBOLS (file, sec);
6692 strsec = section_headers + sec->sh_link;
6693 aux.strtab = get_data (NULL, file, strsec->sh_offset,
6694 1, strsec->sh_size, _("string table"));
6695 aux.strtab_size = aux.strtab != NULL ? strsec->sh_size : 0;
6697 else if (sec->sh_type == SHT_ARM_EXIDX)
6698 unwsec = sec;
6701 if (!unwsec)
6702 printf (_("\nThere are no unwind sections in this file.\n"));
6704 for (i = 0, sec = section_headers; i < elf_header.e_shnum; ++i, ++sec)
6706 if (sec->sh_type == SHT_ARM_EXIDX)
6708 printf (_("\nUnwind table index '%s' at offset 0x%lx contains %lu entries:\n"),
6709 SECTION_NAME (sec),
6710 (unsigned long) sec->sh_offset,
6711 (unsigned long) (sec->sh_size / (2 * eh_addr_size)));
6713 dump_arm_unwind (&aux, sec);
6717 if (aux.symtab)
6718 free (aux.symtab);
6719 if (aux.strtab)
6720 free ((char *) aux.strtab);
6722 return 1;
6725 static int
6726 process_unwind (FILE * file)
6728 struct unwind_handler
6730 int machtype;
6731 int (* handler)(FILE *);
6732 } handlers[] =
6734 { EM_ARM, arm_process_unwind },
6735 { EM_IA_64, ia64_process_unwind },
6736 { EM_PARISC, hppa_process_unwind },
6737 { 0, 0 }
6739 int i;
6741 if (!do_unwind)
6742 return 1;
6744 for (i = 0; handlers[i].handler != NULL; i++)
6745 if (elf_header.e_machine == handlers[i].machtype)
6746 return handlers[i].handler (file);
6748 printf (_("\nThere are no unwind sections in this file.\n"));
6749 return 1;
6752 static void
6753 dynamic_section_mips_val (Elf_Internal_Dyn * entry)
6755 switch (entry->d_tag)
6757 case DT_MIPS_FLAGS:
6758 if (entry->d_un.d_val == 0)
6759 printf (_("NONE\n"));
6760 else
6762 static const char * opts[] =
6764 "QUICKSTART", "NOTPOT", "NO_LIBRARY_REPLACEMENT",
6765 "NO_MOVE", "SGI_ONLY", "GUARANTEE_INIT", "DELTA_C_PLUS_PLUS",
6766 "GUARANTEE_START_INIT", "PIXIE", "DEFAULT_DELAY_LOAD",
6767 "REQUICKSTART", "REQUICKSTARTED", "CORD", "NO_UNRES_UNDEF",
6768 "RLD_ORDER_SAFE"
6770 unsigned int cnt;
6771 int first = 1;
6773 for (cnt = 0; cnt < ARRAY_SIZE (opts); ++cnt)
6774 if (entry->d_un.d_val & (1 << cnt))
6776 printf ("%s%s", first ? "" : " ", opts[cnt]);
6777 first = 0;
6779 puts ("");
6781 break;
6783 case DT_MIPS_IVERSION:
6784 if (VALID_DYNAMIC_NAME (entry->d_un.d_val))
6785 printf (_("Interface Version: %s\n"), GET_DYNAMIC_NAME (entry->d_un.d_val));
6786 else
6787 printf (_("<corrupt: %ld>\n"), (long) entry->d_un.d_ptr);
6788 break;
6790 case DT_MIPS_TIME_STAMP:
6792 char timebuf[20];
6793 struct tm * tmp;
6795 time_t atime = entry->d_un.d_val;
6796 tmp = gmtime (&atime);
6797 snprintf (timebuf, sizeof (timebuf), "%04u-%02u-%02uT%02u:%02u:%02u",
6798 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
6799 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
6800 printf (_("Time Stamp: %s\n"), timebuf);
6802 break;
6804 case DT_MIPS_RLD_VERSION:
6805 case DT_MIPS_LOCAL_GOTNO:
6806 case DT_MIPS_CONFLICTNO:
6807 case DT_MIPS_LIBLISTNO:
6808 case DT_MIPS_SYMTABNO:
6809 case DT_MIPS_UNREFEXTNO:
6810 case DT_MIPS_HIPAGENO:
6811 case DT_MIPS_DELTA_CLASS_NO:
6812 case DT_MIPS_DELTA_INSTANCE_NO:
6813 case DT_MIPS_DELTA_RELOC_NO:
6814 case DT_MIPS_DELTA_SYM_NO:
6815 case DT_MIPS_DELTA_CLASSSYM_NO:
6816 case DT_MIPS_COMPACT_SIZE:
6817 printf ("%ld\n", (long) entry->d_un.d_ptr);
6818 break;
6820 default:
6821 printf ("%#lx\n", (unsigned long) entry->d_un.d_ptr);
6825 static void
6826 dynamic_section_parisc_val (Elf_Internal_Dyn * entry)
6828 switch (entry->d_tag)
6830 case DT_HP_DLD_FLAGS:
6832 static struct
6834 long int bit;
6835 const char * str;
6837 flags[] =
6839 { DT_HP_DEBUG_PRIVATE, "HP_DEBUG_PRIVATE" },
6840 { DT_HP_DEBUG_CALLBACK, "HP_DEBUG_CALLBACK" },
6841 { DT_HP_DEBUG_CALLBACK_BOR, "HP_DEBUG_CALLBACK_BOR" },
6842 { DT_HP_NO_ENVVAR, "HP_NO_ENVVAR" },
6843 { DT_HP_BIND_NOW, "HP_BIND_NOW" },
6844 { DT_HP_BIND_NONFATAL, "HP_BIND_NONFATAL" },
6845 { DT_HP_BIND_VERBOSE, "HP_BIND_VERBOSE" },
6846 { DT_HP_BIND_RESTRICTED, "HP_BIND_RESTRICTED" },
6847 { DT_HP_BIND_SYMBOLIC, "HP_BIND_SYMBOLIC" },
6848 { DT_HP_RPATH_FIRST, "HP_RPATH_FIRST" },
6849 { DT_HP_BIND_DEPTH_FIRST, "HP_BIND_DEPTH_FIRST" },
6850 { DT_HP_GST, "HP_GST" },
6851 { DT_HP_SHLIB_FIXED, "HP_SHLIB_FIXED" },
6852 { DT_HP_MERGE_SHLIB_SEG, "HP_MERGE_SHLIB_SEG" },
6853 { DT_HP_NODELETE, "HP_NODELETE" },
6854 { DT_HP_GROUP, "HP_GROUP" },
6855 { DT_HP_PROTECT_LINKAGE_TABLE, "HP_PROTECT_LINKAGE_TABLE" }
6857 int first = 1;
6858 size_t cnt;
6859 bfd_vma val = entry->d_un.d_val;
6861 for (cnt = 0; cnt < ARRAY_SIZE (flags); ++cnt)
6862 if (val & flags[cnt].bit)
6864 if (! first)
6865 putchar (' ');
6866 fputs (flags[cnt].str, stdout);
6867 first = 0;
6868 val ^= flags[cnt].bit;
6871 if (val != 0 || first)
6873 if (! first)
6874 putchar (' ');
6875 print_vma (val, HEX);
6878 break;
6880 default:
6881 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
6882 break;
6884 putchar ('\n');
6887 #ifdef BFD64
6889 /* VMS vs Unix time offset and factor. */
6891 #define VMS_EPOCH_OFFSET 35067168000000000LL
6892 #define VMS_GRANULARITY_FACTOR 10000000
6894 /* Display a VMS time in a human readable format. */
6896 static void
6897 print_vms_time (bfd_int64_t vmstime)
6899 struct tm *tm;
6900 time_t unxtime;
6902 unxtime = (vmstime - VMS_EPOCH_OFFSET) / VMS_GRANULARITY_FACTOR;
6903 tm = gmtime (&unxtime);
6904 printf ("%04u-%02u-%02uT%02u:%02u:%02u",
6905 tm->tm_year + 1900, tm->tm_mon + 1, tm->tm_mday,
6906 tm->tm_hour, tm->tm_min, tm->tm_sec);
6908 #endif /* BFD64 */
6910 static void
6911 dynamic_section_ia64_val (Elf_Internal_Dyn * entry)
6913 switch (entry->d_tag)
6915 case DT_IA_64_PLT_RESERVE:
6916 /* First 3 slots reserved. */
6917 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
6918 printf (" -- ");
6919 print_vma (entry->d_un.d_ptr + (3 * 8), PREFIX_HEX);
6920 break;
6922 case DT_IA_64_VMS_LINKTIME:
6923 #ifdef BFD64
6924 print_vms_time (entry->d_un.d_val);
6925 #endif
6926 break;
6928 case DT_IA_64_VMS_LNKFLAGS:
6929 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
6930 if (entry->d_un.d_val & VMS_LF_CALL_DEBUG)
6931 printf (" CALL_DEBUG");
6932 if (entry->d_un.d_val & VMS_LF_NOP0BUFS)
6933 printf (" NOP0BUFS");
6934 if (entry->d_un.d_val & VMS_LF_P0IMAGE)
6935 printf (" P0IMAGE");
6936 if (entry->d_un.d_val & VMS_LF_MKTHREADS)
6937 printf (" MKTHREADS");
6938 if (entry->d_un.d_val & VMS_LF_UPCALLS)
6939 printf (" UPCALLS");
6940 if (entry->d_un.d_val & VMS_LF_IMGSTA)
6941 printf (" IMGSTA");
6942 if (entry->d_un.d_val & VMS_LF_INITIALIZE)
6943 printf (" INITIALIZE");
6944 if (entry->d_un.d_val & VMS_LF_MAIN)
6945 printf (" MAIN");
6946 if (entry->d_un.d_val & VMS_LF_EXE_INIT)
6947 printf (" EXE_INIT");
6948 if (entry->d_un.d_val & VMS_LF_TBK_IN_IMG)
6949 printf (" TBK_IN_IMG");
6950 if (entry->d_un.d_val & VMS_LF_DBG_IN_IMG)
6951 printf (" DBG_IN_IMG");
6952 if (entry->d_un.d_val & VMS_LF_TBK_IN_DSF)
6953 printf (" TBK_IN_DSF");
6954 if (entry->d_un.d_val & VMS_LF_DBG_IN_DSF)
6955 printf (" DBG_IN_DSF");
6956 if (entry->d_un.d_val & VMS_LF_SIGNATURES)
6957 printf (" SIGNATURES");
6958 if (entry->d_un.d_val & VMS_LF_REL_SEG_OFF)
6959 printf (" REL_SEG_OFF");
6960 break;
6962 default:
6963 print_vma (entry->d_un.d_ptr, PREFIX_HEX);
6964 break;
6966 putchar ('\n');
6969 static int
6970 get_32bit_dynamic_section (FILE * file)
6972 Elf32_External_Dyn * edyn;
6973 Elf32_External_Dyn * ext;
6974 Elf_Internal_Dyn * entry;
6976 edyn = (Elf32_External_Dyn *) get_data (NULL, file, dynamic_addr, 1,
6977 dynamic_size, _("dynamic section"));
6978 if (!edyn)
6979 return 0;
6981 /* SGI's ELF has more than one section in the DYNAMIC segment, and we
6982 might not have the luxury of section headers. Look for the DT_NULL
6983 terminator to determine the number of entries. */
6984 for (ext = edyn, dynamic_nent = 0;
6985 (char *) ext < (char *) edyn + dynamic_size;
6986 ext++)
6988 dynamic_nent++;
6989 if (BYTE_GET (ext->d_tag) == DT_NULL)
6990 break;
6993 dynamic_section = (Elf_Internal_Dyn *) cmalloc (dynamic_nent,
6994 sizeof (* entry));
6995 if (dynamic_section == NULL)
6997 error (_("Out of memory\n"));
6998 free (edyn);
6999 return 0;
7002 for (ext = edyn, entry = dynamic_section;
7003 entry < dynamic_section + dynamic_nent;
7004 ext++, entry++)
7006 entry->d_tag = BYTE_GET (ext->d_tag);
7007 entry->d_un.d_val = BYTE_GET (ext->d_un.d_val);
7010 free (edyn);
7012 return 1;
7015 static int
7016 get_64bit_dynamic_section (FILE * file)
7018 Elf64_External_Dyn * edyn;
7019 Elf64_External_Dyn * ext;
7020 Elf_Internal_Dyn * entry;
7022 edyn = (Elf64_External_Dyn *) get_data (NULL, file, dynamic_addr, 1,
7023 dynamic_size, _("dynamic section"));
7024 if (!edyn)
7025 return 0;
7027 /* SGI's ELF has more than one section in the DYNAMIC segment, and we
7028 might not have the luxury of section headers. Look for the DT_NULL
7029 terminator to determine the number of entries. */
7030 for (ext = edyn, dynamic_nent = 0;
7031 (char *) ext < (char *) edyn + dynamic_size;
7032 ext++)
7034 dynamic_nent++;
7035 if (BYTE_GET (ext->d_tag) == DT_NULL)
7036 break;
7039 dynamic_section = (Elf_Internal_Dyn *) cmalloc (dynamic_nent,
7040 sizeof (* entry));
7041 if (dynamic_section == NULL)
7043 error (_("Out of memory\n"));
7044 free (edyn);
7045 return 0;
7048 for (ext = edyn, entry = dynamic_section;
7049 entry < dynamic_section + dynamic_nent;
7050 ext++, entry++)
7052 entry->d_tag = BYTE_GET (ext->d_tag);
7053 entry->d_un.d_val = BYTE_GET (ext->d_un.d_val);
7056 free (edyn);
7058 return 1;
7061 static void
7062 print_dynamic_flags (bfd_vma flags)
7064 int first = 1;
7066 while (flags)
7068 bfd_vma flag;
7070 flag = flags & - flags;
7071 flags &= ~ flag;
7073 if (first)
7074 first = 0;
7075 else
7076 putc (' ', stdout);
7078 switch (flag)
7080 case DF_ORIGIN: fputs ("ORIGIN", stdout); break;
7081 case DF_SYMBOLIC: fputs ("SYMBOLIC", stdout); break;
7082 case DF_TEXTREL: fputs ("TEXTREL", stdout); break;
7083 case DF_BIND_NOW: fputs ("BIND_NOW", stdout); break;
7084 case DF_STATIC_TLS: fputs ("STATIC_TLS", stdout); break;
7085 default: fputs (_("unknown"), stdout); break;
7088 puts ("");
7091 /* Parse and display the contents of the dynamic section. */
7093 static int
7094 process_dynamic_section (FILE * file)
7096 Elf_Internal_Dyn * entry;
7098 if (dynamic_size == 0)
7100 if (do_dynamic)
7101 printf (_("\nThere is no dynamic section in this file.\n"));
7103 return 1;
7106 if (is_32bit_elf)
7108 if (! get_32bit_dynamic_section (file))
7109 return 0;
7111 else if (! get_64bit_dynamic_section (file))
7112 return 0;
7114 /* Find the appropriate symbol table. */
7115 if (dynamic_symbols == NULL)
7117 for (entry = dynamic_section;
7118 entry < dynamic_section + dynamic_nent;
7119 ++entry)
7121 Elf_Internal_Shdr section;
7123 if (entry->d_tag != DT_SYMTAB)
7124 continue;
7126 dynamic_info[DT_SYMTAB] = entry->d_un.d_val;
7128 /* Since we do not know how big the symbol table is,
7129 we default to reading in the entire file (!) and
7130 processing that. This is overkill, I know, but it
7131 should work. */
7132 section.sh_offset = offset_from_vma (file, entry->d_un.d_val, 0);
7134 if (archive_file_offset != 0)
7135 section.sh_size = archive_file_size - section.sh_offset;
7136 else
7138 if (fseek (file, 0, SEEK_END))
7139 error (_("Unable to seek to end of file!\n"));
7141 section.sh_size = ftell (file) - section.sh_offset;
7144 if (is_32bit_elf)
7145 section.sh_entsize = sizeof (Elf32_External_Sym);
7146 else
7147 section.sh_entsize = sizeof (Elf64_External_Sym);
7149 num_dynamic_syms = section.sh_size / section.sh_entsize;
7150 if (num_dynamic_syms < 1)
7152 error (_("Unable to determine the number of symbols to load\n"));
7153 continue;
7156 dynamic_symbols = GET_ELF_SYMBOLS (file, &section);
7160 /* Similarly find a string table. */
7161 if (dynamic_strings == NULL)
7163 for (entry = dynamic_section;
7164 entry < dynamic_section + dynamic_nent;
7165 ++entry)
7167 unsigned long offset;
7168 long str_tab_len;
7170 if (entry->d_tag != DT_STRTAB)
7171 continue;
7173 dynamic_info[DT_STRTAB] = entry->d_un.d_val;
7175 /* Since we do not know how big the string table is,
7176 we default to reading in the entire file (!) and
7177 processing that. This is overkill, I know, but it
7178 should work. */
7180 offset = offset_from_vma (file, entry->d_un.d_val, 0);
7182 if (archive_file_offset != 0)
7183 str_tab_len = archive_file_size - offset;
7184 else
7186 if (fseek (file, 0, SEEK_END))
7187 error (_("Unable to seek to end of file\n"));
7188 str_tab_len = ftell (file) - offset;
7191 if (str_tab_len < 1)
7193 error
7194 (_("Unable to determine the length of the dynamic string table\n"));
7195 continue;
7198 dynamic_strings = (char *) get_data (NULL, file, offset, 1,
7199 str_tab_len,
7200 _("dynamic string table"));
7201 dynamic_strings_length = str_tab_len;
7202 break;
7206 /* And find the syminfo section if available. */
7207 if (dynamic_syminfo == NULL)
7209 unsigned long syminsz = 0;
7211 for (entry = dynamic_section;
7212 entry < dynamic_section + dynamic_nent;
7213 ++entry)
7215 if (entry->d_tag == DT_SYMINENT)
7217 /* Note: these braces are necessary to avoid a syntax
7218 error from the SunOS4 C compiler. */
7219 assert (sizeof (Elf_External_Syminfo) == entry->d_un.d_val);
7221 else if (entry->d_tag == DT_SYMINSZ)
7222 syminsz = entry->d_un.d_val;
7223 else if (entry->d_tag == DT_SYMINFO)
7224 dynamic_syminfo_offset = offset_from_vma (file, entry->d_un.d_val,
7225 syminsz);
7228 if (dynamic_syminfo_offset != 0 && syminsz != 0)
7230 Elf_External_Syminfo * extsyminfo;
7231 Elf_External_Syminfo * extsym;
7232 Elf_Internal_Syminfo * syminfo;
7234 /* There is a syminfo section. Read the data. */
7235 extsyminfo = (Elf_External_Syminfo *)
7236 get_data (NULL, file, dynamic_syminfo_offset, 1, syminsz,
7237 _("symbol information"));
7238 if (!extsyminfo)
7239 return 0;
7241 dynamic_syminfo = (Elf_Internal_Syminfo *) malloc (syminsz);
7242 if (dynamic_syminfo == NULL)
7244 error (_("Out of memory\n"));
7245 return 0;
7248 dynamic_syminfo_nent = syminsz / sizeof (Elf_External_Syminfo);
7249 for (syminfo = dynamic_syminfo, extsym = extsyminfo;
7250 syminfo < dynamic_syminfo + dynamic_syminfo_nent;
7251 ++syminfo, ++extsym)
7253 syminfo->si_boundto = BYTE_GET (extsym->si_boundto);
7254 syminfo->si_flags = BYTE_GET (extsym->si_flags);
7257 free (extsyminfo);
7261 if (do_dynamic && dynamic_addr)
7262 printf (_("\nDynamic section at offset 0x%lx contains %u entries:\n"),
7263 dynamic_addr, dynamic_nent);
7264 if (do_dynamic)
7265 printf (_(" Tag Type Name/Value\n"));
7267 for (entry = dynamic_section;
7268 entry < dynamic_section + dynamic_nent;
7269 entry++)
7271 if (do_dynamic)
7273 const char * dtype;
7275 putchar (' ');
7276 print_vma (entry->d_tag, FULL_HEX);
7277 dtype = get_dynamic_type (entry->d_tag);
7278 printf (" (%s)%*s", dtype,
7279 ((is_32bit_elf ? 27 : 19)
7280 - (int) strlen (dtype)),
7281 " ");
7284 switch (entry->d_tag)
7286 case DT_FLAGS:
7287 if (do_dynamic)
7288 print_dynamic_flags (entry->d_un.d_val);
7289 break;
7291 case DT_AUXILIARY:
7292 case DT_FILTER:
7293 case DT_CONFIG:
7294 case DT_DEPAUDIT:
7295 case DT_AUDIT:
7296 if (do_dynamic)
7298 switch (entry->d_tag)
7300 case DT_AUXILIARY:
7301 printf (_("Auxiliary library"));
7302 break;
7304 case DT_FILTER:
7305 printf (_("Filter library"));
7306 break;
7308 case DT_CONFIG:
7309 printf (_("Configuration file"));
7310 break;
7312 case DT_DEPAUDIT:
7313 printf (_("Dependency audit library"));
7314 break;
7316 case DT_AUDIT:
7317 printf (_("Audit library"));
7318 break;
7321 if (VALID_DYNAMIC_NAME (entry->d_un.d_val))
7322 printf (": [%s]\n", GET_DYNAMIC_NAME (entry->d_un.d_val));
7323 else
7325 printf (": ");
7326 print_vma (entry->d_un.d_val, PREFIX_HEX);
7327 putchar ('\n');
7330 break;
7332 case DT_FEATURE:
7333 if (do_dynamic)
7335 printf (_("Flags:"));
7337 if (entry->d_un.d_val == 0)
7338 printf (_(" None\n"));
7339 else
7341 unsigned long int val = entry->d_un.d_val;
7343 if (val & DTF_1_PARINIT)
7345 printf (" PARINIT");
7346 val ^= DTF_1_PARINIT;
7348 if (val & DTF_1_CONFEXP)
7350 printf (" CONFEXP");
7351 val ^= DTF_1_CONFEXP;
7353 if (val != 0)
7354 printf (" %lx", val);
7355 puts ("");
7358 break;
7360 case DT_POSFLAG_1:
7361 if (do_dynamic)
7363 printf (_("Flags:"));
7365 if (entry->d_un.d_val == 0)
7366 printf (_(" None\n"));
7367 else
7369 unsigned long int val = entry->d_un.d_val;
7371 if (val & DF_P1_LAZYLOAD)
7373 printf (" LAZYLOAD");
7374 val ^= DF_P1_LAZYLOAD;
7376 if (val & DF_P1_GROUPPERM)
7378 printf (" GROUPPERM");
7379 val ^= DF_P1_GROUPPERM;
7381 if (val != 0)
7382 printf (" %lx", val);
7383 puts ("");
7386 break;
7388 case DT_FLAGS_1:
7389 if (do_dynamic)
7391 printf (_("Flags:"));
7392 if (entry->d_un.d_val == 0)
7393 printf (_(" None\n"));
7394 else
7396 unsigned long int val = entry->d_un.d_val;
7398 if (val & DF_1_NOW)
7400 printf (" NOW");
7401 val ^= DF_1_NOW;
7403 if (val & DF_1_GLOBAL)
7405 printf (" GLOBAL");
7406 val ^= DF_1_GLOBAL;
7408 if (val & DF_1_GROUP)
7410 printf (" GROUP");
7411 val ^= DF_1_GROUP;
7413 if (val & DF_1_NODELETE)
7415 printf (" NODELETE");
7416 val ^= DF_1_NODELETE;
7418 if (val & DF_1_LOADFLTR)
7420 printf (" LOADFLTR");
7421 val ^= DF_1_LOADFLTR;
7423 if (val & DF_1_INITFIRST)
7425 printf (" INITFIRST");
7426 val ^= DF_1_INITFIRST;
7428 if (val & DF_1_NOOPEN)
7430 printf (" NOOPEN");
7431 val ^= DF_1_NOOPEN;
7433 if (val & DF_1_ORIGIN)
7435 printf (" ORIGIN");
7436 val ^= DF_1_ORIGIN;
7438 if (val & DF_1_DIRECT)
7440 printf (" DIRECT");
7441 val ^= DF_1_DIRECT;
7443 if (val & DF_1_TRANS)
7445 printf (" TRANS");
7446 val ^= DF_1_TRANS;
7448 if (val & DF_1_INTERPOSE)
7450 printf (" INTERPOSE");
7451 val ^= DF_1_INTERPOSE;
7453 if (val & DF_1_NODEFLIB)
7455 printf (" NODEFLIB");
7456 val ^= DF_1_NODEFLIB;
7458 if (val & DF_1_NODUMP)
7460 printf (" NODUMP");
7461 val ^= DF_1_NODUMP;
7463 if (val & DF_1_CONLFAT)
7465 printf (" CONLFAT");
7466 val ^= DF_1_CONLFAT;
7468 if (val != 0)
7469 printf (" %lx", val);
7470 puts ("");
7473 break;
7475 case DT_PLTREL:
7476 dynamic_info[entry->d_tag] = entry->d_un.d_val;
7477 if (do_dynamic)
7478 puts (get_dynamic_type (entry->d_un.d_val));
7479 break;
7481 case DT_NULL :
7482 case DT_NEEDED :
7483 case DT_PLTGOT :
7484 case DT_HASH :
7485 case DT_STRTAB :
7486 case DT_SYMTAB :
7487 case DT_RELA :
7488 case DT_INIT :
7489 case DT_FINI :
7490 case DT_SONAME :
7491 case DT_RPATH :
7492 case DT_SYMBOLIC:
7493 case DT_REL :
7494 case DT_DEBUG :
7495 case DT_TEXTREL :
7496 case DT_JMPREL :
7497 case DT_RUNPATH :
7498 dynamic_info[entry->d_tag] = entry->d_un.d_val;
7500 if (do_dynamic)
7502 char * name;
7504 if (VALID_DYNAMIC_NAME (entry->d_un.d_val))
7505 name = GET_DYNAMIC_NAME (entry->d_un.d_val);
7506 else
7507 name = NULL;
7509 if (name)
7511 switch (entry->d_tag)
7513 case DT_NEEDED:
7514 printf (_("Shared library: [%s]"), name);
7516 if (streq (name, program_interpreter))
7517 printf (_(" program interpreter"));
7518 break;
7520 case DT_SONAME:
7521 printf (_("Library soname: [%s]"), name);
7522 break;
7524 case DT_RPATH:
7525 printf (_("Library rpath: [%s]"), name);
7526 break;
7528 case DT_RUNPATH:
7529 printf (_("Library runpath: [%s]"), name);
7530 break;
7532 default:
7533 print_vma (entry->d_un.d_val, PREFIX_HEX);
7534 break;
7537 else
7538 print_vma (entry->d_un.d_val, PREFIX_HEX);
7540 putchar ('\n');
7542 break;
7544 case DT_PLTRELSZ:
7545 case DT_RELASZ :
7546 case DT_STRSZ :
7547 case DT_RELSZ :
7548 case DT_RELAENT :
7549 case DT_SYMENT :
7550 case DT_RELENT :
7551 dynamic_info[entry->d_tag] = entry->d_un.d_val;
7552 case DT_PLTPADSZ:
7553 case DT_MOVEENT :
7554 case DT_MOVESZ :
7555 case DT_INIT_ARRAYSZ:
7556 case DT_FINI_ARRAYSZ:
7557 case DT_GNU_CONFLICTSZ:
7558 case DT_GNU_LIBLISTSZ:
7559 if (do_dynamic)
7561 print_vma (entry->d_un.d_val, UNSIGNED);
7562 printf (_(" (bytes)\n"));
7564 break;
7566 case DT_VERDEFNUM:
7567 case DT_VERNEEDNUM:
7568 case DT_RELACOUNT:
7569 case DT_RELCOUNT:
7570 if (do_dynamic)
7572 print_vma (entry->d_un.d_val, UNSIGNED);
7573 putchar ('\n');
7575 break;
7577 case DT_SYMINSZ:
7578 case DT_SYMINENT:
7579 case DT_SYMINFO:
7580 case DT_USED:
7581 case DT_INIT_ARRAY:
7582 case DT_FINI_ARRAY:
7583 if (do_dynamic)
7585 if (entry->d_tag == DT_USED
7586 && VALID_DYNAMIC_NAME (entry->d_un.d_val))
7588 char * name = GET_DYNAMIC_NAME (entry->d_un.d_val);
7590 if (*name)
7592 printf (_("Not needed object: [%s]\n"), name);
7593 break;
7597 print_vma (entry->d_un.d_val, PREFIX_HEX);
7598 putchar ('\n');
7600 break;
7602 case DT_BIND_NOW:
7603 /* The value of this entry is ignored. */
7604 if (do_dynamic)
7605 putchar ('\n');
7606 break;
7608 case DT_GNU_PRELINKED:
7609 if (do_dynamic)
7611 struct tm * tmp;
7612 time_t atime = entry->d_un.d_val;
7614 tmp = gmtime (&atime);
7615 printf ("%04u-%02u-%02uT%02u:%02u:%02u\n",
7616 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
7617 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
7620 break;
7622 case DT_GNU_HASH:
7623 dynamic_info_DT_GNU_HASH = entry->d_un.d_val;
7624 if (do_dynamic)
7626 print_vma (entry->d_un.d_val, PREFIX_HEX);
7627 putchar ('\n');
7629 break;
7631 default:
7632 if ((entry->d_tag >= DT_VERSYM) && (entry->d_tag <= DT_VERNEEDNUM))
7633 version_info[DT_VERSIONTAGIDX (entry->d_tag)] =
7634 entry->d_un.d_val;
7636 if (do_dynamic)
7638 switch (elf_header.e_machine)
7640 case EM_MIPS:
7641 case EM_MIPS_RS3_LE:
7642 dynamic_section_mips_val (entry);
7643 break;
7644 case EM_PARISC:
7645 dynamic_section_parisc_val (entry);
7646 break;
7647 case EM_IA_64:
7648 dynamic_section_ia64_val (entry);
7649 break;
7650 default:
7651 print_vma (entry->d_un.d_val, PREFIX_HEX);
7652 putchar ('\n');
7655 break;
7659 return 1;
7662 static char *
7663 get_ver_flags (unsigned int flags)
7665 static char buff[32];
7667 buff[0] = 0;
7669 if (flags == 0)
7670 return _("none");
7672 if (flags & VER_FLG_BASE)
7673 strcat (buff, "BASE ");
7675 if (flags & VER_FLG_WEAK)
7677 if (flags & VER_FLG_BASE)
7678 strcat (buff, "| ");
7680 strcat (buff, "WEAK ");
7683 if (flags & VER_FLG_INFO)
7685 if (flags & (VER_FLG_BASE|VER_FLG_WEAK))
7686 strcat (buff, "| ");
7688 strcat (buff, "INFO ");
7691 if (flags & ~(VER_FLG_BASE | VER_FLG_WEAK | VER_FLG_INFO))
7692 strcat (buff, _("| <unknown>"));
7694 return buff;
7697 /* Display the contents of the version sections. */
7699 static int
7700 process_version_sections (FILE * file)
7702 Elf_Internal_Shdr * section;
7703 unsigned i;
7704 int found = 0;
7706 if (! do_version)
7707 return 1;
7709 for (i = 0, section = section_headers;
7710 i < elf_header.e_shnum;
7711 i++, section++)
7713 switch (section->sh_type)
7715 case SHT_GNU_verdef:
7717 Elf_External_Verdef * edefs;
7718 unsigned int idx;
7719 unsigned int cnt;
7720 char * endbuf;
7722 found = 1;
7724 printf
7725 (_("\nVersion definition section '%s' contains %u entries:\n"),
7726 SECTION_NAME (section), section->sh_info);
7728 printf (_(" Addr: 0x"));
7729 printf_vma (section->sh_addr);
7730 printf (_(" Offset: %#08lx Link: %u (%s)\n"),
7731 (unsigned long) section->sh_offset, section->sh_link,
7732 section->sh_link < elf_header.e_shnum
7733 ? SECTION_NAME (section_headers + section->sh_link)
7734 : _("<corrupt>"));
7736 edefs = (Elf_External_Verdef *)
7737 get_data (NULL, file, section->sh_offset, 1,section->sh_size,
7738 _("version definition section"));
7739 endbuf = (char *) edefs + section->sh_size;
7740 if (!edefs)
7741 break;
7743 for (idx = cnt = 0; cnt < section->sh_info; ++cnt)
7745 char * vstart;
7746 Elf_External_Verdef * edef;
7747 Elf_Internal_Verdef ent;
7748 Elf_External_Verdaux * eaux;
7749 Elf_Internal_Verdaux aux;
7750 int j;
7751 int isum;
7753 /* Check for negative or very large indicies. */
7754 if ((unsigned char *) edefs + idx < (unsigned char *) edefs)
7755 break;
7757 vstart = ((char *) edefs) + idx;
7758 if (vstart + sizeof (*edef) > endbuf)
7759 break;
7761 edef = (Elf_External_Verdef *) vstart;
7763 ent.vd_version = BYTE_GET (edef->vd_version);
7764 ent.vd_flags = BYTE_GET (edef->vd_flags);
7765 ent.vd_ndx = BYTE_GET (edef->vd_ndx);
7766 ent.vd_cnt = BYTE_GET (edef->vd_cnt);
7767 ent.vd_hash = BYTE_GET (edef->vd_hash);
7768 ent.vd_aux = BYTE_GET (edef->vd_aux);
7769 ent.vd_next = BYTE_GET (edef->vd_next);
7771 printf (_(" %#06x: Rev: %d Flags: %s"),
7772 idx, ent.vd_version, get_ver_flags (ent.vd_flags));
7774 printf (_(" Index: %d Cnt: %d "),
7775 ent.vd_ndx, ent.vd_cnt);
7777 /* Check for overflow. */
7778 if ((unsigned char *)(vstart + ent.vd_aux) < (unsigned char *) vstart
7779 || (unsigned char *)(vstart + ent.vd_aux) > (unsigned char *) endbuf)
7780 break;
7782 vstart += ent.vd_aux;
7784 eaux = (Elf_External_Verdaux *) vstart;
7786 aux.vda_name = BYTE_GET (eaux->vda_name);
7787 aux.vda_next = BYTE_GET (eaux->vda_next);
7789 if (VALID_DYNAMIC_NAME (aux.vda_name))
7790 printf (_("Name: %s\n"), GET_DYNAMIC_NAME (aux.vda_name));
7791 else
7792 printf (_("Name index: %ld\n"), aux.vda_name);
7794 isum = idx + ent.vd_aux;
7796 for (j = 1; j < ent.vd_cnt; j++)
7798 /* Check for overflow. */
7799 if ((unsigned char *)(vstart + aux.vda_next) < (unsigned char *) vstart
7800 || (unsigned char *)(vstart + aux.vda_next) > (unsigned char *) endbuf)
7801 break;
7803 isum += aux.vda_next;
7804 vstart += aux.vda_next;
7806 eaux = (Elf_External_Verdaux *) vstart;
7807 if (vstart + sizeof (*eaux) > endbuf)
7808 break;
7810 aux.vda_name = BYTE_GET (eaux->vda_name);
7811 aux.vda_next = BYTE_GET (eaux->vda_next);
7813 if (VALID_DYNAMIC_NAME (aux.vda_name))
7814 printf (_(" %#06x: Parent %d: %s\n"),
7815 isum, j, GET_DYNAMIC_NAME (aux.vda_name));
7816 else
7817 printf (_(" %#06x: Parent %d, name index: %ld\n"),
7818 isum, j, aux.vda_name);
7821 if (j < ent.vd_cnt)
7822 printf (_(" Version def aux past end of section\n"));
7824 idx += ent.vd_next;
7827 if (cnt < section->sh_info)
7828 printf (_(" Version definition past end of section\n"));
7830 free (edefs);
7832 break;
7834 case SHT_GNU_verneed:
7836 Elf_External_Verneed * eneed;
7837 unsigned int idx;
7838 unsigned int cnt;
7839 char * endbuf;
7841 found = 1;
7843 printf (_("\nVersion needs section '%s' contains %u entries:\n"),
7844 SECTION_NAME (section), section->sh_info);
7846 printf (_(" Addr: 0x"));
7847 printf_vma (section->sh_addr);
7848 printf (_(" Offset: %#08lx Link: %u (%s)\n"),
7849 (unsigned long) section->sh_offset, section->sh_link,
7850 section->sh_link < elf_header.e_shnum
7851 ? SECTION_NAME (section_headers + section->sh_link)
7852 : _("<corrupt>"));
7854 eneed = (Elf_External_Verneed *) get_data (NULL, file,
7855 section->sh_offset, 1,
7856 section->sh_size,
7857 _("version need section"));
7858 endbuf = (char *) eneed + section->sh_size;
7859 if (!eneed)
7860 break;
7862 for (idx = cnt = 0; cnt < section->sh_info; ++cnt)
7864 Elf_External_Verneed * entry;
7865 Elf_Internal_Verneed ent;
7866 int j;
7867 int isum;
7868 char * vstart;
7870 if ((unsigned char *) eneed + idx < (unsigned char *) eneed)
7871 break;
7873 vstart = ((char *) eneed) + idx;
7874 if (vstart + sizeof (*entry) > endbuf)
7875 break;
7877 entry = (Elf_External_Verneed *) vstart;
7879 ent.vn_version = BYTE_GET (entry->vn_version);
7880 ent.vn_cnt = BYTE_GET (entry->vn_cnt);
7881 ent.vn_file = BYTE_GET (entry->vn_file);
7882 ent.vn_aux = BYTE_GET (entry->vn_aux);
7883 ent.vn_next = BYTE_GET (entry->vn_next);
7885 printf (_(" %#06x: Version: %d"), idx, ent.vn_version);
7887 if (VALID_DYNAMIC_NAME (ent.vn_file))
7888 printf (_(" File: %s"), GET_DYNAMIC_NAME (ent.vn_file));
7889 else
7890 printf (_(" File: %lx"), ent.vn_file);
7892 printf (_(" Cnt: %d\n"), ent.vn_cnt);
7894 /* Check for overflow. */
7895 if ((unsigned char *)(vstart + ent.vn_aux) < (unsigned char *) vstart
7896 || (unsigned char *)(vstart + ent.vn_aux) > (unsigned char *) endbuf)
7897 break;
7899 vstart += ent.vn_aux;
7901 for (j = 0, isum = idx + ent.vn_aux; j < ent.vn_cnt; ++j)
7903 Elf_External_Vernaux * eaux;
7904 Elf_Internal_Vernaux aux;
7906 if (vstart + sizeof (*eaux) > endbuf)
7907 break;
7908 eaux = (Elf_External_Vernaux *) vstart;
7910 aux.vna_hash = BYTE_GET (eaux->vna_hash);
7911 aux.vna_flags = BYTE_GET (eaux->vna_flags);
7912 aux.vna_other = BYTE_GET (eaux->vna_other);
7913 aux.vna_name = BYTE_GET (eaux->vna_name);
7914 aux.vna_next = BYTE_GET (eaux->vna_next);
7916 if (VALID_DYNAMIC_NAME (aux.vna_name))
7917 printf (_(" %#06x: Name: %s"),
7918 isum, GET_DYNAMIC_NAME (aux.vna_name));
7919 else
7920 printf (_(" %#06x: Name index: %lx"),
7921 isum, aux.vna_name);
7923 printf (_(" Flags: %s Version: %d\n"),
7924 get_ver_flags (aux.vna_flags), aux.vna_other);
7926 /* Check for overflow. */
7927 if ((unsigned char *)(vstart + aux.vna_next) < (unsigned char *) vstart
7928 || (unsigned char *)(vstart + aux.vna_next) > (unsigned char *) endbuf)
7929 break;
7931 isum += aux.vna_next;
7932 vstart += aux.vna_next;
7934 if (j < ent.vn_cnt)
7935 printf (_(" Version need aux past end of section\n"));
7937 idx += ent.vn_next;
7939 if (cnt < section->sh_info)
7940 printf (_(" Version need past end of section\n"));
7942 free (eneed);
7944 break;
7946 case SHT_GNU_versym:
7948 Elf_Internal_Shdr * link_section;
7949 int total;
7950 int cnt;
7951 unsigned char * edata;
7952 unsigned short * data;
7953 char * strtab;
7954 Elf_Internal_Sym * symbols;
7955 Elf_Internal_Shdr * string_sec;
7956 long off;
7958 if (section->sh_link >= elf_header.e_shnum)
7959 break;
7961 link_section = section_headers + section->sh_link;
7962 total = section->sh_size / sizeof (Elf_External_Versym);
7964 if (link_section->sh_link >= elf_header.e_shnum)
7965 break;
7967 found = 1;
7969 symbols = GET_ELF_SYMBOLS (file, link_section);
7970 if (symbols == NULL)
7971 break;
7973 string_sec = section_headers + link_section->sh_link;
7975 strtab = (char *) get_data (NULL, file, string_sec->sh_offset, 1,
7976 string_sec->sh_size,
7977 _("version string table"));
7978 if (!strtab)
7979 break;
7981 printf (_("\nVersion symbols section '%s' contains %d entries:\n"),
7982 SECTION_NAME (section), total);
7984 printf (_(" Addr: "));
7985 printf_vma (section->sh_addr);
7986 printf (_(" Offset: %#08lx Link: %u (%s)\n"),
7987 (unsigned long) section->sh_offset, section->sh_link,
7988 SECTION_NAME (link_section));
7990 off = offset_from_vma (file,
7991 version_info[DT_VERSIONTAGIDX (DT_VERSYM)],
7992 total * sizeof (short));
7993 edata = (unsigned char *) get_data (NULL, file, off, total,
7994 sizeof (short),
7995 _("version symbol data"));
7996 if (!edata)
7998 free (strtab);
7999 break;
8002 data = (short unsigned int *) cmalloc (total, sizeof (short));
8004 for (cnt = total; cnt --;)
8005 data[cnt] = byte_get (edata + cnt * sizeof (short),
8006 sizeof (short));
8008 free (edata);
8010 for (cnt = 0; cnt < total; cnt += 4)
8012 int j, nn;
8013 int check_def, check_need;
8014 char * name;
8016 printf (" %03x:", cnt);
8018 for (j = 0; (j < 4) && (cnt + j) < total; ++j)
8019 switch (data[cnt + j])
8021 case 0:
8022 fputs (_(" 0 (*local*) "), stdout);
8023 break;
8025 case 1:
8026 fputs (_(" 1 (*global*) "), stdout);
8027 break;
8029 default:
8030 nn = printf ("%4x%c", data[cnt + j] & VERSYM_VERSION,
8031 data[cnt + j] & VERSYM_HIDDEN ? 'h' : ' ');
8033 /* If this index value is greater than the size of the symbols
8034 array, break to avoid an out-of-bounds read, */
8035 if ((unsigned long)(cnt + j) >=
8036 ((unsigned long)link_section->sh_size /
8037 (unsigned long)link_section->sh_entsize))
8039 warn (_("invalid index into symbol array\n"));
8040 break;
8043 check_def = 1;
8044 check_need = 1;
8045 if (symbols[cnt + j].st_shndx >= elf_header.e_shnum
8046 || section_headers[symbols[cnt + j].st_shndx].sh_type
8047 != SHT_NOBITS)
8049 if (symbols[cnt + j].st_shndx == SHN_UNDEF)
8050 check_def = 0;
8051 else
8052 check_need = 0;
8055 if (check_need
8056 && version_info[DT_VERSIONTAGIDX (DT_VERNEED)])
8058 Elf_Internal_Verneed ivn;
8059 unsigned long offset;
8061 offset = offset_from_vma
8062 (file, version_info[DT_VERSIONTAGIDX (DT_VERNEED)],
8063 sizeof (Elf_External_Verneed));
8067 Elf_Internal_Vernaux ivna;
8068 Elf_External_Verneed evn;
8069 Elf_External_Vernaux evna;
8070 unsigned long a_off;
8072 get_data (&evn, file, offset, sizeof (evn), 1,
8073 _("version need"));
8075 ivn.vn_aux = BYTE_GET (evn.vn_aux);
8076 ivn.vn_next = BYTE_GET (evn.vn_next);
8078 a_off = offset + ivn.vn_aux;
8082 get_data (&evna, file, a_off, sizeof (evna),
8083 1, _("version need aux (2)"));
8085 ivna.vna_next = BYTE_GET (evna.vna_next);
8086 ivna.vna_other = BYTE_GET (evna.vna_other);
8088 a_off += ivna.vna_next;
8090 while (ivna.vna_other != data[cnt + j]
8091 && ivna.vna_next != 0);
8093 if (ivna.vna_other == data[cnt + j])
8095 ivna.vna_name = BYTE_GET (evna.vna_name);
8097 if (ivna.vna_name >= string_sec->sh_size)
8098 name = _("*invalid*");
8099 else
8100 name = strtab + ivna.vna_name;
8101 nn += printf ("(%s%-*s",
8102 name,
8103 12 - (int) strlen (name),
8104 ")");
8105 check_def = 0;
8106 break;
8109 offset += ivn.vn_next;
8111 while (ivn.vn_next);
8114 if (check_def && data[cnt + j] != 0x8001
8115 && version_info[DT_VERSIONTAGIDX (DT_VERDEF)])
8117 Elf_Internal_Verdef ivd;
8118 Elf_External_Verdef evd;
8119 unsigned long offset;
8121 offset = offset_from_vma
8122 (file, version_info[DT_VERSIONTAGIDX (DT_VERDEF)],
8123 sizeof evd);
8127 get_data (&evd, file, offset, sizeof (evd), 1,
8128 _("version def"));
8130 ivd.vd_next = BYTE_GET (evd.vd_next);
8131 ivd.vd_ndx = BYTE_GET (evd.vd_ndx);
8133 offset += ivd.vd_next;
8135 while (ivd.vd_ndx != (data[cnt + j] & VERSYM_VERSION)
8136 && ivd.vd_next != 0);
8138 if (ivd.vd_ndx == (data[cnt + j] & VERSYM_VERSION))
8140 Elf_External_Verdaux evda;
8141 Elf_Internal_Verdaux ivda;
8143 ivd.vd_aux = BYTE_GET (evd.vd_aux);
8145 get_data (&evda, file,
8146 offset - ivd.vd_next + ivd.vd_aux,
8147 sizeof (evda), 1,
8148 _("version def aux"));
8150 ivda.vda_name = BYTE_GET (evda.vda_name);
8152 if (ivda.vda_name >= string_sec->sh_size)
8153 name = _("*invalid*");
8154 else
8155 name = strtab + ivda.vda_name;
8156 nn += printf ("(%s%-*s",
8157 name,
8158 12 - (int) strlen (name),
8159 ")");
8163 if (nn < 18)
8164 printf ("%*c", 18 - nn, ' ');
8167 putchar ('\n');
8170 free (data);
8171 free (strtab);
8172 free (symbols);
8174 break;
8176 default:
8177 break;
8181 if (! found)
8182 printf (_("\nNo version information found in this file.\n"));
8184 return 1;
8187 static const char *
8188 get_symbol_binding (unsigned int binding)
8190 static char buff[32];
8192 switch (binding)
8194 case STB_LOCAL: return "LOCAL";
8195 case STB_GLOBAL: return "GLOBAL";
8196 case STB_WEAK: return "WEAK";
8197 default:
8198 if (binding >= STB_LOPROC && binding <= STB_HIPROC)
8199 snprintf (buff, sizeof (buff), _("<processor specific>: %d"),
8200 binding);
8201 else if (binding >= STB_LOOS && binding <= STB_HIOS)
8203 if (binding == STB_GNU_UNIQUE
8204 && (elf_header.e_ident[EI_OSABI] == ELFOSABI_LINUX
8205 /* GNU/Linux is still using the default value 0. */
8206 || elf_header.e_ident[EI_OSABI] == ELFOSABI_NONE))
8207 return "UNIQUE";
8208 snprintf (buff, sizeof (buff), _("<OS specific>: %d"), binding);
8210 else
8211 snprintf (buff, sizeof (buff), _("<unknown>: %d"), binding);
8212 return buff;
8216 static const char *
8217 get_symbol_type (unsigned int type)
8219 static char buff[32];
8221 switch (type)
8223 case STT_NOTYPE: return "NOTYPE";
8224 case STT_OBJECT: return "OBJECT";
8225 case STT_FUNC: return "FUNC";
8226 case STT_SECTION: return "SECTION";
8227 case STT_FILE: return "FILE";
8228 case STT_COMMON: return "COMMON";
8229 case STT_TLS: return "TLS";
8230 case STT_RELC: return "RELC";
8231 case STT_SRELC: return "SRELC";
8232 default:
8233 if (type >= STT_LOPROC && type <= STT_HIPROC)
8235 if (elf_header.e_machine == EM_ARM && type == STT_ARM_TFUNC)
8236 return "THUMB_FUNC";
8238 if (elf_header.e_machine == EM_SPARCV9 && type == STT_REGISTER)
8239 return "REGISTER";
8241 if (elf_header.e_machine == EM_PARISC && type == STT_PARISC_MILLI)
8242 return "PARISC_MILLI";
8244 snprintf (buff, sizeof (buff), _("<processor specific>: %d"), type);
8246 else if (type >= STT_LOOS && type <= STT_HIOS)
8248 if (elf_header.e_machine == EM_PARISC)
8250 if (type == STT_HP_OPAQUE)
8251 return "HP_OPAQUE";
8252 if (type == STT_HP_STUB)
8253 return "HP_STUB";
8256 if (type == STT_GNU_IFUNC
8257 && (elf_header.e_ident[EI_OSABI] == ELFOSABI_LINUX
8258 /* GNU/Linux is still using the default value 0. */
8259 || elf_header.e_ident[EI_OSABI] == ELFOSABI_NONE))
8260 return "IFUNC";
8262 snprintf (buff, sizeof (buff), _("<OS specific>: %d"), type);
8264 else
8265 snprintf (buff, sizeof (buff), _("<unknown>: %d"), type);
8266 return buff;
8270 static const char *
8271 get_symbol_visibility (unsigned int visibility)
8273 switch (visibility)
8275 case STV_DEFAULT: return "DEFAULT";
8276 case STV_INTERNAL: return "INTERNAL";
8277 case STV_HIDDEN: return "HIDDEN";
8278 case STV_PROTECTED: return "PROTECTED";
8279 default: abort ();
8283 static const char *
8284 get_mips_symbol_other (unsigned int other)
8286 switch (other)
8288 case STO_OPTIONAL: return "OPTIONAL";
8289 case STO_MIPS16: return "MIPS16";
8290 case STO_MIPS_PLT: return "MIPS PLT";
8291 case STO_MIPS_PIC: return "MIPS PIC";
8292 default: return NULL;
8296 static const char *
8297 get_ia64_symbol_other (unsigned int other)
8299 if (is_ia64_vms ())
8301 static char res[32];
8303 res[0] = 0;
8305 /* Function types is for images and .STB files only. */
8306 switch (elf_header.e_type)
8308 case ET_DYN:
8309 case ET_EXEC:
8310 switch (VMS_ST_FUNC_TYPE (other))
8312 case VMS_SFT_CODE_ADDR:
8313 strcat (res, " CA");
8314 break;
8315 case VMS_SFT_SYMV_IDX:
8316 strcat (res, " VEC");
8317 break;
8318 case VMS_SFT_FD:
8319 strcat (res, " FD");
8320 break;
8321 case VMS_SFT_RESERVE:
8322 strcat (res, " RSV");
8323 break;
8324 default:
8325 abort ();
8327 break;
8328 default:
8329 break;
8331 switch (VMS_ST_LINKAGE (other))
8333 case VMS_STL_IGNORE:
8334 strcat (res, " IGN");
8335 break;
8336 case VMS_STL_RESERVE:
8337 strcat (res, " RSV");
8338 break;
8339 case VMS_STL_STD:
8340 strcat (res, " STD");
8341 break;
8342 case VMS_STL_LNK:
8343 strcat (res, " LNK");
8344 break;
8345 default:
8346 abort ();
8349 if (res[0] != 0)
8350 return res + 1;
8351 else
8352 return res;
8354 return NULL;
8357 static const char *
8358 get_symbol_other (unsigned int other)
8360 const char * result = NULL;
8361 static char buff [32];
8363 if (other == 0)
8364 return "";
8366 switch (elf_header.e_machine)
8368 case EM_MIPS:
8369 result = get_mips_symbol_other (other);
8370 break;
8371 case EM_IA_64:
8372 result = get_ia64_symbol_other (other);
8373 break;
8374 default:
8375 break;
8378 if (result)
8379 return result;
8381 snprintf (buff, sizeof buff, _("<other>: %x"), other);
8382 return buff;
8385 static const char *
8386 get_symbol_index_type (unsigned int type)
8388 static char buff[32];
8390 switch (type)
8392 case SHN_UNDEF: return "UND";
8393 case SHN_ABS: return "ABS";
8394 case SHN_COMMON: return "COM";
8395 default:
8396 if (type == SHN_IA_64_ANSI_COMMON
8397 && elf_header.e_machine == EM_IA_64
8398 && elf_header.e_ident[EI_OSABI] == ELFOSABI_HPUX)
8399 return "ANSI_COM";
8400 else if ((elf_header.e_machine == EM_X86_64
8401 || elf_header.e_machine == EM_L1OM)
8402 && type == SHN_X86_64_LCOMMON)
8403 return "LARGE_COM";
8404 else if (type == SHN_MIPS_SCOMMON
8405 && elf_header.e_machine == EM_MIPS)
8406 return "SCOM";
8407 else if (type == SHN_MIPS_SUNDEFINED
8408 && elf_header.e_machine == EM_MIPS)
8409 return "SUND";
8410 else if (type >= SHN_LOPROC && type <= SHN_HIPROC)
8411 sprintf (buff, "PRC[0x%04x]", type & 0xffff);
8412 else if (type >= SHN_LOOS && type <= SHN_HIOS)
8413 sprintf (buff, "OS [0x%04x]", type & 0xffff);
8414 else if (type >= SHN_LORESERVE)
8415 sprintf (buff, "RSV[0x%04x]", type & 0xffff);
8416 else
8417 sprintf (buff, "%3d", type);
8418 break;
8421 return buff;
8424 static bfd_vma *
8425 get_dynamic_data (FILE * file, unsigned int number, unsigned int ent_size)
8427 unsigned char * e_data;
8428 bfd_vma * i_data;
8430 e_data = (unsigned char *) cmalloc (number, ent_size);
8432 if (e_data == NULL)
8434 error (_("Out of memory\n"));
8435 return NULL;
8438 if (fread (e_data, ent_size, number, file) != number)
8440 error (_("Unable to read in dynamic data\n"));
8441 return NULL;
8444 i_data = (bfd_vma *) cmalloc (number, sizeof (*i_data));
8446 if (i_data == NULL)
8448 error (_("Out of memory\n"));
8449 free (e_data);
8450 return NULL;
8453 while (number--)
8454 i_data[number] = byte_get (e_data + number * ent_size, ent_size);
8456 free (e_data);
8458 return i_data;
8461 static void
8462 print_dynamic_symbol (bfd_vma si, unsigned long hn)
8464 Elf_Internal_Sym * psym;
8465 int n;
8467 psym = dynamic_symbols + si;
8469 n = print_vma (si, DEC_5);
8470 if (n < 5)
8471 fputs (" " + n, stdout);
8472 printf (" %3lu: ", hn);
8473 print_vma (psym->st_value, LONG_HEX);
8474 putchar (' ');
8475 print_vma (psym->st_size, DEC_5);
8477 printf (" %-7s", get_symbol_type (ELF_ST_TYPE (psym->st_info)));
8478 printf (" %-6s", get_symbol_binding (ELF_ST_BIND (psym->st_info)));
8479 printf (" %-7s", get_symbol_visibility (ELF_ST_VISIBILITY (psym->st_other)));
8480 /* Check to see if any other bits in the st_other field are set.
8481 Note - displaying this information disrupts the layout of the
8482 table being generated, but for the moment this case is very
8483 rare. */
8484 if (psym->st_other ^ ELF_ST_VISIBILITY (psym->st_other))
8485 printf (" [%s] ", get_symbol_other (psym->st_other ^ ELF_ST_VISIBILITY (psym->st_other)));
8486 printf (" %3.3s ", get_symbol_index_type (psym->st_shndx));
8487 if (VALID_DYNAMIC_NAME (psym->st_name))
8488 print_symbol (25, GET_DYNAMIC_NAME (psym->st_name));
8489 else
8490 printf (_(" <corrupt: %14ld>"), psym->st_name);
8491 putchar ('\n');
8494 /* Dump the symbol table. */
8495 static int
8496 process_symbol_table (FILE * file)
8498 Elf_Internal_Shdr * section;
8499 bfd_vma nbuckets = 0;
8500 bfd_vma nchains = 0;
8501 bfd_vma * buckets = NULL;
8502 bfd_vma * chains = NULL;
8503 bfd_vma ngnubuckets = 0;
8504 bfd_vma * gnubuckets = NULL;
8505 bfd_vma * gnuchains = NULL;
8506 bfd_vma gnusymidx = 0;
8508 if (!do_syms && !do_dyn_syms && !do_histogram)
8509 return 1;
8511 if (dynamic_info[DT_HASH]
8512 && (do_histogram
8513 || (do_using_dynamic
8514 && !do_dyn_syms
8515 && dynamic_strings != NULL)))
8517 unsigned char nb[8];
8518 unsigned char nc[8];
8519 int hash_ent_size = 4;
8521 if ((elf_header.e_machine == EM_ALPHA
8522 || elf_header.e_machine == EM_S390
8523 || elf_header.e_machine == EM_S390_OLD)
8524 && elf_header.e_ident[EI_CLASS] == ELFCLASS64)
8525 hash_ent_size = 8;
8527 if (fseek (file,
8528 (archive_file_offset
8529 + offset_from_vma (file, dynamic_info[DT_HASH],
8530 sizeof nb + sizeof nc)),
8531 SEEK_SET))
8533 error (_("Unable to seek to start of dynamic information\n"));
8534 goto no_hash;
8537 if (fread (nb, hash_ent_size, 1, file) != 1)
8539 error (_("Failed to read in number of buckets\n"));
8540 goto no_hash;
8543 if (fread (nc, hash_ent_size, 1, file) != 1)
8545 error (_("Failed to read in number of chains\n"));
8546 goto no_hash;
8549 nbuckets = byte_get (nb, hash_ent_size);
8550 nchains = byte_get (nc, hash_ent_size);
8552 buckets = get_dynamic_data (file, nbuckets, hash_ent_size);
8553 chains = get_dynamic_data (file, nchains, hash_ent_size);
8555 no_hash:
8556 if (buckets == NULL || chains == NULL)
8558 if (do_using_dynamic)
8559 return 0;
8560 free (buckets);
8561 free (chains);
8562 buckets = NULL;
8563 chains = NULL;
8564 nbuckets = 0;
8565 nchains = 0;
8569 if (dynamic_info_DT_GNU_HASH
8570 && (do_histogram
8571 || (do_using_dynamic
8572 && !do_dyn_syms
8573 && dynamic_strings != NULL)))
8575 unsigned char nb[16];
8576 bfd_vma i, maxchain = 0xffffffff, bitmaskwords;
8577 bfd_vma buckets_vma;
8579 if (fseek (file,
8580 (archive_file_offset
8581 + offset_from_vma (file, dynamic_info_DT_GNU_HASH,
8582 sizeof nb)),
8583 SEEK_SET))
8585 error (_("Unable to seek to start of dynamic information\n"));
8586 goto no_gnu_hash;
8589 if (fread (nb, 16, 1, file) != 1)
8591 error (_("Failed to read in number of buckets\n"));
8592 goto no_gnu_hash;
8595 ngnubuckets = byte_get (nb, 4);
8596 gnusymidx = byte_get (nb + 4, 4);
8597 bitmaskwords = byte_get (nb + 8, 4);
8598 buckets_vma = dynamic_info_DT_GNU_HASH + 16;
8599 if (is_32bit_elf)
8600 buckets_vma += bitmaskwords * 4;
8601 else
8602 buckets_vma += bitmaskwords * 8;
8604 if (fseek (file,
8605 (archive_file_offset
8606 + offset_from_vma (file, buckets_vma, 4)),
8607 SEEK_SET))
8609 error (_("Unable to seek to start of dynamic information\n"));
8610 goto no_gnu_hash;
8613 gnubuckets = get_dynamic_data (file, ngnubuckets, 4);
8615 if (gnubuckets == NULL)
8616 goto no_gnu_hash;
8618 for (i = 0; i < ngnubuckets; i++)
8619 if (gnubuckets[i] != 0)
8621 if (gnubuckets[i] < gnusymidx)
8622 return 0;
8624 if (maxchain == 0xffffffff || gnubuckets[i] > maxchain)
8625 maxchain = gnubuckets[i];
8628 if (maxchain == 0xffffffff)
8629 goto no_gnu_hash;
8631 maxchain -= gnusymidx;
8633 if (fseek (file,
8634 (archive_file_offset
8635 + offset_from_vma (file, buckets_vma
8636 + 4 * (ngnubuckets + maxchain), 4)),
8637 SEEK_SET))
8639 error (_("Unable to seek to start of dynamic information\n"));
8640 goto no_gnu_hash;
8645 if (fread (nb, 4, 1, file) != 1)
8647 error (_("Failed to determine last chain length\n"));
8648 goto no_gnu_hash;
8651 if (maxchain + 1 == 0)
8652 goto no_gnu_hash;
8654 ++maxchain;
8656 while ((byte_get (nb, 4) & 1) == 0);
8658 if (fseek (file,
8659 (archive_file_offset
8660 + offset_from_vma (file, buckets_vma + 4 * ngnubuckets, 4)),
8661 SEEK_SET))
8663 error (_("Unable to seek to start of dynamic information\n"));
8664 goto no_gnu_hash;
8667 gnuchains = get_dynamic_data (file, maxchain, 4);
8669 no_gnu_hash:
8670 if (gnuchains == NULL)
8672 free (gnubuckets);
8673 gnubuckets = NULL;
8674 ngnubuckets = 0;
8675 if (do_using_dynamic)
8676 return 0;
8680 if ((dynamic_info[DT_HASH] || dynamic_info_DT_GNU_HASH)
8681 && do_syms
8682 && do_using_dynamic
8683 && dynamic_strings != NULL)
8685 unsigned long hn;
8687 if (dynamic_info[DT_HASH])
8689 bfd_vma si;
8691 printf (_("\nSymbol table for image:\n"));
8692 if (is_32bit_elf)
8693 printf (_(" Num Buc: Value Size Type Bind Vis Ndx Name\n"));
8694 else
8695 printf (_(" Num Buc: Value Size Type Bind Vis Ndx Name\n"));
8697 for (hn = 0; hn < nbuckets; hn++)
8699 if (! buckets[hn])
8700 continue;
8702 for (si = buckets[hn]; si < nchains && si > 0; si = chains[si])
8703 print_dynamic_symbol (si, hn);
8707 if (dynamic_info_DT_GNU_HASH)
8709 printf (_("\nSymbol table of `.gnu.hash' for image:\n"));
8710 if (is_32bit_elf)
8711 printf (_(" Num Buc: Value Size Type Bind Vis Ndx Name\n"));
8712 else
8713 printf (_(" Num Buc: Value Size Type Bind Vis Ndx Name\n"));
8715 for (hn = 0; hn < ngnubuckets; ++hn)
8716 if (gnubuckets[hn] != 0)
8718 bfd_vma si = gnubuckets[hn];
8719 bfd_vma off = si - gnusymidx;
8723 print_dynamic_symbol (si, hn);
8724 si++;
8726 while ((gnuchains[off++] & 1) == 0);
8730 else if (do_dyn_syms || (do_syms && !do_using_dynamic))
8732 unsigned int i;
8734 for (i = 0, section = section_headers;
8735 i < elf_header.e_shnum;
8736 i++, section++)
8738 unsigned int si;
8739 char * strtab = NULL;
8740 unsigned long int strtab_size = 0;
8741 Elf_Internal_Sym * symtab;
8742 Elf_Internal_Sym * psym;
8744 if ((section->sh_type != SHT_SYMTAB
8745 && section->sh_type != SHT_DYNSYM)
8746 || (!do_syms
8747 && section->sh_type == SHT_SYMTAB))
8748 continue;
8750 if (section->sh_entsize == 0)
8752 printf (_("\nSymbol table '%s' has a sh_entsize of zero!\n"),
8753 SECTION_NAME (section));
8754 continue;
8757 printf (_("\nSymbol table '%s' contains %lu entries:\n"),
8758 SECTION_NAME (section),
8759 (unsigned long) (section->sh_size / section->sh_entsize));
8761 if (is_32bit_elf)
8762 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
8763 else
8764 printf (_(" Num: Value Size Type Bind Vis Ndx Name\n"));
8766 symtab = GET_ELF_SYMBOLS (file, section);
8767 if (symtab == NULL)
8768 continue;
8770 if (section->sh_link == elf_header.e_shstrndx)
8772 strtab = string_table;
8773 strtab_size = string_table_length;
8775 else if (section->sh_link < elf_header.e_shnum)
8777 Elf_Internal_Shdr * string_sec;
8779 string_sec = section_headers + section->sh_link;
8781 strtab = (char *) get_data (NULL, file, string_sec->sh_offset,
8782 1, string_sec->sh_size,
8783 _("string table"));
8784 strtab_size = strtab != NULL ? string_sec->sh_size : 0;
8787 for (si = 0, psym = symtab;
8788 si < section->sh_size / section->sh_entsize;
8789 si++, psym++)
8791 printf ("%6d: ", si);
8792 print_vma (psym->st_value, LONG_HEX);
8793 putchar (' ');
8794 print_vma (psym->st_size, DEC_5);
8795 printf (" %-7s", get_symbol_type (ELF_ST_TYPE (psym->st_info)));
8796 printf (" %-6s", get_symbol_binding (ELF_ST_BIND (psym->st_info)));
8797 printf (" %-7s", get_symbol_visibility (ELF_ST_VISIBILITY (psym->st_other)));
8798 /* Check to see if any other bits in the st_other field are set.
8799 Note - displaying this information disrupts the layout of the
8800 table being generated, but for the moment this case is very rare. */
8801 if (psym->st_other ^ ELF_ST_VISIBILITY (psym->st_other))
8802 printf (" [%s] ", get_symbol_other (psym->st_other ^ ELF_ST_VISIBILITY (psym->st_other)));
8803 printf (" %4s ", get_symbol_index_type (psym->st_shndx));
8804 print_symbol (25, psym->st_name < strtab_size
8805 ? strtab + psym->st_name : _("<corrupt>"));
8807 if (section->sh_type == SHT_DYNSYM &&
8808 version_info[DT_VERSIONTAGIDX (DT_VERSYM)] != 0)
8810 unsigned char data[2];
8811 unsigned short vers_data;
8812 unsigned long offset;
8813 int is_nobits;
8814 int check_def;
8816 offset = offset_from_vma
8817 (file, version_info[DT_VERSIONTAGIDX (DT_VERSYM)],
8818 sizeof data + si * sizeof (vers_data));
8820 get_data (&data, file, offset + si * sizeof (vers_data),
8821 sizeof (data), 1, _("version data"));
8823 vers_data = byte_get (data, 2);
8825 is_nobits = (psym->st_shndx < elf_header.e_shnum
8826 && section_headers[psym->st_shndx].sh_type
8827 == SHT_NOBITS);
8829 check_def = (psym->st_shndx != SHN_UNDEF);
8831 if ((vers_data & VERSYM_HIDDEN) || vers_data > 1)
8833 if (version_info[DT_VERSIONTAGIDX (DT_VERNEED)]
8834 && (is_nobits || ! check_def))
8836 Elf_External_Verneed evn;
8837 Elf_Internal_Verneed ivn;
8838 Elf_Internal_Vernaux ivna;
8840 /* We must test both. */
8841 offset = offset_from_vma
8842 (file, version_info[DT_VERSIONTAGIDX (DT_VERNEED)],
8843 sizeof evn);
8847 unsigned long vna_off;
8849 get_data (&evn, file, offset, sizeof (evn), 1,
8850 _("version need"));
8852 ivn.vn_aux = BYTE_GET (evn.vn_aux);
8853 ivn.vn_next = BYTE_GET (evn.vn_next);
8855 vna_off = offset + ivn.vn_aux;
8859 Elf_External_Vernaux evna;
8861 get_data (&evna, file, vna_off,
8862 sizeof (evna), 1,
8863 _("version need aux (3)"));
8865 ivna.vna_other = BYTE_GET (evna.vna_other);
8866 ivna.vna_next = BYTE_GET (evna.vna_next);
8867 ivna.vna_name = BYTE_GET (evna.vna_name);
8869 vna_off += ivna.vna_next;
8871 while (ivna.vna_other != vers_data
8872 && ivna.vna_next != 0);
8874 if (ivna.vna_other == vers_data)
8875 break;
8877 offset += ivn.vn_next;
8879 while (ivn.vn_next != 0);
8881 if (ivna.vna_other == vers_data)
8883 printf ("@%s (%d)",
8884 ivna.vna_name < strtab_size
8885 ? strtab + ivna.vna_name : _("<corrupt>"),
8886 ivna.vna_other);
8887 check_def = 0;
8889 else if (! is_nobits)
8890 error (_("bad dynamic symbol\n"));
8891 else
8892 check_def = 1;
8895 if (check_def)
8897 if (vers_data != 0x8001
8898 && version_info[DT_VERSIONTAGIDX (DT_VERDEF)])
8900 Elf_Internal_Verdef ivd;
8901 Elf_Internal_Verdaux ivda;
8902 Elf_External_Verdaux evda;
8903 unsigned long off;
8905 off = offset_from_vma
8906 (file,
8907 version_info[DT_VERSIONTAGIDX (DT_VERDEF)],
8908 sizeof (Elf_External_Verdef));
8912 Elf_External_Verdef evd;
8914 get_data (&evd, file, off, sizeof (evd),
8915 1, _("version def"));
8917 ivd.vd_ndx = BYTE_GET (evd.vd_ndx);
8918 ivd.vd_aux = BYTE_GET (evd.vd_aux);
8919 ivd.vd_next = BYTE_GET (evd.vd_next);
8921 off += ivd.vd_next;
8923 while (ivd.vd_ndx != (vers_data & VERSYM_VERSION)
8924 && ivd.vd_next != 0);
8926 off -= ivd.vd_next;
8927 off += ivd.vd_aux;
8929 get_data (&evda, file, off, sizeof (evda),
8930 1, _("version def aux"));
8932 ivda.vda_name = BYTE_GET (evda.vda_name);
8934 if (psym->st_name != ivda.vda_name)
8935 printf ((vers_data & VERSYM_HIDDEN)
8936 ? "@%s" : "@@%s",
8937 ivda.vda_name < strtab_size
8938 ? strtab + ivda.vda_name : _("<corrupt>"));
8944 putchar ('\n');
8947 free (symtab);
8948 if (strtab != string_table)
8949 free (strtab);
8952 else if (do_syms)
8953 printf
8954 (_("\nDynamic symbol information is not available for displaying symbols.\n"));
8956 if (do_histogram && buckets != NULL)
8958 unsigned long * lengths;
8959 unsigned long * counts;
8960 unsigned long hn;
8961 bfd_vma si;
8962 unsigned long maxlength = 0;
8963 unsigned long nzero_counts = 0;
8964 unsigned long nsyms = 0;
8966 printf (_("\nHistogram for bucket list length (total of %lu buckets):\n"),
8967 (unsigned long) nbuckets);
8968 printf (_(" Length Number %% of total Coverage\n"));
8970 lengths = (unsigned long *) calloc (nbuckets, sizeof (*lengths));
8971 if (lengths == NULL)
8973 error (_("Out of memory\n"));
8974 return 0;
8976 for (hn = 0; hn < nbuckets; ++hn)
8978 for (si = buckets[hn]; si > 0 && si < nchains; si = chains[si])
8980 ++nsyms;
8981 if (maxlength < ++lengths[hn])
8982 ++maxlength;
8986 counts = (unsigned long *) calloc (maxlength + 1, sizeof (*counts));
8987 if (counts == NULL)
8989 error (_("Out of memory\n"));
8990 return 0;
8993 for (hn = 0; hn < nbuckets; ++hn)
8994 ++counts[lengths[hn]];
8996 if (nbuckets > 0)
8998 unsigned long i;
8999 printf (" 0 %-10lu (%5.1f%%)\n",
9000 counts[0], (counts[0] * 100.0) / nbuckets);
9001 for (i = 1; i <= maxlength; ++i)
9003 nzero_counts += counts[i] * i;
9004 printf ("%7lu %-10lu (%5.1f%%) %5.1f%%\n",
9005 i, counts[i], (counts[i] * 100.0) / nbuckets,
9006 (nzero_counts * 100.0) / nsyms);
9010 free (counts);
9011 free (lengths);
9014 if (buckets != NULL)
9016 free (buckets);
9017 free (chains);
9020 if (do_histogram && gnubuckets != NULL)
9022 unsigned long * lengths;
9023 unsigned long * counts;
9024 unsigned long hn;
9025 unsigned long maxlength = 0;
9026 unsigned long nzero_counts = 0;
9027 unsigned long nsyms = 0;
9029 lengths = (unsigned long *) calloc (ngnubuckets, sizeof (*lengths));
9030 if (lengths == NULL)
9032 error (_("Out of memory\n"));
9033 return 0;
9036 printf (_("\nHistogram for `.gnu.hash' bucket list length (total of %lu buckets):\n"),
9037 (unsigned long) ngnubuckets);
9038 printf (_(" Length Number %% of total Coverage\n"));
9040 for (hn = 0; hn < ngnubuckets; ++hn)
9041 if (gnubuckets[hn] != 0)
9043 bfd_vma off, length = 1;
9045 for (off = gnubuckets[hn] - gnusymidx;
9046 (gnuchains[off] & 1) == 0; ++off)
9047 ++length;
9048 lengths[hn] = length;
9049 if (length > maxlength)
9050 maxlength = length;
9051 nsyms += length;
9054 counts = (unsigned long *) calloc (maxlength + 1, sizeof (*counts));
9055 if (counts == NULL)
9057 error (_("Out of memory\n"));
9058 return 0;
9061 for (hn = 0; hn < ngnubuckets; ++hn)
9062 ++counts[lengths[hn]];
9064 if (ngnubuckets > 0)
9066 unsigned long j;
9067 printf (" 0 %-10lu (%5.1f%%)\n",
9068 counts[0], (counts[0] * 100.0) / ngnubuckets);
9069 for (j = 1; j <= maxlength; ++j)
9071 nzero_counts += counts[j] * j;
9072 printf ("%7lu %-10lu (%5.1f%%) %5.1f%%\n",
9073 j, counts[j], (counts[j] * 100.0) / ngnubuckets,
9074 (nzero_counts * 100.0) / nsyms);
9078 free (counts);
9079 free (lengths);
9080 free (gnubuckets);
9081 free (gnuchains);
9084 return 1;
9087 static int
9088 process_syminfo (FILE * file ATTRIBUTE_UNUSED)
9090 unsigned int i;
9092 if (dynamic_syminfo == NULL
9093 || !do_dynamic)
9094 /* No syminfo, this is ok. */
9095 return 1;
9097 /* There better should be a dynamic symbol section. */
9098 if (dynamic_symbols == NULL || dynamic_strings == NULL)
9099 return 0;
9101 if (dynamic_addr)
9102 printf (_("\nDynamic info segment at offset 0x%lx contains %d entries:\n"),
9103 dynamic_syminfo_offset, dynamic_syminfo_nent);
9105 printf (_(" Num: Name BoundTo Flags\n"));
9106 for (i = 0; i < dynamic_syminfo_nent; ++i)
9108 unsigned short int flags = dynamic_syminfo[i].si_flags;
9110 printf ("%4d: ", i);
9111 if (VALID_DYNAMIC_NAME (dynamic_symbols[i].st_name))
9112 print_symbol (30, GET_DYNAMIC_NAME (dynamic_symbols[i].st_name));
9113 else
9114 printf (_("<corrupt: %19ld>"), dynamic_symbols[i].st_name);
9115 putchar (' ');
9117 switch (dynamic_syminfo[i].si_boundto)
9119 case SYMINFO_BT_SELF:
9120 fputs ("SELF ", stdout);
9121 break;
9122 case SYMINFO_BT_PARENT:
9123 fputs ("PARENT ", stdout);
9124 break;
9125 default:
9126 if (dynamic_syminfo[i].si_boundto > 0
9127 && dynamic_syminfo[i].si_boundto < dynamic_nent
9128 && VALID_DYNAMIC_NAME (dynamic_section[dynamic_syminfo[i].si_boundto].d_un.d_val))
9130 print_symbol (10, GET_DYNAMIC_NAME (dynamic_section[dynamic_syminfo[i].si_boundto].d_un.d_val));
9131 putchar (' ' );
9133 else
9134 printf ("%-10d ", dynamic_syminfo[i].si_boundto);
9135 break;
9138 if (flags & SYMINFO_FLG_DIRECT)
9139 printf (" DIRECT");
9140 if (flags & SYMINFO_FLG_PASSTHRU)
9141 printf (" PASSTHRU");
9142 if (flags & SYMINFO_FLG_COPY)
9143 printf (" COPY");
9144 if (flags & SYMINFO_FLG_LAZYLOAD)
9145 printf (" LAZYLOAD");
9147 puts ("");
9150 return 1;
9153 /* Check to see if the given reloc needs to be handled in a target specific
9154 manner. If so then process the reloc and return TRUE otherwise return
9155 FALSE. */
9157 static bfd_boolean
9158 target_specific_reloc_handling (Elf_Internal_Rela * reloc,
9159 unsigned char * start,
9160 Elf_Internal_Sym * symtab)
9162 unsigned int reloc_type = get_reloc_type (reloc->r_info);
9164 switch (elf_header.e_machine)
9166 case EM_MN10300:
9167 case EM_CYGNUS_MN10300:
9169 static Elf_Internal_Sym * saved_sym = NULL;
9171 switch (reloc_type)
9173 case 34: /* R_MN10300_ALIGN */
9174 return TRUE;
9175 case 33: /* R_MN10300_SYM_DIFF */
9176 saved_sym = symtab + get_reloc_symindex (reloc->r_info);
9177 return TRUE;
9178 case 1: /* R_MN10300_32 */
9179 case 2: /* R_MN10300_16 */
9180 if (saved_sym != NULL)
9182 bfd_vma value;
9184 value = reloc->r_addend
9185 + (symtab[get_reloc_symindex (reloc->r_info)].st_value
9186 - saved_sym->st_value);
9188 byte_put (start + reloc->r_offset, value, reloc_type == 1 ? 4 : 2);
9190 saved_sym = NULL;
9191 return TRUE;
9193 break;
9194 default:
9195 if (saved_sym != NULL)
9196 error (_("Unhandled MN10300 reloc type found after SYM_DIFF reloc"));
9197 break;
9199 break;
9203 return FALSE;
9206 /* Returns TRUE iff RELOC_TYPE is a 32-bit absolute RELA relocation used in
9207 DWARF debug sections. This is a target specific test. Note - we do not
9208 go through the whole including-target-headers-multiple-times route, (as
9209 we have already done with <elf/h8.h>) because this would become very
9210 messy and even then this function would have to contain target specific
9211 information (the names of the relocs instead of their numeric values).
9212 FIXME: This is not the correct way to solve this problem. The proper way
9213 is to have target specific reloc sizing and typing functions created by
9214 the reloc-macros.h header, in the same way that it already creates the
9215 reloc naming functions. */
9217 static bfd_boolean
9218 is_32bit_abs_reloc (unsigned int reloc_type)
9220 switch (elf_header.e_machine)
9222 case EM_386:
9223 case EM_486:
9224 return reloc_type == 1; /* R_386_32. */
9225 case EM_68K:
9226 return reloc_type == 1; /* R_68K_32. */
9227 case EM_860:
9228 return reloc_type == 1; /* R_860_32. */
9229 case EM_960:
9230 return reloc_type == 2; /* R_960_32. */
9231 case EM_ALPHA:
9232 return reloc_type == 1; /* R_ALPHA_REFLONG. */
9233 case EM_ARC:
9234 return reloc_type == 1; /* R_ARC_32. */
9235 case EM_ARM:
9236 return reloc_type == 2; /* R_ARM_ABS32 */
9237 case EM_AVR_OLD:
9238 case EM_AVR:
9239 return reloc_type == 1;
9240 case EM_BLACKFIN:
9241 return reloc_type == 0x12; /* R_byte4_data. */
9242 case EM_CRIS:
9243 return reloc_type == 3; /* R_CRIS_32. */
9244 case EM_CR16:
9245 case EM_CR16_OLD:
9246 return reloc_type == 3; /* R_CR16_NUM32. */
9247 case EM_CRX:
9248 return reloc_type == 15; /* R_CRX_NUM32. */
9249 case EM_CYGNUS_FRV:
9250 return reloc_type == 1;
9251 case EM_CYGNUS_D10V:
9252 case EM_D10V:
9253 return reloc_type == 6; /* R_D10V_32. */
9254 case EM_CYGNUS_D30V:
9255 case EM_D30V:
9256 return reloc_type == 12; /* R_D30V_32_NORMAL. */
9257 case EM_DLX:
9258 return reloc_type == 3; /* R_DLX_RELOC_32. */
9259 case EM_CYGNUS_FR30:
9260 case EM_FR30:
9261 return reloc_type == 3; /* R_FR30_32. */
9262 case EM_H8S:
9263 case EM_H8_300:
9264 case EM_H8_300H:
9265 return reloc_type == 1; /* R_H8_DIR32. */
9266 case EM_IA_64:
9267 return reloc_type == 0x65; /* R_IA64_SECREL32LSB. */
9268 case EM_IP2K_OLD:
9269 case EM_IP2K:
9270 return reloc_type == 2; /* R_IP2K_32. */
9271 case EM_IQ2000:
9272 return reloc_type == 2; /* R_IQ2000_32. */
9273 case EM_LATTICEMICO32:
9274 return reloc_type == 3; /* R_LM32_32. */
9275 case EM_M32C_OLD:
9276 case EM_M32C:
9277 return reloc_type == 3; /* R_M32C_32. */
9278 case EM_M32R:
9279 return reloc_type == 34; /* R_M32R_32_RELA. */
9280 case EM_MCORE:
9281 return reloc_type == 1; /* R_MCORE_ADDR32. */
9282 case EM_CYGNUS_MEP:
9283 return reloc_type == 4; /* R_MEP_32. */
9284 case EM_MICROBLAZE:
9285 return reloc_type == 1; /* R_MICROBLAZE_32. */
9286 case EM_MIPS:
9287 return reloc_type == 2; /* R_MIPS_32. */
9288 case EM_MMIX:
9289 return reloc_type == 4; /* R_MMIX_32. */
9290 case EM_CYGNUS_MN10200:
9291 case EM_MN10200:
9292 return reloc_type == 1; /* R_MN10200_32. */
9293 case EM_CYGNUS_MN10300:
9294 case EM_MN10300:
9295 return reloc_type == 1; /* R_MN10300_32. */
9296 case EM_MOXIE:
9297 return reloc_type == 1; /* R_MOXIE_32. */
9298 case EM_MSP430_OLD:
9299 case EM_MSP430:
9300 return reloc_type == 1; /* R_MSP43_32. */
9301 case EM_MT:
9302 return reloc_type == 2; /* R_MT_32. */
9303 case EM_ALTERA_NIOS2:
9304 case EM_NIOS32:
9305 return reloc_type == 1; /* R_NIOS_32. */
9306 case EM_OPENRISC:
9307 case EM_OR32:
9308 return reloc_type == 1; /* R_OR32_32. */
9309 case EM_PARISC:
9310 return (reloc_type == 1 /* R_PARISC_DIR32. */
9311 || reloc_type == 41); /* R_PARISC_SECREL32. */
9312 case EM_PJ:
9313 case EM_PJ_OLD:
9314 return reloc_type == 1; /* R_PJ_DATA_DIR32. */
9315 case EM_PPC64:
9316 return reloc_type == 1; /* R_PPC64_ADDR32. */
9317 case EM_PPC:
9318 return reloc_type == 1; /* R_PPC_ADDR32. */
9319 case EM_RX:
9320 return reloc_type == 1; /* R_RX_DIR32. */
9321 case EM_S370:
9322 return reloc_type == 1; /* R_I370_ADDR31. */
9323 case EM_S390_OLD:
9324 case EM_S390:
9325 return reloc_type == 4; /* R_S390_32. */
9326 case EM_SCORE:
9327 return reloc_type == 8; /* R_SCORE_ABS32. */
9328 case EM_SH:
9329 return reloc_type == 1; /* R_SH_DIR32. */
9330 case EM_SPARC32PLUS:
9331 case EM_SPARCV9:
9332 case EM_SPARC:
9333 return reloc_type == 3 /* R_SPARC_32. */
9334 || reloc_type == 23; /* R_SPARC_UA32. */
9335 case EM_SPU:
9336 return reloc_type == 6; /* R_SPU_ADDR32 */
9337 case EM_TI_C6000:
9338 return reloc_type == 1; /* R_C6000_ABS32. */
9339 case EM_CYGNUS_V850:
9340 case EM_V850:
9341 return reloc_type == 6; /* R_V850_ABS32. */
9342 case EM_VAX:
9343 return reloc_type == 1; /* R_VAX_32. */
9344 case EM_X86_64:
9345 case EM_L1OM:
9346 return reloc_type == 10; /* R_X86_64_32. */
9347 case EM_XC16X:
9348 case EM_C166:
9349 return reloc_type == 3; /* R_XC16C_ABS_32. */
9350 case EM_XSTORMY16:
9351 return reloc_type == 1; /* R_XSTROMY16_32. */
9352 case EM_XTENSA_OLD:
9353 case EM_XTENSA:
9354 return reloc_type == 1; /* R_XTENSA_32. */
9355 default:
9356 error (_("Missing knowledge of 32-bit reloc types used in DWARF sections of machine number %d\n"),
9357 elf_header.e_machine);
9358 abort ();
9362 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
9363 a 32-bit pc-relative RELA relocation used in DWARF debug sections. */
9365 static bfd_boolean
9366 is_32bit_pcrel_reloc (unsigned int reloc_type)
9368 switch (elf_header.e_machine)
9370 case EM_386:
9371 case EM_486:
9372 return reloc_type == 2; /* R_386_PC32. */
9373 case EM_68K:
9374 return reloc_type == 4; /* R_68K_PC32. */
9375 case EM_ALPHA:
9376 return reloc_type == 10; /* R_ALPHA_SREL32. */
9377 case EM_ARM:
9378 return reloc_type == 3; /* R_ARM_REL32 */
9379 case EM_MICROBLAZE:
9380 return reloc_type == 2; /* R_MICROBLAZE_32_PCREL. */
9381 case EM_PARISC:
9382 return reloc_type == 9; /* R_PARISC_PCREL32. */
9383 case EM_PPC:
9384 return reloc_type == 26; /* R_PPC_REL32. */
9385 case EM_PPC64:
9386 return reloc_type == 26; /* R_PPC64_REL32. */
9387 case EM_S390_OLD:
9388 case EM_S390:
9389 return reloc_type == 5; /* R_390_PC32. */
9390 case EM_SH:
9391 return reloc_type == 2; /* R_SH_REL32. */
9392 case EM_SPARC32PLUS:
9393 case EM_SPARCV9:
9394 case EM_SPARC:
9395 return reloc_type == 6; /* R_SPARC_DISP32. */
9396 case EM_SPU:
9397 return reloc_type == 13; /* R_SPU_REL32. */
9398 case EM_X86_64:
9399 case EM_L1OM:
9400 return reloc_type == 2; /* R_X86_64_PC32. */
9401 case EM_XTENSA_OLD:
9402 case EM_XTENSA:
9403 return reloc_type == 14; /* R_XTENSA_32_PCREL. */
9404 default:
9405 /* Do not abort or issue an error message here. Not all targets use
9406 pc-relative 32-bit relocs in their DWARF debug information and we
9407 have already tested for target coverage in is_32bit_abs_reloc. A
9408 more helpful warning message will be generated by apply_relocations
9409 anyway, so just return. */
9410 return FALSE;
9414 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
9415 a 64-bit absolute RELA relocation used in DWARF debug sections. */
9417 static bfd_boolean
9418 is_64bit_abs_reloc (unsigned int reloc_type)
9420 switch (elf_header.e_machine)
9422 case EM_ALPHA:
9423 return reloc_type == 2; /* R_ALPHA_REFQUAD. */
9424 case EM_IA_64:
9425 return reloc_type == 0x27; /* R_IA64_DIR64LSB. */
9426 case EM_PARISC:
9427 return reloc_type == 80; /* R_PARISC_DIR64. */
9428 case EM_PPC64:
9429 return reloc_type == 38; /* R_PPC64_ADDR64. */
9430 case EM_SPARC32PLUS:
9431 case EM_SPARCV9:
9432 case EM_SPARC:
9433 return reloc_type == 54; /* R_SPARC_UA64. */
9434 case EM_X86_64:
9435 case EM_L1OM:
9436 return reloc_type == 1; /* R_X86_64_64. */
9437 case EM_S390_OLD:
9438 case EM_S390:
9439 return reloc_type == 22; /* R_S390_64 */
9440 case EM_MIPS:
9441 return reloc_type == 18; /* R_MIPS_64 */
9442 default:
9443 return FALSE;
9447 /* Like is_32bit_pcrel_reloc except that it returns TRUE iff RELOC_TYPE is
9448 a 64-bit pc-relative RELA relocation used in DWARF debug sections. */
9450 static bfd_boolean
9451 is_64bit_pcrel_reloc (unsigned int reloc_type)
9453 switch (elf_header.e_machine)
9455 case EM_ALPHA:
9456 return reloc_type == 11; /* R_ALPHA_SREL64 */
9457 case EM_IA_64:
9458 return reloc_type == 0x4f; /* R_IA64_PCREL64LSB */
9459 case EM_PARISC:
9460 return reloc_type == 72; /* R_PARISC_PCREL64 */
9461 case EM_PPC64:
9462 return reloc_type == 44; /* R_PPC64_REL64 */
9463 case EM_SPARC32PLUS:
9464 case EM_SPARCV9:
9465 case EM_SPARC:
9466 return reloc_type == 46; /* R_SPARC_DISP64 */
9467 case EM_X86_64:
9468 case EM_L1OM:
9469 return reloc_type == 24; /* R_X86_64_PC64 */
9470 case EM_S390_OLD:
9471 case EM_S390:
9472 return reloc_type == 23; /* R_S390_PC64 */
9473 default:
9474 return FALSE;
9478 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
9479 a 24-bit absolute RELA relocation used in DWARF debug sections. */
9481 static bfd_boolean
9482 is_24bit_abs_reloc (unsigned int reloc_type)
9484 switch (elf_header.e_machine)
9486 case EM_CYGNUS_MN10200:
9487 case EM_MN10200:
9488 return reloc_type == 4; /* R_MN10200_24. */
9489 default:
9490 return FALSE;
9494 /* Like is_32bit_abs_reloc except that it returns TRUE iff RELOC_TYPE is
9495 a 16-bit absolute RELA relocation used in DWARF debug sections. */
9497 static bfd_boolean
9498 is_16bit_abs_reloc (unsigned int reloc_type)
9500 switch (elf_header.e_machine)
9502 case EM_AVR_OLD:
9503 case EM_AVR:
9504 return reloc_type == 4; /* R_AVR_16. */
9505 case EM_CYGNUS_D10V:
9506 case EM_D10V:
9507 return reloc_type == 3; /* R_D10V_16. */
9508 case EM_H8S:
9509 case EM_H8_300:
9510 case EM_H8_300H:
9511 return reloc_type == R_H8_DIR16;
9512 case EM_IP2K_OLD:
9513 case EM_IP2K:
9514 return reloc_type == 1; /* R_IP2K_16. */
9515 case EM_M32C_OLD:
9516 case EM_M32C:
9517 return reloc_type == 1; /* R_M32C_16 */
9518 case EM_MSP430_OLD:
9519 case EM_MSP430:
9520 return reloc_type == 5; /* R_MSP430_16_BYTE. */
9521 case EM_ALTERA_NIOS2:
9522 case EM_NIOS32:
9523 return reloc_type == 9; /* R_NIOS_16. */
9524 case EM_TI_C6000:
9525 return reloc_type == 2; /* R_C6000_ABS16. */
9526 case EM_XC16X:
9527 case EM_C166:
9528 return reloc_type == 2; /* R_XC16C_ABS_16. */
9529 default:
9530 return FALSE;
9534 /* Returns TRUE iff RELOC_TYPE is a NONE relocation used for discarded
9535 relocation entries (possibly formerly used for SHT_GROUP sections). */
9537 static bfd_boolean
9538 is_none_reloc (unsigned int reloc_type)
9540 switch (elf_header.e_machine)
9542 case EM_68K: /* R_68K_NONE. */
9543 case EM_386: /* R_386_NONE. */
9544 case EM_SPARC32PLUS:
9545 case EM_SPARCV9:
9546 case EM_SPARC: /* R_SPARC_NONE. */
9547 case EM_MIPS: /* R_MIPS_NONE. */
9548 case EM_PARISC: /* R_PARISC_NONE. */
9549 case EM_ALPHA: /* R_ALPHA_NONE. */
9550 case EM_PPC: /* R_PPC_NONE. */
9551 case EM_PPC64: /* R_PPC64_NONE. */
9552 case EM_ARM: /* R_ARM_NONE. */
9553 case EM_IA_64: /* R_IA64_NONE. */
9554 case EM_SH: /* R_SH_NONE. */
9555 case EM_S390_OLD:
9556 case EM_S390: /* R_390_NONE. */
9557 case EM_CRIS: /* R_CRIS_NONE. */
9558 case EM_X86_64: /* R_X86_64_NONE. */
9559 case EM_L1OM: /* R_X86_64_NONE. */
9560 case EM_MN10300: /* R_MN10300_NONE. */
9561 case EM_MOXIE: /* R_MOXIE_NONE. */
9562 case EM_M32R: /* R_M32R_NONE. */
9563 case EM_TI_C6000:/* R_C6000_NONE. */
9564 case EM_XC16X:
9565 case EM_C166: /* R_XC16X_NONE. */
9566 return reloc_type == 0;
9567 case EM_XTENSA_OLD:
9568 case EM_XTENSA:
9569 return (reloc_type == 0 /* R_XTENSA_NONE. */
9570 || reloc_type == 17 /* R_XTENSA_DIFF8. */
9571 || reloc_type == 18 /* R_XTENSA_DIFF16. */
9572 || reloc_type == 19 /* R_XTENSA_DIFF32. */);
9574 return FALSE;
9577 /* Apply relocations to a section.
9578 Note: So far support has been added only for those relocations
9579 which can be found in debug sections.
9580 FIXME: Add support for more relocations ? */
9582 static void
9583 apply_relocations (void * file,
9584 Elf_Internal_Shdr * section,
9585 unsigned char * start)
9587 Elf_Internal_Shdr * relsec;
9588 unsigned char * end = start + section->sh_size;
9590 if (elf_header.e_type != ET_REL)
9591 return;
9593 /* Find the reloc section associated with the section. */
9594 for (relsec = section_headers;
9595 relsec < section_headers + elf_header.e_shnum;
9596 ++relsec)
9598 bfd_boolean is_rela;
9599 unsigned long num_relocs;
9600 Elf_Internal_Rela * relocs;
9601 Elf_Internal_Rela * rp;
9602 Elf_Internal_Shdr * symsec;
9603 Elf_Internal_Sym * symtab;
9604 Elf_Internal_Sym * sym;
9606 if ((relsec->sh_type != SHT_RELA && relsec->sh_type != SHT_REL)
9607 || relsec->sh_info >= elf_header.e_shnum
9608 || section_headers + relsec->sh_info != section
9609 || relsec->sh_size == 0
9610 || relsec->sh_link >= elf_header.e_shnum)
9611 continue;
9613 is_rela = relsec->sh_type == SHT_RELA;
9615 if (is_rela)
9617 if (!slurp_rela_relocs ((FILE *) file, relsec->sh_offset,
9618 relsec->sh_size, & relocs, & num_relocs))
9619 return;
9621 else
9623 if (!slurp_rel_relocs ((FILE *) file, relsec->sh_offset,
9624 relsec->sh_size, & relocs, & num_relocs))
9625 return;
9628 /* SH uses RELA but uses in place value instead of the addend field. */
9629 if (elf_header.e_machine == EM_SH)
9630 is_rela = FALSE;
9632 symsec = section_headers + relsec->sh_link;
9633 symtab = GET_ELF_SYMBOLS ((FILE *) file, symsec);
9635 for (rp = relocs; rp < relocs + num_relocs; ++rp)
9637 bfd_vma addend;
9638 unsigned int reloc_type;
9639 unsigned int reloc_size;
9640 unsigned char * rloc;
9642 reloc_type = get_reloc_type (rp->r_info);
9644 if (target_specific_reloc_handling (rp, start, symtab))
9645 continue;
9646 else if (is_none_reloc (reloc_type))
9647 continue;
9648 else if (is_32bit_abs_reloc (reloc_type)
9649 || is_32bit_pcrel_reloc (reloc_type))
9650 reloc_size = 4;
9651 else if (is_64bit_abs_reloc (reloc_type)
9652 || is_64bit_pcrel_reloc (reloc_type))
9653 reloc_size = 8;
9654 else if (is_24bit_abs_reloc (reloc_type))
9655 reloc_size = 3;
9656 else if (is_16bit_abs_reloc (reloc_type))
9657 reloc_size = 2;
9658 else
9660 warn (_("unable to apply unsupported reloc type %d to section %s\n"),
9661 reloc_type, SECTION_NAME (section));
9662 continue;
9665 rloc = start + rp->r_offset;
9666 if ((rloc + reloc_size) > end)
9668 warn (_("skipping invalid relocation offset 0x%lx in section %s\n"),
9669 (unsigned long) rp->r_offset,
9670 SECTION_NAME (section));
9671 continue;
9674 sym = symtab + get_reloc_symindex (rp->r_info);
9676 /* If the reloc has a symbol associated with it,
9677 make sure that it is of an appropriate type.
9679 Relocations against symbols without type can happen.
9680 Gcc -feliminate-dwarf2-dups may generate symbols
9681 without type for debug info.
9683 Icc generates relocations against function symbols
9684 instead of local labels.
9686 Relocations against object symbols can happen, eg when
9687 referencing a global array. For an example of this see
9688 the _clz.o binary in libgcc.a. */
9689 if (sym != symtab
9690 && ELF_ST_TYPE (sym->st_info) > STT_SECTION)
9692 warn (_("skipping unexpected symbol type %s in %ld'th relocation in section %s\n"),
9693 get_symbol_type (ELF_ST_TYPE (sym->st_info)),
9694 (long int)(rp - relocs),
9695 SECTION_NAME (relsec));
9696 continue;
9699 addend = 0;
9700 if (is_rela)
9701 addend += rp->r_addend;
9702 /* R_XTENSA_32, R_PJ_DATA_DIR32 and R_D30V_32_NORMAL are
9703 partial_inplace. */
9704 if (!is_rela
9705 || (elf_header.e_machine == EM_XTENSA
9706 && reloc_type == 1)
9707 || ((elf_header.e_machine == EM_PJ
9708 || elf_header.e_machine == EM_PJ_OLD)
9709 && reloc_type == 1)
9710 || ((elf_header.e_machine == EM_D30V
9711 || elf_header.e_machine == EM_CYGNUS_D30V)
9712 && reloc_type == 12))
9713 addend += byte_get (rloc, reloc_size);
9715 if (is_32bit_pcrel_reloc (reloc_type)
9716 || is_64bit_pcrel_reloc (reloc_type))
9718 /* On HPPA, all pc-relative relocations are biased by 8. */
9719 if (elf_header.e_machine == EM_PARISC)
9720 addend -= 8;
9721 byte_put (rloc, (addend + sym->st_value) - rp->r_offset,
9722 reloc_size);
9724 else
9725 byte_put (rloc, addend + sym->st_value, reloc_size);
9728 free (symtab);
9729 free (relocs);
9730 break;
9734 #ifdef SUPPORT_DISASSEMBLY
9735 static int
9736 disassemble_section (Elf_Internal_Shdr * section, FILE * file)
9738 printf (_("\nAssembly dump of section %s\n"),
9739 SECTION_NAME (section));
9741 /* XXX -- to be done --- XXX */
9743 return 1;
9745 #endif
9747 /* Reads in the contents of SECTION from FILE, returning a pointer
9748 to a malloc'ed buffer or NULL if something went wrong. */
9750 static char *
9751 get_section_contents (Elf_Internal_Shdr * section, FILE * file)
9753 bfd_size_type num_bytes;
9755 num_bytes = section->sh_size;
9757 if (num_bytes == 0 || section->sh_type == SHT_NOBITS)
9759 printf (_("\nSection '%s' has no data to dump.\n"),
9760 SECTION_NAME (section));
9761 return NULL;
9764 return (char *) get_data (NULL, file, section->sh_offset, 1, num_bytes,
9765 _("section contents"));
9769 static void
9770 dump_section_as_strings (Elf_Internal_Shdr * section, FILE * file)
9772 Elf_Internal_Shdr * relsec;
9773 bfd_size_type num_bytes;
9774 char * data;
9775 char * end;
9776 char * start;
9777 char * name = SECTION_NAME (section);
9778 bfd_boolean some_strings_shown;
9780 start = get_section_contents (section, file);
9781 if (start == NULL)
9782 return;
9784 printf (_("\nString dump of section '%s':\n"), name);
9786 /* If the section being dumped has relocations against it the user might
9787 be expecting these relocations to have been applied. Check for this
9788 case and issue a warning message in order to avoid confusion.
9789 FIXME: Maybe we ought to have an option that dumps a section with
9790 relocs applied ? */
9791 for (relsec = section_headers;
9792 relsec < section_headers + elf_header.e_shnum;
9793 ++relsec)
9795 if ((relsec->sh_type != SHT_RELA && relsec->sh_type != SHT_REL)
9796 || relsec->sh_info >= elf_header.e_shnum
9797 || section_headers + relsec->sh_info != section
9798 || relsec->sh_size == 0
9799 || relsec->sh_link >= elf_header.e_shnum)
9800 continue;
9802 printf (_(" Note: This section has relocations against it, but these have NOT been applied to this dump.\n"));
9803 break;
9806 num_bytes = section->sh_size;
9807 data = start;
9808 end = start + num_bytes;
9809 some_strings_shown = FALSE;
9811 while (data < end)
9813 while (!ISPRINT (* data))
9814 if (++ data >= end)
9815 break;
9817 if (data < end)
9819 #ifndef __MSVCRT__
9820 /* PR 11128: Use two separate invocations in order to work
9821 around bugs in the Solaris 8 implementation of printf. */
9822 printf (" [%6tx] ", data - start);
9823 printf ("%s\n", data);
9824 #else
9825 printf (" [%6Ix] %s\n", (size_t) (data - start), data);
9826 #endif
9827 data += strlen (data);
9828 some_strings_shown = TRUE;
9832 if (! some_strings_shown)
9833 printf (_(" No strings found in this section."));
9835 free (start);
9837 putchar ('\n');
9840 static void
9841 dump_section_as_bytes (Elf_Internal_Shdr * section,
9842 FILE * file,
9843 bfd_boolean relocate)
9845 Elf_Internal_Shdr * relsec;
9846 bfd_size_type bytes;
9847 bfd_vma addr;
9848 unsigned char * data;
9849 unsigned char * start;
9851 start = (unsigned char *) get_section_contents (section, file);
9852 if (start == NULL)
9853 return;
9855 printf (_("\nHex dump of section '%s':\n"), SECTION_NAME (section));
9857 if (relocate)
9859 apply_relocations (file, section, start);
9861 else
9863 /* If the section being dumped has relocations against it the user might
9864 be expecting these relocations to have been applied. Check for this
9865 case and issue a warning message in order to avoid confusion.
9866 FIXME: Maybe we ought to have an option that dumps a section with
9867 relocs applied ? */
9868 for (relsec = section_headers;
9869 relsec < section_headers + elf_header.e_shnum;
9870 ++relsec)
9872 if ((relsec->sh_type != SHT_RELA && relsec->sh_type != SHT_REL)
9873 || relsec->sh_info >= elf_header.e_shnum
9874 || section_headers + relsec->sh_info != section
9875 || relsec->sh_size == 0
9876 || relsec->sh_link >= elf_header.e_shnum)
9877 continue;
9879 printf (_(" NOTE: This section has relocations against it, but these have NOT been applied to this dump.\n"));
9880 break;
9884 addr = section->sh_addr;
9885 bytes = section->sh_size;
9886 data = start;
9888 while (bytes)
9890 int j;
9891 int k;
9892 int lbytes;
9894 lbytes = (bytes > 16 ? 16 : bytes);
9896 printf (" 0x%8.8lx ", (unsigned long) addr);
9898 for (j = 0; j < 16; j++)
9900 if (j < lbytes)
9901 printf ("%2.2x", data[j]);
9902 else
9903 printf (" ");
9905 if ((j & 3) == 3)
9906 printf (" ");
9909 for (j = 0; j < lbytes; j++)
9911 k = data[j];
9912 if (k >= ' ' && k < 0x7f)
9913 printf ("%c", k);
9914 else
9915 printf (".");
9918 putchar ('\n');
9920 data += lbytes;
9921 addr += lbytes;
9922 bytes -= lbytes;
9925 free (start);
9927 putchar ('\n');
9930 /* Uncompresses a section that was compressed using zlib, in place. */
9932 static int
9933 uncompress_section_contents (unsigned char **buffer ATTRIBUTE_UNUSED,
9934 dwarf_size_type *size ATTRIBUTE_UNUSED)
9936 #ifndef HAVE_ZLIB_H
9937 return FALSE;
9938 #else
9939 dwarf_size_type compressed_size = *size;
9940 unsigned char * compressed_buffer = *buffer;
9941 dwarf_size_type uncompressed_size;
9942 unsigned char * uncompressed_buffer;
9943 z_stream strm;
9944 int rc;
9945 dwarf_size_type header_size = 12;
9947 /* Read the zlib header. In this case, it should be "ZLIB" followed
9948 by the uncompressed section size, 8 bytes in big-endian order. */
9949 if (compressed_size < header_size
9950 || ! streq ((char *) compressed_buffer, "ZLIB"))
9951 return 0;
9953 uncompressed_size = compressed_buffer[4]; uncompressed_size <<= 8;
9954 uncompressed_size += compressed_buffer[5]; uncompressed_size <<= 8;
9955 uncompressed_size += compressed_buffer[6]; uncompressed_size <<= 8;
9956 uncompressed_size += compressed_buffer[7]; uncompressed_size <<= 8;
9957 uncompressed_size += compressed_buffer[8]; uncompressed_size <<= 8;
9958 uncompressed_size += compressed_buffer[9]; uncompressed_size <<= 8;
9959 uncompressed_size += compressed_buffer[10]; uncompressed_size <<= 8;
9960 uncompressed_size += compressed_buffer[11];
9962 /* It is possible the section consists of several compressed
9963 buffers concatenated together, so we uncompress in a loop. */
9964 strm.zalloc = NULL;
9965 strm.zfree = NULL;
9966 strm.opaque = NULL;
9967 strm.avail_in = compressed_size - header_size;
9968 strm.next_in = (Bytef *) compressed_buffer + header_size;
9969 strm.avail_out = uncompressed_size;
9970 uncompressed_buffer = (unsigned char *) xmalloc (uncompressed_size);
9972 rc = inflateInit (& strm);
9973 while (strm.avail_in > 0)
9975 if (rc != Z_OK)
9976 goto fail;
9977 strm.next_out = ((Bytef *) uncompressed_buffer
9978 + (uncompressed_size - strm.avail_out));
9979 rc = inflate (&strm, Z_FINISH);
9980 if (rc != Z_STREAM_END)
9981 goto fail;
9982 rc = inflateReset (& strm);
9984 rc = inflateEnd (& strm);
9985 if (rc != Z_OK
9986 || strm.avail_out != 0)
9987 goto fail;
9989 free (compressed_buffer);
9990 *buffer = uncompressed_buffer;
9991 *size = uncompressed_size;
9992 return 1;
9994 fail:
9995 free (uncompressed_buffer);
9996 /* Indicate decompression failure. */
9997 *buffer = NULL;
9998 return 0;
9999 #endif /* HAVE_ZLIB_H */
10002 static int
10003 load_specific_debug_section (enum dwarf_section_display_enum debug,
10004 Elf_Internal_Shdr * sec, void * file)
10006 struct dwarf_section * section = &debug_displays [debug].section;
10007 char buf [64];
10009 /* If it is already loaded, do nothing. */
10010 if (section->start != NULL)
10011 return 1;
10013 snprintf (buf, sizeof (buf), _("%s section data"), section->name);
10014 section->address = sec->sh_addr;
10015 section->size = sec->sh_size;
10016 section->start = (unsigned char *) get_data (NULL, (FILE *) file,
10017 sec->sh_offset, 1,
10018 sec->sh_size, buf);
10019 if (uncompress_section_contents (&section->start, &section->size))
10020 sec->sh_size = section->size;
10022 if (section->start == NULL)
10023 return 0;
10025 if (debug_displays [debug].relocate)
10026 apply_relocations ((FILE *) file, sec, section->start);
10028 return 1;
10032 load_debug_section (enum dwarf_section_display_enum debug, void * file)
10034 struct dwarf_section * section = &debug_displays [debug].section;
10035 Elf_Internal_Shdr * sec;
10037 /* Locate the debug section. */
10038 sec = find_section (section->uncompressed_name);
10039 if (sec != NULL)
10040 section->name = section->uncompressed_name;
10041 else
10043 sec = find_section (section->compressed_name);
10044 if (sec != NULL)
10045 section->name = section->compressed_name;
10047 if (sec == NULL)
10048 return 0;
10050 return load_specific_debug_section (debug, sec, (FILE *) file);
10053 void
10054 free_debug_section (enum dwarf_section_display_enum debug)
10056 struct dwarf_section * section = &debug_displays [debug].section;
10058 if (section->start == NULL)
10059 return;
10061 free ((char *) section->start);
10062 section->start = NULL;
10063 section->address = 0;
10064 section->size = 0;
10067 static int
10068 display_debug_section (Elf_Internal_Shdr * section, FILE * file)
10070 char * name = SECTION_NAME (section);
10071 bfd_size_type length;
10072 int result = 1;
10073 int i;
10075 length = section->sh_size;
10076 if (length == 0)
10078 printf (_("\nSection '%s' has no debugging data.\n"), name);
10079 return 0;
10081 if (section->sh_type == SHT_NOBITS)
10083 /* There is no point in dumping the contents of a debugging section
10084 which has the NOBITS type - the bits in the file will be random.
10085 This can happen when a file containing a .eh_frame section is
10086 stripped with the --only-keep-debug command line option. */
10087 printf (_("section '%s' has the NOBITS type - its contents are unreliable.\n"), name);
10088 return 0;
10091 if (const_strneq (name, ".gnu.linkonce.wi."))
10092 name = ".debug_info";
10094 /* See if we know how to display the contents of this section. */
10095 for (i = 0; i < max; i++)
10096 if (streq (debug_displays[i].section.uncompressed_name, name)
10097 || streq (debug_displays[i].section.compressed_name, name))
10099 struct dwarf_section * sec = &debug_displays [i].section;
10100 int secondary = (section != find_section (name));
10102 if (secondary)
10103 free_debug_section ((enum dwarf_section_display_enum) i);
10105 if (streq (sec->uncompressed_name, name))
10106 sec->name = sec->uncompressed_name;
10107 else
10108 sec->name = sec->compressed_name;
10109 if (load_specific_debug_section ((enum dwarf_section_display_enum) i,
10110 section, file))
10112 result &= debug_displays[i].display (sec, file);
10114 if (secondary || (i != info && i != abbrev))
10115 free_debug_section ((enum dwarf_section_display_enum) i);
10118 break;
10121 if (i == max)
10123 printf (_("Unrecognized debug section: %s\n"), name);
10124 result = 0;
10127 return result;
10130 /* Set DUMP_SECTS for all sections where dumps were requested
10131 based on section name. */
10133 static void
10134 initialise_dumps_byname (void)
10136 struct dump_list_entry * cur;
10138 for (cur = dump_sects_byname; cur; cur = cur->next)
10140 unsigned int i;
10141 int any;
10143 for (i = 0, any = 0; i < elf_header.e_shnum; i++)
10144 if (streq (SECTION_NAME (section_headers + i), cur->name))
10146 request_dump_bynumber (i, cur->type);
10147 any = 1;
10150 if (!any)
10151 warn (_("Section '%s' was not dumped because it does not exist!\n"),
10152 cur->name);
10156 static void
10157 process_section_contents (FILE * file)
10159 Elf_Internal_Shdr * section;
10160 unsigned int i;
10162 if (! do_dump)
10163 return;
10165 initialise_dumps_byname ();
10167 for (i = 0, section = section_headers;
10168 i < elf_header.e_shnum && i < num_dump_sects;
10169 i++, section++)
10171 #ifdef SUPPORT_DISASSEMBLY
10172 if (dump_sects[i] & DISASS_DUMP)
10173 disassemble_section (section, file);
10174 #endif
10175 if (dump_sects[i] & HEX_DUMP)
10176 dump_section_as_bytes (section, file, FALSE);
10178 if (dump_sects[i] & RELOC_DUMP)
10179 dump_section_as_bytes (section, file, TRUE);
10181 if (dump_sects[i] & STRING_DUMP)
10182 dump_section_as_strings (section, file);
10184 if (dump_sects[i] & DEBUG_DUMP)
10185 display_debug_section (section, file);
10188 /* Check to see if the user requested a
10189 dump of a section that does not exist. */
10190 while (i++ < num_dump_sects)
10191 if (dump_sects[i])
10192 warn (_("Section %d was not dumped because it does not exist!\n"), i);
10195 static void
10196 process_mips_fpe_exception (int mask)
10198 if (mask)
10200 int first = 1;
10201 if (mask & OEX_FPU_INEX)
10202 fputs ("INEX", stdout), first = 0;
10203 if (mask & OEX_FPU_UFLO)
10204 printf ("%sUFLO", first ? "" : "|"), first = 0;
10205 if (mask & OEX_FPU_OFLO)
10206 printf ("%sOFLO", first ? "" : "|"), first = 0;
10207 if (mask & OEX_FPU_DIV0)
10208 printf ("%sDIV0", first ? "" : "|"), first = 0;
10209 if (mask & OEX_FPU_INVAL)
10210 printf ("%sINVAL", first ? "" : "|");
10212 else
10213 fputs ("0", stdout);
10216 /* ARM EABI attributes section. */
10217 typedef struct
10219 int tag;
10220 const char * name;
10221 /* 0 = special, 1 = string, 2 = uleb123, > 0x80 == table lookup. */
10222 int type;
10223 const char ** table;
10224 } arm_attr_public_tag;
10226 static const char * arm_attr_tag_CPU_arch[] =
10227 {"Pre-v4", "v4", "v4T", "v5T", "v5TE", "v5TEJ", "v6", "v6KZ", "v6T2",
10228 "v6K", "v7", "v6-M", "v6S-M", "v7E-M"};
10229 static const char * arm_attr_tag_ARM_ISA_use[] = {"No", "Yes"};
10230 static const char * arm_attr_tag_THUMB_ISA_use[] =
10231 {"No", "Thumb-1", "Thumb-2"};
10232 static const char * arm_attr_tag_FP_arch[] =
10233 {"No", "VFPv1", "VFPv2", "VFPv3", "VFPv3-D16", "VFPv4", "VFPv4-D16"};
10234 static const char * arm_attr_tag_WMMX_arch[] = {"No", "WMMXv1", "WMMXv2"};
10235 static const char * arm_attr_tag_Advanced_SIMD_arch[] =
10236 {"No", "NEONv1", "NEONv1 with Fused-MAC"};
10237 static const char * arm_attr_tag_PCS_config[] =
10238 {"None", "Bare platform", "Linux application", "Linux DSO", "PalmOS 2004",
10239 "PalmOS (reserved)", "SymbianOS 2004", "SymbianOS (reserved)"};
10240 static const char * arm_attr_tag_ABI_PCS_R9_use[] =
10241 {"V6", "SB", "TLS", "Unused"};
10242 static const char * arm_attr_tag_ABI_PCS_RW_data[] =
10243 {"Absolute", "PC-relative", "SB-relative", "None"};
10244 static const char * arm_attr_tag_ABI_PCS_RO_data[] =
10245 {"Absolute", "PC-relative", "None"};
10246 static const char * arm_attr_tag_ABI_PCS_GOT_use[] =
10247 {"None", "direct", "GOT-indirect"};
10248 static const char * arm_attr_tag_ABI_PCS_wchar_t[] =
10249 {"None", "??? 1", "2", "??? 3", "4"};
10250 static const char * arm_attr_tag_ABI_FP_rounding[] = {"Unused", "Needed"};
10251 static const char * arm_attr_tag_ABI_FP_denormal[] =
10252 {"Unused", "Needed", "Sign only"};
10253 static const char * arm_attr_tag_ABI_FP_exceptions[] = {"Unused", "Needed"};
10254 static const char * arm_attr_tag_ABI_FP_user_exceptions[] = {"Unused", "Needed"};
10255 static const char * arm_attr_tag_ABI_FP_number_model[] =
10256 {"Unused", "Finite", "RTABI", "IEEE 754"};
10257 static const char * arm_attr_tag_ABI_enum_size[] =
10258 {"Unused", "small", "int", "forced to int"};
10259 static const char * arm_attr_tag_ABI_HardFP_use[] =
10260 {"As Tag_FP_arch", "SP only", "DP only", "SP and DP"};
10261 static const char * arm_attr_tag_ABI_VFP_args[] =
10262 {"AAPCS", "VFP registers", "custom"};
10263 static const char * arm_attr_tag_ABI_WMMX_args[] =
10264 {"AAPCS", "WMMX registers", "custom"};
10265 static const char * arm_attr_tag_ABI_optimization_goals[] =
10266 {"None", "Prefer Speed", "Aggressive Speed", "Prefer Size",
10267 "Aggressive Size", "Prefer Debug", "Aggressive Debug"};
10268 static const char * arm_attr_tag_ABI_FP_optimization_goals[] =
10269 {"None", "Prefer Speed", "Aggressive Speed", "Prefer Size",
10270 "Aggressive Size", "Prefer Accuracy", "Aggressive Accuracy"};
10271 static const char * arm_attr_tag_CPU_unaligned_access[] = {"None", "v6"};
10272 static const char * arm_attr_tag_FP_HP_extension[] =
10273 {"Not Allowed", "Allowed"};
10274 static const char * arm_attr_tag_ABI_FP_16bit_format[] =
10275 {"None", "IEEE 754", "Alternative Format"};
10276 static const char * arm_attr_tag_MPextension_use[] =
10277 {"Not Allowed", "Allowed"};
10278 static const char * arm_attr_tag_DIV_use[] =
10279 {"Allowed in Thumb-ISA, v7-R or v7-M", "Not allowed",
10280 "Allowed in v7-A with integer division extension"};
10281 static const char * arm_attr_tag_T2EE_use[] = {"Not Allowed", "Allowed"};
10282 static const char * arm_attr_tag_Virtualization_use[] =
10283 {"Not Allowed", "TrustZone", "Virtualization Extensions",
10284 "TrustZone and Virtualization Extensions"};
10285 static const char * arm_attr_tag_MPextension_use_legacy[] =
10286 {"Not Allowed", "Allowed"};
10288 #define LOOKUP(id, name) \
10289 {id, #name, 0x80 | ARRAY_SIZE(arm_attr_tag_##name), arm_attr_tag_##name}
10290 static arm_attr_public_tag arm_attr_public_tags[] =
10292 {4, "CPU_raw_name", 1, NULL},
10293 {5, "CPU_name", 1, NULL},
10294 LOOKUP(6, CPU_arch),
10295 {7, "CPU_arch_profile", 0, NULL},
10296 LOOKUP(8, ARM_ISA_use),
10297 LOOKUP(9, THUMB_ISA_use),
10298 LOOKUP(10, FP_arch),
10299 LOOKUP(11, WMMX_arch),
10300 LOOKUP(12, Advanced_SIMD_arch),
10301 LOOKUP(13, PCS_config),
10302 LOOKUP(14, ABI_PCS_R9_use),
10303 LOOKUP(15, ABI_PCS_RW_data),
10304 LOOKUP(16, ABI_PCS_RO_data),
10305 LOOKUP(17, ABI_PCS_GOT_use),
10306 LOOKUP(18, ABI_PCS_wchar_t),
10307 LOOKUP(19, ABI_FP_rounding),
10308 LOOKUP(20, ABI_FP_denormal),
10309 LOOKUP(21, ABI_FP_exceptions),
10310 LOOKUP(22, ABI_FP_user_exceptions),
10311 LOOKUP(23, ABI_FP_number_model),
10312 {24, "ABI_align_needed", 0, NULL},
10313 {25, "ABI_align_preserved", 0, NULL},
10314 LOOKUP(26, ABI_enum_size),
10315 LOOKUP(27, ABI_HardFP_use),
10316 LOOKUP(28, ABI_VFP_args),
10317 LOOKUP(29, ABI_WMMX_args),
10318 LOOKUP(30, ABI_optimization_goals),
10319 LOOKUP(31, ABI_FP_optimization_goals),
10320 {32, "compatibility", 0, NULL},
10321 LOOKUP(34, CPU_unaligned_access),
10322 LOOKUP(36, FP_HP_extension),
10323 LOOKUP(38, ABI_FP_16bit_format),
10324 LOOKUP(42, MPextension_use),
10325 LOOKUP(44, DIV_use),
10326 {64, "nodefaults", 0, NULL},
10327 {65, "also_compatible_with", 0, NULL},
10328 LOOKUP(66, T2EE_use),
10329 {67, "conformance", 1, NULL},
10330 LOOKUP(68, Virtualization_use),
10331 LOOKUP(70, MPextension_use_legacy)
10333 #undef LOOKUP
10335 static unsigned char *
10336 display_arm_attribute (unsigned char * p)
10338 int tag;
10339 unsigned int len;
10340 int val;
10341 arm_attr_public_tag * attr;
10342 unsigned i;
10343 int type;
10345 tag = read_uleb128 (p, &len);
10346 p += len;
10347 attr = NULL;
10348 for (i = 0; i < ARRAY_SIZE (arm_attr_public_tags); i++)
10350 if (arm_attr_public_tags[i].tag == tag)
10352 attr = &arm_attr_public_tags[i];
10353 break;
10357 if (attr)
10359 printf (" Tag_%s: ", attr->name);
10360 switch (attr->type)
10362 case 0:
10363 switch (tag)
10365 case 7: /* Tag_CPU_arch_profile. */
10366 val = read_uleb128 (p, &len);
10367 p += len;
10368 switch (val)
10370 case 0: printf (_("None\n")); break;
10371 case 'A': printf (_("Application\n")); break;
10372 case 'R': printf (_("Realtime\n")); break;
10373 case 'M': printf (_("Microcontroller\n")); break;
10374 case 'S': printf (_("Application or Realtime\n")); break;
10375 default: printf ("??? (%d)\n", val); break;
10377 break;
10379 case 24: /* Tag_align_needed. */
10380 val = read_uleb128 (p, &len);
10381 p += len;
10382 switch (val)
10384 case 0: printf (_("None\n")); break;
10385 case 1: printf (_("8-byte\n")); break;
10386 case 2: printf (_("4-byte\n")); break;
10387 case 3: printf ("??? 3\n"); break;
10388 default:
10389 if (val <= 12)
10390 printf (_("8-byte and up to %d-byte extended\n"),
10391 1 << val);
10392 else
10393 printf ("??? (%d)\n", val);
10394 break;
10396 break;
10398 case 25: /* Tag_align_preserved. */
10399 val = read_uleb128 (p, &len);
10400 p += len;
10401 switch (val)
10403 case 0: printf (_("None\n")); break;
10404 case 1: printf (_("8-byte, except leaf SP\n")); break;
10405 case 2: printf (_("8-byte\n")); break;
10406 case 3: printf ("??? 3\n"); break;
10407 default:
10408 if (val <= 12)
10409 printf (_("8-byte and up to %d-byte extended\n"),
10410 1 << val);
10411 else
10412 printf ("??? (%d)\n", val);
10413 break;
10415 break;
10417 case 32: /* Tag_compatibility. */
10418 val = read_uleb128 (p, &len);
10419 p += len;
10420 printf (_("flag = %d, vendor = %s\n"), val, p);
10421 p += strlen ((char *) p) + 1;
10422 break;
10424 case 64: /* Tag_nodefaults. */
10425 p++;
10426 printf (_("True\n"));
10427 break;
10429 case 65: /* Tag_also_compatible_with. */
10430 val = read_uleb128 (p, &len);
10431 p += len;
10432 if (val == 6 /* Tag_CPU_arch. */)
10434 val = read_uleb128 (p, &len);
10435 p += len;
10436 if ((unsigned int)val >= ARRAY_SIZE (arm_attr_tag_CPU_arch))
10437 printf ("??? (%d)\n", val);
10438 else
10439 printf ("%s\n", arm_attr_tag_CPU_arch[val]);
10441 else
10442 printf ("???\n");
10443 while (*(p++) != '\0' /* NUL terminator. */);
10444 break;
10446 default:
10447 abort ();
10449 return p;
10451 case 1:
10452 case 2:
10453 type = attr->type;
10454 break;
10456 default:
10457 assert (attr->type & 0x80);
10458 val = read_uleb128 (p, &len);
10459 p += len;
10460 type = attr->type & 0x7f;
10461 if (val >= type)
10462 printf ("??? (%d)\n", val);
10463 else
10464 printf ("%s\n", attr->table[val]);
10465 return p;
10468 else
10470 if (tag & 1)
10471 type = 1; /* String. */
10472 else
10473 type = 2; /* uleb128. */
10474 printf (" Tag_unknown_%d: ", tag);
10477 if (type == 1)
10479 printf ("\"%s\"\n", p);
10480 p += strlen ((char *) p) + 1;
10482 else
10484 val = read_uleb128 (p, &len);
10485 p += len;
10486 printf ("%d (0x%x)\n", val, val);
10489 return p;
10492 static unsigned char *
10493 display_gnu_attribute (unsigned char * p,
10494 unsigned char * (* display_proc_gnu_attribute) (unsigned char *, int))
10496 int tag;
10497 unsigned int len;
10498 int val;
10499 int type;
10501 tag = read_uleb128 (p, &len);
10502 p += len;
10504 /* Tag_compatibility is the only generic GNU attribute defined at
10505 present. */
10506 if (tag == 32)
10508 val = read_uleb128 (p, &len);
10509 p += len;
10510 printf (_("flag = %d, vendor = %s\n"), val, p);
10511 p += strlen ((char *) p) + 1;
10512 return p;
10515 if ((tag & 2) == 0 && display_proc_gnu_attribute)
10516 return display_proc_gnu_attribute (p, tag);
10518 if (tag & 1)
10519 type = 1; /* String. */
10520 else
10521 type = 2; /* uleb128. */
10522 printf (" Tag_unknown_%d: ", tag);
10524 if (type == 1)
10526 printf ("\"%s\"\n", p);
10527 p += strlen ((char *) p) + 1;
10529 else
10531 val = read_uleb128 (p, &len);
10532 p += len;
10533 printf ("%d (0x%x)\n", val, val);
10536 return p;
10539 static unsigned char *
10540 display_power_gnu_attribute (unsigned char * p, int tag)
10542 int type;
10543 unsigned int len;
10544 int val;
10546 if (tag == Tag_GNU_Power_ABI_FP)
10548 val = read_uleb128 (p, &len);
10549 p += len;
10550 printf (" Tag_GNU_Power_ABI_FP: ");
10552 switch (val)
10554 case 0:
10555 printf (_("Hard or soft float\n"));
10556 break;
10557 case 1:
10558 printf (_("Hard float\n"));
10559 break;
10560 case 2:
10561 printf (_("Soft float\n"));
10562 break;
10563 case 3:
10564 printf (_("Single-precision hard float\n"));
10565 break;
10566 default:
10567 printf ("??? (%d)\n", val);
10568 break;
10570 return p;
10573 if (tag == Tag_GNU_Power_ABI_Vector)
10575 val = read_uleb128 (p, &len);
10576 p += len;
10577 printf (" Tag_GNU_Power_ABI_Vector: ");
10578 switch (val)
10580 case 0:
10581 printf (_("Any\n"));
10582 break;
10583 case 1:
10584 printf (_("Generic\n"));
10585 break;
10586 case 2:
10587 printf ("AltiVec\n");
10588 break;
10589 case 3:
10590 printf ("SPE\n");
10591 break;
10592 default:
10593 printf ("??? (%d)\n", val);
10594 break;
10596 return p;
10599 if (tag == Tag_GNU_Power_ABI_Struct_Return)
10601 val = read_uleb128 (p, &len);
10602 p += len;
10603 printf (" Tag_GNU_Power_ABI_Struct_Return: ");
10604 switch (val)
10606 case 0:
10607 printf (_("Any\n"));
10608 break;
10609 case 1:
10610 printf ("r3/r4\n");
10611 break;
10612 case 2:
10613 printf (_("Memory\n"));
10614 break;
10615 default:
10616 printf ("??? (%d)\n", val);
10617 break;
10619 return p;
10622 if (tag & 1)
10623 type = 1; /* String. */
10624 else
10625 type = 2; /* uleb128. */
10626 printf (" Tag_unknown_%d: ", tag);
10628 if (type == 1)
10630 printf ("\"%s\"\n", p);
10631 p += strlen ((char *) p) + 1;
10633 else
10635 val = read_uleb128 (p, &len);
10636 p += len;
10637 printf ("%d (0x%x)\n", val, val);
10640 return p;
10643 static unsigned char *
10644 display_mips_gnu_attribute (unsigned char * p, int tag)
10646 int type;
10647 unsigned int len;
10648 int val;
10650 if (tag == Tag_GNU_MIPS_ABI_FP)
10652 val = read_uleb128 (p, &len);
10653 p += len;
10654 printf (" Tag_GNU_MIPS_ABI_FP: ");
10656 switch (val)
10658 case 0:
10659 printf (_("Hard or soft float\n"));
10660 break;
10661 case 1:
10662 printf (_("Hard float (double precision)\n"));
10663 break;
10664 case 2:
10665 printf (_("Hard float (single precision)\n"));
10666 break;
10667 case 3:
10668 printf (_("Soft float\n"));
10669 break;
10670 case 4:
10671 printf (_("Hard float (MIPS32r2 64-bit FPU)\n"));
10672 break;
10673 default:
10674 printf ("??? (%d)\n", val);
10675 break;
10677 return p;
10680 if (tag & 1)
10681 type = 1; /* String. */
10682 else
10683 type = 2; /* uleb128. */
10684 printf (" Tag_unknown_%d: ", tag);
10686 if (type == 1)
10688 printf ("\"%s\"\n", p);
10689 p += strlen ((char *) p) + 1;
10691 else
10693 val = read_uleb128 (p, &len);
10694 p += len;
10695 printf ("%d (0x%x)\n", val, val);
10698 return p;
10701 static unsigned char *
10702 display_tic6x_attribute (unsigned char * p)
10704 int tag;
10705 unsigned int len;
10706 int val;
10708 tag = read_uleb128 (p, &len);
10709 p += len;
10711 switch (tag)
10713 case Tag_ISA:
10714 val = read_uleb128 (p, &len);
10715 p += len;
10716 printf (" Tag_ISA: ");
10718 switch (val)
10720 case C6XABI_Tag_ISA_none:
10721 printf (_("None\n"));
10722 break;
10723 case C6XABI_Tag_ISA_C62X:
10724 printf ("C62x\n");
10725 break;
10726 case C6XABI_Tag_ISA_C67X:
10727 printf ("C67x\n");
10728 break;
10729 case C6XABI_Tag_ISA_C67XP:
10730 printf ("C67x+\n");
10731 break;
10732 case C6XABI_Tag_ISA_C64X:
10733 printf ("C64x\n");
10734 break;
10735 case C6XABI_Tag_ISA_C64XP:
10736 printf ("C64x+\n");
10737 break;
10738 case C6XABI_Tag_ISA_C674X:
10739 printf ("C674x\n");
10740 break;
10741 default:
10742 printf ("??? (%d)\n", val);
10743 break;
10745 return p;
10747 case Tag_ABI_wchar_t:
10748 val = read_uleb128 (p, &len);
10749 p += len;
10750 printf (" Tag_ABI_wchar_t: ");
10751 switch (val)
10753 case 0:
10754 printf (_("Not used\n"));
10755 break;
10756 case 1:
10757 printf (_("2 bytes\n"));
10758 break;
10759 case 2:
10760 printf (_("4 bytes\n"));
10761 break;
10762 default:
10763 printf ("??? (%d)\n", val);
10764 break;
10766 return p;
10768 case Tag_ABI_stack_align_needed:
10769 val = read_uleb128 (p, &len);
10770 p += len;
10771 printf (" Tag_ABI_stack_align_needed: ");
10772 switch (val)
10774 case 0:
10775 printf (_("8-byte\n"));
10776 break;
10777 case 1:
10778 printf (_("16-byte\n"));
10779 break;
10780 default:
10781 printf ("??? (%d)\n", val);
10782 break;
10784 return p;
10786 case Tag_ABI_stack_align_preserved:
10787 val = read_uleb128 (p, &len);
10788 p += len;
10789 printf (" Tag_ABI_stack_align_preserved: ");
10790 switch (val)
10792 case 0:
10793 printf (_("8-byte\n"));
10794 break;
10795 case 1:
10796 printf (_("16-byte\n"));
10797 break;
10798 default:
10799 printf ("??? (%d)\n", val);
10800 break;
10802 return p;
10804 case Tag_ABI_DSBT:
10805 val = read_uleb128 (p, &len);
10806 p += len;
10807 printf (" Tag_ABI_DSBT: ");
10808 switch (val)
10810 case 0:
10811 printf (_("DSBT addressing not used\n"));
10812 break;
10813 case 1:
10814 printf (_("DSBT addressing used\n"));
10815 break;
10816 default:
10817 printf ("??? (%d)\n", val);
10818 break;
10820 return p;
10822 case Tag_ABI_PID:
10823 val = read_uleb128 (p, &len);
10824 p += len;
10825 printf (" Tag_ABI_PID: ");
10826 switch (val)
10828 case 0:
10829 printf (_("Data addressing position-dependent\n"));
10830 break;
10831 case 1:
10832 printf (_("Data addressing position-independent, GOT near DP\n"));
10833 break;
10834 case 2:
10835 printf (_("Data addressing position-independent, GOT far from DP\n"));
10836 break;
10837 default:
10838 printf ("??? (%d)\n", val);
10839 break;
10841 return p;
10843 case Tag_ABI_PIC:
10844 val = read_uleb128 (p, &len);
10845 p += len;
10846 printf (" Tag_ABI_PIC: ");
10847 switch (val)
10849 case 0:
10850 printf (_("Code addressing position-dependent\n"));
10851 break;
10852 case 1:
10853 printf (_("Code addressing position-independent\n"));
10854 break;
10855 default:
10856 printf ("??? (%d)\n", val);
10857 break;
10859 return p;
10861 case Tag_ABI_array_object_alignment:
10862 val = read_uleb128 (p, &len);
10863 p += len;
10864 printf (" Tag_ABI_array_object_alignment: ");
10865 switch (val)
10867 case 0:
10868 printf (_("8-byte\n"));
10869 break;
10870 case 1:
10871 printf (_("4-byte\n"));
10872 break;
10873 case 2:
10874 printf (_("16-byte\n"));
10875 break;
10876 default:
10877 printf ("??? (%d)\n", val);
10878 break;
10880 return p;
10882 case Tag_ABI_array_object_align_expected:
10883 val = read_uleb128 (p, &len);
10884 p += len;
10885 printf (" Tag_ABI_array_object_align_expected: ");
10886 switch (val)
10888 case 0:
10889 printf (_("8-byte\n"));
10890 break;
10891 case 1:
10892 printf (_("4-byte\n"));
10893 break;
10894 case 2:
10895 printf (_("16-byte\n"));
10896 break;
10897 default:
10898 printf ("??? (%d)\n", val);
10899 break;
10901 return p;
10903 case Tag_ABI_compatibility:
10904 val = read_uleb128 (p, &len);
10905 p += len;
10906 printf (" Tag_ABI_compatibility: ");
10907 printf (_("flag = %d, vendor = %s\n"), val, p);
10908 p += strlen ((char *) p) + 1;
10909 return p;
10911 case Tag_ABI_conformance:
10912 printf (" Tag_ABI_conformance: ");
10913 printf ("\"%s\"\n", p);
10914 p += strlen ((char *) p) + 1;
10915 return p;
10918 printf (" Tag_unknown_%d: ", tag);
10920 if (tag & 1)
10922 printf ("\"%s\"\n", p);
10923 p += strlen ((char *) p) + 1;
10925 else
10927 val = read_uleb128 (p, &len);
10928 p += len;
10929 printf ("%d (0x%x)\n", val, val);
10932 return p;
10935 static int
10936 process_attributes (FILE * file,
10937 const char * public_name,
10938 unsigned int proc_type,
10939 unsigned char * (* display_pub_attribute) (unsigned char *),
10940 unsigned char * (* display_proc_gnu_attribute) (unsigned char *, int))
10942 Elf_Internal_Shdr * sect;
10943 unsigned char * contents;
10944 unsigned char * p;
10945 unsigned char * end;
10946 bfd_vma section_len;
10947 bfd_vma len;
10948 unsigned i;
10950 /* Find the section header so that we get the size. */
10951 for (i = 0, sect = section_headers;
10952 i < elf_header.e_shnum;
10953 i++, sect++)
10955 if (sect->sh_type != proc_type && sect->sh_type != SHT_GNU_ATTRIBUTES)
10956 continue;
10958 contents = (unsigned char *) get_data (NULL, file, sect->sh_offset, 1,
10959 sect->sh_size, _("attributes"));
10960 if (contents == NULL)
10961 continue;
10963 p = contents;
10964 if (*p == 'A')
10966 len = sect->sh_size - 1;
10967 p++;
10969 while (len > 0)
10971 int namelen;
10972 bfd_boolean public_section;
10973 bfd_boolean gnu_section;
10975 section_len = byte_get (p, 4);
10976 p += 4;
10978 if (section_len > len)
10980 printf (_("ERROR: Bad section length (%d > %d)\n"),
10981 (int) section_len, (int) len);
10982 section_len = len;
10985 len -= section_len;
10986 printf (_("Attribute Section: %s\n"), p);
10988 if (public_name && streq ((char *) p, public_name))
10989 public_section = TRUE;
10990 else
10991 public_section = FALSE;
10993 if (streq ((char *) p, "gnu"))
10994 gnu_section = TRUE;
10995 else
10996 gnu_section = FALSE;
10998 namelen = strlen ((char *) p) + 1;
10999 p += namelen;
11000 section_len -= namelen + 4;
11002 while (section_len > 0)
11004 int tag = *(p++);
11005 int val;
11006 bfd_vma size;
11008 size = byte_get (p, 4);
11009 if (size > section_len)
11011 printf (_("ERROR: Bad subsection length (%d > %d)\n"),
11012 (int) size, (int) section_len);
11013 size = section_len;
11016 section_len -= size;
11017 end = p + size - 1;
11018 p += 4;
11020 switch (tag)
11022 case 1:
11023 printf (_("File Attributes\n"));
11024 break;
11025 case 2:
11026 printf (_("Section Attributes:"));
11027 goto do_numlist;
11028 case 3:
11029 printf (_("Symbol Attributes:"));
11030 do_numlist:
11031 for (;;)
11033 unsigned int j;
11035 val = read_uleb128 (p, &j);
11036 p += j;
11037 if (val == 0)
11038 break;
11039 printf (" %d", val);
11041 printf ("\n");
11042 break;
11043 default:
11044 printf (_("Unknown tag: %d\n"), tag);
11045 public_section = FALSE;
11046 break;
11049 if (public_section)
11051 while (p < end)
11052 p = display_pub_attribute (p);
11054 else if (gnu_section)
11056 while (p < end)
11057 p = display_gnu_attribute (p,
11058 display_proc_gnu_attribute);
11060 else
11062 /* ??? Do something sensible, like dump hex. */
11063 printf (_(" Unknown section contexts\n"));
11064 p = end;
11069 else
11070 printf (_("Unknown format '%c'\n"), *p);
11072 free (contents);
11074 return 1;
11077 static int
11078 process_arm_specific (FILE * file)
11080 return process_attributes (file, "aeabi", SHT_ARM_ATTRIBUTES,
11081 display_arm_attribute, NULL);
11084 static int
11085 process_power_specific (FILE * file)
11087 return process_attributes (file, NULL, SHT_GNU_ATTRIBUTES, NULL,
11088 display_power_gnu_attribute);
11091 static int
11092 process_tic6x_specific (FILE * file)
11094 return process_attributes (file, "c6xabi", SHT_C6000_ATTRIBUTES,
11095 display_tic6x_attribute, NULL);
11098 /* DATA points to the contents of a MIPS GOT that starts at VMA PLTGOT.
11099 Print the Address, Access and Initial fields of an entry at VMA ADDR
11100 and return the VMA of the next entry. */
11102 static bfd_vma
11103 print_mips_got_entry (unsigned char * data, bfd_vma pltgot, bfd_vma addr)
11105 printf (" ");
11106 print_vma (addr, LONG_HEX);
11107 printf (" ");
11108 if (addr < pltgot + 0xfff0)
11109 printf ("%6d(gp)", (int) (addr - pltgot - 0x7ff0));
11110 else
11111 printf ("%10s", "");
11112 printf (" ");
11113 if (data == NULL)
11114 printf ("%*s", is_32bit_elf ? 8 : 16, _("<unknown>"));
11115 else
11117 bfd_vma entry;
11119 entry = byte_get (data + addr - pltgot, is_32bit_elf ? 4 : 8);
11120 print_vma (entry, LONG_HEX);
11122 return addr + (is_32bit_elf ? 4 : 8);
11125 /* DATA points to the contents of a MIPS PLT GOT that starts at VMA
11126 PLTGOT. Print the Address and Initial fields of an entry at VMA
11127 ADDR and return the VMA of the next entry. */
11129 static bfd_vma
11130 print_mips_pltgot_entry (unsigned char * data, bfd_vma pltgot, bfd_vma addr)
11132 printf (" ");
11133 print_vma (addr, LONG_HEX);
11134 printf (" ");
11135 if (data == NULL)
11136 printf ("%*s", is_32bit_elf ? 8 : 16, _("<unknown>"));
11137 else
11139 bfd_vma entry;
11141 entry = byte_get (data + addr - pltgot, is_32bit_elf ? 4 : 8);
11142 print_vma (entry, LONG_HEX);
11144 return addr + (is_32bit_elf ? 4 : 8);
11147 static int
11148 process_mips_specific (FILE * file)
11150 Elf_Internal_Dyn * entry;
11151 size_t liblist_offset = 0;
11152 size_t liblistno = 0;
11153 size_t conflictsno = 0;
11154 size_t options_offset = 0;
11155 size_t conflicts_offset = 0;
11156 size_t pltrelsz = 0;
11157 size_t pltrel = 0;
11158 bfd_vma pltgot = 0;
11159 bfd_vma mips_pltgot = 0;
11160 bfd_vma jmprel = 0;
11161 bfd_vma local_gotno = 0;
11162 bfd_vma gotsym = 0;
11163 bfd_vma symtabno = 0;
11165 process_attributes (file, NULL, SHT_GNU_ATTRIBUTES, NULL,
11166 display_mips_gnu_attribute);
11168 /* We have a lot of special sections. Thanks SGI! */
11169 if (dynamic_section == NULL)
11170 /* No information available. */
11171 return 0;
11173 for (entry = dynamic_section; entry->d_tag != DT_NULL; ++entry)
11174 switch (entry->d_tag)
11176 case DT_MIPS_LIBLIST:
11177 liblist_offset
11178 = offset_from_vma (file, entry->d_un.d_val,
11179 liblistno * sizeof (Elf32_External_Lib));
11180 break;
11181 case DT_MIPS_LIBLISTNO:
11182 liblistno = entry->d_un.d_val;
11183 break;
11184 case DT_MIPS_OPTIONS:
11185 options_offset = offset_from_vma (file, entry->d_un.d_val, 0);
11186 break;
11187 case DT_MIPS_CONFLICT:
11188 conflicts_offset
11189 = offset_from_vma (file, entry->d_un.d_val,
11190 conflictsno * sizeof (Elf32_External_Conflict));
11191 break;
11192 case DT_MIPS_CONFLICTNO:
11193 conflictsno = entry->d_un.d_val;
11194 break;
11195 case DT_PLTGOT:
11196 pltgot = entry->d_un.d_ptr;
11197 break;
11198 case DT_MIPS_LOCAL_GOTNO:
11199 local_gotno = entry->d_un.d_val;
11200 break;
11201 case DT_MIPS_GOTSYM:
11202 gotsym = entry->d_un.d_val;
11203 break;
11204 case DT_MIPS_SYMTABNO:
11205 symtabno = entry->d_un.d_val;
11206 break;
11207 case DT_MIPS_PLTGOT:
11208 mips_pltgot = entry->d_un.d_ptr;
11209 break;
11210 case DT_PLTREL:
11211 pltrel = entry->d_un.d_val;
11212 break;
11213 case DT_PLTRELSZ:
11214 pltrelsz = entry->d_un.d_val;
11215 break;
11216 case DT_JMPREL:
11217 jmprel = entry->d_un.d_ptr;
11218 break;
11219 default:
11220 break;
11223 if (liblist_offset != 0 && liblistno != 0 && do_dynamic)
11225 Elf32_External_Lib * elib;
11226 size_t cnt;
11228 elib = (Elf32_External_Lib *) get_data (NULL, file, liblist_offset,
11229 liblistno,
11230 sizeof (Elf32_External_Lib),
11231 _("liblist"));
11232 if (elib)
11234 printf (_("\nSection '.liblist' contains %lu entries:\n"),
11235 (unsigned long) liblistno);
11236 fputs (_(" Library Time Stamp Checksum Version Flags\n"),
11237 stdout);
11239 for (cnt = 0; cnt < liblistno; ++cnt)
11241 Elf32_Lib liblist;
11242 time_t atime;
11243 char timebuf[20];
11244 struct tm * tmp;
11246 liblist.l_name = BYTE_GET (elib[cnt].l_name);
11247 atime = BYTE_GET (elib[cnt].l_time_stamp);
11248 liblist.l_checksum = BYTE_GET (elib[cnt].l_checksum);
11249 liblist.l_version = BYTE_GET (elib[cnt].l_version);
11250 liblist.l_flags = BYTE_GET (elib[cnt].l_flags);
11252 tmp = gmtime (&atime);
11253 snprintf (timebuf, sizeof (timebuf),
11254 "%04u-%02u-%02uT%02u:%02u:%02u",
11255 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
11256 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
11258 printf ("%3lu: ", (unsigned long) cnt);
11259 if (VALID_DYNAMIC_NAME (liblist.l_name))
11260 print_symbol (20, GET_DYNAMIC_NAME (liblist.l_name));
11261 else
11262 printf (_("<corrupt: %9ld>"), liblist.l_name);
11263 printf (" %s %#10lx %-7ld", timebuf, liblist.l_checksum,
11264 liblist.l_version);
11266 if (liblist.l_flags == 0)
11267 puts (_(" NONE"));
11268 else
11270 static const struct
11272 const char * name;
11273 int bit;
11275 l_flags_vals[] =
11277 { " EXACT_MATCH", LL_EXACT_MATCH },
11278 { " IGNORE_INT_VER", LL_IGNORE_INT_VER },
11279 { " REQUIRE_MINOR", LL_REQUIRE_MINOR },
11280 { " EXPORTS", LL_EXPORTS },
11281 { " DELAY_LOAD", LL_DELAY_LOAD },
11282 { " DELTA", LL_DELTA }
11284 int flags = liblist.l_flags;
11285 size_t fcnt;
11287 for (fcnt = 0; fcnt < ARRAY_SIZE (l_flags_vals); ++fcnt)
11288 if ((flags & l_flags_vals[fcnt].bit) != 0)
11290 fputs (l_flags_vals[fcnt].name, stdout);
11291 flags ^= l_flags_vals[fcnt].bit;
11293 if (flags != 0)
11294 printf (" %#x", (unsigned int) flags);
11296 puts ("");
11300 free (elib);
11304 if (options_offset != 0)
11306 Elf_External_Options * eopt;
11307 Elf_Internal_Shdr * sect = section_headers;
11308 Elf_Internal_Options * iopt;
11309 Elf_Internal_Options * option;
11310 size_t offset;
11311 int cnt;
11313 /* Find the section header so that we get the size. */
11314 while (sect->sh_type != SHT_MIPS_OPTIONS)
11315 ++sect;
11317 eopt = (Elf_External_Options *) get_data (NULL, file, options_offset, 1,
11318 sect->sh_size, _("options"));
11319 if (eopt)
11321 iopt = (Elf_Internal_Options *)
11322 cmalloc ((sect->sh_size / sizeof (eopt)), sizeof (* iopt));
11323 if (iopt == NULL)
11325 error (_("Out of memory\n"));
11326 return 0;
11329 offset = cnt = 0;
11330 option = iopt;
11332 while (offset < sect->sh_size)
11334 Elf_External_Options * eoption;
11336 eoption = (Elf_External_Options *) ((char *) eopt + offset);
11338 option->kind = BYTE_GET (eoption->kind);
11339 option->size = BYTE_GET (eoption->size);
11340 option->section = BYTE_GET (eoption->section);
11341 option->info = BYTE_GET (eoption->info);
11343 offset += option->size;
11345 ++option;
11346 ++cnt;
11349 printf (_("\nSection '%s' contains %d entries:\n"),
11350 SECTION_NAME (sect), cnt);
11352 option = iopt;
11354 while (cnt-- > 0)
11356 size_t len;
11358 switch (option->kind)
11360 case ODK_NULL:
11361 /* This shouldn't happen. */
11362 printf (" NULL %d %lx", option->section, option->info);
11363 break;
11364 case ODK_REGINFO:
11365 printf (" REGINFO ");
11366 if (elf_header.e_machine == EM_MIPS)
11368 /* 32bit form. */
11369 Elf32_External_RegInfo * ereg;
11370 Elf32_RegInfo reginfo;
11372 ereg = (Elf32_External_RegInfo *) (option + 1);
11373 reginfo.ri_gprmask = BYTE_GET (ereg->ri_gprmask);
11374 reginfo.ri_cprmask[0] = BYTE_GET (ereg->ri_cprmask[0]);
11375 reginfo.ri_cprmask[1] = BYTE_GET (ereg->ri_cprmask[1]);
11376 reginfo.ri_cprmask[2] = BYTE_GET (ereg->ri_cprmask[2]);
11377 reginfo.ri_cprmask[3] = BYTE_GET (ereg->ri_cprmask[3]);
11378 reginfo.ri_gp_value = BYTE_GET (ereg->ri_gp_value);
11380 printf ("GPR %08lx GP 0x%lx\n",
11381 reginfo.ri_gprmask,
11382 (unsigned long) reginfo.ri_gp_value);
11383 printf (" CPR0 %08lx CPR1 %08lx CPR2 %08lx CPR3 %08lx\n",
11384 reginfo.ri_cprmask[0], reginfo.ri_cprmask[1],
11385 reginfo.ri_cprmask[2], reginfo.ri_cprmask[3]);
11387 else
11389 /* 64 bit form. */
11390 Elf64_External_RegInfo * ereg;
11391 Elf64_Internal_RegInfo reginfo;
11393 ereg = (Elf64_External_RegInfo *) (option + 1);
11394 reginfo.ri_gprmask = BYTE_GET (ereg->ri_gprmask);
11395 reginfo.ri_cprmask[0] = BYTE_GET (ereg->ri_cprmask[0]);
11396 reginfo.ri_cprmask[1] = BYTE_GET (ereg->ri_cprmask[1]);
11397 reginfo.ri_cprmask[2] = BYTE_GET (ereg->ri_cprmask[2]);
11398 reginfo.ri_cprmask[3] = BYTE_GET (ereg->ri_cprmask[3]);
11399 reginfo.ri_gp_value = BYTE_GET (ereg->ri_gp_value);
11401 printf ("GPR %08lx GP 0x",
11402 reginfo.ri_gprmask);
11403 printf_vma (reginfo.ri_gp_value);
11404 printf ("\n");
11406 printf (" CPR0 %08lx CPR1 %08lx CPR2 %08lx CPR3 %08lx\n",
11407 reginfo.ri_cprmask[0], reginfo.ri_cprmask[1],
11408 reginfo.ri_cprmask[2], reginfo.ri_cprmask[3]);
11410 ++option;
11411 continue;
11412 case ODK_EXCEPTIONS:
11413 fputs (" EXCEPTIONS fpe_min(", stdout);
11414 process_mips_fpe_exception (option->info & OEX_FPU_MIN);
11415 fputs (") fpe_max(", stdout);
11416 process_mips_fpe_exception ((option->info & OEX_FPU_MAX) >> 8);
11417 fputs (")", stdout);
11419 if (option->info & OEX_PAGE0)
11420 fputs (" PAGE0", stdout);
11421 if (option->info & OEX_SMM)
11422 fputs (" SMM", stdout);
11423 if (option->info & OEX_FPDBUG)
11424 fputs (" FPDBUG", stdout);
11425 if (option->info & OEX_DISMISS)
11426 fputs (" DISMISS", stdout);
11427 break;
11428 case ODK_PAD:
11429 fputs (" PAD ", stdout);
11430 if (option->info & OPAD_PREFIX)
11431 fputs (" PREFIX", stdout);
11432 if (option->info & OPAD_POSTFIX)
11433 fputs (" POSTFIX", stdout);
11434 if (option->info & OPAD_SYMBOL)
11435 fputs (" SYMBOL", stdout);
11436 break;
11437 case ODK_HWPATCH:
11438 fputs (" HWPATCH ", stdout);
11439 if (option->info & OHW_R4KEOP)
11440 fputs (" R4KEOP", stdout);
11441 if (option->info & OHW_R8KPFETCH)
11442 fputs (" R8KPFETCH", stdout);
11443 if (option->info & OHW_R5KEOP)
11444 fputs (" R5KEOP", stdout);
11445 if (option->info & OHW_R5KCVTL)
11446 fputs (" R5KCVTL", stdout);
11447 break;
11448 case ODK_FILL:
11449 fputs (" FILL ", stdout);
11450 /* XXX Print content of info word? */
11451 break;
11452 case ODK_TAGS:
11453 fputs (" TAGS ", stdout);
11454 /* XXX Print content of info word? */
11455 break;
11456 case ODK_HWAND:
11457 fputs (" HWAND ", stdout);
11458 if (option->info & OHWA0_R4KEOP_CHECKED)
11459 fputs (" R4KEOP_CHECKED", stdout);
11460 if (option->info & OHWA0_R4KEOP_CLEAN)
11461 fputs (" R4KEOP_CLEAN", stdout);
11462 break;
11463 case ODK_HWOR:
11464 fputs (" HWOR ", stdout);
11465 if (option->info & OHWA0_R4KEOP_CHECKED)
11466 fputs (" R4KEOP_CHECKED", stdout);
11467 if (option->info & OHWA0_R4KEOP_CLEAN)
11468 fputs (" R4KEOP_CLEAN", stdout);
11469 break;
11470 case ODK_GP_GROUP:
11471 printf (" GP_GROUP %#06lx self-contained %#06lx",
11472 option->info & OGP_GROUP,
11473 (option->info & OGP_SELF) >> 16);
11474 break;
11475 case ODK_IDENT:
11476 printf (" IDENT %#06lx self-contained %#06lx",
11477 option->info & OGP_GROUP,
11478 (option->info & OGP_SELF) >> 16);
11479 break;
11480 default:
11481 /* This shouldn't happen. */
11482 printf (" %3d ??? %d %lx",
11483 option->kind, option->section, option->info);
11484 break;
11487 len = sizeof (* eopt);
11488 while (len < option->size)
11489 if (((char *) option)[len] >= ' '
11490 && ((char *) option)[len] < 0x7f)
11491 printf ("%c", ((char *) option)[len++]);
11492 else
11493 printf ("\\%03o", ((char *) option)[len++]);
11495 fputs ("\n", stdout);
11496 ++option;
11499 free (eopt);
11503 if (conflicts_offset != 0 && conflictsno != 0)
11505 Elf32_Conflict * iconf;
11506 size_t cnt;
11508 if (dynamic_symbols == NULL)
11510 error (_("conflict list found without a dynamic symbol table\n"));
11511 return 0;
11514 iconf = (Elf32_Conflict *) cmalloc (conflictsno, sizeof (* iconf));
11515 if (iconf == NULL)
11517 error (_("Out of memory\n"));
11518 return 0;
11521 if (is_32bit_elf)
11523 Elf32_External_Conflict * econf32;
11525 econf32 = (Elf32_External_Conflict *)
11526 get_data (NULL, file, conflicts_offset, conflictsno,
11527 sizeof (* econf32), _("conflict"));
11528 if (!econf32)
11529 return 0;
11531 for (cnt = 0; cnt < conflictsno; ++cnt)
11532 iconf[cnt] = BYTE_GET (econf32[cnt]);
11534 free (econf32);
11536 else
11538 Elf64_External_Conflict * econf64;
11540 econf64 = (Elf64_External_Conflict *)
11541 get_data (NULL, file, conflicts_offset, conflictsno,
11542 sizeof (* econf64), _("conflict"));
11543 if (!econf64)
11544 return 0;
11546 for (cnt = 0; cnt < conflictsno; ++cnt)
11547 iconf[cnt] = BYTE_GET (econf64[cnt]);
11549 free (econf64);
11552 printf (_("\nSection '.conflict' contains %lu entries:\n"),
11553 (unsigned long) conflictsno);
11554 puts (_(" Num: Index Value Name"));
11556 for (cnt = 0; cnt < conflictsno; ++cnt)
11558 Elf_Internal_Sym * psym = & dynamic_symbols[iconf[cnt]];
11560 printf ("%5lu: %8lu ", (unsigned long) cnt, iconf[cnt]);
11561 print_vma (psym->st_value, FULL_HEX);
11562 putchar (' ');
11563 if (VALID_DYNAMIC_NAME (psym->st_name))
11564 print_symbol (25, GET_DYNAMIC_NAME (psym->st_name));
11565 else
11566 printf (_("<corrupt: %14ld>"), psym->st_name);
11567 putchar ('\n');
11570 free (iconf);
11573 if (pltgot != 0 && local_gotno != 0)
11575 bfd_vma ent, local_end, global_end;
11576 size_t i, offset;
11577 unsigned char * data;
11578 int addr_size;
11580 ent = pltgot;
11581 addr_size = (is_32bit_elf ? 4 : 8);
11582 local_end = pltgot + local_gotno * addr_size;
11583 global_end = local_end + (symtabno - gotsym) * addr_size;
11585 offset = offset_from_vma (file, pltgot, global_end - pltgot);
11586 data = (unsigned char *) get_data (NULL, file, offset,
11587 global_end - pltgot, 1, _("GOT"));
11588 printf (_("\nPrimary GOT:\n"));
11589 printf (_(" Canonical gp value: "));
11590 print_vma (pltgot + 0x7ff0, LONG_HEX);
11591 printf ("\n\n");
11593 printf (_(" Reserved entries:\n"));
11594 printf (_(" %*s %10s %*s Purpose\n"),
11595 addr_size * 2, _("Address"), _("Access"),
11596 addr_size * 2, _("Initial"));
11597 ent = print_mips_got_entry (data, pltgot, ent);
11598 printf (_(" Lazy resolver\n"));
11599 if (data
11600 && (byte_get (data + ent - pltgot, addr_size)
11601 >> (addr_size * 8 - 1)) != 0)
11603 ent = print_mips_got_entry (data, pltgot, ent);
11604 printf (_(" Module pointer (GNU extension)\n"));
11606 printf ("\n");
11608 if (ent < local_end)
11610 printf (_(" Local entries:\n"));
11611 printf (" %*s %10s %*s\n",
11612 addr_size * 2, _("Address"), _("Access"),
11613 addr_size * 2, _("Initial"));
11614 while (ent < local_end)
11616 ent = print_mips_got_entry (data, pltgot, ent);
11617 printf ("\n");
11619 printf ("\n");
11622 if (gotsym < symtabno)
11624 int sym_width;
11626 printf (_(" Global entries:\n"));
11627 printf (" %*s %10s %*s %*s %-7s %3s %s\n",
11628 addr_size * 2, _("Address"), _("Access"),
11629 addr_size * 2, _("Initial"),
11630 addr_size * 2, _("Sym.Val."), _("Type"), _("Ndx"), _("Name"));
11631 sym_width = (is_32bit_elf ? 80 : 160) - 28 - addr_size * 6 - 1;
11632 for (i = gotsym; i < symtabno; i++)
11634 Elf_Internal_Sym * psym;
11636 psym = dynamic_symbols + i;
11637 ent = print_mips_got_entry (data, pltgot, ent);
11638 printf (" ");
11639 print_vma (psym->st_value, LONG_HEX);
11640 printf (" %-7s %3s ",
11641 get_symbol_type (ELF_ST_TYPE (psym->st_info)),
11642 get_symbol_index_type (psym->st_shndx));
11643 if (VALID_DYNAMIC_NAME (psym->st_name))
11644 print_symbol (sym_width, GET_DYNAMIC_NAME (psym->st_name));
11645 else
11646 printf (_("<corrupt: %14ld>"), psym->st_name);
11647 printf ("\n");
11649 printf ("\n");
11652 if (data)
11653 free (data);
11656 if (mips_pltgot != 0 && jmprel != 0 && pltrel != 0 && pltrelsz != 0)
11658 bfd_vma ent, end;
11659 size_t offset, rel_offset;
11660 unsigned long count, i;
11661 unsigned char * data;
11662 int addr_size, sym_width;
11663 Elf_Internal_Rela * rels;
11665 rel_offset = offset_from_vma (file, jmprel, pltrelsz);
11666 if (pltrel == DT_RELA)
11668 if (!slurp_rela_relocs (file, rel_offset, pltrelsz, &rels, &count))
11669 return 0;
11671 else
11673 if (!slurp_rel_relocs (file, rel_offset, pltrelsz, &rels, &count))
11674 return 0;
11677 ent = mips_pltgot;
11678 addr_size = (is_32bit_elf ? 4 : 8);
11679 end = mips_pltgot + (2 + count) * addr_size;
11681 offset = offset_from_vma (file, mips_pltgot, end - mips_pltgot);
11682 data = (unsigned char *) get_data (NULL, file, offset, end - mips_pltgot,
11683 1, _("PLT GOT"));
11684 printf (_("\nPLT GOT:\n\n"));
11685 printf (_(" Reserved entries:\n"));
11686 printf (_(" %*s %*s Purpose\n"),
11687 addr_size * 2, _("Address"), addr_size * 2, _("Initial"));
11688 ent = print_mips_pltgot_entry (data, mips_pltgot, ent);
11689 printf (_(" PLT lazy resolver\n"));
11690 ent = print_mips_pltgot_entry (data, mips_pltgot, ent);
11691 printf (_(" Module pointer\n"));
11692 printf ("\n");
11694 printf (_(" Entries:\n"));
11695 printf (" %*s %*s %*s %-7s %3s %s\n",
11696 addr_size * 2, _("Address"),
11697 addr_size * 2, _("Initial"),
11698 addr_size * 2, _("Sym.Val."), _("Type"), _("Ndx"), _("Name"));
11699 sym_width = (is_32bit_elf ? 80 : 160) - 17 - addr_size * 6 - 1;
11700 for (i = 0; i < count; i++)
11702 Elf_Internal_Sym * psym;
11704 psym = dynamic_symbols + get_reloc_symindex (rels[i].r_info);
11705 ent = print_mips_pltgot_entry (data, mips_pltgot, ent);
11706 printf (" ");
11707 print_vma (psym->st_value, LONG_HEX);
11708 printf (" %-7s %3s ",
11709 get_symbol_type (ELF_ST_TYPE (psym->st_info)),
11710 get_symbol_index_type (psym->st_shndx));
11711 if (VALID_DYNAMIC_NAME (psym->st_name))
11712 print_symbol (sym_width, GET_DYNAMIC_NAME (psym->st_name));
11713 else
11714 printf (_("<corrupt: %14ld>"), psym->st_name);
11715 printf ("\n");
11717 printf ("\n");
11719 if (data)
11720 free (data);
11721 free (rels);
11724 return 1;
11727 static int
11728 process_gnu_liblist (FILE * file)
11730 Elf_Internal_Shdr * section;
11731 Elf_Internal_Shdr * string_sec;
11732 Elf32_External_Lib * elib;
11733 char * strtab;
11734 size_t strtab_size;
11735 size_t cnt;
11736 unsigned i;
11738 if (! do_arch)
11739 return 0;
11741 for (i = 0, section = section_headers;
11742 i < elf_header.e_shnum;
11743 i++, section++)
11745 switch (section->sh_type)
11747 case SHT_GNU_LIBLIST:
11748 if (section->sh_link >= elf_header.e_shnum)
11749 break;
11751 elib = (Elf32_External_Lib *)
11752 get_data (NULL, file, section->sh_offset, 1, section->sh_size,
11753 _("liblist"));
11755 if (elib == NULL)
11756 break;
11757 string_sec = section_headers + section->sh_link;
11759 strtab = (char *) get_data (NULL, file, string_sec->sh_offset, 1,
11760 string_sec->sh_size,
11761 _("liblist string table"));
11762 strtab_size = string_sec->sh_size;
11764 if (strtab == NULL
11765 || section->sh_entsize != sizeof (Elf32_External_Lib))
11767 free (elib);
11768 break;
11771 printf (_("\nLibrary list section '%s' contains %lu entries:\n"),
11772 SECTION_NAME (section),
11773 (unsigned long) (section->sh_size / sizeof (Elf32_External_Lib)));
11775 puts (_(" Library Time Stamp Checksum Version Flags"));
11777 for (cnt = 0; cnt < section->sh_size / sizeof (Elf32_External_Lib);
11778 ++cnt)
11780 Elf32_Lib liblist;
11781 time_t atime;
11782 char timebuf[20];
11783 struct tm * tmp;
11785 liblist.l_name = BYTE_GET (elib[cnt].l_name);
11786 atime = BYTE_GET (elib[cnt].l_time_stamp);
11787 liblist.l_checksum = BYTE_GET (elib[cnt].l_checksum);
11788 liblist.l_version = BYTE_GET (elib[cnt].l_version);
11789 liblist.l_flags = BYTE_GET (elib[cnt].l_flags);
11791 tmp = gmtime (&atime);
11792 snprintf (timebuf, sizeof (timebuf),
11793 "%04u-%02u-%02uT%02u:%02u:%02u",
11794 tmp->tm_year + 1900, tmp->tm_mon + 1, tmp->tm_mday,
11795 tmp->tm_hour, tmp->tm_min, tmp->tm_sec);
11797 printf ("%3lu: ", (unsigned long) cnt);
11798 if (do_wide)
11799 printf ("%-20s", liblist.l_name < strtab_size
11800 ? strtab + liblist.l_name : _("<corrupt>"));
11801 else
11802 printf ("%-20.20s", liblist.l_name < strtab_size
11803 ? strtab + liblist.l_name : _("<corrupt>"));
11804 printf (" %s %#010lx %-7ld %-7ld\n", timebuf, liblist.l_checksum,
11805 liblist.l_version, liblist.l_flags);
11808 free (elib);
11812 return 1;
11815 static const char *
11816 get_note_type (unsigned e_type)
11818 static char buff[64];
11820 if (elf_header.e_type == ET_CORE)
11821 switch (e_type)
11823 case NT_AUXV:
11824 return _("NT_AUXV (auxiliary vector)");
11825 case NT_PRSTATUS:
11826 return _("NT_PRSTATUS (prstatus structure)");
11827 case NT_FPREGSET:
11828 return _("NT_FPREGSET (floating point registers)");
11829 case NT_PRPSINFO:
11830 return _("NT_PRPSINFO (prpsinfo structure)");
11831 case NT_TASKSTRUCT:
11832 return _("NT_TASKSTRUCT (task structure)");
11833 case NT_PRXFPREG:
11834 return _("NT_PRXFPREG (user_xfpregs structure)");
11835 case NT_PPC_VMX:
11836 return _("NT_PPC_VMX (ppc Altivec registers)");
11837 case NT_PPC_VSX:
11838 return _("NT_PPC_VSX (ppc VSX registers)");
11839 case NT_X86_XSTATE:
11840 return _("NT_X86_XSTATE (x86 XSAVE extended state)");
11841 case NT_S390_HIGH_GPRS:
11842 return _("NT_S390_HIGH_GPRS (s390 upper register halves)");
11843 case NT_S390_TIMER:
11844 return _("NT_S390_TIMER (s390 timer register)");
11845 case NT_S390_TODCMP:
11846 return _("NT_S390_TODCMP (s390 TOD comparator register)");
11847 case NT_S390_TODPREG:
11848 return _("NT_S390_TODPREG (s390 TOD programmable register)");
11849 case NT_S390_CTRS:
11850 return _("NT_S390_CTRS (s390 control registers)");
11851 case NT_S390_PREFIX:
11852 return _("NT_S390_PREFIX (s390 prefix register)");
11853 case NT_PSTATUS:
11854 return _("NT_PSTATUS (pstatus structure)");
11855 case NT_FPREGS:
11856 return _("NT_FPREGS (floating point registers)");
11857 case NT_PSINFO:
11858 return _("NT_PSINFO (psinfo structure)");
11859 case NT_LWPSTATUS:
11860 return _("NT_LWPSTATUS (lwpstatus_t structure)");
11861 case NT_LWPSINFO:
11862 return _("NT_LWPSINFO (lwpsinfo_t structure)");
11863 case NT_WIN32PSTATUS:
11864 return _("NT_WIN32PSTATUS (win32_pstatus structure)");
11865 default:
11866 break;
11868 else
11869 switch (e_type)
11871 case NT_VERSION:
11872 return _("NT_VERSION (version)");
11873 case NT_ARCH:
11874 return _("NT_ARCH (architecture)");
11875 default:
11876 break;
11879 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
11880 return buff;
11883 static const char *
11884 get_gnu_elf_note_type (unsigned e_type)
11886 static char buff[64];
11888 switch (e_type)
11890 case NT_GNU_ABI_TAG:
11891 return _("NT_GNU_ABI_TAG (ABI version tag)");
11892 case NT_GNU_HWCAP:
11893 return _("NT_GNU_HWCAP (DSO-supplied software HWCAP info)");
11894 case NT_GNU_BUILD_ID:
11895 return _("NT_GNU_BUILD_ID (unique build ID bitstring)");
11896 case NT_GNU_GOLD_VERSION:
11897 return _("NT_GNU_GOLD_VERSION (gold version)");
11898 default:
11899 break;
11902 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
11903 return buff;
11906 static const char *
11907 get_netbsd_elfcore_note_type (unsigned e_type)
11909 static char buff[64];
11911 if (e_type == NT_NETBSDCORE_PROCINFO)
11913 /* NetBSD core "procinfo" structure. */
11914 return _("NetBSD procinfo structure");
11917 /* As of Jan 2002 there are no other machine-independent notes
11918 defined for NetBSD core files. If the note type is less
11919 than the start of the machine-dependent note types, we don't
11920 understand it. */
11922 if (e_type < NT_NETBSDCORE_FIRSTMACH)
11924 snprintf (buff, sizeof (buff), _("Unknown note type: (0x%08x)"), e_type);
11925 return buff;
11928 switch (elf_header.e_machine)
11930 /* On the Alpha, SPARC (32-bit and 64-bit), PT_GETREGS == mach+0
11931 and PT_GETFPREGS == mach+2. */
11933 case EM_OLD_ALPHA:
11934 case EM_ALPHA:
11935 case EM_SPARC:
11936 case EM_SPARC32PLUS:
11937 case EM_SPARCV9:
11938 switch (e_type)
11940 case NT_NETBSDCORE_FIRSTMACH + 0:
11941 return _("PT_GETREGS (reg structure)");
11942 case NT_NETBSDCORE_FIRSTMACH + 2:
11943 return _("PT_GETFPREGS (fpreg structure)");
11944 default:
11945 break;
11947 break;
11949 /* On all other arch's, PT_GETREGS == mach+1 and
11950 PT_GETFPREGS == mach+3. */
11951 default:
11952 switch (e_type)
11954 case NT_NETBSDCORE_FIRSTMACH + 1:
11955 return _("PT_GETREGS (reg structure)");
11956 case NT_NETBSDCORE_FIRSTMACH + 3:
11957 return _("PT_GETFPREGS (fpreg structure)");
11958 default:
11959 break;
11963 snprintf (buff, sizeof (buff), _("PT_FIRSTMACH+%d"),
11964 e_type - NT_NETBSDCORE_FIRSTMACH);
11965 return buff;
11968 /* Note that by the ELF standard, the name field is already null byte
11969 terminated, and namesz includes the terminating null byte.
11970 I.E. the value of namesz for the name "FSF" is 4.
11972 If the value of namesz is zero, there is no name present. */
11973 static int
11974 process_note (Elf_Internal_Note * pnote)
11976 const char * name = pnote->namesz ? pnote->namedata : "(NONE)";
11977 const char * nt;
11979 if (pnote->namesz == 0)
11980 /* If there is no note name, then use the default set of
11981 note type strings. */
11982 nt = get_note_type (pnote->type);
11984 else if (const_strneq (pnote->namedata, "GNU"))
11985 /* GNU-specific object file notes. */
11986 nt = get_gnu_elf_note_type (pnote->type);
11988 else if (const_strneq (pnote->namedata, "NetBSD-CORE"))
11989 /* NetBSD-specific core file notes. */
11990 nt = get_netbsd_elfcore_note_type (pnote->type);
11992 else if (strneq (pnote->namedata, "SPU/", 4))
11994 /* SPU-specific core file notes. */
11995 nt = pnote->namedata + 4;
11996 name = "SPU";
11999 else
12000 /* Don't recognize this note name; just use the default set of
12001 note type strings. */
12002 nt = get_note_type (pnote->type);
12004 printf (" %s\t\t0x%08lx\t%s\n", name, pnote->descsz, nt);
12005 return 1;
12009 static int
12010 process_corefile_note_segment (FILE * file, bfd_vma offset, bfd_vma length)
12012 Elf_External_Note * pnotes;
12013 Elf_External_Note * external;
12014 int res = 1;
12016 if (length <= 0)
12017 return 0;
12019 pnotes = (Elf_External_Note *) get_data (NULL, file, offset, 1, length,
12020 _("notes"));
12021 if (pnotes == NULL)
12022 return 0;
12024 external = pnotes;
12026 printf (_("\nNotes at offset 0x%08lx with length 0x%08lx:\n"),
12027 (unsigned long) offset, (unsigned long) length);
12028 printf (_(" Owner\t\tData size\tDescription\n"));
12030 while (external < (Elf_External_Note *) ((char *) pnotes + length))
12032 Elf_External_Note * next;
12033 Elf_Internal_Note inote;
12034 char * temp = NULL;
12036 inote.type = BYTE_GET (external->type);
12037 inote.namesz = BYTE_GET (external->namesz);
12038 inote.namedata = external->name;
12039 inote.descsz = BYTE_GET (external->descsz);
12040 inote.descdata = inote.namedata + align_power (inote.namesz, 2);
12041 inote.descpos = offset + (inote.descdata - (char *) pnotes);
12043 next = (Elf_External_Note *) (inote.descdata + align_power (inote.descsz, 2));
12045 if ( ((char *) next > ((char *) pnotes) + length)
12046 || ((char *) next < (char *) pnotes))
12048 warn (_("corrupt note found at offset %lx into core notes\n"),
12049 (unsigned long) ((char *) external - (char *) pnotes));
12050 warn (_(" type: %lx, namesize: %08lx, descsize: %08lx\n"),
12051 inote.type, inote.namesz, inote.descsz);
12052 break;
12055 external = next;
12057 /* Prevent out-of-bounds indexing. */
12058 if (inote.namedata + inote.namesz >= (char *) pnotes + length
12059 || inote.namedata + inote.namesz < inote.namedata)
12061 warn (_("corrupt note found at offset %lx into core notes\n"),
12062 (unsigned long) ((char *) external - (char *) pnotes));
12063 warn (_(" type: %lx, namesize: %08lx, descsize: %08lx\n"),
12064 inote.type, inote.namesz, inote.descsz);
12065 break;
12068 /* Verify that name is null terminated. It appears that at least
12069 one version of Linux (RedHat 6.0) generates corefiles that don't
12070 comply with the ELF spec by failing to include the null byte in
12071 namesz. */
12072 if (inote.namedata[inote.namesz] != '\0')
12074 temp = (char *) malloc (inote.namesz + 1);
12076 if (temp == NULL)
12078 error (_("Out of memory\n"));
12079 res = 0;
12080 break;
12083 strncpy (temp, inote.namedata, inote.namesz);
12084 temp[inote.namesz] = 0;
12086 /* warn (_("'%s' NOTE name not properly null terminated\n"), temp); */
12087 inote.namedata = temp;
12090 res &= process_note (& inote);
12092 if (temp != NULL)
12094 free (temp);
12095 temp = NULL;
12099 free (pnotes);
12101 return res;
12104 static int
12105 process_corefile_note_segments (FILE * file)
12107 Elf_Internal_Phdr * segment;
12108 unsigned int i;
12109 int res = 1;
12111 if (! get_program_headers (file))
12112 return 0;
12114 for (i = 0, segment = program_headers;
12115 i < elf_header.e_phnum;
12116 i++, segment++)
12118 if (segment->p_type == PT_NOTE)
12119 res &= process_corefile_note_segment (file,
12120 (bfd_vma) segment->p_offset,
12121 (bfd_vma) segment->p_filesz);
12124 return res;
12127 static int
12128 process_note_sections (FILE * file)
12130 Elf_Internal_Shdr * section;
12131 unsigned long i;
12132 int res = 1;
12134 for (i = 0, section = section_headers;
12135 i < elf_header.e_shnum;
12136 i++, section++)
12137 if (section->sh_type == SHT_NOTE)
12138 res &= process_corefile_note_segment (file,
12139 (bfd_vma) section->sh_offset,
12140 (bfd_vma) section->sh_size);
12142 return res;
12145 static int
12146 process_notes (FILE * file)
12148 /* If we have not been asked to display the notes then do nothing. */
12149 if (! do_notes)
12150 return 1;
12152 if (elf_header.e_type != ET_CORE)
12153 return process_note_sections (file);
12155 /* No program headers means no NOTE segment. */
12156 if (elf_header.e_phnum > 0)
12157 return process_corefile_note_segments (file);
12159 printf (_("No note segments present in the core file.\n"));
12160 return 1;
12163 static int
12164 process_arch_specific (FILE * file)
12166 if (! do_arch)
12167 return 1;
12169 switch (elf_header.e_machine)
12171 case EM_ARM:
12172 return process_arm_specific (file);
12173 case EM_MIPS:
12174 case EM_MIPS_RS3_LE:
12175 return process_mips_specific (file);
12176 break;
12177 case EM_PPC:
12178 return process_power_specific (file);
12179 break;
12180 case EM_TI_C6000:
12181 return process_tic6x_specific (file);
12182 break;
12183 default:
12184 break;
12186 return 1;
12189 static int
12190 get_file_header (FILE * file)
12192 /* Read in the identity array. */
12193 if (fread (elf_header.e_ident, EI_NIDENT, 1, file) != 1)
12194 return 0;
12196 /* Determine how to read the rest of the header. */
12197 switch (elf_header.e_ident[EI_DATA])
12199 default: /* fall through */
12200 case ELFDATANONE: /* fall through */
12201 case ELFDATA2LSB:
12202 byte_get = byte_get_little_endian;
12203 byte_put = byte_put_little_endian;
12204 break;
12205 case ELFDATA2MSB:
12206 byte_get = byte_get_big_endian;
12207 byte_put = byte_put_big_endian;
12208 break;
12211 /* For now we only support 32 bit and 64 bit ELF files. */
12212 is_32bit_elf = (elf_header.e_ident[EI_CLASS] != ELFCLASS64);
12214 /* Read in the rest of the header. */
12215 if (is_32bit_elf)
12217 Elf32_External_Ehdr ehdr32;
12219 if (fread (ehdr32.e_type, sizeof (ehdr32) - EI_NIDENT, 1, file) != 1)
12220 return 0;
12222 elf_header.e_type = BYTE_GET (ehdr32.e_type);
12223 elf_header.e_machine = BYTE_GET (ehdr32.e_machine);
12224 elf_header.e_version = BYTE_GET (ehdr32.e_version);
12225 elf_header.e_entry = BYTE_GET (ehdr32.e_entry);
12226 elf_header.e_phoff = BYTE_GET (ehdr32.e_phoff);
12227 elf_header.e_shoff = BYTE_GET (ehdr32.e_shoff);
12228 elf_header.e_flags = BYTE_GET (ehdr32.e_flags);
12229 elf_header.e_ehsize = BYTE_GET (ehdr32.e_ehsize);
12230 elf_header.e_phentsize = BYTE_GET (ehdr32.e_phentsize);
12231 elf_header.e_phnum = BYTE_GET (ehdr32.e_phnum);
12232 elf_header.e_shentsize = BYTE_GET (ehdr32.e_shentsize);
12233 elf_header.e_shnum = BYTE_GET (ehdr32.e_shnum);
12234 elf_header.e_shstrndx = BYTE_GET (ehdr32.e_shstrndx);
12236 else
12238 Elf64_External_Ehdr ehdr64;
12240 /* If we have been compiled with sizeof (bfd_vma) == 4, then
12241 we will not be able to cope with the 64bit data found in
12242 64 ELF files. Detect this now and abort before we start
12243 overwriting things. */
12244 if (sizeof (bfd_vma) < 8)
12246 error (_("This instance of readelf has been built without support for a\n\
12247 64 bit data type and so it cannot read 64 bit ELF files.\n"));
12248 return 0;
12251 if (fread (ehdr64.e_type, sizeof (ehdr64) - EI_NIDENT, 1, file) != 1)
12252 return 0;
12254 elf_header.e_type = BYTE_GET (ehdr64.e_type);
12255 elf_header.e_machine = BYTE_GET (ehdr64.e_machine);
12256 elf_header.e_version = BYTE_GET (ehdr64.e_version);
12257 elf_header.e_entry = BYTE_GET (ehdr64.e_entry);
12258 elf_header.e_phoff = BYTE_GET (ehdr64.e_phoff);
12259 elf_header.e_shoff = BYTE_GET (ehdr64.e_shoff);
12260 elf_header.e_flags = BYTE_GET (ehdr64.e_flags);
12261 elf_header.e_ehsize = BYTE_GET (ehdr64.e_ehsize);
12262 elf_header.e_phentsize = BYTE_GET (ehdr64.e_phentsize);
12263 elf_header.e_phnum = BYTE_GET (ehdr64.e_phnum);
12264 elf_header.e_shentsize = BYTE_GET (ehdr64.e_shentsize);
12265 elf_header.e_shnum = BYTE_GET (ehdr64.e_shnum);
12266 elf_header.e_shstrndx = BYTE_GET (ehdr64.e_shstrndx);
12269 if (elf_header.e_shoff)
12271 /* There may be some extensions in the first section header. Don't
12272 bomb if we can't read it. */
12273 if (is_32bit_elf)
12274 get_32bit_section_headers (file, 1);
12275 else
12276 get_64bit_section_headers (file, 1);
12279 return 1;
12282 /* Process one ELF object file according to the command line options.
12283 This file may actually be stored in an archive. The file is
12284 positioned at the start of the ELF object. */
12286 static int
12287 process_object (char * file_name, FILE * file)
12289 unsigned int i;
12291 if (! get_file_header (file))
12293 error (_("%s: Failed to read file header\n"), file_name);
12294 return 1;
12297 /* Initialise per file variables. */
12298 for (i = ARRAY_SIZE (version_info); i--;)
12299 version_info[i] = 0;
12301 for (i = ARRAY_SIZE (dynamic_info); i--;)
12302 dynamic_info[i] = 0;
12304 /* Process the file. */
12305 if (show_name)
12306 printf (_("\nFile: %s\n"), file_name);
12308 /* Initialise the dump_sects array from the cmdline_dump_sects array.
12309 Note we do this even if cmdline_dump_sects is empty because we
12310 must make sure that the dump_sets array is zeroed out before each
12311 object file is processed. */
12312 if (num_dump_sects > num_cmdline_dump_sects)
12313 memset (dump_sects, 0, num_dump_sects * sizeof (* dump_sects));
12315 if (num_cmdline_dump_sects > 0)
12317 if (num_dump_sects == 0)
12318 /* A sneaky way of allocating the dump_sects array. */
12319 request_dump_bynumber (num_cmdline_dump_sects, 0);
12321 assert (num_dump_sects >= num_cmdline_dump_sects);
12322 memcpy (dump_sects, cmdline_dump_sects,
12323 num_cmdline_dump_sects * sizeof (* dump_sects));
12326 if (! process_file_header ())
12327 return 1;
12329 if (! process_section_headers (file))
12331 /* Without loaded section headers we cannot process lots of
12332 things. */
12333 do_unwind = do_version = do_dump = do_arch = 0;
12335 if (! do_using_dynamic)
12336 do_syms = do_dyn_syms = do_reloc = 0;
12339 if (! process_section_groups (file))
12341 /* Without loaded section groups we cannot process unwind. */
12342 do_unwind = 0;
12345 if (process_program_headers (file))
12346 process_dynamic_section (file);
12348 process_relocs (file);
12350 process_unwind (file);
12352 process_symbol_table (file);
12354 process_syminfo (file);
12356 process_version_sections (file);
12358 process_section_contents (file);
12360 process_notes (file);
12362 process_gnu_liblist (file);
12364 process_arch_specific (file);
12366 if (program_headers)
12368 free (program_headers);
12369 program_headers = NULL;
12372 if (section_headers)
12374 free (section_headers);
12375 section_headers = NULL;
12378 if (string_table)
12380 free (string_table);
12381 string_table = NULL;
12382 string_table_length = 0;
12385 if (dynamic_strings)
12387 free (dynamic_strings);
12388 dynamic_strings = NULL;
12389 dynamic_strings_length = 0;
12392 if (dynamic_symbols)
12394 free (dynamic_symbols);
12395 dynamic_symbols = NULL;
12396 num_dynamic_syms = 0;
12399 if (dynamic_syminfo)
12401 free (dynamic_syminfo);
12402 dynamic_syminfo = NULL;
12405 if (section_headers_groups)
12407 free (section_headers_groups);
12408 section_headers_groups = NULL;
12411 if (section_groups)
12413 struct group_list * g;
12414 struct group_list * next;
12416 for (i = 0; i < group_count; i++)
12418 for (g = section_groups [i].root; g != NULL; g = next)
12420 next = g->next;
12421 free (g);
12425 free (section_groups);
12426 section_groups = NULL;
12429 free_debug_memory ();
12431 return 0;
12434 /* Process an ELF archive.
12435 On entry the file is positioned just after the ARMAG string. */
12437 static int
12438 process_archive (char * file_name, FILE * file, bfd_boolean is_thin_archive)
12440 struct archive_info arch;
12441 struct archive_info nested_arch;
12442 size_t got;
12443 int ret;
12445 show_name = 1;
12447 /* The ARCH structure is used to hold information about this archive. */
12448 arch.file_name = NULL;
12449 arch.file = NULL;
12450 arch.index_array = NULL;
12451 arch.sym_table = NULL;
12452 arch.longnames = NULL;
12454 /* The NESTED_ARCH structure is used as a single-item cache of information
12455 about a nested archive (when members of a thin archive reside within
12456 another regular archive file). */
12457 nested_arch.file_name = NULL;
12458 nested_arch.file = NULL;
12459 nested_arch.index_array = NULL;
12460 nested_arch.sym_table = NULL;
12461 nested_arch.longnames = NULL;
12463 if (setup_archive (&arch, file_name, file, is_thin_archive, do_archive_index) != 0)
12465 ret = 1;
12466 goto out;
12469 if (do_archive_index)
12471 if (arch.sym_table == NULL)
12472 error (_("%s: unable to dump the index as none was found\n"), file_name);
12473 else
12475 unsigned int i, l;
12476 unsigned long current_pos;
12478 printf (_("Index of archive %s: (%ld entries, 0x%lx bytes in the symbol table)\n"),
12479 file_name, arch.index_num, arch.sym_size);
12480 current_pos = ftell (file);
12482 for (i = l = 0; i < arch.index_num; i++)
12484 if ((i == 0) || ((i > 0) && (arch.index_array[i] != arch.index_array[i - 1])))
12486 char * member_name;
12488 member_name = get_archive_member_name_at (&arch, arch.index_array[i], &nested_arch);
12490 if (member_name != NULL)
12492 char * qualified_name = make_qualified_name (&arch, &nested_arch, member_name);
12494 if (qualified_name != NULL)
12496 printf (_("Binary %s contains:\n"), qualified_name);
12497 free (qualified_name);
12502 if (l >= arch.sym_size)
12504 error (_("%s: end of the symbol table reached before the end of the index\n"),
12505 file_name);
12506 break;
12508 printf ("\t%s\n", arch.sym_table + l);
12509 l += strlen (arch.sym_table + l) + 1;
12512 if (l & 01)
12513 ++l;
12514 if (l < arch.sym_size)
12515 error (_("%s: symbols remain in the index symbol table, but without corresponding entries in the index table\n"),
12516 file_name);
12518 if (fseek (file, current_pos, SEEK_SET) != 0)
12520 error (_("%s: failed to seek back to start of object files in the archive\n"), file_name);
12521 ret = 1;
12522 goto out;
12526 if (!do_dynamic && !do_syms && !do_reloc && !do_unwind && !do_sections
12527 && !do_segments && !do_header && !do_dump && !do_version
12528 && !do_histogram && !do_debugging && !do_arch && !do_notes
12529 && !do_section_groups && !do_dyn_syms)
12531 ret = 0; /* Archive index only. */
12532 goto out;
12536 ret = 0;
12538 while (1)
12540 char * name;
12541 size_t namelen;
12542 char * qualified_name;
12544 /* Read the next archive header. */
12545 if (fseek (file, arch.next_arhdr_offset, SEEK_SET) != 0)
12547 error (_("%s: failed to seek to next archive header\n"), file_name);
12548 return 1;
12550 got = fread (&arch.arhdr, 1, sizeof arch.arhdr, file);
12551 if (got != sizeof arch.arhdr)
12553 if (got == 0)
12554 break;
12555 error (_("%s: failed to read archive header\n"), file_name);
12556 ret = 1;
12557 break;
12559 if (memcmp (arch.arhdr.ar_fmag, ARFMAG, 2) != 0)
12561 error (_("%s: did not find a valid archive header\n"), arch.file_name);
12562 ret = 1;
12563 break;
12566 arch.next_arhdr_offset += sizeof arch.arhdr;
12568 archive_file_size = strtoul (arch.arhdr.ar_size, NULL, 10);
12569 if (archive_file_size & 01)
12570 ++archive_file_size;
12572 name = get_archive_member_name (&arch, &nested_arch);
12573 if (name == NULL)
12575 error (_("%s: bad archive file name\n"), file_name);
12576 ret = 1;
12577 break;
12579 namelen = strlen (name);
12581 qualified_name = make_qualified_name (&arch, &nested_arch, name);
12582 if (qualified_name == NULL)
12584 error (_("%s: bad archive file name\n"), file_name);
12585 ret = 1;
12586 break;
12589 if (is_thin_archive && arch.nested_member_origin == 0)
12591 /* This is a proxy for an external member of a thin archive. */
12592 FILE * member_file;
12593 char * member_file_name = adjust_relative_path (file_name, name, namelen);
12594 if (member_file_name == NULL)
12596 ret = 1;
12597 break;
12600 member_file = fopen (member_file_name, "rb");
12601 if (member_file == NULL)
12603 error (_("Input file '%s' is not readable.\n"), member_file_name);
12604 free (member_file_name);
12605 ret = 1;
12606 break;
12609 archive_file_offset = arch.nested_member_origin;
12611 ret |= process_object (qualified_name, member_file);
12613 fclose (member_file);
12614 free (member_file_name);
12616 else if (is_thin_archive)
12618 /* This is a proxy for a member of a nested archive. */
12619 archive_file_offset = arch.nested_member_origin + sizeof arch.arhdr;
12621 /* The nested archive file will have been opened and setup by
12622 get_archive_member_name. */
12623 if (fseek (nested_arch.file, archive_file_offset, SEEK_SET) != 0)
12625 error (_("%s: failed to seek to archive member.\n"), nested_arch.file_name);
12626 ret = 1;
12627 break;
12630 ret |= process_object (qualified_name, nested_arch.file);
12632 else
12634 archive_file_offset = arch.next_arhdr_offset;
12635 arch.next_arhdr_offset += archive_file_size;
12637 ret |= process_object (qualified_name, file);
12640 free (qualified_name);
12643 out:
12644 if (nested_arch.file != NULL)
12645 fclose (nested_arch.file);
12646 release_archive (&nested_arch);
12647 release_archive (&arch);
12649 return ret;
12652 static int
12653 process_file (char * file_name)
12655 FILE * file;
12656 struct stat statbuf;
12657 char armag[SARMAG];
12658 int ret;
12660 if (stat (file_name, &statbuf) < 0)
12662 if (errno == ENOENT)
12663 error (_("'%s': No such file\n"), file_name);
12664 else
12665 error (_("Could not locate '%s'. System error message: %s\n"),
12666 file_name, strerror (errno));
12667 return 1;
12670 if (! S_ISREG (statbuf.st_mode))
12672 error (_("'%s' is not an ordinary file\n"), file_name);
12673 return 1;
12676 file = fopen (file_name, "rb");
12677 if (file == NULL)
12679 error (_("Input file '%s' is not readable.\n"), file_name);
12680 return 1;
12683 if (fread (armag, SARMAG, 1, file) != 1)
12685 error (_("%s: Failed to read file's magic number\n"), file_name);
12686 fclose (file);
12687 return 1;
12690 if (memcmp (armag, ARMAG, SARMAG) == 0)
12691 ret = process_archive (file_name, file, FALSE);
12692 else if (memcmp (armag, ARMAGT, SARMAG) == 0)
12693 ret = process_archive (file_name, file, TRUE);
12694 else
12696 if (do_archive_index)
12697 error (_("File %s is not an archive so its index cannot be displayed.\n"),
12698 file_name);
12700 rewind (file);
12701 archive_file_size = archive_file_offset = 0;
12702 ret = process_object (file_name, file);
12705 fclose (file);
12707 return ret;
12710 #ifdef SUPPORT_DISASSEMBLY
12711 /* Needed by the i386 disassembler. For extra credit, someone could
12712 fix this so that we insert symbolic addresses here, esp for GOT/PLT
12713 symbols. */
12715 void
12716 print_address (unsigned int addr, FILE * outfile)
12718 fprintf (outfile,"0x%8.8x", addr);
12721 /* Needed by the i386 disassembler. */
12722 void
12723 db_task_printsym (unsigned int addr)
12725 print_address (addr, stderr);
12727 #endif
12730 main (int argc, char ** argv)
12732 int err;
12734 #if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
12735 setlocale (LC_MESSAGES, "");
12736 #endif
12737 #if defined (HAVE_SETLOCALE)
12738 setlocale (LC_CTYPE, "");
12739 #endif
12740 bindtextdomain (PACKAGE, LOCALEDIR);
12741 textdomain (PACKAGE);
12743 expandargv (&argc, &argv);
12745 parse_args (argc, argv);
12747 if (num_dump_sects > 0)
12749 /* Make a copy of the dump_sects array. */
12750 cmdline_dump_sects = (dump_type *)
12751 malloc (num_dump_sects * sizeof (* dump_sects));
12752 if (cmdline_dump_sects == NULL)
12753 error (_("Out of memory allocating dump request table.\n"));
12754 else
12756 memcpy (cmdline_dump_sects, dump_sects,
12757 num_dump_sects * sizeof (* dump_sects));
12758 num_cmdline_dump_sects = num_dump_sects;
12762 if (optind < (argc - 1))
12763 show_name = 1;
12765 err = 0;
12766 while (optind < argc)
12767 err |= process_file (argv[optind++]);
12769 if (dump_sects != NULL)
12770 free (dump_sects);
12771 if (cmdline_dump_sects != NULL)
12772 free (cmdline_dump_sects);
12774 return err;